Revert "Enable relro by default for AArch64, ARM and SCORE."
[external/binutils.git] / bfd / elf64-ppc.c
1 /* PowerPC64-specific support for 64-bit ELF.
2    Copyright (C) 1999-2016 Free Software Foundation, Inc.
3    Written by Linus Nordberg, Swox AB <info@swox.com>,
4    based on elf32-ppc.c by Ian Lance Taylor.
5    Largely rewritten by Alan Modra.
6
7    This file is part of BFD, the Binary File Descriptor library.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License along
20    with this program; if not, write to the Free Software Foundation, Inc.,
21    51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
22
23
24 /* The 64-bit PowerPC ELF ABI may be found at
25    http://www.linuxbase.org/spec/ELF/ppc64/PPC-elf64abi.txt, and
26    http://www.linuxbase.org/spec/ELF/ppc64/spec/book1.html  */
27
28 #include "sysdep.h"
29 #include <stdarg.h>
30 #include "bfd.h"
31 #include "bfdlink.h"
32 #include "libbfd.h"
33 #include "elf-bfd.h"
34 #include "elf/ppc64.h"
35 #include "elf64-ppc.h"
36 #include "dwarf2.h"
37
38 static bfd_reloc_status_type ppc64_elf_ha_reloc
39   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
40 static bfd_reloc_status_type ppc64_elf_branch_reloc
41   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
42 static bfd_reloc_status_type ppc64_elf_brtaken_reloc
43   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
44 static bfd_reloc_status_type ppc64_elf_sectoff_reloc
45   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
46 static bfd_reloc_status_type ppc64_elf_sectoff_ha_reloc
47   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
48 static bfd_reloc_status_type ppc64_elf_toc_reloc
49   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
50 static bfd_reloc_status_type ppc64_elf_toc_ha_reloc
51   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
52 static bfd_reloc_status_type ppc64_elf_toc64_reloc
53   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
54 static bfd_reloc_status_type ppc64_elf_unhandled_reloc
55   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
56 static bfd_vma opd_entry_value
57   (asection *, bfd_vma, asection **, bfd_vma *, bfd_boolean);
58
59 #define TARGET_LITTLE_SYM       powerpc_elf64_le_vec
60 #define TARGET_LITTLE_NAME      "elf64-powerpcle"
61 #define TARGET_BIG_SYM          powerpc_elf64_vec
62 #define TARGET_BIG_NAME         "elf64-powerpc"
63 #define ELF_ARCH                bfd_arch_powerpc
64 #define ELF_TARGET_ID           PPC64_ELF_DATA
65 #define ELF_MACHINE_CODE        EM_PPC64
66 #define ELF_MAXPAGESIZE         0x10000
67 #define ELF_COMMONPAGESIZE      0x10000
68 #define elf_info_to_howto       ppc64_elf_info_to_howto
69
70 #define elf_backend_want_got_sym 0
71 #define elf_backend_want_plt_sym 0
72 #define elf_backend_plt_alignment 3
73 #define elf_backend_plt_not_loaded 1
74 #define elf_backend_got_header_size 8
75 #define elf_backend_can_gc_sections 1
76 #define elf_backend_can_refcount 1
77 #define elf_backend_rela_normal 1
78 #define elf_backend_default_execstack 0
79
80 #define bfd_elf64_mkobject                    ppc64_elf_mkobject
81 #define bfd_elf64_bfd_reloc_type_lookup       ppc64_elf_reloc_type_lookup
82 #define bfd_elf64_bfd_reloc_name_lookup       ppc64_elf_reloc_name_lookup
83 #define bfd_elf64_bfd_merge_private_bfd_data  ppc64_elf_merge_private_bfd_data
84 #define bfd_elf64_bfd_print_private_bfd_data  ppc64_elf_print_private_bfd_data
85 #define bfd_elf64_new_section_hook            ppc64_elf_new_section_hook
86 #define bfd_elf64_bfd_link_hash_table_create  ppc64_elf_link_hash_table_create
87 #define bfd_elf64_get_synthetic_symtab        ppc64_elf_get_synthetic_symtab
88 #define bfd_elf64_bfd_link_just_syms          ppc64_elf_link_just_syms
89
90 #define elf_backend_object_p                  ppc64_elf_object_p
91 #define elf_backend_grok_prstatus             ppc64_elf_grok_prstatus
92 #define elf_backend_grok_psinfo               ppc64_elf_grok_psinfo
93 #define elf_backend_write_core_note           ppc64_elf_write_core_note
94 #define elf_backend_create_dynamic_sections   ppc64_elf_create_dynamic_sections
95 #define elf_backend_copy_indirect_symbol      ppc64_elf_copy_indirect_symbol
96 #define elf_backend_add_symbol_hook           ppc64_elf_add_symbol_hook
97 #define elf_backend_check_directives          ppc64_elf_before_check_relocs
98 #define elf_backend_notice_as_needed          ppc64_elf_notice_as_needed
99 #define elf_backend_archive_symbol_lookup     ppc64_elf_archive_symbol_lookup
100 #define elf_backend_check_relocs              ppc64_elf_check_relocs
101 #define elf_backend_gc_keep                   ppc64_elf_gc_keep
102 #define elf_backend_gc_mark_dynamic_ref       ppc64_elf_gc_mark_dynamic_ref
103 #define elf_backend_gc_mark_hook              ppc64_elf_gc_mark_hook
104 #define elf_backend_gc_sweep_hook             ppc64_elf_gc_sweep_hook
105 #define elf_backend_adjust_dynamic_symbol     ppc64_elf_adjust_dynamic_symbol
106 #define elf_backend_hide_symbol               ppc64_elf_hide_symbol
107 #define elf_backend_maybe_function_sym        ppc64_elf_maybe_function_sym
108 #define elf_backend_always_size_sections      ppc64_elf_func_desc_adjust
109 #define elf_backend_size_dynamic_sections     ppc64_elf_size_dynamic_sections
110 #define elf_backend_hash_symbol               ppc64_elf_hash_symbol
111 #define elf_backend_init_index_section        _bfd_elf_init_2_index_sections
112 #define elf_backend_action_discarded          ppc64_elf_action_discarded
113 #define elf_backend_relocate_section          ppc64_elf_relocate_section
114 #define elf_backend_finish_dynamic_symbol     ppc64_elf_finish_dynamic_symbol
115 #define elf_backend_reloc_type_class          ppc64_elf_reloc_type_class
116 #define elf_backend_finish_dynamic_sections   ppc64_elf_finish_dynamic_sections
117 #define elf_backend_link_output_symbol_hook   ppc64_elf_output_symbol_hook
118 #define elf_backend_special_sections          ppc64_elf_special_sections
119 #define elf_backend_merge_symbol_attribute    ppc64_elf_merge_symbol_attribute
120
121 /* The name of the dynamic interpreter.  This is put in the .interp
122    section.  */
123 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
124
125 /* The size in bytes of an entry in the procedure linkage table.  */
126 #define PLT_ENTRY_SIZE(htab) (htab->opd_abi ? 24 : 8)
127
128 /* The initial size of the plt reserved for the dynamic linker.  */
129 #define PLT_INITIAL_ENTRY_SIZE(htab) (htab->opd_abi ? 24 : 16)
130
131 /* Offsets to some stack save slots.  */
132 #define STK_LR 16
133 #define STK_TOC(htab) (htab->opd_abi ? 40 : 24)
134 /* This one is dodgy.  ELFv2 does not have a linker word, so use the
135    CR save slot.  Used only by optimised __tls_get_addr call stub,
136    relying on __tls_get_addr_opt not saving CR..  */
137 #define STK_LINKER(htab) (htab->opd_abi ? 32 : 8)
138
139 /* TOC base pointers offset from start of TOC.  */
140 #define TOC_BASE_OFF    0x8000
141 /* TOC base alignment.  */
142 #define TOC_BASE_ALIGN  256
143
144 /* Offset of tp and dtp pointers from start of TLS block.  */
145 #define TP_OFFSET       0x7000
146 #define DTP_OFFSET      0x8000
147
148 /* .plt call stub instructions.  The normal stub is like this, but
149    sometimes the .plt entry crosses a 64k boundary and we need to
150    insert an addi to adjust r11.  */
151 #define STD_R2_0R1      0xf8410000      /* std   %r2,0+40(%r1)       */
152 #define ADDIS_R11_R2    0x3d620000      /* addis %r11,%r2,xxx@ha     */
153 #define LD_R12_0R11     0xe98b0000      /* ld    %r12,xxx+0@l(%r11)  */
154 #define MTCTR_R12       0x7d8903a6      /* mtctr %r12                */
155 #define LD_R2_0R11      0xe84b0000      /* ld    %r2,xxx+8@l(%r11)   */
156 #define LD_R11_0R11     0xe96b0000      /* ld    %r11,xxx+16@l(%r11) */
157 #define BCTR            0x4e800420      /* bctr                      */
158
159 #define ADDI_R11_R11    0x396b0000      /* addi %r11,%r11,off@l  */
160 #define ADDIS_R2_R2     0x3c420000      /* addis %r2,%r2,off@ha  */
161 #define ADDI_R2_R2      0x38420000      /* addi  %r2,%r2,off@l   */
162
163 #define XOR_R2_R12_R12  0x7d826278      /* xor   %r2,%r12,%r12   */
164 #define ADD_R11_R11_R2  0x7d6b1214      /* add   %r11,%r11,%r2   */
165 #define XOR_R11_R12_R12 0x7d8b6278      /* xor   %r11,%r12,%r12  */
166 #define ADD_R2_R2_R11   0x7c425a14      /* add   %r2,%r2,%r11    */
167 #define CMPLDI_R2_0     0x28220000      /* cmpldi %r2,0          */
168 #define BNECTR          0x4ca20420      /* bnectr+               */
169 #define BNECTR_P4       0x4ce20420      /* bnectr+               */
170
171 #define LD_R12_0R2      0xe9820000      /* ld    %r12,xxx+0(%r2) */
172 #define LD_R11_0R2      0xe9620000      /* ld    %r11,xxx+0(%r2) */
173 #define LD_R2_0R2       0xe8420000      /* ld    %r2,xxx+0(%r2)  */
174
175 #define LD_R2_0R1       0xe8410000      /* ld    %r2,0(%r1)      */
176 #define LD_R2_0R12      0xe84c0000      /* ld    %r2,0(%r12)     */
177 #define ADD_R2_R2_R12   0x7c426214      /* add   %r2,%r2,%r12    */
178
179 #define LIS_R2          0x3c400000      /* lis %r2,xxx@ha         */
180 #define ADDIS_R2_R12    0x3c4c0000      /* addis %r2,%r12,xxx@ha  */
181 #define ADDIS_R12_R2    0x3d820000      /* addis %r12,%r2,xxx@ha  */
182 #define ADDIS_R12_R12   0x3d8c0000      /* addis %r12,%r12,xxx@ha */
183 #define LD_R12_0R12     0xe98c0000      /* ld    %r12,xxx@l(%r12) */
184
185 /* glink call stub instructions.  We enter with the index in R0.  */
186 #define GLINK_CALL_STUB_SIZE (16*4)
187                                         /* 0:                           */
188                                         /*  .quad plt0-1f               */
189                                         /* __glink:                     */
190 #define MFLR_R12        0x7d8802a6      /*  mflr %12                    */
191 #define BCL_20_31       0x429f0005      /*  bcl 20,31,1f                */
192                                         /* 1:                           */
193 #define MFLR_R11        0x7d6802a6      /*  mflr %11                    */
194                                         /*  ld %2,(0b-1b)(%11)          */
195 #define MTLR_R12        0x7d8803a6      /*  mtlr %12                    */
196 #define ADD_R11_R2_R11  0x7d625a14      /*  add %11,%2,%11              */
197                                         /*  ld %12,0(%11)               */
198                                         /*  ld %2,8(%11)                */
199                                         /*  mtctr %12                   */
200                                         /*  ld %11,16(%11)              */
201                                         /*  bctr                        */
202 #define MFLR_R0         0x7c0802a6      /*  mflr %r0                    */
203 #define MTLR_R0         0x7c0803a6      /*  mtlr %r0                    */
204 #define SUB_R12_R12_R11 0x7d8b6050      /*  subf %r12,%r11,%r12         */
205 #define ADDI_R0_R12     0x380c0000      /*  addi %r0,%r12,0             */
206 #define SRDI_R0_R0_2    0x7800f082      /*  rldicl %r0,%r0,62,2         */
207
208 /* Pad with this.  */
209 #define NOP             0x60000000
210
211 /* Some other nops.  */
212 #define CROR_151515     0x4def7b82
213 #define CROR_313131     0x4ffffb82
214
215 /* .glink entries for the first 32k functions are two instructions.  */
216 #define LI_R0_0         0x38000000      /* li    %r0,0          */
217 #define B_DOT           0x48000000      /* b     .              */
218
219 /* After that, we need two instructions to load the index, followed by
220    a branch.  */
221 #define LIS_R0_0        0x3c000000      /* lis   %r0,0          */
222 #define ORI_R0_R0_0     0x60000000      /* ori   %r0,%r0,0      */
223
224 /* Instructions used by the save and restore reg functions.  */
225 #define STD_R0_0R1      0xf8010000      /* std   %r0,0(%r1)     */
226 #define STD_R0_0R12     0xf80c0000      /* std   %r0,0(%r12)    */
227 #define LD_R0_0R1       0xe8010000      /* ld    %r0,0(%r1)     */
228 #define LD_R0_0R12      0xe80c0000      /* ld    %r0,0(%r12)    */
229 #define STFD_FR0_0R1    0xd8010000      /* stfd  %fr0,0(%r1)    */
230 #define LFD_FR0_0R1     0xc8010000      /* lfd   %fr0,0(%r1)    */
231 #define LI_R12_0        0x39800000      /* li    %r12,0         */
232 #define STVX_VR0_R12_R0 0x7c0c01ce      /* stvx  %v0,%r12,%r0   */
233 #define LVX_VR0_R12_R0  0x7c0c00ce      /* lvx   %v0,%r12,%r0   */
234 #define MTLR_R0         0x7c0803a6      /* mtlr  %r0            */
235 #define BLR             0x4e800020      /* blr                  */
236
237 /* Since .opd is an array of descriptors and each entry will end up
238    with identical R_PPC64_RELATIVE relocs, there is really no need to
239    propagate .opd relocs;  The dynamic linker should be taught to
240    relocate .opd without reloc entries.  */
241 #ifndef NO_OPD_RELOCS
242 #define NO_OPD_RELOCS 0
243 #endif
244
245 #ifndef ARRAY_SIZE
246 #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
247 #endif
248
249 static inline int
250 abiversion (bfd *abfd)
251 {
252   return elf_elfheader (abfd)->e_flags & EF_PPC64_ABI;
253 }
254
255 static inline void
256 set_abiversion (bfd *abfd, int ver)
257 {
258   elf_elfheader (abfd)->e_flags &= ~EF_PPC64_ABI;
259   elf_elfheader (abfd)->e_flags |= ver & EF_PPC64_ABI;
260 }
261 \f
262 #define ONES(n) (((bfd_vma) 1 << ((n) - 1) << 1) - 1)
263
264 /* Relocation HOWTO's.  */
265 static reloc_howto_type *ppc64_elf_howto_table[(int) R_PPC64_max];
266
267 static reloc_howto_type ppc64_elf_howto_raw[] = {
268   /* This reloc does nothing.  */
269   HOWTO (R_PPC64_NONE,          /* type */
270          0,                     /* rightshift */
271          3,                     /* size (0 = byte, 1 = short, 2 = long) */
272          0,                     /* bitsize */
273          FALSE,                 /* pc_relative */
274          0,                     /* bitpos */
275          complain_overflow_dont, /* complain_on_overflow */
276          bfd_elf_generic_reloc, /* special_function */
277          "R_PPC64_NONE",        /* name */
278          FALSE,                 /* partial_inplace */
279          0,                     /* src_mask */
280          0,                     /* dst_mask */
281          FALSE),                /* pcrel_offset */
282
283   /* A standard 32 bit relocation.  */
284   HOWTO (R_PPC64_ADDR32,        /* type */
285          0,                     /* rightshift */
286          2,                     /* size (0 = byte, 1 = short, 2 = long) */
287          32,                    /* bitsize */
288          FALSE,                 /* pc_relative */
289          0,                     /* bitpos */
290          complain_overflow_bitfield, /* complain_on_overflow */
291          bfd_elf_generic_reloc, /* special_function */
292          "R_PPC64_ADDR32",      /* name */
293          FALSE,                 /* partial_inplace */
294          0,                     /* src_mask */
295          0xffffffff,            /* dst_mask */
296          FALSE),                /* pcrel_offset */
297
298   /* An absolute 26 bit branch; the lower two bits must be zero.
299      FIXME: we don't check that, we just clear them.  */
300   HOWTO (R_PPC64_ADDR24,        /* type */
301          0,                     /* rightshift */
302          2,                     /* size (0 = byte, 1 = short, 2 = long) */
303          26,                    /* bitsize */
304          FALSE,                 /* pc_relative */
305          0,                     /* bitpos */
306          complain_overflow_bitfield, /* complain_on_overflow */
307          bfd_elf_generic_reloc, /* special_function */
308          "R_PPC64_ADDR24",      /* name */
309          FALSE,                 /* partial_inplace */
310          0,                     /* src_mask */
311          0x03fffffc,            /* dst_mask */
312          FALSE),                /* pcrel_offset */
313
314   /* A standard 16 bit relocation.  */
315   HOWTO (R_PPC64_ADDR16,        /* type */
316          0,                     /* rightshift */
317          1,                     /* size (0 = byte, 1 = short, 2 = long) */
318          16,                    /* bitsize */
319          FALSE,                 /* pc_relative */
320          0,                     /* bitpos */
321          complain_overflow_bitfield, /* complain_on_overflow */
322          bfd_elf_generic_reloc, /* special_function */
323          "R_PPC64_ADDR16",      /* name */
324          FALSE,                 /* partial_inplace */
325          0,                     /* src_mask */
326          0xffff,                /* dst_mask */
327          FALSE),                /* pcrel_offset */
328
329   /* A 16 bit relocation without overflow.  */
330   HOWTO (R_PPC64_ADDR16_LO,     /* type */
331          0,                     /* rightshift */
332          1,                     /* size (0 = byte, 1 = short, 2 = long) */
333          16,                    /* bitsize */
334          FALSE,                 /* pc_relative */
335          0,                     /* bitpos */
336          complain_overflow_dont,/* complain_on_overflow */
337          bfd_elf_generic_reloc, /* special_function */
338          "R_PPC64_ADDR16_LO",   /* name */
339          FALSE,                 /* partial_inplace */
340          0,                     /* src_mask */
341          0xffff,                /* dst_mask */
342          FALSE),                /* pcrel_offset */
343
344   /* Bits 16-31 of an address.  */
345   HOWTO (R_PPC64_ADDR16_HI,     /* type */
346          16,                    /* rightshift */
347          1,                     /* size (0 = byte, 1 = short, 2 = long) */
348          16,                    /* bitsize */
349          FALSE,                 /* pc_relative */
350          0,                     /* bitpos */
351          complain_overflow_signed, /* complain_on_overflow */
352          bfd_elf_generic_reloc, /* special_function */
353          "R_PPC64_ADDR16_HI",   /* name */
354          FALSE,                 /* partial_inplace */
355          0,                     /* src_mask */
356          0xffff,                /* dst_mask */
357          FALSE),                /* pcrel_offset */
358
359   /* Bits 16-31 of an address, plus 1 if the contents of the low 16
360      bits, treated as a signed number, is negative.  */
361   HOWTO (R_PPC64_ADDR16_HA,     /* type */
362          16,                    /* rightshift */
363          1,                     /* size (0 = byte, 1 = short, 2 = long) */
364          16,                    /* bitsize */
365          FALSE,                 /* pc_relative */
366          0,                     /* bitpos */
367          complain_overflow_signed, /* complain_on_overflow */
368          ppc64_elf_ha_reloc,    /* special_function */
369          "R_PPC64_ADDR16_HA",   /* name */
370          FALSE,                 /* partial_inplace */
371          0,                     /* src_mask */
372          0xffff,                /* dst_mask */
373          FALSE),                /* pcrel_offset */
374
375   /* An absolute 16 bit branch; the lower two bits must be zero.
376      FIXME: we don't check that, we just clear them.  */
377   HOWTO (R_PPC64_ADDR14,        /* type */
378          0,                     /* rightshift */
379          2,                     /* size (0 = byte, 1 = short, 2 = long) */
380          16,                    /* bitsize */
381          FALSE,                 /* pc_relative */
382          0,                     /* bitpos */
383          complain_overflow_signed, /* complain_on_overflow */
384          ppc64_elf_branch_reloc, /* special_function */
385          "R_PPC64_ADDR14",      /* name */
386          FALSE,                 /* partial_inplace */
387          0,                     /* src_mask */
388          0x0000fffc,            /* dst_mask */
389          FALSE),                /* pcrel_offset */
390
391   /* An absolute 16 bit branch, for which bit 10 should be set to
392      indicate that the branch is expected to be taken.  The lower two
393      bits must be zero.  */
394   HOWTO (R_PPC64_ADDR14_BRTAKEN, /* type */
395          0,                     /* rightshift */
396          2,                     /* size (0 = byte, 1 = short, 2 = long) */
397          16,                    /* bitsize */
398          FALSE,                 /* pc_relative */
399          0,                     /* bitpos */
400          complain_overflow_signed, /* complain_on_overflow */
401          ppc64_elf_brtaken_reloc, /* special_function */
402          "R_PPC64_ADDR14_BRTAKEN",/* name */
403          FALSE,                 /* partial_inplace */
404          0,                     /* src_mask */
405          0x0000fffc,            /* dst_mask */
406          FALSE),                /* pcrel_offset */
407
408   /* An absolute 16 bit branch, for which bit 10 should be set to
409      indicate that the branch is not expected to be taken.  The lower
410      two bits must be zero.  */
411   HOWTO (R_PPC64_ADDR14_BRNTAKEN, /* type */
412          0,                     /* rightshift */
413          2,                     /* size (0 = byte, 1 = short, 2 = long) */
414          16,                    /* bitsize */
415          FALSE,                 /* pc_relative */
416          0,                     /* bitpos */
417          complain_overflow_signed, /* complain_on_overflow */
418          ppc64_elf_brtaken_reloc, /* special_function */
419          "R_PPC64_ADDR14_BRNTAKEN",/* name */
420          FALSE,                 /* partial_inplace */
421          0,                     /* src_mask */
422          0x0000fffc,            /* dst_mask */
423          FALSE),                /* pcrel_offset */
424
425   /* A relative 26 bit branch; the lower two bits must be zero.  */
426   HOWTO (R_PPC64_REL24,         /* type */
427          0,                     /* rightshift */
428          2,                     /* size (0 = byte, 1 = short, 2 = long) */
429          26,                    /* bitsize */
430          TRUE,                  /* pc_relative */
431          0,                     /* bitpos */
432          complain_overflow_signed, /* complain_on_overflow */
433          ppc64_elf_branch_reloc, /* special_function */
434          "R_PPC64_REL24",       /* name */
435          FALSE,                 /* partial_inplace */
436          0,                     /* src_mask */
437          0x03fffffc,            /* dst_mask */
438          TRUE),                 /* pcrel_offset */
439
440   /* A relative 16 bit branch; the lower two bits must be zero.  */
441   HOWTO (R_PPC64_REL14,         /* type */
442          0,                     /* rightshift */
443          2,                     /* size (0 = byte, 1 = short, 2 = long) */
444          16,                    /* bitsize */
445          TRUE,                  /* pc_relative */
446          0,                     /* bitpos */
447          complain_overflow_signed, /* complain_on_overflow */
448          ppc64_elf_branch_reloc, /* special_function */
449          "R_PPC64_REL14",       /* name */
450          FALSE,                 /* partial_inplace */
451          0,                     /* src_mask */
452          0x0000fffc,            /* dst_mask */
453          TRUE),                 /* pcrel_offset */
454
455   /* A relative 16 bit branch.  Bit 10 should be set to indicate that
456      the branch is expected to be taken.  The lower two bits must be
457      zero.  */
458   HOWTO (R_PPC64_REL14_BRTAKEN, /* type */
459          0,                     /* rightshift */
460          2,                     /* size (0 = byte, 1 = short, 2 = long) */
461          16,                    /* bitsize */
462          TRUE,                  /* pc_relative */
463          0,                     /* bitpos */
464          complain_overflow_signed, /* complain_on_overflow */
465          ppc64_elf_brtaken_reloc, /* special_function */
466          "R_PPC64_REL14_BRTAKEN", /* name */
467          FALSE,                 /* partial_inplace */
468          0,                     /* src_mask */
469          0x0000fffc,            /* dst_mask */
470          TRUE),                 /* pcrel_offset */
471
472   /* A relative 16 bit branch.  Bit 10 should be set to indicate that
473      the branch is not expected to be taken.  The lower two bits must
474      be zero.  */
475   HOWTO (R_PPC64_REL14_BRNTAKEN, /* type */
476          0,                     /* rightshift */
477          2,                     /* size (0 = byte, 1 = short, 2 = long) */
478          16,                    /* bitsize */
479          TRUE,                  /* pc_relative */
480          0,                     /* bitpos */
481          complain_overflow_signed, /* complain_on_overflow */
482          ppc64_elf_brtaken_reloc, /* special_function */
483          "R_PPC64_REL14_BRNTAKEN",/* name */
484          FALSE,                 /* partial_inplace */
485          0,                     /* src_mask */
486          0x0000fffc,            /* dst_mask */
487          TRUE),                 /* pcrel_offset */
488
489   /* Like R_PPC64_ADDR16, but referring to the GOT table entry for the
490      symbol.  */
491   HOWTO (R_PPC64_GOT16,         /* type */
492          0,                     /* rightshift */
493          1,                     /* size (0 = byte, 1 = short, 2 = long) */
494          16,                    /* bitsize */
495          FALSE,                 /* pc_relative */
496          0,                     /* bitpos */
497          complain_overflow_signed, /* complain_on_overflow */
498          ppc64_elf_unhandled_reloc, /* special_function */
499          "R_PPC64_GOT16",       /* name */
500          FALSE,                 /* partial_inplace */
501          0,                     /* src_mask */
502          0xffff,                /* dst_mask */
503          FALSE),                /* pcrel_offset */
504
505   /* Like R_PPC64_ADDR16_LO, but referring to the GOT table entry for
506      the symbol.  */
507   HOWTO (R_PPC64_GOT16_LO,      /* type */
508          0,                     /* rightshift */
509          1,                     /* size (0 = byte, 1 = short, 2 = long) */
510          16,                    /* bitsize */
511          FALSE,                 /* pc_relative */
512          0,                     /* bitpos */
513          complain_overflow_dont, /* complain_on_overflow */
514          ppc64_elf_unhandled_reloc, /* special_function */
515          "R_PPC64_GOT16_LO",    /* name */
516          FALSE,                 /* partial_inplace */
517          0,                     /* src_mask */
518          0xffff,                /* dst_mask */
519          FALSE),                /* pcrel_offset */
520
521   /* Like R_PPC64_ADDR16_HI, but referring to the GOT table entry for
522      the symbol.  */
523   HOWTO (R_PPC64_GOT16_HI,      /* type */
524          16,                    /* rightshift */
525          1,                     /* size (0 = byte, 1 = short, 2 = long) */
526          16,                    /* bitsize */
527          FALSE,                 /* pc_relative */
528          0,                     /* bitpos */
529          complain_overflow_signed,/* complain_on_overflow */
530          ppc64_elf_unhandled_reloc, /* special_function */
531          "R_PPC64_GOT16_HI",    /* name */
532          FALSE,                 /* partial_inplace */
533          0,                     /* src_mask */
534          0xffff,                /* dst_mask */
535          FALSE),                /* pcrel_offset */
536
537   /* Like R_PPC64_ADDR16_HA, but referring to the GOT table entry for
538      the symbol.  */
539   HOWTO (R_PPC64_GOT16_HA,      /* type */
540          16,                    /* rightshift */
541          1,                     /* size (0 = byte, 1 = short, 2 = long) */
542          16,                    /* bitsize */
543          FALSE,                 /* pc_relative */
544          0,                     /* bitpos */
545          complain_overflow_signed,/* complain_on_overflow */
546          ppc64_elf_unhandled_reloc, /* special_function */
547          "R_PPC64_GOT16_HA",    /* name */
548          FALSE,                 /* partial_inplace */
549          0,                     /* src_mask */
550          0xffff,                /* dst_mask */
551          FALSE),                /* pcrel_offset */
552
553   /* This is used only by the dynamic linker.  The symbol should exist
554      both in the object being run and in some shared library.  The
555      dynamic linker copies the data addressed by the symbol from the
556      shared library into the object, because the object being
557      run has to have the data at some particular address.  */
558   HOWTO (R_PPC64_COPY,          /* type */
559          0,                     /* rightshift */
560          0,                     /* this one is variable size */
561          0,                     /* bitsize */
562          FALSE,                 /* pc_relative */
563          0,                     /* bitpos */
564          complain_overflow_dont, /* complain_on_overflow */
565          ppc64_elf_unhandled_reloc, /* special_function */
566          "R_PPC64_COPY",        /* name */
567          FALSE,                 /* partial_inplace */
568          0,                     /* src_mask */
569          0,                     /* dst_mask */
570          FALSE),                /* pcrel_offset */
571
572   /* Like R_PPC64_ADDR64, but used when setting global offset table
573      entries.  */
574   HOWTO (R_PPC64_GLOB_DAT,      /* type */
575          0,                     /* rightshift */
576          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
577          64,                    /* bitsize */
578          FALSE,                 /* pc_relative */
579          0,                     /* bitpos */
580          complain_overflow_dont, /* complain_on_overflow */
581          ppc64_elf_unhandled_reloc,  /* special_function */
582          "R_PPC64_GLOB_DAT",    /* name */
583          FALSE,                 /* partial_inplace */
584          0,                     /* src_mask */
585          ONES (64),             /* dst_mask */
586          FALSE),                /* pcrel_offset */
587
588   /* Created by the link editor.  Marks a procedure linkage table
589      entry for a symbol.  */
590   HOWTO (R_PPC64_JMP_SLOT,      /* type */
591          0,                     /* rightshift */
592          0,                     /* size (0 = byte, 1 = short, 2 = long) */
593          0,                     /* bitsize */
594          FALSE,                 /* pc_relative */
595          0,                     /* bitpos */
596          complain_overflow_dont, /* complain_on_overflow */
597          ppc64_elf_unhandled_reloc, /* special_function */
598          "R_PPC64_JMP_SLOT",    /* name */
599          FALSE,                 /* partial_inplace */
600          0,                     /* src_mask */
601          0,                     /* dst_mask */
602          FALSE),                /* pcrel_offset */
603
604   /* Used only by the dynamic linker.  When the object is run, this
605      doubleword64 is set to the load address of the object, plus the
606      addend.  */
607   HOWTO (R_PPC64_RELATIVE,      /* type */
608          0,                     /* rightshift */
609          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
610          64,                    /* bitsize */
611          FALSE,                 /* pc_relative */
612          0,                     /* bitpos */
613          complain_overflow_dont, /* complain_on_overflow */
614          bfd_elf_generic_reloc, /* special_function */
615          "R_PPC64_RELATIVE",    /* name */
616          FALSE,                 /* partial_inplace */
617          0,                     /* src_mask */
618          ONES (64),             /* dst_mask */
619          FALSE),                /* pcrel_offset */
620
621   /* Like R_PPC64_ADDR32, but may be unaligned.  */
622   HOWTO (R_PPC64_UADDR32,       /* type */
623          0,                     /* rightshift */
624          2,                     /* size (0 = byte, 1 = short, 2 = long) */
625          32,                    /* bitsize */
626          FALSE,                 /* pc_relative */
627          0,                     /* bitpos */
628          complain_overflow_bitfield, /* complain_on_overflow */
629          bfd_elf_generic_reloc, /* special_function */
630          "R_PPC64_UADDR32",     /* name */
631          FALSE,                 /* partial_inplace */
632          0,                     /* src_mask */
633          0xffffffff,            /* dst_mask */
634          FALSE),                /* pcrel_offset */
635
636   /* Like R_PPC64_ADDR16, but may be unaligned.  */
637   HOWTO (R_PPC64_UADDR16,       /* type */
638          0,                     /* rightshift */
639          1,                     /* size (0 = byte, 1 = short, 2 = long) */
640          16,                    /* bitsize */
641          FALSE,                 /* pc_relative */
642          0,                     /* bitpos */
643          complain_overflow_bitfield, /* complain_on_overflow */
644          bfd_elf_generic_reloc, /* special_function */
645          "R_PPC64_UADDR16",     /* name */
646          FALSE,                 /* partial_inplace */
647          0,                     /* src_mask */
648          0xffff,                /* dst_mask */
649          FALSE),                /* pcrel_offset */
650
651   /* 32-bit PC relative.  */
652   HOWTO (R_PPC64_REL32,         /* type */
653          0,                     /* rightshift */
654          2,                     /* size (0 = byte, 1 = short, 2 = long) */
655          32,                    /* bitsize */
656          TRUE,                  /* pc_relative */
657          0,                     /* bitpos */
658          complain_overflow_signed, /* complain_on_overflow */
659          bfd_elf_generic_reloc, /* special_function */
660          "R_PPC64_REL32",       /* name */
661          FALSE,                 /* partial_inplace */
662          0,                     /* src_mask */
663          0xffffffff,            /* dst_mask */
664          TRUE),                 /* pcrel_offset */
665
666   /* 32-bit relocation to the symbol's procedure linkage table.  */
667   HOWTO (R_PPC64_PLT32,         /* type */
668          0,                     /* rightshift */
669          2,                     /* size (0 = byte, 1 = short, 2 = long) */
670          32,                    /* bitsize */
671          FALSE,                 /* pc_relative */
672          0,                     /* bitpos */
673          complain_overflow_bitfield, /* complain_on_overflow */
674          ppc64_elf_unhandled_reloc, /* special_function */
675          "R_PPC64_PLT32",       /* name */
676          FALSE,                 /* partial_inplace */
677          0,                     /* src_mask */
678          0xffffffff,            /* dst_mask */
679          FALSE),                /* pcrel_offset */
680
681   /* 32-bit PC relative relocation to the symbol's procedure linkage table.
682      FIXME: R_PPC64_PLTREL32 not supported.  */
683   HOWTO (R_PPC64_PLTREL32,      /* type */
684          0,                     /* rightshift */
685          2,                     /* size (0 = byte, 1 = short, 2 = long) */
686          32,                    /* bitsize */
687          TRUE,                  /* pc_relative */
688          0,                     /* bitpos */
689          complain_overflow_signed, /* complain_on_overflow */
690          bfd_elf_generic_reloc, /* special_function */
691          "R_PPC64_PLTREL32",    /* name */
692          FALSE,                 /* partial_inplace */
693          0,                     /* src_mask */
694          0xffffffff,            /* dst_mask */
695          TRUE),                 /* pcrel_offset */
696
697   /* Like R_PPC64_ADDR16_LO, but referring to the PLT table entry for
698      the symbol.  */
699   HOWTO (R_PPC64_PLT16_LO,      /* type */
700          0,                     /* rightshift */
701          1,                     /* size (0 = byte, 1 = short, 2 = long) */
702          16,                    /* bitsize */
703          FALSE,                 /* pc_relative */
704          0,                     /* bitpos */
705          complain_overflow_dont, /* complain_on_overflow */
706          ppc64_elf_unhandled_reloc, /* special_function */
707          "R_PPC64_PLT16_LO",    /* name */
708          FALSE,                 /* partial_inplace */
709          0,                     /* src_mask */
710          0xffff,                /* dst_mask */
711          FALSE),                /* pcrel_offset */
712
713   /* Like R_PPC64_ADDR16_HI, but referring to the PLT table entry for
714      the symbol.  */
715   HOWTO (R_PPC64_PLT16_HI,      /* type */
716          16,                    /* rightshift */
717          1,                     /* size (0 = byte, 1 = short, 2 = long) */
718          16,                    /* bitsize */
719          FALSE,                 /* pc_relative */
720          0,                     /* bitpos */
721          complain_overflow_signed, /* complain_on_overflow */
722          ppc64_elf_unhandled_reloc, /* special_function */
723          "R_PPC64_PLT16_HI",    /* name */
724          FALSE,                 /* partial_inplace */
725          0,                     /* src_mask */
726          0xffff,                /* dst_mask */
727          FALSE),                /* pcrel_offset */
728
729   /* Like R_PPC64_ADDR16_HA, but referring to the PLT table entry for
730      the symbol.  */
731   HOWTO (R_PPC64_PLT16_HA,      /* type */
732          16,                    /* rightshift */
733          1,                     /* size (0 = byte, 1 = short, 2 = long) */
734          16,                    /* bitsize */
735          FALSE,                 /* pc_relative */
736          0,                     /* bitpos */
737          complain_overflow_signed, /* complain_on_overflow */
738          ppc64_elf_unhandled_reloc, /* special_function */
739          "R_PPC64_PLT16_HA",    /* name */
740          FALSE,                 /* partial_inplace */
741          0,                     /* src_mask */
742          0xffff,                /* dst_mask */
743          FALSE),                /* pcrel_offset */
744
745   /* 16-bit section relative relocation.  */
746   HOWTO (R_PPC64_SECTOFF,       /* type */
747          0,                     /* rightshift */
748          1,                     /* size (0 = byte, 1 = short, 2 = long) */
749          16,                    /* bitsize */
750          FALSE,                 /* pc_relative */
751          0,                     /* bitpos */
752          complain_overflow_signed, /* complain_on_overflow */
753          ppc64_elf_sectoff_reloc, /* special_function */
754          "R_PPC64_SECTOFF",     /* name */
755          FALSE,                 /* partial_inplace */
756          0,                     /* src_mask */
757          0xffff,                /* dst_mask */
758          FALSE),                /* pcrel_offset */
759
760   /* Like R_PPC64_SECTOFF, but no overflow warning.  */
761   HOWTO (R_PPC64_SECTOFF_LO,    /* type */
762          0,                     /* rightshift */
763          1,                     /* size (0 = byte, 1 = short, 2 = long) */
764          16,                    /* bitsize */
765          FALSE,                 /* pc_relative */
766          0,                     /* bitpos */
767          complain_overflow_dont, /* complain_on_overflow */
768          ppc64_elf_sectoff_reloc, /* special_function */
769          "R_PPC64_SECTOFF_LO",  /* name */
770          FALSE,                 /* partial_inplace */
771          0,                     /* src_mask */
772          0xffff,                /* dst_mask */
773          FALSE),                /* pcrel_offset */
774
775   /* 16-bit upper half section relative relocation.  */
776   HOWTO (R_PPC64_SECTOFF_HI,    /* type */
777          16,                    /* rightshift */
778          1,                     /* size (0 = byte, 1 = short, 2 = long) */
779          16,                    /* bitsize */
780          FALSE,                 /* pc_relative */
781          0,                     /* bitpos */
782          complain_overflow_signed, /* complain_on_overflow */
783          ppc64_elf_sectoff_reloc, /* special_function */
784          "R_PPC64_SECTOFF_HI",  /* name */
785          FALSE,                 /* partial_inplace */
786          0,                     /* src_mask */
787          0xffff,                /* dst_mask */
788          FALSE),                /* pcrel_offset */
789
790   /* 16-bit upper half adjusted section relative relocation.  */
791   HOWTO (R_PPC64_SECTOFF_HA,    /* type */
792          16,                    /* rightshift */
793          1,                     /* size (0 = byte, 1 = short, 2 = long) */
794          16,                    /* bitsize */
795          FALSE,                 /* pc_relative */
796          0,                     /* bitpos */
797          complain_overflow_signed, /* complain_on_overflow */
798          ppc64_elf_sectoff_ha_reloc, /* special_function */
799          "R_PPC64_SECTOFF_HA",  /* name */
800          FALSE,                 /* partial_inplace */
801          0,                     /* src_mask */
802          0xffff,                /* dst_mask */
803          FALSE),                /* pcrel_offset */
804
805   /* Like R_PPC64_REL24 without touching the two least significant bits.  */
806   HOWTO (R_PPC64_REL30,         /* type */
807          2,                     /* rightshift */
808          2,                     /* size (0 = byte, 1 = short, 2 = long) */
809          30,                    /* bitsize */
810          TRUE,                  /* pc_relative */
811          0,                     /* bitpos */
812          complain_overflow_dont, /* complain_on_overflow */
813          bfd_elf_generic_reloc, /* special_function */
814          "R_PPC64_REL30",       /* name */
815          FALSE,                 /* partial_inplace */
816          0,                     /* src_mask */
817          0xfffffffc,            /* dst_mask */
818          TRUE),                 /* pcrel_offset */
819
820   /* Relocs in the 64-bit PowerPC ELF ABI, not in the 32-bit ABI.  */
821
822   /* A standard 64-bit relocation.  */
823   HOWTO (R_PPC64_ADDR64,        /* type */
824          0,                     /* rightshift */
825          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
826          64,                    /* bitsize */
827          FALSE,                 /* pc_relative */
828          0,                     /* bitpos */
829          complain_overflow_dont, /* complain_on_overflow */
830          bfd_elf_generic_reloc, /* special_function */
831          "R_PPC64_ADDR64",      /* name */
832          FALSE,                 /* partial_inplace */
833          0,                     /* src_mask */
834          ONES (64),             /* dst_mask */
835          FALSE),                /* pcrel_offset */
836
837   /* The bits 32-47 of an address.  */
838   HOWTO (R_PPC64_ADDR16_HIGHER, /* type */
839          32,                    /* rightshift */
840          1,                     /* size (0 = byte, 1 = short, 2 = long) */
841          16,                    /* bitsize */
842          FALSE,                 /* pc_relative */
843          0,                     /* bitpos */
844          complain_overflow_dont, /* complain_on_overflow */
845          bfd_elf_generic_reloc, /* special_function */
846          "R_PPC64_ADDR16_HIGHER", /* name */
847          FALSE,                 /* partial_inplace */
848          0,                     /* src_mask */
849          0xffff,                /* dst_mask */
850          FALSE),                /* pcrel_offset */
851
852   /* The bits 32-47 of an address, plus 1 if the contents of the low
853      16 bits, treated as a signed number, is negative.  */
854   HOWTO (R_PPC64_ADDR16_HIGHERA, /* type */
855          32,                    /* rightshift */
856          1,                     /* size (0 = byte, 1 = short, 2 = long) */
857          16,                    /* bitsize */
858          FALSE,                 /* pc_relative */
859          0,                     /* bitpos */
860          complain_overflow_dont, /* complain_on_overflow */
861          ppc64_elf_ha_reloc,    /* special_function */
862          "R_PPC64_ADDR16_HIGHERA", /* name */
863          FALSE,                 /* partial_inplace */
864          0,                     /* src_mask */
865          0xffff,                /* dst_mask */
866          FALSE),                /* pcrel_offset */
867
868   /* The bits 48-63 of an address.  */
869   HOWTO (R_PPC64_ADDR16_HIGHEST,/* type */
870          48,                    /* rightshift */
871          1,                     /* size (0 = byte, 1 = short, 2 = long) */
872          16,                    /* bitsize */
873          FALSE,                 /* pc_relative */
874          0,                     /* bitpos */
875          complain_overflow_dont, /* complain_on_overflow */
876          bfd_elf_generic_reloc, /* special_function */
877          "R_PPC64_ADDR16_HIGHEST", /* name */
878          FALSE,                 /* partial_inplace */
879          0,                     /* src_mask */
880          0xffff,                /* dst_mask */
881          FALSE),                /* pcrel_offset */
882
883   /* The bits 48-63 of an address, plus 1 if the contents of the low
884      16 bits, treated as a signed number, is negative.  */
885   HOWTO (R_PPC64_ADDR16_HIGHESTA,/* type */
886          48,                    /* rightshift */
887          1,                     /* size (0 = byte, 1 = short, 2 = long) */
888          16,                    /* bitsize */
889          FALSE,                 /* pc_relative */
890          0,                     /* bitpos */
891          complain_overflow_dont, /* complain_on_overflow */
892          ppc64_elf_ha_reloc,    /* special_function */
893          "R_PPC64_ADDR16_HIGHESTA", /* name */
894          FALSE,                 /* partial_inplace */
895          0,                     /* src_mask */
896          0xffff,                /* dst_mask */
897          FALSE),                /* pcrel_offset */
898
899   /* Like ADDR64, but may be unaligned.  */
900   HOWTO (R_PPC64_UADDR64,       /* type */
901          0,                     /* rightshift */
902          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
903          64,                    /* bitsize */
904          FALSE,                 /* pc_relative */
905          0,                     /* bitpos */
906          complain_overflow_dont, /* complain_on_overflow */
907          bfd_elf_generic_reloc, /* special_function */
908          "R_PPC64_UADDR64",     /* name */
909          FALSE,                 /* partial_inplace */
910          0,                     /* src_mask */
911          ONES (64),             /* dst_mask */
912          FALSE),                /* pcrel_offset */
913
914   /* 64-bit relative relocation.  */
915   HOWTO (R_PPC64_REL64,         /* type */
916          0,                     /* rightshift */
917          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
918          64,                    /* bitsize */
919          TRUE,                  /* pc_relative */
920          0,                     /* bitpos */
921          complain_overflow_dont, /* complain_on_overflow */
922          bfd_elf_generic_reloc, /* special_function */
923          "R_PPC64_REL64",       /* name */
924          FALSE,                 /* partial_inplace */
925          0,                     /* src_mask */
926          ONES (64),             /* dst_mask */
927          TRUE),                 /* pcrel_offset */
928
929   /* 64-bit relocation to the symbol's procedure linkage table.  */
930   HOWTO (R_PPC64_PLT64,         /* type */
931          0,                     /* rightshift */
932          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
933          64,                    /* bitsize */
934          FALSE,                 /* pc_relative */
935          0,                     /* bitpos */
936          complain_overflow_dont, /* complain_on_overflow */
937          ppc64_elf_unhandled_reloc, /* special_function */
938          "R_PPC64_PLT64",       /* name */
939          FALSE,                 /* partial_inplace */
940          0,                     /* src_mask */
941          ONES (64),             /* dst_mask */
942          FALSE),                /* pcrel_offset */
943
944   /* 64-bit PC relative relocation to the symbol's procedure linkage
945      table.  */
946   /* FIXME: R_PPC64_PLTREL64 not supported.  */
947   HOWTO (R_PPC64_PLTREL64,      /* type */
948          0,                     /* rightshift */
949          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
950          64,                    /* bitsize */
951          TRUE,                  /* pc_relative */
952          0,                     /* bitpos */
953          complain_overflow_dont, /* complain_on_overflow */
954          ppc64_elf_unhandled_reloc, /* special_function */
955          "R_PPC64_PLTREL64",    /* name */
956          FALSE,                 /* partial_inplace */
957          0,                     /* src_mask */
958          ONES (64),             /* dst_mask */
959          TRUE),                 /* pcrel_offset */
960
961   /* 16 bit TOC-relative relocation.  */
962
963   /* R_PPC64_TOC16        47       half16*      S + A - .TOC.  */
964   HOWTO (R_PPC64_TOC16,         /* type */
965          0,                     /* rightshift */
966          1,                     /* size (0 = byte, 1 = short, 2 = long) */
967          16,                    /* bitsize */
968          FALSE,                 /* pc_relative */
969          0,                     /* bitpos */
970          complain_overflow_signed, /* complain_on_overflow */
971          ppc64_elf_toc_reloc,   /* special_function */
972          "R_PPC64_TOC16",       /* name */
973          FALSE,                 /* partial_inplace */
974          0,                     /* src_mask */
975          0xffff,                /* dst_mask */
976          FALSE),                /* pcrel_offset */
977
978   /* 16 bit TOC-relative relocation without overflow.  */
979
980   /* R_PPC64_TOC16_LO     48       half16        #lo (S + A - .TOC.)  */
981   HOWTO (R_PPC64_TOC16_LO,      /* type */
982          0,                     /* rightshift */
983          1,                     /* size (0 = byte, 1 = short, 2 = long) */
984          16,                    /* bitsize */
985          FALSE,                 /* pc_relative */
986          0,                     /* bitpos */
987          complain_overflow_dont, /* complain_on_overflow */
988          ppc64_elf_toc_reloc,   /* special_function */
989          "R_PPC64_TOC16_LO",    /* name */
990          FALSE,                 /* partial_inplace */
991          0,                     /* src_mask */
992          0xffff,                /* dst_mask */
993          FALSE),                /* pcrel_offset */
994
995   /* 16 bit TOC-relative relocation, high 16 bits.  */
996
997   /* R_PPC64_TOC16_HI     49       half16        #hi (S + A - .TOC.)  */
998   HOWTO (R_PPC64_TOC16_HI,      /* type */
999          16,                    /* rightshift */
1000          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1001          16,                    /* bitsize */
1002          FALSE,                 /* pc_relative */
1003          0,                     /* bitpos */
1004          complain_overflow_signed, /* complain_on_overflow */
1005          ppc64_elf_toc_reloc,   /* special_function */
1006          "R_PPC64_TOC16_HI",    /* name */
1007          FALSE,                 /* partial_inplace */
1008          0,                     /* src_mask */
1009          0xffff,                /* dst_mask */
1010          FALSE),                /* pcrel_offset */
1011
1012   /* 16 bit TOC-relative relocation, high 16 bits, plus 1 if the
1013      contents of the low 16 bits, treated as a signed number, is
1014      negative.  */
1015
1016   /* R_PPC64_TOC16_HA     50       half16        #ha (S + A - .TOC.)  */
1017   HOWTO (R_PPC64_TOC16_HA,      /* type */
1018          16,                    /* rightshift */
1019          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1020          16,                    /* bitsize */
1021          FALSE,                 /* pc_relative */
1022          0,                     /* bitpos */
1023          complain_overflow_signed, /* complain_on_overflow */
1024          ppc64_elf_toc_ha_reloc, /* special_function */
1025          "R_PPC64_TOC16_HA",    /* name */
1026          FALSE,                 /* partial_inplace */
1027          0,                     /* src_mask */
1028          0xffff,                /* dst_mask */
1029          FALSE),                /* pcrel_offset */
1030
1031   /* 64-bit relocation; insert value of TOC base (.TOC.).  */
1032
1033   /* R_PPC64_TOC                  51       doubleword64  .TOC.  */
1034   HOWTO (R_PPC64_TOC,           /* type */
1035          0,                     /* rightshift */
1036          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
1037          64,                    /* bitsize */
1038          FALSE,                 /* pc_relative */
1039          0,                     /* bitpos */
1040          complain_overflow_dont, /* complain_on_overflow */
1041          ppc64_elf_toc64_reloc, /* special_function */
1042          "R_PPC64_TOC",         /* name */
1043          FALSE,                 /* partial_inplace */
1044          0,                     /* src_mask */
1045          ONES (64),             /* dst_mask */
1046          FALSE),                /* pcrel_offset */
1047
1048   /* Like R_PPC64_GOT16, but also informs the link editor that the
1049      value to relocate may (!) refer to a PLT entry which the link
1050      editor (a) may replace with the symbol value.  If the link editor
1051      is unable to fully resolve the symbol, it may (b) create a PLT
1052      entry and store the address to the new PLT entry in the GOT.
1053      This permits lazy resolution of function symbols at run time.
1054      The link editor may also skip all of this and just (c) emit a
1055      R_PPC64_GLOB_DAT to tie the symbol to the GOT entry.  */
1056   /* FIXME: R_PPC64_PLTGOT16 not implemented.  */
1057     HOWTO (R_PPC64_PLTGOT16,    /* type */
1058          0,                     /* rightshift */
1059          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1060          16,                    /* bitsize */
1061          FALSE,                 /* pc_relative */
1062          0,                     /* bitpos */
1063          complain_overflow_signed, /* complain_on_overflow */
1064          ppc64_elf_unhandled_reloc, /* special_function */
1065          "R_PPC64_PLTGOT16",    /* name */
1066          FALSE,                 /* partial_inplace */
1067          0,                     /* src_mask */
1068          0xffff,                /* dst_mask */
1069          FALSE),                /* pcrel_offset */
1070
1071   /* Like R_PPC64_PLTGOT16, but without overflow.  */
1072   /* FIXME: R_PPC64_PLTGOT16_LO not implemented.  */
1073   HOWTO (R_PPC64_PLTGOT16_LO,   /* type */
1074          0,                     /* rightshift */
1075          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1076          16,                    /* bitsize */
1077          FALSE,                 /* pc_relative */
1078          0,                     /* bitpos */
1079          complain_overflow_dont, /* complain_on_overflow */
1080          ppc64_elf_unhandled_reloc, /* special_function */
1081          "R_PPC64_PLTGOT16_LO", /* name */
1082          FALSE,                 /* partial_inplace */
1083          0,                     /* src_mask */
1084          0xffff,                /* dst_mask */
1085          FALSE),                /* pcrel_offset */
1086
1087   /* Like R_PPC64_PLT_GOT16, but using bits 16-31 of the address.  */
1088   /* FIXME: R_PPC64_PLTGOT16_HI not implemented.  */
1089   HOWTO (R_PPC64_PLTGOT16_HI,   /* type */
1090          16,                    /* rightshift */
1091          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1092          16,                    /* bitsize */
1093          FALSE,                 /* pc_relative */
1094          0,                     /* bitpos */
1095          complain_overflow_signed, /* complain_on_overflow */
1096          ppc64_elf_unhandled_reloc, /* special_function */
1097          "R_PPC64_PLTGOT16_HI", /* name */
1098          FALSE,                 /* partial_inplace */
1099          0,                     /* src_mask */
1100          0xffff,                /* dst_mask */
1101          FALSE),                /* pcrel_offset */
1102
1103   /* Like R_PPC64_PLT_GOT16, but using bits 16-31 of the address, plus
1104      1 if the contents of the low 16 bits, treated as a signed number,
1105      is negative.  */
1106   /* FIXME: R_PPC64_PLTGOT16_HA not implemented.  */
1107   HOWTO (R_PPC64_PLTGOT16_HA,   /* type */
1108          16,                    /* rightshift */
1109          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1110          16,                    /* bitsize */
1111          FALSE,                 /* pc_relative */
1112          0,                     /* bitpos */
1113          complain_overflow_signed, /* complain_on_overflow */
1114          ppc64_elf_unhandled_reloc, /* special_function */
1115          "R_PPC64_PLTGOT16_HA", /* name */
1116          FALSE,                 /* partial_inplace */
1117          0,                     /* src_mask */
1118          0xffff,                /* dst_mask */
1119          FALSE),                /* pcrel_offset */
1120
1121   /* Like R_PPC64_ADDR16, but for instructions with a DS field.  */
1122   HOWTO (R_PPC64_ADDR16_DS,     /* type */
1123          0,                     /* rightshift */
1124          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1125          16,                    /* bitsize */
1126          FALSE,                 /* pc_relative */
1127          0,                     /* bitpos */
1128          complain_overflow_signed, /* complain_on_overflow */
1129          bfd_elf_generic_reloc, /* special_function */
1130          "R_PPC64_ADDR16_DS",   /* name */
1131          FALSE,                 /* partial_inplace */
1132          0,                     /* src_mask */
1133          0xfffc,                /* dst_mask */
1134          FALSE),                /* pcrel_offset */
1135
1136   /* Like R_PPC64_ADDR16_LO, but for instructions with a DS field.  */
1137   HOWTO (R_PPC64_ADDR16_LO_DS,  /* type */
1138          0,                     /* rightshift */
1139          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1140          16,                    /* bitsize */
1141          FALSE,                 /* pc_relative */
1142          0,                     /* bitpos */
1143          complain_overflow_dont,/* complain_on_overflow */
1144          bfd_elf_generic_reloc, /* special_function */
1145          "R_PPC64_ADDR16_LO_DS",/* name */
1146          FALSE,                 /* partial_inplace */
1147          0,                     /* src_mask */
1148          0xfffc,                /* dst_mask */
1149          FALSE),                /* pcrel_offset */
1150
1151   /* Like R_PPC64_GOT16, but for instructions with a DS field.  */
1152   HOWTO (R_PPC64_GOT16_DS,      /* type */
1153          0,                     /* rightshift */
1154          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1155          16,                    /* bitsize */
1156          FALSE,                 /* pc_relative */
1157          0,                     /* bitpos */
1158          complain_overflow_signed, /* complain_on_overflow */
1159          ppc64_elf_unhandled_reloc, /* special_function */
1160          "R_PPC64_GOT16_DS",    /* name */
1161          FALSE,                 /* partial_inplace */
1162          0,                     /* src_mask */
1163          0xfffc,                /* dst_mask */
1164          FALSE),                /* pcrel_offset */
1165
1166   /* Like R_PPC64_GOT16_LO, but for instructions with a DS field.  */
1167   HOWTO (R_PPC64_GOT16_LO_DS,   /* type */
1168          0,                     /* rightshift */
1169          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1170          16,                    /* bitsize */
1171          FALSE,                 /* pc_relative */
1172          0,                     /* bitpos */
1173          complain_overflow_dont, /* complain_on_overflow */
1174          ppc64_elf_unhandled_reloc, /* special_function */
1175          "R_PPC64_GOT16_LO_DS", /* name */
1176          FALSE,                 /* partial_inplace */
1177          0,                     /* src_mask */
1178          0xfffc,                /* dst_mask */
1179          FALSE),                /* pcrel_offset */
1180
1181   /* Like R_PPC64_PLT16_LO, but for instructions with a DS field.  */
1182   HOWTO (R_PPC64_PLT16_LO_DS,   /* type */
1183          0,                     /* rightshift */
1184          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1185          16,                    /* bitsize */
1186          FALSE,                 /* pc_relative */
1187          0,                     /* bitpos */
1188          complain_overflow_dont, /* complain_on_overflow */
1189          ppc64_elf_unhandled_reloc, /* special_function */
1190          "R_PPC64_PLT16_LO_DS", /* name */
1191          FALSE,                 /* partial_inplace */
1192          0,                     /* src_mask */
1193          0xfffc,                /* dst_mask */
1194          FALSE),                /* pcrel_offset */
1195
1196   /* Like R_PPC64_SECTOFF, but for instructions with a DS field.  */
1197   HOWTO (R_PPC64_SECTOFF_DS,    /* type */
1198          0,                     /* rightshift */
1199          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1200          16,                    /* bitsize */
1201          FALSE,                 /* pc_relative */
1202          0,                     /* bitpos */
1203          complain_overflow_signed, /* complain_on_overflow */
1204          ppc64_elf_sectoff_reloc, /* special_function */
1205          "R_PPC64_SECTOFF_DS",  /* name */
1206          FALSE,                 /* partial_inplace */
1207          0,                     /* src_mask */
1208          0xfffc,                /* dst_mask */
1209          FALSE),                /* pcrel_offset */
1210
1211   /* Like R_PPC64_SECTOFF_LO, but for instructions with a DS field.  */
1212   HOWTO (R_PPC64_SECTOFF_LO_DS, /* type */
1213          0,                     /* rightshift */
1214          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1215          16,                    /* bitsize */
1216          FALSE,                 /* pc_relative */
1217          0,                     /* bitpos */
1218          complain_overflow_dont, /* complain_on_overflow */
1219          ppc64_elf_sectoff_reloc, /* special_function */
1220          "R_PPC64_SECTOFF_LO_DS",/* name */
1221          FALSE,                 /* partial_inplace */
1222          0,                     /* src_mask */
1223          0xfffc,                /* dst_mask */
1224          FALSE),                /* pcrel_offset */
1225
1226   /* Like R_PPC64_TOC16, but for instructions with a DS field.  */
1227   HOWTO (R_PPC64_TOC16_DS,      /* type */
1228          0,                     /* rightshift */
1229          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1230          16,                    /* bitsize */
1231          FALSE,                 /* pc_relative */
1232          0,                     /* bitpos */
1233          complain_overflow_signed, /* complain_on_overflow */
1234          ppc64_elf_toc_reloc,   /* special_function */
1235          "R_PPC64_TOC16_DS",    /* name */
1236          FALSE,                 /* partial_inplace */
1237          0,                     /* src_mask */
1238          0xfffc,                /* dst_mask */
1239          FALSE),                /* pcrel_offset */
1240
1241   /* Like R_PPC64_TOC16_LO, but for instructions with a DS field.  */
1242   HOWTO (R_PPC64_TOC16_LO_DS,   /* type */
1243          0,                     /* rightshift */
1244          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1245          16,                    /* bitsize */
1246          FALSE,                 /* pc_relative */
1247          0,                     /* bitpos */
1248          complain_overflow_dont, /* complain_on_overflow */
1249          ppc64_elf_toc_reloc,   /* special_function */
1250          "R_PPC64_TOC16_LO_DS", /* name */
1251          FALSE,                 /* partial_inplace */
1252          0,                     /* src_mask */
1253          0xfffc,                /* dst_mask */
1254          FALSE),                /* pcrel_offset */
1255
1256   /* Like R_PPC64_PLTGOT16, but for instructions with a DS field.  */
1257   /* FIXME: R_PPC64_PLTGOT16_DS not implemented.  */
1258   HOWTO (R_PPC64_PLTGOT16_DS,   /* type */
1259          0,                     /* rightshift */
1260          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1261          16,                    /* bitsize */
1262          FALSE,                 /* pc_relative */
1263          0,                     /* bitpos */
1264          complain_overflow_signed, /* complain_on_overflow */
1265          ppc64_elf_unhandled_reloc, /* special_function */
1266          "R_PPC64_PLTGOT16_DS", /* name */
1267          FALSE,                 /* partial_inplace */
1268          0,                     /* src_mask */
1269          0xfffc,                /* dst_mask */
1270          FALSE),                /* pcrel_offset */
1271
1272   /* Like R_PPC64_PLTGOT16_LO, but for instructions with a DS field.  */
1273   /* FIXME: R_PPC64_PLTGOT16_LO not implemented.  */
1274   HOWTO (R_PPC64_PLTGOT16_LO_DS,/* type */
1275          0,                     /* rightshift */
1276          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1277          16,                    /* bitsize */
1278          FALSE,                 /* pc_relative */
1279          0,                     /* bitpos */
1280          complain_overflow_dont, /* complain_on_overflow */
1281          ppc64_elf_unhandled_reloc, /* special_function */
1282          "R_PPC64_PLTGOT16_LO_DS",/* name */
1283          FALSE,                 /* partial_inplace */
1284          0,                     /* src_mask */
1285          0xfffc,                /* dst_mask */
1286          FALSE),                /* pcrel_offset */
1287
1288   /* Marker relocs for TLS.  */
1289   HOWTO (R_PPC64_TLS,
1290          0,                     /* rightshift */
1291          2,                     /* size (0 = byte, 1 = short, 2 = long) */
1292          32,                    /* bitsize */
1293          FALSE,                 /* pc_relative */
1294          0,                     /* bitpos */
1295          complain_overflow_dont, /* complain_on_overflow */
1296          bfd_elf_generic_reloc, /* special_function */
1297          "R_PPC64_TLS",         /* name */
1298          FALSE,                 /* partial_inplace */
1299          0,                     /* src_mask */
1300          0,                     /* dst_mask */
1301          FALSE),                /* pcrel_offset */
1302
1303   HOWTO (R_PPC64_TLSGD,
1304          0,                     /* rightshift */
1305          2,                     /* size (0 = byte, 1 = short, 2 = long) */
1306          32,                    /* bitsize */
1307          FALSE,                 /* pc_relative */
1308          0,                     /* bitpos */
1309          complain_overflow_dont, /* complain_on_overflow */
1310          bfd_elf_generic_reloc, /* special_function */
1311          "R_PPC64_TLSGD",       /* name */
1312          FALSE,                 /* partial_inplace */
1313          0,                     /* src_mask */
1314          0,                     /* dst_mask */
1315          FALSE),                /* pcrel_offset */
1316
1317   HOWTO (R_PPC64_TLSLD,
1318          0,                     /* rightshift */
1319          2,                     /* size (0 = byte, 1 = short, 2 = long) */
1320          32,                    /* bitsize */
1321          FALSE,                 /* pc_relative */
1322          0,                     /* bitpos */
1323          complain_overflow_dont, /* complain_on_overflow */
1324          bfd_elf_generic_reloc, /* special_function */
1325          "R_PPC64_TLSLD",       /* name */
1326          FALSE,                 /* partial_inplace */
1327          0,                     /* src_mask */
1328          0,                     /* dst_mask */
1329          FALSE),                /* pcrel_offset */
1330
1331   HOWTO (R_PPC64_TOCSAVE,
1332          0,                     /* rightshift */
1333          2,                     /* size (0 = byte, 1 = short, 2 = long) */
1334          32,                    /* bitsize */
1335          FALSE,                 /* pc_relative */
1336          0,                     /* bitpos */
1337          complain_overflow_dont, /* complain_on_overflow */
1338          bfd_elf_generic_reloc, /* special_function */
1339          "R_PPC64_TOCSAVE",     /* name */
1340          FALSE,                 /* partial_inplace */
1341          0,                     /* src_mask */
1342          0,                     /* dst_mask */
1343          FALSE),                /* pcrel_offset */
1344
1345   /* Computes the load module index of the load module that contains the
1346      definition of its TLS sym.  */
1347   HOWTO (R_PPC64_DTPMOD64,
1348          0,                     /* rightshift */
1349          4,                     /* size (0 = byte, 1 = short, 2 = long) */
1350          64,                    /* bitsize */
1351          FALSE,                 /* pc_relative */
1352          0,                     /* bitpos */
1353          complain_overflow_dont, /* complain_on_overflow */
1354          ppc64_elf_unhandled_reloc, /* special_function */
1355          "R_PPC64_DTPMOD64",    /* name */
1356          FALSE,                 /* partial_inplace */
1357          0,                     /* src_mask */
1358          ONES (64),             /* dst_mask */
1359          FALSE),                /* pcrel_offset */
1360
1361   /* Computes a dtv-relative displacement, the difference between the value
1362      of sym+add and the base address of the thread-local storage block that
1363      contains the definition of sym, minus 0x8000.  */
1364   HOWTO (R_PPC64_DTPREL64,
1365          0,                     /* rightshift */
1366          4,                     /* size (0 = byte, 1 = short, 2 = long) */
1367          64,                    /* bitsize */
1368          FALSE,                 /* pc_relative */
1369          0,                     /* bitpos */
1370          complain_overflow_dont, /* complain_on_overflow */
1371          ppc64_elf_unhandled_reloc, /* special_function */
1372          "R_PPC64_DTPREL64",    /* name */
1373          FALSE,                 /* partial_inplace */
1374          0,                     /* src_mask */
1375          ONES (64),             /* dst_mask */
1376          FALSE),                /* pcrel_offset */
1377
1378   /* A 16 bit dtprel reloc.  */
1379   HOWTO (R_PPC64_DTPREL16,
1380          0,                     /* rightshift */
1381          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1382          16,                    /* bitsize */
1383          FALSE,                 /* pc_relative */
1384          0,                     /* bitpos */
1385          complain_overflow_signed, /* complain_on_overflow */
1386          ppc64_elf_unhandled_reloc, /* special_function */
1387          "R_PPC64_DTPREL16",    /* name */
1388          FALSE,                 /* partial_inplace */
1389          0,                     /* src_mask */
1390          0xffff,                /* dst_mask */
1391          FALSE),                /* pcrel_offset */
1392
1393   /* Like DTPREL16, but no overflow.  */
1394   HOWTO (R_PPC64_DTPREL16_LO,
1395          0,                     /* rightshift */
1396          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1397          16,                    /* bitsize */
1398          FALSE,                 /* pc_relative */
1399          0,                     /* bitpos */
1400          complain_overflow_dont, /* complain_on_overflow */
1401          ppc64_elf_unhandled_reloc, /* special_function */
1402          "R_PPC64_DTPREL16_LO", /* name */
1403          FALSE,                 /* partial_inplace */
1404          0,                     /* src_mask */
1405          0xffff,                /* dst_mask */
1406          FALSE),                /* pcrel_offset */
1407
1408   /* Like DTPREL16_LO, but next higher group of 16 bits.  */
1409   HOWTO (R_PPC64_DTPREL16_HI,
1410          16,                    /* rightshift */
1411          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1412          16,                    /* bitsize */
1413          FALSE,                 /* pc_relative */
1414          0,                     /* bitpos */
1415          complain_overflow_signed, /* complain_on_overflow */
1416          ppc64_elf_unhandled_reloc, /* special_function */
1417          "R_PPC64_DTPREL16_HI", /* name */
1418          FALSE,                 /* partial_inplace */
1419          0,                     /* src_mask */
1420          0xffff,                /* dst_mask */
1421          FALSE),                /* pcrel_offset */
1422
1423   /* Like DTPREL16_HI, but adjust for low 16 bits.  */
1424   HOWTO (R_PPC64_DTPREL16_HA,
1425          16,                    /* rightshift */
1426          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1427          16,                    /* bitsize */
1428          FALSE,                 /* pc_relative */
1429          0,                     /* bitpos */
1430          complain_overflow_signed, /* complain_on_overflow */
1431          ppc64_elf_unhandled_reloc, /* special_function */
1432          "R_PPC64_DTPREL16_HA", /* name */
1433          FALSE,                 /* partial_inplace */
1434          0,                     /* src_mask */
1435          0xffff,                /* dst_mask */
1436          FALSE),                /* pcrel_offset */
1437
1438   /* Like DTPREL16_HI, but next higher group of 16 bits.  */
1439   HOWTO (R_PPC64_DTPREL16_HIGHER,
1440          32,                    /* rightshift */
1441          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1442          16,                    /* bitsize */
1443          FALSE,                 /* pc_relative */
1444          0,                     /* bitpos */
1445          complain_overflow_dont, /* complain_on_overflow */
1446          ppc64_elf_unhandled_reloc, /* special_function */
1447          "R_PPC64_DTPREL16_HIGHER", /* name */
1448          FALSE,                 /* partial_inplace */
1449          0,                     /* src_mask */
1450          0xffff,                /* dst_mask */
1451          FALSE),                /* pcrel_offset */
1452
1453   /* Like DTPREL16_HIGHER, but adjust for low 16 bits.  */
1454   HOWTO (R_PPC64_DTPREL16_HIGHERA,
1455          32,                    /* rightshift */
1456          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1457          16,                    /* bitsize */
1458          FALSE,                 /* pc_relative */
1459          0,                     /* bitpos */
1460          complain_overflow_dont, /* complain_on_overflow */
1461          ppc64_elf_unhandled_reloc, /* special_function */
1462          "R_PPC64_DTPREL16_HIGHERA", /* name */
1463          FALSE,                 /* partial_inplace */
1464          0,                     /* src_mask */
1465          0xffff,                /* dst_mask */
1466          FALSE),                /* pcrel_offset */
1467
1468   /* Like DTPREL16_HIGHER, but next higher group of 16 bits.  */
1469   HOWTO (R_PPC64_DTPREL16_HIGHEST,
1470          48,                    /* rightshift */
1471          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1472          16,                    /* bitsize */
1473          FALSE,                 /* pc_relative */
1474          0,                     /* bitpos */
1475          complain_overflow_dont, /* complain_on_overflow */
1476          ppc64_elf_unhandled_reloc, /* special_function */
1477          "R_PPC64_DTPREL16_HIGHEST", /* name */
1478          FALSE,                 /* partial_inplace */
1479          0,                     /* src_mask */
1480          0xffff,                /* dst_mask */
1481          FALSE),                /* pcrel_offset */
1482
1483   /* Like DTPREL16_HIGHEST, but adjust for low 16 bits.  */
1484   HOWTO (R_PPC64_DTPREL16_HIGHESTA,
1485          48,                    /* rightshift */
1486          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1487          16,                    /* bitsize */
1488          FALSE,                 /* pc_relative */
1489          0,                     /* bitpos */
1490          complain_overflow_dont, /* complain_on_overflow */
1491          ppc64_elf_unhandled_reloc, /* special_function */
1492          "R_PPC64_DTPREL16_HIGHESTA", /* name */
1493          FALSE,                 /* partial_inplace */
1494          0,                     /* src_mask */
1495          0xffff,                /* dst_mask */
1496          FALSE),                /* pcrel_offset */
1497
1498   /* Like DTPREL16, but for insns with a DS field.  */
1499   HOWTO (R_PPC64_DTPREL16_DS,
1500          0,                     /* rightshift */
1501          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1502          16,                    /* bitsize */
1503          FALSE,                 /* pc_relative */
1504          0,                     /* bitpos */
1505          complain_overflow_signed, /* complain_on_overflow */
1506          ppc64_elf_unhandled_reloc, /* special_function */
1507          "R_PPC64_DTPREL16_DS", /* name */
1508          FALSE,                 /* partial_inplace */
1509          0,                     /* src_mask */
1510          0xfffc,                /* dst_mask */
1511          FALSE),                /* pcrel_offset */
1512
1513   /* Like DTPREL16_DS, but no overflow.  */
1514   HOWTO (R_PPC64_DTPREL16_LO_DS,
1515          0,                     /* rightshift */
1516          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1517          16,                    /* bitsize */
1518          FALSE,                 /* pc_relative */
1519          0,                     /* bitpos */
1520          complain_overflow_dont, /* complain_on_overflow */
1521          ppc64_elf_unhandled_reloc, /* special_function */
1522          "R_PPC64_DTPREL16_LO_DS", /* name */
1523          FALSE,                 /* partial_inplace */
1524          0,                     /* src_mask */
1525          0xfffc,                /* dst_mask */
1526          FALSE),                /* pcrel_offset */
1527
1528   /* Computes a tp-relative displacement, the difference between the value of
1529      sym+add and the value of the thread pointer (r13).  */
1530   HOWTO (R_PPC64_TPREL64,
1531          0,                     /* rightshift */
1532          4,                     /* size (0 = byte, 1 = short, 2 = long) */
1533          64,                    /* bitsize */
1534          FALSE,                 /* pc_relative */
1535          0,                     /* bitpos */
1536          complain_overflow_dont, /* complain_on_overflow */
1537          ppc64_elf_unhandled_reloc, /* special_function */
1538          "R_PPC64_TPREL64",     /* name */
1539          FALSE,                 /* partial_inplace */
1540          0,                     /* src_mask */
1541          ONES (64),             /* dst_mask */
1542          FALSE),                /* pcrel_offset */
1543
1544   /* A 16 bit tprel reloc.  */
1545   HOWTO (R_PPC64_TPREL16,
1546          0,                     /* rightshift */
1547          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1548          16,                    /* bitsize */
1549          FALSE,                 /* pc_relative */
1550          0,                     /* bitpos */
1551          complain_overflow_signed, /* complain_on_overflow */
1552          ppc64_elf_unhandled_reloc, /* special_function */
1553          "R_PPC64_TPREL16",     /* name */
1554          FALSE,                 /* partial_inplace */
1555          0,                     /* src_mask */
1556          0xffff,                /* dst_mask */
1557          FALSE),                /* pcrel_offset */
1558
1559   /* Like TPREL16, but no overflow.  */
1560   HOWTO (R_PPC64_TPREL16_LO,
1561          0,                     /* rightshift */
1562          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1563          16,                    /* bitsize */
1564          FALSE,                 /* pc_relative */
1565          0,                     /* bitpos */
1566          complain_overflow_dont, /* complain_on_overflow */
1567          ppc64_elf_unhandled_reloc, /* special_function */
1568          "R_PPC64_TPREL16_LO",  /* name */
1569          FALSE,                 /* partial_inplace */
1570          0,                     /* src_mask */
1571          0xffff,                /* dst_mask */
1572          FALSE),                /* pcrel_offset */
1573
1574   /* Like TPREL16_LO, but next higher group of 16 bits.  */
1575   HOWTO (R_PPC64_TPREL16_HI,
1576          16,                    /* rightshift */
1577          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1578          16,                    /* bitsize */
1579          FALSE,                 /* pc_relative */
1580          0,                     /* bitpos */
1581          complain_overflow_signed, /* complain_on_overflow */
1582          ppc64_elf_unhandled_reloc, /* special_function */
1583          "R_PPC64_TPREL16_HI",  /* name */
1584          FALSE,                 /* partial_inplace */
1585          0,                     /* src_mask */
1586          0xffff,                /* dst_mask */
1587          FALSE),                /* pcrel_offset */
1588
1589   /* Like TPREL16_HI, but adjust for low 16 bits.  */
1590   HOWTO (R_PPC64_TPREL16_HA,
1591          16,                    /* rightshift */
1592          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1593          16,                    /* bitsize */
1594          FALSE,                 /* pc_relative */
1595          0,                     /* bitpos */
1596          complain_overflow_signed, /* complain_on_overflow */
1597          ppc64_elf_unhandled_reloc, /* special_function */
1598          "R_PPC64_TPREL16_HA",  /* name */
1599          FALSE,                 /* partial_inplace */
1600          0,                     /* src_mask */
1601          0xffff,                /* dst_mask */
1602          FALSE),                /* pcrel_offset */
1603
1604   /* Like TPREL16_HI, but next higher group of 16 bits.  */
1605   HOWTO (R_PPC64_TPREL16_HIGHER,
1606          32,                    /* rightshift */
1607          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1608          16,                    /* bitsize */
1609          FALSE,                 /* pc_relative */
1610          0,                     /* bitpos */
1611          complain_overflow_dont, /* complain_on_overflow */
1612          ppc64_elf_unhandled_reloc, /* special_function */
1613          "R_PPC64_TPREL16_HIGHER",      /* name */
1614          FALSE,                 /* partial_inplace */
1615          0,                     /* src_mask */
1616          0xffff,                /* dst_mask */
1617          FALSE),                /* pcrel_offset */
1618
1619   /* Like TPREL16_HIGHER, but adjust for low 16 bits.  */
1620   HOWTO (R_PPC64_TPREL16_HIGHERA,
1621          32,                    /* rightshift */
1622          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1623          16,                    /* bitsize */
1624          FALSE,                 /* pc_relative */
1625          0,                     /* bitpos */
1626          complain_overflow_dont, /* complain_on_overflow */
1627          ppc64_elf_unhandled_reloc, /* special_function */
1628          "R_PPC64_TPREL16_HIGHERA", /* name */
1629          FALSE,                 /* partial_inplace */
1630          0,                     /* src_mask */
1631          0xffff,                /* dst_mask */
1632          FALSE),                /* pcrel_offset */
1633
1634   /* Like TPREL16_HIGHER, but next higher group of 16 bits.  */
1635   HOWTO (R_PPC64_TPREL16_HIGHEST,
1636          48,                    /* rightshift */
1637          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1638          16,                    /* bitsize */
1639          FALSE,                 /* pc_relative */
1640          0,                     /* bitpos */
1641          complain_overflow_dont, /* complain_on_overflow */
1642          ppc64_elf_unhandled_reloc, /* special_function */
1643          "R_PPC64_TPREL16_HIGHEST", /* name */
1644          FALSE,                 /* partial_inplace */
1645          0,                     /* src_mask */
1646          0xffff,                /* dst_mask */
1647          FALSE),                /* pcrel_offset */
1648
1649   /* Like TPREL16_HIGHEST, but adjust for low 16 bits.  */
1650   HOWTO (R_PPC64_TPREL16_HIGHESTA,
1651          48,                    /* rightshift */
1652          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1653          16,                    /* bitsize */
1654          FALSE,                 /* pc_relative */
1655          0,                     /* bitpos */
1656          complain_overflow_dont, /* complain_on_overflow */
1657          ppc64_elf_unhandled_reloc, /* special_function */
1658          "R_PPC64_TPREL16_HIGHESTA", /* name */
1659          FALSE,                 /* partial_inplace */
1660          0,                     /* src_mask */
1661          0xffff,                /* dst_mask */
1662          FALSE),                /* pcrel_offset */
1663
1664   /* Like TPREL16, but for insns with a DS field.  */
1665   HOWTO (R_PPC64_TPREL16_DS,
1666          0,                     /* rightshift */
1667          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1668          16,                    /* bitsize */
1669          FALSE,                 /* pc_relative */
1670          0,                     /* bitpos */
1671          complain_overflow_signed, /* complain_on_overflow */
1672          ppc64_elf_unhandled_reloc, /* special_function */
1673          "R_PPC64_TPREL16_DS",  /* name */
1674          FALSE,                 /* partial_inplace */
1675          0,                     /* src_mask */
1676          0xfffc,                /* dst_mask */
1677          FALSE),                /* pcrel_offset */
1678
1679   /* Like TPREL16_DS, but no overflow.  */
1680   HOWTO (R_PPC64_TPREL16_LO_DS,
1681          0,                     /* rightshift */
1682          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1683          16,                    /* bitsize */
1684          FALSE,                 /* pc_relative */
1685          0,                     /* bitpos */
1686          complain_overflow_dont, /* complain_on_overflow */
1687          ppc64_elf_unhandled_reloc, /* special_function */
1688          "R_PPC64_TPREL16_LO_DS", /* name */
1689          FALSE,                 /* partial_inplace */
1690          0,                     /* src_mask */
1691          0xfffc,                /* dst_mask */
1692          FALSE),                /* pcrel_offset */
1693
1694   /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
1695      with values (sym+add)@dtpmod and (sym+add)@dtprel, and computes the offset
1696      to the first entry relative to the TOC base (r2).  */
1697   HOWTO (R_PPC64_GOT_TLSGD16,
1698          0,                     /* rightshift */
1699          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1700          16,                    /* bitsize */
1701          FALSE,                 /* pc_relative */
1702          0,                     /* bitpos */
1703          complain_overflow_signed, /* complain_on_overflow */
1704          ppc64_elf_unhandled_reloc, /* special_function */
1705          "R_PPC64_GOT_TLSGD16", /* name */
1706          FALSE,                 /* partial_inplace */
1707          0,                     /* src_mask */
1708          0xffff,                /* dst_mask */
1709          FALSE),                /* pcrel_offset */
1710
1711   /* Like GOT_TLSGD16, but no overflow.  */
1712   HOWTO (R_PPC64_GOT_TLSGD16_LO,
1713          0,                     /* rightshift */
1714          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1715          16,                    /* bitsize */
1716          FALSE,                 /* pc_relative */
1717          0,                     /* bitpos */
1718          complain_overflow_dont, /* complain_on_overflow */
1719          ppc64_elf_unhandled_reloc, /* special_function */
1720          "R_PPC64_GOT_TLSGD16_LO", /* name */
1721          FALSE,                 /* partial_inplace */
1722          0,                     /* src_mask */
1723          0xffff,                /* dst_mask */
1724          FALSE),                /* pcrel_offset */
1725
1726   /* Like GOT_TLSGD16_LO, but next higher group of 16 bits.  */
1727   HOWTO (R_PPC64_GOT_TLSGD16_HI,
1728          16,                    /* rightshift */
1729          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1730          16,                    /* bitsize */
1731          FALSE,                 /* pc_relative */
1732          0,                     /* bitpos */
1733          complain_overflow_signed, /* complain_on_overflow */
1734          ppc64_elf_unhandled_reloc, /* special_function */
1735          "R_PPC64_GOT_TLSGD16_HI", /* name */
1736          FALSE,                 /* partial_inplace */
1737          0,                     /* src_mask */
1738          0xffff,                /* dst_mask */
1739          FALSE),                /* pcrel_offset */
1740
1741   /* Like GOT_TLSGD16_HI, but adjust for low 16 bits.  */
1742   HOWTO (R_PPC64_GOT_TLSGD16_HA,
1743          16,                    /* rightshift */
1744          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1745          16,                    /* bitsize */
1746          FALSE,                 /* pc_relative */
1747          0,                     /* bitpos */
1748          complain_overflow_signed, /* complain_on_overflow */
1749          ppc64_elf_unhandled_reloc, /* special_function */
1750          "R_PPC64_GOT_TLSGD16_HA", /* name */
1751          FALSE,                 /* partial_inplace */
1752          0,                     /* src_mask */
1753          0xffff,                /* dst_mask */
1754          FALSE),                /* pcrel_offset */
1755
1756   /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
1757      with values (sym+add)@dtpmod and zero, and computes the offset to the
1758      first entry relative to the TOC base (r2).  */
1759   HOWTO (R_PPC64_GOT_TLSLD16,
1760          0,                     /* rightshift */
1761          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1762          16,                    /* bitsize */
1763          FALSE,                 /* pc_relative */
1764          0,                     /* bitpos */
1765          complain_overflow_signed, /* complain_on_overflow */
1766          ppc64_elf_unhandled_reloc, /* special_function */
1767          "R_PPC64_GOT_TLSLD16", /* name */
1768          FALSE,                 /* partial_inplace */
1769          0,                     /* src_mask */
1770          0xffff,                /* dst_mask */
1771          FALSE),                /* pcrel_offset */
1772
1773   /* Like GOT_TLSLD16, but no overflow.  */
1774   HOWTO (R_PPC64_GOT_TLSLD16_LO,
1775          0,                     /* rightshift */
1776          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1777          16,                    /* bitsize */
1778          FALSE,                 /* pc_relative */
1779          0,                     /* bitpos */
1780          complain_overflow_dont, /* complain_on_overflow */
1781          ppc64_elf_unhandled_reloc, /* special_function */
1782          "R_PPC64_GOT_TLSLD16_LO", /* name */
1783          FALSE,                 /* partial_inplace */
1784          0,                     /* src_mask */
1785          0xffff,                /* dst_mask */
1786          FALSE),                /* pcrel_offset */
1787
1788   /* Like GOT_TLSLD16_LO, but next higher group of 16 bits.  */
1789   HOWTO (R_PPC64_GOT_TLSLD16_HI,
1790          16,                    /* rightshift */
1791          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1792          16,                    /* bitsize */
1793          FALSE,                 /* pc_relative */
1794          0,                     /* bitpos */
1795          complain_overflow_signed, /* complain_on_overflow */
1796          ppc64_elf_unhandled_reloc, /* special_function */
1797          "R_PPC64_GOT_TLSLD16_HI", /* name */
1798          FALSE,                 /* partial_inplace */
1799          0,                     /* src_mask */
1800          0xffff,                /* dst_mask */
1801          FALSE),                /* pcrel_offset */
1802
1803   /* Like GOT_TLSLD16_HI, but adjust for low 16 bits.  */
1804   HOWTO (R_PPC64_GOT_TLSLD16_HA,
1805          16,                    /* rightshift */
1806          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1807          16,                    /* bitsize */
1808          FALSE,                 /* pc_relative */
1809          0,                     /* bitpos */
1810          complain_overflow_signed, /* complain_on_overflow */
1811          ppc64_elf_unhandled_reloc, /* special_function */
1812          "R_PPC64_GOT_TLSLD16_HA", /* name */
1813          FALSE,                 /* partial_inplace */
1814          0,                     /* src_mask */
1815          0xffff,                /* dst_mask */
1816          FALSE),                /* pcrel_offset */
1817
1818   /* Allocates an entry in the GOT with value (sym+add)@dtprel, and computes
1819      the offset to the entry relative to the TOC base (r2).  */
1820   HOWTO (R_PPC64_GOT_DTPREL16_DS,
1821          0,                     /* rightshift */
1822          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1823          16,                    /* bitsize */
1824          FALSE,                 /* pc_relative */
1825          0,                     /* bitpos */
1826          complain_overflow_signed, /* complain_on_overflow */
1827          ppc64_elf_unhandled_reloc, /* special_function */
1828          "R_PPC64_GOT_DTPREL16_DS", /* name */
1829          FALSE,                 /* partial_inplace */
1830          0,                     /* src_mask */
1831          0xfffc,                /* dst_mask */
1832          FALSE),                /* pcrel_offset */
1833
1834   /* Like GOT_DTPREL16_DS, but no overflow.  */
1835   HOWTO (R_PPC64_GOT_DTPREL16_LO_DS,
1836          0,                     /* rightshift */
1837          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1838          16,                    /* bitsize */
1839          FALSE,                 /* pc_relative */
1840          0,                     /* bitpos */
1841          complain_overflow_dont, /* complain_on_overflow */
1842          ppc64_elf_unhandled_reloc, /* special_function */
1843          "R_PPC64_GOT_DTPREL16_LO_DS", /* name */
1844          FALSE,                 /* partial_inplace */
1845          0,                     /* src_mask */
1846          0xfffc,                /* dst_mask */
1847          FALSE),                /* pcrel_offset */
1848
1849   /* Like GOT_DTPREL16_LO_DS, but next higher group of 16 bits.  */
1850   HOWTO (R_PPC64_GOT_DTPREL16_HI,
1851          16,                    /* rightshift */
1852          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1853          16,                    /* bitsize */
1854          FALSE,                 /* pc_relative */
1855          0,                     /* bitpos */
1856          complain_overflow_signed, /* complain_on_overflow */
1857          ppc64_elf_unhandled_reloc, /* special_function */
1858          "R_PPC64_GOT_DTPREL16_HI", /* name */
1859          FALSE,                 /* partial_inplace */
1860          0,                     /* src_mask */
1861          0xffff,                /* dst_mask */
1862          FALSE),                /* pcrel_offset */
1863
1864   /* Like GOT_DTPREL16_HI, but adjust for low 16 bits.  */
1865   HOWTO (R_PPC64_GOT_DTPREL16_HA,
1866          16,                    /* rightshift */
1867          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1868          16,                    /* bitsize */
1869          FALSE,                 /* pc_relative */
1870          0,                     /* bitpos */
1871          complain_overflow_signed, /* complain_on_overflow */
1872          ppc64_elf_unhandled_reloc, /* special_function */
1873          "R_PPC64_GOT_DTPREL16_HA", /* name */
1874          FALSE,                 /* partial_inplace */
1875          0,                     /* src_mask */
1876          0xffff,                /* dst_mask */
1877          FALSE),                /* pcrel_offset */
1878
1879   /* Allocates an entry in the GOT with value (sym+add)@tprel, and computes the
1880      offset to the entry relative to the TOC base (r2).  */
1881   HOWTO (R_PPC64_GOT_TPREL16_DS,
1882          0,                     /* rightshift */
1883          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1884          16,                    /* bitsize */
1885          FALSE,                 /* pc_relative */
1886          0,                     /* bitpos */
1887          complain_overflow_signed, /* complain_on_overflow */
1888          ppc64_elf_unhandled_reloc, /* special_function */
1889          "R_PPC64_GOT_TPREL16_DS", /* name */
1890          FALSE,                 /* partial_inplace */
1891          0,                     /* src_mask */
1892          0xfffc,                /* dst_mask */
1893          FALSE),                /* pcrel_offset */
1894
1895   /* Like GOT_TPREL16_DS, but no overflow.  */
1896   HOWTO (R_PPC64_GOT_TPREL16_LO_DS,
1897          0,                     /* rightshift */
1898          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1899          16,                    /* bitsize */
1900          FALSE,                 /* pc_relative */
1901          0,                     /* bitpos */
1902          complain_overflow_dont, /* complain_on_overflow */
1903          ppc64_elf_unhandled_reloc, /* special_function */
1904          "R_PPC64_GOT_TPREL16_LO_DS", /* name */
1905          FALSE,                 /* partial_inplace */
1906          0,                     /* src_mask */
1907          0xfffc,                /* dst_mask */
1908          FALSE),                /* pcrel_offset */
1909
1910   /* Like GOT_TPREL16_LO_DS, but next higher group of 16 bits.  */
1911   HOWTO (R_PPC64_GOT_TPREL16_HI,
1912          16,                    /* rightshift */
1913          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1914          16,                    /* bitsize */
1915          FALSE,                 /* pc_relative */
1916          0,                     /* bitpos */
1917          complain_overflow_signed, /* complain_on_overflow */
1918          ppc64_elf_unhandled_reloc, /* special_function */
1919          "R_PPC64_GOT_TPREL16_HI", /* name */
1920          FALSE,                 /* partial_inplace */
1921          0,                     /* src_mask */
1922          0xffff,                /* dst_mask */
1923          FALSE),                /* pcrel_offset */
1924
1925   /* Like GOT_TPREL16_HI, but adjust for low 16 bits.  */
1926   HOWTO (R_PPC64_GOT_TPREL16_HA,
1927          16,                    /* rightshift */
1928          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1929          16,                    /* bitsize */
1930          FALSE,                 /* pc_relative */
1931          0,                     /* bitpos */
1932          complain_overflow_signed, /* complain_on_overflow */
1933          ppc64_elf_unhandled_reloc, /* special_function */
1934          "R_PPC64_GOT_TPREL16_HA", /* name */
1935          FALSE,                 /* partial_inplace */
1936          0,                     /* src_mask */
1937          0xffff,                /* dst_mask */
1938          FALSE),                /* pcrel_offset */
1939
1940   HOWTO (R_PPC64_JMP_IREL,      /* type */
1941          0,                     /* rightshift */
1942          0,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
1943          0,                     /* bitsize */
1944          FALSE,                 /* pc_relative */
1945          0,                     /* bitpos */
1946          complain_overflow_dont, /* complain_on_overflow */
1947          ppc64_elf_unhandled_reloc, /* special_function */
1948          "R_PPC64_JMP_IREL",    /* name */
1949          FALSE,                 /* partial_inplace */
1950          0,                     /* src_mask */
1951          0,                     /* dst_mask */
1952          FALSE),                /* pcrel_offset */
1953
1954   HOWTO (R_PPC64_IRELATIVE,     /* type */
1955          0,                     /* rightshift */
1956          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
1957          64,                    /* bitsize */
1958          FALSE,                 /* pc_relative */
1959          0,                     /* bitpos */
1960          complain_overflow_dont, /* complain_on_overflow */
1961          bfd_elf_generic_reloc, /* special_function */
1962          "R_PPC64_IRELATIVE",   /* name */
1963          FALSE,                 /* partial_inplace */
1964          0,                     /* src_mask */
1965          ONES (64),             /* dst_mask */
1966          FALSE),                /* pcrel_offset */
1967
1968   /* A 16 bit relative relocation.  */
1969   HOWTO (R_PPC64_REL16,         /* type */
1970          0,                     /* rightshift */
1971          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1972          16,                    /* bitsize */
1973          TRUE,                  /* pc_relative */
1974          0,                     /* bitpos */
1975          complain_overflow_signed, /* complain_on_overflow */
1976          bfd_elf_generic_reloc, /* special_function */
1977          "R_PPC64_REL16",       /* name */
1978          FALSE,                 /* partial_inplace */
1979          0,                     /* src_mask */
1980          0xffff,                /* dst_mask */
1981          TRUE),                 /* pcrel_offset */
1982
1983   /* A 16 bit relative relocation without overflow.  */
1984   HOWTO (R_PPC64_REL16_LO,      /* type */
1985          0,                     /* rightshift */
1986          1,                     /* size (0 = byte, 1 = short, 2 = long) */
1987          16,                    /* bitsize */
1988          TRUE,                  /* pc_relative */
1989          0,                     /* bitpos */
1990          complain_overflow_dont,/* complain_on_overflow */
1991          bfd_elf_generic_reloc, /* special_function */
1992          "R_PPC64_REL16_LO",    /* name */
1993          FALSE,                 /* partial_inplace */
1994          0,                     /* src_mask */
1995          0xffff,                /* dst_mask */
1996          TRUE),                 /* pcrel_offset */
1997
1998   /* The high order 16 bits of a relative address.  */
1999   HOWTO (R_PPC64_REL16_HI,      /* type */
2000          16,                    /* rightshift */
2001          1,                     /* size (0 = byte, 1 = short, 2 = long) */
2002          16,                    /* bitsize */
2003          TRUE,                  /* pc_relative */
2004          0,                     /* bitpos */
2005          complain_overflow_signed, /* complain_on_overflow */
2006          bfd_elf_generic_reloc, /* special_function */
2007          "R_PPC64_REL16_HI",    /* name */
2008          FALSE,                 /* partial_inplace */
2009          0,                     /* src_mask */
2010          0xffff,                /* dst_mask */
2011          TRUE),                 /* pcrel_offset */
2012
2013   /* The high order 16 bits of a relative address, plus 1 if the contents of
2014      the low 16 bits, treated as a signed number, is negative.  */
2015   HOWTO (R_PPC64_REL16_HA,      /* type */
2016          16,                    /* rightshift */
2017          1,                     /* size (0 = byte, 1 = short, 2 = long) */
2018          16,                    /* bitsize */
2019          TRUE,                  /* pc_relative */
2020          0,                     /* bitpos */
2021          complain_overflow_signed, /* complain_on_overflow */
2022          ppc64_elf_ha_reloc,    /* special_function */
2023          "R_PPC64_REL16_HA",    /* name */
2024          FALSE,                 /* partial_inplace */
2025          0,                     /* src_mask */
2026          0xffff,                /* dst_mask */
2027          TRUE),                 /* pcrel_offset */
2028
2029   /* Like R_PPC64_REL16_HA but for split field in addpcis.  */
2030   HOWTO (R_PPC64_REL16DX_HA,    /* type */
2031          16,                    /* rightshift */
2032          2,                     /* size (0 = byte, 1 = short, 2 = long) */
2033          16,                    /* bitsize */
2034          TRUE,                  /* pc_relative */
2035          0,                     /* bitpos */
2036          complain_overflow_signed, /* complain_on_overflow */
2037          ppc64_elf_ha_reloc,    /* special_function */
2038          "R_PPC64_REL16DX_HA",  /* name */
2039          FALSE,                 /* partial_inplace */
2040          0,                     /* src_mask */
2041          0x1fffc1,              /* dst_mask */
2042          TRUE),                 /* pcrel_offset */
2043
2044   /* Like R_PPC64_ADDR16_HI, but no overflow.  */
2045   HOWTO (R_PPC64_ADDR16_HIGH,   /* type */
2046          16,                    /* rightshift */
2047          1,                     /* size (0 = byte, 1 = short, 2 = long) */
2048          16,                    /* bitsize */
2049          FALSE,                 /* pc_relative */
2050          0,                     /* bitpos */
2051          complain_overflow_dont, /* complain_on_overflow */
2052          bfd_elf_generic_reloc, /* special_function */
2053          "R_PPC64_ADDR16_HIGH", /* name */
2054          FALSE,                 /* partial_inplace */
2055          0,                     /* src_mask */
2056          0xffff,                /* dst_mask */
2057          FALSE),                /* pcrel_offset */
2058
2059   /* Like R_PPC64_ADDR16_HA, but no overflow.  */
2060   HOWTO (R_PPC64_ADDR16_HIGHA,  /* type */
2061          16,                    /* rightshift */
2062          1,                     /* size (0 = byte, 1 = short, 2 = long) */
2063          16,                    /* bitsize */
2064          FALSE,                 /* pc_relative */
2065          0,                     /* bitpos */
2066          complain_overflow_dont, /* complain_on_overflow */
2067          ppc64_elf_ha_reloc,    /* special_function */
2068          "R_PPC64_ADDR16_HIGHA",        /* name */
2069          FALSE,                 /* partial_inplace */
2070          0,                     /* src_mask */
2071          0xffff,                /* dst_mask */
2072          FALSE),                /* pcrel_offset */
2073
2074   /* Like R_PPC64_DTPREL16_HI, but no overflow.  */
2075   HOWTO (R_PPC64_DTPREL16_HIGH,
2076          16,                    /* rightshift */
2077          1,                     /* size (0 = byte, 1 = short, 2 = long) */
2078          16,                    /* bitsize */
2079          FALSE,                 /* pc_relative */
2080          0,                     /* bitpos */
2081          complain_overflow_dont, /* complain_on_overflow */
2082          ppc64_elf_unhandled_reloc, /* special_function */
2083          "R_PPC64_DTPREL16_HIGH", /* name */
2084          FALSE,                 /* partial_inplace */
2085          0,                     /* src_mask */
2086          0xffff,                /* dst_mask */
2087          FALSE),                /* pcrel_offset */
2088
2089   /* Like R_PPC64_DTPREL16_HA, but no overflow.  */
2090   HOWTO (R_PPC64_DTPREL16_HIGHA,
2091          16,                    /* rightshift */
2092          1,                     /* size (0 = byte, 1 = short, 2 = long) */
2093          16,                    /* bitsize */
2094          FALSE,                 /* pc_relative */
2095          0,                     /* bitpos */
2096          complain_overflow_dont, /* complain_on_overflow */
2097          ppc64_elf_unhandled_reloc, /* special_function */
2098          "R_PPC64_DTPREL16_HIGHA", /* name */
2099          FALSE,                 /* partial_inplace */
2100          0,                     /* src_mask */
2101          0xffff,                /* dst_mask */
2102          FALSE),                /* pcrel_offset */
2103
2104   /* Like R_PPC64_TPREL16_HI, but no overflow.  */
2105   HOWTO (R_PPC64_TPREL16_HIGH,
2106          16,                    /* rightshift */
2107          1,                     /* size (0 = byte, 1 = short, 2 = long) */
2108          16,                    /* bitsize */
2109          FALSE,                 /* pc_relative */
2110          0,                     /* bitpos */
2111          complain_overflow_dont, /* complain_on_overflow */
2112          ppc64_elf_unhandled_reloc, /* special_function */
2113          "R_PPC64_TPREL16_HIGH",        /* name */
2114          FALSE,                 /* partial_inplace */
2115          0,                     /* src_mask */
2116          0xffff,                /* dst_mask */
2117          FALSE),                /* pcrel_offset */
2118
2119   /* Like R_PPC64_TPREL16_HA, but no overflow.  */
2120   HOWTO (R_PPC64_TPREL16_HIGHA,
2121          16,                    /* rightshift */
2122          1,                     /* size (0 = byte, 1 = short, 2 = long) */
2123          16,                    /* bitsize */
2124          FALSE,                 /* pc_relative */
2125          0,                     /* bitpos */
2126          complain_overflow_dont, /* complain_on_overflow */
2127          ppc64_elf_unhandled_reloc, /* special_function */
2128          "R_PPC64_TPREL16_HIGHA",       /* name */
2129          FALSE,                 /* partial_inplace */
2130          0,                     /* src_mask */
2131          0xffff,                /* dst_mask */
2132          FALSE),                /* pcrel_offset */
2133
2134   /* Marker reloc on ELFv2 large-model function entry.  */
2135   HOWTO (R_PPC64_ENTRY,
2136          0,                     /* rightshift */
2137          2,                     /* size (0 = byte, 1 = short, 2 = long) */
2138          32,                    /* bitsize */
2139          FALSE,                 /* pc_relative */
2140          0,                     /* bitpos */
2141          complain_overflow_dont, /* complain_on_overflow */
2142          bfd_elf_generic_reloc, /* special_function */
2143          "R_PPC64_ENTRY",       /* name */
2144          FALSE,                 /* partial_inplace */
2145          0,                     /* src_mask */
2146          0,                     /* dst_mask */
2147          FALSE),                /* pcrel_offset */
2148
2149   /* Like ADDR64, but use local entry point of function.  */
2150   HOWTO (R_PPC64_ADDR64_LOCAL,  /* type */
2151          0,                     /* rightshift */
2152          4,                     /* size (0=byte, 1=short, 2=long, 4=64 bits) */
2153          64,                    /* bitsize */
2154          FALSE,                 /* pc_relative */
2155          0,                     /* bitpos */
2156          complain_overflow_dont, /* complain_on_overflow */
2157          bfd_elf_generic_reloc, /* special_function */
2158          "R_PPC64_ADDR64_LOCAL", /* name */
2159          FALSE,                 /* partial_inplace */
2160          0,                     /* src_mask */
2161          ONES (64),             /* dst_mask */
2162          FALSE),                /* pcrel_offset */
2163
2164   /* GNU extension to record C++ vtable hierarchy.  */
2165   HOWTO (R_PPC64_GNU_VTINHERIT, /* type */
2166          0,                     /* rightshift */
2167          0,                     /* size (0 = byte, 1 = short, 2 = long) */
2168          0,                     /* bitsize */
2169          FALSE,                 /* pc_relative */
2170          0,                     /* bitpos */
2171          complain_overflow_dont, /* complain_on_overflow */
2172          NULL,                  /* special_function */
2173          "R_PPC64_GNU_VTINHERIT", /* name */
2174          FALSE,                 /* partial_inplace */
2175          0,                     /* src_mask */
2176          0,                     /* dst_mask */
2177          FALSE),                /* pcrel_offset */
2178
2179   /* GNU extension to record C++ vtable member usage.  */
2180   HOWTO (R_PPC64_GNU_VTENTRY,   /* type */
2181          0,                     /* rightshift */
2182          0,                     /* size (0 = byte, 1 = short, 2 = long) */
2183          0,                     /* bitsize */
2184          FALSE,                 /* pc_relative */
2185          0,                     /* bitpos */
2186          complain_overflow_dont, /* complain_on_overflow */
2187          NULL,                  /* special_function */
2188          "R_PPC64_GNU_VTENTRY", /* name */
2189          FALSE,                 /* partial_inplace */
2190          0,                     /* src_mask */
2191          0,                     /* dst_mask */
2192          FALSE),                /* pcrel_offset */
2193 };
2194
2195 \f
2196 /* Initialize the ppc64_elf_howto_table, so that linear accesses can
2197    be done.  */
2198
2199 static void
2200 ppc_howto_init (void)
2201 {
2202   unsigned int i, type;
2203
2204   for (i = 0; i < ARRAY_SIZE (ppc64_elf_howto_raw); i++)
2205     {
2206       type = ppc64_elf_howto_raw[i].type;
2207       BFD_ASSERT (type < ARRAY_SIZE (ppc64_elf_howto_table));
2208       ppc64_elf_howto_table[type] = &ppc64_elf_howto_raw[i];
2209     }
2210 }
2211
2212 static reloc_howto_type *
2213 ppc64_elf_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2214                              bfd_reloc_code_real_type code)
2215 {
2216   enum elf_ppc64_reloc_type r = R_PPC64_NONE;
2217
2218   if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
2219     /* Initialize howto table if needed.  */
2220     ppc_howto_init ();
2221
2222   switch (code)
2223     {
2224     default:
2225       return NULL;
2226
2227     case BFD_RELOC_NONE:                        r = R_PPC64_NONE;
2228       break;
2229     case BFD_RELOC_32:                          r = R_PPC64_ADDR32;
2230       break;
2231     case BFD_RELOC_PPC_BA26:                    r = R_PPC64_ADDR24;
2232       break;
2233     case BFD_RELOC_16:                          r = R_PPC64_ADDR16;
2234       break;
2235     case BFD_RELOC_LO16:                        r = R_PPC64_ADDR16_LO;
2236       break;
2237     case BFD_RELOC_HI16:                        r = R_PPC64_ADDR16_HI;
2238       break;
2239     case BFD_RELOC_PPC64_ADDR16_HIGH:           r = R_PPC64_ADDR16_HIGH;
2240       break;
2241     case BFD_RELOC_HI16_S:                      r = R_PPC64_ADDR16_HA;
2242       break;
2243     case BFD_RELOC_PPC64_ADDR16_HIGHA:          r = R_PPC64_ADDR16_HIGHA;
2244       break;
2245     case BFD_RELOC_PPC_BA16:                    r = R_PPC64_ADDR14;
2246       break;
2247     case BFD_RELOC_PPC_BA16_BRTAKEN:            r = R_PPC64_ADDR14_BRTAKEN;
2248       break;
2249     case BFD_RELOC_PPC_BA16_BRNTAKEN:           r = R_PPC64_ADDR14_BRNTAKEN;
2250       break;
2251     case BFD_RELOC_PPC_B26:                     r = R_PPC64_REL24;
2252       break;
2253     case BFD_RELOC_PPC_B16:                     r = R_PPC64_REL14;
2254       break;
2255     case BFD_RELOC_PPC_B16_BRTAKEN:             r = R_PPC64_REL14_BRTAKEN;
2256       break;
2257     case BFD_RELOC_PPC_B16_BRNTAKEN:            r = R_PPC64_REL14_BRNTAKEN;
2258       break;
2259     case BFD_RELOC_16_GOTOFF:                   r = R_PPC64_GOT16;
2260       break;
2261     case BFD_RELOC_LO16_GOTOFF:                 r = R_PPC64_GOT16_LO;
2262       break;
2263     case BFD_RELOC_HI16_GOTOFF:                 r = R_PPC64_GOT16_HI;
2264       break;
2265     case BFD_RELOC_HI16_S_GOTOFF:               r = R_PPC64_GOT16_HA;
2266       break;
2267     case BFD_RELOC_PPC_COPY:                    r = R_PPC64_COPY;
2268       break;
2269     case BFD_RELOC_PPC_GLOB_DAT:                r = R_PPC64_GLOB_DAT;
2270       break;
2271     case BFD_RELOC_32_PCREL:                    r = R_PPC64_REL32;
2272       break;
2273     case BFD_RELOC_32_PLTOFF:                   r = R_PPC64_PLT32;
2274       break;
2275     case BFD_RELOC_32_PLT_PCREL:                r = R_PPC64_PLTREL32;
2276       break;
2277     case BFD_RELOC_LO16_PLTOFF:                 r = R_PPC64_PLT16_LO;
2278       break;
2279     case BFD_RELOC_HI16_PLTOFF:                 r = R_PPC64_PLT16_HI;
2280       break;
2281     case BFD_RELOC_HI16_S_PLTOFF:               r = R_PPC64_PLT16_HA;
2282       break;
2283     case BFD_RELOC_16_BASEREL:                  r = R_PPC64_SECTOFF;
2284       break;
2285     case BFD_RELOC_LO16_BASEREL:                r = R_PPC64_SECTOFF_LO;
2286       break;
2287     case BFD_RELOC_HI16_BASEREL:                r = R_PPC64_SECTOFF_HI;
2288       break;
2289     case BFD_RELOC_HI16_S_BASEREL:              r = R_PPC64_SECTOFF_HA;
2290       break;
2291     case BFD_RELOC_CTOR:                        r = R_PPC64_ADDR64;
2292       break;
2293     case BFD_RELOC_64:                          r = R_PPC64_ADDR64;
2294       break;
2295     case BFD_RELOC_PPC64_HIGHER:                r = R_PPC64_ADDR16_HIGHER;
2296       break;
2297     case BFD_RELOC_PPC64_HIGHER_S:              r = R_PPC64_ADDR16_HIGHERA;
2298       break;
2299     case BFD_RELOC_PPC64_HIGHEST:               r = R_PPC64_ADDR16_HIGHEST;
2300       break;
2301     case BFD_RELOC_PPC64_HIGHEST_S:             r = R_PPC64_ADDR16_HIGHESTA;
2302       break;
2303     case BFD_RELOC_64_PCREL:                    r = R_PPC64_REL64;
2304       break;
2305     case BFD_RELOC_64_PLTOFF:                   r = R_PPC64_PLT64;
2306       break;
2307     case BFD_RELOC_64_PLT_PCREL:                r = R_PPC64_PLTREL64;
2308       break;
2309     case BFD_RELOC_PPC_TOC16:                   r = R_PPC64_TOC16;
2310       break;
2311     case BFD_RELOC_PPC64_TOC16_LO:              r = R_PPC64_TOC16_LO;
2312       break;
2313     case BFD_RELOC_PPC64_TOC16_HI:              r = R_PPC64_TOC16_HI;
2314       break;
2315     case BFD_RELOC_PPC64_TOC16_HA:              r = R_PPC64_TOC16_HA;
2316       break;
2317     case BFD_RELOC_PPC64_TOC:                   r = R_PPC64_TOC;
2318       break;
2319     case BFD_RELOC_PPC64_PLTGOT16:              r = R_PPC64_PLTGOT16;
2320       break;
2321     case BFD_RELOC_PPC64_PLTGOT16_LO:           r = R_PPC64_PLTGOT16_LO;
2322       break;
2323     case BFD_RELOC_PPC64_PLTGOT16_HI:           r = R_PPC64_PLTGOT16_HI;
2324       break;
2325     case BFD_RELOC_PPC64_PLTGOT16_HA:           r = R_PPC64_PLTGOT16_HA;
2326       break;
2327     case BFD_RELOC_PPC64_ADDR16_DS:             r = R_PPC64_ADDR16_DS;
2328       break;
2329     case BFD_RELOC_PPC64_ADDR16_LO_DS:          r = R_PPC64_ADDR16_LO_DS;
2330       break;
2331     case BFD_RELOC_PPC64_GOT16_DS:              r = R_PPC64_GOT16_DS;
2332       break;
2333     case BFD_RELOC_PPC64_GOT16_LO_DS:           r = R_PPC64_GOT16_LO_DS;
2334       break;
2335     case BFD_RELOC_PPC64_PLT16_LO_DS:           r = R_PPC64_PLT16_LO_DS;
2336       break;
2337     case BFD_RELOC_PPC64_SECTOFF_DS:            r = R_PPC64_SECTOFF_DS;
2338       break;
2339     case BFD_RELOC_PPC64_SECTOFF_LO_DS:         r = R_PPC64_SECTOFF_LO_DS;
2340       break;
2341     case BFD_RELOC_PPC64_TOC16_DS:              r = R_PPC64_TOC16_DS;
2342       break;
2343     case BFD_RELOC_PPC64_TOC16_LO_DS:           r = R_PPC64_TOC16_LO_DS;
2344       break;
2345     case BFD_RELOC_PPC64_PLTGOT16_DS:           r = R_PPC64_PLTGOT16_DS;
2346       break;
2347     case BFD_RELOC_PPC64_PLTGOT16_LO_DS:        r = R_PPC64_PLTGOT16_LO_DS;
2348       break;
2349     case BFD_RELOC_PPC_TLS:                     r = R_PPC64_TLS;
2350       break;
2351     case BFD_RELOC_PPC_TLSGD:                   r = R_PPC64_TLSGD;
2352       break;
2353     case BFD_RELOC_PPC_TLSLD:                   r = R_PPC64_TLSLD;
2354       break;
2355     case BFD_RELOC_PPC_DTPMOD:                  r = R_PPC64_DTPMOD64;
2356       break;
2357     case BFD_RELOC_PPC_TPREL16:                 r = R_PPC64_TPREL16;
2358       break;
2359     case BFD_RELOC_PPC_TPREL16_LO:              r = R_PPC64_TPREL16_LO;
2360       break;
2361     case BFD_RELOC_PPC_TPREL16_HI:              r = R_PPC64_TPREL16_HI;
2362       break;
2363     case BFD_RELOC_PPC64_TPREL16_HIGH:          r = R_PPC64_TPREL16_HIGH;
2364       break;
2365     case BFD_RELOC_PPC_TPREL16_HA:              r = R_PPC64_TPREL16_HA;
2366       break;
2367     case BFD_RELOC_PPC64_TPREL16_HIGHA:         r = R_PPC64_TPREL16_HIGHA;
2368       break;
2369     case BFD_RELOC_PPC_TPREL:                   r = R_PPC64_TPREL64;
2370       break;
2371     case BFD_RELOC_PPC_DTPREL16:                r = R_PPC64_DTPREL16;
2372       break;
2373     case BFD_RELOC_PPC_DTPREL16_LO:             r = R_PPC64_DTPREL16_LO;
2374       break;
2375     case BFD_RELOC_PPC_DTPREL16_HI:             r = R_PPC64_DTPREL16_HI;
2376       break;
2377     case BFD_RELOC_PPC64_DTPREL16_HIGH:         r = R_PPC64_DTPREL16_HIGH;
2378       break;
2379     case BFD_RELOC_PPC_DTPREL16_HA:             r = R_PPC64_DTPREL16_HA;
2380       break;
2381     case BFD_RELOC_PPC64_DTPREL16_HIGHA:        r = R_PPC64_DTPREL16_HIGHA;
2382       break;
2383     case BFD_RELOC_PPC_DTPREL:                  r = R_PPC64_DTPREL64;
2384       break;
2385     case BFD_RELOC_PPC_GOT_TLSGD16:             r = R_PPC64_GOT_TLSGD16;
2386       break;
2387     case BFD_RELOC_PPC_GOT_TLSGD16_LO:          r = R_PPC64_GOT_TLSGD16_LO;
2388       break;
2389     case BFD_RELOC_PPC_GOT_TLSGD16_HI:          r = R_PPC64_GOT_TLSGD16_HI;
2390       break;
2391     case BFD_RELOC_PPC_GOT_TLSGD16_HA:          r = R_PPC64_GOT_TLSGD16_HA;
2392       break;
2393     case BFD_RELOC_PPC_GOT_TLSLD16:             r = R_PPC64_GOT_TLSLD16;
2394       break;
2395     case BFD_RELOC_PPC_GOT_TLSLD16_LO:          r = R_PPC64_GOT_TLSLD16_LO;
2396       break;
2397     case BFD_RELOC_PPC_GOT_TLSLD16_HI:          r = R_PPC64_GOT_TLSLD16_HI;
2398       break;
2399     case BFD_RELOC_PPC_GOT_TLSLD16_HA:          r = R_PPC64_GOT_TLSLD16_HA;
2400       break;
2401     case BFD_RELOC_PPC_GOT_TPREL16:             r = R_PPC64_GOT_TPREL16_DS;
2402       break;
2403     case BFD_RELOC_PPC_GOT_TPREL16_LO:          r = R_PPC64_GOT_TPREL16_LO_DS;
2404       break;
2405     case BFD_RELOC_PPC_GOT_TPREL16_HI:          r = R_PPC64_GOT_TPREL16_HI;
2406       break;
2407     case BFD_RELOC_PPC_GOT_TPREL16_HA:          r = R_PPC64_GOT_TPREL16_HA;
2408       break;
2409     case BFD_RELOC_PPC_GOT_DTPREL16:            r = R_PPC64_GOT_DTPREL16_DS;
2410       break;
2411     case BFD_RELOC_PPC_GOT_DTPREL16_LO:         r = R_PPC64_GOT_DTPREL16_LO_DS;
2412       break;
2413     case BFD_RELOC_PPC_GOT_DTPREL16_HI:         r = R_PPC64_GOT_DTPREL16_HI;
2414       break;
2415     case BFD_RELOC_PPC_GOT_DTPREL16_HA:         r = R_PPC64_GOT_DTPREL16_HA;
2416       break;
2417     case BFD_RELOC_PPC64_TPREL16_DS:            r = R_PPC64_TPREL16_DS;
2418       break;
2419     case BFD_RELOC_PPC64_TPREL16_LO_DS:         r = R_PPC64_TPREL16_LO_DS;
2420       break;
2421     case BFD_RELOC_PPC64_TPREL16_HIGHER:        r = R_PPC64_TPREL16_HIGHER;
2422       break;
2423     case BFD_RELOC_PPC64_TPREL16_HIGHERA:       r = R_PPC64_TPREL16_HIGHERA;
2424       break;
2425     case BFD_RELOC_PPC64_TPREL16_HIGHEST:       r = R_PPC64_TPREL16_HIGHEST;
2426       break;
2427     case BFD_RELOC_PPC64_TPREL16_HIGHESTA:      r = R_PPC64_TPREL16_HIGHESTA;
2428       break;
2429     case BFD_RELOC_PPC64_DTPREL16_DS:           r = R_PPC64_DTPREL16_DS;
2430       break;
2431     case BFD_RELOC_PPC64_DTPREL16_LO_DS:        r = R_PPC64_DTPREL16_LO_DS;
2432       break;
2433     case BFD_RELOC_PPC64_DTPREL16_HIGHER:       r = R_PPC64_DTPREL16_HIGHER;
2434       break;
2435     case BFD_RELOC_PPC64_DTPREL16_HIGHERA:      r = R_PPC64_DTPREL16_HIGHERA;
2436       break;
2437     case BFD_RELOC_PPC64_DTPREL16_HIGHEST:      r = R_PPC64_DTPREL16_HIGHEST;
2438       break;
2439     case BFD_RELOC_PPC64_DTPREL16_HIGHESTA:     r = R_PPC64_DTPREL16_HIGHESTA;
2440       break;
2441     case BFD_RELOC_16_PCREL:                    r = R_PPC64_REL16;
2442       break;
2443     case BFD_RELOC_LO16_PCREL:                  r = R_PPC64_REL16_LO;
2444       break;
2445     case BFD_RELOC_HI16_PCREL:                  r = R_PPC64_REL16_HI;
2446       break;
2447     case BFD_RELOC_HI16_S_PCREL:                r = R_PPC64_REL16_HA;
2448       break;
2449     case BFD_RELOC_PPC_REL16DX_HA:              r = R_PPC64_REL16DX_HA;
2450       break;
2451     case BFD_RELOC_PPC64_ENTRY:                 r = R_PPC64_ENTRY;
2452       break;
2453     case BFD_RELOC_PPC64_ADDR64_LOCAL:          r = R_PPC64_ADDR64_LOCAL;
2454       break;
2455     case BFD_RELOC_VTABLE_INHERIT:              r = R_PPC64_GNU_VTINHERIT;
2456       break;
2457     case BFD_RELOC_VTABLE_ENTRY:                r = R_PPC64_GNU_VTENTRY;
2458       break;
2459     }
2460
2461   return ppc64_elf_howto_table[r];
2462 };
2463
2464 static reloc_howto_type *
2465 ppc64_elf_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2466                              const char *r_name)
2467 {
2468   unsigned int i;
2469
2470   for (i = 0; i < ARRAY_SIZE (ppc64_elf_howto_raw); i++)
2471     if (ppc64_elf_howto_raw[i].name != NULL
2472         && strcasecmp (ppc64_elf_howto_raw[i].name, r_name) == 0)
2473       return &ppc64_elf_howto_raw[i];
2474
2475   return NULL;
2476 }
2477
2478 /* Set the howto pointer for a PowerPC ELF reloc.  */
2479
2480 static void
2481 ppc64_elf_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *cache_ptr,
2482                          Elf_Internal_Rela *dst)
2483 {
2484   unsigned int type;
2485
2486   /* Initialize howto table if needed.  */
2487   if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
2488     ppc_howto_init ();
2489
2490   type = ELF64_R_TYPE (dst->r_info);
2491   if (type >= ARRAY_SIZE (ppc64_elf_howto_table))
2492     {
2493       (*_bfd_error_handler) (_("%B: invalid relocation type %d"),
2494                              abfd, (int) type);
2495       type = R_PPC64_NONE;
2496     }
2497   cache_ptr->howto = ppc64_elf_howto_table[type];
2498 }
2499
2500 /* Handle the R_PPC64_ADDR16_HA and similar relocs.  */
2501
2502 static bfd_reloc_status_type
2503 ppc64_elf_ha_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2504                     void *data, asection *input_section,
2505                     bfd *output_bfd, char **error_message)
2506 {
2507   enum elf_ppc64_reloc_type r_type;
2508   long insn;
2509   bfd_size_type octets;
2510   bfd_vma value;
2511
2512   /* If this is a relocatable link (output_bfd test tells us), just
2513      call the generic function.  Any adjustment will be done at final
2514      link time.  */
2515   if (output_bfd != NULL)
2516     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2517                                   input_section, output_bfd, error_message);
2518
2519   /* Adjust the addend for sign extension of the low 16 bits.
2520      We won't actually be using the low 16 bits, so trashing them
2521      doesn't matter.  */
2522   reloc_entry->addend += 0x8000;
2523   r_type = reloc_entry->howto->type;
2524   if (r_type != R_PPC64_REL16DX_HA)
2525     return bfd_reloc_continue;
2526
2527   value = 0;
2528   if (!bfd_is_com_section (symbol->section))
2529     value = symbol->value;
2530   value += (reloc_entry->addend
2531             + symbol->section->output_offset
2532             + symbol->section->output_section->vma);
2533   value -= (reloc_entry->address
2534             + input_section->output_offset
2535             + input_section->output_section->vma);
2536   value = (bfd_signed_vma) value >> 16;
2537
2538   octets = reloc_entry->address * bfd_octets_per_byte (abfd);
2539   insn = bfd_get_32 (abfd, (bfd_byte *) data + octets);
2540   insn &= ~0x1fffc1;
2541   insn |= (value & 0xffc1) | ((value & 0x3e) << 15);
2542   bfd_put_32 (abfd, insn, (bfd_byte *) data + octets);
2543   if (value + 0x8000 > 0xffff)
2544     return bfd_reloc_overflow;
2545   return bfd_reloc_ok;
2546 }
2547
2548 static bfd_reloc_status_type
2549 ppc64_elf_branch_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2550                         void *data, asection *input_section,
2551                         bfd *output_bfd, char **error_message)
2552 {
2553   if (output_bfd != NULL)
2554     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2555                                   input_section, output_bfd, error_message);
2556
2557   if (strcmp (symbol->section->name, ".opd") == 0
2558       && (symbol->section->owner->flags & DYNAMIC) == 0)
2559     {
2560       bfd_vma dest = opd_entry_value (symbol->section,
2561                                       symbol->value + reloc_entry->addend,
2562                                       NULL, NULL, FALSE);
2563       if (dest != (bfd_vma) -1)
2564         reloc_entry->addend = dest - (symbol->value
2565                                       + symbol->section->output_section->vma
2566                                       + symbol->section->output_offset);
2567     }
2568   else
2569     {
2570       elf_symbol_type *elfsym = (elf_symbol_type *) symbol;
2571
2572       if (symbol->section->owner != abfd
2573           && symbol->section->owner != NULL
2574           && abiversion (symbol->section->owner) >= 2)
2575         {
2576           unsigned int i;
2577
2578           for (i = 0; i < symbol->section->owner->symcount; ++i)
2579             {
2580               asymbol *symdef = symbol->section->owner->outsymbols[i];
2581
2582               if (strcmp (symdef->name, symbol->name) == 0)
2583                 {
2584                   elfsym = (elf_symbol_type *) symdef;
2585                   break;
2586                 }
2587             }
2588         }
2589       reloc_entry->addend
2590         += PPC64_LOCAL_ENTRY_OFFSET (elfsym->internal_elf_sym.st_other);
2591     }
2592   return bfd_reloc_continue;
2593 }
2594
2595 static bfd_reloc_status_type
2596 ppc64_elf_brtaken_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2597                          void *data, asection *input_section,
2598                          bfd *output_bfd, char **error_message)
2599 {
2600   long insn;
2601   enum elf_ppc64_reloc_type r_type;
2602   bfd_size_type octets;
2603   /* Assume 'at' branch hints.  */
2604   bfd_boolean is_isa_v2 = TRUE;
2605
2606   /* If this is a relocatable link (output_bfd test tells us), just
2607      call the generic function.  Any adjustment will be done at final
2608      link time.  */
2609   if (output_bfd != NULL)
2610     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2611                                   input_section, output_bfd, error_message);
2612
2613   octets = reloc_entry->address * bfd_octets_per_byte (abfd);
2614   insn = bfd_get_32 (abfd, (bfd_byte *) data + octets);
2615   insn &= ~(0x01 << 21);
2616   r_type = reloc_entry->howto->type;
2617   if (r_type == R_PPC64_ADDR14_BRTAKEN
2618       || r_type == R_PPC64_REL14_BRTAKEN)
2619     insn |= 0x01 << 21; /* 'y' or 't' bit, lowest bit of BO field.  */
2620
2621   if (is_isa_v2)
2622     {
2623       /* Set 'a' bit.  This is 0b00010 in BO field for branch
2624          on CR(BI) insns (BO == 001at or 011at), and 0b01000
2625          for branch on CTR insns (BO == 1a00t or 1a01t).  */
2626       if ((insn & (0x14 << 21)) == (0x04 << 21))
2627         insn |= 0x02 << 21;
2628       else if ((insn & (0x14 << 21)) == (0x10 << 21))
2629         insn |= 0x08 << 21;
2630       else
2631         goto out;
2632     }
2633   else
2634     {
2635       bfd_vma target = 0;
2636       bfd_vma from;
2637
2638       if (!bfd_is_com_section (symbol->section))
2639         target = symbol->value;
2640       target += symbol->section->output_section->vma;
2641       target += symbol->section->output_offset;
2642       target += reloc_entry->addend;
2643
2644       from = (reloc_entry->address
2645               + input_section->output_offset
2646               + input_section->output_section->vma);
2647
2648       /* Invert 'y' bit if not the default.  */
2649       if ((bfd_signed_vma) (target - from) < 0)
2650         insn ^= 0x01 << 21;
2651     }
2652   bfd_put_32 (abfd, insn, (bfd_byte *) data + octets);
2653  out:
2654   return ppc64_elf_branch_reloc (abfd, reloc_entry, symbol, data,
2655                                  input_section, output_bfd, error_message);
2656 }
2657
2658 static bfd_reloc_status_type
2659 ppc64_elf_sectoff_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2660                          void *data, asection *input_section,
2661                          bfd *output_bfd, char **error_message)
2662 {
2663   /* If this is a relocatable link (output_bfd test tells us), just
2664      call the generic function.  Any adjustment will be done at final
2665      link time.  */
2666   if (output_bfd != NULL)
2667     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2668                                   input_section, output_bfd, error_message);
2669
2670   /* Subtract the symbol section base address.  */
2671   reloc_entry->addend -= symbol->section->output_section->vma;
2672   return bfd_reloc_continue;
2673 }
2674
2675 static bfd_reloc_status_type
2676 ppc64_elf_sectoff_ha_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2677                             void *data, asection *input_section,
2678                             bfd *output_bfd, char **error_message)
2679 {
2680   /* If this is a relocatable link (output_bfd test tells us), just
2681      call the generic function.  Any adjustment will be done at final
2682      link time.  */
2683   if (output_bfd != NULL)
2684     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2685                                   input_section, output_bfd, error_message);
2686
2687   /* Subtract the symbol section base address.  */
2688   reloc_entry->addend -= symbol->section->output_section->vma;
2689
2690   /* Adjust the addend for sign extension of the low 16 bits.  */
2691   reloc_entry->addend += 0x8000;
2692   return bfd_reloc_continue;
2693 }
2694
2695 static bfd_reloc_status_type
2696 ppc64_elf_toc_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2697                      void *data, asection *input_section,
2698                      bfd *output_bfd, char **error_message)
2699 {
2700   bfd_vma TOCstart;
2701
2702   /* If this is a relocatable link (output_bfd test tells us), just
2703      call the generic function.  Any adjustment will be done at final
2704      link time.  */
2705   if (output_bfd != NULL)
2706     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2707                                   input_section, output_bfd, error_message);
2708
2709   TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
2710   if (TOCstart == 0)
2711     TOCstart = ppc64_elf_set_toc (NULL, input_section->output_section->owner);
2712
2713   /* Subtract the TOC base address.  */
2714   reloc_entry->addend -= TOCstart + TOC_BASE_OFF;
2715   return bfd_reloc_continue;
2716 }
2717
2718 static bfd_reloc_status_type
2719 ppc64_elf_toc_ha_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2720                         void *data, asection *input_section,
2721                         bfd *output_bfd, char **error_message)
2722 {
2723   bfd_vma TOCstart;
2724
2725   /* If this is a relocatable link (output_bfd test tells us), just
2726      call the generic function.  Any adjustment will be done at final
2727      link time.  */
2728   if (output_bfd != NULL)
2729     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2730                                   input_section, output_bfd, error_message);
2731
2732   TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
2733   if (TOCstart == 0)
2734     TOCstart = ppc64_elf_set_toc (NULL, input_section->output_section->owner);
2735
2736   /* Subtract the TOC base address.  */
2737   reloc_entry->addend -= TOCstart + TOC_BASE_OFF;
2738
2739   /* Adjust the addend for sign extension of the low 16 bits.  */
2740   reloc_entry->addend += 0x8000;
2741   return bfd_reloc_continue;
2742 }
2743
2744 static bfd_reloc_status_type
2745 ppc64_elf_toc64_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2746                        void *data, asection *input_section,
2747                        bfd *output_bfd, char **error_message)
2748 {
2749   bfd_vma TOCstart;
2750   bfd_size_type octets;
2751
2752   /* If this is a relocatable link (output_bfd test tells us), just
2753      call the generic function.  Any adjustment will be done at final
2754      link time.  */
2755   if (output_bfd != NULL)
2756     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2757                                   input_section, output_bfd, error_message);
2758
2759   TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
2760   if (TOCstart == 0)
2761     TOCstart = ppc64_elf_set_toc (NULL, input_section->output_section->owner);
2762
2763   octets = reloc_entry->address * bfd_octets_per_byte (abfd);
2764   bfd_put_64 (abfd, TOCstart + TOC_BASE_OFF, (bfd_byte *) data + octets);
2765   return bfd_reloc_ok;
2766 }
2767
2768 static bfd_reloc_status_type
2769 ppc64_elf_unhandled_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2770                            void *data, asection *input_section,
2771                            bfd *output_bfd, char **error_message)
2772 {
2773   /* If this is a relocatable link (output_bfd test tells us), just
2774      call the generic function.  Any adjustment will be done at final
2775      link time.  */
2776   if (output_bfd != NULL)
2777     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2778                                   input_section, output_bfd, error_message);
2779
2780   if (error_message != NULL)
2781     {
2782       static char buf[60];
2783       sprintf (buf, "generic linker can't handle %s",
2784                reloc_entry->howto->name);
2785       *error_message = buf;
2786     }
2787   return bfd_reloc_dangerous;
2788 }
2789
2790 /* Track GOT entries needed for a given symbol.  We might need more
2791    than one got entry per symbol.  */
2792 struct got_entry
2793 {
2794   struct got_entry *next;
2795
2796   /* The symbol addend that we'll be placing in the GOT.  */
2797   bfd_vma addend;
2798
2799   /* Unlike other ELF targets, we use separate GOT entries for the same
2800      symbol referenced from different input files.  This is to support
2801      automatic multiple TOC/GOT sections, where the TOC base can vary
2802      from one input file to another.  After partitioning into TOC groups
2803      we merge entries within the group.
2804
2805      Point to the BFD owning this GOT entry.  */
2806   bfd *owner;
2807
2808   /* Zero for non-tls entries, or TLS_TLS and one of TLS_GD, TLS_LD,
2809      TLS_TPREL or TLS_DTPREL for tls entries.  */
2810   unsigned char tls_type;
2811
2812   /* Non-zero if got.ent points to real entry.  */
2813   unsigned char is_indirect;
2814
2815   /* Reference count until size_dynamic_sections, GOT offset thereafter.  */
2816   union
2817     {
2818       bfd_signed_vma refcount;
2819       bfd_vma offset;
2820       struct got_entry *ent;
2821     } got;
2822 };
2823
2824 /* The same for PLT.  */
2825 struct plt_entry
2826 {
2827   struct plt_entry *next;
2828
2829   bfd_vma addend;
2830
2831   union
2832     {
2833       bfd_signed_vma refcount;
2834       bfd_vma offset;
2835     } plt;
2836 };
2837
2838 struct ppc64_elf_obj_tdata
2839 {
2840   struct elf_obj_tdata elf;
2841
2842   /* Shortcuts to dynamic linker sections.  */
2843   asection *got;
2844   asection *relgot;
2845
2846   /* Used during garbage collection.  We attach global symbols defined
2847      on removed .opd entries to this section so that the sym is removed.  */
2848   asection *deleted_section;
2849
2850   /* TLS local dynamic got entry handling.  Support for multiple GOT
2851      sections means we potentially need one of these for each input bfd.  */
2852   struct got_entry tlsld_got;
2853
2854   union {
2855     /* A copy of relocs before they are modified for --emit-relocs.  */
2856     Elf_Internal_Rela *relocs;
2857
2858     /* Section contents.  */
2859     bfd_byte *contents;
2860   } opd;
2861
2862   /* Nonzero if this bfd has small toc/got relocs, ie. that expect
2863      the reloc to be in the range -32768 to 32767.  */
2864   unsigned int has_small_toc_reloc : 1;
2865
2866   /* Set if toc/got ha relocs detected not using r2, or lo reloc
2867      instruction not one we handle.  */
2868   unsigned int unexpected_toc_insn : 1;
2869 };
2870
2871 #define ppc64_elf_tdata(bfd) \
2872   ((struct ppc64_elf_obj_tdata *) (bfd)->tdata.any)
2873
2874 #define ppc64_tlsld_got(bfd) \
2875   (&ppc64_elf_tdata (bfd)->tlsld_got)
2876
2877 #define is_ppc64_elf(bfd) \
2878   (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
2879    && elf_object_id (bfd) == PPC64_ELF_DATA)
2880
2881 /* Override the generic function because we store some extras.  */
2882
2883 static bfd_boolean
2884 ppc64_elf_mkobject (bfd *abfd)
2885 {
2886   return bfd_elf_allocate_object (abfd, sizeof (struct ppc64_elf_obj_tdata),
2887                                   PPC64_ELF_DATA);
2888 }
2889
2890 /* Fix bad default arch selected for a 64 bit input bfd when the
2891    default is 32 bit.  Also select arch based on apuinfo.  */
2892
2893 static bfd_boolean
2894 ppc64_elf_object_p (bfd *abfd)
2895 {
2896   if (!abfd->arch_info->the_default)
2897     return TRUE;
2898
2899   if (abfd->arch_info->bits_per_word == 32)
2900     {
2901       Elf_Internal_Ehdr *i_ehdr = elf_elfheader (abfd);
2902
2903       if (i_ehdr->e_ident[EI_CLASS] == ELFCLASS64)
2904         {
2905           /* Relies on arch after 32 bit default being 64 bit default.  */
2906           abfd->arch_info = abfd->arch_info->next;
2907           BFD_ASSERT (abfd->arch_info->bits_per_word == 64);
2908         }
2909     }
2910   return _bfd_elf_ppc_set_arch (abfd);
2911 }
2912
2913 /* Support for core dump NOTE sections.  */
2914
2915 static bfd_boolean
2916 ppc64_elf_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
2917 {
2918   size_t offset, size;
2919
2920   if (note->descsz != 504)
2921     return FALSE;
2922
2923   /* pr_cursig */
2924   elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
2925
2926   /* pr_pid */
2927   elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 32);
2928
2929   /* pr_reg */
2930   offset = 112;
2931   size = 384;
2932
2933   /* Make a ".reg/999" section.  */
2934   return _bfd_elfcore_make_pseudosection (abfd, ".reg",
2935                                           size, note->descpos + offset);
2936 }
2937
2938 static bfd_boolean
2939 ppc64_elf_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
2940 {
2941   if (note->descsz != 136)
2942     return FALSE;
2943
2944   elf_tdata (abfd)->core->pid
2945     = bfd_get_32 (abfd, note->descdata + 24);
2946   elf_tdata (abfd)->core->program
2947     = _bfd_elfcore_strndup (abfd, note->descdata + 40, 16);
2948   elf_tdata (abfd)->core->command
2949     = _bfd_elfcore_strndup (abfd, note->descdata + 56, 80);
2950
2951   return TRUE;
2952 }
2953
2954 static char *
2955 ppc64_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
2956                            ...)
2957 {
2958   switch (note_type)
2959     {
2960     default:
2961       return NULL;
2962
2963     case NT_PRPSINFO:
2964       {
2965         char data[136];
2966         va_list ap;
2967
2968         va_start (ap, note_type);
2969         memset (data, 0, sizeof (data));
2970         strncpy (data + 40, va_arg (ap, const char *), 16);
2971         strncpy (data + 56, va_arg (ap, const char *), 80);
2972         va_end (ap);
2973         return elfcore_write_note (abfd, buf, bufsiz,
2974                                    "CORE", note_type, data, sizeof (data));
2975       }
2976
2977     case NT_PRSTATUS:
2978       {
2979         char data[504];
2980         va_list ap;
2981         long pid;
2982         int cursig;
2983         const void *greg;
2984
2985         va_start (ap, note_type);
2986         memset (data, 0, 112);
2987         pid = va_arg (ap, long);
2988         bfd_put_32 (abfd, pid, data + 32);
2989         cursig = va_arg (ap, int);
2990         bfd_put_16 (abfd, cursig, data + 12);
2991         greg = va_arg (ap, const void *);
2992         memcpy (data + 112, greg, 384);
2993         memset (data + 496, 0, 8);
2994         va_end (ap);
2995         return elfcore_write_note (abfd, buf, bufsiz,
2996                                    "CORE", note_type, data, sizeof (data));
2997       }
2998     }
2999 }
3000
3001 /* Add extra PPC sections.  */
3002
3003 static const struct bfd_elf_special_section ppc64_elf_special_sections[]=
3004 {
3005   { STRING_COMMA_LEN (".plt"),    0, SHT_NOBITS,   0 },
3006   { STRING_COMMA_LEN (".sbss"),  -2, SHT_NOBITS,   SHF_ALLOC + SHF_WRITE },
3007   { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
3008   { STRING_COMMA_LEN (".toc"),    0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
3009   { STRING_COMMA_LEN (".toc1"),   0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
3010   { STRING_COMMA_LEN (".tocbss"), 0, SHT_NOBITS,   SHF_ALLOC + SHF_WRITE },
3011   { NULL,                     0,  0, 0,            0 }
3012 };
3013
3014 enum _ppc64_sec_type {
3015   sec_normal = 0,
3016   sec_opd = 1,
3017   sec_toc = 2
3018 };
3019
3020 struct _ppc64_elf_section_data
3021 {
3022   struct bfd_elf_section_data elf;
3023
3024   union
3025   {
3026     /* An array with one entry for each opd function descriptor,
3027        and some spares since opd entries may be either 16 or 24 bytes.  */
3028 #define OPD_NDX(OFF) ((OFF) >> 4)
3029     struct _opd_sec_data
3030     {
3031       /* Points to the function code section for local opd entries.  */
3032       asection **func_sec;
3033
3034       /* After editing .opd, adjust references to opd local syms.  */
3035       long *adjust;
3036     } opd;
3037
3038     /* An array for toc sections, indexed by offset/8.  */
3039     struct _toc_sec_data
3040     {
3041       /* Specifies the relocation symbol index used at a given toc offset.  */
3042       unsigned *symndx;
3043
3044       /* And the relocation addend.  */
3045       bfd_vma *add;
3046     } toc;
3047   } u;
3048
3049   enum _ppc64_sec_type sec_type:2;
3050
3051   /* Flag set when small branches are detected.  Used to
3052      select suitable defaults for the stub group size.  */
3053   unsigned int has_14bit_branch:1;
3054 };
3055
3056 #define ppc64_elf_section_data(sec) \
3057   ((struct _ppc64_elf_section_data *) elf_section_data (sec))
3058
3059 static bfd_boolean
3060 ppc64_elf_new_section_hook (bfd *abfd, asection *sec)
3061 {
3062   if (!sec->used_by_bfd)
3063     {
3064       struct _ppc64_elf_section_data *sdata;
3065       bfd_size_type amt = sizeof (*sdata);
3066
3067       sdata = bfd_zalloc (abfd, amt);
3068       if (sdata == NULL)
3069         return FALSE;
3070       sec->used_by_bfd = sdata;
3071     }
3072
3073   return _bfd_elf_new_section_hook (abfd, sec);
3074 }
3075
3076 static struct _opd_sec_data *
3077 get_opd_info (asection * sec)
3078 {
3079   if (sec != NULL
3080       && ppc64_elf_section_data (sec) != NULL
3081       && ppc64_elf_section_data (sec)->sec_type == sec_opd)
3082     return &ppc64_elf_section_data (sec)->u.opd;
3083   return NULL;
3084 }
3085 \f
3086 /* Parameters for the qsort hook.  */
3087 static bfd_boolean synthetic_relocatable;
3088
3089 /* qsort comparison function for ppc64_elf_get_synthetic_symtab.  */
3090
3091 static int
3092 compare_symbols (const void *ap, const void *bp)
3093 {
3094   const asymbol *a = * (const asymbol **) ap;
3095   const asymbol *b = * (const asymbol **) bp;
3096
3097   /* Section symbols first.  */
3098   if ((a->flags & BSF_SECTION_SYM) && !(b->flags & BSF_SECTION_SYM))
3099     return -1;
3100   if (!(a->flags & BSF_SECTION_SYM) && (b->flags & BSF_SECTION_SYM))
3101     return 1;
3102
3103   /* then .opd symbols.  */
3104   if (strcmp (a->section->name, ".opd") == 0
3105       && strcmp (b->section->name, ".opd") != 0)
3106     return -1;
3107   if (strcmp (a->section->name, ".opd") != 0
3108       && strcmp (b->section->name, ".opd") == 0)
3109     return 1;
3110
3111   /* then other code symbols.  */
3112   if ((a->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3113       == (SEC_CODE | SEC_ALLOC)
3114       && (b->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3115          != (SEC_CODE | SEC_ALLOC))
3116     return -1;
3117
3118   if ((a->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3119       != (SEC_CODE | SEC_ALLOC)
3120       && (b->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3121          == (SEC_CODE | SEC_ALLOC))
3122     return 1;
3123
3124   if (synthetic_relocatable)
3125     {
3126       if (a->section->id < b->section->id)
3127         return -1;
3128
3129       if (a->section->id > b->section->id)
3130         return 1;
3131     }
3132
3133   if (a->value + a->section->vma < b->value + b->section->vma)
3134     return -1;
3135
3136   if (a->value + a->section->vma > b->value + b->section->vma)
3137     return 1;
3138
3139   /* For syms with the same value, prefer strong dynamic global function
3140      syms over other syms.  */
3141   if ((a->flags & BSF_GLOBAL) != 0 && (b->flags & BSF_GLOBAL) == 0)
3142     return -1;
3143
3144   if ((a->flags & BSF_GLOBAL) == 0 && (b->flags & BSF_GLOBAL) != 0)
3145     return 1;
3146
3147   if ((a->flags & BSF_FUNCTION) != 0 && (b->flags & BSF_FUNCTION) == 0)
3148     return -1;
3149
3150   if ((a->flags & BSF_FUNCTION) == 0 && (b->flags & BSF_FUNCTION) != 0)
3151     return 1;
3152
3153   if ((a->flags & BSF_WEAK) == 0 && (b->flags & BSF_WEAK) != 0)
3154     return -1;
3155
3156   if ((a->flags & BSF_WEAK) != 0 && (b->flags & BSF_WEAK) == 0)
3157     return 1;
3158
3159   if ((a->flags & BSF_DYNAMIC) != 0 && (b->flags & BSF_DYNAMIC) == 0)
3160     return -1;
3161
3162   if ((a->flags & BSF_DYNAMIC) == 0 && (b->flags & BSF_DYNAMIC) != 0)
3163     return 1;
3164
3165   return 0;
3166 }
3167
3168 /* Search SYMS for a symbol of the given VALUE.  */
3169
3170 static asymbol *
3171 sym_exists_at (asymbol **syms, long lo, long hi, unsigned int id, bfd_vma value)
3172 {
3173   long mid;
3174
3175   if (id == (unsigned) -1)
3176     {
3177       while (lo < hi)
3178         {
3179           mid = (lo + hi) >> 1;
3180           if (syms[mid]->value + syms[mid]->section->vma < value)
3181             lo = mid + 1;
3182           else if (syms[mid]->value + syms[mid]->section->vma > value)
3183             hi = mid;
3184           else
3185             return syms[mid];
3186         }
3187     }
3188   else
3189     {
3190       while (lo < hi)
3191         {
3192           mid = (lo + hi) >> 1;
3193           if (syms[mid]->section->id < id)
3194             lo = mid + 1;
3195           else if (syms[mid]->section->id > id)
3196             hi = mid;
3197           else if (syms[mid]->value < value)
3198             lo = mid + 1;
3199           else if (syms[mid]->value > value)
3200             hi = mid;
3201           else
3202             return syms[mid];
3203         }
3204     }
3205   return NULL;
3206 }
3207
3208 static bfd_boolean
3209 section_covers_vma (bfd *abfd ATTRIBUTE_UNUSED, asection *section, void *ptr)
3210 {
3211   bfd_vma vma = *(bfd_vma *) ptr;
3212   return ((section->flags & SEC_ALLOC) != 0
3213           && section->vma <= vma
3214           && vma < section->vma + section->size);
3215 }
3216
3217 /* Create synthetic symbols, effectively restoring "dot-symbol" function
3218    entry syms.  Also generate @plt symbols for the glink branch table.
3219    Returns count of synthetic symbols in RET or -1 on error.  */
3220
3221 static long
3222 ppc64_elf_get_synthetic_symtab (bfd *abfd,
3223                                 long static_count, asymbol **static_syms,
3224                                 long dyn_count, asymbol **dyn_syms,
3225                                 asymbol **ret)
3226 {
3227   asymbol *s;
3228   long i;
3229   long count;
3230   char *names;
3231   long symcount, codesecsym, codesecsymend, secsymend, opdsymend;
3232   asection *opd = NULL;
3233   bfd_boolean relocatable = (abfd->flags & (EXEC_P | DYNAMIC)) == 0;
3234   asymbol **syms;
3235   int abi = abiversion (abfd);
3236
3237   *ret = NULL;
3238
3239   if (abi < 2)
3240     {
3241       opd = bfd_get_section_by_name (abfd, ".opd");
3242       if (opd == NULL && abi == 1)
3243         return 0;
3244     }
3245
3246   symcount = static_count;
3247   if (!relocatable)
3248     symcount += dyn_count;
3249   if (symcount == 0)
3250     return 0;
3251
3252   syms = bfd_malloc ((symcount + 1) * sizeof (*syms));
3253   if (syms == NULL)
3254     return -1;
3255
3256   if (!relocatable && static_count != 0 && dyn_count != 0)
3257     {
3258       /* Use both symbol tables.  */
3259       memcpy (syms, static_syms, static_count * sizeof (*syms));
3260       memcpy (syms + static_count, dyn_syms, (dyn_count + 1) * sizeof (*syms));
3261     }
3262   else if (!relocatable && static_count == 0)
3263     memcpy (syms, dyn_syms, (symcount + 1) * sizeof (*syms));
3264   else
3265     memcpy (syms, static_syms, (symcount + 1) * sizeof (*syms));
3266
3267   synthetic_relocatable = relocatable;
3268   qsort (syms, symcount, sizeof (*syms), compare_symbols);
3269
3270   if (!relocatable && symcount > 1)
3271     {
3272       long j;
3273       /* Trim duplicate syms, since we may have merged the normal and
3274          dynamic symbols.  Actually, we only care about syms that have
3275          different values, so trim any with the same value.  */
3276       for (i = 1, j = 1; i < symcount; ++i)
3277         if (syms[i - 1]->value + syms[i - 1]->section->vma
3278             != syms[i]->value + syms[i]->section->vma)
3279           syms[j++] = syms[i];
3280       symcount = j;
3281     }
3282
3283   i = 0;
3284   if (strcmp (syms[i]->section->name, ".opd") == 0)
3285     ++i;
3286   codesecsym = i;
3287
3288   for (; i < symcount; ++i)
3289     if (((syms[i]->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3290          != (SEC_CODE | SEC_ALLOC))
3291         || (syms[i]->flags & BSF_SECTION_SYM) == 0)
3292       break;
3293   codesecsymend = i;
3294
3295   for (; i < symcount; ++i)
3296     if ((syms[i]->flags & BSF_SECTION_SYM) == 0)
3297       break;
3298   secsymend = i;
3299
3300   for (; i < symcount; ++i)
3301     if (strcmp (syms[i]->section->name, ".opd") != 0)
3302       break;
3303   opdsymend = i;
3304
3305   for (; i < symcount; ++i)
3306     if ((syms[i]->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3307         != (SEC_CODE | SEC_ALLOC))
3308       break;
3309   symcount = i;
3310
3311   count = 0;
3312
3313   if (relocatable)
3314     {
3315       bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
3316       arelent *r;
3317       size_t size;
3318       long relcount;
3319
3320       if (opdsymend == secsymend)
3321         goto done;
3322
3323       slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
3324       relcount = (opd->flags & SEC_RELOC) ? opd->reloc_count : 0;
3325       if (relcount == 0)
3326         goto done;
3327
3328       if (!(*slurp_relocs) (abfd, opd, static_syms, FALSE))
3329         {
3330           count = -1;
3331           goto done;
3332         }
3333
3334       size = 0;
3335       for (i = secsymend, r = opd->relocation; i < opdsymend; ++i)
3336         {
3337           asymbol *sym;
3338
3339           while (r < opd->relocation + relcount
3340                  && r->address < syms[i]->value + opd->vma)
3341             ++r;
3342
3343           if (r == opd->relocation + relcount)
3344             break;
3345
3346           if (r->address != syms[i]->value + opd->vma)
3347             continue;
3348
3349           if (r->howto->type != R_PPC64_ADDR64)
3350             continue;
3351
3352           sym = *r->sym_ptr_ptr;
3353           if (!sym_exists_at (syms, opdsymend, symcount,
3354                               sym->section->id, sym->value + r->addend))
3355             {
3356               ++count;
3357               size += sizeof (asymbol);
3358               size += strlen (syms[i]->name) + 2;
3359             }
3360         }
3361
3362       if (size == 0)
3363         goto done;
3364       s = *ret = bfd_malloc (size);
3365       if (s == NULL)
3366         {
3367           count = -1;
3368           goto done;
3369         }
3370
3371       names = (char *) (s + count);
3372
3373       for (i = secsymend, r = opd->relocation; i < opdsymend; ++i)
3374         {
3375           asymbol *sym;
3376
3377           while (r < opd->relocation + relcount
3378                  && r->address < syms[i]->value + opd->vma)
3379             ++r;
3380
3381           if (r == opd->relocation + relcount)
3382             break;
3383
3384           if (r->address != syms[i]->value + opd->vma)
3385             continue;
3386
3387           if (r->howto->type != R_PPC64_ADDR64)
3388             continue;
3389
3390           sym = *r->sym_ptr_ptr;
3391           if (!sym_exists_at (syms, opdsymend, symcount,
3392                               sym->section->id, sym->value + r->addend))
3393             {
3394               size_t len;
3395
3396               *s = *syms[i];
3397               s->flags |= BSF_SYNTHETIC;
3398               s->section = sym->section;
3399               s->value = sym->value + r->addend;
3400               s->name = names;
3401               *names++ = '.';
3402               len = strlen (syms[i]->name);
3403               memcpy (names, syms[i]->name, len + 1);
3404               names += len + 1;
3405               /* Have udata.p point back to the original symbol this
3406                  synthetic symbol was derived from.  */
3407               s->udata.p = syms[i];
3408               s++;
3409             }
3410         }
3411     }
3412   else
3413     {
3414       bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
3415       bfd_byte *contents = NULL;
3416       size_t size;
3417       long plt_count = 0;
3418       bfd_vma glink_vma = 0, resolv_vma = 0;
3419       asection *dynamic, *glink = NULL, *relplt = NULL;
3420       arelent *p;
3421
3422       if (opd != NULL && !bfd_malloc_and_get_section (abfd, opd, &contents))
3423         {
3424         free_contents_and_exit_err:
3425           count = -1;
3426         free_contents_and_exit:
3427           if (contents)
3428             free (contents);
3429           goto done;
3430         }
3431
3432       size = 0;
3433       for (i = secsymend; i < opdsymend; ++i)
3434         {
3435           bfd_vma ent;
3436
3437           /* Ignore bogus symbols.  */
3438           if (syms[i]->value > opd->size - 8)
3439             continue;
3440
3441           ent = bfd_get_64 (abfd, contents + syms[i]->value);
3442           if (!sym_exists_at (syms, opdsymend, symcount, -1, ent))
3443             {
3444               ++count;
3445               size += sizeof (asymbol);
3446               size += strlen (syms[i]->name) + 2;
3447             }
3448         }
3449
3450       /* Get start of .glink stubs from DT_PPC64_GLINK.  */
3451       if (dyn_count != 0
3452           && (dynamic = bfd_get_section_by_name (abfd, ".dynamic")) != NULL)
3453         {
3454           bfd_byte *dynbuf, *extdyn, *extdynend;
3455           size_t extdynsize;
3456           void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
3457
3458           if (!bfd_malloc_and_get_section (abfd, dynamic, &dynbuf))
3459             goto free_contents_and_exit_err;
3460
3461           extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
3462           swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
3463
3464           extdyn = dynbuf;
3465           extdynend = extdyn + dynamic->size;
3466           for (; extdyn < extdynend; extdyn += extdynsize)
3467             {
3468               Elf_Internal_Dyn dyn;
3469               (*swap_dyn_in) (abfd, extdyn, &dyn);
3470
3471               if (dyn.d_tag == DT_NULL)
3472                 break;
3473
3474               if (dyn.d_tag == DT_PPC64_GLINK)
3475                 {
3476                   /* The first glink stub starts at offset 32; see
3477                      comment in ppc64_elf_finish_dynamic_sections. */
3478                   glink_vma = dyn.d_un.d_val + GLINK_CALL_STUB_SIZE - 8 * 4;
3479                   /* The .glink section usually does not survive the final
3480                      link; search for the section (usually .text) where the
3481                      glink stubs now reside.  */
3482                   glink = bfd_sections_find_if (abfd, section_covers_vma,
3483                                                 &glink_vma);
3484                   break;
3485                 }
3486             }
3487
3488           free (dynbuf);
3489         }
3490
3491       if (glink != NULL)
3492         {
3493           /* Determine __glink trampoline by reading the relative branch
3494              from the first glink stub.  */
3495           bfd_byte buf[4];
3496           unsigned int off = 0;
3497
3498           while (bfd_get_section_contents (abfd, glink, buf,
3499                                            glink_vma + off - glink->vma, 4))
3500             {
3501               unsigned int insn = bfd_get_32 (abfd, buf);
3502               insn ^= B_DOT;
3503               if ((insn & ~0x3fffffc) == 0)
3504                 {
3505                   resolv_vma = glink_vma + off + (insn ^ 0x2000000) - 0x2000000;
3506                   break;
3507                 }
3508               off += 4;
3509               if (off > 4)
3510                 break;
3511             }
3512
3513           if (resolv_vma)
3514             size += sizeof (asymbol) + sizeof ("__glink_PLTresolve");
3515
3516           relplt = bfd_get_section_by_name (abfd, ".rela.plt");
3517           if (relplt != NULL)
3518             {
3519               slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
3520               if (! (*slurp_relocs) (abfd, relplt, dyn_syms, TRUE))
3521                 goto free_contents_and_exit_err;
3522
3523               plt_count = relplt->size / sizeof (Elf64_External_Rela);
3524               size += plt_count * sizeof (asymbol);
3525
3526               p = relplt->relocation;
3527               for (i = 0; i < plt_count; i++, p++)
3528                 {
3529                   size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
3530                   if (p->addend != 0)
3531                     size += sizeof ("+0x") - 1 + 16;
3532                 }
3533             }
3534         }
3535
3536       if (size == 0)
3537         goto free_contents_and_exit;
3538       s = *ret = bfd_malloc (size);
3539       if (s == NULL)
3540         goto free_contents_and_exit_err;
3541
3542       names = (char *) (s + count + plt_count + (resolv_vma != 0));
3543
3544       for (i = secsymend; i < opdsymend; ++i)
3545         {
3546           bfd_vma ent;
3547
3548           if (syms[i]->value > opd->size - 8)
3549             continue;
3550
3551           ent = bfd_get_64 (abfd, contents + syms[i]->value);
3552           if (!sym_exists_at (syms, opdsymend, symcount, -1, ent))
3553             {
3554               long lo, hi;
3555               size_t len;
3556               asection *sec = abfd->sections;
3557
3558               *s = *syms[i];
3559               lo = codesecsym;
3560               hi = codesecsymend;
3561               while (lo < hi)
3562                 {
3563                   long mid = (lo + hi) >> 1;
3564                   if (syms[mid]->section->vma < ent)
3565                     lo = mid + 1;
3566                   else if (syms[mid]->section->vma > ent)
3567                     hi = mid;
3568                   else
3569                     {
3570                       sec = syms[mid]->section;
3571                       break;
3572                     }
3573                 }
3574
3575               if (lo >= hi && lo > codesecsym)
3576                 sec = syms[lo - 1]->section;
3577
3578               for (; sec != NULL; sec = sec->next)
3579                 {
3580                   if (sec->vma > ent)
3581                     break;
3582                   /* SEC_LOAD may not be set if SEC is from a separate debug
3583                      info file.  */
3584                   if ((sec->flags & SEC_ALLOC) == 0)
3585                     break;
3586                   if ((sec->flags & SEC_CODE) != 0)
3587                     s->section = sec;
3588                 }
3589               s->flags |= BSF_SYNTHETIC;
3590               s->value = ent - s->section->vma;
3591               s->name = names;
3592               *names++ = '.';
3593               len = strlen (syms[i]->name);
3594               memcpy (names, syms[i]->name, len + 1);
3595               names += len + 1;
3596               /* Have udata.p point back to the original symbol this
3597                  synthetic symbol was derived from.  */
3598               s->udata.p = syms[i];
3599               s++;
3600             }
3601         }
3602       free (contents);
3603
3604       if (glink != NULL && relplt != NULL)
3605         {
3606           if (resolv_vma)
3607             {
3608               /* Add a symbol for the main glink trampoline.  */
3609               memset (s, 0, sizeof *s);
3610               s->the_bfd = abfd;
3611               s->flags = BSF_GLOBAL | BSF_SYNTHETIC;
3612               s->section = glink;
3613               s->value = resolv_vma - glink->vma;
3614               s->name = names;
3615               memcpy (names, "__glink_PLTresolve", sizeof ("__glink_PLTresolve"));
3616               names += sizeof ("__glink_PLTresolve");
3617               s++;
3618               count++;
3619             }
3620
3621           /* FIXME: It would be very much nicer to put sym@plt on the
3622              stub rather than on the glink branch table entry.  The
3623              objdump disassembler would then use a sensible symbol
3624              name on plt calls.  The difficulty in doing so is
3625              a) finding the stubs, and,
3626              b) matching stubs against plt entries, and,
3627              c) there can be multiple stubs for a given plt entry.
3628
3629              Solving (a) could be done by code scanning, but older
3630              ppc64 binaries used different stubs to current code.
3631              (b) is the tricky one since you need to known the toc
3632              pointer for at least one function that uses a pic stub to
3633              be able to calculate the plt address referenced.
3634              (c) means gdb would need to set multiple breakpoints (or
3635              find the glink branch itself) when setting breakpoints
3636              for pending shared library loads.  */
3637           p = relplt->relocation;
3638           for (i = 0; i < plt_count; i++, p++)
3639             {
3640               size_t len;
3641
3642               *s = **p->sym_ptr_ptr;
3643               /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set.  Since
3644                  we are defining a symbol, ensure one of them is set.  */
3645               if ((s->flags & BSF_LOCAL) == 0)
3646                 s->flags |= BSF_GLOBAL;
3647               s->flags |= BSF_SYNTHETIC;
3648               s->section = glink;
3649               s->value = glink_vma - glink->vma;
3650               s->name = names;
3651               s->udata.p = NULL;
3652               len = strlen ((*p->sym_ptr_ptr)->name);
3653               memcpy (names, (*p->sym_ptr_ptr)->name, len);
3654               names += len;
3655               if (p->addend != 0)
3656                 {
3657                   memcpy (names, "+0x", sizeof ("+0x") - 1);
3658                   names += sizeof ("+0x") - 1;
3659                   bfd_sprintf_vma (abfd, names, p->addend);
3660                   names += strlen (names);
3661                 }
3662               memcpy (names, "@plt", sizeof ("@plt"));
3663               names += sizeof ("@plt");
3664               s++;
3665               if (abi < 2)
3666                 {
3667                   glink_vma += 8;
3668                   if (i >= 0x8000)
3669                     glink_vma += 4;
3670                 }
3671               else
3672                 glink_vma += 4;
3673             }
3674           count += plt_count;
3675         }
3676     }
3677
3678  done:
3679   free (syms);
3680   return count;
3681 }
3682 \f
3683 /* The following functions are specific to the ELF linker, while
3684    functions above are used generally.  Those named ppc64_elf_* are
3685    called by the main ELF linker code.  They appear in this file more
3686    or less in the order in which they are called.  eg.
3687    ppc64_elf_check_relocs is called early in the link process,
3688    ppc64_elf_finish_dynamic_sections is one of the last functions
3689    called.
3690
3691    PowerPC64-ELF uses a similar scheme to PowerPC64-XCOFF in that
3692    functions have both a function code symbol and a function descriptor
3693    symbol.  A call to foo in a relocatable object file looks like:
3694
3695    .            .text
3696    .    x:
3697    .            bl      .foo
3698    .            nop
3699
3700    The function definition in another object file might be:
3701
3702    .            .section .opd
3703    .    foo:    .quad   .foo
3704    .            .quad   .TOC.@tocbase
3705    .            .quad   0
3706    .
3707    .            .text
3708    .    .foo:   blr
3709
3710    When the linker resolves the call during a static link, the branch
3711    unsurprisingly just goes to .foo and the .opd information is unused.
3712    If the function definition is in a shared library, things are a little
3713    different:  The call goes via a plt call stub, the opd information gets
3714    copied to the plt, and the linker patches the nop.
3715
3716    .    x:
3717    .            bl      .foo_stub
3718    .            ld      2,40(1)
3719    .
3720    .
3721    .    .foo_stub:
3722    .            std     2,40(1)                 # in practice, the call stub
3723    .            addis   11,2,Lfoo@toc@ha        # is slightly optimized, but
3724    .            addi    11,11,Lfoo@toc@l        # this is the general idea
3725    .            ld      12,0(11)
3726    .            ld      2,8(11)
3727    .            mtctr   12
3728    .            ld      11,16(11)
3729    .            bctr
3730    .
3731    .            .section .plt
3732    .    Lfoo:   reloc (R_PPC64_JMP_SLOT, foo)
3733
3734    The "reloc ()" notation is supposed to indicate that the linker emits
3735    an R_PPC64_JMP_SLOT reloc against foo.  The dynamic linker does the opd
3736    copying.
3737
3738    What are the difficulties here?  Well, firstly, the relocations
3739    examined by the linker in check_relocs are against the function code
3740    sym .foo, while the dynamic relocation in the plt is emitted against
3741    the function descriptor symbol, foo.  Somewhere along the line, we need
3742    to carefully copy dynamic link information from one symbol to the other.
3743    Secondly, the generic part of the elf linker will make .foo a dynamic
3744    symbol as is normal for most other backends.  We need foo dynamic
3745    instead, at least for an application final link.  However, when
3746    creating a shared library containing foo, we need to have both symbols
3747    dynamic so that references to .foo are satisfied during the early
3748    stages of linking.  Otherwise the linker might decide to pull in a
3749    definition from some other object, eg. a static library.
3750
3751    Update: As of August 2004, we support a new convention.  Function
3752    calls may use the function descriptor symbol, ie. "bl foo".  This
3753    behaves exactly as "bl .foo".  */
3754
3755 /* Of those relocs that might be copied as dynamic relocs, this function
3756    selects those that must be copied when linking a shared library,
3757    even when the symbol is local.  */
3758
3759 static int
3760 must_be_dyn_reloc (struct bfd_link_info *info,
3761                    enum elf_ppc64_reloc_type r_type)
3762 {
3763   switch (r_type)
3764     {
3765     default:
3766       return 1;
3767
3768     case R_PPC64_REL32:
3769     case R_PPC64_REL64:
3770     case R_PPC64_REL30:
3771       return 0;
3772
3773     case R_PPC64_TPREL16:
3774     case R_PPC64_TPREL16_LO:
3775     case R_PPC64_TPREL16_HI:
3776     case R_PPC64_TPREL16_HA:
3777     case R_PPC64_TPREL16_DS:
3778     case R_PPC64_TPREL16_LO_DS:
3779     case R_PPC64_TPREL16_HIGH:
3780     case R_PPC64_TPREL16_HIGHA:
3781     case R_PPC64_TPREL16_HIGHER:
3782     case R_PPC64_TPREL16_HIGHERA:
3783     case R_PPC64_TPREL16_HIGHEST:
3784     case R_PPC64_TPREL16_HIGHESTA:
3785     case R_PPC64_TPREL64:
3786       return !bfd_link_executable (info);
3787     }
3788 }
3789
3790 /* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
3791    copying dynamic variables from a shared lib into an app's dynbss
3792    section, and instead use a dynamic relocation to point into the
3793    shared lib.  With code that gcc generates, it's vital that this be
3794    enabled;  In the PowerPC64 ABI, the address of a function is actually
3795    the address of a function descriptor, which resides in the .opd
3796    section.  gcc uses the descriptor directly rather than going via the
3797    GOT as some other ABI's do, which means that initialized function
3798    pointers must reference the descriptor.  Thus, a function pointer
3799    initialized to the address of a function in a shared library will
3800    either require a copy reloc, or a dynamic reloc.  Using a copy reloc
3801    redefines the function descriptor symbol to point to the copy.  This
3802    presents a problem as a plt entry for that function is also
3803    initialized from the function descriptor symbol and the copy reloc
3804    may not be initialized first.  */
3805 #define ELIMINATE_COPY_RELOCS 1
3806
3807 /* Section name for stubs is the associated section name plus this
3808    string.  */
3809 #define STUB_SUFFIX ".stub"
3810
3811 /* Linker stubs.
3812    ppc_stub_long_branch:
3813    Used when a 14 bit branch (or even a 24 bit branch) can't reach its
3814    destination, but a 24 bit branch in a stub section will reach.
3815    .    b       dest
3816
3817    ppc_stub_plt_branch:
3818    Similar to the above, but a 24 bit branch in the stub section won't
3819    reach its destination.
3820    .    addis   %r11,%r2,xxx@toc@ha
3821    .    ld      %r12,xxx@toc@l(%r11)
3822    .    mtctr   %r12
3823    .    bctr
3824
3825    ppc_stub_plt_call:
3826    Used to call a function in a shared library.  If it so happens that
3827    the plt entry referenced crosses a 64k boundary, then an extra
3828    "addi %r11,%r11,xxx@toc@l" will be inserted before the "mtctr".
3829    .    std     %r2,40(%r1)
3830    .    addis   %r11,%r2,xxx@toc@ha
3831    .    ld      %r12,xxx+0@toc@l(%r11)
3832    .    mtctr   %r12
3833    .    ld      %r2,xxx+8@toc@l(%r11)
3834    .    ld      %r11,xxx+16@toc@l(%r11)
3835    .    bctr
3836
3837    ppc_stub_long_branch and ppc_stub_plt_branch may also have additional
3838    code to adjust the value and save r2 to support multiple toc sections.
3839    A ppc_stub_long_branch with an r2 offset looks like:
3840    .    std     %r2,40(%r1)
3841    .    addis   %r2,%r2,off@ha
3842    .    addi    %r2,%r2,off@l
3843    .    b       dest
3844
3845    A ppc_stub_plt_branch with an r2 offset looks like:
3846    .    std     %r2,40(%r1)
3847    .    addis   %r11,%r2,xxx@toc@ha
3848    .    ld      %r12,xxx@toc@l(%r11)
3849    .    addis   %r2,%r2,off@ha
3850    .    addi    %r2,%r2,off@l
3851    .    mtctr   %r12
3852    .    bctr
3853
3854    In cases where the "addis" instruction would add zero, the "addis" is
3855    omitted and following instructions modified slightly in some cases.
3856 */
3857
3858 enum ppc_stub_type {
3859   ppc_stub_none,
3860   ppc_stub_long_branch,
3861   ppc_stub_long_branch_r2off,
3862   ppc_stub_plt_branch,
3863   ppc_stub_plt_branch_r2off,
3864   ppc_stub_plt_call,
3865   ppc_stub_plt_call_r2save,
3866   ppc_stub_global_entry,
3867   ppc_stub_save_res
3868 };
3869
3870 /* Information on stub grouping.  */
3871 struct map_stub
3872 {
3873   /* The stub section.  */
3874   asection *stub_sec;
3875   /* This is the section to which stubs in the group will be attached.  */
3876   asection *link_sec;
3877   /* Next group.  */
3878   struct map_stub *next;
3879   /* Whether to emit a copy of register save/restore functions in this
3880      group.  */
3881   int needs_save_res;
3882 };
3883
3884 struct ppc_stub_hash_entry {
3885
3886   /* Base hash table entry structure.  */
3887   struct bfd_hash_entry root;
3888
3889   enum ppc_stub_type stub_type;
3890
3891   /* Group information.  */
3892   struct map_stub *group;
3893
3894   /* Offset within stub_sec of the beginning of this stub.  */
3895   bfd_vma stub_offset;
3896
3897   /* Given the symbol's value and its section we can determine its final
3898      value when building the stubs (so the stub knows where to jump.  */
3899   bfd_vma target_value;
3900   asection *target_section;
3901
3902   /* The symbol table entry, if any, that this was derived from.  */
3903   struct ppc_link_hash_entry *h;
3904   struct plt_entry *plt_ent;
3905
3906   /* Symbol st_other.  */
3907   unsigned char other;
3908 };
3909
3910 struct ppc_branch_hash_entry {
3911
3912   /* Base hash table entry structure.  */
3913   struct bfd_hash_entry root;
3914
3915   /* Offset within branch lookup table.  */
3916   unsigned int offset;
3917
3918   /* Generation marker.  */
3919   unsigned int iter;
3920 };
3921
3922 /* Used to track dynamic relocations for local symbols.  */
3923 struct ppc_dyn_relocs
3924 {
3925   struct ppc_dyn_relocs *next;
3926
3927   /* The input section of the reloc.  */
3928   asection *sec;
3929
3930   /* Total number of relocs copied for the input section.  */
3931   unsigned int count : 31;
3932
3933   /* Whether this entry is for STT_GNU_IFUNC symbols.  */
3934   unsigned int ifunc : 1;
3935 };
3936
3937 struct ppc_link_hash_entry
3938 {
3939   struct elf_link_hash_entry elf;
3940
3941   union {
3942     /* A pointer to the most recently used stub hash entry against this
3943        symbol.  */
3944     struct ppc_stub_hash_entry *stub_cache;
3945
3946     /* A pointer to the next symbol starting with a '.'  */
3947     struct ppc_link_hash_entry *next_dot_sym;
3948   } u;
3949
3950   /* Track dynamic relocs copied for this symbol.  */
3951   struct elf_dyn_relocs *dyn_relocs;
3952
3953   /* Link between function code and descriptor symbols.  */
3954   struct ppc_link_hash_entry *oh;
3955
3956   /* Flag function code and descriptor symbols.  */
3957   unsigned int is_func:1;
3958   unsigned int is_func_descriptor:1;
3959   unsigned int fake:1;
3960
3961   /* Whether global opd/toc sym has been adjusted or not.
3962      After ppc64_elf_edit_opd/ppc64_elf_edit_toc has run, this flag
3963      should be set for all globals defined in any opd/toc section.  */
3964   unsigned int adjust_done:1;
3965
3966   /* Set if we twiddled this symbol to weak at some stage.  */
3967   unsigned int was_undefined:1;
3968
3969   /* Set if this is an out-of-line register save/restore function,
3970      with non-standard calling convention.  */
3971   unsigned int save_res:1;
3972
3973   /* Contexts in which symbol is used in the GOT (or TOC).
3974      TLS_GD .. TLS_EXPLICIT bits are or'd into the mask as the
3975      corresponding relocs are encountered during check_relocs.
3976      tls_optimize clears TLS_GD .. TLS_TPREL when optimizing to
3977      indicate the corresponding GOT entry type is not needed.
3978      tls_optimize may also set TLS_TPRELGD when a GD reloc turns into
3979      a TPREL one.  We use a separate flag rather than setting TPREL
3980      just for convenience in distinguishing the two cases.  */
3981 #define TLS_GD           1      /* GD reloc. */
3982 #define TLS_LD           2      /* LD reloc. */
3983 #define TLS_TPREL        4      /* TPREL reloc, => IE. */
3984 #define TLS_DTPREL       8      /* DTPREL reloc, => LD. */
3985 #define TLS_TLS         16      /* Any TLS reloc.  */
3986 #define TLS_EXPLICIT    32      /* Marks TOC section TLS relocs. */
3987 #define TLS_TPRELGD     64      /* TPREL reloc resulting from GD->IE. */
3988 #define PLT_IFUNC      128      /* STT_GNU_IFUNC.  */
3989   unsigned char tls_mask;
3990 };
3991
3992 /* ppc64 ELF linker hash table.  */
3993
3994 struct ppc_link_hash_table
3995 {
3996   struct elf_link_hash_table elf;
3997
3998   /* The stub hash table.  */
3999   struct bfd_hash_table stub_hash_table;
4000
4001   /* Another hash table for plt_branch stubs.  */
4002   struct bfd_hash_table branch_hash_table;
4003
4004   /* Hash table for function prologue tocsave.  */
4005   htab_t tocsave_htab;
4006
4007   /* Various options and other info passed from the linker.  */
4008   struct ppc64_elf_params *params;
4009
4010   /* The size of sec_info below.  */
4011   unsigned int sec_info_arr_size;
4012
4013   /* Per-section array of extra section info.  Done this way rather
4014      than as part of ppc64_elf_section_data so we have the info for
4015      non-ppc64 sections.  */
4016   struct
4017   {
4018     /* Along with elf_gp, specifies the TOC pointer used by this section.  */
4019     bfd_vma toc_off;
4020
4021     union
4022     {
4023       /* The section group that this section belongs to.  */
4024       struct map_stub *group;
4025       /* A temp section list pointer.  */
4026       asection *list;
4027     } u;
4028   } *sec_info;
4029
4030   /* Linked list of groups.  */
4031   struct map_stub *group;
4032
4033   /* Temp used when calculating TOC pointers.  */
4034   bfd_vma toc_curr;
4035   bfd *toc_bfd;
4036   asection *toc_first_sec;
4037
4038   /* Used when adding symbols.  */
4039   struct ppc_link_hash_entry *dot_syms;
4040
4041   /* Shortcuts to get to dynamic linker sections.  */
4042   asection *dynbss;
4043   asection *relbss;
4044   asection *glink;
4045   asection *sfpr;
4046   asection *brlt;
4047   asection *relbrlt;
4048   asection *glink_eh_frame;
4049
4050   /* Shortcut to .__tls_get_addr and __tls_get_addr.  */
4051   struct ppc_link_hash_entry *tls_get_addr;
4052   struct ppc_link_hash_entry *tls_get_addr_fd;
4053
4054   /* The size of reliplt used by got entry relocs.  */
4055   bfd_size_type got_reli_size;
4056
4057   /* Statistics.  */
4058   unsigned long stub_count[ppc_stub_global_entry];
4059
4060   /* Number of stubs against global syms.  */
4061   unsigned long stub_globals;
4062
4063   /* Set if we're linking code with function descriptors.  */
4064   unsigned int opd_abi:1;
4065
4066   /* Support for multiple toc sections.  */
4067   unsigned int do_multi_toc:1;
4068   unsigned int multi_toc_needed:1;
4069   unsigned int second_toc_pass:1;
4070   unsigned int do_toc_opt:1;
4071
4072   /* Set on error.  */
4073   unsigned int stub_error:1;
4074
4075   /* Temp used by ppc64_elf_before_check_relocs.  */
4076   unsigned int twiddled_syms:1;
4077
4078   /* Incremented every time we size stubs.  */
4079   unsigned int stub_iteration;
4080
4081   /* Small local sym cache.  */
4082   struct sym_cache sym_cache;
4083 };
4084
4085 /* Rename some of the generic section flags to better document how they
4086    are used here.  */
4087
4088 /* Nonzero if this section has TLS related relocations.  */
4089 #define has_tls_reloc sec_flg0
4090
4091 /* Nonzero if this section has a call to __tls_get_addr.  */
4092 #define has_tls_get_addr_call sec_flg1
4093
4094 /* Nonzero if this section has any toc or got relocs.  */
4095 #define has_toc_reloc sec_flg2
4096
4097 /* Nonzero if this section has a call to another section that uses
4098    the toc or got.  */
4099 #define makes_toc_func_call sec_flg3
4100
4101 /* Recursion protection when determining above flag.  */
4102 #define call_check_in_progress sec_flg4
4103 #define call_check_done sec_flg5
4104
4105 /* Get the ppc64 ELF linker hash table from a link_info structure.  */
4106
4107 #define ppc_hash_table(p) \
4108   (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
4109   == PPC64_ELF_DATA ? ((struct ppc_link_hash_table *) ((p)->hash)) : NULL)
4110
4111 #define ppc_stub_hash_lookup(table, string, create, copy) \
4112   ((struct ppc_stub_hash_entry *) \
4113    bfd_hash_lookup ((table), (string), (create), (copy)))
4114
4115 #define ppc_branch_hash_lookup(table, string, create, copy) \
4116   ((struct ppc_branch_hash_entry *) \
4117    bfd_hash_lookup ((table), (string), (create), (copy)))
4118
4119 /* Create an entry in the stub hash table.  */
4120
4121 static struct bfd_hash_entry *
4122 stub_hash_newfunc (struct bfd_hash_entry *entry,
4123                    struct bfd_hash_table *table,
4124                    const char *string)
4125 {
4126   /* Allocate the structure if it has not already been allocated by a
4127      subclass.  */
4128   if (entry == NULL)
4129     {
4130       entry = bfd_hash_allocate (table, sizeof (struct ppc_stub_hash_entry));
4131       if (entry == NULL)
4132         return entry;
4133     }
4134
4135   /* Call the allocation method of the superclass.  */
4136   entry = bfd_hash_newfunc (entry, table, string);
4137   if (entry != NULL)
4138     {
4139       struct ppc_stub_hash_entry *eh;
4140
4141       /* Initialize the local fields.  */
4142       eh = (struct ppc_stub_hash_entry *) entry;
4143       eh->stub_type = ppc_stub_none;
4144       eh->group = NULL;
4145       eh->stub_offset = 0;
4146       eh->target_value = 0;
4147       eh->target_section = NULL;
4148       eh->h = NULL;
4149       eh->plt_ent = NULL;
4150       eh->other = 0;
4151     }
4152
4153   return entry;
4154 }
4155
4156 /* Create an entry in the branch hash table.  */
4157
4158 static struct bfd_hash_entry *
4159 branch_hash_newfunc (struct bfd_hash_entry *entry,
4160                      struct bfd_hash_table *table,
4161                      const char *string)
4162 {
4163   /* Allocate the structure if it has not already been allocated by a
4164      subclass.  */
4165   if (entry == NULL)
4166     {
4167       entry = bfd_hash_allocate (table, sizeof (struct ppc_branch_hash_entry));
4168       if (entry == NULL)
4169         return entry;
4170     }
4171
4172   /* Call the allocation method of the superclass.  */
4173   entry = bfd_hash_newfunc (entry, table, string);
4174   if (entry != NULL)
4175     {
4176       struct ppc_branch_hash_entry *eh;
4177
4178       /* Initialize the local fields.  */
4179       eh = (struct ppc_branch_hash_entry *) entry;
4180       eh->offset = 0;
4181       eh->iter = 0;
4182     }
4183
4184   return entry;
4185 }
4186
4187 /* Create an entry in a ppc64 ELF linker hash table.  */
4188
4189 static struct bfd_hash_entry *
4190 link_hash_newfunc (struct bfd_hash_entry *entry,
4191                    struct bfd_hash_table *table,
4192                    const char *string)
4193 {
4194   /* Allocate the structure if it has not already been allocated by a
4195      subclass.  */
4196   if (entry == NULL)
4197     {
4198       entry = bfd_hash_allocate (table, sizeof (struct ppc_link_hash_entry));
4199       if (entry == NULL)
4200         return entry;
4201     }
4202
4203   /* Call the allocation method of the superclass.  */
4204   entry = _bfd_elf_link_hash_newfunc (entry, table, string);
4205   if (entry != NULL)
4206     {
4207       struct ppc_link_hash_entry *eh = (struct ppc_link_hash_entry *) entry;
4208
4209       memset (&eh->u.stub_cache, 0,
4210               (sizeof (struct ppc_link_hash_entry)
4211                - offsetof (struct ppc_link_hash_entry, u.stub_cache)));
4212
4213       /* When making function calls, old ABI code references function entry
4214          points (dot symbols), while new ABI code references the function
4215          descriptor symbol.  We need to make any combination of reference and
4216          definition work together, without breaking archive linking.
4217
4218          For a defined function "foo" and an undefined call to "bar":
4219          An old object defines "foo" and ".foo", references ".bar" (possibly
4220          "bar" too).
4221          A new object defines "foo" and references "bar".
4222
4223          A new object thus has no problem with its undefined symbols being
4224          satisfied by definitions in an old object.  On the other hand, the
4225          old object won't have ".bar" satisfied by a new object.
4226
4227          Keep a list of newly added dot-symbols.  */
4228
4229       if (string[0] == '.')
4230         {
4231           struct ppc_link_hash_table *htab;
4232
4233           htab = (struct ppc_link_hash_table *) table;
4234           eh->u.next_dot_sym = htab->dot_syms;
4235           htab->dot_syms = eh;
4236         }
4237     }
4238
4239   return entry;
4240 }
4241
4242 struct tocsave_entry {
4243   asection *sec;
4244   bfd_vma offset;
4245 };
4246
4247 static hashval_t
4248 tocsave_htab_hash (const void *p)
4249 {
4250   const struct tocsave_entry *e = (const struct tocsave_entry *) p;
4251   return ((bfd_vma)(intptr_t) e->sec ^ e->offset) >> 3;
4252 }
4253
4254 static int
4255 tocsave_htab_eq (const void *p1, const void *p2)
4256 {
4257   const struct tocsave_entry *e1 = (const struct tocsave_entry *) p1;
4258   const struct tocsave_entry *e2 = (const struct tocsave_entry *) p2;
4259   return e1->sec == e2->sec && e1->offset == e2->offset;
4260 }
4261
4262 /* Destroy a ppc64 ELF linker hash table.  */
4263
4264 static void
4265 ppc64_elf_link_hash_table_free (bfd *obfd)
4266 {
4267   struct ppc_link_hash_table *htab;
4268
4269   htab = (struct ppc_link_hash_table *) obfd->link.hash;
4270   if (htab->tocsave_htab)
4271     htab_delete (htab->tocsave_htab);
4272   bfd_hash_table_free (&htab->branch_hash_table);
4273   bfd_hash_table_free (&htab->stub_hash_table);
4274   _bfd_elf_link_hash_table_free (obfd);
4275 }
4276
4277 /* Create a ppc64 ELF linker hash table.  */
4278
4279 static struct bfd_link_hash_table *
4280 ppc64_elf_link_hash_table_create (bfd *abfd)
4281 {
4282   struct ppc_link_hash_table *htab;
4283   bfd_size_type amt = sizeof (struct ppc_link_hash_table);
4284
4285   htab = bfd_zmalloc (amt);
4286   if (htab == NULL)
4287     return NULL;
4288
4289   if (!_bfd_elf_link_hash_table_init (&htab->elf, abfd, link_hash_newfunc,
4290                                       sizeof (struct ppc_link_hash_entry),
4291                                       PPC64_ELF_DATA))
4292     {
4293       free (htab);
4294       return NULL;
4295     }
4296
4297   /* Init the stub hash table too.  */
4298   if (!bfd_hash_table_init (&htab->stub_hash_table, stub_hash_newfunc,
4299                             sizeof (struct ppc_stub_hash_entry)))
4300     {
4301       _bfd_elf_link_hash_table_free (abfd);
4302       return NULL;
4303     }
4304
4305   /* And the branch hash table.  */
4306   if (!bfd_hash_table_init (&htab->branch_hash_table, branch_hash_newfunc,
4307                             sizeof (struct ppc_branch_hash_entry)))
4308     {
4309       bfd_hash_table_free (&htab->stub_hash_table);
4310       _bfd_elf_link_hash_table_free (abfd);
4311       return NULL;
4312     }
4313
4314   htab->tocsave_htab = htab_try_create (1024,
4315                                         tocsave_htab_hash,
4316                                         tocsave_htab_eq,
4317                                         NULL);
4318   if (htab->tocsave_htab == NULL)
4319     {
4320       ppc64_elf_link_hash_table_free (abfd);
4321       return NULL;
4322     }
4323   htab->elf.root.hash_table_free = ppc64_elf_link_hash_table_free;
4324
4325   /* Initializing two fields of the union is just cosmetic.  We really
4326      only care about glist, but when compiled on a 32-bit host the
4327      bfd_vma fields are larger.  Setting the bfd_vma to zero makes
4328      debugger inspection of these fields look nicer.  */
4329   htab->elf.init_got_refcount.refcount = 0;
4330   htab->elf.init_got_refcount.glist = NULL;
4331   htab->elf.init_plt_refcount.refcount = 0;
4332   htab->elf.init_plt_refcount.glist = NULL;
4333   htab->elf.init_got_offset.offset = 0;
4334   htab->elf.init_got_offset.glist = NULL;
4335   htab->elf.init_plt_offset.offset = 0;
4336   htab->elf.init_plt_offset.glist = NULL;
4337
4338   return &htab->elf.root;
4339 }
4340
4341 /* Create sections for linker generated code.  */
4342
4343 static bfd_boolean
4344 create_linkage_sections (bfd *dynobj, struct bfd_link_info *info)
4345 {
4346   struct ppc_link_hash_table *htab;
4347   flagword flags;
4348
4349   htab = ppc_hash_table (info);
4350
4351   flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY
4352            | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4353   if (htab->params->save_restore_funcs)
4354     {
4355       /* Create .sfpr for code to save and restore fp regs.  */
4356       htab->sfpr = bfd_make_section_anyway_with_flags (dynobj, ".sfpr",
4357                                                        flags);
4358       if (htab->sfpr == NULL
4359           || ! bfd_set_section_alignment (dynobj, htab->sfpr, 2))
4360         return FALSE;
4361     }
4362
4363   if (bfd_link_relocatable (info))
4364     return TRUE;
4365
4366   /* Create .glink for lazy dynamic linking support.  */
4367   htab->glink = bfd_make_section_anyway_with_flags (dynobj, ".glink",
4368                                                     flags);
4369   if (htab->glink == NULL
4370       || ! bfd_set_section_alignment (dynobj, htab->glink, 3))
4371     return FALSE;
4372
4373   if (!info->no_ld_generated_unwind_info)
4374     {
4375       flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
4376                | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4377       htab->glink_eh_frame = bfd_make_section_anyway_with_flags (dynobj,
4378                                                                  ".eh_frame",
4379                                                                  flags);
4380       if (htab->glink_eh_frame == NULL
4381           || !bfd_set_section_alignment (dynobj, htab->glink_eh_frame, 2))
4382         return FALSE;
4383     }
4384
4385   flags = SEC_ALLOC | SEC_LINKER_CREATED;
4386   htab->elf.iplt = bfd_make_section_anyway_with_flags (dynobj, ".iplt", flags);
4387   if (htab->elf.iplt == NULL
4388       || ! bfd_set_section_alignment (dynobj, htab->elf.iplt, 3))
4389     return FALSE;
4390
4391   flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
4392            | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4393   htab->elf.irelplt
4394     = bfd_make_section_anyway_with_flags (dynobj, ".rela.iplt", flags);
4395   if (htab->elf.irelplt == NULL
4396       || ! bfd_set_section_alignment (dynobj, htab->elf.irelplt, 3))
4397     return FALSE;
4398
4399   /* Create branch lookup table for plt_branch stubs.  */
4400   flags = (SEC_ALLOC | SEC_LOAD
4401            | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4402   htab->brlt = bfd_make_section_anyway_with_flags (dynobj, ".branch_lt",
4403                                                    flags);
4404   if (htab->brlt == NULL
4405       || ! bfd_set_section_alignment (dynobj, htab->brlt, 3))
4406     return FALSE;
4407
4408   if (!bfd_link_pic (info))
4409     return TRUE;
4410
4411   flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
4412            | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4413   htab->relbrlt = bfd_make_section_anyway_with_flags (dynobj,
4414                                                       ".rela.branch_lt",
4415                                                       flags);
4416   if (htab->relbrlt == NULL
4417       || ! bfd_set_section_alignment (dynobj, htab->relbrlt, 3))
4418     return FALSE;
4419
4420   return TRUE;
4421 }
4422
4423 /* Satisfy the ELF linker by filling in some fields in our fake bfd.  */
4424
4425 bfd_boolean
4426 ppc64_elf_init_stub_bfd (struct bfd_link_info *info,
4427                          struct ppc64_elf_params *params)
4428 {
4429   struct ppc_link_hash_table *htab;
4430
4431   elf_elfheader (params->stub_bfd)->e_ident[EI_CLASS] = ELFCLASS64;
4432
4433 /* Always hook our dynamic sections into the first bfd, which is the
4434    linker created stub bfd.  This ensures that the GOT header is at
4435    the start of the output TOC section.  */
4436   htab = ppc_hash_table (info);
4437   htab->elf.dynobj = params->stub_bfd;
4438   htab->params = params;
4439
4440   return create_linkage_sections (htab->elf.dynobj, info);
4441 }
4442
4443 /* Build a name for an entry in the stub hash table.  */
4444
4445 static char *
4446 ppc_stub_name (const asection *input_section,
4447                const asection *sym_sec,
4448                const struct ppc_link_hash_entry *h,
4449                const Elf_Internal_Rela *rel)
4450 {
4451   char *stub_name;
4452   ssize_t len;
4453
4454   /* rel->r_addend is actually 64 bit, but who uses more than +/- 2^31
4455      offsets from a sym as a branch target?  In fact, we could
4456      probably assume the addend is always zero.  */
4457   BFD_ASSERT (((int) rel->r_addend & 0xffffffff) == rel->r_addend);
4458
4459   if (h)
4460     {
4461       len = 8 + 1 + strlen (h->elf.root.root.string) + 1 + 8 + 1;
4462       stub_name = bfd_malloc (len);
4463       if (stub_name == NULL)
4464         return stub_name;
4465
4466       len = sprintf (stub_name, "%08x.%s+%x",
4467                      input_section->id & 0xffffffff,
4468                      h->elf.root.root.string,
4469                      (int) rel->r_addend & 0xffffffff);
4470     }
4471   else
4472     {
4473       len = 8 + 1 + 8 + 1 + 8 + 1 + 8 + 1;
4474       stub_name = bfd_malloc (len);
4475       if (stub_name == NULL)
4476         return stub_name;
4477
4478       len = sprintf (stub_name, "%08x.%x:%x+%x",
4479                      input_section->id & 0xffffffff,
4480                      sym_sec->id & 0xffffffff,
4481                      (int) ELF64_R_SYM (rel->r_info) & 0xffffffff,
4482                      (int) rel->r_addend & 0xffffffff);
4483     }
4484   if (len > 2 && stub_name[len - 2] == '+' && stub_name[len - 1] == '0')
4485     stub_name[len - 2] = 0;
4486   return stub_name;
4487 }
4488
4489 /* Look up an entry in the stub hash.  Stub entries are cached because
4490    creating the stub name takes a bit of time.  */
4491
4492 static struct ppc_stub_hash_entry *
4493 ppc_get_stub_entry (const asection *input_section,
4494                     const asection *sym_sec,
4495                     struct ppc_link_hash_entry *h,
4496                     const Elf_Internal_Rela *rel,
4497                     struct ppc_link_hash_table *htab)
4498 {
4499   struct ppc_stub_hash_entry *stub_entry;
4500   struct map_stub *group;
4501
4502   /* If this input section is part of a group of sections sharing one
4503      stub section, then use the id of the first section in the group.
4504      Stub names need to include a section id, as there may well be
4505      more than one stub used to reach say, printf, and we need to
4506      distinguish between them.  */
4507   group = htab->sec_info[input_section->id].u.group;
4508   if (group == NULL)
4509     return NULL;
4510
4511   if (h != NULL && h->u.stub_cache != NULL
4512       && h->u.stub_cache->h == h
4513       && h->u.stub_cache->group == group)
4514     {
4515       stub_entry = h->u.stub_cache;
4516     }
4517   else
4518     {
4519       char *stub_name;
4520
4521       stub_name = ppc_stub_name (group->link_sec, sym_sec, h, rel);
4522       if (stub_name == NULL)
4523         return NULL;
4524
4525       stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table,
4526                                          stub_name, FALSE, FALSE);
4527       if (h != NULL)
4528         h->u.stub_cache = stub_entry;
4529
4530       free (stub_name);
4531     }
4532
4533   return stub_entry;
4534 }
4535
4536 /* Add a new stub entry to the stub hash.  Not all fields of the new
4537    stub entry are initialised.  */
4538
4539 static struct ppc_stub_hash_entry *
4540 ppc_add_stub (const char *stub_name,
4541               asection *section,
4542               struct bfd_link_info *info)
4543 {
4544   struct ppc_link_hash_table *htab = ppc_hash_table (info);
4545   struct map_stub *group;
4546   asection *link_sec;
4547   asection *stub_sec;
4548   struct ppc_stub_hash_entry *stub_entry;
4549
4550   group = htab->sec_info[section->id].u.group;
4551   link_sec = group->link_sec;
4552   stub_sec = group->stub_sec;
4553   if (stub_sec == NULL)
4554     {
4555       size_t namelen;
4556       bfd_size_type len;
4557       char *s_name;
4558
4559       namelen = strlen (link_sec->name);
4560       len = namelen + sizeof (STUB_SUFFIX);
4561       s_name = bfd_alloc (htab->params->stub_bfd, len);
4562       if (s_name == NULL)
4563         return NULL;
4564
4565       memcpy (s_name, link_sec->name, namelen);
4566       memcpy (s_name + namelen, STUB_SUFFIX, sizeof (STUB_SUFFIX));
4567       stub_sec = (*htab->params->add_stub_section) (s_name, link_sec);
4568       if (stub_sec == NULL)
4569         return NULL;
4570       group->stub_sec = stub_sec;
4571     }
4572
4573   /* Enter this entry into the linker stub hash table.  */
4574   stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table, stub_name,
4575                                      TRUE, FALSE);
4576   if (stub_entry == NULL)
4577     {
4578       info->callbacks->einfo (_("%P: %B: cannot create stub entry %s\n"),
4579                               section->owner, stub_name);
4580       return NULL;
4581     }
4582
4583   stub_entry->group = group;
4584   stub_entry->stub_offset = 0;
4585   return stub_entry;
4586 }
4587
4588 /* Create .got and .rela.got sections in ABFD, and .got in dynobj if
4589    not already done.  */
4590
4591 static bfd_boolean
4592 create_got_section (bfd *abfd, struct bfd_link_info *info)
4593 {
4594   asection *got, *relgot;
4595   flagword flags;
4596   struct ppc_link_hash_table *htab = ppc_hash_table (info);
4597
4598   if (!is_ppc64_elf (abfd))
4599     return FALSE;
4600   if (htab == NULL)
4601     return FALSE;
4602
4603   if (!htab->elf.sgot
4604       && !_bfd_elf_create_got_section (htab->elf.dynobj, info))
4605     return FALSE;
4606
4607   flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
4608            | SEC_LINKER_CREATED);
4609
4610   got = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
4611   if (!got
4612       || !bfd_set_section_alignment (abfd, got, 3))
4613     return FALSE;
4614
4615   relgot = bfd_make_section_anyway_with_flags (abfd, ".rela.got",
4616                                                flags | SEC_READONLY);
4617   if (!relgot
4618       || ! bfd_set_section_alignment (abfd, relgot, 3))
4619     return FALSE;
4620
4621   ppc64_elf_tdata (abfd)->got = got;
4622   ppc64_elf_tdata (abfd)->relgot = relgot;
4623   return TRUE;
4624 }
4625
4626 /* Create the dynamic sections, and set up shortcuts.  */
4627
4628 static bfd_boolean
4629 ppc64_elf_create_dynamic_sections (bfd *dynobj, struct bfd_link_info *info)
4630 {
4631   struct ppc_link_hash_table *htab;
4632
4633   if (!_bfd_elf_create_dynamic_sections (dynobj, info))
4634     return FALSE;
4635
4636   htab = ppc_hash_table (info);
4637   if (htab == NULL)
4638     return FALSE;
4639
4640   htab->dynbss = bfd_get_linker_section (dynobj, ".dynbss");
4641   if (!bfd_link_pic (info))
4642     htab->relbss = bfd_get_linker_section (dynobj, ".rela.bss");
4643
4644   if (!htab->elf.sgot || !htab->elf.splt || !htab->elf.srelplt || !htab->dynbss
4645       || (!bfd_link_pic (info) && !htab->relbss))
4646     abort ();
4647
4648   return TRUE;
4649 }
4650
4651 /* Follow indirect and warning symbol links.  */
4652
4653 static inline struct bfd_link_hash_entry *
4654 follow_link (struct bfd_link_hash_entry *h)
4655 {
4656   while (h->type == bfd_link_hash_indirect
4657          || h->type == bfd_link_hash_warning)
4658     h = h->u.i.link;
4659   return h;
4660 }
4661
4662 static inline struct elf_link_hash_entry *
4663 elf_follow_link (struct elf_link_hash_entry *h)
4664 {
4665   return (struct elf_link_hash_entry *) follow_link (&h->root);
4666 }
4667
4668 static inline struct ppc_link_hash_entry *
4669 ppc_follow_link (struct ppc_link_hash_entry *h)
4670 {
4671   return (struct ppc_link_hash_entry *) follow_link (&h->elf.root);
4672 }
4673
4674 /* Merge PLT info on FROM with that on TO.  */
4675
4676 static void
4677 move_plt_plist (struct ppc_link_hash_entry *from,
4678                 struct ppc_link_hash_entry *to)
4679 {
4680   if (from->elf.plt.plist != NULL)
4681     {
4682       if (to->elf.plt.plist != NULL)
4683         {
4684           struct plt_entry **entp;
4685           struct plt_entry *ent;
4686
4687           for (entp = &from->elf.plt.plist; (ent = *entp) != NULL; )
4688             {
4689               struct plt_entry *dent;
4690
4691               for (dent = to->elf.plt.plist; dent != NULL; dent = dent->next)
4692                 if (dent->addend == ent->addend)
4693                   {
4694                     dent->plt.refcount += ent->plt.refcount;
4695                     *entp = ent->next;
4696                     break;
4697                   }
4698               if (dent == NULL)
4699                 entp = &ent->next;
4700             }
4701           *entp = to->elf.plt.plist;
4702         }
4703
4704       to->elf.plt.plist = from->elf.plt.plist;
4705       from->elf.plt.plist = NULL;
4706     }
4707 }
4708
4709 /* Copy the extra info we tack onto an elf_link_hash_entry.  */
4710
4711 static void
4712 ppc64_elf_copy_indirect_symbol (struct bfd_link_info *info,
4713                                 struct elf_link_hash_entry *dir,
4714                                 struct elf_link_hash_entry *ind)
4715 {
4716   struct ppc_link_hash_entry *edir, *eind;
4717
4718   edir = (struct ppc_link_hash_entry *) dir;
4719   eind = (struct ppc_link_hash_entry *) ind;
4720
4721   edir->is_func |= eind->is_func;
4722   edir->is_func_descriptor |= eind->is_func_descriptor;
4723   edir->tls_mask |= eind->tls_mask;
4724   if (eind->oh != NULL)
4725     edir->oh = ppc_follow_link (eind->oh);
4726
4727   /* If called to transfer flags for a weakdef during processing
4728      of elf_adjust_dynamic_symbol, don't copy NON_GOT_REF.
4729      We clear it ourselves for ELIMINATE_COPY_RELOCS.  */
4730   if (!(ELIMINATE_COPY_RELOCS
4731         && eind->elf.root.type != bfd_link_hash_indirect
4732         && edir->elf.dynamic_adjusted))
4733     edir->elf.non_got_ref |= eind->elf.non_got_ref;
4734
4735   edir->elf.ref_dynamic |= eind->elf.ref_dynamic;
4736   edir->elf.ref_regular |= eind->elf.ref_regular;
4737   edir->elf.ref_regular_nonweak |= eind->elf.ref_regular_nonweak;
4738   edir->elf.needs_plt |= eind->elf.needs_plt;
4739   edir->elf.pointer_equality_needed |= eind->elf.pointer_equality_needed;
4740
4741   /* Copy over any dynamic relocs we may have on the indirect sym.  */
4742   if (eind->dyn_relocs != NULL)
4743     {
4744       if (edir->dyn_relocs != NULL)
4745         {
4746           struct elf_dyn_relocs **pp;
4747           struct elf_dyn_relocs *p;
4748
4749           /* Add reloc counts against the indirect sym to the direct sym
4750              list.  Merge any entries against the same section.  */
4751           for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
4752             {
4753               struct elf_dyn_relocs *q;
4754
4755               for (q = edir->dyn_relocs; q != NULL; q = q->next)
4756                 if (q->sec == p->sec)
4757                   {
4758                     q->pc_count += p->pc_count;
4759                     q->count += p->count;
4760                     *pp = p->next;
4761                     break;
4762                   }
4763               if (q == NULL)
4764                 pp = &p->next;
4765             }
4766           *pp = edir->dyn_relocs;
4767         }
4768
4769       edir->dyn_relocs = eind->dyn_relocs;
4770       eind->dyn_relocs = NULL;
4771     }
4772
4773   /* If we were called to copy over info for a weak sym, that's all.
4774      You might think dyn_relocs need not be copied over;  After all,
4775      both syms will be dynamic or both non-dynamic so we're just
4776      moving reloc accounting around.  However, ELIMINATE_COPY_RELOCS
4777      code in ppc64_elf_adjust_dynamic_symbol needs to check for
4778      dyn_relocs in read-only sections, and it does so on what is the
4779      DIR sym here.  */
4780   if (eind->elf.root.type != bfd_link_hash_indirect)
4781     return;
4782
4783   /* Copy over got entries that we may have already seen to the
4784      symbol which just became indirect.  */
4785   if (eind->elf.got.glist != NULL)
4786     {
4787       if (edir->elf.got.glist != NULL)
4788         {
4789           struct got_entry **entp;
4790           struct got_entry *ent;
4791
4792           for (entp = &eind->elf.got.glist; (ent = *entp) != NULL; )
4793             {
4794               struct got_entry *dent;
4795
4796               for (dent = edir->elf.got.glist; dent != NULL; dent = dent->next)
4797                 if (dent->addend == ent->addend
4798                     && dent->owner == ent->owner
4799                     && dent->tls_type == ent->tls_type)
4800                   {
4801                     dent->got.refcount += ent->got.refcount;
4802                     *entp = ent->next;
4803                     break;
4804                   }
4805               if (dent == NULL)
4806                 entp = &ent->next;
4807             }
4808           *entp = edir->elf.got.glist;
4809         }
4810
4811       edir->elf.got.glist = eind->elf.got.glist;
4812       eind->elf.got.glist = NULL;
4813     }
4814
4815   /* And plt entries.  */
4816   move_plt_plist (eind, edir);
4817
4818   if (eind->elf.dynindx != -1)
4819     {
4820       if (edir->elf.dynindx != -1)
4821         _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
4822                                 edir->elf.dynstr_index);
4823       edir->elf.dynindx = eind->elf.dynindx;
4824       edir->elf.dynstr_index = eind->elf.dynstr_index;
4825       eind->elf.dynindx = -1;
4826       eind->elf.dynstr_index = 0;
4827     }
4828 }
4829
4830 /* Find the function descriptor hash entry from the given function code
4831    hash entry FH.  Link the entries via their OH fields.  */
4832
4833 static struct ppc_link_hash_entry *
4834 lookup_fdh (struct ppc_link_hash_entry *fh, struct ppc_link_hash_table *htab)
4835 {
4836   struct ppc_link_hash_entry *fdh = fh->oh;
4837
4838   if (fdh == NULL)
4839     {
4840       const char *fd_name = fh->elf.root.root.string + 1;
4841
4842       fdh = (struct ppc_link_hash_entry *)
4843         elf_link_hash_lookup (&htab->elf, fd_name, FALSE, FALSE, FALSE);
4844       if (fdh == NULL)
4845         return fdh;
4846
4847       fdh->is_func_descriptor = 1;
4848       fdh->oh = fh;
4849       fh->is_func = 1;
4850       fh->oh = fdh;
4851     }
4852
4853   return ppc_follow_link (fdh);
4854 }
4855
4856 /* Make a fake function descriptor sym for the code sym FH.  */
4857
4858 static struct ppc_link_hash_entry *
4859 make_fdh (struct bfd_link_info *info,
4860           struct ppc_link_hash_entry *fh)
4861 {
4862   bfd *abfd;
4863   asymbol *newsym;
4864   struct bfd_link_hash_entry *bh;
4865   struct ppc_link_hash_entry *fdh;
4866
4867   abfd = fh->elf.root.u.undef.abfd;
4868   newsym = bfd_make_empty_symbol (abfd);
4869   newsym->name = fh->elf.root.root.string + 1;
4870   newsym->section = bfd_und_section_ptr;
4871   newsym->value = 0;
4872   newsym->flags = BSF_WEAK;
4873
4874   bh = NULL;
4875   if (!_bfd_generic_link_add_one_symbol (info, abfd, newsym->name,
4876                                          newsym->flags, newsym->section,
4877                                          newsym->value, NULL, FALSE, FALSE,
4878                                          &bh))
4879     return NULL;
4880
4881   fdh = (struct ppc_link_hash_entry *) bh;
4882   fdh->elf.non_elf = 0;
4883   fdh->fake = 1;
4884   fdh->is_func_descriptor = 1;
4885   fdh->oh = fh;
4886   fh->is_func = 1;
4887   fh->oh = fdh;
4888   return fdh;
4889 }
4890
4891 /* Fix function descriptor symbols defined in .opd sections to be
4892    function type.  */
4893
4894 static bfd_boolean
4895 ppc64_elf_add_symbol_hook (bfd *ibfd,
4896                            struct bfd_link_info *info,
4897                            Elf_Internal_Sym *isym,
4898                            const char **name,
4899                            flagword *flags ATTRIBUTE_UNUSED,
4900                            asection **sec,
4901                            bfd_vma *value)
4902 {
4903   if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC
4904       && (ibfd->flags & DYNAMIC) == 0
4905       && bfd_get_flavour (info->output_bfd) == bfd_target_elf_flavour)
4906     elf_tdata (info->output_bfd)->has_gnu_symbols |= elf_gnu_symbol_ifunc;
4907
4908   if (*sec != NULL
4909       && strcmp ((*sec)->name, ".opd") == 0)
4910     {
4911       asection *code_sec;
4912
4913       if (!(ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC
4914             || ELF_ST_TYPE (isym->st_info) == STT_FUNC))
4915         isym->st_info = ELF_ST_INFO (ELF_ST_BIND (isym->st_info), STT_FUNC);
4916
4917       /* If the symbol is a function defined in .opd, and the function
4918          code is in a discarded group, let it appear to be undefined.  */
4919       if (!bfd_link_relocatable (info)
4920           && (*sec)->reloc_count != 0
4921           && opd_entry_value (*sec, *value, &code_sec, NULL,
4922                               FALSE) != (bfd_vma) -1
4923           && discarded_section (code_sec))
4924         {
4925           *sec = bfd_und_section_ptr;
4926           isym->st_shndx = SHN_UNDEF;
4927         }
4928     }
4929   else if (*sec != NULL
4930            && strcmp ((*sec)->name, ".toc") == 0
4931            && ELF_ST_TYPE (isym->st_info) == STT_OBJECT)
4932     {
4933       struct ppc_link_hash_table *htab = ppc_hash_table (info);
4934       if (htab != NULL)
4935         htab->params->object_in_toc = 1;
4936     }
4937
4938   if ((STO_PPC64_LOCAL_MASK & isym->st_other) != 0)
4939     {
4940       if (abiversion (ibfd) == 0)
4941         set_abiversion (ibfd, 2);
4942       else if (abiversion (ibfd) == 1)
4943         {
4944           info->callbacks->einfo (_("%P: symbol '%s' has invalid st_other"
4945                                     " for ABI version 1\n"), name);
4946           bfd_set_error (bfd_error_bad_value);
4947           return FALSE;
4948         }
4949     }
4950
4951   return TRUE;
4952 }
4953
4954 /* Merge non-visibility st_other attributes: local entry point.  */
4955
4956 static void
4957 ppc64_elf_merge_symbol_attribute (struct elf_link_hash_entry *h,
4958                                   const Elf_Internal_Sym *isym,
4959                                   bfd_boolean definition,
4960                                   bfd_boolean dynamic)
4961 {
4962   if (definition && !dynamic)
4963     h->other = ((isym->st_other & ~ELF_ST_VISIBILITY (-1))
4964                 | ELF_ST_VISIBILITY (h->other));
4965 }
4966
4967 /* This function makes an old ABI object reference to ".bar" cause the
4968    inclusion of a new ABI object archive that defines "bar".
4969    NAME is a symbol defined in an archive.  Return a symbol in the hash
4970    table that might be satisfied by the archive symbols.  */
4971
4972 static struct elf_link_hash_entry *
4973 ppc64_elf_archive_symbol_lookup (bfd *abfd,
4974                                  struct bfd_link_info *info,
4975                                  const char *name)
4976 {
4977   struct elf_link_hash_entry *h;
4978   char *dot_name;
4979   size_t len;
4980
4981   h = _bfd_elf_archive_symbol_lookup (abfd, info, name);
4982   if (h != NULL
4983       /* Don't return this sym if it is a fake function descriptor
4984          created by add_symbol_adjust.  */
4985       && !(h->root.type == bfd_link_hash_undefweak
4986            && ((struct ppc_link_hash_entry *) h)->fake))
4987     return h;
4988
4989   if (name[0] == '.')
4990     return h;
4991
4992   len = strlen (name);
4993   dot_name = bfd_alloc (abfd, len + 2);
4994   if (dot_name == NULL)
4995     return (struct elf_link_hash_entry *) 0 - 1;
4996   dot_name[0] = '.';
4997   memcpy (dot_name + 1, name, len + 1);
4998   h = _bfd_elf_archive_symbol_lookup (abfd, info, dot_name);
4999   bfd_release (abfd, dot_name);
5000   return h;
5001 }
5002
5003 /* This function satisfies all old ABI object references to ".bar" if a
5004    new ABI object defines "bar".  Well, at least, undefined dot symbols
5005    are made weak.  This stops later archive searches from including an
5006    object if we already have a function descriptor definition.  It also
5007    prevents the linker complaining about undefined symbols.
5008    We also check and correct mismatched symbol visibility here.  The
5009    most restrictive visibility of the function descriptor and the
5010    function entry symbol is used.  */
5011
5012 static bfd_boolean
5013 add_symbol_adjust (struct ppc_link_hash_entry *eh, struct bfd_link_info *info)
5014 {
5015   struct ppc_link_hash_table *htab;
5016   struct ppc_link_hash_entry *fdh;
5017
5018   if (eh->elf.root.type == bfd_link_hash_indirect)
5019     return TRUE;
5020
5021   if (eh->elf.root.type == bfd_link_hash_warning)
5022     eh = (struct ppc_link_hash_entry *) eh->elf.root.u.i.link;
5023
5024   if (eh->elf.root.root.string[0] != '.')
5025     abort ();
5026
5027   htab = ppc_hash_table (info);
5028   if (htab == NULL)
5029     return FALSE;
5030
5031   fdh = lookup_fdh (eh, htab);
5032   if (fdh == NULL)
5033     {
5034       if (!bfd_link_relocatable (info)
5035           && (eh->elf.root.type == bfd_link_hash_undefined
5036               || eh->elf.root.type == bfd_link_hash_undefweak)
5037           && eh->elf.ref_regular)
5038         {
5039           /* Make an undefweak function descriptor sym, which is enough to
5040              pull in an --as-needed shared lib, but won't cause link
5041              errors.  Archives are handled elsewhere.  */
5042           fdh = make_fdh (info, eh);
5043           if (fdh == NULL)
5044             return FALSE;
5045           fdh->elf.ref_regular = 1;
5046         }
5047     }
5048   else
5049     {
5050       unsigned entry_vis = ELF_ST_VISIBILITY (eh->elf.other) - 1;
5051       unsigned descr_vis = ELF_ST_VISIBILITY (fdh->elf.other) - 1;
5052       if (entry_vis < descr_vis)
5053         fdh->elf.other += entry_vis - descr_vis;
5054       else if (entry_vis > descr_vis)
5055         eh->elf.other += descr_vis - entry_vis;
5056
5057       if ((fdh->elf.root.type == bfd_link_hash_defined
5058            || fdh->elf.root.type == bfd_link_hash_defweak)
5059           && eh->elf.root.type == bfd_link_hash_undefined)
5060         {
5061           eh->elf.root.type = bfd_link_hash_undefweak;
5062           eh->was_undefined = 1;
5063           htab->twiddled_syms = 1;
5064         }
5065     }
5066
5067   return TRUE;
5068 }
5069
5070 /* Set up opd section info and abiversion for IBFD, and process list
5071    of dot-symbols we made in link_hash_newfunc.  */
5072
5073 static bfd_boolean
5074 ppc64_elf_before_check_relocs (bfd *ibfd, struct bfd_link_info *info)
5075 {
5076   struct ppc_link_hash_table *htab;
5077   struct ppc_link_hash_entry **p, *eh;
5078   asection *opd = bfd_get_section_by_name (ibfd, ".opd");
5079
5080   if (opd != NULL && opd->size != 0)
5081     {
5082       if (abiversion (ibfd) == 0)
5083         set_abiversion (ibfd, 1);
5084       else if (abiversion (ibfd) == 2)
5085         {
5086           info->callbacks->einfo (_("%P: %B .opd not allowed in ABI"
5087                                     " version %d\n"),
5088                                   ibfd, abiversion (ibfd));
5089           bfd_set_error (bfd_error_bad_value);
5090           return FALSE;
5091         }
5092
5093       if ((ibfd->flags & DYNAMIC) == 0
5094           && (opd->flags & SEC_RELOC) != 0
5095           && opd->reloc_count != 0
5096           && !bfd_is_abs_section (opd->output_section))
5097         {
5098           /* Garbage collection needs some extra help with .opd sections.
5099              We don't want to necessarily keep everything referenced by
5100              relocs in .opd, as that would keep all functions.  Instead,
5101              if we reference an .opd symbol (a function descriptor), we
5102              want to keep the function code symbol's section.  This is
5103              easy for global symbols, but for local syms we need to keep
5104              information about the associated function section.  */
5105           bfd_size_type amt;
5106           asection **opd_sym_map;
5107
5108           amt = OPD_NDX (opd->size) * sizeof (*opd_sym_map);
5109           opd_sym_map = bfd_zalloc (ibfd, amt);
5110           if (opd_sym_map == NULL)
5111             return FALSE;
5112           ppc64_elf_section_data (opd)->u.opd.func_sec = opd_sym_map;
5113           BFD_ASSERT (ppc64_elf_section_data (opd)->sec_type == sec_normal);
5114           ppc64_elf_section_data (opd)->sec_type = sec_opd;
5115         }
5116     }
5117
5118   if (!is_ppc64_elf (info->output_bfd))
5119     return TRUE;
5120   htab = ppc_hash_table (info);
5121   if (htab == NULL)
5122     return FALSE;
5123
5124   /* For input files without an explicit abiversion in e_flags
5125      we should have flagged any with symbol st_other bits set
5126      as ELFv1 and above flagged those with .opd as ELFv2.
5127      Set the output abiversion if not yet set, and for any input
5128      still ambiguous, take its abiversion from the output.
5129      Differences in ABI are reported later.  */
5130   if (abiversion (info->output_bfd) == 0)
5131     set_abiversion (info->output_bfd, abiversion (ibfd));
5132   else if (abiversion (ibfd) == 0)
5133     set_abiversion (ibfd, abiversion (info->output_bfd));
5134
5135   p = &htab->dot_syms;
5136   while ((eh = *p) != NULL)
5137     {
5138       *p = NULL;
5139       if (&eh->elf == htab->elf.hgot)
5140         ;
5141       else if (htab->elf.hgot == NULL
5142                && strcmp (eh->elf.root.root.string, ".TOC.") == 0)
5143         htab->elf.hgot = &eh->elf;
5144       else if (!add_symbol_adjust (eh, info))
5145         return FALSE;
5146       p = &eh->u.next_dot_sym;
5147     }
5148
5149   /* Clear the list for non-ppc64 input files.  */
5150   p = &htab->dot_syms;
5151   while ((eh = *p) != NULL)
5152     {
5153       *p = NULL;
5154       p = &eh->u.next_dot_sym;
5155     }
5156
5157   /* We need to fix the undefs list for any syms we have twiddled to
5158      undefweak.  */
5159   if (htab->twiddled_syms)
5160     {
5161       bfd_link_repair_undef_list (&htab->elf.root);
5162       htab->twiddled_syms = 0;
5163     }
5164   return TRUE;
5165 }
5166
5167 /* Undo hash table changes when an --as-needed input file is determined
5168    not to be needed.  */
5169
5170 static bfd_boolean
5171 ppc64_elf_notice_as_needed (bfd *ibfd,
5172                             struct bfd_link_info *info,
5173                             enum notice_asneeded_action act)
5174 {
5175   if (act == notice_not_needed)
5176     {
5177       struct ppc_link_hash_table *htab = ppc_hash_table (info);
5178
5179       if (htab == NULL)
5180         return FALSE;
5181
5182       htab->dot_syms = NULL;
5183     }
5184   return _bfd_elf_notice_as_needed (ibfd, info, act);
5185 }
5186
5187 /* If --just-symbols against a final linked binary, then assume we need
5188    toc adjusting stubs when calling functions defined there.  */
5189
5190 static void
5191 ppc64_elf_link_just_syms (asection *sec, struct bfd_link_info *info)
5192 {
5193   if ((sec->flags & SEC_CODE) != 0
5194       && (sec->owner->flags & (EXEC_P | DYNAMIC)) != 0
5195       && is_ppc64_elf (sec->owner))
5196     {
5197       if (abiversion (sec->owner) >= 2
5198           || bfd_get_section_by_name (sec->owner, ".opd") != NULL)
5199         sec->has_toc_reloc = 1;
5200     }
5201   _bfd_elf_link_just_syms (sec, info);
5202 }
5203
5204 static struct plt_entry **
5205 update_local_sym_info (bfd *abfd, Elf_Internal_Shdr *symtab_hdr,
5206                        unsigned long r_symndx, bfd_vma r_addend, int tls_type)
5207 {
5208   struct got_entry **local_got_ents = elf_local_got_ents (abfd);
5209   struct plt_entry **local_plt;
5210   unsigned char *local_got_tls_masks;
5211
5212   if (local_got_ents == NULL)
5213     {
5214       bfd_size_type size = symtab_hdr->sh_info;
5215
5216       size *= (sizeof (*local_got_ents)
5217                + sizeof (*local_plt)
5218                + sizeof (*local_got_tls_masks));
5219       local_got_ents = bfd_zalloc (abfd, size);
5220       if (local_got_ents == NULL)
5221         return NULL;
5222       elf_local_got_ents (abfd) = local_got_ents;
5223     }
5224
5225   if ((tls_type & (PLT_IFUNC | TLS_EXPLICIT)) == 0)
5226     {
5227       struct got_entry *ent;
5228
5229       for (ent = local_got_ents[r_symndx]; ent != NULL; ent = ent->next)
5230         if (ent->addend == r_addend
5231             && ent->owner == abfd
5232             && ent->tls_type == tls_type)
5233           break;
5234       if (ent == NULL)
5235         {
5236           bfd_size_type amt = sizeof (*ent);
5237           ent = bfd_alloc (abfd, amt);
5238           if (ent == NULL)
5239             return FALSE;
5240           ent->next = local_got_ents[r_symndx];
5241           ent->addend = r_addend;
5242           ent->owner = abfd;
5243           ent->tls_type = tls_type;
5244           ent->is_indirect = FALSE;
5245           ent->got.refcount = 0;
5246           local_got_ents[r_symndx] = ent;
5247         }
5248       ent->got.refcount += 1;
5249     }
5250
5251   local_plt = (struct plt_entry **) (local_got_ents + symtab_hdr->sh_info);
5252   local_got_tls_masks = (unsigned char *) (local_plt + symtab_hdr->sh_info);
5253   local_got_tls_masks[r_symndx] |= tls_type;
5254
5255   return local_plt + r_symndx;
5256 }
5257
5258 static bfd_boolean
5259 update_plt_info (bfd *abfd, struct plt_entry **plist, bfd_vma addend)
5260 {
5261   struct plt_entry *ent;
5262
5263   for (ent = *plist; ent != NULL; ent = ent->next)
5264     if (ent->addend == addend)
5265       break;
5266   if (ent == NULL)
5267     {
5268       bfd_size_type amt = sizeof (*ent);
5269       ent = bfd_alloc (abfd, amt);
5270       if (ent == NULL)
5271         return FALSE;
5272       ent->next = *plist;
5273       ent->addend = addend;
5274       ent->plt.refcount = 0;
5275       *plist = ent;
5276     }
5277   ent->plt.refcount += 1;
5278   return TRUE;
5279 }
5280
5281 static bfd_boolean
5282 is_branch_reloc (enum elf_ppc64_reloc_type r_type)
5283 {
5284   return (r_type == R_PPC64_REL24
5285           || r_type == R_PPC64_REL14
5286           || r_type == R_PPC64_REL14_BRTAKEN
5287           || r_type == R_PPC64_REL14_BRNTAKEN
5288           || r_type == R_PPC64_ADDR24
5289           || r_type == R_PPC64_ADDR14
5290           || r_type == R_PPC64_ADDR14_BRTAKEN
5291           || r_type == R_PPC64_ADDR14_BRNTAKEN);
5292 }
5293
5294 /* Look through the relocs for a section during the first phase, and
5295    calculate needed space in the global offset table, procedure
5296    linkage table, and dynamic reloc sections.  */
5297
5298 static bfd_boolean
5299 ppc64_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
5300                         asection *sec, const Elf_Internal_Rela *relocs)
5301 {
5302   struct ppc_link_hash_table *htab;
5303   Elf_Internal_Shdr *symtab_hdr;
5304   struct elf_link_hash_entry **sym_hashes;
5305   const Elf_Internal_Rela *rel;
5306   const Elf_Internal_Rela *rel_end;
5307   asection *sreloc;
5308   asection **opd_sym_map;
5309   struct elf_link_hash_entry *tga, *dottga;
5310
5311   if (bfd_link_relocatable (info))
5312     return TRUE;
5313
5314   /* Don't do anything special with non-loaded, non-alloced sections.
5315      In particular, any relocs in such sections should not affect GOT
5316      and PLT reference counting (ie. we don't allow them to create GOT
5317      or PLT entries), there's no possibility or desire to optimize TLS
5318      relocs, and there's not much point in propagating relocs to shared
5319      libs that the dynamic linker won't relocate.  */
5320   if ((sec->flags & SEC_ALLOC) == 0)
5321     return TRUE;
5322
5323   BFD_ASSERT (is_ppc64_elf (abfd));
5324
5325   htab = ppc_hash_table (info);
5326   if (htab == NULL)
5327     return FALSE;
5328
5329   tga = elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
5330                               FALSE, FALSE, TRUE);
5331   dottga = elf_link_hash_lookup (&htab->elf, ".__tls_get_addr",
5332                                  FALSE, FALSE, TRUE);
5333   symtab_hdr = &elf_symtab_hdr (abfd);
5334   sym_hashes = elf_sym_hashes (abfd);
5335   sreloc = NULL;
5336   opd_sym_map = NULL;
5337   if (ppc64_elf_section_data (sec) != NULL
5338       && ppc64_elf_section_data (sec)->sec_type == sec_opd)
5339     opd_sym_map = ppc64_elf_section_data (sec)->u.opd.func_sec;
5340
5341   rel_end = relocs + sec->reloc_count;
5342   for (rel = relocs; rel < rel_end; rel++)
5343     {
5344       unsigned long r_symndx;
5345       struct elf_link_hash_entry *h;
5346       enum elf_ppc64_reloc_type r_type;
5347       int tls_type;
5348       struct _ppc64_elf_section_data *ppc64_sec;
5349       struct plt_entry **ifunc, **plt_list;
5350
5351       r_symndx = ELF64_R_SYM (rel->r_info);
5352       if (r_symndx < symtab_hdr->sh_info)
5353         h = NULL;
5354       else
5355         {
5356           h = sym_hashes[r_symndx - symtab_hdr->sh_info];
5357           h = elf_follow_link (h);
5358
5359           /* PR15323, ref flags aren't set for references in the same
5360              object.  */
5361           h->root.non_ir_ref = 1;
5362
5363           if (h == htab->elf.hgot)
5364             sec->has_toc_reloc = 1;
5365         }
5366
5367       tls_type = 0;
5368       ifunc = NULL;
5369       if (h != NULL)
5370         {
5371           if (h->type == STT_GNU_IFUNC)
5372             {
5373               h->needs_plt = 1;
5374               ifunc = &h->plt.plist;
5375             }
5376         }
5377       else
5378         {
5379           Elf_Internal_Sym *isym = bfd_sym_from_r_symndx (&htab->sym_cache,
5380                                                           abfd, r_symndx);
5381           if (isym == NULL)
5382             return FALSE;
5383
5384           if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
5385             {
5386               ifunc = update_local_sym_info (abfd, symtab_hdr, r_symndx,
5387                                              rel->r_addend, PLT_IFUNC);
5388               if (ifunc == NULL)
5389                 return FALSE;
5390             }
5391         }
5392
5393       r_type = ELF64_R_TYPE (rel->r_info);
5394       switch (r_type)
5395         {
5396         case R_PPC64_TLSGD:
5397         case R_PPC64_TLSLD:
5398           /* These special tls relocs tie a call to __tls_get_addr with
5399              its parameter symbol.  */
5400           break;
5401
5402         case R_PPC64_GOT_TLSLD16:
5403         case R_PPC64_GOT_TLSLD16_LO:
5404         case R_PPC64_GOT_TLSLD16_HI:
5405         case R_PPC64_GOT_TLSLD16_HA:
5406           tls_type = TLS_TLS | TLS_LD;
5407           goto dogottls;
5408
5409         case R_PPC64_GOT_TLSGD16:
5410         case R_PPC64_GOT_TLSGD16_LO:
5411         case R_PPC64_GOT_TLSGD16_HI:
5412         case R_PPC64_GOT_TLSGD16_HA:
5413           tls_type = TLS_TLS | TLS_GD;
5414           goto dogottls;
5415
5416         case R_PPC64_GOT_TPREL16_DS:
5417         case R_PPC64_GOT_TPREL16_LO_DS:
5418         case R_PPC64_GOT_TPREL16_HI:
5419         case R_PPC64_GOT_TPREL16_HA:
5420           if (bfd_link_pic (info))
5421             info->flags |= DF_STATIC_TLS;
5422           tls_type = TLS_TLS | TLS_TPREL;
5423           goto dogottls;
5424
5425         case R_PPC64_GOT_DTPREL16_DS:
5426         case R_PPC64_GOT_DTPREL16_LO_DS:
5427         case R_PPC64_GOT_DTPREL16_HI:
5428         case R_PPC64_GOT_DTPREL16_HA:
5429           tls_type = TLS_TLS | TLS_DTPREL;
5430         dogottls:
5431           sec->has_tls_reloc = 1;
5432           /* Fall thru */
5433
5434         case R_PPC64_GOT16:
5435         case R_PPC64_GOT16_DS:
5436         case R_PPC64_GOT16_HA:
5437         case R_PPC64_GOT16_HI:
5438         case R_PPC64_GOT16_LO:
5439         case R_PPC64_GOT16_LO_DS:
5440           /* This symbol requires a global offset table entry.  */
5441           sec->has_toc_reloc = 1;
5442           if (r_type == R_PPC64_GOT_TLSLD16
5443               || r_type == R_PPC64_GOT_TLSGD16
5444               || r_type == R_PPC64_GOT_TPREL16_DS
5445               || r_type == R_PPC64_GOT_DTPREL16_DS
5446               || r_type == R_PPC64_GOT16
5447               || r_type == R_PPC64_GOT16_DS)
5448             {
5449               htab->do_multi_toc = 1;
5450               ppc64_elf_tdata (abfd)->has_small_toc_reloc = 1;
5451             }
5452
5453           if (ppc64_elf_tdata (abfd)->got == NULL
5454               && !create_got_section (abfd, info))
5455             return FALSE;
5456
5457           if (h != NULL)
5458             {
5459               struct ppc_link_hash_entry *eh;
5460               struct got_entry *ent;
5461
5462               eh = (struct ppc_link_hash_entry *) h;
5463               for (ent = eh->elf.got.glist; ent != NULL; ent = ent->next)
5464                 if (ent->addend == rel->r_addend
5465                     && ent->owner == abfd
5466                     && ent->tls_type == tls_type)
5467                   break;
5468               if (ent == NULL)
5469                 {
5470                   bfd_size_type amt = sizeof (*ent);
5471                   ent = bfd_alloc (abfd, amt);
5472                   if (ent == NULL)
5473                     return FALSE;
5474                   ent->next = eh->elf.got.glist;
5475                   ent->addend = rel->r_addend;
5476                   ent->owner = abfd;
5477                   ent->tls_type = tls_type;
5478                   ent->is_indirect = FALSE;
5479                   ent->got.refcount = 0;
5480                   eh->elf.got.glist = ent;
5481                 }
5482               ent->got.refcount += 1;
5483               eh->tls_mask |= tls_type;
5484             }
5485           else
5486             /* This is a global offset table entry for a local symbol.  */
5487             if (!update_local_sym_info (abfd, symtab_hdr, r_symndx,
5488                                         rel->r_addend, tls_type))
5489               return FALSE;
5490
5491           /* We may also need a plt entry if the symbol turns out to be
5492              an ifunc.  */
5493           if (h != NULL && !bfd_link_pic (info) && abiversion (abfd) != 1)
5494             {
5495               if (!update_plt_info (abfd, &h->plt.plist, rel->r_addend))
5496                 return FALSE;
5497             }
5498           break;
5499
5500         case R_PPC64_PLT16_HA:
5501         case R_PPC64_PLT16_HI:
5502         case R_PPC64_PLT16_LO:
5503         case R_PPC64_PLT32:
5504         case R_PPC64_PLT64:
5505           /* This symbol requires a procedure linkage table entry.  */
5506           plt_list = ifunc;
5507           if (h != NULL)
5508             {
5509               h->needs_plt = 1;
5510               if (h->root.root.string[0] == '.'
5511                   && h->root.root.string[1] != '\0')
5512                 ((struct ppc_link_hash_entry *) h)->is_func = 1;
5513               plt_list = &h->plt.plist;
5514             }
5515           if (plt_list == NULL)
5516             {
5517               /* It does not make sense to have a procedure linkage
5518                  table entry for a non-ifunc local symbol.  */
5519               info->callbacks->einfo
5520                 (_("%P: %H: %s reloc against local symbol\n"),
5521                  abfd, sec, rel->r_offset,
5522                  ppc64_elf_howto_table[r_type]->name);
5523               bfd_set_error (bfd_error_bad_value);
5524               return FALSE;
5525             }
5526           if (!update_plt_info (abfd, plt_list, rel->r_addend))
5527             return FALSE;
5528           break;
5529
5530           /* The following relocations don't need to propagate the
5531              relocation if linking a shared object since they are
5532              section relative.  */
5533         case R_PPC64_SECTOFF:
5534         case R_PPC64_SECTOFF_LO:
5535         case R_PPC64_SECTOFF_HI:
5536         case R_PPC64_SECTOFF_HA:
5537         case R_PPC64_SECTOFF_DS:
5538         case R_PPC64_SECTOFF_LO_DS:
5539         case R_PPC64_DTPREL16:
5540         case R_PPC64_DTPREL16_LO:
5541         case R_PPC64_DTPREL16_HI:
5542         case R_PPC64_DTPREL16_HA:
5543         case R_PPC64_DTPREL16_DS:
5544         case R_PPC64_DTPREL16_LO_DS:
5545         case R_PPC64_DTPREL16_HIGH:
5546         case R_PPC64_DTPREL16_HIGHA:
5547         case R_PPC64_DTPREL16_HIGHER:
5548         case R_PPC64_DTPREL16_HIGHERA:
5549         case R_PPC64_DTPREL16_HIGHEST:
5550         case R_PPC64_DTPREL16_HIGHESTA:
5551           break;
5552
5553           /* Nor do these.  */
5554         case R_PPC64_REL16:
5555         case R_PPC64_REL16_LO:
5556         case R_PPC64_REL16_HI:
5557         case R_PPC64_REL16_HA:
5558         case R_PPC64_REL16DX_HA:
5559           break;
5560
5561           /* Not supported as a dynamic relocation.  */
5562         case R_PPC64_ADDR64_LOCAL:
5563           if (bfd_link_pic (info))
5564             {
5565               if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
5566                 ppc_howto_init ();
5567               info->callbacks->einfo (_("%P: %H: %s reloc unsupported "
5568                                         "in shared libraries and PIEs.\n"),
5569                                       abfd, sec, rel->r_offset,
5570                                       ppc64_elf_howto_table[r_type]->name);
5571               bfd_set_error (bfd_error_bad_value);
5572               return FALSE;
5573             }
5574           break;
5575
5576         case R_PPC64_TOC16:
5577         case R_PPC64_TOC16_DS:
5578           htab->do_multi_toc = 1;
5579           ppc64_elf_tdata (abfd)->has_small_toc_reloc = 1;
5580         case R_PPC64_TOC16_LO:
5581         case R_PPC64_TOC16_HI:
5582         case R_PPC64_TOC16_HA:
5583         case R_PPC64_TOC16_LO_DS:
5584           sec->has_toc_reloc = 1;
5585           break;
5586
5587           /* Marker reloc.  */
5588         case R_PPC64_ENTRY:
5589           break;
5590
5591           /* This relocation describes the C++ object vtable hierarchy.
5592              Reconstruct it for later use during GC.  */
5593         case R_PPC64_GNU_VTINHERIT:
5594           if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
5595             return FALSE;
5596           break;
5597
5598           /* This relocation describes which C++ vtable entries are actually
5599              used.  Record for later use during GC.  */
5600         case R_PPC64_GNU_VTENTRY:
5601           BFD_ASSERT (h != NULL);
5602           if (h != NULL
5603               && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
5604             return FALSE;
5605           break;
5606
5607         case R_PPC64_REL14:
5608         case R_PPC64_REL14_BRTAKEN:
5609         case R_PPC64_REL14_BRNTAKEN:
5610           {
5611             asection *dest = NULL;
5612
5613             /* Heuristic: If jumping outside our section, chances are
5614                we are going to need a stub.  */
5615             if (h != NULL)
5616               {
5617                 /* If the sym is weak it may be overridden later, so
5618                    don't assume we know where a weak sym lives.  */
5619                 if (h->root.type == bfd_link_hash_defined)
5620                   dest = h->root.u.def.section;
5621               }
5622             else
5623               {
5624                 Elf_Internal_Sym *isym;
5625
5626                 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
5627                                               abfd, r_symndx);
5628                 if (isym == NULL)
5629                   return FALSE;
5630
5631                 dest = bfd_section_from_elf_index (abfd, isym->st_shndx);
5632               }
5633
5634             if (dest != sec)
5635               ppc64_elf_section_data (sec)->has_14bit_branch = 1;
5636           }
5637           /* Fall through.  */
5638
5639         case R_PPC64_REL24:
5640           plt_list = ifunc;
5641           if (h != NULL)
5642             {
5643               h->needs_plt = 1;
5644               if (h->root.root.string[0] == '.'
5645                   && h->root.root.string[1] != '\0')
5646                 ((struct ppc_link_hash_entry *) h)->is_func = 1;
5647
5648               if (h == tga || h == dottga)
5649                 {
5650                   sec->has_tls_reloc = 1;
5651                   if (rel != relocs
5652                       && (ELF64_R_TYPE (rel[-1].r_info) == R_PPC64_TLSGD
5653                           || ELF64_R_TYPE (rel[-1].r_info) == R_PPC64_TLSLD))
5654                     /* We have a new-style __tls_get_addr call with
5655                        a marker reloc.  */
5656                     ;
5657                   else
5658                     /* Mark this section as having an old-style call.  */
5659                     sec->has_tls_get_addr_call = 1;
5660                 }
5661               plt_list = &h->plt.plist;
5662             }
5663
5664           /* We may need a .plt entry if the function this reloc
5665              refers to is in a shared lib.  */
5666           if (plt_list
5667               && !update_plt_info (abfd, plt_list, rel->r_addend))
5668             return FALSE;
5669           break;
5670
5671         case R_PPC64_ADDR14:
5672         case R_PPC64_ADDR14_BRNTAKEN:
5673         case R_PPC64_ADDR14_BRTAKEN:
5674         case R_PPC64_ADDR24:
5675           goto dodyn;
5676
5677         case R_PPC64_TPREL64:
5678           tls_type = TLS_EXPLICIT | TLS_TLS | TLS_TPREL;
5679           if (bfd_link_pic (info))
5680             info->flags |= DF_STATIC_TLS;
5681           goto dotlstoc;
5682
5683         case R_PPC64_DTPMOD64:
5684           if (rel + 1 < rel_end
5685               && rel[1].r_info == ELF64_R_INFO (r_symndx, R_PPC64_DTPREL64)
5686               && rel[1].r_offset == rel->r_offset + 8)
5687             tls_type = TLS_EXPLICIT | TLS_TLS | TLS_GD;
5688           else
5689             tls_type = TLS_EXPLICIT | TLS_TLS | TLS_LD;
5690           goto dotlstoc;
5691
5692         case R_PPC64_DTPREL64:
5693           tls_type = TLS_EXPLICIT | TLS_TLS | TLS_DTPREL;
5694           if (rel != relocs
5695               && rel[-1].r_info == ELF64_R_INFO (r_symndx, R_PPC64_DTPMOD64)
5696               && rel[-1].r_offset == rel->r_offset - 8)
5697             /* This is the second reloc of a dtpmod, dtprel pair.
5698                Don't mark with TLS_DTPREL.  */
5699             goto dodyn;
5700
5701         dotlstoc:
5702           sec->has_tls_reloc = 1;
5703           if (h != NULL)
5704             {
5705               struct ppc_link_hash_entry *eh;
5706               eh = (struct ppc_link_hash_entry *) h;
5707               eh->tls_mask |= tls_type;
5708             }
5709           else
5710             if (!update_local_sym_info (abfd, symtab_hdr, r_symndx,
5711                                         rel->r_addend, tls_type))
5712               return FALSE;
5713
5714           ppc64_sec = ppc64_elf_section_data (sec);
5715           if (ppc64_sec->sec_type != sec_toc)
5716             {
5717               bfd_size_type amt;
5718
5719               /* One extra to simplify get_tls_mask.  */
5720               amt = sec->size * sizeof (unsigned) / 8 + sizeof (unsigned);
5721               ppc64_sec->u.toc.symndx = bfd_zalloc (abfd, amt);
5722               if (ppc64_sec->u.toc.symndx == NULL)
5723                 return FALSE;
5724               amt = sec->size * sizeof (bfd_vma) / 8;
5725               ppc64_sec->u.toc.add = bfd_zalloc (abfd, amt);
5726               if (ppc64_sec->u.toc.add == NULL)
5727                 return FALSE;
5728               BFD_ASSERT (ppc64_sec->sec_type == sec_normal);
5729               ppc64_sec->sec_type = sec_toc;
5730             }
5731           BFD_ASSERT (rel->r_offset % 8 == 0);
5732           ppc64_sec->u.toc.symndx[rel->r_offset / 8] = r_symndx;
5733           ppc64_sec->u.toc.add[rel->r_offset / 8] = rel->r_addend;
5734
5735           /* Mark the second slot of a GD or LD entry.
5736              -1 to indicate GD and -2 to indicate LD.  */
5737           if (tls_type == (TLS_EXPLICIT | TLS_TLS | TLS_GD))
5738             ppc64_sec->u.toc.symndx[rel->r_offset / 8 + 1] = -1;
5739           else if (tls_type == (TLS_EXPLICIT | TLS_TLS | TLS_LD))
5740             ppc64_sec->u.toc.symndx[rel->r_offset / 8 + 1] = -2;
5741           goto dodyn;
5742
5743         case R_PPC64_TPREL16:
5744         case R_PPC64_TPREL16_LO:
5745         case R_PPC64_TPREL16_HI:
5746         case R_PPC64_TPREL16_HA:
5747         case R_PPC64_TPREL16_DS:
5748         case R_PPC64_TPREL16_LO_DS:
5749         case R_PPC64_TPREL16_HIGH:
5750         case R_PPC64_TPREL16_HIGHA:
5751         case R_PPC64_TPREL16_HIGHER:
5752         case R_PPC64_TPREL16_HIGHERA:
5753         case R_PPC64_TPREL16_HIGHEST:
5754         case R_PPC64_TPREL16_HIGHESTA:
5755           if (bfd_link_pic (info))
5756             {
5757               info->flags |= DF_STATIC_TLS;
5758               goto dodyn;
5759             }
5760           break;
5761
5762         case R_PPC64_ADDR64:
5763           if (opd_sym_map != NULL
5764               && rel + 1 < rel_end
5765               && ELF64_R_TYPE ((rel + 1)->r_info) == R_PPC64_TOC)
5766             {
5767               if (h != NULL)
5768                 {
5769                   if (h->root.root.string[0] == '.'
5770                       && h->root.root.string[1] != 0
5771                       && lookup_fdh ((struct ppc_link_hash_entry *) h, htab))
5772                     ;
5773                   else
5774                     ((struct ppc_link_hash_entry *) h)->is_func = 1;
5775                 }
5776               else
5777                 {
5778                   asection *s;
5779                   Elf_Internal_Sym *isym;
5780
5781                   isym = bfd_sym_from_r_symndx (&htab->sym_cache,
5782                                                 abfd, r_symndx);
5783                   if (isym == NULL)
5784                     return FALSE;
5785
5786                   s = bfd_section_from_elf_index (abfd, isym->st_shndx);
5787                   if (s != NULL && s != sec)
5788                     opd_sym_map[OPD_NDX (rel->r_offset)] = s;
5789                 }
5790             }
5791           /* Fall through.  */
5792
5793         case R_PPC64_ADDR16:
5794         case R_PPC64_ADDR16_DS:
5795         case R_PPC64_ADDR16_HA:
5796         case R_PPC64_ADDR16_HI:
5797         case R_PPC64_ADDR16_HIGH:
5798         case R_PPC64_ADDR16_HIGHA:
5799         case R_PPC64_ADDR16_HIGHER:
5800         case R_PPC64_ADDR16_HIGHERA:
5801         case R_PPC64_ADDR16_HIGHEST:
5802         case R_PPC64_ADDR16_HIGHESTA:
5803         case R_PPC64_ADDR16_LO:
5804         case R_PPC64_ADDR16_LO_DS:
5805           if (h != NULL && !bfd_link_pic (info) && abiversion (abfd) != 1
5806               && rel->r_addend == 0)
5807             {
5808               /* We may need a .plt entry if this reloc refers to a
5809                  function in a shared lib.  */
5810               if (!update_plt_info (abfd, &h->plt.plist, rel->r_addend))
5811                 return FALSE;
5812               h->pointer_equality_needed = 1;
5813             }
5814           /* Fall through.  */
5815
5816         case R_PPC64_REL30:
5817         case R_PPC64_REL32:
5818         case R_PPC64_REL64:
5819         case R_PPC64_ADDR32:
5820         case R_PPC64_UADDR16:
5821         case R_PPC64_UADDR32:
5822         case R_PPC64_UADDR64:
5823         case R_PPC64_TOC:
5824           if (h != NULL && !bfd_link_pic (info))
5825             /* We may need a copy reloc.  */
5826             h->non_got_ref = 1;
5827
5828           /* Don't propagate .opd relocs.  */
5829           if (NO_OPD_RELOCS && opd_sym_map != NULL)
5830             break;
5831
5832           /* If we are creating a shared library, and this is a reloc
5833              against a global symbol, or a non PC relative reloc
5834              against a local symbol, then we need to copy the reloc
5835              into the shared library.  However, if we are linking with
5836              -Bsymbolic, we do not need to copy a reloc against a
5837              global symbol which is defined in an object we are
5838              including in the link (i.e., DEF_REGULAR is set).  At
5839              this point we have not seen all the input files, so it is
5840              possible that DEF_REGULAR is not set now but will be set
5841              later (it is never cleared).  In case of a weak definition,
5842              DEF_REGULAR may be cleared later by a strong definition in
5843              a shared library.  We account for that possibility below by
5844              storing information in the dyn_relocs field of the hash
5845              table entry.  A similar situation occurs when creating
5846              shared libraries and symbol visibility changes render the
5847              symbol local.
5848
5849              If on the other hand, we are creating an executable, we
5850              may need to keep relocations for symbols satisfied by a
5851              dynamic library if we manage to avoid copy relocs for the
5852              symbol.  */
5853         dodyn:
5854           if ((bfd_link_pic (info)
5855                && (must_be_dyn_reloc (info, r_type)
5856                    || (h != NULL
5857                        && (!SYMBOLIC_BIND (info, h)
5858                            || h->root.type == bfd_link_hash_defweak
5859                            || !h->def_regular))))
5860               || (ELIMINATE_COPY_RELOCS
5861                   && !bfd_link_pic (info)
5862                   && h != NULL
5863                   && (h->root.type == bfd_link_hash_defweak
5864                       || !h->def_regular))
5865               || (!bfd_link_pic (info)
5866                   && ifunc != NULL))
5867             {
5868               /* We must copy these reloc types into the output file.
5869                  Create a reloc section in dynobj and make room for
5870                  this reloc.  */
5871               if (sreloc == NULL)
5872                 {
5873                   sreloc = _bfd_elf_make_dynamic_reloc_section
5874                     (sec, htab->elf.dynobj, 3, abfd, /*rela?*/ TRUE);
5875
5876                   if (sreloc == NULL)
5877                     return FALSE;
5878                 }
5879
5880               /* If this is a global symbol, we count the number of
5881                  relocations we need for this symbol.  */
5882               if (h != NULL)
5883                 {
5884                   struct elf_dyn_relocs *p;
5885                   struct elf_dyn_relocs **head;
5886
5887                   head = &((struct ppc_link_hash_entry *) h)->dyn_relocs;
5888                   p = *head;
5889                   if (p == NULL || p->sec != sec)
5890                     {
5891                       p = bfd_alloc (htab->elf.dynobj, sizeof *p);
5892                       if (p == NULL)
5893                         return FALSE;
5894                       p->next = *head;
5895                       *head = p;
5896                       p->sec = sec;
5897                       p->count = 0;
5898                       p->pc_count = 0;
5899                     }
5900                   p->count += 1;
5901                   if (!must_be_dyn_reloc (info, r_type))
5902                     p->pc_count += 1;
5903                 }
5904               else
5905                 {
5906                   /* Track dynamic relocs needed for local syms too.
5907                      We really need local syms available to do this
5908                      easily.  Oh well.  */
5909                   struct ppc_dyn_relocs *p;
5910                   struct ppc_dyn_relocs **head;
5911                   bfd_boolean is_ifunc;
5912                   asection *s;
5913                   void *vpp;
5914                   Elf_Internal_Sym *isym;
5915
5916                   isym = bfd_sym_from_r_symndx (&htab->sym_cache,
5917                                                 abfd, r_symndx);
5918                   if (isym == NULL)
5919                     return FALSE;
5920
5921                   s = bfd_section_from_elf_index (abfd, isym->st_shndx);
5922                   if (s == NULL)
5923                     s = sec;
5924
5925                   vpp = &elf_section_data (s)->local_dynrel;
5926                   head = (struct ppc_dyn_relocs **) vpp;
5927                   is_ifunc = ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC;
5928                   p = *head;
5929                   if (p != NULL && p->sec == sec && p->ifunc != is_ifunc)
5930                     p = p->next;
5931                   if (p == NULL || p->sec != sec || p->ifunc != is_ifunc)
5932                     {
5933                       p = bfd_alloc (htab->elf.dynobj, sizeof *p);
5934                       if (p == NULL)
5935                         return FALSE;
5936                       p->next = *head;
5937                       *head = p;
5938                       p->sec = sec;
5939                       p->ifunc = is_ifunc;
5940                       p->count = 0;
5941                     }
5942                   p->count += 1;
5943                 }
5944             }
5945           break;
5946
5947         default:
5948           break;
5949         }
5950     }
5951
5952   return TRUE;
5953 }
5954
5955 /* Merge backend specific data from an object file to the output
5956    object file when linking.  */
5957
5958 static bfd_boolean
5959 ppc64_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
5960 {
5961   unsigned long iflags, oflags;
5962
5963   if ((ibfd->flags & BFD_LINKER_CREATED) != 0)
5964     return TRUE;
5965
5966   if (!is_ppc64_elf (ibfd) || !is_ppc64_elf (obfd))
5967     return TRUE;
5968
5969   if (!_bfd_generic_verify_endian_match (ibfd, obfd))
5970     return FALSE;
5971
5972   iflags = elf_elfheader (ibfd)->e_flags;
5973   oflags = elf_elfheader (obfd)->e_flags;
5974
5975   if (iflags & ~EF_PPC64_ABI)
5976     {
5977       (*_bfd_error_handler)
5978         (_("%B uses unknown e_flags 0x%lx"), ibfd, iflags);
5979       bfd_set_error (bfd_error_bad_value);
5980       return FALSE;
5981     }
5982   else if (iflags != oflags && iflags != 0)
5983     {
5984       (*_bfd_error_handler)
5985         (_("%B: ABI version %ld is not compatible with ABI version %ld output"),
5986          ibfd, iflags, oflags);
5987       bfd_set_error (bfd_error_bad_value);
5988       return FALSE;
5989     }
5990
5991   /* Merge Tag_compatibility attributes and any common GNU ones.  */
5992   _bfd_elf_merge_object_attributes (ibfd, obfd);
5993
5994   return TRUE;
5995 }
5996
5997 static bfd_boolean
5998 ppc64_elf_print_private_bfd_data (bfd *abfd, void *ptr)
5999 {
6000   /* Print normal ELF private data.  */
6001   _bfd_elf_print_private_bfd_data (abfd, ptr);
6002
6003   if (elf_elfheader (abfd)->e_flags != 0)
6004     {
6005       FILE *file = ptr;
6006
6007       /* xgettext:c-format */
6008       fprintf (file, _("private flags = 0x%lx:"),
6009                elf_elfheader (abfd)->e_flags);
6010
6011       if ((elf_elfheader (abfd)->e_flags & EF_PPC64_ABI) != 0)
6012         fprintf (file, _(" [abiv%ld]"),
6013                  elf_elfheader (abfd)->e_flags & EF_PPC64_ABI);
6014       fputc ('\n', file);
6015     }
6016
6017   return TRUE;
6018 }
6019
6020 /* OFFSET in OPD_SEC specifies a function descriptor.  Return the address
6021    of the code entry point, and its section, which must be in the same
6022    object as OPD_SEC.  Returns (bfd_vma) -1 on error.  */
6023
6024 static bfd_vma
6025 opd_entry_value (asection *opd_sec,
6026                  bfd_vma offset,
6027                  asection **code_sec,
6028                  bfd_vma *code_off,
6029                  bfd_boolean in_code_sec)
6030 {
6031   bfd *opd_bfd = opd_sec->owner;
6032   Elf_Internal_Rela *relocs;
6033   Elf_Internal_Rela *lo, *hi, *look;
6034   bfd_vma val;
6035
6036   /* No relocs implies we are linking a --just-symbols object, or looking
6037      at a final linked executable with addr2line or somesuch.  */
6038   if (opd_sec->reloc_count == 0)
6039     {
6040       bfd_byte *contents = ppc64_elf_tdata (opd_bfd)->opd.contents;
6041
6042       if (contents == NULL)
6043         {
6044           if (!bfd_malloc_and_get_section (opd_bfd, opd_sec, &contents))
6045             return (bfd_vma) -1;
6046           ppc64_elf_tdata (opd_bfd)->opd.contents = contents;
6047         }
6048
6049       /* PR 17512: file: 64b9dfbb.  */
6050       if (offset + 7 >= opd_sec->size || offset + 7 < offset)
6051         return (bfd_vma) -1;
6052
6053       val = bfd_get_64 (opd_bfd, contents + offset);
6054       if (code_sec != NULL)
6055         {
6056           asection *sec, *likely = NULL;
6057
6058           if (in_code_sec)
6059             {
6060               sec = *code_sec;
6061               if (sec->vma <= val
6062                   && val < sec->vma + sec->size)
6063                 likely = sec;
6064               else
6065                 val = -1;
6066             }
6067           else
6068             for (sec = opd_bfd->sections; sec != NULL; sec = sec->next)
6069               if (sec->vma <= val
6070                   && (sec->flags & SEC_LOAD) != 0
6071                   && (sec->flags & SEC_ALLOC) != 0)
6072                 likely = sec;
6073           if (likely != NULL)
6074             {
6075               *code_sec = likely;
6076               if (code_off != NULL)
6077                 *code_off = val - likely->vma;
6078             }
6079         }
6080       return val;
6081     }
6082
6083   BFD_ASSERT (is_ppc64_elf (opd_bfd));
6084
6085   relocs = ppc64_elf_tdata (opd_bfd)->opd.relocs;
6086   if (relocs == NULL)
6087     relocs = _bfd_elf_link_read_relocs (opd_bfd, opd_sec, NULL, NULL, TRUE);
6088   /* PR 17512: file: df8e1fd6.  */
6089   if (relocs == NULL)
6090     return (bfd_vma) -1;
6091
6092   /* Go find the opd reloc at the sym address.  */
6093   lo = relocs;
6094   hi = lo + opd_sec->reloc_count - 1; /* ignore last reloc */
6095   val = (bfd_vma) -1;
6096   while (lo < hi)
6097     {
6098       look = lo + (hi - lo) / 2;
6099       if (look->r_offset < offset)
6100         lo = look + 1;
6101       else if (look->r_offset > offset)
6102         hi = look;
6103       else
6104         {
6105           Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (opd_bfd);
6106
6107           if (ELF64_R_TYPE (look->r_info) == R_PPC64_ADDR64
6108               && ELF64_R_TYPE ((look + 1)->r_info) == R_PPC64_TOC)
6109             {
6110               unsigned long symndx = ELF64_R_SYM (look->r_info);
6111               asection *sec = NULL;
6112
6113               if (symndx >= symtab_hdr->sh_info
6114                   && elf_sym_hashes (opd_bfd) != NULL)
6115                 {
6116                   struct elf_link_hash_entry **sym_hashes;
6117                   struct elf_link_hash_entry *rh;
6118
6119                   sym_hashes = elf_sym_hashes (opd_bfd);
6120                   rh = sym_hashes[symndx - symtab_hdr->sh_info];
6121                   if (rh != NULL)
6122                     {
6123                       rh = elf_follow_link (rh);
6124                       if (rh->root.type != bfd_link_hash_defined
6125                           && rh->root.type != bfd_link_hash_defweak)
6126                         break;
6127                       if (rh->root.u.def.section->owner == opd_bfd)
6128                         {
6129                           val = rh->root.u.def.value;
6130                           sec = rh->root.u.def.section;
6131                         }
6132                     }
6133                 }
6134
6135               if (sec == NULL)
6136                 {
6137                   Elf_Internal_Sym *sym;
6138
6139                   if (symndx < symtab_hdr->sh_info)
6140                     {
6141                       sym = (Elf_Internal_Sym *) symtab_hdr->contents;
6142                       if (sym == NULL)
6143                         {
6144                           size_t symcnt = symtab_hdr->sh_info;
6145                           sym = bfd_elf_get_elf_syms (opd_bfd, symtab_hdr,
6146                                                       symcnt, 0,
6147                                                       NULL, NULL, NULL);
6148                           if (sym == NULL)
6149                             break;
6150                           symtab_hdr->contents = (bfd_byte *) sym;
6151                         }
6152                       sym += symndx;
6153                     }
6154                   else
6155                     {
6156                       sym = bfd_elf_get_elf_syms (opd_bfd, symtab_hdr,
6157                                                   1, symndx,
6158                                                   NULL, NULL, NULL);
6159                       if (sym == NULL)
6160                         break;
6161                     }
6162                   sec = bfd_section_from_elf_index (opd_bfd, sym->st_shndx);
6163                   if (sec == NULL)
6164                     break;
6165                   BFD_ASSERT ((sec->flags & SEC_MERGE) == 0);
6166                   val = sym->st_value;
6167                 }
6168
6169               val += look->r_addend;
6170               if (code_off != NULL)
6171                 *code_off = val;
6172               if (code_sec != NULL)
6173                 {
6174                   if (in_code_sec && *code_sec != sec)
6175                     return -1;
6176                   else
6177                     *code_sec = sec;
6178                 }
6179               if (sec->output_section != NULL)
6180                 val += sec->output_section->vma + sec->output_offset;
6181             }
6182           break;
6183         }
6184     }
6185
6186   return val;
6187 }
6188
6189 /* If the ELF symbol SYM might be a function in SEC, return the
6190    function size and set *CODE_OFF to the function's entry point,
6191    otherwise return zero.  */
6192
6193 static bfd_size_type
6194 ppc64_elf_maybe_function_sym (const asymbol *sym, asection *sec,
6195                               bfd_vma *code_off)
6196 {
6197   bfd_size_type size;
6198
6199   if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
6200                      | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0)
6201     return 0;
6202
6203   size = 0;
6204   if (!(sym->flags & BSF_SYNTHETIC))
6205     size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
6206
6207   if (strcmp (sym->section->name, ".opd") == 0)
6208     {
6209       struct _opd_sec_data *opd = get_opd_info (sym->section);
6210       bfd_vma symval = sym->value;
6211
6212       if (opd != NULL
6213           && opd->adjust != NULL
6214           && elf_section_data (sym->section)->relocs != NULL)
6215         {
6216           /* opd_entry_value will use cached relocs that have been
6217              adjusted, but with raw symbols.  That means both local
6218              and global symbols need adjusting.  */
6219           long adjust = opd->adjust[OPD_NDX (symval)];
6220           if (adjust == -1)
6221             return 0;
6222           symval += adjust;
6223         }
6224
6225       if (opd_entry_value (sym->section, symval,
6226                            &sec, code_off, TRUE) == (bfd_vma) -1)
6227         return 0;
6228       /* An old ABI binary with dot-syms has a size of 24 on the .opd
6229          symbol.  This size has nothing to do with the code size of the
6230          function, which is what we're supposed to return, but the
6231          code size isn't available without looking up the dot-sym.
6232          However, doing that would be a waste of time particularly
6233          since elf_find_function will look at the dot-sym anyway.
6234          Now, elf_find_function will keep the largest size of any
6235          function sym found at the code address of interest, so return
6236          1 here to avoid it incorrectly caching a larger function size
6237          for a small function.  This does mean we return the wrong
6238          size for a new-ABI function of size 24, but all that does is
6239          disable caching for such functions.  */
6240       if (size == 24)
6241         size = 1;
6242     }
6243   else
6244     {
6245       if (sym->section != sec)
6246         return 0;
6247       *code_off = sym->value;
6248     }
6249   if (size == 0)
6250     size = 1;
6251   return size;
6252 }
6253
6254 /* Return true if symbol is defined in a regular object file.  */
6255
6256 static bfd_boolean
6257 is_static_defined (struct elf_link_hash_entry *h)
6258 {
6259   return ((h->root.type == bfd_link_hash_defined
6260            || h->root.type == bfd_link_hash_defweak)
6261           && h->root.u.def.section != NULL
6262           && h->root.u.def.section->output_section != NULL);
6263 }
6264
6265 /* If FDH is a function descriptor symbol, return the associated code
6266    entry symbol if it is defined.  Return NULL otherwise.  */
6267
6268 static struct ppc_link_hash_entry *
6269 defined_code_entry (struct ppc_link_hash_entry *fdh)
6270 {
6271   if (fdh->is_func_descriptor)
6272     {
6273       struct ppc_link_hash_entry *fh = ppc_follow_link (fdh->oh);
6274       if (fh->elf.root.type == bfd_link_hash_defined
6275           || fh->elf.root.type == bfd_link_hash_defweak)
6276         return fh;
6277     }
6278   return NULL;
6279 }
6280
6281 /* If FH is a function code entry symbol, return the associated
6282    function descriptor symbol if it is defined.  Return NULL otherwise.  */
6283
6284 static struct ppc_link_hash_entry *
6285 defined_func_desc (struct ppc_link_hash_entry *fh)
6286 {
6287   if (fh->oh != NULL
6288       && fh->oh->is_func_descriptor)
6289     {
6290       struct ppc_link_hash_entry *fdh = ppc_follow_link (fh->oh);
6291       if (fdh->elf.root.type == bfd_link_hash_defined
6292           || fdh->elf.root.type == bfd_link_hash_defweak)
6293         return fdh;
6294     }
6295   return NULL;
6296 }
6297
6298 /* Mark all our entry sym sections, both opd and code section.  */
6299
6300 static void
6301 ppc64_elf_gc_keep (struct bfd_link_info *info)
6302 {
6303   struct ppc_link_hash_table *htab = ppc_hash_table (info);
6304   struct bfd_sym_chain *sym;
6305
6306   if (htab == NULL)
6307     return;
6308
6309   for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
6310     {
6311       struct ppc_link_hash_entry *eh, *fh;
6312       asection *sec;
6313
6314       eh = (struct ppc_link_hash_entry *)
6315         elf_link_hash_lookup (&htab->elf, sym->name, FALSE, FALSE, TRUE);
6316       if (eh == NULL)
6317         continue;
6318       if (eh->elf.root.type != bfd_link_hash_defined
6319           && eh->elf.root.type != bfd_link_hash_defweak)
6320         continue;
6321
6322       fh = defined_code_entry (eh);
6323       if (fh != NULL)
6324         {
6325           sec = fh->elf.root.u.def.section;
6326           sec->flags |= SEC_KEEP;
6327         }
6328       else if (get_opd_info (eh->elf.root.u.def.section) != NULL
6329                && opd_entry_value (eh->elf.root.u.def.section,
6330                                    eh->elf.root.u.def.value,
6331                                    &sec, NULL, FALSE) != (bfd_vma) -1)
6332         sec->flags |= SEC_KEEP;
6333
6334       sec = eh->elf.root.u.def.section;
6335       sec->flags |= SEC_KEEP;
6336     }
6337 }
6338
6339 /* Mark sections containing dynamically referenced symbols.  When
6340    building shared libraries, we must assume that any visible symbol is
6341    referenced.  */
6342
6343 static bfd_boolean
6344 ppc64_elf_gc_mark_dynamic_ref (struct elf_link_hash_entry *h, void *inf)
6345 {
6346   struct bfd_link_info *info = (struct bfd_link_info *) inf;
6347   struct ppc_link_hash_entry *eh = (struct ppc_link_hash_entry *) h;
6348   struct ppc_link_hash_entry *fdh;
6349   struct bfd_elf_dynamic_list *d = info->dynamic_list;
6350
6351   /* Dynamic linking info is on the func descriptor sym.  */
6352   fdh = defined_func_desc (eh);
6353   if (fdh != NULL)
6354     eh = fdh;
6355
6356   if ((eh->elf.root.type == bfd_link_hash_defined
6357        || eh->elf.root.type == bfd_link_hash_defweak)
6358       && (eh->elf.ref_dynamic
6359           || ((eh->elf.def_regular || ELF_COMMON_DEF_P (&eh->elf))
6360               && ELF_ST_VISIBILITY (eh->elf.other) != STV_INTERNAL
6361               && ELF_ST_VISIBILITY (eh->elf.other) != STV_HIDDEN
6362               && (!bfd_link_executable (info)
6363                   || info->export_dynamic
6364                   || (eh->elf.dynamic
6365                       && d != NULL
6366                       && (*d->match) (&d->head, NULL, eh->elf.root.root.string)))
6367               && (strchr (eh->elf.root.root.string, ELF_VER_CHR) != NULL
6368                   || !bfd_hide_sym_by_version (info->version_info,
6369                                                eh->elf.root.root.string)))))
6370     {
6371       asection *code_sec;
6372       struct ppc_link_hash_entry *fh;
6373
6374       eh->elf.root.u.def.section->flags |= SEC_KEEP;
6375
6376       /* Function descriptor syms cause the associated
6377          function code sym section to be marked.  */
6378       fh = defined_code_entry (eh);
6379       if (fh != NULL)
6380         {
6381           code_sec = fh->elf.root.u.def.section;
6382           code_sec->flags |= SEC_KEEP;
6383         }
6384       else if (get_opd_info (eh->elf.root.u.def.section) != NULL
6385                && opd_entry_value (eh->elf.root.u.def.section,
6386                                    eh->elf.root.u.def.value,
6387                                    &code_sec, NULL, FALSE) != (bfd_vma) -1)
6388         code_sec->flags |= SEC_KEEP;
6389     }
6390
6391   return TRUE;
6392 }
6393
6394 /* Return the section that should be marked against GC for a given
6395    relocation.  */
6396
6397 static asection *
6398 ppc64_elf_gc_mark_hook (asection *sec,
6399                         struct bfd_link_info *info,
6400                         Elf_Internal_Rela *rel,
6401                         struct elf_link_hash_entry *h,
6402                         Elf_Internal_Sym *sym)
6403 {
6404   asection *rsec;
6405
6406   /* Syms return NULL if we're marking .opd, so we avoid marking all
6407      function sections, as all functions are referenced in .opd.  */
6408   rsec = NULL;
6409   if (get_opd_info (sec) != NULL)
6410     return rsec;
6411
6412   if (h != NULL)
6413     {
6414       enum elf_ppc64_reloc_type r_type;
6415       struct ppc_link_hash_entry *eh, *fh, *fdh;
6416
6417       r_type = ELF64_R_TYPE (rel->r_info);
6418       switch (r_type)
6419         {
6420         case R_PPC64_GNU_VTINHERIT:
6421         case R_PPC64_GNU_VTENTRY:
6422           break;
6423
6424         default:
6425           switch (h->root.type)
6426             {
6427             case bfd_link_hash_defined:
6428             case bfd_link_hash_defweak:
6429               eh = (struct ppc_link_hash_entry *) h;
6430               fdh = defined_func_desc (eh);
6431               if (fdh != NULL)
6432                 eh = fdh;
6433
6434               /* Function descriptor syms cause the associated
6435                  function code sym section to be marked.  */
6436               fh = defined_code_entry (eh);
6437               if (fh != NULL)
6438                 {
6439                   /* They also mark their opd section.  */
6440                   eh->elf.root.u.def.section->gc_mark = 1;
6441
6442                   rsec = fh->elf.root.u.def.section;
6443                 }
6444               else if (get_opd_info (eh->elf.root.u.def.section) != NULL
6445                        && opd_entry_value (eh->elf.root.u.def.section,
6446                                            eh->elf.root.u.def.value,
6447                                            &rsec, NULL, FALSE) != (bfd_vma) -1)
6448                 eh->elf.root.u.def.section->gc_mark = 1;
6449               else
6450                 rsec = h->root.u.def.section;
6451               break;
6452
6453             case bfd_link_hash_common:
6454               rsec = h->root.u.c.p->section;
6455               break;
6456
6457             default:
6458               return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
6459             }
6460         }
6461     }
6462   else
6463     {
6464       struct _opd_sec_data *opd;
6465
6466       rsec = bfd_section_from_elf_index (sec->owner, sym->st_shndx);
6467       opd = get_opd_info (rsec);
6468       if (opd != NULL && opd->func_sec != NULL)
6469         {
6470           rsec->gc_mark = 1;
6471
6472           rsec = opd->func_sec[OPD_NDX (sym->st_value + rel->r_addend)];
6473         }
6474     }
6475
6476   return rsec;
6477 }
6478
6479 /* Update the .got, .plt. and dynamic reloc reference counts for the
6480    section being removed.  */
6481
6482 static bfd_boolean
6483 ppc64_elf_gc_sweep_hook (bfd *abfd, struct bfd_link_info *info,
6484                          asection *sec, const Elf_Internal_Rela *relocs)
6485 {
6486   struct ppc_link_hash_table *htab;
6487   Elf_Internal_Shdr *symtab_hdr;
6488   struct elf_link_hash_entry **sym_hashes;
6489   struct got_entry **local_got_ents;
6490   const Elf_Internal_Rela *rel, *relend;
6491
6492   if (bfd_link_relocatable (info))
6493     return TRUE;
6494
6495   if ((sec->flags & SEC_ALLOC) == 0)
6496     return TRUE;
6497
6498   elf_section_data (sec)->local_dynrel = NULL;
6499
6500   htab = ppc_hash_table (info);
6501   if (htab == NULL)
6502     return FALSE;
6503
6504   symtab_hdr = &elf_symtab_hdr (abfd);
6505   sym_hashes = elf_sym_hashes (abfd);
6506   local_got_ents = elf_local_got_ents (abfd);
6507
6508   relend = relocs + sec->reloc_count;
6509   for (rel = relocs; rel < relend; rel++)
6510     {
6511       unsigned long r_symndx;
6512       enum elf_ppc64_reloc_type r_type;
6513       struct elf_link_hash_entry *h = NULL;
6514       struct plt_entry **plt_list;
6515       unsigned char tls_type = 0;
6516
6517       r_symndx = ELF64_R_SYM (rel->r_info);
6518       r_type = ELF64_R_TYPE (rel->r_info);
6519       if (r_symndx >= symtab_hdr->sh_info)
6520         {
6521           struct ppc_link_hash_entry *eh;
6522           struct elf_dyn_relocs **pp;
6523           struct elf_dyn_relocs *p;
6524
6525           h = sym_hashes[r_symndx - symtab_hdr->sh_info];
6526           h = elf_follow_link (h);
6527           eh = (struct ppc_link_hash_entry *) h;
6528
6529           for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
6530             if (p->sec == sec)
6531               {
6532                 /* Everything must go for SEC.  */
6533                 *pp = p->next;
6534                 break;
6535               }
6536         }
6537
6538       switch (r_type)
6539         {
6540         case R_PPC64_GOT_TLSLD16:
6541         case R_PPC64_GOT_TLSLD16_LO:
6542         case R_PPC64_GOT_TLSLD16_HI:
6543         case R_PPC64_GOT_TLSLD16_HA:
6544           tls_type = TLS_TLS | TLS_LD;
6545           goto dogot;
6546
6547         case R_PPC64_GOT_TLSGD16:
6548         case R_PPC64_GOT_TLSGD16_LO:
6549         case R_PPC64_GOT_TLSGD16_HI:
6550         case R_PPC64_GOT_TLSGD16_HA:
6551           tls_type = TLS_TLS | TLS_GD;
6552           goto dogot;
6553
6554         case R_PPC64_GOT_TPREL16_DS:
6555         case R_PPC64_GOT_TPREL16_LO_DS:
6556         case R_PPC64_GOT_TPREL16_HI:
6557         case R_PPC64_GOT_TPREL16_HA:
6558           tls_type = TLS_TLS | TLS_TPREL;
6559           goto dogot;
6560
6561         case R_PPC64_GOT_DTPREL16_DS:
6562         case R_PPC64_GOT_DTPREL16_LO_DS:
6563         case R_PPC64_GOT_DTPREL16_HI:
6564         case R_PPC64_GOT_DTPREL16_HA:
6565           tls_type = TLS_TLS | TLS_DTPREL;
6566           goto dogot;
6567
6568         case R_PPC64_GOT16:
6569         case R_PPC64_GOT16_DS:
6570         case R_PPC64_GOT16_HA:
6571         case R_PPC64_GOT16_HI:
6572         case R_PPC64_GOT16_LO:
6573         case R_PPC64_GOT16_LO_DS:
6574         dogot:
6575           {
6576             struct got_entry *ent;
6577
6578             if (h != NULL)
6579               ent = h->got.glist;
6580             else
6581               ent = local_got_ents[r_symndx];
6582
6583             for (; ent != NULL; ent = ent->next)
6584               if (ent->addend == rel->r_addend
6585                   && ent->owner == abfd
6586                   && ent->tls_type == tls_type)
6587                 break;
6588             if (ent == NULL)
6589               abort ();
6590             if (ent->got.refcount > 0)
6591               ent->got.refcount -= 1;
6592           }
6593           break;
6594
6595         case R_PPC64_PLT16_HA:
6596         case R_PPC64_PLT16_HI:
6597         case R_PPC64_PLT16_LO:
6598         case R_PPC64_PLT32:
6599         case R_PPC64_PLT64:
6600         case R_PPC64_REL14:
6601         case R_PPC64_REL14_BRNTAKEN:
6602         case R_PPC64_REL14_BRTAKEN:
6603         case R_PPC64_REL24:
6604           plt_list = NULL;
6605           if (h != NULL)
6606             plt_list = &h->plt.plist;
6607           else if (local_got_ents != NULL)
6608             {
6609               struct plt_entry **local_plt = (struct plt_entry **)
6610                 (local_got_ents + symtab_hdr->sh_info);
6611               unsigned char *local_got_tls_masks = (unsigned char *)
6612                 (local_plt + symtab_hdr->sh_info);
6613               if ((local_got_tls_masks[r_symndx] & PLT_IFUNC) != 0)
6614                 plt_list = local_plt + r_symndx;
6615             }
6616           if (plt_list)
6617             {
6618               struct plt_entry *ent;
6619
6620               for (ent = *plt_list; ent != NULL; ent = ent->next)
6621                 if (ent->addend == rel->r_addend)
6622                   break;
6623               if (ent != NULL && ent->plt.refcount > 0)
6624                 ent->plt.refcount -= 1;
6625             }
6626           break;
6627
6628         default:
6629           break;
6630         }
6631     }
6632   return TRUE;
6633 }
6634
6635 /* The maximum size of .sfpr.  */
6636 #define SFPR_MAX (218*4)
6637
6638 struct sfpr_def_parms
6639 {
6640   const char name[12];
6641   unsigned char lo, hi;
6642   bfd_byte * (*write_ent) (bfd *, bfd_byte *, int);
6643   bfd_byte * (*write_tail) (bfd *, bfd_byte *, int);
6644 };
6645
6646 /* Auto-generate _save*, _rest* functions in .sfpr.
6647    If STUB_SEC is non-null, define alias symbols in STUB_SEC
6648    instead.  */
6649
6650 static bfd_boolean
6651 sfpr_define (struct bfd_link_info *info,
6652              const struct sfpr_def_parms *parm,
6653              asection *stub_sec)
6654 {
6655   struct ppc_link_hash_table *htab = ppc_hash_table (info);
6656   unsigned int i;
6657   size_t len = strlen (parm->name);
6658   bfd_boolean writing = FALSE;
6659   char sym[16];
6660
6661   if (htab == NULL)
6662     return FALSE;
6663
6664   memcpy (sym, parm->name, len);
6665   sym[len + 2] = 0;
6666
6667   for (i = parm->lo; i <= parm->hi; i++)
6668     {
6669       struct ppc_link_hash_entry *h;
6670
6671       sym[len + 0] = i / 10 + '0';
6672       sym[len + 1] = i % 10 + '0';
6673       h = (struct ppc_link_hash_entry *)
6674         elf_link_hash_lookup (&htab->elf, sym, writing, TRUE, TRUE);
6675       if (stub_sec != NULL)
6676         {
6677           if (h != NULL
6678               && h->elf.root.type == bfd_link_hash_defined
6679               && h->elf.root.u.def.section == htab->sfpr)
6680             {
6681               struct elf_link_hash_entry *s;
6682               char buf[32];
6683               sprintf (buf, "%08x.%s", stub_sec->id & 0xffffffff, sym);
6684               s = elf_link_hash_lookup (&htab->elf, buf, TRUE, TRUE, FALSE);
6685               if (s == NULL)
6686                 return FALSE;
6687               if (s->root.type == bfd_link_hash_new
6688                   || (s->root.type = bfd_link_hash_defined
6689                       && s->root.u.def.section == stub_sec))
6690                 {
6691                   s->root.type = bfd_link_hash_defined;
6692                   s->root.u.def.section = stub_sec;
6693                   s->root.u.def.value = (stub_sec->size
6694                                          + h->elf.root.u.def.value);
6695                   s->ref_regular = 1;
6696                   s->def_regular = 1;
6697                   s->ref_regular_nonweak = 1;
6698                   s->forced_local = 1;
6699                   s->non_elf = 0;
6700                   s->root.linker_def = 1;
6701                 }
6702             }
6703           continue;
6704         }
6705       if (h != NULL)
6706         {
6707           h->save_res = 1;
6708           if (!h->elf.def_regular)
6709             {
6710               h->elf.root.type = bfd_link_hash_defined;
6711               h->elf.root.u.def.section = htab->sfpr;
6712               h->elf.root.u.def.value = htab->sfpr->size;
6713               h->elf.type = STT_FUNC;
6714               h->elf.def_regular = 1;
6715               h->elf.non_elf = 0;
6716               _bfd_elf_link_hash_hide_symbol (info, &h->elf, TRUE);
6717               writing = TRUE;
6718               if (htab->sfpr->contents == NULL)
6719                 {
6720                   htab->sfpr->contents = bfd_alloc (htab->elf.dynobj, SFPR_MAX);
6721                   if (htab->sfpr->contents == NULL)
6722                     return FALSE;
6723                 }
6724             }
6725         }
6726       if (writing)
6727         {
6728           bfd_byte *p = htab->sfpr->contents + htab->sfpr->size;
6729           if (i != parm->hi)
6730             p = (*parm->write_ent) (htab->elf.dynobj, p, i);
6731           else
6732             p = (*parm->write_tail) (htab->elf.dynobj, p, i);
6733           htab->sfpr->size = p - htab->sfpr->contents;
6734         }
6735     }
6736
6737   return TRUE;
6738 }
6739
6740 static bfd_byte *
6741 savegpr0 (bfd *abfd, bfd_byte *p, int r)
6742 {
6743   bfd_put_32 (abfd, STD_R0_0R1 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6744   return p + 4;
6745 }
6746
6747 static bfd_byte *
6748 savegpr0_tail (bfd *abfd, bfd_byte *p, int r)
6749 {
6750   p = savegpr0 (abfd, p, r);
6751   bfd_put_32 (abfd, STD_R0_0R1 + STK_LR, p);
6752   p = p + 4;
6753   bfd_put_32 (abfd, BLR, p);
6754   return p + 4;
6755 }
6756
6757 static bfd_byte *
6758 restgpr0 (bfd *abfd, bfd_byte *p, int r)
6759 {
6760   bfd_put_32 (abfd, LD_R0_0R1 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6761   return p + 4;
6762 }
6763
6764 static bfd_byte *
6765 restgpr0_tail (bfd *abfd, bfd_byte *p, int r)
6766 {
6767   bfd_put_32 (abfd, LD_R0_0R1 + STK_LR, p);
6768   p = p + 4;
6769   p = restgpr0 (abfd, p, r);
6770   bfd_put_32 (abfd, MTLR_R0, p);
6771   p = p + 4;
6772   if (r == 29)
6773     {
6774       p = restgpr0 (abfd, p, 30);
6775       p = restgpr0 (abfd, p, 31);
6776     }
6777   bfd_put_32 (abfd, BLR, p);
6778   return p + 4;
6779 }
6780
6781 static bfd_byte *
6782 savegpr1 (bfd *abfd, bfd_byte *p, int r)
6783 {
6784   bfd_put_32 (abfd, STD_R0_0R12 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6785   return p + 4;
6786 }
6787
6788 static bfd_byte *
6789 savegpr1_tail (bfd *abfd, bfd_byte *p, int r)
6790 {
6791   p = savegpr1 (abfd, p, r);
6792   bfd_put_32 (abfd, BLR, p);
6793   return p + 4;
6794 }
6795
6796 static bfd_byte *
6797 restgpr1 (bfd *abfd, bfd_byte *p, int r)
6798 {
6799   bfd_put_32 (abfd, LD_R0_0R12 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6800   return p + 4;
6801 }
6802
6803 static bfd_byte *
6804 restgpr1_tail (bfd *abfd, bfd_byte *p, int r)
6805 {
6806   p = restgpr1 (abfd, p, r);
6807   bfd_put_32 (abfd, BLR, p);
6808   return p + 4;
6809 }
6810
6811 static bfd_byte *
6812 savefpr (bfd *abfd, bfd_byte *p, int r)
6813 {
6814   bfd_put_32 (abfd, STFD_FR0_0R1 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6815   return p + 4;
6816 }
6817
6818 static bfd_byte *
6819 savefpr0_tail (bfd *abfd, bfd_byte *p, int r)
6820 {
6821   p = savefpr (abfd, p, r);
6822   bfd_put_32 (abfd, STD_R0_0R1 + STK_LR, p);
6823   p = p + 4;
6824   bfd_put_32 (abfd, BLR, p);
6825   return p + 4;
6826 }
6827
6828 static bfd_byte *
6829 restfpr (bfd *abfd, bfd_byte *p, int r)
6830 {
6831   bfd_put_32 (abfd, LFD_FR0_0R1 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6832   return p + 4;
6833 }
6834
6835 static bfd_byte *
6836 restfpr0_tail (bfd *abfd, bfd_byte *p, int r)
6837 {
6838   bfd_put_32 (abfd, LD_R0_0R1 + STK_LR, p);
6839   p = p + 4;
6840   p = restfpr (abfd, p, r);
6841   bfd_put_32 (abfd, MTLR_R0, p);
6842   p = p + 4;
6843   if (r == 29)
6844     {
6845       p = restfpr (abfd, p, 30);
6846       p = restfpr (abfd, p, 31);
6847     }
6848   bfd_put_32 (abfd, BLR, p);
6849   return p + 4;
6850 }
6851
6852 static bfd_byte *
6853 savefpr1_tail (bfd *abfd, bfd_byte *p, int r)
6854 {
6855   p = savefpr (abfd, p, r);
6856   bfd_put_32 (abfd, BLR, p);
6857   return p + 4;
6858 }
6859
6860 static bfd_byte *
6861 restfpr1_tail (bfd *abfd, bfd_byte *p, int r)
6862 {
6863   p = restfpr (abfd, p, r);
6864   bfd_put_32 (abfd, BLR, p);
6865   return p + 4;
6866 }
6867
6868 static bfd_byte *
6869 savevr (bfd *abfd, bfd_byte *p, int r)
6870 {
6871   bfd_put_32 (abfd, LI_R12_0 + (1 << 16) - (32 - r) * 16, p);
6872   p = p + 4;
6873   bfd_put_32 (abfd, STVX_VR0_R12_R0 + (r << 21), p);
6874   return p + 4;
6875 }
6876
6877 static bfd_byte *
6878 savevr_tail (bfd *abfd, bfd_byte *p, int r)
6879 {
6880   p = savevr (abfd, p, r);
6881   bfd_put_32 (abfd, BLR, p);
6882   return p + 4;
6883 }
6884
6885 static bfd_byte *
6886 restvr (bfd *abfd, bfd_byte *p, int r)
6887 {
6888   bfd_put_32 (abfd, LI_R12_0 + (1 << 16) - (32 - r) * 16, p);
6889   p = p + 4;
6890   bfd_put_32 (abfd, LVX_VR0_R12_R0 + (r << 21), p);
6891   return p + 4;
6892 }
6893
6894 static bfd_byte *
6895 restvr_tail (bfd *abfd, bfd_byte *p, int r)
6896 {
6897   p = restvr (abfd, p, r);
6898   bfd_put_32 (abfd, BLR, p);
6899   return p + 4;
6900 }
6901
6902 /* Called via elf_link_hash_traverse to transfer dynamic linking
6903    information on function code symbol entries to their corresponding
6904    function descriptor symbol entries.  */
6905
6906 static bfd_boolean
6907 func_desc_adjust (struct elf_link_hash_entry *h, void *inf)
6908 {
6909   struct bfd_link_info *info;
6910   struct ppc_link_hash_table *htab;
6911   struct plt_entry *ent;
6912   struct ppc_link_hash_entry *fh;
6913   struct ppc_link_hash_entry *fdh;
6914   bfd_boolean force_local;
6915
6916   fh = (struct ppc_link_hash_entry *) h;
6917   if (fh->elf.root.type == bfd_link_hash_indirect)
6918     return TRUE;
6919
6920   info = inf;
6921   htab = ppc_hash_table (info);
6922   if (htab == NULL)
6923     return FALSE;
6924
6925   /* Resolve undefined references to dot-symbols as the value
6926      in the function descriptor, if we have one in a regular object.
6927      This is to satisfy cases like ".quad .foo".  Calls to functions
6928      in dynamic objects are handled elsewhere.  */
6929   if (fh->elf.root.type == bfd_link_hash_undefweak
6930       && fh->was_undefined
6931       && (fdh = defined_func_desc (fh)) != NULL
6932       && get_opd_info (fdh->elf.root.u.def.section) != NULL
6933       && opd_entry_value (fdh->elf.root.u.def.section,
6934                           fdh->elf.root.u.def.value,
6935                           &fh->elf.root.u.def.section,
6936                           &fh->elf.root.u.def.value, FALSE) != (bfd_vma) -1)
6937     {
6938       fh->elf.root.type = fdh->elf.root.type;
6939       fh->elf.forced_local = 1;
6940       fh->elf.def_regular = fdh->elf.def_regular;
6941       fh->elf.def_dynamic = fdh->elf.def_dynamic;
6942     }
6943
6944   /* If this is a function code symbol, transfer dynamic linking
6945      information to the function descriptor symbol.  */
6946   if (!fh->is_func)
6947     return TRUE;
6948
6949   for (ent = fh->elf.plt.plist; ent != NULL; ent = ent->next)
6950     if (ent->plt.refcount > 0)
6951       break;
6952   if (ent == NULL
6953       || fh->elf.root.root.string[0] != '.'
6954       || fh->elf.root.root.string[1] == '\0')
6955     return TRUE;
6956
6957   /* Find the corresponding function descriptor symbol.  Create it
6958      as undefined if necessary.  */
6959
6960   fdh = lookup_fdh (fh, htab);
6961   if (fdh == NULL
6962       && !bfd_link_executable (info)
6963       && (fh->elf.root.type == bfd_link_hash_undefined
6964           || fh->elf.root.type == bfd_link_hash_undefweak))
6965     {
6966       fdh = make_fdh (info, fh);
6967       if (fdh == NULL)
6968         return FALSE;
6969     }
6970
6971   /* Fake function descriptors are made undefweak.  If the function
6972      code symbol is strong undefined, make the fake sym the same.
6973      If the function code symbol is defined, then force the fake
6974      descriptor local;  We can't support overriding of symbols in a
6975      shared library on a fake descriptor.  */
6976
6977   if (fdh != NULL
6978       && fdh->fake
6979       && fdh->elf.root.type == bfd_link_hash_undefweak)
6980     {
6981       if (fh->elf.root.type == bfd_link_hash_undefined)
6982         {
6983           fdh->elf.root.type = bfd_link_hash_undefined;
6984           bfd_link_add_undef (&htab->elf.root, &fdh->elf.root);
6985         }
6986       else if (fh->elf.root.type == bfd_link_hash_defined
6987                || fh->elf.root.type == bfd_link_hash_defweak)
6988         {
6989           _bfd_elf_link_hash_hide_symbol (info, &fdh->elf, TRUE);
6990         }
6991     }
6992
6993   if (fdh != NULL
6994       && !fdh->elf.forced_local
6995       && (!bfd_link_executable (info)
6996           || fdh->elf.def_dynamic
6997           || fdh->elf.ref_dynamic
6998           || (fdh->elf.root.type == bfd_link_hash_undefweak
6999               && ELF_ST_VISIBILITY (fdh->elf.other) == STV_DEFAULT)))
7000     {
7001       if (fdh->elf.dynindx == -1)
7002         if (! bfd_elf_link_record_dynamic_symbol (info, &fdh->elf))
7003           return FALSE;
7004       fdh->elf.ref_regular |= fh->elf.ref_regular;
7005       fdh->elf.ref_dynamic |= fh->elf.ref_dynamic;
7006       fdh->elf.ref_regular_nonweak |= fh->elf.ref_regular_nonweak;
7007       fdh->elf.non_got_ref |= fh->elf.non_got_ref;
7008       if (ELF_ST_VISIBILITY (fh->elf.other) == STV_DEFAULT)
7009         {
7010           move_plt_plist (fh, fdh);
7011           fdh->elf.needs_plt = 1;
7012         }
7013       fdh->is_func_descriptor = 1;
7014       fdh->oh = fh;
7015       fh->oh = fdh;
7016     }
7017
7018   /* Now that the info is on the function descriptor, clear the
7019      function code sym info.  Any function code syms for which we
7020      don't have a definition in a regular file, we force local.
7021      This prevents a shared library from exporting syms that have
7022      been imported from another library.  Function code syms that
7023      are really in the library we must leave global to prevent the
7024      linker dragging in a definition from a static library.  */
7025   force_local = (!fh->elf.def_regular
7026                  || fdh == NULL
7027                  || !fdh->elf.def_regular
7028                  || fdh->elf.forced_local);
7029   _bfd_elf_link_hash_hide_symbol (info, &fh->elf, force_local);
7030
7031   return TRUE;
7032 }
7033
7034 static const struct sfpr_def_parms save_res_funcs[] =
7035   {
7036     { "_savegpr0_", 14, 31, savegpr0, savegpr0_tail },
7037     { "_restgpr0_", 14, 29, restgpr0, restgpr0_tail },
7038     { "_restgpr0_", 30, 31, restgpr0, restgpr0_tail },
7039     { "_savegpr1_", 14, 31, savegpr1, savegpr1_tail },
7040     { "_restgpr1_", 14, 31, restgpr1, restgpr1_tail },
7041     { "_savefpr_", 14, 31, savefpr, savefpr0_tail },
7042     { "_restfpr_", 14, 29, restfpr, restfpr0_tail },
7043     { "_restfpr_", 30, 31, restfpr, restfpr0_tail },
7044     { "._savef", 14, 31, savefpr, savefpr1_tail },
7045     { "._restf", 14, 31, restfpr, restfpr1_tail },
7046     { "_savevr_", 20, 31, savevr, savevr_tail },
7047     { "_restvr_", 20, 31, restvr, restvr_tail }
7048   };
7049
7050 /* Called near the start of bfd_elf_size_dynamic_sections.  We use
7051    this hook to a) provide some gcc support functions, and b) transfer
7052    dynamic linking information gathered so far on function code symbol
7053    entries, to their corresponding function descriptor symbol entries.  */
7054
7055 static bfd_boolean
7056 ppc64_elf_func_desc_adjust (bfd *obfd ATTRIBUTE_UNUSED,
7057                             struct bfd_link_info *info)
7058 {
7059   struct ppc_link_hash_table *htab;
7060
7061   htab = ppc_hash_table (info);
7062   if (htab == NULL)
7063     return FALSE;
7064
7065   /* Provide any missing _save* and _rest* functions.  */
7066   if (htab->sfpr != NULL)
7067     {
7068       unsigned int i;
7069
7070       htab->sfpr->size = 0;
7071       for (i = 0; i < ARRAY_SIZE (save_res_funcs); i++)
7072         if (!sfpr_define (info, &save_res_funcs[i], NULL))
7073           return FALSE;
7074       if (htab->sfpr->size == 0)
7075         htab->sfpr->flags |= SEC_EXCLUDE;
7076     }
7077
7078   if (bfd_link_relocatable (info))
7079     return TRUE;
7080
7081   if (htab->elf.hgot != NULL)
7082     {
7083       _bfd_elf_link_hash_hide_symbol (info, htab->elf.hgot, TRUE);
7084       /* Make .TOC. defined so as to prevent it being made dynamic.
7085          The wrong value here is fixed later in ppc64_elf_set_toc.  */
7086       if (!htab->elf.hgot->def_regular
7087           || htab->elf.hgot->root.type != bfd_link_hash_defined)
7088         {
7089           htab->elf.hgot->root.type = bfd_link_hash_defined;
7090           htab->elf.hgot->root.u.def.value = 0;
7091           htab->elf.hgot->root.u.def.section = bfd_abs_section_ptr;
7092           htab->elf.hgot->def_regular = 1;
7093           htab->elf.hgot->root.linker_def = 1;
7094         }
7095       htab->elf.hgot->type = STT_OBJECT;
7096       htab->elf.hgot->other = ((htab->elf.hgot->other & ~ELF_ST_VISIBILITY (-1))
7097                                | STV_HIDDEN);
7098     }
7099
7100   elf_link_hash_traverse (&htab->elf, func_desc_adjust, info);
7101
7102   return TRUE;
7103 }
7104
7105 /* Return true if we have dynamic relocs that apply to read-only sections.  */
7106
7107 static bfd_boolean
7108 readonly_dynrelocs (struct elf_link_hash_entry *h)
7109 {
7110   struct ppc_link_hash_entry *eh;
7111   struct elf_dyn_relocs *p;
7112
7113   eh = (struct ppc_link_hash_entry *) h;
7114   for (p = eh->dyn_relocs; p != NULL; p = p->next)
7115     {
7116       asection *s = p->sec->output_section;
7117
7118       if (s != NULL && (s->flags & SEC_READONLY) != 0)
7119         return TRUE;
7120     }
7121   return FALSE;
7122 }
7123
7124 /* Adjust a symbol defined by a dynamic object and referenced by a
7125    regular object.  The current definition is in some section of the
7126    dynamic object, but we're not including those sections.  We have to
7127    change the definition to something the rest of the link can
7128    understand.  */
7129
7130 static bfd_boolean
7131 ppc64_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
7132                                  struct elf_link_hash_entry *h)
7133 {
7134   struct ppc_link_hash_table *htab;
7135   asection *s;
7136
7137   htab = ppc_hash_table (info);
7138   if (htab == NULL)
7139     return FALSE;
7140
7141   /* Deal with function syms.  */
7142   if (h->type == STT_FUNC
7143       || h->type == STT_GNU_IFUNC
7144       || h->needs_plt)
7145     {
7146       /* Clear procedure linkage table information for any symbol that
7147          won't need a .plt entry.  */
7148       struct plt_entry *ent;
7149       for (ent = h->plt.plist; ent != NULL; ent = ent->next)
7150         if (ent->plt.refcount > 0)
7151           break;
7152       if (ent == NULL
7153           || (h->type != STT_GNU_IFUNC
7154               && (SYMBOL_CALLS_LOCAL (info, h)
7155                   || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
7156                       && h->root.type == bfd_link_hash_undefweak)))
7157           || ((struct ppc_link_hash_entry *) h)->save_res)
7158         {
7159           h->plt.plist = NULL;
7160           h->needs_plt = 0;
7161           h->pointer_equality_needed = 0;
7162         }
7163       else if (abiversion (info->output_bfd) == 2)
7164         {
7165           /* Taking a function's address in a read/write section
7166              doesn't require us to define the function symbol in the
7167              executable on a global entry stub.  A dynamic reloc can
7168              be used instead.  */
7169           if (h->pointer_equality_needed
7170               && h->type != STT_GNU_IFUNC
7171               && !readonly_dynrelocs (h))
7172             {
7173               h->pointer_equality_needed = 0;
7174               h->non_got_ref = 0;
7175             }
7176
7177           /* After adjust_dynamic_symbol, non_got_ref set in the
7178              non-shared case means that we have allocated space in
7179              .dynbss for the symbol and thus dyn_relocs for this
7180              symbol should be discarded.
7181              If we get here we know we are making a PLT entry for this
7182              symbol, and in an executable we'd normally resolve
7183              relocations against this symbol to the PLT entry.  Allow
7184              dynamic relocs if the reference is weak, and the dynamic
7185              relocs will not cause text relocation.  */
7186           else if (!h->ref_regular_nonweak
7187                    && h->non_got_ref
7188                    && h->type != STT_GNU_IFUNC
7189                    && !readonly_dynrelocs (h))
7190             h->non_got_ref = 0;
7191
7192           /* If making a plt entry, then we don't need copy relocs.  */
7193           return TRUE;
7194         }
7195     }
7196   else
7197     h->plt.plist = NULL;
7198
7199   /* If this is a weak symbol, and there is a real definition, the
7200      processor independent code will have arranged for us to see the
7201      real definition first, and we can just use the same value.  */
7202   if (h->u.weakdef != NULL)
7203     {
7204       BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
7205                   || h->u.weakdef->root.type == bfd_link_hash_defweak);
7206       h->root.u.def.section = h->u.weakdef->root.u.def.section;
7207       h->root.u.def.value = h->u.weakdef->root.u.def.value;
7208       if (ELIMINATE_COPY_RELOCS)
7209         h->non_got_ref = h->u.weakdef->non_got_ref;
7210       return TRUE;
7211     }
7212
7213   /* If we are creating a shared library, we must presume that the
7214      only references to the symbol are via the global offset table.
7215      For such cases we need not do anything here; the relocations will
7216      be handled correctly by relocate_section.  */
7217   if (bfd_link_pic (info))
7218     return TRUE;
7219
7220   /* If there are no references to this symbol that do not use the
7221      GOT, we don't need to generate a copy reloc.  */
7222   if (!h->non_got_ref)
7223     return TRUE;
7224
7225   /* Don't generate a copy reloc for symbols defined in the executable.  */
7226   if (!h->def_dynamic || !h->ref_regular || h->def_regular)
7227     return TRUE;
7228
7229   /* If -z nocopyreloc was given, don't generate them either.  */
7230   if (info->nocopyreloc)
7231     {
7232       h->non_got_ref = 0;
7233       return TRUE;
7234     }
7235
7236   /* If we didn't find any dynamic relocs in read-only sections, then
7237      we'll be keeping the dynamic relocs and avoiding the copy reloc.  */
7238   if (ELIMINATE_COPY_RELOCS && !readonly_dynrelocs (h))
7239     {
7240       h->non_got_ref = 0;
7241       return TRUE;
7242     }
7243
7244   /* Protected variables do not work with .dynbss.  The copy in
7245      .dynbss won't be used by the shared library with the protected
7246      definition for the variable.  Text relocations are preferable
7247      to an incorrect program.  */
7248   if (h->protected_def)
7249     {
7250       h->non_got_ref = 0;
7251       return TRUE;
7252     }
7253
7254   if (h->plt.plist != NULL)
7255     {
7256       /* We should never get here, but unfortunately there are versions
7257          of gcc out there that improperly (for this ABI) put initialized
7258          function pointers, vtable refs and suchlike in read-only
7259          sections.  Allow them to proceed, but warn that this might
7260          break at runtime.  */
7261       info->callbacks->einfo
7262         (_("%P: copy reloc against `%T' requires lazy plt linking; "
7263            "avoid setting LD_BIND_NOW=1 or upgrade gcc\n"),
7264          h->root.root.string);
7265     }
7266
7267   /* This is a reference to a symbol defined by a dynamic object which
7268      is not a function.  */
7269
7270   /* We must allocate the symbol in our .dynbss section, which will
7271      become part of the .bss section of the executable.  There will be
7272      an entry for this symbol in the .dynsym section.  The dynamic
7273      object will contain position independent code, so all references
7274      from the dynamic object to this symbol will go through the global
7275      offset table.  The dynamic linker will use the .dynsym entry to
7276      determine the address it must put in the global offset table, so
7277      both the dynamic object and the regular object will refer to the
7278      same memory location for the variable.  */
7279
7280   /* We must generate a R_PPC64_COPY reloc to tell the dynamic linker
7281      to copy the initial value out of the dynamic object and into the
7282      runtime process image.  We need to remember the offset into the
7283      .rela.bss section we are going to use.  */
7284   if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
7285     {
7286       htab->relbss->size += sizeof (Elf64_External_Rela);
7287       h->needs_copy = 1;
7288     }
7289
7290   s = htab->dynbss;
7291
7292   return _bfd_elf_adjust_dynamic_copy (info, h, s);
7293 }
7294
7295 /* If given a function descriptor symbol, hide both the function code
7296    sym and the descriptor.  */
7297 static void
7298 ppc64_elf_hide_symbol (struct bfd_link_info *info,
7299                        struct elf_link_hash_entry *h,
7300                        bfd_boolean force_local)
7301 {
7302   struct ppc_link_hash_entry *eh;
7303   _bfd_elf_link_hash_hide_symbol (info, h, force_local);
7304
7305   eh = (struct ppc_link_hash_entry *) h;
7306   if (eh->is_func_descriptor)
7307     {
7308       struct ppc_link_hash_entry *fh = eh->oh;
7309
7310       if (fh == NULL)
7311         {
7312           const char *p, *q;
7313           struct ppc_link_hash_table *htab;
7314           char save;
7315
7316           /* We aren't supposed to use alloca in BFD because on
7317              systems which do not have alloca the version in libiberty
7318              calls xmalloc, which might cause the program to crash
7319              when it runs out of memory.  This function doesn't have a
7320              return status, so there's no way to gracefully return an
7321              error.  So cheat.  We know that string[-1] can be safely
7322              accessed;  It's either a string in an ELF string table,
7323              or allocated in an objalloc structure.  */
7324
7325           p = eh->elf.root.root.string - 1;
7326           save = *p;
7327           *(char *) p = '.';
7328           htab = ppc_hash_table (info);
7329           if (htab == NULL)
7330             return;
7331
7332           fh = (struct ppc_link_hash_entry *)
7333             elf_link_hash_lookup (&htab->elf, p, FALSE, FALSE, FALSE);
7334           *(char *) p = save;
7335
7336           /* Unfortunately, if it so happens that the string we were
7337              looking for was allocated immediately before this string,
7338              then we overwrote the string terminator.  That's the only
7339              reason the lookup should fail.  */
7340           if (fh == NULL)
7341             {
7342               q = eh->elf.root.root.string + strlen (eh->elf.root.root.string);
7343               while (q >= eh->elf.root.root.string && *q == *p)
7344                 --q, --p;
7345               if (q < eh->elf.root.root.string && *p == '.')
7346                 fh = (struct ppc_link_hash_entry *)
7347                   elf_link_hash_lookup (&htab->elf, p, FALSE, FALSE, FALSE);
7348             }
7349           if (fh != NULL)
7350             {
7351               eh->oh = fh;
7352               fh->oh = eh;
7353             }
7354         }
7355       if (fh != NULL)
7356         _bfd_elf_link_hash_hide_symbol (info, &fh->elf, force_local);
7357     }
7358 }
7359
7360 static bfd_boolean
7361 get_sym_h (struct elf_link_hash_entry **hp,
7362            Elf_Internal_Sym **symp,
7363            asection **symsecp,
7364            unsigned char **tls_maskp,
7365            Elf_Internal_Sym **locsymsp,
7366            unsigned long r_symndx,
7367            bfd *ibfd)
7368 {
7369   Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
7370
7371   if (r_symndx >= symtab_hdr->sh_info)
7372     {
7373       struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
7374       struct elf_link_hash_entry *h;
7375
7376       h = sym_hashes[r_symndx - symtab_hdr->sh_info];
7377       h = elf_follow_link (h);
7378
7379       if (hp != NULL)
7380         *hp = h;
7381
7382       if (symp != NULL)
7383         *symp = NULL;
7384
7385       if (symsecp != NULL)
7386         {
7387           asection *symsec = NULL;
7388           if (h->root.type == bfd_link_hash_defined
7389               || h->root.type == bfd_link_hash_defweak)
7390             symsec = h->root.u.def.section;
7391           *symsecp = symsec;
7392         }
7393
7394       if (tls_maskp != NULL)
7395         {
7396           struct ppc_link_hash_entry *eh;
7397
7398           eh = (struct ppc_link_hash_entry *) h;
7399           *tls_maskp = &eh->tls_mask;
7400         }
7401     }
7402   else
7403     {
7404       Elf_Internal_Sym *sym;
7405       Elf_Internal_Sym *locsyms = *locsymsp;
7406
7407       if (locsyms == NULL)
7408         {
7409           locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
7410           if (locsyms == NULL)
7411             locsyms = bfd_elf_get_elf_syms (ibfd, symtab_hdr,
7412                                             symtab_hdr->sh_info,
7413                                             0, NULL, NULL, NULL);
7414           if (locsyms == NULL)
7415             return FALSE;
7416           *locsymsp = locsyms;
7417         }
7418       sym = locsyms + r_symndx;
7419
7420       if (hp != NULL)
7421         *hp = NULL;
7422
7423       if (symp != NULL)
7424         *symp = sym;
7425
7426       if (symsecp != NULL)
7427         *symsecp = bfd_section_from_elf_index (ibfd, sym->st_shndx);
7428
7429       if (tls_maskp != NULL)
7430         {
7431           struct got_entry **lgot_ents;
7432           unsigned char *tls_mask;
7433
7434           tls_mask = NULL;
7435           lgot_ents = elf_local_got_ents (ibfd);
7436           if (lgot_ents != NULL)
7437             {
7438               struct plt_entry **local_plt = (struct plt_entry **)
7439                 (lgot_ents + symtab_hdr->sh_info);
7440               unsigned char *lgot_masks = (unsigned char *)
7441                 (local_plt + symtab_hdr->sh_info);
7442               tls_mask = &lgot_masks[r_symndx];
7443             }
7444           *tls_maskp = tls_mask;
7445         }
7446     }
7447   return TRUE;
7448 }
7449
7450 /* Returns TLS_MASKP for the given REL symbol.  Function return is 0 on
7451    error, 2 on a toc GD type suitable for optimization, 3 on a toc LD
7452    type suitable for optimization, and 1 otherwise.  */
7453
7454 static int
7455 get_tls_mask (unsigned char **tls_maskp,
7456               unsigned long *toc_symndx,
7457               bfd_vma *toc_addend,
7458               Elf_Internal_Sym **locsymsp,
7459               const Elf_Internal_Rela *rel,
7460               bfd *ibfd)
7461 {
7462   unsigned long r_symndx;
7463   int next_r;
7464   struct elf_link_hash_entry *h;
7465   Elf_Internal_Sym *sym;
7466   asection *sec;
7467   bfd_vma off;
7468
7469   r_symndx = ELF64_R_SYM (rel->r_info);
7470   if (!get_sym_h (&h, &sym, &sec, tls_maskp, locsymsp, r_symndx, ibfd))
7471     return 0;
7472
7473   if ((*tls_maskp != NULL && **tls_maskp != 0)
7474       || sec == NULL
7475       || ppc64_elf_section_data (sec) == NULL
7476       || ppc64_elf_section_data (sec)->sec_type != sec_toc)
7477     return 1;
7478
7479   /* Look inside a TOC section too.  */
7480   if (h != NULL)
7481     {
7482       BFD_ASSERT (h->root.type == bfd_link_hash_defined);
7483       off = h->root.u.def.value;
7484     }
7485   else
7486     off = sym->st_value;
7487   off += rel->r_addend;
7488   BFD_ASSERT (off % 8 == 0);
7489   r_symndx = ppc64_elf_section_data (sec)->u.toc.symndx[off / 8];
7490   next_r = ppc64_elf_section_data (sec)->u.toc.symndx[off / 8 + 1];
7491   if (toc_symndx != NULL)
7492     *toc_symndx = r_symndx;
7493   if (toc_addend != NULL)
7494     *toc_addend = ppc64_elf_section_data (sec)->u.toc.add[off / 8];
7495   if (!get_sym_h (&h, &sym, &sec, tls_maskp, locsymsp, r_symndx, ibfd))
7496     return 0;
7497   if ((h == NULL || is_static_defined (h))
7498       && (next_r == -1 || next_r == -2))
7499     return 1 - next_r;
7500   return 1;
7501 }
7502
7503 /* Find (or create) an entry in the tocsave hash table.  */
7504
7505 static struct tocsave_entry *
7506 tocsave_find (struct ppc_link_hash_table *htab,
7507               enum insert_option insert,
7508               Elf_Internal_Sym **local_syms,
7509               const Elf_Internal_Rela *irela,
7510               bfd *ibfd)
7511 {
7512   unsigned long r_indx;
7513   struct elf_link_hash_entry *h;
7514   Elf_Internal_Sym *sym;
7515   struct tocsave_entry ent, *p;
7516   hashval_t hash;
7517   struct tocsave_entry **slot;
7518
7519   r_indx = ELF64_R_SYM (irela->r_info);
7520   if (!get_sym_h (&h, &sym, &ent.sec, NULL, local_syms, r_indx, ibfd))
7521     return NULL;
7522   if (ent.sec == NULL || ent.sec->output_section == NULL)
7523     {
7524       (*_bfd_error_handler)
7525         (_("%B: undefined symbol on R_PPC64_TOCSAVE relocation"));
7526       return NULL;
7527     }
7528
7529   if (h != NULL)
7530     ent.offset = h->root.u.def.value;
7531   else
7532     ent.offset = sym->st_value;
7533   ent.offset += irela->r_addend;
7534
7535   hash = tocsave_htab_hash (&ent);
7536   slot = ((struct tocsave_entry **)
7537           htab_find_slot_with_hash (htab->tocsave_htab, &ent, hash, insert));
7538   if (slot == NULL)
7539     return NULL;
7540
7541   if (*slot == NULL)
7542     {
7543       p = (struct tocsave_entry *) bfd_alloc (ibfd, sizeof (*p));
7544       if (p == NULL)
7545         return NULL;
7546       *p = ent;
7547       *slot = p;
7548     }
7549   return *slot;
7550 }
7551
7552 /* Adjust all global syms defined in opd sections.  In gcc generated
7553    code for the old ABI, these will already have been done.  */
7554
7555 static bfd_boolean
7556 adjust_opd_syms (struct elf_link_hash_entry *h, void *inf ATTRIBUTE_UNUSED)
7557 {
7558   struct ppc_link_hash_entry *eh;
7559   asection *sym_sec;
7560   struct _opd_sec_data *opd;
7561
7562   if (h->root.type == bfd_link_hash_indirect)
7563     return TRUE;
7564
7565   if (h->root.type != bfd_link_hash_defined
7566       && h->root.type != bfd_link_hash_defweak)
7567     return TRUE;
7568
7569   eh = (struct ppc_link_hash_entry *) h;
7570   if (eh->adjust_done)
7571     return TRUE;
7572
7573   sym_sec = eh->elf.root.u.def.section;
7574   opd = get_opd_info (sym_sec);
7575   if (opd != NULL && opd->adjust != NULL)
7576     {
7577       long adjust = opd->adjust[OPD_NDX (eh->elf.root.u.def.value)];
7578       if (adjust == -1)
7579         {
7580           /* This entry has been deleted.  */
7581           asection *dsec = ppc64_elf_tdata (sym_sec->owner)->deleted_section;
7582           if (dsec == NULL)
7583             {
7584               for (dsec = sym_sec->owner->sections; dsec; dsec = dsec->next)
7585                 if (discarded_section (dsec))
7586                   {
7587                     ppc64_elf_tdata (sym_sec->owner)->deleted_section = dsec;
7588                     break;
7589                   }
7590             }
7591           eh->elf.root.u.def.value = 0;
7592           eh->elf.root.u.def.section = dsec;
7593         }
7594       else
7595         eh->elf.root.u.def.value += adjust;
7596       eh->adjust_done = 1;
7597     }
7598   return TRUE;
7599 }
7600
7601 /* Handles decrementing dynamic reloc counts for the reloc specified by
7602    R_INFO in section SEC.  If LOCAL_SYMS is NULL, then H and SYM
7603    have already been determined.  */
7604
7605 static bfd_boolean
7606 dec_dynrel_count (bfd_vma r_info,
7607                   asection *sec,
7608                   struct bfd_link_info *info,
7609                   Elf_Internal_Sym **local_syms,
7610                   struct elf_link_hash_entry *h,
7611                   Elf_Internal_Sym *sym)
7612 {
7613   enum elf_ppc64_reloc_type r_type;
7614   asection *sym_sec = NULL;
7615
7616   /* Can this reloc be dynamic?  This switch, and later tests here
7617      should be kept in sync with the code in check_relocs.  */
7618   r_type = ELF64_R_TYPE (r_info);
7619   switch (r_type)
7620     {
7621     default:
7622       return TRUE;
7623
7624     case R_PPC64_TPREL16:
7625     case R_PPC64_TPREL16_LO:
7626     case R_PPC64_TPREL16_HI:
7627     case R_PPC64_TPREL16_HA:
7628     case R_PPC64_TPREL16_DS:
7629     case R_PPC64_TPREL16_LO_DS:
7630     case R_PPC64_TPREL16_HIGH:
7631     case R_PPC64_TPREL16_HIGHA:
7632     case R_PPC64_TPREL16_HIGHER:
7633     case R_PPC64_TPREL16_HIGHERA:
7634     case R_PPC64_TPREL16_HIGHEST:
7635     case R_PPC64_TPREL16_HIGHESTA:
7636       if (!bfd_link_pic (info))
7637         return TRUE;
7638
7639     case R_PPC64_TPREL64:
7640     case R_PPC64_DTPMOD64:
7641     case R_PPC64_DTPREL64:
7642     case R_PPC64_ADDR64:
7643     case R_PPC64_REL30:
7644     case R_PPC64_REL32:
7645     case R_PPC64_REL64:
7646     case R_PPC64_ADDR14:
7647     case R_PPC64_ADDR14_BRNTAKEN:
7648     case R_PPC64_ADDR14_BRTAKEN:
7649     case R_PPC64_ADDR16:
7650     case R_PPC64_ADDR16_DS:
7651     case R_PPC64_ADDR16_HA:
7652     case R_PPC64_ADDR16_HI:
7653     case R_PPC64_ADDR16_HIGH:
7654     case R_PPC64_ADDR16_HIGHA:
7655     case R_PPC64_ADDR16_HIGHER:
7656     case R_PPC64_ADDR16_HIGHERA:
7657     case R_PPC64_ADDR16_HIGHEST:
7658     case R_PPC64_ADDR16_HIGHESTA:
7659     case R_PPC64_ADDR16_LO:
7660     case R_PPC64_ADDR16_LO_DS:
7661     case R_PPC64_ADDR24:
7662     case R_PPC64_ADDR32:
7663     case R_PPC64_UADDR16:
7664     case R_PPC64_UADDR32:
7665     case R_PPC64_UADDR64:
7666     case R_PPC64_TOC:
7667       break;
7668     }
7669
7670   if (local_syms != NULL)
7671     {
7672       unsigned long r_symndx;
7673       bfd *ibfd = sec->owner;
7674
7675       r_symndx = ELF64_R_SYM (r_info);
7676       if (!get_sym_h (&h, &sym, &sym_sec, NULL, local_syms, r_symndx, ibfd))
7677         return FALSE;
7678     }
7679
7680   if ((bfd_link_pic (info)
7681        && (must_be_dyn_reloc (info, r_type)
7682            || (h != NULL
7683                && (!SYMBOLIC_BIND (info, h)
7684                    || h->root.type == bfd_link_hash_defweak
7685                    || !h->def_regular))))
7686       || (ELIMINATE_COPY_RELOCS
7687           && !bfd_link_pic (info)
7688           && h != NULL
7689           && (h->root.type == bfd_link_hash_defweak
7690               || !h->def_regular)))
7691     ;
7692   else
7693     return TRUE;
7694
7695   if (h != NULL)
7696     {
7697       struct elf_dyn_relocs *p;
7698       struct elf_dyn_relocs **pp;
7699       pp = &((struct ppc_link_hash_entry *) h)->dyn_relocs;
7700
7701       /* elf_gc_sweep may have already removed all dyn relocs associated
7702          with local syms for a given section.  Also, symbol flags are
7703          changed by elf_gc_sweep_symbol, confusing the test above.  Don't
7704          report a dynreloc miscount.  */
7705       if (*pp == NULL && info->gc_sections)
7706         return TRUE;
7707
7708       while ((p = *pp) != NULL)
7709         {
7710           if (p->sec == sec)
7711             {
7712               if (!must_be_dyn_reloc (info, r_type))
7713                 p->pc_count -= 1;
7714               p->count -= 1;
7715               if (p->count == 0)
7716                 *pp = p->next;
7717               return TRUE;
7718             }
7719           pp = &p->next;
7720         }
7721     }
7722   else
7723     {
7724       struct ppc_dyn_relocs *p;
7725       struct ppc_dyn_relocs **pp;
7726       void *vpp;
7727       bfd_boolean is_ifunc;
7728
7729       if (local_syms == NULL)
7730         sym_sec = bfd_section_from_elf_index (sec->owner, sym->st_shndx);
7731       if (sym_sec == NULL)
7732         sym_sec = sec;
7733
7734       vpp = &elf_section_data (sym_sec)->local_dynrel;
7735       pp = (struct ppc_dyn_relocs **) vpp;
7736
7737       if (*pp == NULL && info->gc_sections)
7738         return TRUE;
7739
7740       is_ifunc = ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC;
7741       while ((p = *pp) != NULL)
7742         {
7743           if (p->sec == sec && p->ifunc == is_ifunc)
7744             {
7745               p->count -= 1;
7746               if (p->count == 0)
7747                 *pp = p->next;
7748               return TRUE;
7749             }
7750           pp = &p->next;
7751         }
7752     }
7753
7754   info->callbacks->einfo (_("%P: dynreloc miscount for %B, section %A\n"),
7755                           sec->owner, sec);
7756   bfd_set_error (bfd_error_bad_value);
7757   return FALSE;
7758 }
7759
7760 /* Remove unused Official Procedure Descriptor entries.  Currently we
7761    only remove those associated with functions in discarded link-once
7762    sections, or weakly defined functions that have been overridden.  It
7763    would be possible to remove many more entries for statically linked
7764    applications.  */
7765
7766 bfd_boolean
7767 ppc64_elf_edit_opd (struct bfd_link_info *info)
7768 {
7769   bfd *ibfd;
7770   bfd_boolean some_edited = FALSE;
7771   asection *need_pad = NULL;
7772   struct ppc_link_hash_table *htab;
7773
7774   htab = ppc_hash_table (info);
7775   if (htab == NULL)
7776     return FALSE;
7777
7778   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
7779     {
7780       asection *sec;
7781       Elf_Internal_Rela *relstart, *rel, *relend;
7782       Elf_Internal_Shdr *symtab_hdr;
7783       Elf_Internal_Sym *local_syms;
7784       struct _opd_sec_data *opd;
7785       bfd_boolean need_edit, add_aux_fields, broken;
7786       bfd_size_type cnt_16b = 0;
7787
7788       if (!is_ppc64_elf (ibfd))
7789         continue;
7790
7791       sec = bfd_get_section_by_name (ibfd, ".opd");
7792       if (sec == NULL || sec->size == 0)
7793         continue;
7794
7795       if (sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
7796         continue;
7797
7798       if (sec->output_section == bfd_abs_section_ptr)
7799         continue;
7800
7801       /* Look through the section relocs.  */
7802       if ((sec->flags & SEC_RELOC) == 0 || sec->reloc_count == 0)
7803         continue;
7804
7805       local_syms = NULL;
7806       symtab_hdr = &elf_symtab_hdr (ibfd);
7807
7808       /* Read the relocations.  */
7809       relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
7810                                             info->keep_memory);
7811       if (relstart == NULL)
7812         return FALSE;
7813
7814       /* First run through the relocs to check they are sane, and to
7815          determine whether we need to edit this opd section.  */
7816       need_edit = FALSE;
7817       broken = FALSE;
7818       need_pad = sec;
7819       relend = relstart + sec->reloc_count;
7820       for (rel = relstart; rel < relend; )
7821         {
7822           enum elf_ppc64_reloc_type r_type;
7823           unsigned long r_symndx;
7824           asection *sym_sec;
7825           struct elf_link_hash_entry *h;
7826           Elf_Internal_Sym *sym;
7827           bfd_vma offset;
7828
7829           /* .opd contains an array of 16 or 24 byte entries.  We're
7830              only interested in the reloc pointing to a function entry
7831              point.  */
7832           offset = rel->r_offset;
7833           if (rel + 1 == relend
7834               || rel[1].r_offset != offset + 8)
7835             {
7836               /* If someone messes with .opd alignment then after a
7837                  "ld -r" we might have padding in the middle of .opd.
7838                  Also, there's nothing to prevent someone putting
7839                  something silly in .opd with the assembler.  No .opd
7840                  optimization for them!  */
7841             broken_opd:
7842               (*_bfd_error_handler)
7843                 (_("%B: .opd is not a regular array of opd entries"), ibfd);
7844               broken = TRUE;
7845               break;
7846             }
7847
7848           if ((r_type = ELF64_R_TYPE (rel->r_info)) != R_PPC64_ADDR64
7849               || (r_type = ELF64_R_TYPE ((rel + 1)->r_info)) != R_PPC64_TOC)
7850             {
7851               (*_bfd_error_handler)
7852                 (_("%B: unexpected reloc type %u in .opd section"),
7853                  ibfd, r_type);
7854               broken = TRUE;
7855               break;
7856             }
7857
7858           r_symndx = ELF64_R_SYM (rel->r_info);
7859           if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
7860                           r_symndx, ibfd))
7861             goto error_ret;
7862
7863           if (sym_sec == NULL || sym_sec->owner == NULL)
7864             {
7865               const char *sym_name;
7866               if (h != NULL)
7867                 sym_name = h->root.root.string;
7868               else
7869                 sym_name = bfd_elf_sym_name (ibfd, symtab_hdr, sym,
7870                                              sym_sec);
7871
7872               (*_bfd_error_handler)
7873                 (_("%B: undefined sym `%s' in .opd section"),
7874                  ibfd, sym_name);
7875               broken = TRUE;
7876               break;
7877             }
7878
7879           /* opd entries are always for functions defined in the
7880              current input bfd.  If the symbol isn't defined in the
7881              input bfd, then we won't be using the function in this
7882              bfd;  It must be defined in a linkonce section in another
7883              bfd, or is weak.  It's also possible that we are
7884              discarding the function due to a linker script /DISCARD/,
7885              which we test for via the output_section.  */
7886           if (sym_sec->owner != ibfd
7887               || sym_sec->output_section == bfd_abs_section_ptr)
7888             need_edit = TRUE;
7889
7890           rel += 2;
7891           if (rel + 1 == relend
7892               || (rel + 2 < relend
7893                   && ELF64_R_TYPE (rel[2].r_info) == R_PPC64_TOC))
7894             ++rel;
7895
7896           if (rel == relend)
7897             {
7898               if (sec->size == offset + 24)
7899                 {
7900                   need_pad = NULL;
7901                   break;
7902                 }
7903               if (sec->size == offset + 16)
7904                 {
7905                   cnt_16b++;
7906                   break;
7907                 }
7908               goto broken_opd;
7909             }
7910           else if (rel + 1 < relend
7911                    && ELF64_R_TYPE (rel[0].r_info) == R_PPC64_ADDR64
7912                    && ELF64_R_TYPE (rel[1].r_info) == R_PPC64_TOC)
7913             {
7914               if (rel[0].r_offset == offset + 16)
7915                 cnt_16b++;
7916               else if (rel[0].r_offset != offset + 24)
7917                 goto broken_opd;
7918             }
7919           else
7920             goto broken_opd;
7921         }
7922
7923       add_aux_fields = htab->params->non_overlapping_opd && cnt_16b > 0;
7924
7925       if (!broken && (need_edit || add_aux_fields))
7926         {
7927           Elf_Internal_Rela *write_rel;
7928           Elf_Internal_Shdr *rel_hdr;
7929           bfd_byte *rptr, *wptr;
7930           bfd_byte *new_contents;
7931           bfd_size_type amt;
7932
7933           new_contents = NULL;
7934           amt = OPD_NDX (sec->size) * sizeof (long);
7935           opd = &ppc64_elf_section_data (sec)->u.opd;
7936           opd->adjust = bfd_zalloc (sec->owner, amt);
7937           if (opd->adjust == NULL)
7938             return FALSE;
7939           ppc64_elf_section_data (sec)->sec_type = sec_opd;
7940
7941           /* This seems a waste of time as input .opd sections are all
7942              zeros as generated by gcc, but I suppose there's no reason
7943              this will always be so.  We might start putting something in
7944              the third word of .opd entries.  */
7945           if ((sec->flags & SEC_IN_MEMORY) == 0)
7946             {
7947               bfd_byte *loc;
7948               if (!bfd_malloc_and_get_section (ibfd, sec, &loc))
7949                 {
7950                   if (loc != NULL)
7951                     free (loc);
7952                 error_ret:
7953                   if (local_syms != NULL
7954                       && symtab_hdr->contents != (unsigned char *) local_syms)
7955                     free (local_syms);
7956                   if (elf_section_data (sec)->relocs != relstart)
7957                     free (relstart);
7958                   return FALSE;
7959                 }
7960               sec->contents = loc;
7961               sec->flags |= (SEC_IN_MEMORY | SEC_HAS_CONTENTS);
7962             }
7963
7964           elf_section_data (sec)->relocs = relstart;
7965
7966           new_contents = sec->contents;
7967           if (add_aux_fields)
7968             {
7969               new_contents = bfd_malloc (sec->size + cnt_16b * 8);
7970               if (new_contents == NULL)
7971                 return FALSE;
7972               need_pad = NULL;
7973             }
7974           wptr = new_contents;
7975           rptr = sec->contents;
7976           write_rel = relstart;
7977           for (rel = relstart; rel < relend; )
7978             {
7979               unsigned long r_symndx;
7980               asection *sym_sec;
7981               struct elf_link_hash_entry *h;
7982               struct ppc_link_hash_entry *fdh = NULL;
7983               Elf_Internal_Sym *sym;
7984               long opd_ent_size;
7985               Elf_Internal_Rela *next_rel;
7986               bfd_boolean skip;
7987
7988               r_symndx = ELF64_R_SYM (rel->r_info);
7989               if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
7990                               r_symndx, ibfd))
7991                 goto error_ret;
7992
7993               next_rel = rel + 2;
7994               if (next_rel + 1 == relend
7995                   || (next_rel + 2 < relend
7996                       && ELF64_R_TYPE (next_rel[2].r_info) == R_PPC64_TOC))
7997                 ++next_rel;
7998
7999               /* See if the .opd entry is full 24 byte or
8000                  16 byte (with fd_aux entry overlapped with next
8001                  fd_func).  */
8002               opd_ent_size = 24;
8003               if (next_rel == relend)
8004                 {
8005                   if (sec->size == rel->r_offset + 16)
8006                     opd_ent_size = 16;
8007                 }
8008               else if (next_rel->r_offset == rel->r_offset + 16)
8009                 opd_ent_size = 16;
8010
8011               if (h != NULL
8012                   && h->root.root.string[0] == '.')
8013                 {
8014                   fdh = lookup_fdh ((struct ppc_link_hash_entry *) h, htab);
8015                   if (fdh != NULL
8016                       && fdh->elf.root.type != bfd_link_hash_defined
8017                       && fdh->elf.root.type != bfd_link_hash_defweak)
8018                     fdh = NULL;
8019                 }
8020
8021               skip = (sym_sec->owner != ibfd
8022                       || sym_sec->output_section == bfd_abs_section_ptr);
8023               if (skip)
8024                 {
8025                   if (fdh != NULL && sym_sec->owner == ibfd)
8026                     {
8027                       /* Arrange for the function descriptor sym
8028                          to be dropped.  */
8029                       fdh->elf.root.u.def.value = 0;
8030                       fdh->elf.root.u.def.section = sym_sec;
8031                     }
8032                   opd->adjust[OPD_NDX (rel->r_offset)] = -1;
8033
8034                   if (NO_OPD_RELOCS || bfd_link_relocatable (info))
8035                     rel = next_rel;
8036                   else
8037                     while (1)
8038                       {
8039                         if (!dec_dynrel_count (rel->r_info, sec, info,
8040                                                NULL, h, sym))
8041                           goto error_ret;
8042
8043                         if (++rel == next_rel)
8044                           break;
8045
8046                         r_symndx = ELF64_R_SYM (rel->r_info);
8047                         if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
8048                                         r_symndx, ibfd))
8049                           goto error_ret;
8050                       }
8051                 }
8052               else
8053                 {
8054                   /* We'll be keeping this opd entry.  */
8055                   long adjust;
8056
8057                   if (fdh != NULL)
8058                     {
8059                       /* Redefine the function descriptor symbol to
8060                          this location in the opd section.  It is
8061                          necessary to update the value here rather
8062                          than using an array of adjustments as we do
8063                          for local symbols, because various places
8064                          in the generic ELF code use the value
8065                          stored in u.def.value.  */
8066                       fdh->elf.root.u.def.value = wptr - new_contents;
8067                       fdh->adjust_done = 1;
8068                     }
8069
8070                   /* Local syms are a bit tricky.  We could
8071                      tweak them as they can be cached, but
8072                      we'd need to look through the local syms
8073                      for the function descriptor sym which we
8074                      don't have at the moment.  So keep an
8075                      array of adjustments.  */
8076                   adjust = (wptr - new_contents) - (rptr - sec->contents);
8077                   opd->adjust[OPD_NDX (rel->r_offset)] = adjust;
8078
8079                   if (wptr != rptr)
8080                     memcpy (wptr, rptr, opd_ent_size);
8081                   wptr += opd_ent_size;
8082                   if (add_aux_fields && opd_ent_size == 16)
8083                     {
8084                       memset (wptr, '\0', 8);
8085                       wptr += 8;
8086                     }
8087
8088                   /* We need to adjust any reloc offsets to point to the
8089                      new opd entries.  */
8090                   for ( ; rel != next_rel; ++rel)
8091                     {
8092                       rel->r_offset += adjust;
8093                       if (write_rel != rel)
8094                         memcpy (write_rel, rel, sizeof (*rel));
8095                       ++write_rel;
8096                     }
8097                 }
8098
8099               rptr += opd_ent_size;
8100             }
8101
8102           sec->size = wptr - new_contents;
8103           sec->reloc_count = write_rel - relstart;
8104           if (add_aux_fields)
8105             {
8106               free (sec->contents);
8107               sec->contents = new_contents;
8108             }
8109
8110           /* Fudge the header size too, as this is used later in
8111              elf_bfd_final_link if we are emitting relocs.  */
8112           rel_hdr = _bfd_elf_single_rel_hdr (sec);
8113           rel_hdr->sh_size = sec->reloc_count * rel_hdr->sh_entsize;
8114           some_edited = TRUE;
8115         }
8116       else if (elf_section_data (sec)->relocs != relstart)
8117         free (relstart);
8118
8119       if (local_syms != NULL
8120           && symtab_hdr->contents != (unsigned char *) local_syms)
8121         {
8122           if (!info->keep_memory)
8123             free (local_syms);
8124           else
8125             symtab_hdr->contents = (unsigned char *) local_syms;
8126         }
8127     }
8128
8129   if (some_edited)
8130     elf_link_hash_traverse (elf_hash_table (info), adjust_opd_syms, NULL);
8131
8132   /* If we are doing a final link and the last .opd entry is just 16 byte
8133      long, add a 8 byte padding after it.  */
8134   if (need_pad != NULL && !bfd_link_relocatable (info))
8135     {
8136       bfd_byte *p;
8137
8138       if ((need_pad->flags & SEC_IN_MEMORY) == 0)
8139         {
8140           BFD_ASSERT (need_pad->size > 0);
8141
8142           p = bfd_malloc (need_pad->size + 8);
8143           if (p == NULL)
8144             return FALSE;
8145
8146           if (! bfd_get_section_contents (need_pad->owner, need_pad,
8147                                           p, 0, need_pad->size))
8148             return FALSE;
8149
8150           need_pad->contents = p;
8151           need_pad->flags |= (SEC_IN_MEMORY | SEC_HAS_CONTENTS);
8152         }
8153       else
8154         {
8155           p = bfd_realloc (need_pad->contents, need_pad->size + 8);
8156           if (p == NULL)
8157             return FALSE;
8158
8159           need_pad->contents = p;
8160         }
8161
8162       memset (need_pad->contents + need_pad->size, 0, 8);
8163       need_pad->size += 8;
8164     }
8165
8166   return TRUE;
8167 }
8168
8169 /* Set htab->tls_get_addr and call the generic ELF tls_setup function.  */
8170
8171 asection *
8172 ppc64_elf_tls_setup (struct bfd_link_info *info)
8173 {
8174   struct ppc_link_hash_table *htab;
8175
8176   htab = ppc_hash_table (info);
8177   if (htab == NULL)
8178     return NULL;
8179
8180   if (abiversion (info->output_bfd) == 1)
8181     htab->opd_abi = 1;
8182
8183   if (htab->params->no_multi_toc)
8184     htab->do_multi_toc = 0;
8185   else if (!htab->do_multi_toc)
8186     htab->params->no_multi_toc = 1;
8187
8188   htab->tls_get_addr = ((struct ppc_link_hash_entry *)
8189                         elf_link_hash_lookup (&htab->elf, ".__tls_get_addr",
8190                                               FALSE, FALSE, TRUE));
8191   /* Move dynamic linking info to the function descriptor sym.  */
8192   if (htab->tls_get_addr != NULL)
8193     func_desc_adjust (&htab->tls_get_addr->elf, info);
8194   htab->tls_get_addr_fd = ((struct ppc_link_hash_entry *)
8195                            elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
8196                                                  FALSE, FALSE, TRUE));
8197   if (htab->params->tls_get_addr_opt)
8198     {
8199       struct elf_link_hash_entry *opt, *opt_fd, *tga, *tga_fd;
8200
8201       opt = elf_link_hash_lookup (&htab->elf, ".__tls_get_addr_opt",
8202                                   FALSE, FALSE, TRUE);
8203       if (opt != NULL)
8204         func_desc_adjust (opt, info);
8205       opt_fd = elf_link_hash_lookup (&htab->elf, "__tls_get_addr_opt",
8206                                      FALSE, FALSE, TRUE);
8207       if (opt_fd != NULL
8208           && (opt_fd->root.type == bfd_link_hash_defined
8209               || opt_fd->root.type == bfd_link_hash_defweak))
8210         {
8211           /* If glibc supports an optimized __tls_get_addr call stub,
8212              signalled by the presence of __tls_get_addr_opt, and we'll
8213              be calling __tls_get_addr via a plt call stub, then
8214              make __tls_get_addr point to __tls_get_addr_opt.  */
8215           tga_fd = &htab->tls_get_addr_fd->elf;
8216           if (htab->elf.dynamic_sections_created
8217               && tga_fd != NULL
8218               && (tga_fd->type == STT_FUNC
8219                   || tga_fd->needs_plt)
8220               && !(SYMBOL_CALLS_LOCAL (info, tga_fd)
8221                    || (ELF_ST_VISIBILITY (tga_fd->other) != STV_DEFAULT
8222                        && tga_fd->root.type == bfd_link_hash_undefweak)))
8223             {
8224               struct plt_entry *ent;
8225
8226               for (ent = tga_fd->plt.plist; ent != NULL; ent = ent->next)
8227                 if (ent->plt.refcount > 0)
8228                   break;
8229               if (ent != NULL)
8230                 {
8231                   tga_fd->root.type = bfd_link_hash_indirect;
8232                   tga_fd->root.u.i.link = &opt_fd->root;
8233                   ppc64_elf_copy_indirect_symbol (info, opt_fd, tga_fd);
8234                   opt_fd->forced_local = 0;
8235                   if (opt_fd->dynindx != -1)
8236                     {
8237                       /* Use __tls_get_addr_opt in dynamic relocations.  */
8238                       opt_fd->dynindx = -1;
8239                       _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
8240                                               opt_fd->dynstr_index);
8241                       if (!bfd_elf_link_record_dynamic_symbol (info, opt_fd))
8242                         return NULL;
8243                     }
8244                   htab->tls_get_addr_fd = (struct ppc_link_hash_entry *) opt_fd;
8245                   tga = &htab->tls_get_addr->elf;
8246                   if (opt != NULL && tga != NULL)
8247                     {
8248                       tga->root.type = bfd_link_hash_indirect;
8249                       tga->root.u.i.link = &opt->root;
8250                       ppc64_elf_copy_indirect_symbol (info, opt, tga);
8251                       opt->forced_local = 0;
8252                       _bfd_elf_link_hash_hide_symbol (info, opt,
8253                                                       tga->forced_local);
8254                       htab->tls_get_addr = (struct ppc_link_hash_entry *) opt;
8255                     }
8256                   htab->tls_get_addr_fd->oh = htab->tls_get_addr;
8257                   htab->tls_get_addr_fd->is_func_descriptor = 1;
8258                   if (htab->tls_get_addr != NULL)
8259                     {
8260                       htab->tls_get_addr->oh = htab->tls_get_addr_fd;
8261                       htab->tls_get_addr->is_func = 1;
8262                     }
8263                 }
8264             }
8265         }
8266       else if (htab->params->tls_get_addr_opt < 0)
8267         htab->params->tls_get_addr_opt = 0;
8268     }
8269   return _bfd_elf_tls_setup (info->output_bfd, info);
8270 }
8271
8272 /* Return TRUE iff REL is a branch reloc with a global symbol matching
8273    HASH1 or HASH2.  */
8274
8275 static bfd_boolean
8276 branch_reloc_hash_match (const bfd *ibfd,
8277                          const Elf_Internal_Rela *rel,
8278                          const struct ppc_link_hash_entry *hash1,
8279                          const struct ppc_link_hash_entry *hash2)
8280 {
8281   Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
8282   enum elf_ppc64_reloc_type r_type = ELF64_R_TYPE (rel->r_info);
8283   unsigned int r_symndx = ELF64_R_SYM (rel->r_info);
8284
8285   if (r_symndx >= symtab_hdr->sh_info && is_branch_reloc (r_type))
8286     {
8287       struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
8288       struct elf_link_hash_entry *h;
8289
8290       h = sym_hashes[r_symndx - symtab_hdr->sh_info];
8291       h = elf_follow_link (h);
8292       if (h == &hash1->elf || h == &hash2->elf)
8293         return TRUE;
8294     }
8295   return FALSE;
8296 }
8297
8298 /* Run through all the TLS relocs looking for optimization
8299    opportunities.  The linker has been hacked (see ppc64elf.em) to do
8300    a preliminary section layout so that we know the TLS segment
8301    offsets.  We can't optimize earlier because some optimizations need
8302    to know the tp offset, and we need to optimize before allocating
8303    dynamic relocations.  */
8304
8305 bfd_boolean
8306 ppc64_elf_tls_optimize (struct bfd_link_info *info)
8307 {
8308   bfd *ibfd;
8309   asection *sec;
8310   struct ppc_link_hash_table *htab;
8311   unsigned char *toc_ref;
8312   int pass;
8313
8314   if (!bfd_link_executable (info))
8315     return TRUE;
8316
8317   htab = ppc_hash_table (info);
8318   if (htab == NULL)
8319     return FALSE;
8320
8321   /* Make two passes over the relocs.  On the first pass, mark toc
8322      entries involved with tls relocs, and check that tls relocs
8323      involved in setting up a tls_get_addr call are indeed followed by
8324      such a call.  If they are not, we can't do any tls optimization.
8325      On the second pass twiddle tls_mask flags to notify
8326      relocate_section that optimization can be done, and adjust got
8327      and plt refcounts.  */
8328   toc_ref = NULL;
8329   for (pass = 0; pass < 2; ++pass)
8330     for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
8331       {
8332         Elf_Internal_Sym *locsyms = NULL;
8333         asection *toc = bfd_get_section_by_name (ibfd, ".toc");
8334
8335         for (sec = ibfd->sections; sec != NULL; sec = sec->next)
8336           if (sec->has_tls_reloc && !bfd_is_abs_section (sec->output_section))
8337             {
8338               Elf_Internal_Rela *relstart, *rel, *relend;
8339               bfd_boolean found_tls_get_addr_arg = 0;
8340
8341               /* Read the relocations.  */
8342               relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
8343                                                     info->keep_memory);
8344               if (relstart == NULL)
8345                 {
8346                   free (toc_ref);
8347                   return FALSE;
8348                 }
8349
8350               relend = relstart + sec->reloc_count;
8351               for (rel = relstart; rel < relend; rel++)
8352                 {
8353                   enum elf_ppc64_reloc_type r_type;
8354                   unsigned long r_symndx;
8355                   struct elf_link_hash_entry *h;
8356                   Elf_Internal_Sym *sym;
8357                   asection *sym_sec;
8358                   unsigned char *tls_mask;
8359                   unsigned char tls_set, tls_clear, tls_type = 0;
8360                   bfd_vma value;
8361                   bfd_boolean ok_tprel, is_local;
8362                   long toc_ref_index = 0;
8363                   int expecting_tls_get_addr = 0;
8364                   bfd_boolean ret = FALSE;
8365
8366                   r_symndx = ELF64_R_SYM (rel->r_info);
8367                   if (!get_sym_h (&h, &sym, &sym_sec, &tls_mask, &locsyms,
8368                                   r_symndx, ibfd))
8369                     {
8370                     err_free_rel:
8371                       if (elf_section_data (sec)->relocs != relstart)
8372                         free (relstart);
8373                       if (toc_ref != NULL)
8374                         free (toc_ref);
8375                       if (locsyms != NULL
8376                           && (elf_symtab_hdr (ibfd).contents
8377                               != (unsigned char *) locsyms))
8378                         free (locsyms);
8379                       return ret;
8380                     }
8381
8382                   if (h != NULL)
8383                     {
8384                       if (h->root.type == bfd_link_hash_defined
8385                           || h->root.type == bfd_link_hash_defweak)
8386                         value = h->root.u.def.value;
8387                       else if (h->root.type == bfd_link_hash_undefweak)
8388                         value = 0;
8389                       else
8390                         {
8391                           found_tls_get_addr_arg = 0;
8392                           continue;
8393                         }
8394                     }
8395                   else
8396                     /* Symbols referenced by TLS relocs must be of type
8397                        STT_TLS.  So no need for .opd local sym adjust.  */
8398                     value = sym->st_value;
8399
8400                   ok_tprel = FALSE;
8401                   is_local = FALSE;
8402                   if (h == NULL
8403                       || !h->def_dynamic)
8404                     {
8405                       is_local = TRUE;
8406                       if (h != NULL
8407                           && h->root.type == bfd_link_hash_undefweak)
8408                         ok_tprel = TRUE;
8409                       else if (sym_sec != NULL
8410                                && sym_sec->output_section != NULL)
8411                         {
8412                           value += sym_sec->output_offset;
8413                           value += sym_sec->output_section->vma;
8414                           value -= htab->elf.tls_sec->vma;
8415                           ok_tprel = (value + TP_OFFSET + ((bfd_vma) 1 << 31)
8416                                       < (bfd_vma) 1 << 32);
8417                         }
8418                     }
8419
8420                   r_type = ELF64_R_TYPE (rel->r_info);
8421                   /* If this section has old-style __tls_get_addr calls
8422                      without marker relocs, then check that each
8423                      __tls_get_addr call reloc is preceded by a reloc
8424                      that conceivably belongs to the __tls_get_addr arg
8425                      setup insn.  If we don't find matching arg setup
8426                      relocs, don't do any tls optimization.  */
8427                   if (pass == 0
8428                       && sec->has_tls_get_addr_call
8429                       && h != NULL
8430                       && (h == &htab->tls_get_addr->elf
8431                           || h == &htab->tls_get_addr_fd->elf)
8432                       && !found_tls_get_addr_arg
8433                       && is_branch_reloc (r_type))
8434                     {
8435                       info->callbacks->minfo (_("%H __tls_get_addr lost arg, "
8436                                                 "TLS optimization disabled\n"),
8437                                               ibfd, sec, rel->r_offset);
8438                       ret = TRUE;
8439                       goto err_free_rel;
8440                     }
8441
8442                   found_tls_get_addr_arg = 0;
8443                   switch (r_type)
8444                     {
8445                     case R_PPC64_GOT_TLSLD16:
8446                     case R_PPC64_GOT_TLSLD16_LO:
8447                       expecting_tls_get_addr = 1;
8448                       found_tls_get_addr_arg = 1;
8449                       /* Fall thru */
8450
8451                     case R_PPC64_GOT_TLSLD16_HI:
8452                     case R_PPC64_GOT_TLSLD16_HA:
8453                       /* These relocs should never be against a symbol
8454                          defined in a shared lib.  Leave them alone if
8455                          that turns out to be the case.  */
8456                       if (!is_local)
8457                         continue;
8458
8459                       /* LD -> LE */
8460                       tls_set = 0;
8461                       tls_clear = TLS_LD;
8462                       tls_type = TLS_TLS | TLS_LD;
8463                       break;
8464
8465                     case R_PPC64_GOT_TLSGD16:
8466                     case R_PPC64_GOT_TLSGD16_LO:
8467                       expecting_tls_get_addr = 1;
8468                       found_tls_get_addr_arg = 1;
8469                       /* Fall thru */
8470
8471                     case R_PPC64_GOT_TLSGD16_HI:
8472                     case R_PPC64_GOT_TLSGD16_HA:
8473                       if (ok_tprel)
8474                         /* GD -> LE */
8475                         tls_set = 0;
8476                       else
8477                         /* GD -> IE */
8478                         tls_set = TLS_TLS | TLS_TPRELGD;
8479                       tls_clear = TLS_GD;
8480                       tls_type = TLS_TLS | TLS_GD;
8481                       break;
8482
8483                     case R_PPC64_GOT_TPREL16_DS:
8484                     case R_PPC64_GOT_TPREL16_LO_DS:
8485                     case R_PPC64_GOT_TPREL16_HI:
8486                     case R_PPC64_GOT_TPREL16_HA:
8487                       if (ok_tprel)
8488                         {
8489                           /* IE -> LE */
8490                           tls_set = 0;
8491                           tls_clear = TLS_TPREL;
8492                           tls_type = TLS_TLS | TLS_TPREL;
8493                           break;
8494                         }
8495                       continue;
8496
8497                     case R_PPC64_TLSGD:
8498                     case R_PPC64_TLSLD:
8499                       found_tls_get_addr_arg = 1;
8500                       /* Fall thru */
8501
8502                     case R_PPC64_TLS:
8503                     case R_PPC64_TOC16:
8504                     case R_PPC64_TOC16_LO:
8505                       if (sym_sec == NULL || sym_sec != toc)
8506                         continue;
8507
8508                       /* Mark this toc entry as referenced by a TLS
8509                          code sequence.  We can do that now in the
8510                          case of R_PPC64_TLS, and after checking for
8511                          tls_get_addr for the TOC16 relocs.  */
8512                       if (toc_ref == NULL)
8513                         toc_ref = bfd_zmalloc (toc->output_section->rawsize / 8);
8514                       if (toc_ref == NULL)
8515                         goto err_free_rel;
8516
8517                       if (h != NULL)
8518                         value = h->root.u.def.value;
8519                       else
8520                         value = sym->st_value;
8521                       value += rel->r_addend;
8522                       if (value % 8 != 0)
8523                         continue;
8524                       BFD_ASSERT (value < toc->size
8525                                   && toc->output_offset % 8 == 0);
8526                       toc_ref_index = (value + toc->output_offset) / 8;
8527                       if (r_type == R_PPC64_TLS
8528                           || r_type == R_PPC64_TLSGD
8529                           || r_type == R_PPC64_TLSLD)
8530                         {
8531                           toc_ref[toc_ref_index] = 1;
8532                           continue;
8533                         }
8534
8535                       if (pass != 0 && toc_ref[toc_ref_index] == 0)
8536                         continue;
8537
8538                       tls_set = 0;
8539                       tls_clear = 0;
8540                       expecting_tls_get_addr = 2;
8541                       break;
8542
8543                     case R_PPC64_TPREL64:
8544                       if (pass == 0
8545                           || sec != toc
8546                           || toc_ref == NULL
8547                           || !toc_ref[(rel->r_offset + toc->output_offset) / 8])
8548                         continue;
8549                       if (ok_tprel)
8550                         {
8551                           /* IE -> LE */
8552                           tls_set = TLS_EXPLICIT;
8553                           tls_clear = TLS_TPREL;
8554                           break;
8555                         }
8556                       continue;
8557
8558                     case R_PPC64_DTPMOD64:
8559                       if (pass == 0
8560                           || sec != toc
8561                           || toc_ref == NULL
8562                           || !toc_ref[(rel->r_offset + toc->output_offset) / 8])
8563                         continue;
8564                       if (rel + 1 < relend
8565                           && (rel[1].r_info
8566                               == ELF64_R_INFO (r_symndx, R_PPC64_DTPREL64))
8567                           && rel[1].r_offset == rel->r_offset + 8)
8568                         {
8569                           if (ok_tprel)
8570                             /* GD -> LE */
8571                             tls_set = TLS_EXPLICIT | TLS_GD;
8572                           else
8573                             /* GD -> IE */
8574                             tls_set = TLS_EXPLICIT | TLS_GD | TLS_TPRELGD;
8575                           tls_clear = TLS_GD;
8576                         }
8577                       else
8578                         {
8579                           if (!is_local)
8580                             continue;
8581
8582                           /* LD -> LE */
8583                           tls_set = TLS_EXPLICIT;
8584                           tls_clear = TLS_LD;
8585                         }
8586                       break;
8587
8588                     default:
8589                       continue;
8590                     }
8591
8592                   if (pass == 0)
8593                     {
8594                       if (!expecting_tls_get_addr
8595                           || !sec->has_tls_get_addr_call)
8596                         continue;
8597
8598                       if (rel + 1 < relend
8599                           && branch_reloc_hash_match (ibfd, rel + 1,
8600                                                       htab->tls_get_addr,
8601                                                       htab->tls_get_addr_fd))
8602                         {
8603                           if (expecting_tls_get_addr == 2)
8604                             {
8605                               /* Check for toc tls entries.  */
8606                               unsigned char *toc_tls;
8607                               int retval;
8608
8609                               retval = get_tls_mask (&toc_tls, NULL, NULL,
8610                                                      &locsyms,
8611                                                      rel, ibfd);
8612                               if (retval == 0)
8613                                 goto err_free_rel;
8614                               if (toc_tls != NULL)
8615                                 {
8616                                   if ((*toc_tls & (TLS_GD | TLS_LD)) != 0)
8617                                     found_tls_get_addr_arg = 1;
8618                                   if (retval > 1)
8619                                     toc_ref[toc_ref_index] = 1;
8620                                 }
8621                             }
8622                           continue;
8623                         }
8624
8625                       if (expecting_tls_get_addr != 1)
8626                         continue;
8627
8628                       /* Uh oh, we didn't find the expected call.  We
8629                          could just mark this symbol to exclude it
8630                          from tls optimization but it's safer to skip
8631                          the entire optimization.  */
8632                       info->callbacks->minfo (_("%H arg lost __tls_get_addr, "
8633                                                 "TLS optimization disabled\n"),
8634                                               ibfd, sec, rel->r_offset);
8635                       ret = TRUE;
8636                       goto err_free_rel;
8637                     }
8638
8639                   if (expecting_tls_get_addr && htab->tls_get_addr != NULL)
8640                     {
8641                       struct plt_entry *ent;
8642                       for (ent = htab->tls_get_addr->elf.plt.plist;
8643                            ent != NULL;
8644                            ent = ent->next)
8645                         if (ent->addend == 0)
8646                           {
8647                             if (ent->plt.refcount > 0)
8648                               {
8649                                 ent->plt.refcount -= 1;
8650                                 expecting_tls_get_addr = 0;
8651                               }
8652                             break;
8653                           }
8654                     }
8655
8656                   if (expecting_tls_get_addr && htab->tls_get_addr_fd != NULL)
8657                     {
8658                       struct plt_entry *ent;
8659                       for (ent = htab->tls_get_addr_fd->elf.plt.plist;
8660                            ent != NULL;
8661                            ent = ent->next)
8662                         if (ent->addend == 0)
8663                           {
8664                             if (ent->plt.refcount > 0)
8665                               ent->plt.refcount -= 1;
8666                             break;
8667                           }
8668                     }
8669
8670                   if (tls_clear == 0)
8671                     continue;
8672
8673                   if ((tls_set & TLS_EXPLICIT) == 0)
8674                     {
8675                       struct got_entry *ent;
8676
8677                       /* Adjust got entry for this reloc.  */
8678                       if (h != NULL)
8679                         ent = h->got.glist;
8680                       else
8681                         ent = elf_local_got_ents (ibfd)[r_symndx];
8682
8683                       for (; ent != NULL; ent = ent->next)
8684                         if (ent->addend == rel->r_addend
8685                             && ent->owner == ibfd
8686                             && ent->tls_type == tls_type)
8687                           break;
8688                       if (ent == NULL)
8689                         abort ();
8690
8691                       if (tls_set == 0)
8692                         {
8693                           /* We managed to get rid of a got entry.  */
8694                           if (ent->got.refcount > 0)
8695                             ent->got.refcount -= 1;
8696                         }
8697                     }
8698                   else
8699                     {
8700                       /* If we got rid of a DTPMOD/DTPREL reloc pair then
8701                          we'll lose one or two dyn relocs.  */
8702                       if (!dec_dynrel_count (rel->r_info, sec, info,
8703                                              NULL, h, sym))
8704                         return FALSE;
8705
8706                       if (tls_set == (TLS_EXPLICIT | TLS_GD))
8707                         {
8708                           if (!dec_dynrel_count ((rel + 1)->r_info, sec, info,
8709                                                  NULL, h, sym))
8710                             return FALSE;
8711                         }
8712                     }
8713
8714                   *tls_mask |= tls_set;
8715                   *tls_mask &= ~tls_clear;
8716                 }
8717
8718               if (elf_section_data (sec)->relocs != relstart)
8719                 free (relstart);
8720             }
8721
8722         if (locsyms != NULL
8723             && (elf_symtab_hdr (ibfd).contents != (unsigned char *) locsyms))
8724           {
8725             if (!info->keep_memory)
8726               free (locsyms);
8727             else
8728               elf_symtab_hdr (ibfd).contents = (unsigned char *) locsyms;
8729           }
8730       }
8731
8732   if (toc_ref != NULL)
8733     free (toc_ref);
8734   return TRUE;
8735 }
8736
8737 /* Called via elf_link_hash_traverse from ppc64_elf_edit_toc to adjust
8738    the values of any global symbols in a toc section that has been
8739    edited.  Globals in toc sections should be a rarity, so this function
8740    sets a flag if any are found in toc sections other than the one just
8741    edited, so that futher hash table traversals can be avoided.  */
8742
8743 struct adjust_toc_info
8744 {
8745   asection *toc;
8746   unsigned long *skip;
8747   bfd_boolean global_toc_syms;
8748 };
8749
8750 enum toc_skip_enum { ref_from_discarded = 1, can_optimize = 2 };
8751
8752 static bfd_boolean
8753 adjust_toc_syms (struct elf_link_hash_entry *h, void *inf)
8754 {
8755   struct ppc_link_hash_entry *eh;
8756   struct adjust_toc_info *toc_inf = (struct adjust_toc_info *) inf;
8757   unsigned long i;
8758
8759   if (h->root.type != bfd_link_hash_defined
8760       && h->root.type != bfd_link_hash_defweak)
8761     return TRUE;
8762
8763   eh = (struct ppc_link_hash_entry *) h;
8764   if (eh->adjust_done)
8765     return TRUE;
8766
8767   if (eh->elf.root.u.def.section == toc_inf->toc)
8768     {
8769       if (eh->elf.root.u.def.value > toc_inf->toc->rawsize)
8770         i = toc_inf->toc->rawsize >> 3;
8771       else
8772         i = eh->elf.root.u.def.value >> 3;
8773
8774       if ((toc_inf->skip[i] & (ref_from_discarded | can_optimize)) != 0)
8775         {
8776           (*_bfd_error_handler)
8777             (_("%s defined on removed toc entry"), eh->elf.root.root.string);
8778           do
8779             ++i;
8780           while ((toc_inf->skip[i] & (ref_from_discarded | can_optimize)) != 0);
8781           eh->elf.root.u.def.value = (bfd_vma) i << 3;
8782         }
8783
8784       eh->elf.root.u.def.value -= toc_inf->skip[i];
8785       eh->adjust_done = 1;
8786     }
8787   else if (strcmp (eh->elf.root.u.def.section->name, ".toc") == 0)
8788     toc_inf->global_toc_syms = TRUE;
8789
8790   return TRUE;
8791 }
8792
8793 /* Return TRUE iff INSN is one we expect on a _LO variety toc/got reloc.  */
8794
8795 static bfd_boolean
8796 ok_lo_toc_insn (unsigned int insn)
8797 {
8798   return ((insn & (0x3f << 26)) == 14u << 26 /* addi */
8799           || (insn & (0x3f << 26)) == 32u << 26 /* lwz */
8800           || (insn & (0x3f << 26)) == 34u << 26 /* lbz */
8801           || (insn & (0x3f << 26)) == 36u << 26 /* stw */
8802           || (insn & (0x3f << 26)) == 38u << 26 /* stb */
8803           || (insn & (0x3f << 26)) == 40u << 26 /* lhz */
8804           || (insn & (0x3f << 26)) == 42u << 26 /* lha */
8805           || (insn & (0x3f << 26)) == 44u << 26 /* sth */
8806           || (insn & (0x3f << 26)) == 46u << 26 /* lmw */
8807           || (insn & (0x3f << 26)) == 47u << 26 /* stmw */
8808           || (insn & (0x3f << 26)) == 48u << 26 /* lfs */
8809           || (insn & (0x3f << 26)) == 50u << 26 /* lfd */
8810           || (insn & (0x3f << 26)) == 52u << 26 /* stfs */
8811           || (insn & (0x3f << 26)) == 54u << 26 /* stfd */
8812           || ((insn & (0x3f << 26)) == 58u << 26 /* lwa,ld,lmd */
8813               && (insn & 3) != 1)
8814           || ((insn & (0x3f << 26)) == 62u << 26 /* std, stmd */
8815               && ((insn & 3) == 0 || (insn & 3) == 3))
8816           || (insn & (0x3f << 26)) == 12u << 26 /* addic */);
8817 }
8818
8819 /* Examine all relocs referencing .toc sections in order to remove
8820    unused .toc entries.  */
8821
8822 bfd_boolean
8823 ppc64_elf_edit_toc (struct bfd_link_info *info)
8824 {
8825   bfd *ibfd;
8826   struct adjust_toc_info toc_inf;
8827   struct ppc_link_hash_table *htab = ppc_hash_table (info);
8828
8829   htab->do_toc_opt = 1;
8830   toc_inf.global_toc_syms = TRUE;
8831   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
8832     {
8833       asection *toc, *sec;
8834       Elf_Internal_Shdr *symtab_hdr;
8835       Elf_Internal_Sym *local_syms;
8836       Elf_Internal_Rela *relstart, *rel, *toc_relocs;
8837       unsigned long *skip, *drop;
8838       unsigned char *used;
8839       unsigned char *keep, last, some_unused;
8840
8841       if (!is_ppc64_elf (ibfd))
8842         continue;
8843
8844       toc = bfd_get_section_by_name (ibfd, ".toc");
8845       if (toc == NULL
8846           || toc->size == 0
8847           || toc->sec_info_type == SEC_INFO_TYPE_JUST_SYMS
8848           || discarded_section (toc))
8849         continue;
8850
8851       toc_relocs = NULL;
8852       local_syms = NULL;
8853       symtab_hdr = &elf_symtab_hdr (ibfd);
8854
8855       /* Look at sections dropped from the final link.  */
8856       skip = NULL;
8857       relstart = NULL;
8858       for (sec = ibfd->sections; sec != NULL; sec = sec->next)
8859         {
8860           if (sec->reloc_count == 0
8861               || !discarded_section (sec)
8862               || get_opd_info (sec)
8863               || (sec->flags & SEC_ALLOC) == 0
8864               || (sec->flags & SEC_DEBUGGING) != 0)
8865             continue;
8866
8867           relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL, FALSE);
8868           if (relstart == NULL)
8869             goto error_ret;
8870
8871           /* Run through the relocs to see which toc entries might be
8872              unused.  */
8873           for (rel = relstart; rel < relstart + sec->reloc_count; ++rel)
8874             {
8875               enum elf_ppc64_reloc_type r_type;
8876               unsigned long r_symndx;
8877               asection *sym_sec;
8878               struct elf_link_hash_entry *h;
8879               Elf_Internal_Sym *sym;
8880               bfd_vma val;
8881
8882               r_type = ELF64_R_TYPE (rel->r_info);
8883               switch (r_type)
8884                 {
8885                 default:
8886                   continue;
8887
8888                 case R_PPC64_TOC16:
8889                 case R_PPC64_TOC16_LO:
8890                 case R_PPC64_TOC16_HI:
8891                 case R_PPC64_TOC16_HA:
8892                 case R_PPC64_TOC16_DS:
8893                 case R_PPC64_TOC16_LO_DS:
8894                   break;
8895                 }
8896
8897               r_symndx = ELF64_R_SYM (rel->r_info);
8898               if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
8899                               r_symndx, ibfd))
8900                 goto error_ret;
8901
8902               if (sym_sec != toc)
8903                 continue;
8904
8905               if (h != NULL)
8906                 val = h->root.u.def.value;
8907               else
8908                 val = sym->st_value;
8909               val += rel->r_addend;
8910
8911               if (val >= toc->size)
8912                 continue;
8913
8914               /* Anything in the toc ought to be aligned to 8 bytes.
8915                  If not, don't mark as unused.  */
8916               if (val & 7)
8917                 continue;
8918
8919               if (skip == NULL)
8920                 {
8921                   skip = bfd_zmalloc (sizeof (*skip) * (toc->size + 15) / 8);
8922                   if (skip == NULL)
8923                     goto error_ret;
8924                 }
8925
8926               skip[val >> 3] = ref_from_discarded;
8927             }
8928
8929           if (elf_section_data (sec)->relocs != relstart)
8930             free (relstart);
8931         }
8932
8933       /* For largetoc loads of address constants, we can convert
8934          .  addis rx,2,addr@got@ha
8935          .  ld ry,addr@got@l(rx)
8936          to
8937          .  addis rx,2,addr@toc@ha
8938          .  addi ry,rx,addr@toc@l
8939          when addr is within 2G of the toc pointer.  This then means
8940          that the word storing "addr" in the toc is no longer needed.  */
8941
8942       if (!ppc64_elf_tdata (ibfd)->has_small_toc_reloc
8943           && toc->output_section->rawsize < (bfd_vma) 1 << 31
8944           && toc->reloc_count != 0)
8945         {
8946           /* Read toc relocs.  */
8947           toc_relocs = _bfd_elf_link_read_relocs (ibfd, toc, NULL, NULL,
8948                                                   info->keep_memory);
8949           if (toc_relocs == NULL)
8950             goto error_ret;
8951
8952           for (rel = toc_relocs; rel < toc_relocs + toc->reloc_count; ++rel)
8953             {
8954               enum elf_ppc64_reloc_type r_type;
8955               unsigned long r_symndx;
8956               asection *sym_sec;
8957               struct elf_link_hash_entry *h;
8958               Elf_Internal_Sym *sym;
8959               bfd_vma val, addr;
8960
8961               r_type = ELF64_R_TYPE (rel->r_info);
8962               if (r_type != R_PPC64_ADDR64)
8963                 continue;
8964
8965               r_symndx = ELF64_R_SYM (rel->r_info);
8966               if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
8967                               r_symndx, ibfd))
8968                 goto error_ret;
8969
8970               if (sym_sec == NULL
8971                   || sym_sec->output_section == NULL
8972                   || discarded_section (sym_sec))
8973                 continue;
8974
8975               if (!SYMBOL_REFERENCES_LOCAL (info, h))
8976                 continue;
8977
8978               if (h != NULL)
8979                 {
8980                   if (h->type == STT_GNU_IFUNC)
8981                     continue;
8982                   val = h->root.u.def.value;
8983                 }
8984               else
8985                 {
8986                   if (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
8987                     continue;
8988                   val = sym->st_value;
8989                 }
8990               val += rel->r_addend;
8991               val += sym_sec->output_section->vma + sym_sec->output_offset;
8992
8993               /* We don't yet know the exact toc pointer value, but we
8994                  know it will be somewhere in the toc section.  Don't
8995                  optimize if the difference from any possible toc
8996                  pointer is outside [ff..f80008000, 7fff7fff].  */
8997               addr = toc->output_section->vma + TOC_BASE_OFF;
8998               if (val - addr + (bfd_vma) 0x80008000 >= (bfd_vma) 1 << 32)
8999                 continue;
9000
9001               addr = toc->output_section->vma + toc->output_section->rawsize;
9002               if (val - addr + (bfd_vma) 0x80008000 >= (bfd_vma) 1 << 32)
9003                 continue;
9004
9005               if (skip == NULL)
9006                 {
9007                   skip = bfd_zmalloc (sizeof (*skip) * (toc->size + 15) / 8);
9008                   if (skip == NULL)
9009                     goto error_ret;
9010                 }
9011
9012               skip[rel->r_offset >> 3]
9013                 |= can_optimize | ((rel - toc_relocs) << 2);
9014             }
9015         }
9016
9017       if (skip == NULL)
9018         continue;
9019
9020       used = bfd_zmalloc (sizeof (*used) * (toc->size + 7) / 8);
9021       if (used == NULL)
9022         {
9023         error_ret:
9024           if (local_syms != NULL
9025               && symtab_hdr->contents != (unsigned char *) local_syms)
9026             free (local_syms);
9027           if (sec != NULL
9028               && relstart != NULL
9029               && elf_section_data (sec)->relocs != relstart)
9030             free (relstart);
9031           if (toc_relocs != NULL
9032               && elf_section_data (toc)->relocs != toc_relocs)
9033             free (toc_relocs);
9034           if (skip != NULL)
9035             free (skip);
9036           return FALSE;
9037         }
9038
9039       /* Now check all kept sections that might reference the toc.
9040          Check the toc itself last.  */
9041       for (sec = (ibfd->sections == toc && toc->next ? toc->next
9042                   : ibfd->sections);
9043            sec != NULL;
9044            sec = (sec == toc ? NULL
9045                   : sec->next == NULL ? toc
9046                   : sec->next == toc && toc->next ? toc->next
9047                   : sec->next))
9048         {
9049           int repeat;
9050
9051           if (sec->reloc_count == 0
9052               || discarded_section (sec)
9053               || get_opd_info (sec)
9054               || (sec->flags & SEC_ALLOC) == 0
9055               || (sec->flags & SEC_DEBUGGING) != 0)
9056             continue;
9057
9058           relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
9059                                                 info->keep_memory);
9060           if (relstart == NULL)
9061             {
9062               free (used);
9063               goto error_ret;
9064             }
9065
9066           /* Mark toc entries referenced as used.  */
9067           do
9068             {
9069               repeat = 0;
9070               for (rel = relstart; rel < relstart + sec->reloc_count; ++rel)
9071                 {
9072                   enum elf_ppc64_reloc_type r_type;
9073                   unsigned long r_symndx;
9074                   asection *sym_sec;
9075                   struct elf_link_hash_entry *h;
9076                   Elf_Internal_Sym *sym;
9077                   bfd_vma val;
9078                   enum {no_check, check_lo, check_ha} insn_check;
9079
9080                   r_type = ELF64_R_TYPE (rel->r_info);
9081                   switch (r_type)
9082                     {
9083                     default:
9084                       insn_check = no_check;
9085                       break;
9086
9087                     case R_PPC64_GOT_TLSLD16_HA:
9088                     case R_PPC64_GOT_TLSGD16_HA:
9089                     case R_PPC64_GOT_TPREL16_HA:
9090                     case R_PPC64_GOT_DTPREL16_HA:
9091                     case R_PPC64_GOT16_HA:
9092                     case R_PPC64_TOC16_HA:
9093                       insn_check = check_ha;
9094                       break;
9095
9096                     case R_PPC64_GOT_TLSLD16_LO:
9097                     case R_PPC64_GOT_TLSGD16_LO:
9098                     case R_PPC64_GOT_TPREL16_LO_DS:
9099                     case R_PPC64_GOT_DTPREL16_LO_DS:
9100                     case R_PPC64_GOT16_LO:
9101                     case R_PPC64_GOT16_LO_DS:
9102                     case R_PPC64_TOC16_LO:
9103                     case R_PPC64_TOC16_LO_DS:
9104                       insn_check = check_lo;
9105                       break;
9106                     }
9107
9108                   if (insn_check != no_check)
9109                     {
9110                       bfd_vma off = rel->r_offset & ~3;
9111                       unsigned char buf[4];
9112                       unsigned int insn;
9113
9114                       if (!bfd_get_section_contents (ibfd, sec, buf, off, 4))
9115                         {
9116                           free (used);
9117                           goto error_ret;
9118                         }
9119                       insn = bfd_get_32 (ibfd, buf);
9120                       if (insn_check == check_lo
9121                           ? !ok_lo_toc_insn (insn)
9122                           : ((insn & ((0x3f << 26) | 0x1f << 16))
9123                              != ((15u << 26) | (2 << 16)) /* addis rt,2,imm */))
9124                         {
9125                           char str[12];
9126
9127                           ppc64_elf_tdata (ibfd)->unexpected_toc_insn = 1;
9128                           sprintf (str, "%#08x", insn);
9129                           info->callbacks->einfo
9130                             (_("%P: %H: toc optimization is not supported for"
9131                                " %s instruction.\n"),
9132                              ibfd, sec, rel->r_offset & ~3, str);
9133                         }
9134                     }
9135
9136                   switch (r_type)
9137                     {
9138                     case R_PPC64_TOC16:
9139                     case R_PPC64_TOC16_LO:
9140                     case R_PPC64_TOC16_HI:
9141                     case R_PPC64_TOC16_HA:
9142                     case R_PPC64_TOC16_DS:
9143                     case R_PPC64_TOC16_LO_DS:
9144                       /* In case we're taking addresses of toc entries.  */
9145                     case R_PPC64_ADDR64:
9146                       break;
9147
9148                     default:
9149                       continue;
9150                     }
9151
9152                   r_symndx = ELF64_R_SYM (rel->r_info);
9153                   if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
9154                                   r_symndx, ibfd))
9155                     {
9156                       free (used);
9157                       goto error_ret;
9158                     }
9159
9160                   if (sym_sec != toc)
9161                     continue;
9162
9163                   if (h != NULL)
9164                     val = h->root.u.def.value;
9165                   else
9166                     val = sym->st_value;
9167                   val += rel->r_addend;
9168
9169                   if (val >= toc->size)
9170                     continue;
9171
9172                   if ((skip[val >> 3] & can_optimize) != 0)
9173                     {
9174                       bfd_vma off;
9175                       unsigned char opc;
9176
9177                       switch (r_type)
9178                         {
9179                         case R_PPC64_TOC16_HA:
9180                           break;
9181
9182                         case R_PPC64_TOC16_LO_DS:
9183                           off = rel->r_offset;
9184                           off += (bfd_big_endian (ibfd) ? -2 : 3);
9185                           if (!bfd_get_section_contents (ibfd, sec, &opc,
9186                                                          off, 1))
9187                             {
9188                               free (used);
9189                               goto error_ret;
9190                             }
9191                           if ((opc & (0x3f << 2)) == (58u << 2))
9192                             break;
9193                           /* Fall thru */
9194
9195                         default:
9196                           /* Wrong sort of reloc, or not a ld.  We may
9197                              as well clear ref_from_discarded too.  */
9198                           skip[val >> 3] = 0;
9199                         }
9200                     }
9201
9202                   if (sec != toc)
9203                     used[val >> 3] = 1;
9204                   /* For the toc section, we only mark as used if this
9205                      entry itself isn't unused.  */
9206                   else if ((used[rel->r_offset >> 3]
9207                             || !(skip[rel->r_offset >> 3] & ref_from_discarded))
9208                            && !used[val >> 3])
9209                     {
9210                       /* Do all the relocs again, to catch reference
9211                          chains.  */
9212                       repeat = 1;
9213                       used[val >> 3] = 1;
9214                     }
9215                 }
9216             }
9217           while (repeat);
9218
9219           if (elf_section_data (sec)->relocs != relstart)
9220             free (relstart);
9221         }
9222
9223       /* Merge the used and skip arrays.  Assume that TOC
9224          doublewords not appearing as either used or unused belong
9225          to to an entry more than one doubleword in size.  */
9226       for (drop = skip, keep = used, last = 0, some_unused = 0;
9227            drop < skip + (toc->size + 7) / 8;
9228            ++drop, ++keep)
9229         {
9230           if (*keep)
9231             {
9232               *drop &= ~ref_from_discarded;
9233               if ((*drop & can_optimize) != 0)
9234                 some_unused = 1;
9235               last = 0;
9236             }
9237           else if ((*drop & ref_from_discarded) != 0)
9238             {
9239               some_unused = 1;
9240               last = ref_from_discarded;
9241             }
9242           else
9243             *drop = last;
9244         }
9245
9246       free (used);
9247
9248       if (some_unused)
9249         {
9250           bfd_byte *contents, *src;
9251           unsigned long off;
9252           Elf_Internal_Sym *sym;
9253           bfd_boolean local_toc_syms = FALSE;
9254
9255           /* Shuffle the toc contents, and at the same time convert the
9256              skip array from booleans into offsets.  */
9257           if (!bfd_malloc_and_get_section (ibfd, toc, &contents))
9258             goto error_ret;
9259
9260           elf_section_data (toc)->this_hdr.contents = contents;
9261
9262           for (src = contents, off = 0, drop = skip;
9263                src < contents + toc->size;
9264                src += 8, ++drop)
9265             {
9266               if ((*drop & (can_optimize | ref_from_discarded)) != 0)
9267                 off += 8;
9268               else if (off != 0)
9269                 {
9270                   *drop = off;
9271                   memcpy (src - off, src, 8);
9272                 }
9273             }
9274           *drop = off;
9275           toc->rawsize = toc->size;
9276           toc->size = src - contents - off;
9277
9278           /* Adjust addends for relocs against the toc section sym,
9279              and optimize any accesses we can.  */
9280           for (sec = ibfd->sections; sec != NULL; sec = sec->next)
9281             {
9282               if (sec->reloc_count == 0
9283                   || discarded_section (sec))
9284                 continue;
9285
9286               relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
9287                                                     info->keep_memory);
9288               if (relstart == NULL)
9289                 goto error_ret;
9290
9291               for (rel = relstart; rel < relstart + sec->reloc_count; ++rel)
9292                 {
9293                   enum elf_ppc64_reloc_type r_type;
9294                   unsigned long r_symndx;
9295                   asection *sym_sec;
9296                   struct elf_link_hash_entry *h;
9297                   bfd_vma val;
9298
9299                   r_type = ELF64_R_TYPE (rel->r_info);
9300                   switch (r_type)
9301                     {
9302                     default:
9303                       continue;
9304
9305                     case R_PPC64_TOC16:
9306                     case R_PPC64_TOC16_LO:
9307                     case R_PPC64_TOC16_HI:
9308                     case R_PPC64_TOC16_HA:
9309                     case R_PPC64_TOC16_DS:
9310                     case R_PPC64_TOC16_LO_DS:
9311                     case R_PPC64_ADDR64:
9312                       break;
9313                     }
9314
9315                   r_symndx = ELF64_R_SYM (rel->r_info);
9316                   if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
9317                                   r_symndx, ibfd))
9318                     goto error_ret;
9319
9320                   if (sym_sec != toc)
9321                     continue;
9322
9323                   if (h != NULL)
9324                     val = h->root.u.def.value;
9325                   else
9326                     {
9327                       val = sym->st_value;
9328                       if (val != 0)
9329                         local_toc_syms = TRUE;
9330                     }
9331
9332                   val += rel->r_addend;
9333
9334                   if (val > toc->rawsize)
9335                     val = toc->rawsize;
9336                   else if ((skip[val >> 3] & ref_from_discarded) != 0)
9337                     continue;
9338                   else if ((skip[val >> 3] & can_optimize) != 0)
9339                     {
9340                       Elf_Internal_Rela *tocrel
9341                         = toc_relocs + (skip[val >> 3] >> 2);
9342                       unsigned long tsym = ELF64_R_SYM (tocrel->r_info);
9343
9344                       switch (r_type)
9345                         {
9346                         case R_PPC64_TOC16_HA:
9347                           rel->r_info = ELF64_R_INFO (tsym, R_PPC64_TOC16_HA);
9348                           break;
9349
9350                         case R_PPC64_TOC16_LO_DS:
9351                           rel->r_info = ELF64_R_INFO (tsym, R_PPC64_LO_DS_OPT);
9352                           break;
9353
9354                         default:
9355                           if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
9356                             ppc_howto_init ();
9357                           info->callbacks->einfo
9358                             (_("%P: %H: %s references "
9359                                "optimized away TOC entry\n"),
9360                              ibfd, sec, rel->r_offset,
9361                              ppc64_elf_howto_table[r_type]->name);
9362                           bfd_set_error (bfd_error_bad_value);
9363                           goto error_ret;
9364                         }
9365                       rel->r_addend = tocrel->r_addend;
9366                       elf_section_data (sec)->relocs = relstart;
9367                       continue;
9368                     }
9369
9370                   if (h != NULL || sym->st_value != 0)
9371                     continue;
9372
9373                   rel->r_addend -= skip[val >> 3];
9374                   elf_section_data (sec)->relocs = relstart;
9375                 }
9376
9377               if (elf_section_data (sec)->relocs != relstart)
9378                 free (relstart);
9379             }
9380
9381           /* We shouldn't have local or global symbols defined in the TOC,
9382              but handle them anyway.  */
9383           if (local_syms != NULL)
9384             for (sym = local_syms;
9385                  sym < local_syms + symtab_hdr->sh_info;
9386                  ++sym)
9387               if (sym->st_value != 0
9388                   && bfd_section_from_elf_index (ibfd, sym->st_shndx) == toc)
9389                 {
9390                   unsigned long i;
9391
9392                   if (sym->st_value > toc->rawsize)
9393                     i = toc->rawsize >> 3;
9394                   else
9395                     i = sym->st_value >> 3;
9396
9397                   if ((skip[i] & (ref_from_discarded | can_optimize)) != 0)
9398                     {
9399                       if (local_toc_syms)
9400                         (*_bfd_error_handler)
9401                           (_("%s defined on removed toc entry"),
9402                            bfd_elf_sym_name (ibfd, symtab_hdr, sym, NULL));
9403                       do
9404                         ++i;
9405                       while ((skip[i] & (ref_from_discarded | can_optimize)));
9406                       sym->st_value = (bfd_vma) i << 3;
9407                     }
9408
9409                   sym->st_value -= skip[i];
9410                   symtab_hdr->contents = (unsigned char *) local_syms;
9411                 }
9412
9413           /* Adjust any global syms defined in this toc input section.  */
9414           if (toc_inf.global_toc_syms)
9415             {
9416               toc_inf.toc = toc;
9417               toc_inf.skip = skip;
9418               toc_inf.global_toc_syms = FALSE;
9419               elf_link_hash_traverse (elf_hash_table (info), adjust_toc_syms,
9420                                       &toc_inf);
9421             }
9422
9423           if (toc->reloc_count != 0)
9424             {
9425               Elf_Internal_Shdr *rel_hdr;
9426               Elf_Internal_Rela *wrel;
9427               bfd_size_type sz;
9428
9429               /* Remove unused toc relocs, and adjust those we keep.  */
9430               if (toc_relocs == NULL)
9431                 toc_relocs = _bfd_elf_link_read_relocs (ibfd, toc, NULL, NULL,
9432                                                         info->keep_memory);
9433               if (toc_relocs == NULL)
9434                 goto error_ret;
9435
9436               wrel = toc_relocs;
9437               for (rel = toc_relocs; rel < toc_relocs + toc->reloc_count; ++rel)
9438                 if ((skip[rel->r_offset >> 3]
9439                      & (ref_from_discarded | can_optimize)) == 0)
9440                   {
9441                     wrel->r_offset = rel->r_offset - skip[rel->r_offset >> 3];
9442                     wrel->r_info = rel->r_info;
9443                     wrel->r_addend = rel->r_addend;
9444                     ++wrel;
9445                   }
9446                 else if (!dec_dynrel_count (rel->r_info, toc, info,
9447                                             &local_syms, NULL, NULL))
9448                   goto error_ret;
9449
9450               elf_section_data (toc)->relocs = toc_relocs;
9451               toc->reloc_count = wrel - toc_relocs;
9452               rel_hdr = _bfd_elf_single_rel_hdr (toc);
9453               sz = rel_hdr->sh_entsize;
9454               rel_hdr->sh_size = toc->reloc_count * sz;
9455             }
9456         }
9457       else if (toc_relocs != NULL
9458                && elf_section_data (toc)->relocs != toc_relocs)
9459         free (toc_relocs);
9460
9461       if (local_syms != NULL
9462           && symtab_hdr->contents != (unsigned char *) local_syms)
9463         {
9464           if (!info->keep_memory)
9465             free (local_syms);
9466           else
9467             symtab_hdr->contents = (unsigned char *) local_syms;
9468         }
9469       free (skip);
9470     }
9471
9472   return TRUE;
9473 }
9474
9475 /* Return true iff input section I references the TOC using
9476    instructions limited to +/-32k offsets.  */
9477
9478 bfd_boolean
9479 ppc64_elf_has_small_toc_reloc (asection *i)
9480 {
9481   return (is_ppc64_elf (i->owner)
9482           && ppc64_elf_tdata (i->owner)->has_small_toc_reloc);
9483 }
9484
9485 /* Allocate space for one GOT entry.  */
9486
9487 static void
9488 allocate_got (struct elf_link_hash_entry *h,
9489               struct bfd_link_info *info,
9490               struct got_entry *gent)
9491 {
9492   struct ppc_link_hash_table *htab = ppc_hash_table (info);
9493   bfd_boolean dyn;
9494   struct ppc_link_hash_entry *eh = (struct ppc_link_hash_entry *) h;
9495   int entsize = (gent->tls_type & eh->tls_mask & (TLS_GD | TLS_LD)
9496                  ? 16 : 8);
9497   int rentsize = (gent->tls_type & eh->tls_mask & TLS_GD
9498                   ? 2 : 1) * sizeof (Elf64_External_Rela);
9499   asection *got = ppc64_elf_tdata (gent->owner)->got;
9500
9501   gent->got.offset = got->size;
9502   got->size += entsize;
9503
9504   dyn = htab->elf.dynamic_sections_created;
9505   if (h->type == STT_GNU_IFUNC)
9506     {
9507       htab->elf.irelplt->size += rentsize;
9508       htab->got_reli_size += rentsize;
9509     }
9510   else if ((bfd_link_pic (info)
9511             || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h))
9512            && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
9513                || h->root.type != bfd_link_hash_undefweak))
9514     {
9515       asection *relgot = ppc64_elf_tdata (gent->owner)->relgot;
9516       relgot->size += rentsize;
9517     }
9518 }
9519
9520 /* This function merges got entries in the same toc group.  */
9521
9522 static void
9523 merge_got_entries (struct got_entry **pent)
9524 {
9525   struct got_entry *ent, *ent2;
9526
9527   for (ent = *pent; ent != NULL; ent = ent->next)
9528     if (!ent->is_indirect)
9529       for (ent2 = ent->next; ent2 != NULL; ent2 = ent2->next)
9530         if (!ent2->is_indirect
9531             && ent2->addend == ent->addend
9532             && ent2->tls_type == ent->tls_type
9533             && elf_gp (ent2->owner) == elf_gp (ent->owner))
9534           {
9535             ent2->is_indirect = TRUE;
9536             ent2->got.ent = ent;
9537           }
9538 }
9539
9540 /* Allocate space in .plt, .got and associated reloc sections for
9541    dynamic relocs.  */
9542
9543 static bfd_boolean
9544 allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
9545 {
9546   struct bfd_link_info *info;
9547   struct ppc_link_hash_table *htab;
9548   asection *s;
9549   struct ppc_link_hash_entry *eh;
9550   struct elf_dyn_relocs *p;
9551   struct got_entry **pgent, *gent;
9552
9553   if (h->root.type == bfd_link_hash_indirect)
9554     return TRUE;
9555
9556   info = (struct bfd_link_info *) inf;
9557   htab = ppc_hash_table (info);
9558   if (htab == NULL)
9559     return FALSE;
9560
9561   eh = (struct ppc_link_hash_entry *) h;
9562   /* Run through the TLS GD got entries first if we're changing them
9563      to TPREL.  */
9564   if ((eh->tls_mask & TLS_TPRELGD) != 0)
9565     for (gent = h->got.glist; gent != NULL; gent = gent->next)
9566       if (gent->got.refcount > 0
9567           && (gent->tls_type & TLS_GD) != 0)
9568         {
9569           /* This was a GD entry that has been converted to TPREL.  If
9570              there happens to be a TPREL entry we can use that one.  */
9571           struct got_entry *ent;
9572           for (ent = h->got.glist; ent != NULL; ent = ent->next)
9573             if (ent->got.refcount > 0
9574                 && (ent->tls_type & TLS_TPREL) != 0
9575                 && ent->addend == gent->addend
9576                 && ent->owner == gent->owner)
9577               {
9578                 gent->got.refcount = 0;
9579                 break;
9580               }
9581
9582           /* If not, then we'll be using our own TPREL entry.  */
9583           if (gent->got.refcount != 0)
9584             gent->tls_type = TLS_TLS | TLS_TPREL;
9585         }
9586
9587   /* Remove any list entry that won't generate a word in the GOT before
9588      we call merge_got_entries.  Otherwise we risk merging to empty
9589      entries.  */
9590   pgent = &h->got.glist;
9591   while ((gent = *pgent) != NULL)
9592     if (gent->got.refcount > 0)
9593       {
9594         if ((gent->tls_type & TLS_LD) != 0
9595             && !h->def_dynamic)
9596           {
9597             ppc64_tlsld_got (gent->owner)->got.refcount += 1;
9598             *pgent = gent->next;
9599           }
9600         else
9601           pgent = &gent->next;
9602       }
9603     else
9604       *pgent = gent->next;
9605
9606   if (!htab->do_multi_toc)
9607     merge_got_entries (&h->got.glist);
9608
9609   for (gent = h->got.glist; gent != NULL; gent = gent->next)
9610     if (!gent->is_indirect)
9611       {
9612         /* Make sure this symbol is output as a dynamic symbol.
9613            Undefined weak syms won't yet be marked as dynamic,
9614            nor will all TLS symbols.  */
9615         if (h->dynindx == -1
9616             && !h->forced_local
9617             && h->type != STT_GNU_IFUNC
9618             && htab->elf.dynamic_sections_created)
9619           {
9620             if (! bfd_elf_link_record_dynamic_symbol (info, h))
9621               return FALSE;
9622           }
9623
9624         if (!is_ppc64_elf (gent->owner))
9625           abort ();
9626
9627         allocate_got (h, info, gent);
9628       }
9629
9630   if (eh->dyn_relocs != NULL
9631       && (htab->elf.dynamic_sections_created
9632           || h->type == STT_GNU_IFUNC))
9633     {
9634       /* In the shared -Bsymbolic case, discard space allocated for
9635          dynamic pc-relative relocs against symbols which turn out to
9636          be defined in regular objects.  For the normal shared case,
9637          discard space for relocs that have become local due to symbol
9638          visibility changes.  */
9639
9640       if (bfd_link_pic (info))
9641         {
9642           /* Relocs that use pc_count are those that appear on a call
9643              insn, or certain REL relocs (see must_be_dyn_reloc) that
9644              can be generated via assembly.  We want calls to
9645              protected symbols to resolve directly to the function
9646              rather than going via the plt.  If people want function
9647              pointer comparisons to work as expected then they should
9648              avoid writing weird assembly.  */
9649           if (SYMBOL_CALLS_LOCAL (info, h))
9650             {
9651               struct elf_dyn_relocs **pp;
9652
9653               for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
9654                 {
9655                   p->count -= p->pc_count;
9656                   p->pc_count = 0;
9657                   if (p->count == 0)
9658                     *pp = p->next;
9659                   else
9660                     pp = &p->next;
9661                 }
9662             }
9663
9664           /* Also discard relocs on undefined weak syms with
9665              non-default visibility.  */
9666           if (eh->dyn_relocs != NULL
9667               && h->root.type == bfd_link_hash_undefweak)
9668             {
9669               if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
9670                 eh->dyn_relocs = NULL;
9671
9672               /* Make sure this symbol is output as a dynamic symbol.
9673                  Undefined weak syms won't yet be marked as dynamic.  */
9674               else if (h->dynindx == -1
9675                        && !h->forced_local)
9676                 {
9677                   if (! bfd_elf_link_record_dynamic_symbol (info, h))
9678                     return FALSE;
9679                 }
9680             }
9681         }
9682       else if (h->type == STT_GNU_IFUNC)
9683         {
9684           if (!h->non_got_ref)
9685             eh->dyn_relocs = NULL;
9686         }
9687       else if (ELIMINATE_COPY_RELOCS)
9688         {
9689           /* For the non-shared case, discard space for relocs against
9690              symbols which turn out to need copy relocs or are not
9691              dynamic.  */
9692
9693           if (!h->non_got_ref
9694               && !h->def_regular)
9695             {
9696               /* Make sure this symbol is output as a dynamic symbol.
9697                  Undefined weak syms won't yet be marked as dynamic.  */
9698               if (h->dynindx == -1
9699                   && !h->forced_local)
9700                 {
9701                   if (! bfd_elf_link_record_dynamic_symbol (info, h))
9702                     return FALSE;
9703                 }
9704
9705               /* If that succeeded, we know we'll be keeping all the
9706                  relocs.  */
9707               if (h->dynindx != -1)
9708                 goto keep;
9709             }
9710
9711           eh->dyn_relocs = NULL;
9712
9713         keep: ;
9714         }
9715
9716       /* Finally, allocate space.  */
9717       for (p = eh->dyn_relocs; p != NULL; p = p->next)
9718         {
9719           asection *sreloc = elf_section_data (p->sec)->sreloc;
9720           if (eh->elf.type == STT_GNU_IFUNC)
9721             sreloc = htab->elf.irelplt;
9722           sreloc->size += p->count * sizeof (Elf64_External_Rela);
9723         }
9724     }
9725
9726   if ((htab->elf.dynamic_sections_created
9727        && h->dynindx != -1
9728        && WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, bfd_link_pic (info), h))
9729       || h->type == STT_GNU_IFUNC)
9730     {
9731       struct plt_entry *pent;
9732       bfd_boolean doneone = FALSE;
9733       for (pent = h->plt.plist; pent != NULL; pent = pent->next)
9734         if (pent->plt.refcount > 0)
9735           {
9736             if (!htab->elf.dynamic_sections_created
9737                 || h->dynindx == -1)
9738               {
9739                 s = htab->elf.iplt;
9740                 pent->plt.offset = s->size;
9741                 s->size += PLT_ENTRY_SIZE (htab);
9742                 s = htab->elf.irelplt;
9743               }
9744             else
9745               {
9746                 /* If this is the first .plt entry, make room for the special
9747                    first entry.  */
9748                 s = htab->elf.splt;
9749                 if (s->size == 0)
9750                   s->size += PLT_INITIAL_ENTRY_SIZE (htab);
9751
9752                 pent->plt.offset = s->size;
9753
9754                 /* Make room for this entry.  */
9755                 s->size += PLT_ENTRY_SIZE (htab);
9756
9757                 /* Make room for the .glink code.  */
9758                 s = htab->glink;
9759                 if (s->size == 0)
9760                   s->size += GLINK_CALL_STUB_SIZE;
9761                 if (htab->opd_abi)
9762                   {
9763                     /* We need bigger stubs past index 32767.  */
9764                     if (s->size >= GLINK_CALL_STUB_SIZE + 32768*2*4)
9765                       s->size += 4;
9766                     s->size += 2*4;
9767                   }
9768                 else
9769                   s->size += 4;
9770
9771                 /* We also need to make an entry in the .rela.plt section.  */
9772                 s = htab->elf.srelplt;
9773               }
9774             s->size += sizeof (Elf64_External_Rela);
9775             doneone = TRUE;
9776           }
9777         else
9778           pent->plt.offset = (bfd_vma) -1;
9779       if (!doneone)
9780         {
9781           h->plt.plist = NULL;
9782           h->needs_plt = 0;
9783         }
9784     }
9785   else
9786     {
9787       h->plt.plist = NULL;
9788       h->needs_plt = 0;
9789     }
9790
9791   return TRUE;
9792 }
9793
9794 /* Called via elf_link_hash_traverse from ppc64_elf_size_dynamic_sections
9795    to set up space for global entry stubs.  These are put in glink,
9796    after the branch table.  */
9797
9798 static bfd_boolean
9799 size_global_entry_stubs (struct elf_link_hash_entry *h, void *inf)
9800 {
9801   struct bfd_link_info *info;
9802   struct ppc_link_hash_table *htab;
9803   struct plt_entry *pent;
9804   asection *s;
9805
9806   if (h->root.type == bfd_link_hash_indirect)
9807     return TRUE;
9808
9809   if (!h->pointer_equality_needed)
9810     return TRUE;
9811
9812   if (h->def_regular)
9813     return TRUE;
9814
9815   info = inf;
9816   htab = ppc_hash_table (info);
9817   if (htab == NULL)
9818     return FALSE;
9819
9820   s = htab->glink;
9821   for (pent = h->plt.plist; pent != NULL; pent = pent->next)
9822     if (pent->plt.offset != (bfd_vma) -1
9823         && pent->addend == 0)
9824       {
9825         /* For ELFv2, if this symbol is not defined in a regular file
9826            and we are not generating a shared library or pie, then we
9827            need to define the symbol in the executable on a call stub.
9828            This is to avoid text relocations.  */
9829         s->size = (s->size + 15) & -16;
9830         h->root.u.def.section = s;
9831         h->root.u.def.value = s->size;
9832         s->size += 16;
9833         break;
9834       }
9835   return TRUE;
9836 }
9837
9838 /* Set DF_TEXTREL if we find any dynamic relocs that apply to
9839    read-only sections.  */
9840
9841 static bfd_boolean
9842 maybe_set_textrel (struct elf_link_hash_entry *h, void *info)
9843 {
9844   if (h->root.type == bfd_link_hash_indirect)
9845     return TRUE;
9846
9847   if (readonly_dynrelocs (h))
9848     {
9849       ((struct bfd_link_info *) info)->flags |= DF_TEXTREL;
9850
9851       /* Not an error, just cut short the traversal.  */
9852       return FALSE;
9853     }
9854   return TRUE;
9855 }
9856
9857 /* Set the sizes of the dynamic sections.  */
9858
9859 static bfd_boolean
9860 ppc64_elf_size_dynamic_sections (bfd *output_bfd,
9861                                  struct bfd_link_info *info)
9862 {
9863   struct ppc_link_hash_table *htab;
9864   bfd *dynobj;
9865   asection *s;
9866   bfd_boolean relocs;
9867   bfd *ibfd;
9868   struct got_entry *first_tlsld;
9869
9870   htab = ppc_hash_table (info);
9871   if (htab == NULL)
9872     return FALSE;
9873
9874   dynobj = htab->elf.dynobj;
9875   if (dynobj == NULL)
9876     abort ();
9877
9878   if (htab->elf.dynamic_sections_created)
9879     {
9880       /* Set the contents of the .interp section to the interpreter.  */
9881       if (bfd_link_executable (info) && !info->nointerp)
9882         {
9883           s = bfd_get_linker_section (dynobj, ".interp");
9884           if (s == NULL)
9885             abort ();
9886           s->size = sizeof ELF_DYNAMIC_INTERPRETER;
9887           s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
9888         }
9889     }
9890
9891   /* Set up .got offsets for local syms, and space for local dynamic
9892      relocs.  */
9893   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
9894     {
9895       struct got_entry **lgot_ents;
9896       struct got_entry **end_lgot_ents;
9897       struct plt_entry **local_plt;
9898       struct plt_entry **end_local_plt;
9899       unsigned char *lgot_masks;
9900       bfd_size_type locsymcount;
9901       Elf_Internal_Shdr *symtab_hdr;
9902
9903       if (!is_ppc64_elf (ibfd))
9904         continue;
9905
9906       for (s = ibfd->sections; s != NULL; s = s->next)
9907         {
9908           struct ppc_dyn_relocs *p;
9909
9910           for (p = elf_section_data (s)->local_dynrel; p != NULL; p = p->next)
9911             {
9912               if (!bfd_is_abs_section (p->sec)
9913                   && bfd_is_abs_section (p->sec->output_section))
9914                 {
9915                   /* Input section has been discarded, either because
9916                      it is a copy of a linkonce section or due to
9917                      linker script /DISCARD/, so we'll be discarding
9918                      the relocs too.  */
9919                 }
9920               else if (p->count != 0)
9921                 {
9922                   asection *srel = elf_section_data (p->sec)->sreloc;
9923                   if (p->ifunc)
9924                     srel = htab->elf.irelplt;
9925                   srel->size += p->count * sizeof (Elf64_External_Rela);
9926                   if ((p->sec->output_section->flags & SEC_READONLY) != 0)
9927                     info->flags |= DF_TEXTREL;
9928                 }
9929             }
9930         }
9931
9932       lgot_ents = elf_local_got_ents (ibfd);
9933       if (!lgot_ents)
9934         continue;
9935
9936       symtab_hdr = &elf_symtab_hdr (ibfd);
9937       locsymcount = symtab_hdr->sh_info;
9938       end_lgot_ents = lgot_ents + locsymcount;
9939       local_plt = (struct plt_entry **) end_lgot_ents;
9940       end_local_plt = local_plt + locsymcount;
9941       lgot_masks = (unsigned char *) end_local_plt;
9942       s = ppc64_elf_tdata (ibfd)->got;
9943       for (; lgot_ents < end_lgot_ents; ++lgot_ents, ++lgot_masks)
9944         {
9945           struct got_entry **pent, *ent;
9946
9947           pent = lgot_ents;
9948           while ((ent = *pent) != NULL)
9949             if (ent->got.refcount > 0)
9950               {
9951                 if ((ent->tls_type & *lgot_masks & TLS_LD) != 0)
9952                   {
9953                     ppc64_tlsld_got (ibfd)->got.refcount += 1;
9954                     *pent = ent->next;
9955                   }
9956                 else
9957                   {
9958                     unsigned int ent_size = 8;
9959                     unsigned int rel_size = sizeof (Elf64_External_Rela);
9960
9961                     ent->got.offset = s->size;
9962                     if ((ent->tls_type & *lgot_masks & TLS_GD) != 0)
9963                       {
9964                         ent_size *= 2;
9965                         rel_size *= 2;
9966                       }
9967                     s->size += ent_size;
9968                     if ((*lgot_masks & PLT_IFUNC) != 0)
9969                       {
9970                         htab->elf.irelplt->size += rel_size;
9971                         htab->got_reli_size += rel_size;
9972                       }
9973                     else if (bfd_link_pic (info))
9974                       {
9975                         asection *srel = ppc64_elf_tdata (ibfd)->relgot;
9976                         srel->size += rel_size;
9977                       }
9978                     pent = &ent->next;
9979                   }
9980               }
9981             else
9982               *pent = ent->next;
9983         }
9984
9985       /* Allocate space for calls to local STT_GNU_IFUNC syms in .iplt.  */
9986       for (; local_plt < end_local_plt; ++local_plt)
9987         {
9988           struct plt_entry *ent;
9989
9990           for (ent = *local_plt; ent != NULL; ent = ent->next)
9991             if (ent->plt.refcount > 0)
9992               {
9993                 s = htab->elf.iplt;
9994                 ent->plt.offset = s->size;
9995                 s->size += PLT_ENTRY_SIZE (htab);
9996
9997                 htab->elf.irelplt->size += sizeof (Elf64_External_Rela);
9998               }
9999             else
10000               ent->plt.offset = (bfd_vma) -1;
10001         }
10002     }
10003
10004   /* Allocate global sym .plt and .got entries, and space for global
10005      sym dynamic relocs.  */
10006   elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, info);
10007   /* Stash the end of glink branch table.  */
10008   if (htab->glink != NULL)
10009     htab->glink->rawsize = htab->glink->size;
10010
10011   if (!htab->opd_abi && !bfd_link_pic (info))
10012     elf_link_hash_traverse (&htab->elf, size_global_entry_stubs, info);
10013
10014   first_tlsld = NULL;
10015   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
10016     {
10017       struct got_entry *ent;
10018
10019       if (!is_ppc64_elf (ibfd))
10020         continue;
10021
10022       ent = ppc64_tlsld_got (ibfd);
10023       if (ent->got.refcount > 0)
10024         {
10025           if (!htab->do_multi_toc && first_tlsld != NULL)
10026             {
10027               ent->is_indirect = TRUE;
10028               ent->got.ent = first_tlsld;
10029             }
10030           else
10031             {
10032               if (first_tlsld == NULL)
10033                 first_tlsld = ent;
10034               s = ppc64_elf_tdata (ibfd)->got;
10035               ent->got.offset = s->size;
10036               ent->owner = ibfd;
10037               s->size += 16;
10038               if (bfd_link_pic (info))
10039                 {
10040                   asection *srel = ppc64_elf_tdata (ibfd)->relgot;
10041                   srel->size += sizeof (Elf64_External_Rela);
10042                 }
10043             }
10044         }
10045       else
10046         ent->got.offset = (bfd_vma) -1;
10047     }
10048
10049   /* We now have determined the sizes of the various dynamic sections.
10050      Allocate memory for them.  */
10051   relocs = FALSE;
10052   for (s = dynobj->sections; s != NULL; s = s->next)
10053     {
10054       if ((s->flags & SEC_LINKER_CREATED) == 0)
10055         continue;
10056
10057       if (s == htab->brlt || s == htab->relbrlt)
10058         /* These haven't been allocated yet;  don't strip.  */
10059         continue;
10060       else if (s == htab->elf.sgot
10061                || s == htab->elf.splt
10062                || s == htab->elf.iplt
10063                || s == htab->glink
10064                || s == htab->dynbss)
10065         {
10066           /* Strip this section if we don't need it; see the
10067              comment below.  */
10068         }
10069       else if (s == htab->glink_eh_frame)
10070         {
10071           if (!bfd_is_abs_section (s->output_section))
10072             /* Not sized yet.  */
10073             continue;
10074         }
10075       else if (CONST_STRNEQ (s->name, ".rela"))
10076         {
10077           if (s->size != 0)
10078             {
10079               if (s != htab->elf.srelplt)
10080                 relocs = TRUE;
10081
10082               /* We use the reloc_count field as a counter if we need
10083                  to copy relocs into the output file.  */
10084               s->reloc_count = 0;
10085             }
10086         }
10087       else
10088         {
10089           /* It's not one of our sections, so don't allocate space.  */
10090           continue;
10091         }
10092
10093       if (s->size == 0)
10094         {
10095           /* If we don't need this section, strip it from the
10096              output file.  This is mostly to handle .rela.bss and
10097              .rela.plt.  We must create both sections in
10098              create_dynamic_sections, because they must be created
10099              before the linker maps input sections to output
10100              sections.  The linker does that before
10101              adjust_dynamic_symbol is called, and it is that
10102              function which decides whether anything needs to go
10103              into these sections.  */
10104           s->flags |= SEC_EXCLUDE;
10105           continue;
10106         }
10107
10108       if ((s->flags & SEC_HAS_CONTENTS) == 0)
10109         continue;
10110
10111       /* Allocate memory for the section contents.  We use bfd_zalloc
10112          here in case unused entries are not reclaimed before the
10113          section's contents are written out.  This should not happen,
10114          but this way if it does we get a R_PPC64_NONE reloc in .rela
10115          sections instead of garbage.
10116          We also rely on the section contents being zero when writing
10117          the GOT.  */
10118       s->contents = bfd_zalloc (dynobj, s->size);
10119       if (s->contents == NULL)
10120         return FALSE;
10121     }
10122
10123   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
10124     {
10125       if (!is_ppc64_elf (ibfd))
10126         continue;
10127
10128       s = ppc64_elf_tdata (ibfd)->got;
10129       if (s != NULL && s != htab->elf.sgot)
10130         {
10131           if (s->size == 0)
10132             s->flags |= SEC_EXCLUDE;
10133           else
10134             {
10135               s->contents = bfd_zalloc (ibfd, s->size);
10136               if (s->contents == NULL)
10137                 return FALSE;
10138             }
10139         }
10140       s = ppc64_elf_tdata (ibfd)->relgot;
10141       if (s != NULL)
10142         {
10143           if (s->size == 0)
10144             s->flags |= SEC_EXCLUDE;
10145           else
10146             {
10147               s->contents = bfd_zalloc (ibfd, s->size);
10148               if (s->contents == NULL)
10149                 return FALSE;
10150               relocs = TRUE;
10151               s->reloc_count = 0;
10152             }
10153         }
10154     }
10155
10156   if (htab->elf.dynamic_sections_created)
10157     {
10158       bfd_boolean tls_opt;
10159
10160       /* Add some entries to the .dynamic section.  We fill in the
10161          values later, in ppc64_elf_finish_dynamic_sections, but we
10162          must add the entries now so that we get the correct size for
10163          the .dynamic section.  The DT_DEBUG entry is filled in by the
10164          dynamic linker and used by the debugger.  */
10165 #define add_dynamic_entry(TAG, VAL) \
10166   _bfd_elf_add_dynamic_entry (info, TAG, VAL)
10167
10168       if (bfd_link_executable (info))
10169         {
10170           if (!add_dynamic_entry (DT_DEBUG, 0))
10171             return FALSE;
10172         }
10173
10174       if (htab->elf.splt != NULL && htab->elf.splt->size != 0)
10175         {
10176           if (!add_dynamic_entry (DT_PLTGOT, 0)
10177               || !add_dynamic_entry (DT_PLTRELSZ, 0)
10178               || !add_dynamic_entry (DT_PLTREL, DT_RELA)
10179               || !add_dynamic_entry (DT_JMPREL, 0)
10180               || !add_dynamic_entry (DT_PPC64_GLINK, 0))
10181             return FALSE;
10182         }
10183
10184       if (NO_OPD_RELOCS && abiversion (output_bfd) <= 1)
10185         {
10186           if (!add_dynamic_entry (DT_PPC64_OPD, 0)
10187               || !add_dynamic_entry (DT_PPC64_OPDSZ, 0))
10188             return FALSE;
10189         }
10190
10191       tls_opt = (htab->params->tls_get_addr_opt
10192                  && htab->tls_get_addr_fd != NULL
10193                  && htab->tls_get_addr_fd->elf.plt.plist != NULL);
10194       if (tls_opt || !htab->opd_abi)
10195         {
10196           if (!add_dynamic_entry (DT_PPC64_OPT, tls_opt ? PPC64_OPT_TLS : 0))
10197             return FALSE;
10198         }
10199
10200       if (relocs)
10201         {
10202           if (!add_dynamic_entry (DT_RELA, 0)
10203               || !add_dynamic_entry (DT_RELASZ, 0)
10204               || !add_dynamic_entry (DT_RELAENT, sizeof (Elf64_External_Rela)))
10205             return FALSE;
10206
10207           /* If any dynamic relocs apply to a read-only section,
10208              then we need a DT_TEXTREL entry.  */
10209           if ((info->flags & DF_TEXTREL) == 0)
10210             elf_link_hash_traverse (&htab->elf, maybe_set_textrel, info);
10211
10212           if ((info->flags & DF_TEXTREL) != 0)
10213             {
10214               if (!add_dynamic_entry (DT_TEXTREL, 0))
10215                 return FALSE;
10216             }
10217         }
10218     }
10219 #undef add_dynamic_entry
10220
10221   return TRUE;
10222 }
10223
10224 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section.  */
10225
10226 static bfd_boolean
10227 ppc64_elf_hash_symbol (struct elf_link_hash_entry *h)
10228 {
10229   if (h->plt.plist != NULL
10230       && !h->def_regular
10231       && !h->pointer_equality_needed)
10232     return FALSE;
10233
10234   return _bfd_elf_hash_symbol (h);
10235 }
10236
10237 /* Determine the type of stub needed, if any, for a call.  */
10238
10239 static inline enum ppc_stub_type
10240 ppc_type_of_stub (asection *input_sec,
10241                   const Elf_Internal_Rela *rel,
10242                   struct ppc_link_hash_entry **hash,
10243                   struct plt_entry **plt_ent,
10244                   bfd_vma destination,
10245                   unsigned long local_off)
10246 {
10247   struct ppc_link_hash_entry *h = *hash;
10248   bfd_vma location;
10249   bfd_vma branch_offset;
10250   bfd_vma max_branch_offset;
10251   enum elf_ppc64_reloc_type r_type;
10252
10253   if (h != NULL)
10254     {
10255       struct plt_entry *ent;
10256       struct ppc_link_hash_entry *fdh = h;
10257       if (h->oh != NULL
10258           && h->oh->is_func_descriptor)
10259         {
10260           fdh = ppc_follow_link (h->oh);
10261           *hash = fdh;
10262         }
10263
10264       for (ent = fdh->elf.plt.plist; ent != NULL; ent = ent->next)
10265         if (ent->addend == rel->r_addend
10266             && ent->plt.offset != (bfd_vma) -1)
10267           {
10268             *plt_ent = ent;
10269             return ppc_stub_plt_call;
10270           }
10271
10272       /* Here, we know we don't have a plt entry.  If we don't have a
10273          either a defined function descriptor or a defined entry symbol
10274          in a regular object file, then it is pointless trying to make
10275          any other type of stub.  */
10276       if (!is_static_defined (&fdh->elf)
10277           && !is_static_defined (&h->elf))
10278         return ppc_stub_none;
10279     }
10280   else if (elf_local_got_ents (input_sec->owner) != NULL)
10281     {
10282       Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (input_sec->owner);
10283       struct plt_entry **local_plt = (struct plt_entry **)
10284         elf_local_got_ents (input_sec->owner) + symtab_hdr->sh_info;
10285       unsigned long r_symndx = ELF64_R_SYM (rel->r_info);
10286
10287       if (local_plt[r_symndx] != NULL)
10288         {
10289           struct plt_entry *ent;
10290
10291           for (ent = local_plt[r_symndx]; ent != NULL; ent = ent->next)
10292             if (ent->addend == rel->r_addend
10293                 && ent->plt.offset != (bfd_vma) -1)
10294               {
10295                 *plt_ent = ent;
10296                 return ppc_stub_plt_call;
10297               }
10298         }
10299     }
10300
10301   /* Determine where the call point is.  */
10302   location = (input_sec->output_offset
10303               + input_sec->output_section->vma
10304               + rel->r_offset);
10305
10306   branch_offset = destination - location;
10307   r_type = ELF64_R_TYPE (rel->r_info);
10308
10309   /* Determine if a long branch stub is needed.  */
10310   max_branch_offset = 1 << 25;
10311   if (r_type != R_PPC64_REL24)
10312     max_branch_offset = 1 << 15;
10313
10314   if (branch_offset + max_branch_offset >= 2 * max_branch_offset - local_off)
10315     /* We need a stub.  Figure out whether a long_branch or plt_branch
10316        is needed later.  */
10317     return ppc_stub_long_branch;
10318
10319   return ppc_stub_none;
10320 }
10321
10322 /* With power7 weakly ordered memory model, it is possible for ld.so
10323    to update a plt entry in one thread and have another thread see a
10324    stale zero toc entry.  To avoid this we need some sort of acquire
10325    barrier in the call stub.  One solution is to make the load of the
10326    toc word seem to appear to depend on the load of the function entry
10327    word.  Another solution is to test for r2 being zero, and branch to
10328    the appropriate glink entry if so.
10329
10330    .    fake dep barrier        compare
10331    .    ld 12,xxx(2)            ld 12,xxx(2)
10332    .    mtctr 12                mtctr 12
10333    .    xor 11,12,12            ld 2,xxx+8(2)
10334    .    add 2,2,11              cmpldi 2,0
10335    .    ld 2,xxx+8(2)           bnectr+
10336    .    bctr                    b <glink_entry>
10337
10338    The solution involving the compare turns out to be faster, so
10339    that's what we use unless the branch won't reach.  */
10340
10341 #define ALWAYS_USE_FAKE_DEP 0
10342 #define ALWAYS_EMIT_R2SAVE 0
10343
10344 #define PPC_LO(v) ((v) & 0xffff)
10345 #define PPC_HI(v) (((v) >> 16) & 0xffff)
10346 #define PPC_HA(v) PPC_HI ((v) + 0x8000)
10347
10348 static inline unsigned int
10349 plt_stub_size (struct ppc_link_hash_table *htab,
10350                struct ppc_stub_hash_entry *stub_entry,
10351                bfd_vma off)
10352 {
10353   unsigned size = 12;
10354
10355   if (ALWAYS_EMIT_R2SAVE
10356       || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10357     size += 4;
10358   if (PPC_HA (off) != 0)
10359     size += 4;
10360   if (htab->opd_abi)
10361     {
10362       size += 4;
10363       if (htab->params->plt_static_chain)
10364         size += 4;
10365       if (htab->params->plt_thread_safe
10366           && htab->elf.dynamic_sections_created
10367           && stub_entry->h != NULL
10368           && stub_entry->h->elf.dynindx != -1)
10369         size += 8;
10370       if (PPC_HA (off + 8 + 8 * htab->params->plt_static_chain) != PPC_HA (off))
10371         size += 4;
10372     }
10373   if (stub_entry->h != NULL
10374       && (stub_entry->h == htab->tls_get_addr_fd
10375           || stub_entry->h == htab->tls_get_addr)
10376       && htab->params->tls_get_addr_opt)
10377     size += 13 * 4;
10378   return size;
10379 }
10380
10381 /* If this stub would cross fewer 2**plt_stub_align boundaries if we align,
10382    then return the padding needed to do so.  */
10383 static inline unsigned int
10384 plt_stub_pad (struct ppc_link_hash_table *htab,
10385               struct ppc_stub_hash_entry *stub_entry,
10386               bfd_vma plt_off)
10387 {
10388   int stub_align = 1 << htab->params->plt_stub_align;
10389   unsigned stub_size = plt_stub_size (htab, stub_entry, plt_off);
10390   bfd_vma stub_off = stub_entry->group->stub_sec->size;
10391
10392   if (((stub_off + stub_size - 1) & -stub_align) - (stub_off & -stub_align)
10393       > ((stub_size - 1) & -stub_align))
10394     return stub_align - (stub_off & (stub_align - 1));
10395   return 0;
10396 }
10397
10398 /* Build a .plt call stub.  */
10399
10400 static inline bfd_byte *
10401 build_plt_stub (struct ppc_link_hash_table *htab,
10402                 struct ppc_stub_hash_entry *stub_entry,
10403                 bfd_byte *p, bfd_vma offset, Elf_Internal_Rela *r)
10404 {
10405   bfd *obfd = htab->params->stub_bfd;
10406   bfd_boolean plt_load_toc = htab->opd_abi;
10407   bfd_boolean plt_static_chain = htab->params->plt_static_chain;
10408   bfd_boolean plt_thread_safe = (htab->params->plt_thread_safe
10409                                  && htab->elf.dynamic_sections_created
10410                                  && stub_entry->h != NULL
10411                                  && stub_entry->h->elf.dynindx != -1);
10412   bfd_boolean use_fake_dep = plt_thread_safe;
10413   bfd_vma cmp_branch_off = 0;
10414
10415   if (!ALWAYS_USE_FAKE_DEP
10416       && plt_load_toc
10417       && plt_thread_safe
10418       && !((stub_entry->h == htab->tls_get_addr_fd
10419             || stub_entry->h == htab->tls_get_addr)
10420            && htab->params->tls_get_addr_opt))
10421     {
10422       bfd_vma pltoff = stub_entry->plt_ent->plt.offset & ~1;
10423       bfd_vma pltindex = ((pltoff - PLT_INITIAL_ENTRY_SIZE (htab))
10424                           / PLT_ENTRY_SIZE (htab));
10425       bfd_vma glinkoff = GLINK_CALL_STUB_SIZE + pltindex * 8;
10426       bfd_vma to, from;
10427
10428       if (pltindex > 32768)
10429         glinkoff += (pltindex - 32768) * 4;
10430       to = (glinkoff
10431             + htab->glink->output_offset
10432             + htab->glink->output_section->vma);
10433       from = (p - stub_entry->group->stub_sec->contents
10434               + 4 * (ALWAYS_EMIT_R2SAVE
10435                      || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10436               + 4 * (PPC_HA (offset) != 0)
10437               + 4 * (PPC_HA (offset + 8 + 8 * plt_static_chain)
10438                      != PPC_HA (offset))
10439               + 4 * (plt_static_chain != 0)
10440               + 20
10441               + stub_entry->group->stub_sec->output_offset
10442               + stub_entry->group->stub_sec->output_section->vma);
10443       cmp_branch_off = to - from;
10444       use_fake_dep = cmp_branch_off + (1 << 25) >= (1 << 26);
10445     }
10446
10447   if (PPC_HA (offset) != 0)
10448     {
10449       if (r != NULL)
10450         {
10451           if (ALWAYS_EMIT_R2SAVE
10452               || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10453             r[0].r_offset += 4;
10454           r[0].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_HA);
10455           r[1].r_offset = r[0].r_offset + 4;
10456           r[1].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO_DS);
10457           r[1].r_addend = r[0].r_addend;
10458           if (plt_load_toc)
10459             {
10460               if (PPC_HA (offset + 8 + 8 * plt_static_chain) != PPC_HA (offset))
10461                 {
10462                   r[2].r_offset = r[1].r_offset + 4;
10463                   r[2].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO);
10464                   r[2].r_addend = r[0].r_addend;
10465                 }
10466               else
10467                 {
10468                   r[2].r_offset = r[1].r_offset + 8 + 8 * use_fake_dep;
10469                   r[2].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO_DS);
10470                   r[2].r_addend = r[0].r_addend + 8;
10471                   if (plt_static_chain)
10472                     {
10473                       r[3].r_offset = r[2].r_offset + 4;
10474                       r[3].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO_DS);
10475                       r[3].r_addend = r[0].r_addend + 16;
10476                     }
10477                 }
10478             }
10479         }
10480       if (ALWAYS_EMIT_R2SAVE
10481           || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10482         bfd_put_32 (obfd, STD_R2_0R1 + STK_TOC (htab), p),      p += 4;
10483       if (plt_load_toc)
10484         {
10485           bfd_put_32 (obfd, ADDIS_R11_R2 | PPC_HA (offset), p), p += 4;
10486           bfd_put_32 (obfd, LD_R12_0R11 | PPC_LO (offset), p),  p += 4;
10487         }
10488       else
10489         {
10490           bfd_put_32 (obfd, ADDIS_R12_R2 | PPC_HA (offset), p), p += 4;
10491           bfd_put_32 (obfd, LD_R12_0R12 | PPC_LO (offset), p),  p += 4;
10492         }
10493       if (plt_load_toc
10494           && PPC_HA (offset + 8 + 8 * plt_static_chain) != PPC_HA (offset))
10495         {
10496           bfd_put_32 (obfd, ADDI_R11_R11 | PPC_LO (offset), p), p += 4;
10497           offset = 0;
10498         }
10499       bfd_put_32 (obfd, MTCTR_R12, p),                          p += 4;
10500       if (plt_load_toc)
10501         {
10502           if (use_fake_dep)
10503             {
10504               bfd_put_32 (obfd, XOR_R2_R12_R12, p),             p += 4;
10505               bfd_put_32 (obfd, ADD_R11_R11_R2, p),             p += 4;
10506             }
10507           bfd_put_32 (obfd, LD_R2_0R11 | PPC_LO (offset + 8), p), p += 4;
10508           if (plt_static_chain)
10509             bfd_put_32 (obfd, LD_R11_0R11 | PPC_LO (offset + 16), p), p += 4;
10510         }
10511     }
10512   else
10513     {
10514       if (r != NULL)
10515         {
10516           if (ALWAYS_EMIT_R2SAVE
10517               || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10518             r[0].r_offset += 4;
10519           r[0].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_DS);
10520           if (plt_load_toc)
10521             {
10522               if (PPC_HA (offset + 8 + 8 * plt_static_chain) != PPC_HA (offset))
10523                 {
10524                   r[1].r_offset = r[0].r_offset + 4;
10525                   r[1].r_info = ELF64_R_INFO (0, R_PPC64_TOC16);
10526                   r[1].r_addend = r[0].r_addend;
10527                 }
10528               else
10529                 {
10530                   r[1].r_offset = r[0].r_offset + 8 + 8 * use_fake_dep;
10531                   r[1].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_DS);
10532                   r[1].r_addend = r[0].r_addend + 8 + 8 * plt_static_chain;
10533                   if (plt_static_chain)
10534                     {
10535                       r[2].r_offset = r[1].r_offset + 4;
10536                       r[2].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_DS);
10537                       r[2].r_addend = r[0].r_addend + 8;
10538                     }
10539                 }
10540             }
10541         }
10542       if (ALWAYS_EMIT_R2SAVE
10543           || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10544         bfd_put_32 (obfd, STD_R2_0R1 + STK_TOC (htab), p),      p += 4;
10545       bfd_put_32 (obfd, LD_R12_0R2 | PPC_LO (offset), p),       p += 4;
10546       if (plt_load_toc
10547           && PPC_HA (offset + 8 + 8 * plt_static_chain) != PPC_HA (offset))
10548         {
10549           bfd_put_32 (obfd, ADDI_R2_R2 | PPC_LO (offset), p),   p += 4;
10550           offset = 0;
10551         }
10552       bfd_put_32 (obfd, MTCTR_R12, p),                          p += 4;
10553       if (plt_load_toc)
10554         {
10555           if (use_fake_dep)
10556             {
10557               bfd_put_32 (obfd, XOR_R11_R12_R12, p),            p += 4;
10558               bfd_put_32 (obfd, ADD_R2_R2_R11, p),              p += 4;
10559             }
10560           if (plt_static_chain)
10561             bfd_put_32 (obfd, LD_R11_0R2 | PPC_LO (offset + 16), p), p += 4;
10562           bfd_put_32 (obfd, LD_R2_0R2 | PPC_LO (offset + 8), p), p += 4;
10563         }
10564     }
10565   if (plt_load_toc && plt_thread_safe && !use_fake_dep)
10566     {
10567       bfd_put_32 (obfd, CMPLDI_R2_0, p),                        p += 4;
10568       bfd_put_32 (obfd, BNECTR_P4, p),                          p += 4;
10569       bfd_put_32 (obfd, B_DOT | (cmp_branch_off & 0x3fffffc), p), p += 4;
10570     }
10571   else
10572     bfd_put_32 (obfd, BCTR, p),                                 p += 4;
10573   return p;
10574 }
10575
10576 /* Build a special .plt call stub for __tls_get_addr.  */
10577
10578 #define LD_R11_0R3      0xe9630000
10579 #define LD_R12_0R3      0xe9830000
10580 #define MR_R0_R3        0x7c601b78
10581 #define CMPDI_R11_0     0x2c2b0000
10582 #define ADD_R3_R12_R13  0x7c6c6a14
10583 #define BEQLR           0x4d820020
10584 #define MR_R3_R0        0x7c030378
10585 #define STD_R11_0R1     0xf9610000
10586 #define BCTRL           0x4e800421
10587 #define LD_R11_0R1      0xe9610000
10588 #define MTLR_R11        0x7d6803a6
10589
10590 static inline bfd_byte *
10591 build_tls_get_addr_stub (struct ppc_link_hash_table *htab,
10592                          struct ppc_stub_hash_entry *stub_entry,
10593                          bfd_byte *p, bfd_vma offset, Elf_Internal_Rela *r)
10594 {
10595   bfd *obfd = htab->params->stub_bfd;
10596
10597   bfd_put_32 (obfd, LD_R11_0R3 + 0, p),         p += 4;
10598   bfd_put_32 (obfd, LD_R12_0R3 + 8, p),         p += 4;
10599   bfd_put_32 (obfd, MR_R0_R3, p),               p += 4;
10600   bfd_put_32 (obfd, CMPDI_R11_0, p),            p += 4;
10601   bfd_put_32 (obfd, ADD_R3_R12_R13, p),         p += 4;
10602   bfd_put_32 (obfd, BEQLR, p),                  p += 4;
10603   bfd_put_32 (obfd, MR_R3_R0, p),               p += 4;
10604   bfd_put_32 (obfd, MFLR_R11, p),               p += 4;
10605   bfd_put_32 (obfd, STD_R11_0R1 + STK_LINKER (htab), p), p += 4;
10606
10607   if (r != NULL)
10608     r[0].r_offset += 9 * 4;
10609   p = build_plt_stub (htab, stub_entry, p, offset, r);
10610   bfd_put_32 (obfd, BCTRL, p - 4);
10611
10612   bfd_put_32 (obfd, LD_R2_0R1 + STK_TOC (htab), p),     p += 4;
10613   bfd_put_32 (obfd, LD_R11_0R1 + STK_LINKER (htab), p), p += 4;
10614   bfd_put_32 (obfd, MTLR_R11, p),               p += 4;
10615   bfd_put_32 (obfd, BLR, p),                    p += 4;
10616
10617   return p;
10618 }
10619
10620 static Elf_Internal_Rela *
10621 get_relocs (asection *sec, int count)
10622 {
10623   Elf_Internal_Rela *relocs;
10624   struct bfd_elf_section_data *elfsec_data;
10625
10626   elfsec_data = elf_section_data (sec);
10627   relocs = elfsec_data->relocs;
10628   if (relocs == NULL)
10629     {
10630       bfd_size_type relsize;
10631       relsize = sec->reloc_count * sizeof (*relocs);
10632       relocs = bfd_alloc (sec->owner, relsize);
10633       if (relocs == NULL)
10634         return NULL;
10635       elfsec_data->relocs = relocs;
10636       elfsec_data->rela.hdr = bfd_zalloc (sec->owner,
10637                                           sizeof (Elf_Internal_Shdr));
10638       if (elfsec_data->rela.hdr == NULL)
10639         return NULL;
10640       elfsec_data->rela.hdr->sh_size = (sec->reloc_count
10641                                         * sizeof (Elf64_External_Rela));
10642       elfsec_data->rela.hdr->sh_entsize = sizeof (Elf64_External_Rela);
10643       sec->reloc_count = 0;
10644     }
10645   relocs += sec->reloc_count;
10646   sec->reloc_count += count;
10647   return relocs;
10648 }
10649
10650 static bfd_vma
10651 get_r2off (struct bfd_link_info *info,
10652            struct ppc_stub_hash_entry *stub_entry)
10653 {
10654   struct ppc_link_hash_table *htab = ppc_hash_table (info);
10655   bfd_vma r2off = htab->sec_info[stub_entry->target_section->id].toc_off;
10656
10657   if (r2off == 0)
10658     {
10659       /* Support linking -R objects.  Get the toc pointer from the
10660          opd entry.  */
10661       char buf[8];
10662       if (!htab->opd_abi)
10663         return r2off;
10664       asection *opd = stub_entry->h->elf.root.u.def.section;
10665       bfd_vma opd_off = stub_entry->h->elf.root.u.def.value;
10666
10667       if (strcmp (opd->name, ".opd") != 0
10668           || opd->reloc_count != 0)
10669         {
10670           info->callbacks->einfo (_("%P: cannot find opd entry toc for `%T'\n"),
10671                                   stub_entry->h->elf.root.root.string);
10672           bfd_set_error (bfd_error_bad_value);
10673           return (bfd_vma) -1;
10674         }
10675       if (!bfd_get_section_contents (opd->owner, opd, buf, opd_off + 8, 8))
10676         return (bfd_vma) -1;
10677       r2off = bfd_get_64 (opd->owner, buf);
10678       r2off -= elf_gp (info->output_bfd);
10679     }
10680   r2off -= htab->sec_info[stub_entry->group->link_sec->id].toc_off;
10681   return r2off;
10682 }
10683
10684 static bfd_boolean
10685 ppc_build_one_stub (struct bfd_hash_entry *gen_entry, void *in_arg)
10686 {
10687   struct ppc_stub_hash_entry *stub_entry;
10688   struct ppc_branch_hash_entry *br_entry;
10689   struct bfd_link_info *info;
10690   struct ppc_link_hash_table *htab;
10691   bfd_byte *loc;
10692   bfd_byte *p;
10693   bfd_vma dest, off;
10694   int size;
10695   Elf_Internal_Rela *r;
10696   asection *plt;
10697
10698   /* Massage our args to the form they really have.  */
10699   stub_entry = (struct ppc_stub_hash_entry *) gen_entry;
10700   info = in_arg;
10701
10702   htab = ppc_hash_table (info);
10703   if (htab == NULL)
10704     return FALSE;
10705
10706   /* Make a note of the offset within the stubs for this entry.  */
10707   stub_entry->stub_offset = stub_entry->group->stub_sec->size;
10708   loc = stub_entry->group->stub_sec->contents + stub_entry->stub_offset;
10709
10710   htab->stub_count[stub_entry->stub_type - 1] += 1;
10711   switch (stub_entry->stub_type)
10712     {
10713     case ppc_stub_long_branch:
10714     case ppc_stub_long_branch_r2off:
10715       /* Branches are relative.  This is where we are going to.  */
10716       dest = (stub_entry->target_value
10717               + stub_entry->target_section->output_offset
10718               + stub_entry->target_section->output_section->vma);
10719       dest += PPC64_LOCAL_ENTRY_OFFSET (stub_entry->other);
10720       off = dest;
10721
10722       /* And this is where we are coming from.  */
10723       off -= (stub_entry->stub_offset
10724               + stub_entry->group->stub_sec->output_offset
10725               + stub_entry->group->stub_sec->output_section->vma);
10726
10727       size = 4;
10728       if (stub_entry->stub_type == ppc_stub_long_branch_r2off)
10729         {
10730           bfd_vma r2off = get_r2off (info, stub_entry);
10731
10732           if (r2off == (bfd_vma) -1)
10733             {
10734               htab->stub_error = TRUE;
10735               return FALSE;
10736             }
10737           bfd_put_32 (htab->params->stub_bfd, STD_R2_0R1 + STK_TOC (htab), loc);
10738           loc += 4;
10739           size = 8;
10740           if (PPC_HA (r2off) != 0)
10741             {
10742               bfd_put_32 (htab->params->stub_bfd,
10743                           ADDIS_R2_R2 | PPC_HA (r2off), loc);
10744               loc += 4;
10745               size += 4;
10746             }
10747           if (PPC_LO (r2off) != 0)
10748             {
10749               bfd_put_32 (htab->params->stub_bfd,
10750                           ADDI_R2_R2 | PPC_LO (r2off), loc);
10751               loc += 4;
10752               size += 4;
10753             }
10754           off -= size - 4;
10755         }
10756       bfd_put_32 (htab->params->stub_bfd, B_DOT | (off & 0x3fffffc), loc);
10757
10758       if (off + (1 << 25) >= (bfd_vma) (1 << 26))
10759         {
10760           info->callbacks->einfo
10761             (_("%P: long branch stub `%s' offset overflow\n"),
10762              stub_entry->root.string);
10763           htab->stub_error = TRUE;
10764           return FALSE;
10765         }
10766
10767       if (info->emitrelocations)
10768         {
10769           r = get_relocs (stub_entry->group->stub_sec, 1);
10770           if (r == NULL)
10771             return FALSE;
10772           r->r_offset = loc - stub_entry->group->stub_sec->contents;
10773           r->r_info = ELF64_R_INFO (0, R_PPC64_REL24);
10774           r->r_addend = dest;
10775           if (stub_entry->h != NULL)
10776             {
10777               struct elf_link_hash_entry **hashes;
10778               unsigned long symndx;
10779               struct ppc_link_hash_entry *h;
10780
10781               hashes = elf_sym_hashes (htab->params->stub_bfd);
10782               if (hashes == NULL)
10783                 {
10784                   bfd_size_type hsize;
10785
10786                   hsize = (htab->stub_globals + 1) * sizeof (*hashes);
10787                   hashes = bfd_zalloc (htab->params->stub_bfd, hsize);
10788                   if (hashes == NULL)
10789                     return FALSE;
10790                   elf_sym_hashes (htab->params->stub_bfd) = hashes;
10791                   htab->stub_globals = 1;
10792                 }
10793               symndx = htab->stub_globals++;
10794               h = stub_entry->h;
10795               hashes[symndx] = &h->elf;
10796               r->r_info = ELF64_R_INFO (symndx, R_PPC64_REL24);
10797               if (h->oh != NULL && h->oh->is_func)
10798                 h = ppc_follow_link (h->oh);
10799               if (h->elf.root.u.def.section != stub_entry->target_section)
10800                 /* H is an opd symbol.  The addend must be zero.  */
10801                 r->r_addend = 0;
10802               else
10803                 {
10804                   off = (h->elf.root.u.def.value
10805                          + h->elf.root.u.def.section->output_offset
10806                          + h->elf.root.u.def.section->output_section->vma);
10807                   r->r_addend -= off;
10808                 }
10809             }
10810         }
10811       break;
10812
10813     case ppc_stub_plt_branch:
10814     case ppc_stub_plt_branch_r2off:
10815       br_entry = ppc_branch_hash_lookup (&htab->branch_hash_table,
10816                                          stub_entry->root.string + 9,
10817                                          FALSE, FALSE);
10818       if (br_entry == NULL)
10819         {
10820           info->callbacks->einfo (_("%P: can't find branch stub `%s'\n"),
10821                                   stub_entry->root.string);
10822           htab->stub_error = TRUE;
10823           return FALSE;
10824         }
10825
10826       dest = (stub_entry->target_value
10827               + stub_entry->target_section->output_offset
10828               + stub_entry->target_section->output_section->vma);
10829       if (stub_entry->stub_type != ppc_stub_plt_branch_r2off)
10830         dest += PPC64_LOCAL_ENTRY_OFFSET (stub_entry->other);
10831
10832       bfd_put_64 (htab->brlt->owner, dest,
10833                   htab->brlt->contents + br_entry->offset);
10834
10835       if (br_entry->iter == htab->stub_iteration)
10836         {
10837           br_entry->iter = 0;
10838
10839           if (htab->relbrlt != NULL)
10840             {
10841               /* Create a reloc for the branch lookup table entry.  */
10842               Elf_Internal_Rela rela;
10843               bfd_byte *rl;
10844
10845               rela.r_offset = (br_entry->offset
10846                                + htab->brlt->output_offset
10847                                + htab->brlt->output_section->vma);
10848               rela.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
10849               rela.r_addend = dest;
10850
10851               rl = htab->relbrlt->contents;
10852               rl += (htab->relbrlt->reloc_count++
10853                      * sizeof (Elf64_External_Rela));
10854               bfd_elf64_swap_reloca_out (htab->relbrlt->owner, &rela, rl);
10855             }
10856           else if (info->emitrelocations)
10857             {
10858               r = get_relocs (htab->brlt, 1);
10859               if (r == NULL)
10860                 return FALSE;
10861               /* brlt, being SEC_LINKER_CREATED does not go through the
10862                  normal reloc processing.  Symbols and offsets are not
10863                  translated from input file to output file form, so
10864                  set up the offset per the output file.  */
10865               r->r_offset = (br_entry->offset
10866                              + htab->brlt->output_offset
10867                              + htab->brlt->output_section->vma);
10868               r->r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
10869               r->r_addend = dest;
10870             }
10871         }
10872
10873       dest = (br_entry->offset
10874               + htab->brlt->output_offset
10875               + htab->brlt->output_section->vma);
10876
10877       off = (dest
10878              - elf_gp (htab->brlt->output_section->owner)
10879              - htab->sec_info[stub_entry->group->link_sec->id].toc_off);
10880
10881       if (off + 0x80008000 > 0xffffffff || (off & 7) != 0)
10882         {
10883           info->callbacks->einfo
10884             (_("%P: linkage table error against `%T'\n"),
10885              stub_entry->root.string);
10886           bfd_set_error (bfd_error_bad_value);
10887           htab->stub_error = TRUE;
10888           return FALSE;
10889         }
10890
10891       if (info->emitrelocations)
10892         {
10893           r = get_relocs (stub_entry->group->stub_sec, 1 + (PPC_HA (off) != 0));
10894           if (r == NULL)
10895             return FALSE;
10896           r[0].r_offset = loc - stub_entry->group->stub_sec->contents;
10897           if (bfd_big_endian (info->output_bfd))
10898             r[0].r_offset += 2;
10899           if (stub_entry->stub_type == ppc_stub_plt_branch_r2off)
10900             r[0].r_offset += 4;
10901           r[0].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_DS);
10902           r[0].r_addend = dest;
10903           if (PPC_HA (off) != 0)
10904             {
10905               r[0].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_HA);
10906               r[1].r_offset = r[0].r_offset + 4;
10907               r[1].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO_DS);
10908               r[1].r_addend = r[0].r_addend;
10909             }
10910         }
10911
10912       if (stub_entry->stub_type != ppc_stub_plt_branch_r2off)
10913         {
10914           if (PPC_HA (off) != 0)
10915             {
10916               size = 16;
10917               bfd_put_32 (htab->params->stub_bfd,
10918                           ADDIS_R12_R2 | PPC_HA (off), loc);
10919               loc += 4;
10920               bfd_put_32 (htab->params->stub_bfd,
10921                           LD_R12_0R12 | PPC_LO (off), loc);
10922             }
10923           else
10924             {
10925               size = 12;
10926               bfd_put_32 (htab->params->stub_bfd,
10927                           LD_R12_0R2 | PPC_LO (off), loc);
10928             }
10929         }
10930       else
10931         {
10932           bfd_vma r2off = get_r2off (info, stub_entry);
10933
10934           if (r2off == (bfd_vma) -1)
10935             {
10936               htab->stub_error = TRUE;
10937               return FALSE;
10938             }
10939
10940           bfd_put_32 (htab->params->stub_bfd, STD_R2_0R1 + STK_TOC (htab), loc);
10941           loc += 4;
10942           size = 16;
10943           if (PPC_HA (off) != 0)
10944             {
10945               size += 4;
10946               bfd_put_32 (htab->params->stub_bfd,
10947                           ADDIS_R12_R2 | PPC_HA (off), loc);
10948               loc += 4;
10949               bfd_put_32 (htab->params->stub_bfd,
10950                           LD_R12_0R12 | PPC_LO (off), loc);
10951             }
10952           else
10953             bfd_put_32 (htab->params->stub_bfd, LD_R12_0R2 | PPC_LO (off), loc);
10954
10955           if (PPC_HA (r2off) != 0)
10956             {
10957               size += 4;
10958               loc += 4;
10959               bfd_put_32 (htab->params->stub_bfd,
10960                           ADDIS_R2_R2 | PPC_HA (r2off), loc);
10961             }
10962           if (PPC_LO (r2off) != 0)
10963             {
10964               size += 4;
10965               loc += 4;
10966               bfd_put_32 (htab->params->stub_bfd,
10967                           ADDI_R2_R2 | PPC_LO (r2off), loc);
10968             }
10969         }
10970       loc += 4;
10971       bfd_put_32 (htab->params->stub_bfd, MTCTR_R12, loc);
10972       loc += 4;
10973       bfd_put_32 (htab->params->stub_bfd, BCTR, loc);
10974       break;
10975
10976     case ppc_stub_plt_call:
10977     case ppc_stub_plt_call_r2save:
10978       if (stub_entry->h != NULL
10979           && stub_entry->h->is_func_descriptor
10980           && stub_entry->h->oh != NULL)
10981         {
10982           struct ppc_link_hash_entry *fh = ppc_follow_link (stub_entry->h->oh);
10983
10984           /* If the old-ABI "dot-symbol" is undefined make it weak so
10985              we don't get a link error from RELOC_FOR_GLOBAL_SYMBOL.  */
10986           if (fh->elf.root.type == bfd_link_hash_undefined)
10987             fh->elf.root.type = bfd_link_hash_undefweak;
10988           /* Stop undo_symbol_twiddle changing it back to undefined.  */
10989           fh->was_undefined = 0;
10990         }
10991
10992       /* Now build the stub.  */
10993       dest = stub_entry->plt_ent->plt.offset & ~1;
10994       if (dest >= (bfd_vma) -2)
10995         abort ();
10996
10997       plt = htab->elf.splt;
10998       if (!htab->elf.dynamic_sections_created
10999           || stub_entry->h == NULL
11000           || stub_entry->h->elf.dynindx == -1)
11001         plt = htab->elf.iplt;
11002
11003       dest += plt->output_offset + plt->output_section->vma;
11004
11005       if (stub_entry->h == NULL
11006           && (stub_entry->plt_ent->plt.offset & 1) == 0)
11007         {
11008           Elf_Internal_Rela rela;
11009           bfd_byte *rl;
11010
11011           rela.r_offset = dest;
11012           if (htab->opd_abi)
11013             rela.r_info = ELF64_R_INFO (0, R_PPC64_JMP_IREL);
11014           else
11015             rela.r_info = ELF64_R_INFO (0, R_PPC64_IRELATIVE);
11016           rela.r_addend = (stub_entry->target_value
11017                            + stub_entry->target_section->output_offset
11018                            + stub_entry->target_section->output_section->vma);
11019
11020           rl = (htab->elf.irelplt->contents
11021                 + (htab->elf.irelplt->reloc_count++
11022                    * sizeof (Elf64_External_Rela)));
11023           bfd_elf64_swap_reloca_out (info->output_bfd, &rela, rl);
11024           stub_entry->plt_ent->plt.offset |= 1;
11025         }
11026
11027       off = (dest
11028              - elf_gp (plt->output_section->owner)
11029              - htab->sec_info[stub_entry->group->link_sec->id].toc_off);
11030
11031       if (off + 0x80008000 > 0xffffffff || (off & 7) != 0)
11032         {
11033           info->callbacks->einfo
11034             (_("%P: linkage table error against `%T'\n"),
11035              stub_entry->h != NULL
11036              ? stub_entry->h->elf.root.root.string
11037              : "<local sym>");
11038           bfd_set_error (bfd_error_bad_value);
11039           htab->stub_error = TRUE;
11040           return FALSE;
11041         }
11042
11043       if (htab->params->plt_stub_align != 0)
11044         {
11045           unsigned pad = plt_stub_pad (htab, stub_entry, off);
11046
11047           stub_entry->group->stub_sec->size += pad;
11048           stub_entry->stub_offset = stub_entry->group->stub_sec->size;
11049           loc += pad;
11050         }
11051
11052       r = NULL;
11053       if (info->emitrelocations)
11054         {
11055           r = get_relocs (stub_entry->group->stub_sec,
11056                           ((PPC_HA (off) != 0)
11057                            + (htab->opd_abi
11058                               ? 2 + (htab->params->plt_static_chain
11059                                      && PPC_HA (off + 16) == PPC_HA (off))
11060                               : 1)));
11061           if (r == NULL)
11062             return FALSE;
11063           r[0].r_offset = loc - stub_entry->group->stub_sec->contents;
11064           if (bfd_big_endian (info->output_bfd))
11065             r[0].r_offset += 2;
11066           r[0].r_addend = dest;
11067         }
11068       if (stub_entry->h != NULL
11069           && (stub_entry->h == htab->tls_get_addr_fd
11070               || stub_entry->h == htab->tls_get_addr)
11071           && htab->params->tls_get_addr_opt)
11072         p = build_tls_get_addr_stub (htab, stub_entry, loc, off, r);
11073       else
11074         p = build_plt_stub (htab, stub_entry, loc, off, r);
11075       size = p - loc;
11076       break;
11077
11078     case ppc_stub_save_res:
11079       return TRUE;
11080
11081     default:
11082       BFD_FAIL ();
11083       return FALSE;
11084     }
11085
11086   stub_entry->group->stub_sec->size += size;
11087
11088   if (htab->params->emit_stub_syms)
11089     {
11090       struct elf_link_hash_entry *h;
11091       size_t len1, len2;
11092       char *name;
11093       const char *const stub_str[] = { "long_branch",
11094                                        "long_branch_r2off",
11095                                        "plt_branch",
11096                                        "plt_branch_r2off",
11097                                        "plt_call",
11098                                        "plt_call" };
11099
11100       len1 = strlen (stub_str[stub_entry->stub_type - 1]);
11101       len2 = strlen (stub_entry->root.string);
11102       name = bfd_malloc (len1 + len2 + 2);
11103       if (name == NULL)
11104         return FALSE;
11105       memcpy (name, stub_entry->root.string, 9);
11106       memcpy (name + 9, stub_str[stub_entry->stub_type - 1], len1);
11107       memcpy (name + len1 + 9, stub_entry->root.string + 8, len2 - 8 + 1);
11108       h = elf_link_hash_lookup (&htab->elf, name, TRUE, FALSE, FALSE);
11109       if (h == NULL)
11110         return FALSE;
11111       if (h->root.type == bfd_link_hash_new)
11112         {
11113           h->root.type = bfd_link_hash_defined;
11114           h->root.u.def.section = stub_entry->group->stub_sec;
11115           h->root.u.def.value = stub_entry->stub_offset;
11116           h->ref_regular = 1;
11117           h->def_regular = 1;
11118           h->ref_regular_nonweak = 1;
11119           h->forced_local = 1;
11120           h->non_elf = 0;
11121           h->root.linker_def = 1;
11122         }
11123     }
11124
11125   return TRUE;
11126 }
11127
11128 /* As above, but don't actually build the stub.  Just bump offset so
11129    we know stub section sizes, and select plt_branch stubs where
11130    long_branch stubs won't do.  */
11131
11132 static bfd_boolean
11133 ppc_size_one_stub (struct bfd_hash_entry *gen_entry, void *in_arg)
11134 {
11135   struct ppc_stub_hash_entry *stub_entry;
11136   struct bfd_link_info *info;
11137   struct ppc_link_hash_table *htab;
11138   bfd_vma off;
11139   int size;
11140
11141   /* Massage our args to the form they really have.  */
11142   stub_entry = (struct ppc_stub_hash_entry *) gen_entry;
11143   info = in_arg;
11144
11145   htab = ppc_hash_table (info);
11146   if (htab == NULL)
11147     return FALSE;
11148
11149   if (stub_entry->h != NULL
11150       && stub_entry->h->save_res
11151       && stub_entry->h->elf.root.type == bfd_link_hash_defined
11152       && stub_entry->h->elf.root.u.def.section == htab->sfpr)
11153     {
11154       /* Don't make stubs to out-of-line register save/restore
11155          functions.  Instead, emit copies of the functions.  */
11156       stub_entry->group->needs_save_res = 1;
11157       stub_entry->stub_type = ppc_stub_save_res;
11158       return TRUE;
11159     }
11160
11161   if (stub_entry->stub_type == ppc_stub_plt_call
11162       || stub_entry->stub_type == ppc_stub_plt_call_r2save)
11163     {
11164       asection *plt;
11165       off = stub_entry->plt_ent->plt.offset & ~(bfd_vma) 1;
11166       if (off >= (bfd_vma) -2)
11167         abort ();
11168       plt = htab->elf.splt;
11169       if (!htab->elf.dynamic_sections_created
11170           || stub_entry->h == NULL
11171           || stub_entry->h->elf.dynindx == -1)
11172         plt = htab->elf.iplt;
11173       off += (plt->output_offset
11174               + plt->output_section->vma
11175               - elf_gp (plt->output_section->owner)
11176               - htab->sec_info[stub_entry->group->link_sec->id].toc_off);
11177
11178       size = plt_stub_size (htab, stub_entry, off);
11179       if (htab->params->plt_stub_align)
11180         size += plt_stub_pad (htab, stub_entry, off);
11181       if (info->emitrelocations)
11182         {
11183           stub_entry->group->stub_sec->reloc_count
11184             += ((PPC_HA (off) != 0)
11185                 + (htab->opd_abi
11186                    ? 2 + (htab->params->plt_static_chain
11187                           && PPC_HA (off + 16) == PPC_HA (off))
11188                    : 1));
11189           stub_entry->group->stub_sec->flags |= SEC_RELOC;
11190         }
11191     }
11192   else
11193     {
11194       /* ppc_stub_long_branch or ppc_stub_plt_branch, or their r2off
11195          variants.  */
11196       bfd_vma r2off = 0;
11197       bfd_vma local_off = 0;
11198
11199       off = (stub_entry->target_value
11200              + stub_entry->target_section->output_offset
11201              + stub_entry->target_section->output_section->vma);
11202       off -= (stub_entry->group->stub_sec->size
11203               + stub_entry->group->stub_sec->output_offset
11204               + stub_entry->group->stub_sec->output_section->vma);
11205
11206       /* Reset the stub type from the plt variant in case we now
11207          can reach with a shorter stub.  */
11208       if (stub_entry->stub_type >= ppc_stub_plt_branch)
11209         stub_entry->stub_type += ppc_stub_long_branch - ppc_stub_plt_branch;
11210
11211       size = 4;
11212       if (stub_entry->stub_type == ppc_stub_long_branch_r2off)
11213         {
11214           r2off = get_r2off (info, stub_entry);
11215           if (r2off == (bfd_vma) -1)
11216             {
11217               htab->stub_error = TRUE;
11218               return FALSE;
11219             }
11220           size = 8;
11221           if (PPC_HA (r2off) != 0)
11222             size += 4;
11223           if (PPC_LO (r2off) != 0)
11224             size += 4;
11225           off -= size - 4;
11226         }
11227
11228       local_off = PPC64_LOCAL_ENTRY_OFFSET (stub_entry->other);
11229
11230       /* If the branch offset if too big, use a ppc_stub_plt_branch.
11231          Do the same for -R objects without function descriptors.  */
11232       if (off + (1 << 25) >= (bfd_vma) (1 << 26) - local_off
11233           || (stub_entry->stub_type == ppc_stub_long_branch_r2off
11234               && r2off == 0
11235               && htab->sec_info[stub_entry->target_section->id].toc_off == 0))
11236         {
11237           struct ppc_branch_hash_entry *br_entry;
11238
11239           br_entry = ppc_branch_hash_lookup (&htab->branch_hash_table,
11240                                              stub_entry->root.string + 9,
11241                                              TRUE, FALSE);
11242           if (br_entry == NULL)
11243             {
11244               info->callbacks->einfo (_("%P: can't build branch stub `%s'\n"),
11245                                       stub_entry->root.string);
11246               htab->stub_error = TRUE;
11247               return FALSE;
11248             }
11249
11250           if (br_entry->iter != htab->stub_iteration)
11251             {
11252               br_entry->iter = htab->stub_iteration;
11253               br_entry->offset = htab->brlt->size;
11254               htab->brlt->size += 8;
11255
11256               if (htab->relbrlt != NULL)
11257                 htab->relbrlt->size += sizeof (Elf64_External_Rela);
11258               else if (info->emitrelocations)
11259                 {
11260                   htab->brlt->reloc_count += 1;
11261                   htab->brlt->flags |= SEC_RELOC;
11262                 }
11263             }
11264
11265           stub_entry->stub_type += ppc_stub_plt_branch - ppc_stub_long_branch;
11266           off = (br_entry->offset
11267                  + htab->brlt->output_offset
11268                  + htab->brlt->output_section->vma
11269                  - elf_gp (htab->brlt->output_section->owner)
11270                  - htab->sec_info[stub_entry->group->link_sec->id].toc_off);
11271
11272           if (info->emitrelocations)
11273             {
11274               stub_entry->group->stub_sec->reloc_count
11275                 += 1 + (PPC_HA (off) != 0);
11276               stub_entry->group->stub_sec->flags |= SEC_RELOC;
11277             }
11278
11279           if (stub_entry->stub_type != ppc_stub_plt_branch_r2off)
11280             {
11281               size = 12;
11282               if (PPC_HA (off) != 0)
11283                 size = 16;
11284             }
11285           else
11286             {
11287               size = 16;
11288               if (PPC_HA (off) != 0)
11289                 size += 4;
11290
11291               if (PPC_HA (r2off) != 0)
11292                 size += 4;
11293               if (PPC_LO (r2off) != 0)
11294                 size += 4;
11295             }
11296         }
11297       else if (info->emitrelocations)
11298         {
11299           stub_entry->group->stub_sec->reloc_count += 1;
11300           stub_entry->group->stub_sec->flags |= SEC_RELOC;
11301         }
11302     }
11303
11304   stub_entry->group->stub_sec->size += size;
11305   return TRUE;
11306 }
11307
11308 /* Set up various things so that we can make a list of input sections
11309    for each output section included in the link.  Returns -1 on error,
11310    0 when no stubs will be needed, and 1 on success.  */
11311
11312 int
11313 ppc64_elf_setup_section_lists (struct bfd_link_info *info)
11314 {
11315   unsigned int id;
11316   bfd_size_type amt;
11317   struct ppc_link_hash_table *htab = ppc_hash_table (info);
11318
11319   if (htab == NULL)
11320     return -1;
11321
11322   htab->sec_info_arr_size = bfd_get_next_section_id ();
11323   amt = sizeof (*htab->sec_info) * (htab->sec_info_arr_size);
11324   htab->sec_info = bfd_zmalloc (amt);
11325   if (htab->sec_info == NULL)
11326     return -1;
11327
11328   /* Set toc_off for com, und, abs and ind sections.  */
11329   for (id = 0; id < 3; id++)
11330     htab->sec_info[id].toc_off = TOC_BASE_OFF;
11331
11332   return 1;
11333 }
11334
11335 /* Set up for first pass at multitoc partitioning.  */
11336
11337 void
11338 ppc64_elf_start_multitoc_partition (struct bfd_link_info *info)
11339 {
11340   struct ppc_link_hash_table *htab = ppc_hash_table (info);
11341
11342   htab->toc_curr = ppc64_elf_set_toc (info, info->output_bfd);
11343   htab->toc_bfd = NULL;
11344   htab->toc_first_sec = NULL;
11345 }
11346
11347 /* The linker repeatedly calls this function for each TOC input section
11348    and linker generated GOT section.  Group input bfds such that the toc
11349    within a group is less than 64k in size.  */
11350
11351 bfd_boolean
11352 ppc64_elf_next_toc_section (struct bfd_link_info *info, asection *isec)
11353 {
11354   struct ppc_link_hash_table *htab = ppc_hash_table (info);
11355   bfd_vma addr, off, limit;
11356
11357   if (htab == NULL)
11358     return FALSE;
11359
11360   if (!htab->second_toc_pass)
11361     {
11362       /* Keep track of the first .toc or .got section for this input bfd.  */
11363       bfd_boolean new_bfd = htab->toc_bfd != isec->owner;
11364
11365       if (new_bfd)
11366         {
11367           htab->toc_bfd = isec->owner;
11368           htab->toc_first_sec = isec;
11369         }
11370
11371       addr = isec->output_offset + isec->output_section->vma;
11372       off = addr - htab->toc_curr;
11373       limit = 0x80008000;
11374       if (ppc64_elf_tdata (isec->owner)->has_small_toc_reloc)
11375         limit = 0x10000;
11376       if (off + isec->size > limit)
11377         {
11378           addr = (htab->toc_first_sec->output_offset
11379                   + htab->toc_first_sec->output_section->vma);
11380           htab->toc_curr = addr;
11381           htab->toc_curr &= -TOC_BASE_ALIGN;
11382         }
11383
11384       /* toc_curr is the base address of this toc group.  Set elf_gp
11385          for the input section to be the offset relative to the
11386          output toc base plus 0x8000.  Making the input elf_gp an
11387          offset allows us to move the toc as a whole without
11388          recalculating input elf_gp.  */
11389       off = htab->toc_curr - elf_gp (isec->output_section->owner);
11390       off += TOC_BASE_OFF;
11391
11392       /* Die if someone uses a linker script that doesn't keep input
11393          file .toc and .got together.  */
11394       if (new_bfd
11395           && elf_gp (isec->owner) != 0
11396           && elf_gp (isec->owner) != off)
11397         return FALSE;
11398
11399       elf_gp (isec->owner) = off;
11400       return TRUE;
11401     }
11402
11403   /* During the second pass toc_first_sec points to the start of
11404      a toc group, and toc_curr is used to track the old elf_gp.
11405      We use toc_bfd to ensure we only look at each bfd once.  */
11406   if (htab->toc_bfd == isec->owner)
11407     return TRUE;
11408   htab->toc_bfd = isec->owner;
11409
11410   if (htab->toc_first_sec == NULL
11411       || htab->toc_curr != elf_gp (isec->owner))
11412     {
11413       htab->toc_curr = elf_gp (isec->owner);
11414       htab->toc_first_sec = isec;
11415     }
11416   addr = (htab->toc_first_sec->output_offset
11417           + htab->toc_first_sec->output_section->vma);
11418   off = addr - elf_gp (isec->output_section->owner) + TOC_BASE_OFF;
11419   elf_gp (isec->owner) = off;
11420
11421   return TRUE;
11422 }
11423
11424 /* Called via elf_link_hash_traverse to merge GOT entries for global
11425    symbol H.  */
11426
11427 static bfd_boolean
11428 merge_global_got (struct elf_link_hash_entry *h, void *inf ATTRIBUTE_UNUSED)
11429 {
11430   if (h->root.type == bfd_link_hash_indirect)
11431     return TRUE;
11432
11433   merge_got_entries (&h->got.glist);
11434
11435   return TRUE;
11436 }
11437
11438 /* Called via elf_link_hash_traverse to allocate GOT entries for global
11439    symbol H.  */
11440
11441 static bfd_boolean
11442 reallocate_got (struct elf_link_hash_entry *h, void *inf)
11443 {
11444   struct got_entry *gent;
11445
11446   if (h->root.type == bfd_link_hash_indirect)
11447     return TRUE;
11448
11449   for (gent = h->got.glist; gent != NULL; gent = gent->next)
11450     if (!gent->is_indirect)
11451       allocate_got (h, (struct bfd_link_info *) inf, gent);
11452   return TRUE;
11453 }
11454
11455 /* Called on the first multitoc pass after the last call to
11456    ppc64_elf_next_toc_section.  This function removes duplicate GOT
11457    entries.  */
11458
11459 bfd_boolean
11460 ppc64_elf_layout_multitoc (struct bfd_link_info *info)
11461 {
11462   struct ppc_link_hash_table *htab = ppc_hash_table (info);
11463   struct bfd *ibfd, *ibfd2;
11464   bfd_boolean done_something;
11465
11466   htab->multi_toc_needed = htab->toc_curr != elf_gp (info->output_bfd);
11467
11468   if (!htab->do_multi_toc)
11469     return FALSE;
11470
11471   /* Merge global sym got entries within a toc group.  */
11472   elf_link_hash_traverse (&htab->elf, merge_global_got, info);
11473
11474   /* And tlsld_got.  */
11475   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
11476     {
11477       struct got_entry *ent, *ent2;
11478
11479       if (!is_ppc64_elf (ibfd))
11480         continue;
11481
11482       ent = ppc64_tlsld_got (ibfd);
11483       if (!ent->is_indirect
11484           && ent->got.offset != (bfd_vma) -1)
11485         {
11486           for (ibfd2 = ibfd->link.next; ibfd2 != NULL; ibfd2 = ibfd2->link.next)
11487             {
11488               if (!is_ppc64_elf (ibfd2))
11489                 continue;
11490
11491               ent2 = ppc64_tlsld_got (ibfd2);
11492               if (!ent2->is_indirect
11493                   && ent2->got.offset != (bfd_vma) -1
11494                   && elf_gp (ibfd2) == elf_gp (ibfd))
11495                 {
11496                   ent2->is_indirect = TRUE;
11497                   ent2->got.ent = ent;
11498                 }
11499             }
11500         }
11501     }
11502
11503   /* Zap sizes of got sections.  */
11504   htab->elf.irelplt->rawsize = htab->elf.irelplt->size;
11505   htab->elf.irelplt->size -= htab->got_reli_size;
11506   htab->got_reli_size = 0;
11507
11508   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
11509     {
11510       asection *got, *relgot;
11511
11512       if (!is_ppc64_elf (ibfd))
11513         continue;
11514
11515       got = ppc64_elf_tdata (ibfd)->got;
11516       if (got != NULL)
11517         {
11518           got->rawsize = got->size;
11519           got->size = 0;
11520           relgot = ppc64_elf_tdata (ibfd)->relgot;
11521           relgot->rawsize = relgot->size;
11522           relgot->size = 0;
11523         }
11524     }
11525
11526   /* Now reallocate the got, local syms first.  We don't need to
11527      allocate section contents again since we never increase size.  */
11528   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
11529     {
11530       struct got_entry **lgot_ents;
11531       struct got_entry **end_lgot_ents;
11532       struct plt_entry **local_plt;
11533       struct plt_entry **end_local_plt;
11534       unsigned char *lgot_masks;
11535       bfd_size_type locsymcount;
11536       Elf_Internal_Shdr *symtab_hdr;
11537       asection *s;
11538
11539       if (!is_ppc64_elf (ibfd))
11540         continue;
11541
11542       lgot_ents = elf_local_got_ents (ibfd);
11543       if (!lgot_ents)
11544         continue;
11545
11546       symtab_hdr = &elf_symtab_hdr (ibfd);
11547       locsymcount = symtab_hdr->sh_info;
11548       end_lgot_ents = lgot_ents + locsymcount;
11549       local_plt = (struct plt_entry **) end_lgot_ents;
11550       end_local_plt = local_plt + locsymcount;
11551       lgot_masks = (unsigned char *) end_local_plt;
11552       s = ppc64_elf_tdata (ibfd)->got;
11553       for (; lgot_ents < end_lgot_ents; ++lgot_ents, ++lgot_masks)
11554         {
11555           struct got_entry *ent;
11556
11557           for (ent = *lgot_ents; ent != NULL; ent = ent->next)
11558             {
11559               unsigned int ent_size = 8;
11560               unsigned int rel_size = sizeof (Elf64_External_Rela);
11561
11562               ent->got.offset = s->size;
11563               if ((ent->tls_type & *lgot_masks & TLS_GD) != 0)
11564                 {
11565                   ent_size *= 2;
11566                   rel_size *= 2;
11567                 }
11568               s->size += ent_size;
11569               if ((*lgot_masks & PLT_IFUNC) != 0)
11570                 {
11571                   htab->elf.irelplt->size += rel_size;
11572                   htab->got_reli_size += rel_size;
11573                 }
11574               else if (bfd_link_pic (info))
11575                 {
11576                   asection *srel = ppc64_elf_tdata (ibfd)->relgot;
11577                   srel->size += rel_size;
11578                 }
11579             }
11580         }
11581     }
11582
11583   elf_link_hash_traverse (&htab->elf, reallocate_got, info);
11584
11585   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
11586     {
11587       struct got_entry *ent;
11588
11589       if (!is_ppc64_elf (ibfd))
11590         continue;
11591
11592       ent = ppc64_tlsld_got (ibfd);
11593       if (!ent->is_indirect
11594           && ent->got.offset != (bfd_vma) -1)
11595         {
11596           asection *s = ppc64_elf_tdata (ibfd)->got;
11597           ent->got.offset = s->size;
11598           s->size += 16;
11599           if (bfd_link_pic (info))
11600             {
11601               asection *srel = ppc64_elf_tdata (ibfd)->relgot;
11602               srel->size += sizeof (Elf64_External_Rela);
11603             }
11604         }
11605     }
11606
11607   done_something = htab->elf.irelplt->rawsize != htab->elf.irelplt->size;
11608   if (!done_something)
11609     for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
11610       {
11611         asection *got;
11612
11613         if (!is_ppc64_elf (ibfd))
11614           continue;
11615
11616         got = ppc64_elf_tdata (ibfd)->got;
11617         if (got != NULL)
11618           {
11619             done_something = got->rawsize != got->size;
11620             if (done_something)
11621               break;
11622           }
11623       }
11624
11625   if (done_something)
11626     (*htab->params->layout_sections_again) ();
11627
11628   /* Set up for second pass over toc sections to recalculate elf_gp
11629      on input sections.  */
11630   htab->toc_bfd = NULL;
11631   htab->toc_first_sec = NULL;
11632   htab->second_toc_pass = TRUE;
11633   return done_something;
11634 }
11635
11636 /* Called after second pass of multitoc partitioning.  */
11637
11638 void
11639 ppc64_elf_finish_multitoc_partition (struct bfd_link_info *info)
11640 {
11641   struct ppc_link_hash_table *htab = ppc_hash_table (info);
11642
11643   /* After the second pass, toc_curr tracks the TOC offset used
11644      for code sections below in ppc64_elf_next_input_section.  */
11645   htab->toc_curr = TOC_BASE_OFF;
11646 }
11647
11648 /* No toc references were found in ISEC.  If the code in ISEC makes no
11649    calls, then there's no need to use toc adjusting stubs when branching
11650    into ISEC.  Actually, indirect calls from ISEC are OK as they will
11651    load r2.  Returns -1 on error, 0 for no stub needed, 1 for stub
11652    needed, and 2 if a cyclical call-graph was found but no other reason
11653    for a stub was detected.  If called from the top level, a return of
11654    2 means the same as a return of 0.  */
11655
11656 static int
11657 toc_adjusting_stub_needed (struct bfd_link_info *info, asection *isec)
11658 {
11659   int ret;
11660
11661   /* Mark this section as checked.  */
11662   isec->call_check_done = 1;
11663
11664   /* We know none of our code bearing sections will need toc stubs.  */
11665   if ((isec->flags & SEC_LINKER_CREATED) != 0)
11666     return 0;
11667
11668   if (isec->size == 0)
11669     return 0;
11670
11671   if (isec->output_section == NULL)
11672     return 0;
11673
11674   ret = 0;
11675   if (isec->reloc_count != 0)
11676     {
11677       Elf_Internal_Rela *relstart, *rel;
11678       Elf_Internal_Sym *local_syms;
11679       struct ppc_link_hash_table *htab;
11680
11681       relstart = _bfd_elf_link_read_relocs (isec->owner, isec, NULL, NULL,
11682                                             info->keep_memory);
11683       if (relstart == NULL)
11684         return -1;
11685
11686       /* Look for branches to outside of this section.  */
11687       local_syms = NULL;
11688       htab = ppc_hash_table (info);
11689       if (htab == NULL)
11690         return -1;
11691
11692       for (rel = relstart; rel < relstart + isec->reloc_count; ++rel)
11693         {
11694           enum elf_ppc64_reloc_type r_type;
11695           unsigned long r_symndx;
11696           struct elf_link_hash_entry *h;
11697           struct ppc_link_hash_entry *eh;
11698           Elf_Internal_Sym *sym;
11699           asection *sym_sec;
11700           struct _opd_sec_data *opd;
11701           bfd_vma sym_value;
11702           bfd_vma dest;
11703
11704           r_type = ELF64_R_TYPE (rel->r_info);
11705           if (r_type != R_PPC64_REL24
11706               && r_type != R_PPC64_REL14
11707               && r_type != R_PPC64_REL14_BRTAKEN
11708               && r_type != R_PPC64_REL14_BRNTAKEN)
11709             continue;
11710
11711           r_symndx = ELF64_R_SYM (rel->r_info);
11712           if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms, r_symndx,
11713                           isec->owner))
11714             {
11715               ret = -1;
11716               break;
11717             }
11718
11719           /* Calls to dynamic lib functions go through a plt call stub
11720              that uses r2.  */
11721           eh = (struct ppc_link_hash_entry *) h;
11722           if (eh != NULL
11723               && (eh->elf.plt.plist != NULL
11724                   || (eh->oh != NULL
11725                       && ppc_follow_link (eh->oh)->elf.plt.plist != NULL)))
11726             {
11727               ret = 1;
11728               break;
11729             }
11730
11731           if (sym_sec == NULL)
11732             /* Ignore other undefined symbols.  */
11733             continue;
11734
11735           /* Assume branches to other sections not included in the
11736              link need stubs too, to cover -R and absolute syms.  */
11737           if (sym_sec->output_section == NULL)
11738             {
11739               ret = 1;
11740               break;
11741             }
11742
11743           if (h == NULL)
11744             sym_value = sym->st_value;
11745           else
11746             {
11747               if (h->root.type != bfd_link_hash_defined
11748                   && h->root.type != bfd_link_hash_defweak)
11749                 abort ();
11750               sym_value = h->root.u.def.value;
11751             }
11752           sym_value += rel->r_addend;
11753
11754           /* If this branch reloc uses an opd sym, find the code section.  */
11755           opd = get_opd_info (sym_sec);
11756           if (opd != NULL)
11757             {
11758               if (h == NULL && opd->adjust != NULL)
11759                 {
11760                   long adjust;
11761
11762                   adjust = opd->adjust[OPD_NDX (sym_value)];
11763                   if (adjust == -1)
11764                     /* Assume deleted functions won't ever be called.  */
11765                     continue;
11766                   sym_value += adjust;
11767                 }
11768
11769               dest = opd_entry_value (sym_sec, sym_value,
11770                                       &sym_sec, NULL, FALSE);
11771               if (dest == (bfd_vma) -1)
11772                 continue;
11773             }
11774           else
11775             dest = (sym_value
11776                     + sym_sec->output_offset
11777                     + sym_sec->output_section->vma);
11778
11779           /* Ignore branch to self.  */
11780           if (sym_sec == isec)
11781             continue;
11782
11783           /* If the called function uses the toc, we need a stub.  */
11784           if (sym_sec->has_toc_reloc
11785               || sym_sec->makes_toc_func_call)
11786             {
11787               ret = 1;
11788               break;
11789             }
11790
11791           /* Assume any branch that needs a long branch stub might in fact
11792              need a plt_branch stub.  A plt_branch stub uses r2.  */
11793           else if (dest - (isec->output_offset
11794                            + isec->output_section->vma
11795                            + rel->r_offset) + (1 << 25)
11796                    >= (2u << 25) - PPC64_LOCAL_ENTRY_OFFSET (h
11797                                                              ? h->other
11798                                                              : sym->st_other))
11799             {
11800               ret = 1;
11801               break;
11802             }
11803
11804           /* If calling back to a section in the process of being
11805              tested, we can't say for sure that no toc adjusting stubs
11806              are needed, so don't return zero.  */
11807           else if (sym_sec->call_check_in_progress)
11808             ret = 2;
11809
11810           /* Branches to another section that itself doesn't have any TOC
11811              references are OK.  Recursively call ourselves to check.  */
11812           else if (!sym_sec->call_check_done)
11813             {
11814               int recur;
11815
11816               /* Mark current section as indeterminate, so that other
11817                  sections that call back to current won't be marked as
11818                  known.  */
11819               isec->call_check_in_progress = 1;
11820               recur = toc_adjusting_stub_needed (info, sym_sec);
11821               isec->call_check_in_progress = 0;
11822
11823               if (recur != 0)
11824                 {
11825                   ret = recur;
11826                   if (recur != 2)
11827                     break;
11828                 }
11829             }
11830         }
11831
11832       if (local_syms != NULL
11833           && (elf_symtab_hdr (isec->owner).contents
11834               != (unsigned char *) local_syms))
11835         free (local_syms);
11836       if (elf_section_data (isec)->relocs != relstart)
11837         free (relstart);
11838     }
11839
11840   if ((ret & 1) == 0
11841       && isec->map_head.s != NULL
11842       && (strcmp (isec->output_section->name, ".init") == 0
11843           || strcmp (isec->output_section->name, ".fini") == 0))
11844     {
11845       if (isec->map_head.s->has_toc_reloc
11846           || isec->map_head.s->makes_toc_func_call)
11847         ret = 1;
11848       else if (!isec->map_head.s->call_check_done)
11849         {
11850           int recur;
11851           isec->call_check_in_progress = 1;
11852           recur = toc_adjusting_stub_needed (info, isec->map_head.s);
11853           isec->call_check_in_progress = 0;
11854           if (recur != 0)
11855             ret = recur;
11856         }
11857     }
11858
11859   if (ret == 1)
11860     isec->makes_toc_func_call = 1;
11861
11862   return ret;
11863 }
11864
11865 /* The linker repeatedly calls this function for each input section,
11866    in the order that input sections are linked into output sections.
11867    Build lists of input sections to determine groupings between which
11868    we may insert linker stubs.  */
11869
11870 bfd_boolean
11871 ppc64_elf_next_input_section (struct bfd_link_info *info, asection *isec)
11872 {
11873   struct ppc_link_hash_table *htab = ppc_hash_table (info);
11874
11875   if (htab == NULL)
11876     return FALSE;
11877
11878   if ((isec->output_section->flags & SEC_CODE) != 0
11879       && isec->output_section->id < htab->sec_info_arr_size)
11880     {
11881       /* This happens to make the list in reverse order,
11882          which is what we want.  */
11883       htab->sec_info[isec->id].u.list
11884         = htab->sec_info[isec->output_section->id].u.list;
11885       htab->sec_info[isec->output_section->id].u.list = isec;
11886     }
11887
11888   if (htab->multi_toc_needed)
11889     {
11890       /* Analyse sections that aren't already flagged as needing a
11891          valid toc pointer.  Exclude .fixup for the linux kernel.
11892          .fixup contains branches, but only back to the function that
11893          hit an exception.  */
11894       if (!(isec->has_toc_reloc
11895             || (isec->flags & SEC_CODE) == 0
11896             || strcmp (isec->name, ".fixup") == 0
11897             || isec->call_check_done))
11898         {
11899           if (toc_adjusting_stub_needed (info, isec) < 0)
11900             return FALSE;
11901         }
11902       /* Make all sections use the TOC assigned for this object file.
11903          This will be wrong for pasted sections;  We fix that in
11904          check_pasted_section().  */
11905       if (elf_gp (isec->owner) != 0)
11906         htab->toc_curr = elf_gp (isec->owner);
11907     }
11908
11909   htab->sec_info[isec->id].toc_off = htab->toc_curr;
11910   return TRUE;
11911 }
11912
11913 /* Check that all .init and .fini sections use the same toc, if they
11914    have toc relocs.  */
11915
11916 static bfd_boolean
11917 check_pasted_section (struct bfd_link_info *info, const char *name)
11918 {
11919   asection *o = bfd_get_section_by_name (info->output_bfd, name);
11920
11921   if (o != NULL)
11922     {
11923       struct ppc_link_hash_table *htab = ppc_hash_table (info);
11924       bfd_vma toc_off = 0;
11925       asection *i;
11926
11927       for (i = o->map_head.s; i != NULL; i = i->map_head.s)
11928         if (i->has_toc_reloc)
11929           {
11930             if (toc_off == 0)
11931               toc_off = htab->sec_info[i->id].toc_off;
11932             else if (toc_off != htab->sec_info[i->id].toc_off)
11933               return FALSE;
11934           }
11935
11936       if (toc_off == 0)
11937         for (i = o->map_head.s; i != NULL; i = i->map_head.s)
11938           if (i->makes_toc_func_call)
11939             {
11940               toc_off = htab->sec_info[i->id].toc_off;
11941               break;
11942             }
11943
11944       /* Make sure the whole pasted function uses the same toc offset.  */
11945       if (toc_off != 0)
11946         for (i = o->map_head.s; i != NULL; i = i->map_head.s)
11947           htab->sec_info[i->id].toc_off = toc_off;
11948     }
11949   return TRUE;
11950 }
11951
11952 bfd_boolean
11953 ppc64_elf_check_init_fini (struct bfd_link_info *info)
11954 {
11955   return (check_pasted_section (info, ".init")
11956           & check_pasted_section (info, ".fini"));
11957 }
11958
11959 /* See whether we can group stub sections together.  Grouping stub
11960    sections may result in fewer stubs.  More importantly, we need to
11961    put all .init* and .fini* stubs at the beginning of the .init or
11962    .fini output sections respectively, because glibc splits the
11963    _init and _fini functions into multiple parts.  Putting a stub in
11964    the middle of a function is not a good idea.  */
11965
11966 static bfd_boolean
11967 group_sections (struct bfd_link_info *info,
11968                 bfd_size_type stub_group_size,
11969                 bfd_boolean stubs_always_before_branch)
11970 {
11971   struct ppc_link_hash_table *htab;
11972   asection *osec;
11973   bfd_size_type stub14_group_size;
11974   bfd_boolean suppress_size_errors;
11975
11976   htab = ppc_hash_table (info);
11977   if (htab == NULL)
11978     return FALSE;
11979
11980   suppress_size_errors = FALSE;
11981   stub14_group_size = stub_group_size >> 10;
11982   if (stub_group_size == 1)
11983     {
11984       /* Default values.  */
11985       if (stubs_always_before_branch)
11986         {
11987           stub_group_size = 0x1e00000;
11988           stub14_group_size = 0x7800;
11989         }
11990       else
11991         {
11992           stub_group_size = 0x1c00000;
11993           stub14_group_size = 0x7000;
11994         }
11995       suppress_size_errors = TRUE;
11996     }
11997
11998   for (osec = info->output_bfd->sections; osec != NULL; osec = osec->next)
11999     {
12000       asection *tail;
12001
12002       if (osec->id >= htab->sec_info_arr_size)
12003         continue;
12004
12005       tail = htab->sec_info[osec->id].u.list;
12006       while (tail != NULL)
12007         {
12008           asection *curr;
12009           asection *prev;
12010           bfd_size_type total;
12011           bfd_boolean big_sec;
12012           bfd_vma curr_toc;
12013           struct map_stub *group;
12014
12015           curr = tail;
12016           total = tail->size;
12017           big_sec = total > (ppc64_elf_section_data (tail) != NULL
12018                              && ppc64_elf_section_data (tail)->has_14bit_branch
12019                              ? stub14_group_size : stub_group_size);
12020           if (big_sec && !suppress_size_errors)
12021             (*_bfd_error_handler) (_("%B section %A exceeds stub group size"),
12022                                      tail->owner, tail);
12023           curr_toc = htab->sec_info[tail->id].toc_off;
12024
12025           while ((prev = htab->sec_info[curr->id].u.list) != NULL
12026                  && ((total += curr->output_offset - prev->output_offset)
12027                      < (ppc64_elf_section_data (prev) != NULL
12028                         && ppc64_elf_section_data (prev)->has_14bit_branch
12029                         ? stub14_group_size : stub_group_size))
12030                  && htab->sec_info[prev->id].toc_off == curr_toc)
12031             curr = prev;
12032
12033           /* OK, the size from the start of CURR to the end is less
12034              than stub_group_size and thus can be handled by one stub
12035              section.  (or the tail section is itself larger than
12036              stub_group_size, in which case we may be toast.)  We
12037              should really be keeping track of the total size of stubs
12038              added here, as stubs contribute to the final output
12039              section size.  That's a little tricky, and this way will
12040              only break if stubs added make the total size more than
12041              2^25, ie. for the default stub_group_size, if stubs total
12042              more than 2097152 bytes, or nearly 75000 plt call stubs.  */
12043           group = bfd_alloc (curr->owner, sizeof (*group));
12044           if (group == NULL)
12045             return FALSE;
12046           group->link_sec = curr;
12047           group->stub_sec = NULL;
12048           group->needs_save_res = 0;
12049           group->next = htab->group;
12050           htab->group = group;
12051           do
12052             {
12053               prev = htab->sec_info[tail->id].u.list;
12054               /* Set up this stub group.  */
12055               htab->sec_info[tail->id].u.group = group;
12056             }
12057           while (tail != curr && (tail = prev) != NULL);
12058
12059           /* But wait, there's more!  Input sections up to stub_group_size
12060              bytes before the stub section can be handled by it too.
12061              Don't do this if we have a really large section after the
12062              stubs, as adding more stubs increases the chance that
12063              branches may not reach into the stub section.  */
12064           if (!stubs_always_before_branch && !big_sec)
12065             {
12066               total = 0;
12067               while (prev != NULL
12068                      && ((total += tail->output_offset - prev->output_offset)
12069                          < (ppc64_elf_section_data (prev) != NULL
12070                             && ppc64_elf_section_data (prev)->has_14bit_branch
12071                             ? stub14_group_size : stub_group_size))
12072                      && htab->sec_info[prev->id].toc_off == curr_toc)
12073                 {
12074                   tail = prev;
12075                   prev = htab->sec_info[tail->id].u.list;
12076                   htab->sec_info[tail->id].u.group = group;
12077                 }
12078             }
12079           tail = prev;
12080         }
12081     }
12082   return TRUE;
12083 }
12084
12085 static const unsigned char glink_eh_frame_cie[] =
12086 {
12087   0, 0, 0, 16,                          /* length.  */
12088   0, 0, 0, 0,                           /* id.  */
12089   1,                                    /* CIE version.  */
12090   'z', 'R', 0,                          /* Augmentation string.  */
12091   4,                                    /* Code alignment.  */
12092   0x78,                                 /* Data alignment.  */
12093   65,                                   /* RA reg.  */
12094   1,                                    /* Augmentation size.  */
12095   DW_EH_PE_pcrel | DW_EH_PE_sdata4,     /* FDE encoding.  */
12096   DW_CFA_def_cfa, 1, 0,                 /* def_cfa: r1 offset 0.  */
12097   0, 0, 0, 0
12098 };
12099
12100 /* Stripping output sections is normally done before dynamic section
12101    symbols have been allocated.  This function is called later, and
12102    handles cases like htab->brlt which is mapped to its own output
12103    section.  */
12104
12105 static void
12106 maybe_strip_output (struct bfd_link_info *info, asection *isec)
12107 {
12108   if (isec->size == 0
12109       && isec->output_section->size == 0
12110       && !(isec->output_section->flags & SEC_KEEP)
12111       && !bfd_section_removed_from_list (info->output_bfd,
12112                                          isec->output_section)
12113       && elf_section_data (isec->output_section)->dynindx == 0)
12114     {
12115       isec->output_section->flags |= SEC_EXCLUDE;
12116       bfd_section_list_remove (info->output_bfd, isec->output_section);
12117       info->output_bfd->section_count--;
12118     }
12119 }
12120
12121 /* Determine and set the size of the stub section for a final link.
12122
12123    The basic idea here is to examine all the relocations looking for
12124    PC-relative calls to a target that is unreachable with a "bl"
12125    instruction.  */
12126
12127 bfd_boolean
12128 ppc64_elf_size_stubs (struct bfd_link_info *info)
12129 {
12130   bfd_size_type stub_group_size;
12131   bfd_boolean stubs_always_before_branch;
12132   struct ppc_link_hash_table *htab = ppc_hash_table (info);
12133
12134   if (htab == NULL)
12135     return FALSE;
12136
12137   if (htab->params->plt_thread_safe == -1 && !bfd_link_executable (info))
12138     htab->params->plt_thread_safe = 1;
12139   if (!htab->opd_abi)
12140     htab->params->plt_thread_safe = 0;
12141   else if (htab->params->plt_thread_safe == -1)
12142     {
12143       static const char *const thread_starter[] =
12144         {
12145           "pthread_create",
12146           /* libstdc++ */
12147           "_ZNSt6thread15_M_start_threadESt10shared_ptrINS_10_Impl_baseEE",
12148           /* librt */
12149           "aio_init", "aio_read", "aio_write", "aio_fsync", "lio_listio",
12150           "mq_notify", "create_timer",
12151           /* libanl */
12152           "getaddrinfo_a",
12153           /* libgomp */
12154           "GOMP_parallel",
12155           "GOMP_parallel_start",
12156           "GOMP_parallel_loop_static",
12157           "GOMP_parallel_loop_static_start",
12158           "GOMP_parallel_loop_dynamic",
12159           "GOMP_parallel_loop_dynamic_start",
12160           "GOMP_parallel_loop_guided",
12161           "GOMP_parallel_loop_guided_start",
12162           "GOMP_parallel_loop_runtime",
12163           "GOMP_parallel_loop_runtime_start",
12164           "GOMP_parallel_sections",
12165           "GOMP_parallel_sections_start",
12166           /* libgo */
12167           "__go_go",
12168         };
12169       unsigned i;
12170
12171       for (i = 0; i < ARRAY_SIZE (thread_starter); i++)
12172         {
12173           struct elf_link_hash_entry *h;
12174           h = elf_link_hash_lookup (&htab->elf, thread_starter[i],
12175                                     FALSE, FALSE, TRUE);
12176           htab->params->plt_thread_safe = h != NULL && h->ref_regular;
12177           if (htab->params->plt_thread_safe)
12178             break;
12179         }
12180     }
12181   stubs_always_before_branch = htab->params->group_size < 0;
12182   if (htab->params->group_size < 0)
12183     stub_group_size = -htab->params->group_size;
12184   else
12185     stub_group_size = htab->params->group_size;
12186
12187   if (!group_sections (info, stub_group_size, stubs_always_before_branch))
12188     return FALSE;
12189
12190 #define STUB_SHRINK_ITER 20
12191   /* Loop until no stubs added.  After iteration 20 of this loop we may
12192      exit on a stub section shrinking.  This is to break out of a
12193      pathological case where adding stubs on one iteration decreases
12194      section gaps (perhaps due to alignment), which then requires
12195      fewer or smaller stubs on the next iteration.  */
12196
12197   while (1)
12198     {
12199       bfd *input_bfd;
12200       unsigned int bfd_indx;
12201       struct map_stub *group;
12202       asection *stub_sec;
12203
12204       htab->stub_iteration += 1;
12205
12206       for (input_bfd = info->input_bfds, bfd_indx = 0;
12207            input_bfd != NULL;
12208            input_bfd = input_bfd->link.next, bfd_indx++)
12209         {
12210           Elf_Internal_Shdr *symtab_hdr;
12211           asection *section;
12212           Elf_Internal_Sym *local_syms = NULL;
12213
12214           if (!is_ppc64_elf (input_bfd))
12215             continue;
12216
12217           /* We'll need the symbol table in a second.  */
12218           symtab_hdr = &elf_symtab_hdr (input_bfd);
12219           if (symtab_hdr->sh_info == 0)
12220             continue;
12221
12222           /* Walk over each section attached to the input bfd.  */
12223           for (section = input_bfd->sections;
12224                section != NULL;
12225                section = section->next)
12226             {
12227               Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
12228
12229               /* If there aren't any relocs, then there's nothing more
12230                  to do.  */
12231               if ((section->flags & SEC_RELOC) == 0
12232                   || (section->flags & SEC_ALLOC) == 0
12233                   || (section->flags & SEC_LOAD) == 0
12234                   || (section->flags & SEC_CODE) == 0
12235                   || section->reloc_count == 0)
12236                 continue;
12237
12238               /* If this section is a link-once section that will be
12239                  discarded, then don't create any stubs.  */
12240               if (section->output_section == NULL
12241                   || section->output_section->owner != info->output_bfd)
12242                 continue;
12243
12244               /* Get the relocs.  */
12245               internal_relocs
12246                 = _bfd_elf_link_read_relocs (input_bfd, section, NULL, NULL,
12247                                              info->keep_memory);
12248               if (internal_relocs == NULL)
12249                 goto error_ret_free_local;
12250
12251               /* Now examine each relocation.  */
12252               irela = internal_relocs;
12253               irelaend = irela + section->reloc_count;
12254               for (; irela < irelaend; irela++)
12255                 {
12256                   enum elf_ppc64_reloc_type r_type;
12257                   unsigned int r_indx;
12258                   enum ppc_stub_type stub_type;
12259                   struct ppc_stub_hash_entry *stub_entry;
12260                   asection *sym_sec, *code_sec;
12261                   bfd_vma sym_value, code_value;
12262                   bfd_vma destination;
12263                   unsigned long local_off;
12264                   bfd_boolean ok_dest;
12265                   struct ppc_link_hash_entry *hash;
12266                   struct ppc_link_hash_entry *fdh;
12267                   struct elf_link_hash_entry *h;
12268                   Elf_Internal_Sym *sym;
12269                   char *stub_name;
12270                   const asection *id_sec;
12271                   struct _opd_sec_data *opd;
12272                   struct plt_entry *plt_ent;
12273
12274                   r_type = ELF64_R_TYPE (irela->r_info);
12275                   r_indx = ELF64_R_SYM (irela->r_info);
12276
12277                   if (r_type >= R_PPC64_max)
12278                     {
12279                       bfd_set_error (bfd_error_bad_value);
12280                       goto error_ret_free_internal;
12281                     }
12282
12283                   /* Only look for stubs on branch instructions.  */
12284                   if (r_type != R_PPC64_REL24
12285                       && r_type != R_PPC64_REL14
12286                       && r_type != R_PPC64_REL14_BRTAKEN
12287                       && r_type != R_PPC64_REL14_BRNTAKEN)
12288                     continue;
12289
12290                   /* Now determine the call target, its name, value,
12291                      section.  */
12292                   if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
12293                                   r_indx, input_bfd))
12294                     goto error_ret_free_internal;
12295                   hash = (struct ppc_link_hash_entry *) h;
12296
12297                   ok_dest = FALSE;
12298                   fdh = NULL;
12299                   sym_value = 0;
12300                   if (hash == NULL)
12301                     {
12302                       sym_value = sym->st_value;
12303                       if (sym_sec != NULL
12304                           && sym_sec->output_section != NULL)
12305                         ok_dest = TRUE;
12306                     }
12307                   else if (hash->elf.root.type == bfd_link_hash_defined
12308                            || hash->elf.root.type == bfd_link_hash_defweak)
12309                     {
12310                       sym_value = hash->elf.root.u.def.value;
12311                       if (sym_sec->output_section != NULL)
12312                         ok_dest = TRUE;
12313                     }
12314                   else if (hash->elf.root.type == bfd_link_hash_undefweak
12315                            || hash->elf.root.type == bfd_link_hash_undefined)
12316                     {
12317                       /* Recognise an old ABI func code entry sym, and
12318                          use the func descriptor sym instead if it is
12319                          defined.  */
12320                       if (hash->elf.root.root.string[0] == '.'
12321                           && (fdh = lookup_fdh (hash, htab)) != NULL)
12322                         {
12323                           if (fdh->elf.root.type == bfd_link_hash_defined
12324                               || fdh->elf.root.type == bfd_link_hash_defweak)
12325                             {
12326                               sym_sec = fdh->elf.root.u.def.section;
12327                               sym_value = fdh->elf.root.u.def.value;
12328                               if (sym_sec->output_section != NULL)
12329                                 ok_dest = TRUE;
12330                             }
12331                           else
12332                             fdh = NULL;
12333                         }
12334                     }
12335                   else
12336                     {
12337                       bfd_set_error (bfd_error_bad_value);
12338                       goto error_ret_free_internal;
12339                     }
12340
12341                   destination = 0;
12342                   local_off = 0;
12343                   if (ok_dest)
12344                     {
12345                       sym_value += irela->r_addend;
12346                       destination = (sym_value
12347                                      + sym_sec->output_offset
12348                                      + sym_sec->output_section->vma);
12349                       local_off = PPC64_LOCAL_ENTRY_OFFSET (hash
12350                                                             ? hash->elf.other
12351                                                             : sym->st_other);
12352                     }
12353
12354                   code_sec = sym_sec;
12355                   code_value = sym_value;
12356                   opd = get_opd_info (sym_sec);
12357                   if (opd != NULL)
12358                     {
12359                       bfd_vma dest;
12360
12361                       if (hash == NULL && opd->adjust != NULL)
12362                         {
12363                           long adjust = opd->adjust[OPD_NDX (sym_value)];
12364                           if (adjust == -1)
12365                             continue;
12366                           code_value += adjust;
12367                           sym_value += adjust;
12368                         }
12369                       dest = opd_entry_value (sym_sec, sym_value,
12370                                               &code_sec, &code_value, FALSE);
12371                       if (dest != (bfd_vma) -1)
12372                         {
12373                           destination = dest;
12374                           if (fdh != NULL)
12375                             {
12376                               /* Fixup old ABI sym to point at code
12377                                  entry.  */
12378                               hash->elf.root.type = bfd_link_hash_defweak;
12379                               hash->elf.root.u.def.section = code_sec;
12380                               hash->elf.root.u.def.value = code_value;
12381                             }
12382                         }
12383                     }
12384
12385                   /* Determine what (if any) linker stub is needed.  */
12386                   plt_ent = NULL;
12387                   stub_type = ppc_type_of_stub (section, irela, &hash,
12388                                                 &plt_ent, destination,
12389                                                 local_off);
12390
12391                   if (stub_type != ppc_stub_plt_call)
12392                     {
12393                       /* Check whether we need a TOC adjusting stub.
12394                          Since the linker pastes together pieces from
12395                          different object files when creating the
12396                          _init and _fini functions, it may be that a
12397                          call to what looks like a local sym is in
12398                          fact a call needing a TOC adjustment.  */
12399                       if (code_sec != NULL
12400                           && code_sec->output_section != NULL
12401                           && (htab->sec_info[code_sec->id].toc_off
12402                               != htab->sec_info[section->id].toc_off)
12403                           && (code_sec->has_toc_reloc
12404                               || code_sec->makes_toc_func_call))
12405                         stub_type = ppc_stub_long_branch_r2off;
12406                     }
12407
12408                   if (stub_type == ppc_stub_none)
12409                     continue;
12410
12411                   /* __tls_get_addr calls might be eliminated.  */
12412                   if (stub_type != ppc_stub_plt_call
12413                       && hash != NULL
12414                       && (hash == htab->tls_get_addr
12415                           || hash == htab->tls_get_addr_fd)
12416                       && section->has_tls_reloc
12417                       && irela != internal_relocs)
12418                     {
12419                       /* Get tls info.  */
12420                       unsigned char *tls_mask;
12421
12422                       if (!get_tls_mask (&tls_mask, NULL, NULL, &local_syms,
12423                                          irela - 1, input_bfd))
12424                         goto error_ret_free_internal;
12425                       if (*tls_mask != 0)
12426                         continue;
12427                     }
12428
12429                   if (stub_type == ppc_stub_plt_call
12430                       && irela + 1 < irelaend
12431                       && irela[1].r_offset == irela->r_offset + 4
12432                       && ELF64_R_TYPE (irela[1].r_info) == R_PPC64_TOCSAVE)
12433                     {
12434                       if (!tocsave_find (htab, INSERT,
12435                                          &local_syms, irela + 1, input_bfd))
12436                         goto error_ret_free_internal;
12437                     }
12438                   else if (stub_type == ppc_stub_plt_call)
12439                     stub_type = ppc_stub_plt_call_r2save;
12440
12441                   /* Support for grouping stub sections.  */
12442                   id_sec = htab->sec_info[section->id].u.group->link_sec;
12443
12444                   /* Get the name of this stub.  */
12445                   stub_name = ppc_stub_name (id_sec, sym_sec, hash, irela);
12446                   if (!stub_name)
12447                     goto error_ret_free_internal;
12448
12449                   stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table,
12450                                                      stub_name, FALSE, FALSE);
12451                   if (stub_entry != NULL)
12452                     {
12453                       /* The proper stub has already been created.  */
12454                       free (stub_name);
12455                       if (stub_type == ppc_stub_plt_call_r2save)
12456                         stub_entry->stub_type = stub_type;
12457                       continue;
12458                     }
12459
12460                   stub_entry = ppc_add_stub (stub_name, section, info);
12461                   if (stub_entry == NULL)
12462                     {
12463                       free (stub_name);
12464                     error_ret_free_internal:
12465                       if (elf_section_data (section)->relocs == NULL)
12466                         free (internal_relocs);
12467                     error_ret_free_local:
12468                       if (local_syms != NULL
12469                           && (symtab_hdr->contents
12470                               != (unsigned char *) local_syms))
12471                         free (local_syms);
12472                       return FALSE;
12473                     }
12474
12475                   stub_entry->stub_type = stub_type;
12476                   if (stub_type != ppc_stub_plt_call
12477                       && stub_type != ppc_stub_plt_call_r2save)
12478                     {
12479                       stub_entry->target_value = code_value;
12480                       stub_entry->target_section = code_sec;
12481                     }
12482                   else
12483                     {
12484                       stub_entry->target_value = sym_value;
12485                       stub_entry->target_section = sym_sec;
12486                     }
12487                   stub_entry->h = hash;
12488                   stub_entry->plt_ent = plt_ent;
12489                   stub_entry->other = hash ? hash->elf.other : sym->st_other;
12490
12491                   if (stub_entry->h != NULL)
12492                     htab->stub_globals += 1;
12493                 }
12494
12495               /* We're done with the internal relocs, free them.  */
12496               if (elf_section_data (section)->relocs != internal_relocs)
12497                 free (internal_relocs);
12498             }
12499
12500           if (local_syms != NULL
12501               && symtab_hdr->contents != (unsigned char *) local_syms)
12502             {
12503               if (!info->keep_memory)
12504                 free (local_syms);
12505               else
12506                 symtab_hdr->contents = (unsigned char *) local_syms;
12507             }
12508         }
12509
12510       /* We may have added some stubs.  Find out the new size of the
12511          stub sections.  */
12512       for (stub_sec = htab->params->stub_bfd->sections;
12513            stub_sec != NULL;
12514            stub_sec = stub_sec->next)
12515         if ((stub_sec->flags & SEC_LINKER_CREATED) == 0)
12516           {
12517             stub_sec->rawsize = stub_sec->size;
12518             stub_sec->size = 0;
12519             stub_sec->reloc_count = 0;
12520             stub_sec->flags &= ~SEC_RELOC;
12521           }
12522
12523       htab->brlt->size = 0;
12524       htab->brlt->reloc_count = 0;
12525       htab->brlt->flags &= ~SEC_RELOC;
12526       if (htab->relbrlt != NULL)
12527         htab->relbrlt->size = 0;
12528
12529       bfd_hash_traverse (&htab->stub_hash_table, ppc_size_one_stub, info);
12530
12531       for (group = htab->group; group != NULL; group = group->next)
12532         if (group->needs_save_res)
12533           group->stub_sec->size += htab->sfpr->size;
12534
12535       if (info->emitrelocations
12536           && htab->glink != NULL && htab->glink->size != 0)
12537         {
12538           htab->glink->reloc_count = 1;
12539           htab->glink->flags |= SEC_RELOC;
12540         }
12541
12542       if (htab->glink_eh_frame != NULL
12543           && !bfd_is_abs_section (htab->glink_eh_frame->output_section)
12544           && htab->glink_eh_frame->output_section->size != 0)
12545         {
12546           size_t size = 0, align;
12547
12548           for (stub_sec = htab->params->stub_bfd->sections;
12549                stub_sec != NULL;
12550                stub_sec = stub_sec->next)
12551             if ((stub_sec->flags & SEC_LINKER_CREATED) == 0)
12552               size += 24;
12553           if (htab->glink != NULL && htab->glink->size != 0)
12554             size += 24;
12555           if (size != 0)
12556             size += sizeof (glink_eh_frame_cie);
12557           align = 1;
12558           align <<= htab->glink_eh_frame->output_section->alignment_power;
12559           align -= 1;
12560           size = (size + align) & ~align;
12561           htab->glink_eh_frame->rawsize = htab->glink_eh_frame->size;
12562           htab->glink_eh_frame->size = size;
12563         }
12564
12565       if (htab->params->plt_stub_align != 0)
12566         for (stub_sec = htab->params->stub_bfd->sections;
12567              stub_sec != NULL;
12568              stub_sec = stub_sec->next)
12569           if ((stub_sec->flags & SEC_LINKER_CREATED) == 0)
12570             stub_sec->size = ((stub_sec->size
12571                                + (1 << htab->params->plt_stub_align) - 1)
12572                               & -(1 << htab->params->plt_stub_align));
12573
12574       for (stub_sec = htab->params->stub_bfd->sections;
12575            stub_sec != NULL;
12576            stub_sec = stub_sec->next)
12577         if ((stub_sec->flags & SEC_LINKER_CREATED) == 0
12578             && stub_sec->rawsize != stub_sec->size
12579             && (htab->stub_iteration <= STUB_SHRINK_ITER
12580                 || stub_sec->rawsize < stub_sec->size))
12581           break;
12582
12583       if (stub_sec == NULL
12584           && (htab->glink_eh_frame == NULL
12585               || htab->glink_eh_frame->rawsize == htab->glink_eh_frame->size))
12586         break;
12587
12588       /* Ask the linker to do its stuff.  */
12589       (*htab->params->layout_sections_again) ();
12590     }
12591
12592   if (htab->glink_eh_frame != NULL
12593       && htab->glink_eh_frame->size != 0)
12594     {
12595       bfd_vma val;
12596       bfd_byte *p, *last_fde;
12597       size_t last_fde_len, size, align, pad;
12598       asection *stub_sec;
12599
12600       p = bfd_zalloc (htab->glink_eh_frame->owner, htab->glink_eh_frame->size);
12601       if (p == NULL)
12602         return FALSE;
12603       htab->glink_eh_frame->contents = p;
12604       last_fde = p;
12605
12606       memcpy (p, glink_eh_frame_cie, sizeof (glink_eh_frame_cie));
12607       /* CIE length (rewrite in case little-endian).  */
12608       last_fde_len = sizeof (glink_eh_frame_cie) - 4;
12609       bfd_put_32 (htab->elf.dynobj, last_fde_len, p);
12610       p += sizeof (glink_eh_frame_cie);
12611
12612       for (stub_sec = htab->params->stub_bfd->sections;
12613            stub_sec != NULL;
12614            stub_sec = stub_sec->next)
12615         if ((stub_sec->flags & SEC_LINKER_CREATED) == 0)
12616           {
12617             last_fde = p;
12618             last_fde_len = 20;
12619             /* FDE length.  */
12620             bfd_put_32 (htab->elf.dynobj, 20, p);
12621             p += 4;
12622             /* CIE pointer.  */
12623             val = p - htab->glink_eh_frame->contents;
12624             bfd_put_32 (htab->elf.dynobj, val, p);
12625             p += 4;
12626             /* Offset to stub section, written later.  */
12627             p += 4;
12628             /* stub section size.  */
12629             bfd_put_32 (htab->elf.dynobj, stub_sec->size, p);
12630             p += 4;
12631             /* Augmentation.  */
12632             p += 1;
12633             /* Pad.  */
12634             p += 7;
12635           }
12636       if (htab->glink != NULL && htab->glink->size != 0)
12637         {
12638           last_fde = p;
12639           last_fde_len = 20;
12640           /* FDE length.  */
12641           bfd_put_32 (htab->elf.dynobj, 20, p);
12642           p += 4;
12643           /* CIE pointer.  */
12644           val = p - htab->glink_eh_frame->contents;
12645           bfd_put_32 (htab->elf.dynobj, val, p);
12646           p += 4;
12647           /* Offset to .glink, written later.  */
12648           p += 4;
12649           /* .glink size.  */
12650           bfd_put_32 (htab->elf.dynobj, htab->glink->size - 8, p);
12651           p += 4;
12652           /* Augmentation.  */
12653           p += 1;
12654
12655           *p++ = DW_CFA_advance_loc + 1;
12656           *p++ = DW_CFA_register;
12657           *p++ = 65;
12658           *p++ = htab->opd_abi ? 12 : 0;
12659           *p++ = DW_CFA_advance_loc + 4;
12660           *p++ = DW_CFA_restore_extended;
12661           *p++ = 65;
12662         }
12663       /* Subsume any padding into the last FDE if user .eh_frame
12664          sections are aligned more than glink_eh_frame.  Otherwise any
12665          zero padding will be seen as a terminator.  */
12666       size = p - htab->glink_eh_frame->contents;
12667       align = 1;
12668       align <<= htab->glink_eh_frame->output_section->alignment_power;
12669       align -= 1;
12670       pad = ((size + align) & ~align) - size;
12671       htab->glink_eh_frame->size = size + pad;
12672       bfd_put_32 (htab->elf.dynobj, last_fde_len + pad, last_fde);
12673     }
12674
12675   maybe_strip_output (info, htab->brlt);
12676   if (htab->glink_eh_frame != NULL)
12677     maybe_strip_output (info, htab->glink_eh_frame);
12678
12679   return TRUE;
12680 }
12681
12682 /* Called after we have determined section placement.  If sections
12683    move, we'll be called again.  Provide a value for TOCstart.  */
12684
12685 bfd_vma
12686 ppc64_elf_set_toc (struct bfd_link_info *info, bfd *obfd)
12687 {
12688   asection *s;
12689   bfd_vma TOCstart, adjust;
12690
12691   if (info != NULL)
12692     {
12693       struct elf_link_hash_entry *h;
12694       struct elf_link_hash_table *htab = elf_hash_table (info);
12695
12696       if (is_elf_hash_table (htab)
12697           && htab->hgot != NULL)
12698         h = htab->hgot;
12699       else
12700         {
12701           h = elf_link_hash_lookup (htab, ".TOC.", FALSE, FALSE, TRUE);
12702           if (is_elf_hash_table (htab))
12703             htab->hgot = h;
12704         }
12705       if (h != NULL
12706           && h->root.type == bfd_link_hash_defined
12707           && !h->root.linker_def
12708           && (!is_elf_hash_table (htab)
12709               || h->def_regular))
12710         {
12711           TOCstart = (h->root.u.def.value - TOC_BASE_OFF
12712                       + h->root.u.def.section->output_offset
12713                       + h->root.u.def.section->output_section->vma);
12714           _bfd_set_gp_value (obfd, TOCstart);
12715           return TOCstart;
12716         }
12717     }
12718
12719   /* The TOC consists of sections .got, .toc, .tocbss, .plt in that
12720      order.  The TOC starts where the first of these sections starts.  */
12721   s = bfd_get_section_by_name (obfd, ".got");
12722   if (s == NULL || (s->flags & SEC_EXCLUDE) != 0)
12723     s = bfd_get_section_by_name (obfd, ".toc");
12724   if (s == NULL || (s->flags & SEC_EXCLUDE) != 0)
12725     s = bfd_get_section_by_name (obfd, ".tocbss");
12726   if (s == NULL || (s->flags & SEC_EXCLUDE) != 0)
12727     s = bfd_get_section_by_name (obfd, ".plt");
12728   if (s == NULL || (s->flags & SEC_EXCLUDE) != 0)
12729     {
12730       /* This may happen for
12731          o  references to TOC base (SYM@toc / TOC[tc0]) without a
12732          .toc directive
12733          o  bad linker script
12734          o --gc-sections and empty TOC sections
12735
12736          FIXME: Warn user?  */
12737
12738       /* Look for a likely section.  We probably won't even be
12739          using TOCstart.  */
12740       for (s = obfd->sections; s != NULL; s = s->next)
12741         if ((s->flags & (SEC_ALLOC | SEC_SMALL_DATA | SEC_READONLY
12742                          | SEC_EXCLUDE))
12743             == (SEC_ALLOC | SEC_SMALL_DATA))
12744           break;
12745       if (s == NULL)
12746         for (s = obfd->sections; s != NULL; s = s->next)
12747           if ((s->flags & (SEC_ALLOC | SEC_SMALL_DATA | SEC_EXCLUDE))
12748               == (SEC_ALLOC | SEC_SMALL_DATA))
12749             break;
12750       if (s == NULL)
12751         for (s = obfd->sections; s != NULL; s = s->next)
12752           if ((s->flags & (SEC_ALLOC | SEC_READONLY | SEC_EXCLUDE))
12753               == SEC_ALLOC)
12754             break;
12755       if (s == NULL)
12756         for (s = obfd->sections; s != NULL; s = s->next)
12757           if ((s->flags & (SEC_ALLOC | SEC_EXCLUDE)) == SEC_ALLOC)
12758             break;
12759     }
12760
12761   TOCstart = 0;
12762   if (s != NULL)
12763     TOCstart = s->output_section->vma + s->output_offset;
12764
12765   /* Force alignment.  */
12766   adjust = TOCstart & (TOC_BASE_ALIGN - 1);
12767   TOCstart -= adjust;
12768   _bfd_set_gp_value (obfd, TOCstart);
12769
12770   if (info != NULL && s != NULL)
12771     {
12772       struct ppc_link_hash_table *htab = ppc_hash_table (info);
12773
12774       if (htab != NULL)
12775         {
12776           if (htab->elf.hgot != NULL)
12777             {
12778               htab->elf.hgot->root.u.def.value = TOC_BASE_OFF - adjust;
12779               htab->elf.hgot->root.u.def.section = s;
12780             }
12781         }
12782       else
12783         {
12784           struct bfd_link_hash_entry *bh = NULL;
12785           _bfd_generic_link_add_one_symbol (info, obfd, ".TOC.", BSF_GLOBAL,
12786                                             s, TOC_BASE_OFF - adjust,
12787                                             NULL, FALSE, FALSE, &bh);
12788         }
12789     }
12790   return TOCstart;
12791 }
12792
12793 /* Called via elf_link_hash_traverse from ppc64_elf_build_stubs to
12794    write out any global entry stubs.  */
12795
12796 static bfd_boolean
12797 build_global_entry_stubs (struct elf_link_hash_entry *h, void *inf)
12798 {
12799   struct bfd_link_info *info;
12800   struct ppc_link_hash_table *htab;
12801   struct plt_entry *pent;
12802   asection *s;
12803
12804   if (h->root.type == bfd_link_hash_indirect)
12805     return TRUE;
12806
12807   if (!h->pointer_equality_needed)
12808     return TRUE;
12809
12810   if (h->def_regular)
12811     return TRUE;
12812
12813   info = inf;
12814   htab = ppc_hash_table (info);
12815   if (htab == NULL)
12816     return FALSE;
12817
12818   s = htab->glink;
12819   for (pent = h->plt.plist; pent != NULL; pent = pent->next)
12820     if (pent->plt.offset != (bfd_vma) -1
12821         && pent->addend == 0)
12822       {
12823         bfd_byte *p;
12824         asection *plt;
12825         bfd_vma off;
12826
12827         p = s->contents + h->root.u.def.value;
12828         plt = htab->elf.splt;
12829         if (!htab->elf.dynamic_sections_created
12830             || h->dynindx == -1)
12831           plt = htab->elf.iplt;
12832         off = pent->plt.offset + plt->output_offset + plt->output_section->vma;
12833         off -= h->root.u.def.value + s->output_offset + s->output_section->vma;
12834
12835         if (off + 0x80008000 > 0xffffffff || (off & 3) != 0)
12836           {
12837             info->callbacks->einfo
12838               (_("%P: linkage table error against `%T'\n"),
12839                h->root.root.string);
12840             bfd_set_error (bfd_error_bad_value);
12841             htab->stub_error = TRUE;
12842           }
12843
12844         htab->stub_count[ppc_stub_global_entry - 1] += 1;
12845         if (htab->params->emit_stub_syms)
12846           {
12847             size_t len = strlen (h->root.root.string);
12848             char *name = bfd_malloc (sizeof "12345678.global_entry." + len);
12849
12850             if (name == NULL)
12851               return FALSE;
12852
12853             sprintf (name, "%08x.global_entry.%s", s->id, h->root.root.string);
12854             h = elf_link_hash_lookup (&htab->elf, name, TRUE, FALSE, FALSE);
12855             if (h == NULL)
12856               return FALSE;
12857             if (h->root.type == bfd_link_hash_new)
12858               {
12859                 h->root.type = bfd_link_hash_defined;
12860                 h->root.u.def.section = s;
12861                 h->root.u.def.value = p - s->contents;
12862                 h->ref_regular = 1;
12863                 h->def_regular = 1;
12864                 h->ref_regular_nonweak = 1;
12865                 h->forced_local = 1;
12866                 h->non_elf = 0;
12867                 h->root.linker_def = 1;
12868               }
12869           }
12870
12871         if (PPC_HA (off) != 0)
12872           {
12873             bfd_put_32 (s->owner, ADDIS_R12_R12 | PPC_HA (off), p);
12874             p += 4;
12875           }
12876         bfd_put_32 (s->owner, LD_R12_0R12 | PPC_LO (off), p);
12877         p += 4;
12878         bfd_put_32 (s->owner, MTCTR_R12, p);
12879         p += 4;
12880         bfd_put_32 (s->owner, BCTR, p);
12881         break;
12882       }
12883   return TRUE;
12884 }
12885
12886 /* Build all the stubs associated with the current output file.
12887    The stubs are kept in a hash table attached to the main linker
12888    hash table.  This function is called via gldelf64ppc_finish.  */
12889
12890 bfd_boolean
12891 ppc64_elf_build_stubs (struct bfd_link_info *info,
12892                        char **stats)
12893 {
12894   struct ppc_link_hash_table *htab = ppc_hash_table (info);
12895   struct map_stub *group;
12896   asection *stub_sec;
12897   bfd_byte *p;
12898   int stub_sec_count = 0;
12899
12900   if (htab == NULL)
12901     return FALSE;
12902
12903   /* Allocate memory to hold the linker stubs.  */
12904   for (stub_sec = htab->params->stub_bfd->sections;
12905        stub_sec != NULL;
12906        stub_sec = stub_sec->next)
12907     if ((stub_sec->flags & SEC_LINKER_CREATED) == 0
12908         && stub_sec->size != 0)
12909       {
12910         stub_sec->contents = bfd_zalloc (htab->params->stub_bfd, stub_sec->size);
12911         if (stub_sec->contents == NULL)
12912           return FALSE;
12913         stub_sec->size = 0;
12914       }
12915
12916   if (htab->glink != NULL && htab->glink->size != 0)
12917     {
12918       unsigned int indx;
12919       bfd_vma plt0;
12920
12921       /* Build the .glink plt call stub.  */
12922       if (htab->params->emit_stub_syms)
12923         {
12924           struct elf_link_hash_entry *h;
12925           h = elf_link_hash_lookup (&htab->elf, "__glink_PLTresolve",
12926                                     TRUE, FALSE, FALSE);
12927           if (h == NULL)
12928             return FALSE;
12929           if (h->root.type == bfd_link_hash_new)
12930             {
12931               h->root.type = bfd_link_hash_defined;
12932               h->root.u.def.section = htab->glink;
12933               h->root.u.def.value = 8;
12934               h->ref_regular = 1;
12935               h->def_regular = 1;
12936               h->ref_regular_nonweak = 1;
12937               h->forced_local = 1;
12938               h->non_elf = 0;
12939               h->root.linker_def = 1;
12940             }
12941         }
12942       plt0 = (htab->elf.splt->output_section->vma
12943               + htab->elf.splt->output_offset
12944               - 16);
12945       if (info->emitrelocations)
12946         {
12947           Elf_Internal_Rela *r = get_relocs (htab->glink, 1);
12948           if (r == NULL)
12949             return FALSE;
12950           r->r_offset = (htab->glink->output_offset
12951                          + htab->glink->output_section->vma);
12952           r->r_info = ELF64_R_INFO (0, R_PPC64_REL64);
12953           r->r_addend = plt0;
12954         }
12955       p = htab->glink->contents;
12956       plt0 -= htab->glink->output_section->vma + htab->glink->output_offset;
12957       bfd_put_64 (htab->glink->owner, plt0, p);
12958       p += 8;
12959       if (htab->opd_abi)
12960         {
12961           bfd_put_32 (htab->glink->owner, MFLR_R12, p);
12962           p += 4;
12963           bfd_put_32 (htab->glink->owner, BCL_20_31, p);
12964           p += 4;
12965           bfd_put_32 (htab->glink->owner, MFLR_R11, p);
12966           p += 4;
12967           bfd_put_32 (htab->glink->owner, LD_R2_0R11 | (-16 & 0xfffc), p);
12968           p += 4;
12969           bfd_put_32 (htab->glink->owner, MTLR_R12, p);
12970           p += 4;
12971           bfd_put_32 (htab->glink->owner, ADD_R11_R2_R11, p);
12972           p += 4;
12973           bfd_put_32 (htab->glink->owner, LD_R12_0R11, p);
12974           p += 4;
12975           bfd_put_32 (htab->glink->owner, LD_R2_0R11 | 8, p);
12976           p += 4;
12977           bfd_put_32 (htab->glink->owner, MTCTR_R12, p);
12978           p += 4;
12979           bfd_put_32 (htab->glink->owner, LD_R11_0R11 | 16, p);
12980           p += 4;
12981         }
12982       else
12983         {
12984           bfd_put_32 (htab->glink->owner, MFLR_R0, p);
12985           p += 4;
12986           bfd_put_32 (htab->glink->owner, BCL_20_31, p);
12987           p += 4;
12988           bfd_put_32 (htab->glink->owner, MFLR_R11, p);
12989           p += 4;
12990           bfd_put_32 (htab->glink->owner, LD_R2_0R11 | (-16 & 0xfffc), p);
12991           p += 4;
12992           bfd_put_32 (htab->glink->owner, MTLR_R0, p);
12993           p += 4;
12994           bfd_put_32 (htab->glink->owner, SUB_R12_R12_R11, p);
12995           p += 4;
12996           bfd_put_32 (htab->glink->owner, ADD_R11_R2_R11, p);
12997           p += 4;
12998           bfd_put_32 (htab->glink->owner, ADDI_R0_R12 | (-48 & 0xffff), p);
12999           p += 4;
13000           bfd_put_32 (htab->glink->owner, LD_R12_0R11, p);
13001           p += 4;
13002           bfd_put_32 (htab->glink->owner, SRDI_R0_R0_2, p);
13003           p += 4;
13004           bfd_put_32 (htab->glink->owner, MTCTR_R12, p);
13005           p += 4;
13006           bfd_put_32 (htab->glink->owner, LD_R11_0R11 | 8, p);
13007           p += 4;
13008         }
13009       bfd_put_32 (htab->glink->owner, BCTR, p);
13010       p += 4;
13011       while (p - htab->glink->contents < GLINK_CALL_STUB_SIZE)
13012         {
13013           bfd_put_32 (htab->glink->owner, NOP, p);
13014           p += 4;
13015         }
13016
13017       /* Build the .glink lazy link call stubs.  */
13018       indx = 0;
13019       while (p < htab->glink->contents + htab->glink->rawsize)
13020         {
13021           if (htab->opd_abi)
13022             {
13023               if (indx < 0x8000)
13024                 {
13025                   bfd_put_32 (htab->glink->owner, LI_R0_0 | indx, p);
13026                   p += 4;
13027                 }
13028               else
13029                 {
13030                   bfd_put_32 (htab->glink->owner, LIS_R0_0 | PPC_HI (indx), p);
13031                   p += 4;
13032                   bfd_put_32 (htab->glink->owner, ORI_R0_R0_0 | PPC_LO (indx),
13033                               p);
13034                   p += 4;
13035                 }
13036             }
13037           bfd_put_32 (htab->glink->owner,
13038                       B_DOT | ((htab->glink->contents - p + 8) & 0x3fffffc), p);
13039           indx++;
13040           p += 4;
13041         }
13042
13043       /* Build .glink global entry stubs.  */
13044       if (htab->glink->size > htab->glink->rawsize)
13045         elf_link_hash_traverse (&htab->elf, build_global_entry_stubs, info);
13046     }
13047
13048   if (htab->brlt != NULL && htab->brlt->size != 0)
13049     {
13050       htab->brlt->contents = bfd_zalloc (htab->brlt->owner,
13051                                          htab->brlt->size);
13052       if (htab->brlt->contents == NULL)
13053         return FALSE;
13054     }
13055   if (htab->relbrlt != NULL && htab->relbrlt->size != 0)
13056     {
13057       htab->relbrlt->contents = bfd_zalloc (htab->relbrlt->owner,
13058                                             htab->relbrlt->size);
13059       if (htab->relbrlt->contents == NULL)
13060         return FALSE;
13061     }
13062
13063   /* Build the stubs as directed by the stub hash table.  */
13064   bfd_hash_traverse (&htab->stub_hash_table, ppc_build_one_stub, info);
13065
13066   for (group = htab->group; group != NULL; group = group->next)
13067     if (group->needs_save_res)
13068       {
13069         stub_sec = group->stub_sec;
13070         memcpy (stub_sec->contents + stub_sec->size, htab->sfpr->contents,
13071                 htab->sfpr->size);
13072         if (htab->params->emit_stub_syms)
13073           {
13074             unsigned int i;
13075
13076             for (i = 0; i < ARRAY_SIZE (save_res_funcs); i++)
13077               if (!sfpr_define (info, &save_res_funcs[i], stub_sec))
13078                 return FALSE;
13079           }
13080         stub_sec->size += htab->sfpr->size;
13081       }
13082
13083   if (htab->relbrlt != NULL)
13084     htab->relbrlt->reloc_count = 0;
13085
13086   if (htab->params->plt_stub_align != 0)
13087     for (stub_sec = htab->params->stub_bfd->sections;
13088          stub_sec != NULL;
13089          stub_sec = stub_sec->next)
13090       if ((stub_sec->flags & SEC_LINKER_CREATED) == 0)
13091         stub_sec->size = ((stub_sec->size
13092                            + (1 << htab->params->plt_stub_align) - 1)
13093                           & -(1 << htab->params->plt_stub_align));
13094
13095   for (stub_sec = htab->params->stub_bfd->sections;
13096        stub_sec != NULL;
13097        stub_sec = stub_sec->next)
13098     if ((stub_sec->flags & SEC_LINKER_CREATED) == 0)
13099       {
13100         stub_sec_count += 1;
13101         if (stub_sec->rawsize != stub_sec->size
13102             && (htab->stub_iteration <= STUB_SHRINK_ITER
13103                 || stub_sec->rawsize < stub_sec->size))
13104           break;
13105       }
13106
13107   /* Note that the glink_eh_frame check here is not only testing that
13108      the generated size matched the calculated size but also that
13109      bfd_elf_discard_info didn't make any changes to the section.  */
13110   if (stub_sec != NULL
13111       || (htab->glink_eh_frame != NULL
13112           && htab->glink_eh_frame->rawsize != htab->glink_eh_frame->size))
13113     {
13114       htab->stub_error = TRUE;
13115       info->callbacks->einfo (_("%P: stubs don't match calculated size\n"));
13116     }
13117
13118   if (htab->stub_error)
13119     return FALSE;
13120
13121   if (stats != NULL)
13122     {
13123       *stats = bfd_malloc (500);
13124       if (*stats == NULL)
13125         return FALSE;
13126
13127       sprintf (*stats, _("linker stubs in %u group%s\n"
13128                          "  branch       %lu\n"
13129                          "  toc adjust   %lu\n"
13130                          "  long branch  %lu\n"
13131                          "  long toc adj %lu\n"
13132                          "  plt call     %lu\n"
13133                          "  plt call toc %lu\n"
13134                          "  global entry %lu"),
13135                stub_sec_count,
13136                stub_sec_count == 1 ? "" : "s",
13137                htab->stub_count[ppc_stub_long_branch - 1],
13138                htab->stub_count[ppc_stub_long_branch_r2off - 1],
13139                htab->stub_count[ppc_stub_plt_branch - 1],
13140                htab->stub_count[ppc_stub_plt_branch_r2off - 1],
13141                htab->stub_count[ppc_stub_plt_call - 1],
13142                htab->stub_count[ppc_stub_plt_call_r2save - 1],
13143                htab->stub_count[ppc_stub_global_entry - 1]);
13144     }
13145   return TRUE;
13146 }
13147
13148 /* This function undoes the changes made by add_symbol_adjust.  */
13149
13150 static bfd_boolean
13151 undo_symbol_twiddle (struct elf_link_hash_entry *h, void *inf ATTRIBUTE_UNUSED)
13152 {
13153   struct ppc_link_hash_entry *eh;
13154
13155   if (h->root.type == bfd_link_hash_indirect)
13156     return TRUE;
13157
13158   eh = (struct ppc_link_hash_entry *) h;
13159   if (eh->elf.root.type != bfd_link_hash_undefweak || !eh->was_undefined)
13160     return TRUE;
13161
13162   eh->elf.root.type = bfd_link_hash_undefined;
13163   return TRUE;
13164 }
13165
13166 void
13167 ppc64_elf_restore_symbols (struct bfd_link_info *info)
13168 {
13169   struct ppc_link_hash_table *htab = ppc_hash_table (info);
13170
13171   if (htab != NULL)
13172     elf_link_hash_traverse (&htab->elf, undo_symbol_twiddle, info);
13173 }
13174
13175 /* What to do when ld finds relocations against symbols defined in
13176    discarded sections.  */
13177
13178 static unsigned int
13179 ppc64_elf_action_discarded (asection *sec)
13180 {
13181   if (strcmp (".opd", sec->name) == 0)
13182     return 0;
13183
13184   if (strcmp (".toc", sec->name) == 0)
13185     return 0;
13186
13187   if (strcmp (".toc1", sec->name) == 0)
13188     return 0;
13189
13190   return _bfd_elf_default_action_discarded (sec);
13191 }
13192
13193 /* The RELOCATE_SECTION function is called by the ELF backend linker
13194    to handle the relocations for a section.
13195
13196    The relocs are always passed as Rela structures; if the section
13197    actually uses Rel structures, the r_addend field will always be
13198    zero.
13199
13200    This function is responsible for adjust the section contents as
13201    necessary, and (if using Rela relocs and generating a
13202    relocatable output file) adjusting the reloc addend as
13203    necessary.
13204
13205    This function does not have to worry about setting the reloc
13206    address or the reloc symbol index.
13207
13208    LOCAL_SYMS is a pointer to the swapped in local symbols.
13209
13210    LOCAL_SECTIONS is an array giving the section in the input file
13211    corresponding to the st_shndx field of each local symbol.
13212
13213    The global hash table entry for the global symbols can be found
13214    via elf_sym_hashes (input_bfd).
13215
13216    When generating relocatable output, this function must handle
13217    STB_LOCAL/STT_SECTION symbols specially.  The output symbol is
13218    going to be the section symbol corresponding to the output
13219    section, which means that the addend must be adjusted
13220    accordingly.  */
13221
13222 static bfd_boolean
13223 ppc64_elf_relocate_section (bfd *output_bfd,
13224                             struct bfd_link_info *info,
13225                             bfd *input_bfd,
13226                             asection *input_section,
13227                             bfd_byte *contents,
13228                             Elf_Internal_Rela *relocs,
13229                             Elf_Internal_Sym *local_syms,
13230                             asection **local_sections)
13231 {
13232   struct ppc_link_hash_table *htab;
13233   Elf_Internal_Shdr *symtab_hdr;
13234   struct elf_link_hash_entry **sym_hashes;
13235   Elf_Internal_Rela *rel;
13236   Elf_Internal_Rela *wrel;
13237   Elf_Internal_Rela *relend;
13238   Elf_Internal_Rela outrel;
13239   bfd_byte *loc;
13240   struct got_entry **local_got_ents;
13241   bfd_vma TOCstart;
13242   bfd_boolean ret = TRUE;
13243   bfd_boolean is_opd;
13244   /* Assume 'at' branch hints.  */
13245   bfd_boolean is_isa_v2 = TRUE;
13246   bfd_vma d_offset = (bfd_big_endian (output_bfd) ? 2 : 0);
13247
13248   /* Initialize howto table if needed.  */
13249   if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
13250     ppc_howto_init ();
13251
13252   htab = ppc_hash_table (info);
13253   if (htab == NULL)
13254     return FALSE;
13255
13256   /* Don't relocate stub sections.  */
13257   if (input_section->owner == htab->params->stub_bfd)
13258     return TRUE;
13259
13260   BFD_ASSERT (is_ppc64_elf (input_bfd));
13261
13262   local_got_ents = elf_local_got_ents (input_bfd);
13263   TOCstart = elf_gp (output_bfd);
13264   symtab_hdr = &elf_symtab_hdr (input_bfd);
13265   sym_hashes = elf_sym_hashes (input_bfd);
13266   is_opd = ppc64_elf_section_data (input_section)->sec_type == sec_opd;
13267
13268   rel = wrel = relocs;
13269   relend = relocs + input_section->reloc_count;
13270   for (; rel < relend; wrel++, rel++)
13271     {
13272       enum elf_ppc64_reloc_type r_type;
13273       bfd_vma addend;
13274       bfd_reloc_status_type r;
13275       Elf_Internal_Sym *sym;
13276       asection *sec;
13277       struct elf_link_hash_entry *h_elf;
13278       struct ppc_link_hash_entry *h;
13279       struct ppc_link_hash_entry *fdh;
13280       const char *sym_name;
13281       unsigned long r_symndx, toc_symndx;
13282       bfd_vma toc_addend;
13283       unsigned char tls_mask, tls_gd, tls_type;
13284       unsigned char sym_type;
13285       bfd_vma relocation;
13286       bfd_boolean unresolved_reloc;
13287       bfd_boolean warned;
13288       enum { DEST_NORMAL, DEST_OPD, DEST_STUB } reloc_dest;
13289       unsigned int insn;
13290       unsigned int mask;
13291       struct ppc_stub_hash_entry *stub_entry;
13292       bfd_vma max_br_offset;
13293       bfd_vma from;
13294       Elf_Internal_Rela orig_rel;
13295       reloc_howto_type *howto;
13296       struct reloc_howto_struct alt_howto;
13297
13298     again:
13299       orig_rel = *rel;
13300
13301       r_type = ELF64_R_TYPE (rel->r_info);
13302       r_symndx = ELF64_R_SYM (rel->r_info);
13303
13304       /* For old style R_PPC64_TOC relocs with a zero symbol, use the
13305          symbol of the previous ADDR64 reloc.  The symbol gives us the
13306          proper TOC base to use.  */
13307       if (rel->r_info == ELF64_R_INFO (0, R_PPC64_TOC)
13308           && wrel != relocs
13309           && ELF64_R_TYPE (wrel[-1].r_info) == R_PPC64_ADDR64
13310           && is_opd)
13311         r_symndx = ELF64_R_SYM (wrel[-1].r_info);
13312
13313       sym = NULL;
13314       sec = NULL;
13315       h_elf = NULL;
13316       sym_name = NULL;
13317       unresolved_reloc = FALSE;
13318       warned = FALSE;
13319
13320       if (r_symndx < symtab_hdr->sh_info)
13321         {
13322           /* It's a local symbol.  */
13323           struct _opd_sec_data *opd;
13324
13325           sym = local_syms + r_symndx;
13326           sec = local_sections[r_symndx];
13327           sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym, sec);
13328           sym_type = ELF64_ST_TYPE (sym->st_info);
13329           relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
13330           opd = get_opd_info (sec);
13331           if (opd != NULL && opd->adjust != NULL)
13332             {
13333               long adjust = opd->adjust[OPD_NDX (sym->st_value
13334                                                  + rel->r_addend)];
13335               if (adjust == -1)
13336                 relocation = 0;
13337               else
13338                 {
13339                   /* If this is a relocation against the opd section sym
13340                      and we have edited .opd, adjust the reloc addend so
13341                      that ld -r and ld --emit-relocs output is correct.
13342                      If it is a reloc against some other .opd symbol,
13343                      then the symbol value will be adjusted later.  */
13344                   if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
13345                     rel->r_addend += adjust;
13346                   else
13347                     relocation += adjust;
13348                 }
13349             }
13350         }
13351       else
13352         {
13353           bfd_boolean ignored;
13354
13355           RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
13356                                    r_symndx, symtab_hdr, sym_hashes,
13357                                    h_elf, sec, relocation,
13358                                    unresolved_reloc, warned, ignored);
13359           sym_name = h_elf->root.root.string;
13360           sym_type = h_elf->type;
13361           if (sec != NULL
13362               && sec->owner == output_bfd
13363               && strcmp (sec->name, ".opd") == 0)
13364             {
13365               /* This is a symbol defined in a linker script.  All
13366                  such are defined in output sections, even those
13367                  defined by simple assignment from a symbol defined in
13368                  an input section.  Transfer the symbol to an
13369                  appropriate input .opd section, so that a branch to
13370                  this symbol will be mapped to the location specified
13371                  by the opd entry.  */
13372               struct bfd_link_order *lo;
13373               for (lo = sec->map_head.link_order; lo != NULL; lo = lo->next)
13374                 if (lo->type == bfd_indirect_link_order)
13375                   {
13376                     asection *isec = lo->u.indirect.section;
13377                     if (h_elf->root.u.def.value >= isec->output_offset
13378                         && h_elf->root.u.def.value < (isec->output_offset
13379                                                       + isec->size))
13380                       {
13381                         h_elf->root.u.def.value -= isec->output_offset;
13382                         h_elf->root.u.def.section = isec;
13383                         sec = isec;
13384                         break;
13385                       }
13386                   }
13387             }
13388         }
13389       h = (struct ppc_link_hash_entry *) h_elf;
13390
13391       if (sec != NULL && discarded_section (sec))
13392         {
13393           _bfd_clear_contents (ppc64_elf_howto_table[r_type],
13394                                input_bfd, input_section,
13395                                contents + rel->r_offset);
13396           wrel->r_offset = rel->r_offset;
13397           wrel->r_info = 0;
13398           wrel->r_addend = 0;
13399
13400           /* For ld -r, remove relocations in debug sections against
13401              sections defined in discarded sections.  Not done for
13402              non-debug to preserve relocs in .eh_frame which the
13403              eh_frame editing code expects to be present.  */
13404           if (bfd_link_relocatable (info)
13405               && (input_section->flags & SEC_DEBUGGING))
13406             wrel--;
13407
13408           continue;
13409         }
13410
13411       if (bfd_link_relocatable (info))
13412         goto copy_reloc;
13413
13414       if (h != NULL && &h->elf == htab->elf.hgot)
13415         {
13416           relocation = TOCstart + htab->sec_info[input_section->id].toc_off;
13417           sec = bfd_abs_section_ptr;
13418           unresolved_reloc = FALSE;
13419         }
13420
13421       /* TLS optimizations.  Replace instruction sequences and relocs
13422          based on information we collected in tls_optimize.  We edit
13423          RELOCS so that --emit-relocs will output something sensible
13424          for the final instruction stream.  */
13425       tls_mask = 0;
13426       tls_gd = 0;
13427       toc_symndx = 0;
13428       if (h != NULL)
13429         tls_mask = h->tls_mask;
13430       else if (local_got_ents != NULL)
13431         {
13432           struct plt_entry **local_plt = (struct plt_entry **)
13433             (local_got_ents + symtab_hdr->sh_info);
13434           unsigned char *lgot_masks = (unsigned char *)
13435             (local_plt + symtab_hdr->sh_info);
13436           tls_mask = lgot_masks[r_symndx];
13437         }
13438       if (tls_mask == 0
13439           && (r_type == R_PPC64_TLS
13440               || r_type == R_PPC64_TLSGD
13441               || r_type == R_PPC64_TLSLD))
13442         {
13443           /* Check for toc tls entries.  */
13444           unsigned char *toc_tls;
13445
13446           if (!get_tls_mask (&toc_tls, &toc_symndx, &toc_addend,
13447                              &local_syms, rel, input_bfd))
13448             return FALSE;
13449
13450           if (toc_tls)
13451             tls_mask = *toc_tls;
13452         }
13453
13454       /* Check that tls relocs are used with tls syms, and non-tls
13455          relocs are used with non-tls syms.  */
13456       if (r_symndx != STN_UNDEF
13457           && r_type != R_PPC64_NONE
13458           && (h == NULL
13459               || h->elf.root.type == bfd_link_hash_defined
13460               || h->elf.root.type == bfd_link_hash_defweak)
13461           && (IS_PPC64_TLS_RELOC (r_type)
13462               != (sym_type == STT_TLS
13463                   || (sym_type == STT_SECTION
13464                       && (sec->flags & SEC_THREAD_LOCAL) != 0))))
13465         {
13466           if (tls_mask != 0
13467               && (r_type == R_PPC64_TLS
13468                   || r_type == R_PPC64_TLSGD
13469                   || r_type == R_PPC64_TLSLD))
13470             /* R_PPC64_TLS is OK against a symbol in the TOC.  */
13471             ;
13472           else
13473             info->callbacks->einfo
13474               (!IS_PPC64_TLS_RELOC (r_type)
13475                ? _("%P: %H: %s used with TLS symbol `%T'\n")
13476                : _("%P: %H: %s used with non-TLS symbol `%T'\n"),
13477                input_bfd, input_section, rel->r_offset,
13478                ppc64_elf_howto_table[r_type]->name,
13479                sym_name);
13480         }
13481
13482       /* Ensure reloc mapping code below stays sane.  */
13483       if (R_PPC64_TOC16_LO_DS != R_PPC64_TOC16_DS + 1
13484           || R_PPC64_TOC16_LO != R_PPC64_TOC16 + 1
13485           || (R_PPC64_GOT_TLSLD16 & 3)    != (R_PPC64_GOT_TLSGD16 & 3)
13486           || (R_PPC64_GOT_TLSLD16_LO & 3) != (R_PPC64_GOT_TLSGD16_LO & 3)
13487           || (R_PPC64_GOT_TLSLD16_HI & 3) != (R_PPC64_GOT_TLSGD16_HI & 3)
13488           || (R_PPC64_GOT_TLSLD16_HA & 3) != (R_PPC64_GOT_TLSGD16_HA & 3)
13489           || (R_PPC64_GOT_TLSLD16 & 3)    != (R_PPC64_GOT_TPREL16_DS & 3)
13490           || (R_PPC64_GOT_TLSLD16_LO & 3) != (R_PPC64_GOT_TPREL16_LO_DS & 3)
13491           || (R_PPC64_GOT_TLSLD16_HI & 3) != (R_PPC64_GOT_TPREL16_HI & 3)
13492           || (R_PPC64_GOT_TLSLD16_HA & 3) != (R_PPC64_GOT_TPREL16_HA & 3))
13493         abort ();
13494
13495       switch (r_type)
13496         {
13497         default:
13498           break;
13499
13500         case R_PPC64_LO_DS_OPT:
13501           insn = bfd_get_32 (output_bfd, contents + rel->r_offset - d_offset);
13502           if ((insn & (0x3f << 26)) != 58u << 26)
13503             abort ();
13504           insn += (14u << 26) - (58u << 26);
13505           bfd_put_32 (output_bfd, insn, contents + rel->r_offset - d_offset);
13506           r_type = R_PPC64_TOC16_LO;
13507           rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13508           break;
13509
13510         case R_PPC64_TOC16:
13511         case R_PPC64_TOC16_LO:
13512         case R_PPC64_TOC16_DS:
13513         case R_PPC64_TOC16_LO_DS:
13514           {
13515             /* Check for toc tls entries.  */
13516             unsigned char *toc_tls;
13517             int retval;
13518
13519             retval = get_tls_mask (&toc_tls, &toc_symndx, &toc_addend,
13520                                    &local_syms, rel, input_bfd);
13521             if (retval == 0)
13522               return FALSE;
13523
13524             if (toc_tls)
13525               {
13526                 tls_mask = *toc_tls;
13527                 if (r_type == R_PPC64_TOC16_DS
13528                     || r_type == R_PPC64_TOC16_LO_DS)
13529                   {
13530                     if (tls_mask != 0
13531                         && (tls_mask & (TLS_DTPREL | TLS_TPREL)) == 0)
13532                       goto toctprel;
13533                   }
13534                 else
13535                   {
13536                     /* If we found a GD reloc pair, then we might be
13537                        doing a GD->IE transition.  */
13538                     if (retval == 2)
13539                       {
13540                         tls_gd = TLS_TPRELGD;
13541                         if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
13542                           goto tls_ldgd_opt;
13543                       }
13544                     else if (retval == 3)
13545                       {
13546                         if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
13547                           goto tls_ldgd_opt;
13548                       }
13549                   }
13550               }
13551           }
13552           break;
13553
13554         case R_PPC64_GOT_TPREL16_HI:
13555         case R_PPC64_GOT_TPREL16_HA:
13556           if (tls_mask != 0
13557               && (tls_mask & TLS_TPREL) == 0)
13558             {
13559               rel->r_offset -= d_offset;
13560               bfd_put_32 (output_bfd, NOP, contents + rel->r_offset);
13561               r_type = R_PPC64_NONE;
13562               rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13563             }
13564           break;
13565
13566         case R_PPC64_GOT_TPREL16_DS:
13567         case R_PPC64_GOT_TPREL16_LO_DS:
13568           if (tls_mask != 0
13569               && (tls_mask & TLS_TPREL) == 0)
13570             {
13571             toctprel:
13572               insn = bfd_get_32 (output_bfd,
13573                                  contents + rel->r_offset - d_offset);
13574               insn &= 31 << 21;
13575               insn |= 0x3c0d0000;       /* addis 0,13,0 */
13576               bfd_put_32 (output_bfd, insn,
13577                           contents + rel->r_offset - d_offset);
13578               r_type = R_PPC64_TPREL16_HA;
13579               if (toc_symndx != 0)
13580                 {
13581                   rel->r_info = ELF64_R_INFO (toc_symndx, r_type);
13582                   rel->r_addend = toc_addend;
13583                   /* We changed the symbol.  Start over in order to
13584                      get h, sym, sec etc. right.  */
13585                   goto again;
13586                 }
13587               else
13588                 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13589             }
13590           break;
13591
13592         case R_PPC64_TLS:
13593           if (tls_mask != 0
13594               && (tls_mask & TLS_TPREL) == 0)
13595             {
13596               insn = bfd_get_32 (output_bfd, contents + rel->r_offset);
13597               insn = _bfd_elf_ppc_at_tls_transform (insn, 13);
13598               if (insn == 0)
13599                 abort ();
13600               bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
13601               /* Was PPC64_TLS which sits on insn boundary, now
13602                  PPC64_TPREL16_LO which is at low-order half-word.  */
13603               rel->r_offset += d_offset;
13604               r_type = R_PPC64_TPREL16_LO;
13605               if (toc_symndx != 0)
13606                 {
13607                   rel->r_info = ELF64_R_INFO (toc_symndx, r_type);
13608                   rel->r_addend = toc_addend;
13609                   /* We changed the symbol.  Start over in order to
13610                      get h, sym, sec etc. right.  */
13611                   goto again;
13612                 }
13613               else
13614                 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13615             }
13616           break;
13617
13618         case R_PPC64_GOT_TLSGD16_HI:
13619         case R_PPC64_GOT_TLSGD16_HA:
13620           tls_gd = TLS_TPRELGD;
13621           if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
13622             goto tls_gdld_hi;
13623           break;
13624
13625         case R_PPC64_GOT_TLSLD16_HI:
13626         case R_PPC64_GOT_TLSLD16_HA:
13627           if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
13628             {
13629             tls_gdld_hi:
13630               if ((tls_mask & tls_gd) != 0)
13631                 r_type = (((r_type - (R_PPC64_GOT_TLSGD16 & 3)) & 3)
13632                           + R_PPC64_GOT_TPREL16_DS);
13633               else
13634                 {
13635                   rel->r_offset -= d_offset;
13636                   bfd_put_32 (output_bfd, NOP, contents + rel->r_offset);
13637                   r_type = R_PPC64_NONE;
13638                 }
13639               rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13640             }
13641           break;
13642
13643         case R_PPC64_GOT_TLSGD16:
13644         case R_PPC64_GOT_TLSGD16_LO:
13645           tls_gd = TLS_TPRELGD;
13646           if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
13647             goto tls_ldgd_opt;
13648           break;
13649
13650         case R_PPC64_GOT_TLSLD16:
13651         case R_PPC64_GOT_TLSLD16_LO:
13652           if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
13653             {
13654               unsigned int insn1, insn2, insn3;
13655               bfd_vma offset;
13656
13657             tls_ldgd_opt:
13658               offset = (bfd_vma) -1;
13659               /* If not using the newer R_PPC64_TLSGD/LD to mark
13660                  __tls_get_addr calls, we must trust that the call
13661                  stays with its arg setup insns, ie. that the next
13662                  reloc is the __tls_get_addr call associated with
13663                  the current reloc.  Edit both insns.  */
13664               if (input_section->has_tls_get_addr_call
13665                   && rel + 1 < relend
13666                   && branch_reloc_hash_match (input_bfd, rel + 1,
13667                                               htab->tls_get_addr,
13668                                               htab->tls_get_addr_fd))
13669                 offset = rel[1].r_offset;
13670               /* We read the low GOT_TLS (or TOC16) insn because we
13671                  need to keep the destination reg.  It may be
13672                  something other than the usual r3, and moved to r3
13673                  before the call by intervening code.  */
13674               insn1 = bfd_get_32 (output_bfd,
13675                                   contents + rel->r_offset - d_offset);
13676               if ((tls_mask & tls_gd) != 0)
13677                 {
13678                   /* IE */
13679                   insn1 &= (0x1f << 21) | (0x1f << 16);
13680                   insn1 |= 58 << 26;    /* ld */
13681                   insn2 = 0x7c636a14;   /* add 3,3,13 */
13682                   if (offset != (bfd_vma) -1)
13683                     rel[1].r_info = ELF64_R_INFO (STN_UNDEF, R_PPC64_NONE);
13684                   if ((tls_mask & TLS_EXPLICIT) == 0)
13685                     r_type = (((r_type - (R_PPC64_GOT_TLSGD16 & 3)) & 3)
13686                               + R_PPC64_GOT_TPREL16_DS);
13687                   else
13688                     r_type += R_PPC64_TOC16_DS - R_PPC64_TOC16;
13689                   rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13690                 }
13691               else
13692                 {
13693                   /* LE */
13694                   insn1 &= 0x1f << 21;
13695                   insn1 |= 0x3c0d0000;  /* addis r,13,0 */
13696                   insn2 = 0x38630000;   /* addi 3,3,0 */
13697                   if (tls_gd == 0)
13698                     {
13699                       /* Was an LD reloc.  */
13700                       if (toc_symndx)
13701                         sec = local_sections[toc_symndx];
13702                       for (r_symndx = 0;
13703                            r_symndx < symtab_hdr->sh_info;
13704                            r_symndx++)
13705                         if (local_sections[r_symndx] == sec)
13706                           break;
13707                       if (r_symndx >= symtab_hdr->sh_info)
13708                         r_symndx = STN_UNDEF;
13709                       rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
13710                       if (r_symndx != STN_UNDEF)
13711                         rel->r_addend -= (local_syms[r_symndx].st_value
13712                                           + sec->output_offset
13713                                           + sec->output_section->vma);
13714                     }
13715                   else if (toc_symndx != 0)
13716                     {
13717                       r_symndx = toc_symndx;
13718                       rel->r_addend = toc_addend;
13719                     }
13720                   r_type = R_PPC64_TPREL16_HA;
13721                   rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13722                   if (offset != (bfd_vma) -1)
13723                     {
13724                       rel[1].r_info = ELF64_R_INFO (r_symndx,
13725                                                     R_PPC64_TPREL16_LO);
13726                       rel[1].r_offset = offset + d_offset;
13727                       rel[1].r_addend = rel->r_addend;
13728                     }
13729                 }
13730               bfd_put_32 (output_bfd, insn1,
13731                           contents + rel->r_offset - d_offset);
13732               if (offset != (bfd_vma) -1)
13733                 {
13734                   insn3 = bfd_get_32 (output_bfd,
13735                                       contents + offset + 4);
13736                   if (insn3 == NOP
13737                       || insn3 == CROR_151515 || insn3 == CROR_313131)
13738                     {
13739                       rel[1].r_offset += 4;
13740                       bfd_put_32 (output_bfd, insn2, contents + offset + 4);
13741                       insn2 = NOP;
13742                     }
13743                   bfd_put_32 (output_bfd, insn2, contents + offset);
13744                 }
13745               if ((tls_mask & tls_gd) == 0
13746                   && (tls_gd == 0 || toc_symndx != 0))
13747                 {
13748                   /* We changed the symbol.  Start over in order
13749                      to get h, sym, sec etc. right.  */
13750                   goto again;
13751                 }
13752             }
13753           break;
13754
13755         case R_PPC64_TLSGD:
13756           if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
13757             {
13758               unsigned int insn2, insn3;
13759               bfd_vma offset = rel->r_offset;
13760
13761               if ((tls_mask & TLS_TPRELGD) != 0)
13762                 {
13763                   /* IE */
13764                   r_type = R_PPC64_NONE;
13765                   insn2 = 0x7c636a14;   /* add 3,3,13 */
13766                 }
13767               else
13768                 {
13769                   /* LE */
13770                   if (toc_symndx != 0)
13771                     {
13772                       r_symndx = toc_symndx;
13773                       rel->r_addend = toc_addend;
13774                     }
13775                   r_type = R_PPC64_TPREL16_LO;
13776                   rel->r_offset = offset + d_offset;
13777                   insn2 = 0x38630000;   /* addi 3,3,0 */
13778                 }
13779               rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13780               /* Zap the reloc on the _tls_get_addr call too.  */
13781               BFD_ASSERT (offset == rel[1].r_offset);
13782               rel[1].r_info = ELF64_R_INFO (STN_UNDEF, R_PPC64_NONE);
13783               insn3 = bfd_get_32 (output_bfd,
13784                                   contents + offset + 4);
13785               if (insn3 == NOP
13786                   || insn3 == CROR_151515 || insn3 == CROR_313131)
13787                 {
13788                   rel->r_offset += 4;
13789                   bfd_put_32 (output_bfd, insn2, contents + offset + 4);
13790                   insn2 = NOP;
13791                 }
13792               bfd_put_32 (output_bfd, insn2, contents + offset);
13793               if ((tls_mask & TLS_TPRELGD) == 0 && toc_symndx != 0)
13794                 goto again;
13795             }
13796           break;
13797
13798         case R_PPC64_TLSLD:
13799           if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
13800             {
13801               unsigned int insn2, insn3;
13802               bfd_vma offset = rel->r_offset;
13803
13804               if (toc_symndx)
13805                 sec = local_sections[toc_symndx];
13806               for (r_symndx = 0;
13807                    r_symndx < symtab_hdr->sh_info;
13808                    r_symndx++)
13809                 if (local_sections[r_symndx] == sec)
13810                   break;
13811               if (r_symndx >= symtab_hdr->sh_info)
13812                 r_symndx = STN_UNDEF;
13813               rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
13814               if (r_symndx != STN_UNDEF)
13815                 rel->r_addend -= (local_syms[r_symndx].st_value
13816                                   + sec->output_offset
13817                                   + sec->output_section->vma);
13818
13819               r_type = R_PPC64_TPREL16_LO;
13820               rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13821               rel->r_offset = offset + d_offset;
13822               /* Zap the reloc on the _tls_get_addr call too.  */
13823               BFD_ASSERT (offset == rel[1].r_offset);
13824               rel[1].r_info = ELF64_R_INFO (STN_UNDEF, R_PPC64_NONE);
13825               insn2 = 0x38630000;       /* addi 3,3,0 */
13826               insn3 = bfd_get_32 (output_bfd,
13827                                   contents + offset + 4);
13828               if (insn3 == NOP
13829                   || insn3 == CROR_151515 || insn3 == CROR_313131)
13830                 {
13831                   rel->r_offset += 4;
13832                   bfd_put_32 (output_bfd, insn2, contents + offset + 4);
13833                   insn2 = NOP;
13834                 }
13835               bfd_put_32 (output_bfd, insn2, contents + offset);
13836               goto again;
13837             }
13838           break;
13839
13840         case R_PPC64_DTPMOD64:
13841           if (rel + 1 < relend
13842               && rel[1].r_info == ELF64_R_INFO (r_symndx, R_PPC64_DTPREL64)
13843               && rel[1].r_offset == rel->r_offset + 8)
13844             {
13845               if ((tls_mask & TLS_GD) == 0)
13846                 {
13847                   rel[1].r_info = ELF64_R_INFO (r_symndx, R_PPC64_NONE);
13848                   if ((tls_mask & TLS_TPRELGD) != 0)
13849                     r_type = R_PPC64_TPREL64;
13850                   else
13851                     {
13852                       bfd_put_64 (output_bfd, 1, contents + rel->r_offset);
13853                       r_type = R_PPC64_NONE;
13854                     }
13855                   rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13856                 }
13857             }
13858           else
13859             {
13860               if ((tls_mask & TLS_LD) == 0)
13861                 {
13862                   bfd_put_64 (output_bfd, 1, contents + rel->r_offset);
13863                   r_type = R_PPC64_NONE;
13864                   rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13865                 }
13866             }
13867           break;
13868
13869         case R_PPC64_TPREL64:
13870           if ((tls_mask & TLS_TPREL) == 0)
13871             {
13872               r_type = R_PPC64_NONE;
13873               rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13874             }
13875           break;
13876
13877         case R_PPC64_ENTRY:
13878           relocation = TOCstart + htab->sec_info[input_section->id].toc_off;
13879           if (!bfd_link_pic (info)
13880               && !info->traditional_format
13881               && relocation + 0x80008000 <= 0xffffffff)
13882             {
13883               unsigned int insn1, insn2;
13884
13885               insn1 = bfd_get_32 (input_bfd, contents + rel->r_offset);
13886               insn2 = bfd_get_32 (input_bfd, contents + rel->r_offset + 4);
13887               if ((insn1 & ~0xfffc) == LD_R2_0R12
13888                   && insn2 == ADD_R2_R2_R12)
13889                 {
13890                   bfd_put_32 (output_bfd,
13891                               LIS_R2 + PPC_HA (relocation),
13892                               contents + rel->r_offset);
13893                   bfd_put_32 (output_bfd,
13894                               ADDI_R2_R2 + PPC_LO (relocation),
13895                               contents + rel->r_offset + 4);
13896                 }
13897             }
13898           else
13899             {
13900               relocation -= (rel->r_offset
13901                              + input_section->output_offset
13902                              + input_section->output_section->vma);
13903               if (relocation + 0x80008000 <= 0xffffffff)
13904                 {
13905                   unsigned int insn1, insn2;
13906
13907                   insn1 = bfd_get_32 (input_bfd, contents + rel->r_offset);
13908                   insn2 = bfd_get_32 (input_bfd, contents + rel->r_offset + 4);
13909                   if ((insn1 & ~0xfffc) == LD_R2_0R12
13910                       && insn2 == ADD_R2_R2_R12)
13911                     {
13912                       bfd_put_32 (output_bfd,
13913                                   ADDIS_R2_R12 + PPC_HA (relocation),
13914                                   contents + rel->r_offset);
13915                       bfd_put_32 (output_bfd,
13916                                   ADDI_R2_R2 + PPC_LO (relocation),
13917                                   contents + rel->r_offset + 4);
13918                     }
13919                 }
13920             }
13921           break;
13922
13923         case R_PPC64_REL16_HA:
13924           /* If we are generating a non-PIC executable, edit
13925              .  0:      addis 2,12,.TOC.-0b@ha
13926              .          addi 2,2,.TOC.-0b@l
13927              used by ELFv2 global entry points to set up r2, to
13928              .          lis 2,.TOC.@ha
13929              .          addi 2,2,.TOC.@l
13930              if .TOC. is in range.  */
13931           if (!bfd_link_pic (info)
13932               && !info->traditional_format
13933               && !htab->opd_abi
13934               && rel->r_addend == d_offset
13935               && h != NULL && &h->elf == htab->elf.hgot
13936               && rel + 1 < relend
13937               && rel[1].r_info == ELF64_R_INFO (r_symndx, R_PPC64_REL16_LO)
13938               && rel[1].r_offset == rel->r_offset + 4
13939               && rel[1].r_addend == rel->r_addend + 4
13940               && relocation + 0x80008000 <= 0xffffffff)
13941             {
13942               unsigned int insn1, insn2;
13943               bfd_vma offset = rel->r_offset - d_offset;
13944               insn1 = bfd_get_32 (output_bfd, contents + offset);
13945               insn2 = bfd_get_32 (output_bfd, contents + offset + 4);
13946               if ((insn1 & 0xffff0000) == ADDIS_R2_R12
13947                   && (insn2 & 0xffff0000) == ADDI_R2_R2)
13948                 {
13949                   r_type = R_PPC64_ADDR16_HA;
13950                   rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13951                   rel->r_addend -= d_offset;
13952                   rel[1].r_info = ELF64_R_INFO (r_symndx, R_PPC64_ADDR16_LO);
13953                   rel[1].r_addend -= d_offset + 4;
13954                   bfd_put_32 (output_bfd, LIS_R2, contents + offset);
13955                 }
13956             }
13957           break;
13958         }
13959
13960       /* Handle other relocations that tweak non-addend part of insn.  */
13961       insn = 0;
13962       max_br_offset = 1 << 25;
13963       addend = rel->r_addend;
13964       reloc_dest = DEST_NORMAL;
13965       switch (r_type)
13966         {
13967         default:
13968           break;
13969
13970         case R_PPC64_TOCSAVE:
13971           if (relocation + addend == (rel->r_offset
13972                                       + input_section->output_offset
13973                                       + input_section->output_section->vma)
13974               && tocsave_find (htab, NO_INSERT,
13975                                &local_syms, rel, input_bfd))
13976             {
13977               insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
13978               if (insn == NOP
13979                   || insn == CROR_151515 || insn == CROR_313131)
13980                 bfd_put_32 (input_bfd,
13981                             STD_R2_0R1 + STK_TOC (htab),
13982                             contents + rel->r_offset);
13983             }
13984           break;
13985
13986           /* Branch taken prediction relocations.  */
13987         case R_PPC64_ADDR14_BRTAKEN:
13988         case R_PPC64_REL14_BRTAKEN:
13989           insn = 0x01 << 21; /* 'y' or 't' bit, lowest bit of BO field.  */
13990           /* Fall thru.  */
13991
13992           /* Branch not taken prediction relocations.  */
13993         case R_PPC64_ADDR14_BRNTAKEN:
13994         case R_PPC64_REL14_BRNTAKEN:
13995           insn |= bfd_get_32 (output_bfd,
13996                               contents + rel->r_offset) & ~(0x01 << 21);
13997           /* Fall thru.  */
13998
13999         case R_PPC64_REL14:
14000           max_br_offset = 1 << 15;
14001           /* Fall thru.  */
14002
14003         case R_PPC64_REL24:
14004           /* Calls to functions with a different TOC, such as calls to
14005              shared objects, need to alter the TOC pointer.  This is
14006              done using a linkage stub.  A REL24 branching to these
14007              linkage stubs needs to be followed by a nop, as the nop
14008              will be replaced with an instruction to restore the TOC
14009              base pointer.  */
14010           fdh = h;
14011           if (h != NULL
14012               && h->oh != NULL
14013               && h->oh->is_func_descriptor)
14014             fdh = ppc_follow_link (h->oh);
14015           stub_entry = ppc_get_stub_entry (input_section, sec, fdh, &orig_rel,
14016                                            htab);
14017           if (stub_entry != NULL
14018               && (stub_entry->stub_type == ppc_stub_plt_call
14019                   || stub_entry->stub_type == ppc_stub_plt_call_r2save
14020                   || stub_entry->stub_type == ppc_stub_plt_branch_r2off
14021                   || stub_entry->stub_type == ppc_stub_long_branch_r2off))
14022             {
14023               bfd_boolean can_plt_call = FALSE;
14024
14025               /* All of these stubs will modify r2, so there must be a
14026                  branch and link followed by a nop.  The nop is
14027                  replaced by an insn to restore r2.  */
14028               if (rel->r_offset + 8 <= input_section->size)
14029                 {
14030                   unsigned long br;
14031
14032                   br = bfd_get_32 (input_bfd,
14033                                    contents + rel->r_offset);
14034                   if ((br & 1) != 0)
14035                     {
14036                       unsigned long nop;
14037
14038                       nop = bfd_get_32 (input_bfd,
14039                                         contents + rel->r_offset + 4);
14040                       if (nop == NOP
14041                           || nop == CROR_151515 || nop == CROR_313131)
14042                         {
14043                           if (h != NULL
14044                               && (h == htab->tls_get_addr_fd
14045                                   || h == htab->tls_get_addr)
14046                               && htab->params->tls_get_addr_opt)
14047                             {
14048                               /* Special stub used, leave nop alone.  */
14049                             }
14050                           else
14051                             bfd_put_32 (input_bfd,
14052                                         LD_R2_0R1 + STK_TOC (htab),
14053                                         contents + rel->r_offset + 4);
14054                           can_plt_call = TRUE;
14055                         }
14056                     }
14057                 }
14058
14059               if (!can_plt_call && h != NULL)
14060                 {
14061                   const char *name = h->elf.root.root.string;
14062
14063                   if (*name == '.')
14064                     ++name;
14065
14066                   if (strncmp (name, "__libc_start_main", 17) == 0
14067                       && (name[17] == 0 || name[17] == '@'))
14068                     {
14069                       /* Allow crt1 branch to go via a toc adjusting
14070                          stub.  Other calls that never return could do
14071                          the same, if we could detect such.  */
14072                       can_plt_call = TRUE;
14073                     }
14074                 }
14075
14076               if (!can_plt_call)
14077                 {
14078                   /* g++ as of 20130507 emits self-calls without a
14079                      following nop.  This is arguably wrong since we
14080                      have conflicting information.  On the one hand a
14081                      global symbol and on the other a local call
14082                      sequence, but don't error for this special case.
14083                      It isn't possible to cheaply verify we have
14084                      exactly such a call.  Allow all calls to the same
14085                      section.  */
14086                   asection *code_sec = sec;
14087
14088                   if (get_opd_info (sec) != NULL)
14089                     {
14090                       bfd_vma off = (relocation + addend
14091                                      - sec->output_section->vma
14092                                      - sec->output_offset);
14093
14094                       opd_entry_value (sec, off, &code_sec, NULL, FALSE);
14095                     }
14096                   if (code_sec == input_section)
14097                     can_plt_call = TRUE;
14098                 }
14099
14100               if (!can_plt_call)
14101                 {
14102                   if (stub_entry->stub_type == ppc_stub_plt_call
14103                       || stub_entry->stub_type == ppc_stub_plt_call_r2save)
14104                     info->callbacks->einfo
14105                       (_("%P: %H: call to `%T' lacks nop, can't restore toc; "
14106                          "recompile with -fPIC\n"),
14107                        input_bfd, input_section, rel->r_offset, sym_name);
14108                   else
14109                     info->callbacks->einfo
14110                       (_("%P: %H: call to `%T' lacks nop, can't restore toc; "
14111                          "(-mcmodel=small toc adjust stub)\n"),
14112                        input_bfd, input_section, rel->r_offset, sym_name);
14113
14114                   bfd_set_error (bfd_error_bad_value);
14115                   ret = FALSE;
14116                 }
14117
14118               if (can_plt_call
14119                   && (stub_entry->stub_type == ppc_stub_plt_call
14120                       || stub_entry->stub_type == ppc_stub_plt_call_r2save))
14121                 unresolved_reloc = FALSE;
14122             }
14123
14124           if ((stub_entry == NULL
14125                || stub_entry->stub_type == ppc_stub_long_branch
14126                || stub_entry->stub_type == ppc_stub_plt_branch)
14127               && get_opd_info (sec) != NULL)
14128             {
14129               /* The branch destination is the value of the opd entry. */
14130               bfd_vma off = (relocation + addend
14131                              - sec->output_section->vma
14132                              - sec->output_offset);
14133               bfd_vma dest = opd_entry_value (sec, off, NULL, NULL, FALSE);
14134               if (dest != (bfd_vma) -1)
14135                 {
14136                   relocation = dest;
14137                   addend = 0;
14138                   reloc_dest = DEST_OPD;
14139                 }
14140             }
14141
14142           /* If the branch is out of reach we ought to have a long
14143              branch stub.  */
14144           from = (rel->r_offset
14145                   + input_section->output_offset
14146                   + input_section->output_section->vma);
14147
14148           relocation += PPC64_LOCAL_ENTRY_OFFSET (fdh
14149                                                   ? fdh->elf.other
14150                                                   : sym->st_other);
14151
14152           if (stub_entry != NULL
14153               && (stub_entry->stub_type == ppc_stub_long_branch
14154                   || stub_entry->stub_type == ppc_stub_plt_branch)
14155               && (r_type == R_PPC64_ADDR14_BRTAKEN
14156                   || r_type == R_PPC64_ADDR14_BRNTAKEN
14157                   || (relocation + addend - from + max_br_offset
14158                       < 2 * max_br_offset)))
14159             /* Don't use the stub if this branch is in range.  */
14160             stub_entry = NULL;
14161
14162           if (stub_entry != NULL)
14163             {
14164               /* Munge up the value and addend so that we call the stub
14165                  rather than the procedure directly.  */
14166               asection *stub_sec = stub_entry->group->stub_sec;
14167
14168               if (stub_entry->stub_type == ppc_stub_save_res)
14169                 relocation += (stub_sec->output_offset
14170                                + stub_sec->output_section->vma
14171                                + stub_sec->size - htab->sfpr->size
14172                                - htab->sfpr->output_offset
14173                                - htab->sfpr->output_section->vma);
14174               else
14175                 relocation = (stub_entry->stub_offset
14176                               + stub_sec->output_offset
14177                               + stub_sec->output_section->vma);
14178               addend = 0;
14179               reloc_dest = DEST_STUB;
14180
14181               if ((stub_entry->stub_type == ppc_stub_plt_call
14182                    || stub_entry->stub_type == ppc_stub_plt_call_r2save)
14183                   && (ALWAYS_EMIT_R2SAVE
14184                       || stub_entry->stub_type == ppc_stub_plt_call_r2save)
14185                   && rel + 1 < relend
14186                   && rel[1].r_offset == rel->r_offset + 4
14187                   && ELF64_R_TYPE (rel[1].r_info) == R_PPC64_TOCSAVE)
14188                 relocation += 4;
14189             }
14190
14191           if (insn != 0)
14192             {
14193               if (is_isa_v2)
14194                 {
14195                   /* Set 'a' bit.  This is 0b00010 in BO field for branch
14196                      on CR(BI) insns (BO == 001at or 011at), and 0b01000
14197                      for branch on CTR insns (BO == 1a00t or 1a01t).  */
14198                   if ((insn & (0x14 << 21)) == (0x04 << 21))
14199                     insn |= 0x02 << 21;
14200                   else if ((insn & (0x14 << 21)) == (0x10 << 21))
14201                     insn |= 0x08 << 21;
14202                   else
14203                     break;
14204                 }
14205               else
14206                 {
14207                   /* Invert 'y' bit if not the default.  */
14208                   if ((bfd_signed_vma) (relocation + addend - from) < 0)
14209                     insn ^= 0x01 << 21;
14210                 }
14211
14212               bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
14213             }
14214
14215           /* NOP out calls to undefined weak functions.
14216              We can thus call a weak function without first
14217              checking whether the function is defined.  */
14218           else if (h != NULL
14219                    && h->elf.root.type == bfd_link_hash_undefweak
14220                    && h->elf.dynindx == -1
14221                    && r_type == R_PPC64_REL24
14222                    && relocation == 0
14223                    && addend == 0)
14224             {
14225               bfd_put_32 (output_bfd, NOP, contents + rel->r_offset);
14226               goto copy_reloc;
14227             }
14228           break;
14229         }
14230
14231       /* Set `addend'.  */
14232       tls_type = 0;
14233       switch (r_type)
14234         {
14235         default:
14236           info->callbacks->einfo
14237             (_("%P: %B: unknown relocation type %d for `%T'\n"),
14238              input_bfd, (int) r_type, sym_name);
14239
14240           bfd_set_error (bfd_error_bad_value);
14241           ret = FALSE;
14242           goto copy_reloc;
14243
14244         case R_PPC64_NONE:
14245         case R_PPC64_TLS:
14246         case R_PPC64_TLSGD:
14247         case R_PPC64_TLSLD:
14248         case R_PPC64_TOCSAVE:
14249         case R_PPC64_GNU_VTINHERIT:
14250         case R_PPC64_GNU_VTENTRY:
14251         case R_PPC64_ENTRY:
14252           goto copy_reloc;
14253
14254           /* GOT16 relocations.  Like an ADDR16 using the symbol's
14255              address in the GOT as relocation value instead of the
14256              symbol's value itself.  Also, create a GOT entry for the
14257              symbol and put the symbol value there.  */
14258         case R_PPC64_GOT_TLSGD16:
14259         case R_PPC64_GOT_TLSGD16_LO:
14260         case R_PPC64_GOT_TLSGD16_HI:
14261         case R_PPC64_GOT_TLSGD16_HA:
14262           tls_type = TLS_TLS | TLS_GD;
14263           goto dogot;
14264
14265         case R_PPC64_GOT_TLSLD16:
14266         case R_PPC64_GOT_TLSLD16_LO:
14267         case R_PPC64_GOT_TLSLD16_HI:
14268         case R_PPC64_GOT_TLSLD16_HA:
14269           tls_type = TLS_TLS | TLS_LD;
14270           goto dogot;
14271
14272         case R_PPC64_GOT_TPREL16_DS:
14273         case R_PPC64_GOT_TPREL16_LO_DS:
14274         case R_PPC64_GOT_TPREL16_HI:
14275         case R_PPC64_GOT_TPREL16_HA:
14276           tls_type = TLS_TLS | TLS_TPREL;
14277           goto dogot;
14278
14279         case R_PPC64_GOT_DTPREL16_DS:
14280         case R_PPC64_GOT_DTPREL16_LO_DS:
14281         case R_PPC64_GOT_DTPREL16_HI:
14282         case R_PPC64_GOT_DTPREL16_HA:
14283           tls_type = TLS_TLS | TLS_DTPREL;
14284           goto dogot;
14285
14286         case R_PPC64_GOT16:
14287         case R_PPC64_GOT16_LO:
14288         case R_PPC64_GOT16_HI:
14289         case R_PPC64_GOT16_HA:
14290         case R_PPC64_GOT16_DS:
14291         case R_PPC64_GOT16_LO_DS:
14292         dogot:
14293           {
14294             /* Relocation is to the entry for this symbol in the global
14295                offset table.  */
14296             asection *got;
14297             bfd_vma *offp;
14298             bfd_vma off;
14299             unsigned long indx = 0;
14300             struct got_entry *ent;
14301
14302             if (tls_type == (TLS_TLS | TLS_LD)
14303                 && (h == NULL
14304                     || !h->elf.def_dynamic))
14305               ent = ppc64_tlsld_got (input_bfd);
14306             else
14307               {
14308
14309                 if (h != NULL)
14310                   {
14311                     bfd_boolean dyn = htab->elf.dynamic_sections_created;
14312                     if (!WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info),
14313                                                           &h->elf)
14314                         || (bfd_link_pic (info)
14315                             && SYMBOL_REFERENCES_LOCAL (info, &h->elf)))
14316                       /* This is actually a static link, or it is a
14317                          -Bsymbolic link and the symbol is defined
14318                          locally, or the symbol was forced to be local
14319                          because of a version file.  */
14320                       ;
14321                     else
14322                       {
14323                         BFD_ASSERT (h->elf.dynindx != -1);
14324                         indx = h->elf.dynindx;
14325                         unresolved_reloc = FALSE;
14326                       }
14327                     ent = h->elf.got.glist;
14328                   }
14329                 else
14330                   {
14331                     if (local_got_ents == NULL)
14332                       abort ();
14333                     ent = local_got_ents[r_symndx];
14334                   }
14335
14336                 for (; ent != NULL; ent = ent->next)
14337                   if (ent->addend == orig_rel.r_addend
14338                       && ent->owner == input_bfd
14339                       && ent->tls_type == tls_type)
14340                     break;
14341               }
14342
14343             if (ent == NULL)
14344               abort ();
14345             if (ent->is_indirect)
14346               ent = ent->got.ent;
14347             offp = &ent->got.offset;
14348             got = ppc64_elf_tdata (ent->owner)->got;
14349             if (got == NULL)
14350               abort ();
14351
14352             /* The offset must always be a multiple of 8.  We use the
14353                least significant bit to record whether we have already
14354                processed this entry.  */
14355             off = *offp;
14356             if ((off & 1) != 0)
14357               off &= ~1;
14358             else
14359               {
14360                 /* Generate relocs for the dynamic linker, except in
14361                    the case of TLSLD where we'll use one entry per
14362                    module.  */
14363                 asection *relgot;
14364                 bfd_boolean ifunc;
14365
14366                 *offp = off | 1;
14367                 relgot = NULL;
14368                 ifunc = (h != NULL
14369                          ? h->elf.type == STT_GNU_IFUNC
14370                          : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC);
14371                 if (ifunc)
14372                   relgot = htab->elf.irelplt;
14373                 else if ((bfd_link_pic (info) || indx != 0)
14374                          && (h == NULL
14375                              || (tls_type == (TLS_TLS | TLS_LD)
14376                                  && !h->elf.def_dynamic)
14377                              || ELF_ST_VISIBILITY (h->elf.other) == STV_DEFAULT
14378                              || h->elf.root.type != bfd_link_hash_undefweak))
14379                   relgot = ppc64_elf_tdata (ent->owner)->relgot;
14380                 if (relgot != NULL)
14381                   {
14382                     outrel.r_offset = (got->output_section->vma
14383                                        + got->output_offset
14384                                        + off);
14385                     outrel.r_addend = addend;
14386                     if (tls_type & (TLS_LD | TLS_GD))
14387                       {
14388                         outrel.r_addend = 0;
14389                         outrel.r_info = ELF64_R_INFO (indx, R_PPC64_DTPMOD64);
14390                         if (tls_type == (TLS_TLS | TLS_GD))
14391                           {
14392                             loc = relgot->contents;
14393                             loc += (relgot->reloc_count++
14394                                     * sizeof (Elf64_External_Rela));
14395                             bfd_elf64_swap_reloca_out (output_bfd,
14396                                                        &outrel, loc);
14397                             outrel.r_offset += 8;
14398                             outrel.r_addend = addend;
14399                             outrel.r_info
14400                               = ELF64_R_INFO (indx, R_PPC64_DTPREL64);
14401                           }
14402                       }
14403                     else if (tls_type == (TLS_TLS | TLS_DTPREL))
14404                       outrel.r_info = ELF64_R_INFO (indx, R_PPC64_DTPREL64);
14405                     else if (tls_type == (TLS_TLS | TLS_TPREL))
14406                       outrel.r_info = ELF64_R_INFO (indx, R_PPC64_TPREL64);
14407                     else if (indx != 0)
14408                       outrel.r_info = ELF64_R_INFO (indx, R_PPC64_GLOB_DAT);
14409                     else
14410                       {
14411                         if (ifunc)
14412                           outrel.r_info = ELF64_R_INFO (0, R_PPC64_IRELATIVE);
14413                         else
14414                           outrel.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
14415
14416                         /* Write the .got section contents for the sake
14417                            of prelink.  */
14418                         loc = got->contents + off;
14419                         bfd_put_64 (output_bfd, outrel.r_addend + relocation,
14420                                     loc);
14421                       }
14422
14423                     if (indx == 0 && tls_type != (TLS_TLS | TLS_LD))
14424                       {
14425                         outrel.r_addend += relocation;
14426                         if (tls_type & (TLS_GD | TLS_DTPREL | TLS_TPREL))
14427                           {
14428                             if (htab->elf.tls_sec == NULL)
14429                               outrel.r_addend = 0;
14430                             else
14431                               outrel.r_addend -= htab->elf.tls_sec->vma;
14432                           }
14433                       }
14434                     loc = relgot->contents;
14435                     loc += (relgot->reloc_count++
14436                             * sizeof (Elf64_External_Rela));
14437                     bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc);
14438                   }
14439
14440                 /* Init the .got section contents here if we're not
14441                    emitting a reloc.  */
14442                 else
14443                   {
14444                     relocation += addend;
14445                     if (tls_type == (TLS_TLS | TLS_LD))
14446                       relocation = 1;
14447                     else if (tls_type != 0)
14448                       {
14449                         if (htab->elf.tls_sec == NULL)
14450                           relocation = 0;
14451                         else
14452                           {
14453                             relocation -= htab->elf.tls_sec->vma + DTP_OFFSET;
14454                             if (tls_type == (TLS_TLS | TLS_TPREL))
14455                               relocation += DTP_OFFSET - TP_OFFSET;
14456                           }
14457
14458                         if (tls_type == (TLS_TLS | TLS_GD))
14459                           {
14460                             bfd_put_64 (output_bfd, relocation,
14461                                         got->contents + off + 8);
14462                             relocation = 1;
14463                           }
14464                       }
14465
14466                     bfd_put_64 (output_bfd, relocation,
14467                                 got->contents + off);
14468                   }
14469               }
14470
14471             if (off >= (bfd_vma) -2)
14472               abort ();
14473
14474             relocation = got->output_section->vma + got->output_offset + off;
14475             addend = -(TOCstart + htab->sec_info[input_section->id].toc_off);
14476           }
14477           break;
14478
14479         case R_PPC64_PLT16_HA:
14480         case R_PPC64_PLT16_HI:
14481         case R_PPC64_PLT16_LO:
14482         case R_PPC64_PLT32:
14483         case R_PPC64_PLT64:
14484           /* Relocation is to the entry for this symbol in the
14485              procedure linkage table.  */
14486           {
14487             struct plt_entry **plt_list = NULL;
14488             if (h != NULL)
14489               plt_list = &h->elf.plt.plist;
14490             else if (local_got_ents != NULL)
14491               {
14492                 struct plt_entry **local_plt = (struct plt_entry **)
14493                   (local_got_ents + symtab_hdr->sh_info);
14494                 unsigned char *local_got_tls_masks = (unsigned char *)
14495                   (local_plt + symtab_hdr->sh_info);
14496                 if ((local_got_tls_masks[r_symndx] & PLT_IFUNC) != 0)
14497                   plt_list = local_plt + r_symndx;
14498               }
14499             if (plt_list)
14500               {
14501                 struct plt_entry *ent;
14502
14503                 for (ent = *plt_list; ent != NULL; ent = ent->next)
14504                   if (ent->plt.offset != (bfd_vma) -1
14505                       && ent->addend == orig_rel.r_addend)
14506                     {
14507                       asection *plt;
14508
14509                       plt = htab->elf.splt;
14510                       if (!htab->elf.dynamic_sections_created
14511                           || h == NULL
14512                           || h->elf.dynindx == -1)
14513                         plt = htab->elf.iplt;
14514                       relocation = (plt->output_section->vma
14515                                     + plt->output_offset
14516                                     + ent->plt.offset);
14517                       addend = 0;
14518                       unresolved_reloc = FALSE;
14519                       break;
14520                     }
14521               }
14522           }
14523           break;
14524
14525         case R_PPC64_TOC:
14526           /* Relocation value is TOC base.  */
14527           relocation = TOCstart;
14528           if (r_symndx == STN_UNDEF)
14529             relocation += htab->sec_info[input_section->id].toc_off;
14530           else if (unresolved_reloc)
14531             ;
14532           else if (sec != NULL && sec->id < htab->sec_info_arr_size)
14533             relocation += htab->sec_info[sec->id].toc_off;
14534           else
14535             unresolved_reloc = TRUE;
14536           goto dodyn;
14537
14538           /* TOC16 relocs.  We want the offset relative to the TOC base,
14539              which is the address of the start of the TOC plus 0x8000.
14540              The TOC consists of sections .got, .toc, .tocbss, and .plt,
14541              in this order.  */
14542         case R_PPC64_TOC16:
14543         case R_PPC64_TOC16_LO:
14544         case R_PPC64_TOC16_HI:
14545         case R_PPC64_TOC16_DS:
14546         case R_PPC64_TOC16_LO_DS:
14547         case R_PPC64_TOC16_HA:
14548           addend -= TOCstart + htab->sec_info[input_section->id].toc_off;
14549           break;
14550
14551           /* Relocate against the beginning of the section.  */
14552         case R_PPC64_SECTOFF:
14553         case R_PPC64_SECTOFF_LO:
14554         case R_PPC64_SECTOFF_HI:
14555         case R_PPC64_SECTOFF_DS:
14556         case R_PPC64_SECTOFF_LO_DS:
14557         case R_PPC64_SECTOFF_HA:
14558           if (sec != NULL)
14559             addend -= sec->output_section->vma;
14560           break;
14561
14562         case R_PPC64_REL16:
14563         case R_PPC64_REL16_LO:
14564         case R_PPC64_REL16_HI:
14565         case R_PPC64_REL16_HA:
14566         case R_PPC64_REL16DX_HA:
14567           break;
14568
14569         case R_PPC64_REL14:
14570         case R_PPC64_REL14_BRNTAKEN:
14571         case R_PPC64_REL14_BRTAKEN:
14572         case R_PPC64_REL24:
14573           break;
14574
14575         case R_PPC64_TPREL16:
14576         case R_PPC64_TPREL16_LO:
14577         case R_PPC64_TPREL16_HI:
14578         case R_PPC64_TPREL16_HA:
14579         case R_PPC64_TPREL16_DS:
14580         case R_PPC64_TPREL16_LO_DS:
14581         case R_PPC64_TPREL16_HIGH:
14582         case R_PPC64_TPREL16_HIGHA:
14583         case R_PPC64_TPREL16_HIGHER:
14584         case R_PPC64_TPREL16_HIGHERA:
14585         case R_PPC64_TPREL16_HIGHEST:
14586         case R_PPC64_TPREL16_HIGHESTA:
14587           if (h != NULL
14588               && h->elf.root.type == bfd_link_hash_undefweak
14589               && h->elf.dynindx == -1)
14590             {
14591               /* Make this relocation against an undefined weak symbol
14592                  resolve to zero.  This is really just a tweak, since
14593                  code using weak externs ought to check that they are
14594                  defined before using them.  */
14595               bfd_byte *p = contents + rel->r_offset - d_offset;
14596
14597               insn = bfd_get_32 (output_bfd, p);
14598               insn = _bfd_elf_ppc_at_tprel_transform (insn, 13);
14599               if (insn != 0)
14600                 bfd_put_32 (output_bfd, insn, p);
14601               break;
14602             }
14603           if (htab->elf.tls_sec != NULL)
14604             addend -= htab->elf.tls_sec->vma + TP_OFFSET;
14605           if (bfd_link_pic (info))
14606             /* The TPREL16 relocs shouldn't really be used in shared
14607                libs as they will result in DT_TEXTREL being set, but
14608                support them anyway.  */
14609             goto dodyn;
14610           break;
14611
14612         case R_PPC64_DTPREL16:
14613         case R_PPC64_DTPREL16_LO:
14614         case R_PPC64_DTPREL16_HI:
14615         case R_PPC64_DTPREL16_HA:
14616         case R_PPC64_DTPREL16_DS:
14617         case R_PPC64_DTPREL16_LO_DS:
14618         case R_PPC64_DTPREL16_HIGH:
14619         case R_PPC64_DTPREL16_HIGHA:
14620         case R_PPC64_DTPREL16_HIGHER:
14621         case R_PPC64_DTPREL16_HIGHERA:
14622         case R_PPC64_DTPREL16_HIGHEST:
14623         case R_PPC64_DTPREL16_HIGHESTA:
14624           if (htab->elf.tls_sec != NULL)
14625             addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
14626           break;
14627
14628         case R_PPC64_ADDR64_LOCAL:
14629           addend += PPC64_LOCAL_ENTRY_OFFSET (h != NULL
14630                                               ? h->elf.other
14631                                               : sym->st_other);
14632           break;
14633
14634         case R_PPC64_DTPMOD64:
14635           relocation = 1;
14636           addend = 0;
14637           goto dodyn;
14638
14639         case R_PPC64_TPREL64:
14640           if (htab->elf.tls_sec != NULL)
14641             addend -= htab->elf.tls_sec->vma + TP_OFFSET;
14642           goto dodyn;
14643
14644         case R_PPC64_DTPREL64:
14645           if (htab->elf.tls_sec != NULL)
14646             addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
14647           /* Fall thru */
14648
14649           /* Relocations that may need to be propagated if this is a
14650              dynamic object.  */
14651         case R_PPC64_REL30:
14652         case R_PPC64_REL32:
14653         case R_PPC64_REL64:
14654         case R_PPC64_ADDR14:
14655         case R_PPC64_ADDR14_BRNTAKEN:
14656         case R_PPC64_ADDR14_BRTAKEN:
14657         case R_PPC64_ADDR16:
14658         case R_PPC64_ADDR16_DS:
14659         case R_PPC64_ADDR16_HA:
14660         case R_PPC64_ADDR16_HI:
14661         case R_PPC64_ADDR16_HIGH:
14662         case R_PPC64_ADDR16_HIGHA:
14663         case R_PPC64_ADDR16_HIGHER:
14664         case R_PPC64_ADDR16_HIGHERA:
14665         case R_PPC64_ADDR16_HIGHEST:
14666         case R_PPC64_ADDR16_HIGHESTA:
14667         case R_PPC64_ADDR16_LO:
14668         case R_PPC64_ADDR16_LO_DS:
14669         case R_PPC64_ADDR24:
14670         case R_PPC64_ADDR32:
14671         case R_PPC64_ADDR64:
14672         case R_PPC64_UADDR16:
14673         case R_PPC64_UADDR32:
14674         case R_PPC64_UADDR64:
14675         dodyn:
14676           if ((input_section->flags & SEC_ALLOC) == 0)
14677             break;
14678
14679           if (NO_OPD_RELOCS && is_opd)
14680             break;
14681
14682           if ((bfd_link_pic (info)
14683                && (h == NULL
14684                    || ELF_ST_VISIBILITY (h->elf.other) == STV_DEFAULT
14685                    || h->elf.root.type != bfd_link_hash_undefweak)
14686                && (must_be_dyn_reloc (info, r_type)
14687                    || !SYMBOL_CALLS_LOCAL (info, &h->elf)))
14688               || (ELIMINATE_COPY_RELOCS
14689                   && !bfd_link_pic (info)
14690                   && h != NULL
14691                   && h->elf.dynindx != -1
14692                   && !h->elf.non_got_ref
14693                   && !h->elf.def_regular)
14694               || (!bfd_link_pic (info)
14695                   && (h != NULL
14696                       ? h->elf.type == STT_GNU_IFUNC
14697                       : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)))
14698             {
14699               bfd_boolean skip, relocate;
14700               asection *sreloc;
14701               bfd_vma out_off;
14702
14703               /* When generating a dynamic object, these relocations
14704                  are copied into the output file to be resolved at run
14705                  time.  */
14706
14707               skip = FALSE;
14708               relocate = FALSE;
14709
14710               out_off = _bfd_elf_section_offset (output_bfd, info,
14711                                                  input_section, rel->r_offset);
14712               if (out_off == (bfd_vma) -1)
14713                 skip = TRUE;
14714               else if (out_off == (bfd_vma) -2)
14715                 skip = TRUE, relocate = TRUE;
14716               out_off += (input_section->output_section->vma
14717                           + input_section->output_offset);
14718               outrel.r_offset = out_off;
14719               outrel.r_addend = rel->r_addend;
14720
14721               /* Optimize unaligned reloc use.  */
14722               if ((r_type == R_PPC64_ADDR64 && (out_off & 7) != 0)
14723                   || (r_type == R_PPC64_UADDR64 && (out_off & 7) == 0))
14724                 r_type ^= R_PPC64_ADDR64 ^ R_PPC64_UADDR64;
14725               else if ((r_type == R_PPC64_ADDR32 && (out_off & 3) != 0)
14726                        || (r_type == R_PPC64_UADDR32 && (out_off & 3) == 0))
14727                 r_type ^= R_PPC64_ADDR32 ^ R_PPC64_UADDR32;
14728               else if ((r_type == R_PPC64_ADDR16 && (out_off & 1) != 0)
14729                        || (r_type == R_PPC64_UADDR16 && (out_off & 1) == 0))
14730                 r_type ^= R_PPC64_ADDR16 ^ R_PPC64_UADDR16;
14731
14732               if (skip)
14733                 memset (&outrel, 0, sizeof outrel);
14734               else if (!SYMBOL_REFERENCES_LOCAL (info, &h->elf)
14735                        && !is_opd
14736                        && r_type != R_PPC64_TOC)
14737                 {
14738                   BFD_ASSERT (h->elf.dynindx != -1);
14739                   outrel.r_info = ELF64_R_INFO (h->elf.dynindx, r_type);
14740                 }
14741               else
14742                 {
14743                   /* This symbol is local, or marked to become local,
14744                      or this is an opd section reloc which must point
14745                      at a local function.  */
14746                   outrel.r_addend += relocation;
14747                   if (r_type == R_PPC64_ADDR64 || r_type == R_PPC64_TOC)
14748                     {
14749                       if (is_opd && h != NULL)
14750                         {
14751                           /* Lie about opd entries.  This case occurs
14752                              when building shared libraries and we
14753                              reference a function in another shared
14754                              lib.  The same thing happens for a weak
14755                              definition in an application that's
14756                              overridden by a strong definition in a
14757                              shared lib.  (I believe this is a generic
14758                              bug in binutils handling of weak syms.)
14759                              In these cases we won't use the opd
14760                              entry in this lib.  */
14761                           unresolved_reloc = FALSE;
14762                         }
14763                       if (!is_opd
14764                           && r_type == R_PPC64_ADDR64
14765                           && (h != NULL
14766                               ? h->elf.type == STT_GNU_IFUNC
14767                               : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC))
14768                         outrel.r_info = ELF64_R_INFO (0, R_PPC64_IRELATIVE);
14769                       else
14770                         {
14771                           outrel.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
14772
14773                           /* We need to relocate .opd contents for ld.so.
14774                              Prelink also wants simple and consistent rules
14775                              for relocs.  This make all RELATIVE relocs have
14776                              *r_offset equal to r_addend.  */
14777                           relocate = TRUE;
14778                         }
14779                     }
14780                   else
14781                     {
14782                       long indx = 0;
14783
14784                       if (h != NULL
14785                           ? h->elf.type == STT_GNU_IFUNC
14786                           : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
14787                         {
14788                           info->callbacks->einfo
14789                             (_("%P: %H: %s for indirect "
14790                                "function `%T' unsupported\n"),
14791                              input_bfd, input_section, rel->r_offset,
14792                              ppc64_elf_howto_table[r_type]->name,
14793                              sym_name);
14794                           ret = FALSE;
14795                         }
14796                       else if (r_symndx == STN_UNDEF || bfd_is_abs_section (sec))
14797                         ;
14798                       else if (sec == NULL || sec->owner == NULL)
14799                         {
14800                           bfd_set_error (bfd_error_bad_value);
14801                           return FALSE;
14802                         }
14803                       else
14804                         {
14805                           asection *osec;
14806
14807                           osec = sec->output_section;
14808                           indx = elf_section_data (osec)->dynindx;
14809
14810                           if (indx == 0)
14811                             {
14812                               if ((osec->flags & SEC_READONLY) == 0
14813                                   && htab->elf.data_index_section != NULL)
14814                                 osec = htab->elf.data_index_section;
14815                               else
14816                                 osec = htab->elf.text_index_section;
14817                               indx = elf_section_data (osec)->dynindx;
14818                             }
14819                           BFD_ASSERT (indx != 0);
14820
14821                           /* We are turning this relocation into one
14822                              against a section symbol, so subtract out
14823                              the output section's address but not the
14824                              offset of the input section in the output
14825                              section.  */
14826                           outrel.r_addend -= osec->vma;
14827                         }
14828
14829                       outrel.r_info = ELF64_R_INFO (indx, r_type);
14830                     }
14831                 }
14832
14833               sreloc = elf_section_data (input_section)->sreloc;
14834               if (h != NULL
14835                   ? h->elf.type == STT_GNU_IFUNC
14836                   : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
14837                 sreloc = htab->elf.irelplt;
14838               if (sreloc == NULL)
14839                 abort ();
14840
14841               if (sreloc->reloc_count * sizeof (Elf64_External_Rela)
14842                   >= sreloc->size)
14843                 abort ();
14844               loc = sreloc->contents;
14845               loc += sreloc->reloc_count++ * sizeof (Elf64_External_Rela);
14846               bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc);
14847
14848               /* If this reloc is against an external symbol, it will
14849                  be computed at runtime, so there's no need to do
14850                  anything now.  However, for the sake of prelink ensure
14851                  that the section contents are a known value.  */
14852               if (! relocate)
14853                 {
14854                   unresolved_reloc = FALSE;
14855                   /* The value chosen here is quite arbitrary as ld.so
14856                      ignores section contents except for the special
14857                      case of .opd where the contents might be accessed
14858                      before relocation.  Choose zero, as that won't
14859                      cause reloc overflow.  */
14860                   relocation = 0;
14861                   addend = 0;
14862                   /* Use *r_offset == r_addend for R_PPC64_ADDR64 relocs
14863                      to improve backward compatibility with older
14864                      versions of ld.  */
14865                   if (r_type == R_PPC64_ADDR64)
14866                     addend = outrel.r_addend;
14867                   /* Adjust pc_relative relocs to have zero in *r_offset.  */
14868                   else if (ppc64_elf_howto_table[r_type]->pc_relative)
14869                     addend = (input_section->output_section->vma
14870                               + input_section->output_offset
14871                               + rel->r_offset);
14872                 }
14873             }
14874           break;
14875
14876         case R_PPC64_COPY:
14877         case R_PPC64_GLOB_DAT:
14878         case R_PPC64_JMP_SLOT:
14879         case R_PPC64_JMP_IREL:
14880         case R_PPC64_RELATIVE:
14881           /* We shouldn't ever see these dynamic relocs in relocatable
14882              files.  */
14883           /* Fall through.  */
14884
14885         case R_PPC64_PLTGOT16:
14886         case R_PPC64_PLTGOT16_DS:
14887         case R_PPC64_PLTGOT16_HA:
14888         case R_PPC64_PLTGOT16_HI:
14889         case R_PPC64_PLTGOT16_LO:
14890         case R_PPC64_PLTGOT16_LO_DS:
14891         case R_PPC64_PLTREL32:
14892         case R_PPC64_PLTREL64:
14893           /* These ones haven't been implemented yet.  */
14894
14895           info->callbacks->einfo
14896             (_("%P: %B: %s is not supported for `%T'\n"),
14897              input_bfd,
14898              ppc64_elf_howto_table[r_type]->name, sym_name);
14899
14900           bfd_set_error (bfd_error_invalid_operation);
14901           ret = FALSE;
14902           goto copy_reloc;
14903         }
14904
14905       /* Multi-instruction sequences that access the TOC can be
14906          optimized, eg. addis ra,r2,0; addi rb,ra,x;
14907          to             nop;           addi rb,r2,x;  */
14908       switch (r_type)
14909         {
14910         default:
14911           break;
14912
14913         case R_PPC64_GOT_TLSLD16_HI:
14914         case R_PPC64_GOT_TLSGD16_HI:
14915         case R_PPC64_GOT_TPREL16_HI:
14916         case R_PPC64_GOT_DTPREL16_HI:
14917         case R_PPC64_GOT16_HI:
14918         case R_PPC64_TOC16_HI:
14919           /* These relocs would only be useful if building up an
14920              offset to later add to r2, perhaps in an indexed
14921              addressing mode instruction.  Don't try to optimize.
14922              Unfortunately, the possibility of someone building up an
14923              offset like this or even with the HA relocs, means that
14924              we need to check the high insn when optimizing the low
14925              insn.  */
14926           break;
14927
14928         case R_PPC64_GOT_TLSLD16_HA:
14929         case R_PPC64_GOT_TLSGD16_HA:
14930         case R_PPC64_GOT_TPREL16_HA:
14931         case R_PPC64_GOT_DTPREL16_HA:
14932         case R_PPC64_GOT16_HA:
14933         case R_PPC64_TOC16_HA:
14934           if (htab->do_toc_opt && relocation + addend + 0x8000 < 0x10000
14935               && !ppc64_elf_tdata (input_bfd)->unexpected_toc_insn)
14936             {
14937               bfd_byte *p = contents + (rel->r_offset & ~3);
14938               bfd_put_32 (input_bfd, NOP, p);
14939             }
14940           break;
14941
14942         case R_PPC64_GOT_TLSLD16_LO:
14943         case R_PPC64_GOT_TLSGD16_LO:
14944         case R_PPC64_GOT_TPREL16_LO_DS:
14945         case R_PPC64_GOT_DTPREL16_LO_DS:
14946         case R_PPC64_GOT16_LO:
14947         case R_PPC64_GOT16_LO_DS:
14948         case R_PPC64_TOC16_LO:
14949         case R_PPC64_TOC16_LO_DS:
14950           if (htab->do_toc_opt && relocation + addend + 0x8000 < 0x10000
14951               && !ppc64_elf_tdata (input_bfd)->unexpected_toc_insn)
14952             {
14953               bfd_byte *p = contents + (rel->r_offset & ~3);
14954               insn = bfd_get_32 (input_bfd, p);
14955               if ((insn & (0x3f << 26)) == 12u << 26 /* addic */)
14956                 {
14957                   /* Transform addic to addi when we change reg.  */
14958                   insn &= ~((0x3f << 26) | (0x1f << 16));
14959                   insn |= (14u << 26) | (2 << 16);
14960                 }
14961               else
14962                 {
14963                   insn &= ~(0x1f << 16);
14964                   insn |= 2 << 16;
14965                 }
14966               bfd_put_32 (input_bfd, insn, p);
14967             }
14968           break;
14969         }
14970
14971       /* Do any further special processing.  */
14972       howto = ppc64_elf_howto_table[(int) r_type];
14973       switch (r_type)
14974         {
14975         default:
14976           break;
14977
14978         case R_PPC64_REL16_HA:
14979         case R_PPC64_REL16DX_HA:
14980         case R_PPC64_ADDR16_HA:
14981         case R_PPC64_ADDR16_HIGHA:
14982         case R_PPC64_ADDR16_HIGHERA:
14983         case R_PPC64_ADDR16_HIGHESTA:
14984         case R_PPC64_TOC16_HA:
14985         case R_PPC64_SECTOFF_HA:
14986         case R_PPC64_TPREL16_HA:
14987         case R_PPC64_TPREL16_HIGHA:
14988         case R_PPC64_TPREL16_HIGHERA:
14989         case R_PPC64_TPREL16_HIGHESTA:
14990         case R_PPC64_DTPREL16_HA:
14991         case R_PPC64_DTPREL16_HIGHA:
14992         case R_PPC64_DTPREL16_HIGHERA:
14993         case R_PPC64_DTPREL16_HIGHESTA:
14994           /* It's just possible that this symbol is a weak symbol
14995              that's not actually defined anywhere. In that case,
14996              'sec' would be NULL, and we should leave the symbol
14997              alone (it will be set to zero elsewhere in the link).  */
14998           if (sec == NULL)
14999             break;
15000           /* Fall thru */
15001
15002         case R_PPC64_GOT16_HA:
15003         case R_PPC64_PLTGOT16_HA:
15004         case R_PPC64_PLT16_HA:
15005         case R_PPC64_GOT_TLSGD16_HA:
15006         case R_PPC64_GOT_TLSLD16_HA:
15007         case R_PPC64_GOT_TPREL16_HA:
15008         case R_PPC64_GOT_DTPREL16_HA:
15009           /* Add 0x10000 if sign bit in 0:15 is set.
15010              Bits 0:15 are not used.  */
15011           addend += 0x8000;
15012           break;
15013
15014         case R_PPC64_ADDR16_DS:
15015         case R_PPC64_ADDR16_LO_DS:
15016         case R_PPC64_GOT16_DS:
15017         case R_PPC64_GOT16_LO_DS:
15018         case R_PPC64_PLT16_LO_DS:
15019         case R_PPC64_SECTOFF_DS:
15020         case R_PPC64_SECTOFF_LO_DS:
15021         case R_PPC64_TOC16_DS:
15022         case R_PPC64_TOC16_LO_DS:
15023         case R_PPC64_PLTGOT16_DS:
15024         case R_PPC64_PLTGOT16_LO_DS:
15025         case R_PPC64_GOT_TPREL16_DS:
15026         case R_PPC64_GOT_TPREL16_LO_DS:
15027         case R_PPC64_GOT_DTPREL16_DS:
15028         case R_PPC64_GOT_DTPREL16_LO_DS:
15029         case R_PPC64_TPREL16_DS:
15030         case R_PPC64_TPREL16_LO_DS:
15031         case R_PPC64_DTPREL16_DS:
15032         case R_PPC64_DTPREL16_LO_DS:
15033           insn = bfd_get_32 (input_bfd, contents + (rel->r_offset & ~3));
15034           mask = 3;
15035           /* If this reloc is against an lq, lxv, or stxv insn, then
15036              the value must be a multiple of 16.  This is somewhat of
15037              a hack, but the "correct" way to do this by defining _DQ
15038              forms of all the _DS relocs bloats all reloc switches in
15039              this file.  It doesn't make much sense to use these
15040              relocs in data, so testing the insn should be safe.  */
15041           if ((insn & (0x3f << 26)) == (56u << 26)
15042               || ((insn & (0x3f << 26)) == (61u << 26) && (insn & 3) == 1))
15043             mask = 15;
15044           relocation += addend;
15045           addend = insn & (mask ^ 3);
15046           if ((relocation & mask) != 0)
15047             {
15048               relocation ^= relocation & mask;
15049               info->callbacks->einfo
15050                 (_("%P: %H: error: %s not a multiple of %u\n"),
15051                  input_bfd, input_section, rel->r_offset,
15052                  howto->name,
15053                  mask + 1);
15054               bfd_set_error (bfd_error_bad_value);
15055               ret = FALSE;
15056               goto copy_reloc;
15057             }
15058           break;
15059         }
15060
15061       /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
15062          because such sections are not SEC_ALLOC and thus ld.so will
15063          not process them.  */
15064       if (unresolved_reloc
15065           && !((input_section->flags & SEC_DEBUGGING) != 0
15066                && h->elf.def_dynamic)
15067           && _bfd_elf_section_offset (output_bfd, info, input_section,
15068                                       rel->r_offset) != (bfd_vma) -1)
15069         {
15070           info->callbacks->einfo
15071             (_("%P: %H: unresolvable %s against `%T'\n"),
15072              input_bfd, input_section, rel->r_offset,
15073              howto->name,
15074              h->elf.root.root.string);
15075           ret = FALSE;
15076         }
15077
15078       /* 16-bit fields in insns mostly have signed values, but a
15079          few insns have 16-bit unsigned values.  Really, we should
15080          have different reloc types.  */
15081       if (howto->complain_on_overflow != complain_overflow_dont
15082           && howto->dst_mask == 0xffff
15083           && (input_section->flags & SEC_CODE) != 0)
15084         {
15085           enum complain_overflow complain = complain_overflow_signed;
15086
15087           insn = bfd_get_32 (input_bfd, contents + (rel->r_offset & ~3));
15088           if ((insn & (0x3f << 26)) == 10u << 26 /* cmpli */)
15089             complain = complain_overflow_bitfield;
15090           else if (howto->rightshift == 0
15091                    ? ((insn & (0x3f << 26)) == 28u << 26 /* andi */
15092                       || (insn & (0x3f << 26)) == 24u << 26 /* ori */
15093                       || (insn & (0x3f << 26)) == 26u << 26 /* xori */)
15094                    : ((insn & (0x3f << 26)) == 29u << 26 /* andis */
15095                       || (insn & (0x3f << 26)) == 25u << 26 /* oris */
15096                       || (insn & (0x3f << 26)) == 27u << 26 /* xoris */))
15097             complain = complain_overflow_unsigned;
15098           if (howto->complain_on_overflow != complain)
15099             {
15100               alt_howto = *howto;
15101               alt_howto.complain_on_overflow = complain;
15102               howto = &alt_howto;
15103             }
15104         }
15105
15106       if (r_type == R_PPC64_REL16DX_HA)
15107         {
15108           /* Split field reloc isn't handled by _bfd_final_link_relocate.  */
15109           if (rel->r_offset + 4 > input_section->size)
15110             r = bfd_reloc_outofrange;
15111           else
15112             {
15113               relocation += addend;
15114               relocation -= (rel->r_offset
15115                              + input_section->output_offset
15116                              + input_section->output_section->vma);
15117               relocation = (bfd_signed_vma) relocation >> 16;
15118               insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
15119               insn &= ~0x1fffc1;
15120               insn |= (relocation & 0xffc1) | ((relocation & 0x3e) << 15);
15121               bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
15122               r = bfd_reloc_ok;
15123               if (relocation + 0x8000 > 0xffff)
15124                 r = bfd_reloc_overflow;
15125             }
15126         }
15127       else
15128         r = _bfd_final_link_relocate (howto, input_bfd, input_section, contents,
15129                                       rel->r_offset, relocation, addend);
15130
15131       if (r != bfd_reloc_ok)
15132         {
15133           char *more_info = NULL;
15134           const char *reloc_name = howto->name;
15135
15136           if (reloc_dest != DEST_NORMAL)
15137             {
15138               more_info = bfd_malloc (strlen (reloc_name) + 8);
15139               if (more_info != NULL)
15140                 {
15141                   strcpy (more_info, reloc_name);
15142                   strcat (more_info, (reloc_dest == DEST_OPD
15143                                       ? " (OPD)" : " (stub)"));
15144                   reloc_name = more_info;
15145                 }
15146             }
15147
15148           if (r == bfd_reloc_overflow)
15149             {
15150               /* On code like "if (foo) foo();" don't report overflow
15151                  on a branch to zero when foo is undefined.  */
15152               if (!warned
15153                   && (reloc_dest == DEST_STUB
15154                       || !(h != NULL
15155                            && (h->elf.root.type == bfd_link_hash_undefweak
15156                                || h->elf.root.type == bfd_link_hash_undefined)
15157                            && is_branch_reloc (r_type))))
15158                 info->callbacks->reloc_overflow (info, &h->elf.root,
15159                                                  sym_name, reloc_name,
15160                                                  orig_rel.r_addend,
15161                                                  input_bfd, input_section,
15162                                                  rel->r_offset);
15163             }
15164           else
15165             {
15166               info->callbacks->einfo
15167                 (_("%P: %H: %s against `%T': error %d\n"),
15168                  input_bfd, input_section, rel->r_offset,
15169                  reloc_name, sym_name, (int) r);
15170               ret = FALSE;
15171             }
15172           if (more_info != NULL)
15173             free (more_info);
15174         }
15175     copy_reloc:
15176       if (wrel != rel)
15177         *wrel = *rel;
15178     }
15179
15180   if (wrel != rel)
15181     {
15182       Elf_Internal_Shdr *rel_hdr;
15183       size_t deleted = rel - wrel;
15184
15185       rel_hdr = _bfd_elf_single_rel_hdr (input_section->output_section);
15186       rel_hdr->sh_size -= rel_hdr->sh_entsize * deleted;
15187       if (rel_hdr->sh_size == 0)
15188         {
15189           /* It is too late to remove an empty reloc section.  Leave
15190              one NONE reloc.
15191              ??? What is wrong with an empty section???  */
15192           rel_hdr->sh_size = rel_hdr->sh_entsize;
15193           deleted -= 1;
15194         }
15195       rel_hdr = _bfd_elf_single_rel_hdr (input_section);
15196       rel_hdr->sh_size -= rel_hdr->sh_entsize * deleted;
15197       input_section->reloc_count -= deleted;
15198     }
15199
15200   /* If we're emitting relocations, then shortly after this function
15201      returns, reloc offsets and addends for this section will be
15202      adjusted.  Worse, reloc symbol indices will be for the output
15203      file rather than the input.  Save a copy of the relocs for
15204      opd_entry_value.  */
15205   if (is_opd && (info->emitrelocations || bfd_link_relocatable (info)))
15206     {
15207       bfd_size_type amt;
15208       amt = input_section->reloc_count * sizeof (Elf_Internal_Rela);
15209       rel = bfd_alloc (input_bfd, amt);
15210       BFD_ASSERT (ppc64_elf_tdata (input_bfd)->opd.relocs == NULL);
15211       ppc64_elf_tdata (input_bfd)->opd.relocs = rel;
15212       if (rel == NULL)
15213         return FALSE;
15214       memcpy (rel, relocs, amt);
15215     }
15216   return ret;
15217 }
15218
15219 /* Adjust the value of any local symbols in opd sections.  */
15220
15221 static int
15222 ppc64_elf_output_symbol_hook (struct bfd_link_info *info,
15223                               const char *name ATTRIBUTE_UNUSED,
15224                               Elf_Internal_Sym *elfsym,
15225                               asection *input_sec,
15226                               struct elf_link_hash_entry *h)
15227 {
15228   struct _opd_sec_data *opd;
15229   long adjust;
15230   bfd_vma value;
15231
15232   if (h != NULL)
15233     return 1;
15234
15235   opd = get_opd_info (input_sec);
15236   if (opd == NULL || opd->adjust == NULL)
15237     return 1;
15238
15239   value = elfsym->st_value - input_sec->output_offset;
15240   if (!bfd_link_relocatable (info))
15241     value -= input_sec->output_section->vma;
15242
15243   adjust = opd->adjust[OPD_NDX (value)];
15244   if (adjust == -1)
15245     return 2;
15246
15247   elfsym->st_value += adjust;
15248   return 1;
15249 }
15250
15251 /* Finish up dynamic symbol handling.  We set the contents of various
15252    dynamic sections here.  */
15253
15254 static bfd_boolean
15255 ppc64_elf_finish_dynamic_symbol (bfd *output_bfd,
15256                                  struct bfd_link_info *info,
15257                                  struct elf_link_hash_entry *h,
15258                                  Elf_Internal_Sym *sym ATTRIBUTE_UNUSED)
15259 {
15260   struct ppc_link_hash_table *htab;
15261   struct plt_entry *ent;
15262   Elf_Internal_Rela rela;
15263   bfd_byte *loc;
15264
15265   htab = ppc_hash_table (info);
15266   if (htab == NULL)
15267     return FALSE;
15268
15269   for (ent = h->plt.plist; ent != NULL; ent = ent->next)
15270     if (ent->plt.offset != (bfd_vma) -1)
15271       {
15272         /* This symbol has an entry in the procedure linkage
15273            table.  Set it up.  */
15274         if (!htab->elf.dynamic_sections_created
15275             || h->dynindx == -1)
15276           {
15277             BFD_ASSERT (h->type == STT_GNU_IFUNC
15278                         && h->def_regular
15279                         && (h->root.type == bfd_link_hash_defined
15280                             || h->root.type == bfd_link_hash_defweak));
15281             rela.r_offset = (htab->elf.iplt->output_section->vma
15282                              + htab->elf.iplt->output_offset
15283                              + ent->plt.offset);
15284             if (htab->opd_abi)
15285               rela.r_info = ELF64_R_INFO (0, R_PPC64_JMP_IREL);
15286             else
15287               rela.r_info = ELF64_R_INFO (0, R_PPC64_IRELATIVE);
15288             rela.r_addend = (h->root.u.def.value
15289                              + h->root.u.def.section->output_offset
15290                              + h->root.u.def.section->output_section->vma
15291                              + ent->addend);
15292             loc = (htab->elf.irelplt->contents
15293                    + (htab->elf.irelplt->reloc_count++
15294                       * sizeof (Elf64_External_Rela)));
15295           }
15296         else
15297           {
15298             rela.r_offset = (htab->elf.splt->output_section->vma
15299                              + htab->elf.splt->output_offset
15300                              + ent->plt.offset);
15301             rela.r_info = ELF64_R_INFO (h->dynindx, R_PPC64_JMP_SLOT);
15302             rela.r_addend = ent->addend;
15303             loc = (htab->elf.srelplt->contents
15304                    + ((ent->plt.offset - PLT_INITIAL_ENTRY_SIZE (htab))
15305                       / PLT_ENTRY_SIZE (htab) * sizeof (Elf64_External_Rela)));
15306           }
15307         bfd_elf64_swap_reloca_out (output_bfd, &rela, loc);
15308
15309         if (!htab->opd_abi)
15310           {
15311             if (!h->def_regular)
15312               {
15313                 /* Mark the symbol as undefined, rather than as
15314                    defined in glink.  Leave the value if there were
15315                    any relocations where pointer equality matters
15316                    (this is a clue for the dynamic linker, to make
15317                    function pointer comparisons work between an
15318                    application and shared library), otherwise set it
15319                    to zero.  */
15320                 sym->st_shndx = SHN_UNDEF;
15321                 if (!h->pointer_equality_needed)
15322                   sym->st_value = 0;
15323                 else if (!h->ref_regular_nonweak)
15324                   {
15325                     /* This breaks function pointer comparisons, but
15326                        that is better than breaking tests for a NULL
15327                        function pointer.  */
15328                     sym->st_value = 0;
15329                   }
15330               }
15331           }
15332       }
15333
15334   if (h->needs_copy)
15335     {
15336       /* This symbol needs a copy reloc.  Set it up.  */
15337
15338       if (h->dynindx == -1
15339           || (h->root.type != bfd_link_hash_defined
15340               && h->root.type != bfd_link_hash_defweak)
15341           || htab->relbss == NULL)
15342         abort ();
15343
15344       rela.r_offset = (h->root.u.def.value
15345                        + h->root.u.def.section->output_section->vma
15346                        + h->root.u.def.section->output_offset);
15347       rela.r_info = ELF64_R_INFO (h->dynindx, R_PPC64_COPY);
15348       rela.r_addend = 0;
15349       loc = htab->relbss->contents;
15350       loc += htab->relbss->reloc_count++ * sizeof (Elf64_External_Rela);
15351       bfd_elf64_swap_reloca_out (output_bfd, &rela, loc);
15352     }
15353
15354   return TRUE;
15355 }
15356
15357 /* Used to decide how to sort relocs in an optimal manner for the
15358    dynamic linker, before writing them out.  */
15359
15360 static enum elf_reloc_type_class
15361 ppc64_elf_reloc_type_class (const struct bfd_link_info *info,
15362                             const asection *rel_sec,
15363                             const Elf_Internal_Rela *rela)
15364 {
15365   enum elf_ppc64_reloc_type r_type;
15366   struct ppc_link_hash_table *htab = ppc_hash_table (info);
15367
15368   if (rel_sec == htab->elf.irelplt)
15369     return reloc_class_ifunc;
15370
15371   r_type = ELF64_R_TYPE (rela->r_info);
15372   switch (r_type)
15373     {
15374     case R_PPC64_RELATIVE:
15375       return reloc_class_relative;
15376     case R_PPC64_JMP_SLOT:
15377       return reloc_class_plt;
15378     case R_PPC64_COPY:
15379       return reloc_class_copy;
15380     default:
15381       return reloc_class_normal;
15382     }
15383 }
15384
15385 /* Finish up the dynamic sections.  */
15386
15387 static bfd_boolean
15388 ppc64_elf_finish_dynamic_sections (bfd *output_bfd,
15389                                    struct bfd_link_info *info)
15390 {
15391   struct ppc_link_hash_table *htab;
15392   bfd *dynobj;
15393   asection *sdyn;
15394
15395   htab = ppc_hash_table (info);
15396   if (htab == NULL)
15397     return FALSE;
15398
15399   dynobj = htab->elf.dynobj;
15400   sdyn = bfd_get_linker_section (dynobj, ".dynamic");
15401
15402   if (htab->elf.dynamic_sections_created)
15403     {
15404       Elf64_External_Dyn *dyncon, *dynconend;
15405
15406       if (sdyn == NULL || htab->elf.sgot == NULL)
15407         abort ();
15408
15409       dyncon = (Elf64_External_Dyn *) sdyn->contents;
15410       dynconend = (Elf64_External_Dyn *) (sdyn->contents + sdyn->size);
15411       for (; dyncon < dynconend; dyncon++)
15412         {
15413           Elf_Internal_Dyn dyn;
15414           asection *s;
15415
15416           bfd_elf64_swap_dyn_in (dynobj, dyncon, &dyn);
15417
15418           switch (dyn.d_tag)
15419             {
15420             default:
15421               continue;
15422
15423             case DT_PPC64_GLINK:
15424               s = htab->glink;
15425               dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
15426               /* We stupidly defined DT_PPC64_GLINK to be the start
15427                  of glink rather than the first entry point, which is
15428                  what ld.so needs, and now have a bigger stub to
15429                  support automatic multiple TOCs.  */
15430               dyn.d_un.d_ptr += GLINK_CALL_STUB_SIZE - 8 * 4;
15431               break;
15432
15433             case DT_PPC64_OPD:
15434               s = bfd_get_section_by_name (output_bfd, ".opd");
15435               if (s == NULL)
15436                 continue;
15437               dyn.d_un.d_ptr = s->vma;
15438               break;
15439
15440             case DT_PPC64_OPT:
15441               if (htab->do_multi_toc && htab->multi_toc_needed)
15442                 dyn.d_un.d_val |= PPC64_OPT_MULTI_TOC;
15443               break;
15444
15445             case DT_PPC64_OPDSZ:
15446               s = bfd_get_section_by_name (output_bfd, ".opd");
15447               if (s == NULL)
15448                 continue;
15449               dyn.d_un.d_val = s->size;
15450               break;
15451
15452             case DT_PLTGOT:
15453               s = htab->elf.splt;
15454               dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
15455               break;
15456
15457             case DT_JMPREL:
15458               s = htab->elf.srelplt;
15459               dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
15460               break;
15461
15462             case DT_PLTRELSZ:
15463               dyn.d_un.d_val = htab->elf.srelplt->size;
15464               break;
15465
15466             case DT_RELASZ:
15467               /* Don't count procedure linkage table relocs in the
15468                  overall reloc count.  */
15469               s = htab->elf.srelplt;
15470               if (s == NULL)
15471                 continue;
15472               dyn.d_un.d_val -= s->size;
15473               break;
15474
15475             case DT_RELA:
15476               /* We may not be using the standard ELF linker script.
15477                  If .rela.plt is the first .rela section, we adjust
15478                  DT_RELA to not include it.  */
15479               s = htab->elf.srelplt;
15480               if (s == NULL)
15481                 continue;
15482               if (dyn.d_un.d_ptr != s->output_section->vma + s->output_offset)
15483                 continue;
15484               dyn.d_un.d_ptr += s->size;
15485               break;
15486             }
15487
15488           bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
15489         }
15490     }
15491
15492   if (htab->elf.sgot != NULL && htab->elf.sgot->size != 0)
15493     {
15494       /* Fill in the first entry in the global offset table.
15495          We use it to hold the link-time TOCbase.  */
15496       bfd_put_64 (output_bfd,
15497                   elf_gp (output_bfd) + TOC_BASE_OFF,
15498                   htab->elf.sgot->contents);
15499
15500       /* Set .got entry size.  */
15501       elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize = 8;
15502     }
15503
15504   if (htab->elf.splt != NULL && htab->elf.splt->size != 0)
15505     {
15506       /* Set .plt entry size.  */
15507       elf_section_data (htab->elf.splt->output_section)->this_hdr.sh_entsize
15508         = PLT_ENTRY_SIZE (htab);
15509     }
15510
15511   /* brlt is SEC_LINKER_CREATED, so we need to write out relocs for
15512      brlt ourselves if emitrelocations.  */
15513   if (htab->brlt != NULL
15514       && htab->brlt->reloc_count != 0
15515       && !_bfd_elf_link_output_relocs (output_bfd,
15516                                        htab->brlt,
15517                                        elf_section_data (htab->brlt)->rela.hdr,
15518                                        elf_section_data (htab->brlt)->relocs,
15519                                        NULL))
15520     return FALSE;
15521
15522   if (htab->glink != NULL
15523       && htab->glink->reloc_count != 0
15524       && !_bfd_elf_link_output_relocs (output_bfd,
15525                                        htab->glink,
15526                                        elf_section_data (htab->glink)->rela.hdr,
15527                                        elf_section_data (htab->glink)->relocs,
15528                                        NULL))
15529     return FALSE;
15530
15531   if (htab->glink_eh_frame != NULL
15532       && htab->glink_eh_frame->size != 0)
15533     {
15534       bfd_vma val;
15535       bfd_byte *p;
15536       asection *stub_sec;
15537
15538       p = htab->glink_eh_frame->contents + sizeof (glink_eh_frame_cie);
15539       for (stub_sec = htab->params->stub_bfd->sections;
15540            stub_sec != NULL;
15541            stub_sec = stub_sec->next)
15542         if ((stub_sec->flags & SEC_LINKER_CREATED) == 0)
15543           {
15544             /* FDE length.  */
15545             p += 4;
15546             /* CIE pointer.  */
15547             p += 4;
15548             /* Offset to stub section.  */
15549             val = (stub_sec->output_section->vma
15550                    + stub_sec->output_offset);
15551             val -= (htab->glink_eh_frame->output_section->vma
15552                     + htab->glink_eh_frame->output_offset
15553                     + (p - htab->glink_eh_frame->contents));
15554             if (val + 0x80000000 > 0xffffffff)
15555               {
15556                 info->callbacks->einfo
15557                   (_("%P: %s offset too large for .eh_frame sdata4 encoding"),
15558                    stub_sec->name);
15559                 return FALSE;
15560               }
15561             bfd_put_32 (dynobj, val, p);
15562             p += 4;
15563             /* stub section size.  */
15564             p += 4;
15565             /* Augmentation.  */
15566             p += 1;
15567             /* Pad.  */
15568             p += 7;
15569           }
15570       if (htab->glink != NULL && htab->glink->size != 0)
15571         {
15572           /* FDE length.  */
15573           p += 4;
15574           /* CIE pointer.  */
15575           p += 4;
15576           /* Offset to .glink.  */
15577           val = (htab->glink->output_section->vma
15578                  + htab->glink->output_offset
15579                  + 8);
15580           val -= (htab->glink_eh_frame->output_section->vma
15581                   + htab->glink_eh_frame->output_offset
15582                   + (p - htab->glink_eh_frame->contents));
15583           if (val + 0x80000000 > 0xffffffff)
15584             {
15585               info->callbacks->einfo
15586                 (_("%P: %s offset too large for .eh_frame sdata4 encoding"),
15587                  htab->glink->name);
15588               return FALSE;
15589             }
15590           bfd_put_32 (dynobj, val, p);
15591           p += 4;
15592           /* .glink size.  */
15593           p += 4;
15594           /* Augmentation.  */
15595           p += 1;
15596           /* Ops.  */
15597           p += 7;
15598         }
15599
15600       if (htab->glink_eh_frame->sec_info_type == SEC_INFO_TYPE_EH_FRAME
15601           && !_bfd_elf_write_section_eh_frame (output_bfd, info,
15602                                                htab->glink_eh_frame,
15603                                                htab->glink_eh_frame->contents))
15604         return FALSE;
15605     }
15606
15607   /* We need to handle writing out multiple GOT sections ourselves,
15608      since we didn't add them to DYNOBJ.  We know dynobj is the first
15609      bfd.  */
15610   while ((dynobj = dynobj->link.next) != NULL)
15611     {
15612       asection *s;
15613
15614       if (!is_ppc64_elf (dynobj))
15615         continue;
15616
15617       s = ppc64_elf_tdata (dynobj)->got;
15618       if (s != NULL
15619           && s->size != 0
15620           && s->output_section != bfd_abs_section_ptr
15621           && !bfd_set_section_contents (output_bfd, s->output_section,
15622                                         s->contents, s->output_offset,
15623                                         s->size))
15624         return FALSE;
15625       s = ppc64_elf_tdata (dynobj)->relgot;
15626       if (s != NULL
15627           && s->size != 0
15628           && s->output_section != bfd_abs_section_ptr
15629           && !bfd_set_section_contents (output_bfd, s->output_section,
15630                                         s->contents, s->output_offset,
15631                                         s->size))
15632         return FALSE;
15633     }
15634
15635   return TRUE;
15636 }
15637
15638 #include "elf64-target.h"
15639
15640 /* FreeBSD support */
15641
15642 #undef  TARGET_LITTLE_SYM
15643 #undef  TARGET_LITTLE_NAME
15644
15645 #undef  TARGET_BIG_SYM
15646 #define TARGET_BIG_SYM  powerpc_elf64_fbsd_vec
15647 #undef  TARGET_BIG_NAME
15648 #define TARGET_BIG_NAME "elf64-powerpc-freebsd"
15649
15650 #undef  ELF_OSABI
15651 #define ELF_OSABI       ELFOSABI_FREEBSD
15652
15653 #undef  elf64_bed
15654 #define elf64_bed       elf64_powerpc_fbsd_bed
15655
15656 #include "elf64-target.h"
15657