PowerPC readonly_dynrelocs
[deliverable/binutils-gdb.git] / bfd / elf64-ppc.c
CommitLineData
5bd4f169 1/* PowerPC64-specific support for 64-bit ELF.
2571583a 2 Copyright (C) 1999-2017 Free Software Foundation, Inc.
5bd4f169
AM
3 Written by Linus Nordberg, Swox AB <info@swox.com>,
4 based on elf32-ppc.c by Ian Lance Taylor.
32ca9640 5 Largely rewritten by Alan Modra.
5bd4f169 6
ae9a127f 7 This file is part of BFD, the Binary File Descriptor library.
5bd4f169 8
ae9a127f
NC
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
cd123cb7 11 the Free Software Foundation; either version 3 of the License, or
ae9a127f 12 (at your option) any later version.
5bd4f169 13
ae9a127f
NC
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.
5bd4f169 18
4ce794b7
AM
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.,
3e110533 21 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
5bd4f169 22
cd123cb7 23
4ce794b7
AM
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 */
5bd4f169 27
3db64b00 28#include "sysdep.h"
183e98be 29#include <stdarg.h>
5bd4f169 30#include "bfd.h"
5bd4f169
AM
31#include "bfdlink.h"
32#include "libbfd.h"
33#include "elf-bfd.h"
04c9666a 34#include "elf/ppc64.h"
5d1634d7 35#include "elf64-ppc.h"
58d180e8 36#include "dwarf2.h"
5bd4f169 37
805fc799 38static bfd_reloc_status_type ppc64_elf_ha_reloc
4ce794b7 39 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
2441e016
AM
40static bfd_reloc_status_type ppc64_elf_branch_reloc
41 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
805fc799 42static bfd_reloc_status_type ppc64_elf_brtaken_reloc
4ce794b7 43 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
805fc799 44static bfd_reloc_status_type ppc64_elf_sectoff_reloc
4ce794b7 45 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
805fc799 46static bfd_reloc_status_type ppc64_elf_sectoff_ha_reloc
4ce794b7 47 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
805fc799 48static bfd_reloc_status_type ppc64_elf_toc_reloc
4ce794b7 49 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
805fc799 50static bfd_reloc_status_type ppc64_elf_toc_ha_reloc
4ce794b7 51 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
805fc799 52static bfd_reloc_status_type ppc64_elf_toc64_reloc
4ce794b7 53 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
805fc799 54static bfd_reloc_status_type ppc64_elf_unhandled_reloc
4ce794b7 55 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
2441e016 56static bfd_vma opd_entry_value
aef36ac1 57 (asection *, bfd_vma, asection **, bfd_vma *, bfd_boolean);
5bd4f169 58
6d00b590 59#define TARGET_LITTLE_SYM powerpc_elf64_le_vec
ad8e1ba5 60#define TARGET_LITTLE_NAME "elf64-powerpcle"
6d00b590 61#define TARGET_BIG_SYM powerpc_elf64_vec
ad8e1ba5
AM
62#define TARGET_BIG_NAME "elf64-powerpc"
63#define ELF_ARCH bfd_arch_powerpc
ae95ffa6 64#define ELF_TARGET_ID PPC64_ELF_DATA
ad8e1ba5
AM
65#define ELF_MACHINE_CODE EM_PPC64
66#define ELF_MAXPAGESIZE 0x10000
04c6a44c 67#define ELF_COMMONPAGESIZE 0x10000
ad8e1ba5
AM
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
ad8e1ba5 74#define elf_backend_got_header_size 8
5474d94f 75#define elf_backend_want_dynrelro 1
ad8e1ba5
AM
76#define elf_backend_can_gc_sections 1
77#define elf_backend_can_refcount 1
78#define elf_backend_rela_normal 1
64f52338 79#define elf_backend_dtrel_excludes_plt 1
6bfdb61b 80#define elf_backend_default_execstack 0
ad8e1ba5 81
e717da7e 82#define bfd_elf64_mkobject ppc64_elf_mkobject
ad8e1ba5 83#define bfd_elf64_bfd_reloc_type_lookup ppc64_elf_reloc_type_lookup
aa374f67 84#define bfd_elf64_bfd_reloc_name_lookup ppc64_elf_reloc_name_lookup
ee67d69a
AM
85#define bfd_elf64_bfd_merge_private_bfd_data ppc64_elf_merge_private_bfd_data
86#define bfd_elf64_bfd_print_private_bfd_data ppc64_elf_print_private_bfd_data
ad8e1ba5
AM
87#define bfd_elf64_new_section_hook ppc64_elf_new_section_hook
88#define bfd_elf64_bfd_link_hash_table_create ppc64_elf_link_hash_table_create
90e3cdf2 89#define bfd_elf64_get_synthetic_symtab ppc64_elf_get_synthetic_symtab
aa374f67 90#define bfd_elf64_bfd_link_just_syms ppc64_elf_link_just_syms
8c5b4e52 91#define bfd_elf64_bfd_gc_sections ppc64_elf_gc_sections
ad8e1ba5
AM
92
93#define elf_backend_object_p ppc64_elf_object_p
d37c89e5
AM
94#define elf_backend_grok_prstatus ppc64_elf_grok_prstatus
95#define elf_backend_grok_psinfo ppc64_elf_grok_psinfo
183e98be 96#define elf_backend_write_core_note ppc64_elf_write_core_note
9d19e4fd 97#define elf_backend_create_dynamic_sections _bfd_elf_create_dynamic_sections
ad8e1ba5 98#define elf_backend_copy_indirect_symbol ppc64_elf_copy_indirect_symbol
555cd476 99#define elf_backend_add_symbol_hook ppc64_elf_add_symbol_hook
f6c7c3e8 100#define elf_backend_check_directives ppc64_elf_before_check_relocs
e5034e59 101#define elf_backend_notice_as_needed ppc64_elf_notice_as_needed
8387904d 102#define elf_backend_archive_symbol_lookup ppc64_elf_archive_symbol_lookup
ad8e1ba5 103#define elf_backend_check_relocs ppc64_elf_check_relocs
c0e331c7 104#define elf_backend_relocs_compatible _bfd_elf_relocs_compatible
74f0fb50 105#define elf_backend_gc_keep ppc64_elf_gc_keep
64d03ab5 106#define elf_backend_gc_mark_dynamic_ref ppc64_elf_gc_mark_dynamic_ref
ad8e1ba5 107#define elf_backend_gc_mark_hook ppc64_elf_gc_mark_hook
ad8e1ba5
AM
108#define elf_backend_adjust_dynamic_symbol ppc64_elf_adjust_dynamic_symbol
109#define elf_backend_hide_symbol ppc64_elf_hide_symbol
9f296da3 110#define elf_backend_maybe_function_sym ppc64_elf_maybe_function_sym
ad8e1ba5
AM
111#define elf_backend_always_size_sections ppc64_elf_func_desc_adjust
112#define elf_backend_size_dynamic_sections ppc64_elf_size_dynamic_sections
a345bc8d 113#define elf_backend_hash_symbol ppc64_elf_hash_symbol
74541ad4 114#define elf_backend_init_index_section _bfd_elf_init_2_index_sections
60124e18 115#define elf_backend_action_discarded ppc64_elf_action_discarded
ad8e1ba5
AM
116#define elf_backend_relocate_section ppc64_elf_relocate_section
117#define elf_backend_finish_dynamic_symbol ppc64_elf_finish_dynamic_symbol
118#define elf_backend_reloc_type_class ppc64_elf_reloc_type_class
119#define elf_backend_finish_dynamic_sections ppc64_elf_finish_dynamic_sections
754021d0 120#define elf_backend_link_output_symbol_hook ppc64_elf_output_symbol_hook
29ef7005 121#define elf_backend_special_sections ppc64_elf_special_sections
6911b7dc 122#define elf_backend_merge_symbol_attribute ppc64_elf_merge_symbol_attribute
8c5b4e52 123#define elf_backend_merge_symbol ppc64_elf_merge_symbol
bce964aa 124#define elf_backend_get_reloc_section bfd_get_section_by_name
ad8e1ba5 125
5bd4f169
AM
126/* The name of the dynamic interpreter. This is put in the .interp
127 section. */
128#define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
129
130/* The size in bytes of an entry in the procedure linkage table. */
b9e5796b 131#define PLT_ENTRY_SIZE(htab) (htab->opd_abi ? 24 : 8)
5bd4f169
AM
132
133/* The initial size of the plt reserved for the dynamic linker. */
b9e5796b 134#define PLT_INITIAL_ENTRY_SIZE(htab) (htab->opd_abi ? 24 : 16)
5bd4f169 135
a078d95a
AM
136/* Offsets to some stack save slots. */
137#define STK_LR 16
138#define STK_TOC(htab) (htab->opd_abi ? 40 : 24)
eb8d7fda 139/* This one is dodgy. ELFv2 does not have a linker word, so use the
a078d95a
AM
140 CR save slot. Used only by optimised __tls_get_addr call stub,
141 relying on __tls_get_addr_opt not saving CR.. */
142#define STK_LINKER(htab) (htab->opd_abi ? 32 : 8)
143
5bd4f169 144/* TOC base pointers offset from start of TOC. */
411e1bfb 145#define TOC_BASE_OFF 0x8000
a27e685f
AM
146/* TOC base alignment. */
147#define TOC_BASE_ALIGN 256
411e1bfb
AM
148
149/* Offset of tp and dtp pointers from start of TLS block. */
150#define TP_OFFSET 0x7000
151#define DTP_OFFSET 0x8000
5bd4f169 152
ad8e1ba5
AM
153/* .plt call stub instructions. The normal stub is like this, but
154 sometimes the .plt entry crosses a 64k boundary and we need to
71a39c98 155 insert an addi to adjust r11. */
a078d95a 156#define STD_R2_0R1 0xf8410000 /* std %r2,0+40(%r1) */
71a39c98
AM
157#define ADDIS_R11_R2 0x3d620000 /* addis %r11,%r2,xxx@ha */
158#define LD_R12_0R11 0xe98b0000 /* ld %r12,xxx+0@l(%r11) */
159#define MTCTR_R12 0x7d8903a6 /* mtctr %r12 */
160#define LD_R2_0R11 0xe84b0000 /* ld %r2,xxx+8@l(%r11) */
161#define LD_R11_0R11 0xe96b0000 /* ld %r11,xxx+16@l(%r11) */
5d1634d7
AM
162#define BCTR 0x4e800420 /* bctr */
163
71a39c98 164#define ADDI_R11_R11 0x396b0000 /* addi %r11,%r11,off@l */
ad8e1ba5
AM
165#define ADDIS_R2_R2 0x3c420000 /* addis %r2,%r2,off@ha */
166#define ADDI_R2_R2 0x38420000 /* addi %r2,%r2,off@l */
167
71a39c98
AM
168#define XOR_R2_R12_R12 0x7d826278 /* xor %r2,%r12,%r12 */
169#define ADD_R11_R11_R2 0x7d6b1214 /* add %r11,%r11,%r2 */
170#define XOR_R11_R12_R12 0x7d8b6278 /* xor %r11,%r12,%r12 */
794e51c0
AM
171#define ADD_R2_R2_R11 0x7c425a14 /* add %r2,%r2,%r11 */
172#define CMPLDI_R2_0 0x28220000 /* cmpldi %r2,0 */
173#define BNECTR 0x4ca20420 /* bnectr+ */
174#define BNECTR_P4 0x4ce20420 /* bnectr+ */
175
71a39c98 176#define LD_R12_0R2 0xe9820000 /* ld %r12,xxx+0(%r2) */
ac2df442
AM
177#define LD_R11_0R2 0xe9620000 /* ld %r11,xxx+0(%r2) */
178#define LD_R2_0R2 0xe8420000 /* ld %r2,xxx+0(%r2) */
179
a078d95a 180#define LD_R2_0R1 0xe8410000 /* ld %r2,0(%r1) */
006589cf
AM
181#define LD_R2_0R12 0xe84c0000 /* ld %r2,0(%r12) */
182#define ADD_R2_R2_R12 0x7c426214 /* add %r2,%r2,%r12 */
ad8e1ba5 183
006589cf
AM
184#define LIS_R2 0x3c400000 /* lis %r2,xxx@ha */
185#define ADDIS_R2_R12 0x3c4c0000 /* addis %r2,%r12,xxx@ha */
186#define ADDIS_R12_R2 0x3d820000 /* addis %r12,%r2,xxx@ha */
a345bc8d
AM
187#define ADDIS_R12_R12 0x3d8c0000 /* addis %r12,%r12,xxx@ha */
188#define LD_R12_0R12 0xe98c0000 /* ld %r12,xxx@l(%r12) */
189
ee4bf8d2 190/* glink call stub instructions. We enter with the index in R0. */
ad8e1ba5 191#define GLINK_CALL_STUB_SIZE (16*4)
ee4bf8d2
AM
192 /* 0: */
193 /* .quad plt0-1f */
194 /* __glink: */
195#define MFLR_R12 0x7d8802a6 /* mflr %12 */
196#define BCL_20_31 0x429f0005 /* bcl 20,31,1f */
197 /* 1: */
198#define MFLR_R11 0x7d6802a6 /* mflr %11 */
71a39c98 199 /* ld %2,(0b-1b)(%11) */
ee4bf8d2 200#define MTLR_R12 0x7d8803a6 /* mtlr %12 */
71a39c98
AM
201#define ADD_R11_R2_R11 0x7d625a14 /* add %11,%2,%11 */
202 /* ld %12,0(%11) */
203 /* ld %2,8(%11) */
204 /* mtctr %12 */
205 /* ld %11,16(%11) */
ee4bf8d2 206 /* bctr */
b9e5796b
AM
207#define MFLR_R0 0x7c0802a6 /* mflr %r0 */
208#define MTLR_R0 0x7c0803a6 /* mtlr %r0 */
209#define SUB_R12_R12_R11 0x7d8b6050 /* subf %r12,%r11,%r12 */
210#define ADDI_R0_R12 0x380c0000 /* addi %r0,%r12,0 */
211#define SRDI_R0_R0_2 0x7800f082 /* rldicl %r0,%r0,62,2 */
5d1634d7
AM
212
213/* Pad with this. */
214#define NOP 0x60000000
215
721956f4
AM
216/* Some other nops. */
217#define CROR_151515 0x4def7b82
218#define CROR_313131 0x4ffffb82
219
cedb70c5 220/* .glink entries for the first 32k functions are two instructions. */
5d1634d7
AM
221#define LI_R0_0 0x38000000 /* li %r0,0 */
222#define B_DOT 0x48000000 /* b . */
223
224/* After that, we need two instructions to load the index, followed by
225 a branch. */
226#define LIS_R0_0 0x3c000000 /* lis %r0,0 */
10ed1bba 227#define ORI_R0_R0_0 0x60000000 /* ori %r0,%r0,0 */
41bd81ab 228
deb0e272
AM
229/* Instructions used by the save and restore reg functions. */
230#define STD_R0_0R1 0xf8010000 /* std %r0,0(%r1) */
231#define STD_R0_0R12 0xf80c0000 /* std %r0,0(%r12) */
232#define LD_R0_0R1 0xe8010000 /* ld %r0,0(%r1) */
233#define LD_R0_0R12 0xe80c0000 /* ld %r0,0(%r12) */
82bd7b59
AM
234#define STFD_FR0_0R1 0xd8010000 /* stfd %fr0,0(%r1) */
235#define LFD_FR0_0R1 0xc8010000 /* lfd %fr0,0(%r1) */
deb0e272
AM
236#define LI_R12_0 0x39800000 /* li %r12,0 */
237#define STVX_VR0_R12_R0 0x7c0c01ce /* stvx %v0,%r12,%r0 */
238#define LVX_VR0_R12_R0 0x7c0c00ce /* lvx %v0,%r12,%r0 */
239#define MTLR_R0 0x7c0803a6 /* mtlr %r0 */
82bd7b59
AM
240#define BLR 0x4e800020 /* blr */
241
41bd81ab
AM
242/* Since .opd is an array of descriptors and each entry will end up
243 with identical R_PPC64_RELATIVE relocs, there is really no need to
244 propagate .opd relocs; The dynamic linker should be taught to
1e2f5b6e 245 relocate .opd without reloc entries. */
41bd81ab
AM
246#ifndef NO_OPD_RELOCS
247#define NO_OPD_RELOCS 0
248#endif
810d4e75 249
a4b6fadd
AM
250#ifndef ARRAY_SIZE
251#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
252#endif
253
810d4e75
AM
254static inline int
255abiversion (bfd *abfd)
256{
257 return elf_elfheader (abfd)->e_flags & EF_PPC64_ABI;
258}
259
260static inline void
261set_abiversion (bfd *abfd, int ver)
262{
263 elf_elfheader (abfd)->e_flags &= ~EF_PPC64_ABI;
264 elf_elfheader (abfd)->e_flags |= ver & EF_PPC64_ABI;
265}
5bd4f169 266\f
f5e87a1d 267#define ONES(n) (((bfd_vma) 1 << ((n) - 1) << 1) - 1)
b34976b6 268
5bd4f169 269/* Relocation HOWTO's. */
04c9666a 270static reloc_howto_type *ppc64_elf_howto_table[(int) R_PPC64_max];
5bd4f169
AM
271
272static reloc_howto_type ppc64_elf_howto_raw[] = {
273 /* This reloc does nothing. */
274 HOWTO (R_PPC64_NONE, /* type */
275 0, /* rightshift */
6346d5ca
AM
276 3, /* size (0 = byte, 1 = short, 2 = long) */
277 0, /* bitsize */
b34976b6 278 FALSE, /* pc_relative */
5bd4f169 279 0, /* bitpos */
f5e87a1d 280 complain_overflow_dont, /* complain_on_overflow */
5bd4f169
AM
281 bfd_elf_generic_reloc, /* special_function */
282 "R_PPC64_NONE", /* name */
b34976b6 283 FALSE, /* partial_inplace */
d006db6c 284 0, /* src_mask */
5bd4f169 285 0, /* dst_mask */
b34976b6 286 FALSE), /* pcrel_offset */
5bd4f169
AM
287
288 /* A standard 32 bit relocation. */
289 HOWTO (R_PPC64_ADDR32, /* type */
290 0, /* rightshift */
291 2, /* size (0 = byte, 1 = short, 2 = long) */
292 32, /* bitsize */
b34976b6 293 FALSE, /* pc_relative */
5bd4f169
AM
294 0, /* bitpos */
295 complain_overflow_bitfield, /* complain_on_overflow */
296 bfd_elf_generic_reloc, /* special_function */
297 "R_PPC64_ADDR32", /* name */
b34976b6 298 FALSE, /* partial_inplace */
5bd4f169
AM
299 0, /* src_mask */
300 0xffffffff, /* dst_mask */
b34976b6 301 FALSE), /* pcrel_offset */
5bd4f169
AM
302
303 /* An absolute 26 bit branch; the lower two bits must be zero.
304 FIXME: we don't check that, we just clear them. */
305 HOWTO (R_PPC64_ADDR24, /* type */
306 0, /* rightshift */
307 2, /* size (0 = byte, 1 = short, 2 = long) */
308 26, /* bitsize */
b34976b6 309 FALSE, /* pc_relative */
5bd4f169
AM
310 0, /* bitpos */
311 complain_overflow_bitfield, /* complain_on_overflow */
312 bfd_elf_generic_reloc, /* special_function */
313 "R_PPC64_ADDR24", /* name */
b34976b6 314 FALSE, /* partial_inplace */
d006db6c 315 0, /* src_mask */
f5e87a1d 316 0x03fffffc, /* dst_mask */
b34976b6 317 FALSE), /* pcrel_offset */
5bd4f169
AM
318
319 /* A standard 16 bit relocation. */
320 HOWTO (R_PPC64_ADDR16, /* type */
321 0, /* rightshift */
322 1, /* size (0 = byte, 1 = short, 2 = long) */
323 16, /* bitsize */
b34976b6 324 FALSE, /* pc_relative */
5bd4f169
AM
325 0, /* bitpos */
326 complain_overflow_bitfield, /* complain_on_overflow */
327 bfd_elf_generic_reloc, /* special_function */
328 "R_PPC64_ADDR16", /* name */
b34976b6 329 FALSE, /* partial_inplace */
5bd4f169
AM
330 0, /* src_mask */
331 0xffff, /* dst_mask */
b34976b6 332 FALSE), /* pcrel_offset */
5bd4f169
AM
333
334 /* A 16 bit relocation without overflow. */
335 HOWTO (R_PPC64_ADDR16_LO, /* type */
336 0, /* rightshift */
337 1, /* size (0 = byte, 1 = short, 2 = long) */
338 16, /* bitsize */
b34976b6 339 FALSE, /* pc_relative */
5bd4f169
AM
340 0, /* bitpos */
341 complain_overflow_dont,/* complain_on_overflow */
342 bfd_elf_generic_reloc, /* special_function */
343 "R_PPC64_ADDR16_LO", /* name */
b34976b6 344 FALSE, /* partial_inplace */
5bd4f169
AM
345 0, /* src_mask */
346 0xffff, /* dst_mask */
b34976b6 347 FALSE), /* pcrel_offset */
5bd4f169
AM
348
349 /* Bits 16-31 of an address. */
350 HOWTO (R_PPC64_ADDR16_HI, /* type */
351 16, /* rightshift */
352 1, /* size (0 = byte, 1 = short, 2 = long) */
353 16, /* bitsize */
b34976b6 354 FALSE, /* pc_relative */
5bd4f169 355 0, /* bitpos */
f9c6b907 356 complain_overflow_signed, /* complain_on_overflow */
5bd4f169
AM
357 bfd_elf_generic_reloc, /* special_function */
358 "R_PPC64_ADDR16_HI", /* name */
b34976b6 359 FALSE, /* partial_inplace */
5bd4f169
AM
360 0, /* src_mask */
361 0xffff, /* dst_mask */
b34976b6 362 FALSE), /* pcrel_offset */
5bd4f169
AM
363
364 /* Bits 16-31 of an address, plus 1 if the contents of the low 16
365 bits, treated as a signed number, is negative. */
366 HOWTO (R_PPC64_ADDR16_HA, /* type */
367 16, /* rightshift */
368 1, /* size (0 = byte, 1 = short, 2 = long) */
369 16, /* bitsize */
b34976b6 370 FALSE, /* pc_relative */
5bd4f169 371 0, /* bitpos */
f9c6b907 372 complain_overflow_signed, /* complain_on_overflow */
805fc799 373 ppc64_elf_ha_reloc, /* special_function */
5bd4f169 374 "R_PPC64_ADDR16_HA", /* name */
b34976b6 375 FALSE, /* partial_inplace */
5bd4f169
AM
376 0, /* src_mask */
377 0xffff, /* dst_mask */
b34976b6 378 FALSE), /* pcrel_offset */
5bd4f169
AM
379
380 /* An absolute 16 bit branch; the lower two bits must be zero.
381 FIXME: we don't check that, we just clear them. */
382 HOWTO (R_PPC64_ADDR14, /* type */
383 0, /* rightshift */
384 2, /* size (0 = byte, 1 = short, 2 = long) */
385 16, /* bitsize */
b34976b6 386 FALSE, /* pc_relative */
5bd4f169 387 0, /* bitpos */
b80eed39 388 complain_overflow_signed, /* complain_on_overflow */
2441e016 389 ppc64_elf_branch_reloc, /* special_function */
5bd4f169 390 "R_PPC64_ADDR14", /* name */
b34976b6 391 FALSE, /* partial_inplace */
d006db6c 392 0, /* src_mask */
f5e87a1d 393 0x0000fffc, /* dst_mask */
b34976b6 394 FALSE), /* pcrel_offset */
5bd4f169
AM
395
396 /* An absolute 16 bit branch, for which bit 10 should be set to
397 indicate that the branch is expected to be taken. The lower two
398 bits must be zero. */
399 HOWTO (R_PPC64_ADDR14_BRTAKEN, /* type */
400 0, /* rightshift */
401 2, /* size (0 = byte, 1 = short, 2 = long) */
402 16, /* bitsize */
b34976b6 403 FALSE, /* pc_relative */
5bd4f169 404 0, /* bitpos */
b80eed39 405 complain_overflow_signed, /* complain_on_overflow */
805fc799 406 ppc64_elf_brtaken_reloc, /* special_function */
5bd4f169 407 "R_PPC64_ADDR14_BRTAKEN",/* name */
b34976b6 408 FALSE, /* partial_inplace */
d006db6c 409 0, /* src_mask */
f5e87a1d 410 0x0000fffc, /* dst_mask */
b34976b6 411 FALSE), /* pcrel_offset */
5bd4f169
AM
412
413 /* An absolute 16 bit branch, for which bit 10 should be set to
414 indicate that the branch is not expected to be taken. The lower
415 two bits must be zero. */
416 HOWTO (R_PPC64_ADDR14_BRNTAKEN, /* type */
417 0, /* rightshift */
418 2, /* size (0 = byte, 1 = short, 2 = long) */
419 16, /* bitsize */
b34976b6 420 FALSE, /* pc_relative */
5bd4f169 421 0, /* bitpos */
b80eed39 422 complain_overflow_signed, /* complain_on_overflow */
805fc799 423 ppc64_elf_brtaken_reloc, /* special_function */
5bd4f169 424 "R_PPC64_ADDR14_BRNTAKEN",/* name */
b34976b6 425 FALSE, /* partial_inplace */
d006db6c 426 0, /* src_mask */
f5e87a1d 427 0x0000fffc, /* dst_mask */
b34976b6 428 FALSE), /* pcrel_offset */
5bd4f169
AM
429
430 /* A relative 26 bit branch; the lower two bits must be zero. */
431 HOWTO (R_PPC64_REL24, /* type */
432 0, /* rightshift */
433 2, /* size (0 = byte, 1 = short, 2 = long) */
434 26, /* bitsize */
b34976b6 435 TRUE, /* pc_relative */
5bd4f169
AM
436 0, /* bitpos */
437 complain_overflow_signed, /* complain_on_overflow */
2441e016 438 ppc64_elf_branch_reloc, /* special_function */
5bd4f169 439 "R_PPC64_REL24", /* name */
b34976b6 440 FALSE, /* partial_inplace */
d006db6c 441 0, /* src_mask */
f5e87a1d 442 0x03fffffc, /* dst_mask */
b34976b6 443 TRUE), /* pcrel_offset */
5bd4f169
AM
444
445 /* A relative 16 bit branch; the lower two bits must be zero. */
446 HOWTO (R_PPC64_REL14, /* type */
447 0, /* rightshift */
448 2, /* size (0 = byte, 1 = short, 2 = long) */
449 16, /* bitsize */
b34976b6 450 TRUE, /* pc_relative */
5bd4f169
AM
451 0, /* bitpos */
452 complain_overflow_signed, /* complain_on_overflow */
2441e016 453 ppc64_elf_branch_reloc, /* special_function */
5bd4f169 454 "R_PPC64_REL14", /* name */
b34976b6 455 FALSE, /* partial_inplace */
d006db6c 456 0, /* src_mask */
f5e87a1d 457 0x0000fffc, /* dst_mask */
b34976b6 458 TRUE), /* pcrel_offset */
5bd4f169
AM
459
460 /* A relative 16 bit branch. Bit 10 should be set to indicate that
461 the branch is expected to be taken. The lower two bits must be
462 zero. */
463 HOWTO (R_PPC64_REL14_BRTAKEN, /* type */
464 0, /* rightshift */
465 2, /* size (0 = byte, 1 = short, 2 = long) */
466 16, /* bitsize */
b34976b6 467 TRUE, /* pc_relative */
5bd4f169
AM
468 0, /* bitpos */
469 complain_overflow_signed, /* complain_on_overflow */
805fc799 470 ppc64_elf_brtaken_reloc, /* special_function */
5bd4f169 471 "R_PPC64_REL14_BRTAKEN", /* name */
b34976b6 472 FALSE, /* partial_inplace */
d006db6c 473 0, /* src_mask */
f5e87a1d 474 0x0000fffc, /* dst_mask */
b34976b6 475 TRUE), /* pcrel_offset */
5bd4f169
AM
476
477 /* A relative 16 bit branch. Bit 10 should be set to indicate that
478 the branch is not expected to be taken. The lower two bits must
479 be zero. */
480 HOWTO (R_PPC64_REL14_BRNTAKEN, /* type */
481 0, /* rightshift */
482 2, /* size (0 = byte, 1 = short, 2 = long) */
483 16, /* bitsize */
b34976b6 484 TRUE, /* pc_relative */
5bd4f169
AM
485 0, /* bitpos */
486 complain_overflow_signed, /* complain_on_overflow */
805fc799 487 ppc64_elf_brtaken_reloc, /* special_function */
5bd4f169 488 "R_PPC64_REL14_BRNTAKEN",/* name */
b34976b6 489 FALSE, /* partial_inplace */
d006db6c 490 0, /* src_mask */
f5e87a1d 491 0x0000fffc, /* dst_mask */
b34976b6 492 TRUE), /* pcrel_offset */
5bd4f169
AM
493
494 /* Like R_PPC64_ADDR16, but referring to the GOT table entry for the
495 symbol. */
496 HOWTO (R_PPC64_GOT16, /* type */
497 0, /* rightshift */
498 1, /* size (0 = byte, 1 = short, 2 = long) */
499 16, /* bitsize */
b34976b6 500 FALSE, /* pc_relative */
5bd4f169
AM
501 0, /* bitpos */
502 complain_overflow_signed, /* complain_on_overflow */
805fc799 503 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 504 "R_PPC64_GOT16", /* name */
b34976b6 505 FALSE, /* partial_inplace */
5bd4f169
AM
506 0, /* src_mask */
507 0xffff, /* dst_mask */
b34976b6 508 FALSE), /* pcrel_offset */
5bd4f169
AM
509
510 /* Like R_PPC64_ADDR16_LO, but referring to the GOT table entry for
511 the symbol. */
512 HOWTO (R_PPC64_GOT16_LO, /* type */
513 0, /* rightshift */
514 1, /* size (0 = byte, 1 = short, 2 = long) */
515 16, /* bitsize */
b34976b6 516 FALSE, /* pc_relative */
5bd4f169
AM
517 0, /* bitpos */
518 complain_overflow_dont, /* complain_on_overflow */
805fc799 519 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 520 "R_PPC64_GOT16_LO", /* name */
b34976b6 521 FALSE, /* partial_inplace */
5bd4f169
AM
522 0, /* src_mask */
523 0xffff, /* dst_mask */
b34976b6 524 FALSE), /* pcrel_offset */
5bd4f169
AM
525
526 /* Like R_PPC64_ADDR16_HI, but referring to the GOT table entry for
527 the symbol. */
528 HOWTO (R_PPC64_GOT16_HI, /* type */
529 16, /* rightshift */
530 1, /* size (0 = byte, 1 = short, 2 = long) */
531 16, /* bitsize */
b34976b6 532 FALSE, /* pc_relative */
5bd4f169 533 0, /* bitpos */
f9c6b907 534 complain_overflow_signed,/* complain_on_overflow */
805fc799 535 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 536 "R_PPC64_GOT16_HI", /* name */
b34976b6 537 FALSE, /* partial_inplace */
5bd4f169
AM
538 0, /* src_mask */
539 0xffff, /* dst_mask */
b34976b6 540 FALSE), /* pcrel_offset */
5bd4f169
AM
541
542 /* Like R_PPC64_ADDR16_HA, but referring to the GOT table entry for
543 the symbol. */
544 HOWTO (R_PPC64_GOT16_HA, /* type */
545 16, /* rightshift */
546 1, /* size (0 = byte, 1 = short, 2 = long) */
547 16, /* bitsize */
b34976b6 548 FALSE, /* pc_relative */
5bd4f169 549 0, /* bitpos */
f9c6b907 550 complain_overflow_signed,/* complain_on_overflow */
805fc799 551 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 552 "R_PPC64_GOT16_HA", /* name */
b34976b6 553 FALSE, /* partial_inplace */
5bd4f169
AM
554 0, /* src_mask */
555 0xffff, /* dst_mask */
b34976b6 556 FALSE), /* pcrel_offset */
5bd4f169
AM
557
558 /* This is used only by the dynamic linker. The symbol should exist
559 both in the object being run and in some shared library. The
560 dynamic linker copies the data addressed by the symbol from the
561 shared library into the object, because the object being
562 run has to have the data at some particular address. */
563 HOWTO (R_PPC64_COPY, /* type */
564 0, /* rightshift */
f5e87a1d
AM
565 0, /* this one is variable size */
566 0, /* bitsize */
b34976b6 567 FALSE, /* pc_relative */
5bd4f169 568 0, /* bitpos */
f5e87a1d
AM
569 complain_overflow_dont, /* complain_on_overflow */
570 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 571 "R_PPC64_COPY", /* name */
b34976b6 572 FALSE, /* partial_inplace */
5bd4f169
AM
573 0, /* src_mask */
574 0, /* dst_mask */
b34976b6 575 FALSE), /* pcrel_offset */
5bd4f169
AM
576
577 /* Like R_PPC64_ADDR64, but used when setting global offset table
578 entries. */
579 HOWTO (R_PPC64_GLOB_DAT, /* type */
580 0, /* rightshift */
581 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
582 64, /* bitsize */
b34976b6 583 FALSE, /* pc_relative */
5bd4f169
AM
584 0, /* bitpos */
585 complain_overflow_dont, /* complain_on_overflow */
805fc799 586 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 587 "R_PPC64_GLOB_DAT", /* name */
b34976b6 588 FALSE, /* partial_inplace */
5bd4f169 589 0, /* src_mask */
f5e87a1d 590 ONES (64), /* dst_mask */
b34976b6 591 FALSE), /* pcrel_offset */
5bd4f169
AM
592
593 /* Created by the link editor. Marks a procedure linkage table
594 entry for a symbol. */
595 HOWTO (R_PPC64_JMP_SLOT, /* type */
596 0, /* rightshift */
597 0, /* size (0 = byte, 1 = short, 2 = long) */
598 0, /* bitsize */
b34976b6 599 FALSE, /* pc_relative */
5bd4f169
AM
600 0, /* bitpos */
601 complain_overflow_dont, /* complain_on_overflow */
805fc799 602 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 603 "R_PPC64_JMP_SLOT", /* name */
b34976b6 604 FALSE, /* partial_inplace */
5bd4f169
AM
605 0, /* src_mask */
606 0, /* dst_mask */
b34976b6 607 FALSE), /* pcrel_offset */
5bd4f169
AM
608
609 /* Used only by the dynamic linker. When the object is run, this
610 doubleword64 is set to the load address of the object, plus the
611 addend. */
612 HOWTO (R_PPC64_RELATIVE, /* type */
613 0, /* rightshift */
614 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
615 64, /* bitsize */
b34976b6 616 FALSE, /* pc_relative */
5bd4f169
AM
617 0, /* bitpos */
618 complain_overflow_dont, /* complain_on_overflow */
619 bfd_elf_generic_reloc, /* special_function */
620 "R_PPC64_RELATIVE", /* name */
b34976b6 621 FALSE, /* partial_inplace */
5bd4f169 622 0, /* src_mask */
f5e87a1d 623 ONES (64), /* dst_mask */
b34976b6 624 FALSE), /* pcrel_offset */
5bd4f169
AM
625
626 /* Like R_PPC64_ADDR32, but may be unaligned. */
627 HOWTO (R_PPC64_UADDR32, /* type */
628 0, /* rightshift */
629 2, /* size (0 = byte, 1 = short, 2 = long) */
630 32, /* bitsize */
b34976b6 631 FALSE, /* pc_relative */
5bd4f169
AM
632 0, /* bitpos */
633 complain_overflow_bitfield, /* complain_on_overflow */
634 bfd_elf_generic_reloc, /* special_function */
635 "R_PPC64_UADDR32", /* name */
b34976b6 636 FALSE, /* partial_inplace */
5bd4f169
AM
637 0, /* src_mask */
638 0xffffffff, /* dst_mask */
b34976b6 639 FALSE), /* pcrel_offset */
5bd4f169
AM
640
641 /* Like R_PPC64_ADDR16, but may be unaligned. */
642 HOWTO (R_PPC64_UADDR16, /* type */
643 0, /* rightshift */
644 1, /* size (0 = byte, 1 = short, 2 = long) */
645 16, /* bitsize */
b34976b6 646 FALSE, /* pc_relative */
5bd4f169
AM
647 0, /* bitpos */
648 complain_overflow_bitfield, /* complain_on_overflow */
649 bfd_elf_generic_reloc, /* special_function */
650 "R_PPC64_UADDR16", /* name */
b34976b6 651 FALSE, /* partial_inplace */
5bd4f169
AM
652 0, /* src_mask */
653 0xffff, /* dst_mask */
b34976b6 654 FALSE), /* pcrel_offset */
5bd4f169
AM
655
656 /* 32-bit PC relative. */
657 HOWTO (R_PPC64_REL32, /* type */
658 0, /* rightshift */
659 2, /* size (0 = byte, 1 = short, 2 = long) */
660 32, /* bitsize */
b34976b6 661 TRUE, /* pc_relative */
5bd4f169 662 0, /* bitpos */
5bd4f169
AM
663 complain_overflow_signed, /* complain_on_overflow */
664 bfd_elf_generic_reloc, /* special_function */
665 "R_PPC64_REL32", /* name */
b34976b6 666 FALSE, /* partial_inplace */
5bd4f169
AM
667 0, /* src_mask */
668 0xffffffff, /* dst_mask */
b34976b6 669 TRUE), /* pcrel_offset */
5bd4f169 670
10ed1bba 671 /* 32-bit relocation to the symbol's procedure linkage table. */
5bd4f169
AM
672 HOWTO (R_PPC64_PLT32, /* type */
673 0, /* rightshift */
674 2, /* size (0 = byte, 1 = short, 2 = long) */
675 32, /* bitsize */
b34976b6 676 FALSE, /* pc_relative */
5bd4f169
AM
677 0, /* bitpos */
678 complain_overflow_bitfield, /* complain_on_overflow */
805fc799 679 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 680 "R_PPC64_PLT32", /* name */
b34976b6 681 FALSE, /* partial_inplace */
5bd4f169 682 0, /* src_mask */
f5e87a1d 683 0xffffffff, /* dst_mask */
b34976b6 684 FALSE), /* pcrel_offset */
5bd4f169
AM
685
686 /* 32-bit PC relative relocation to the symbol's procedure linkage table.
687 FIXME: R_PPC64_PLTREL32 not supported. */
688 HOWTO (R_PPC64_PLTREL32, /* type */
689 0, /* rightshift */
690 2, /* size (0 = byte, 1 = short, 2 = long) */
691 32, /* bitsize */
b34976b6 692 TRUE, /* pc_relative */
5bd4f169
AM
693 0, /* bitpos */
694 complain_overflow_signed, /* complain_on_overflow */
3ce51288 695 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 696 "R_PPC64_PLTREL32", /* name */
b34976b6 697 FALSE, /* partial_inplace */
5bd4f169 698 0, /* src_mask */
f5e87a1d 699 0xffffffff, /* dst_mask */
b34976b6 700 TRUE), /* pcrel_offset */
5bd4f169
AM
701
702 /* Like R_PPC64_ADDR16_LO, but referring to the PLT table entry for
703 the symbol. */
704 HOWTO (R_PPC64_PLT16_LO, /* type */
705 0, /* rightshift */
706 1, /* size (0 = byte, 1 = short, 2 = long) */
707 16, /* bitsize */
b34976b6 708 FALSE, /* pc_relative */
5bd4f169
AM
709 0, /* bitpos */
710 complain_overflow_dont, /* complain_on_overflow */
805fc799 711 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 712 "R_PPC64_PLT16_LO", /* name */
b34976b6 713 FALSE, /* partial_inplace */
5bd4f169
AM
714 0, /* src_mask */
715 0xffff, /* dst_mask */
b34976b6 716 FALSE), /* pcrel_offset */
5bd4f169
AM
717
718 /* Like R_PPC64_ADDR16_HI, but referring to the PLT table entry for
719 the symbol. */
720 HOWTO (R_PPC64_PLT16_HI, /* type */
721 16, /* rightshift */
722 1, /* size (0 = byte, 1 = short, 2 = long) */
723 16, /* bitsize */
b34976b6 724 FALSE, /* pc_relative */
5bd4f169 725 0, /* bitpos */
f9c6b907 726 complain_overflow_signed, /* complain_on_overflow */
805fc799 727 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 728 "R_PPC64_PLT16_HI", /* name */
b34976b6 729 FALSE, /* partial_inplace */
5bd4f169
AM
730 0, /* src_mask */
731 0xffff, /* dst_mask */
b34976b6 732 FALSE), /* pcrel_offset */
5bd4f169
AM
733
734 /* Like R_PPC64_ADDR16_HA, but referring to the PLT table entry for
735 the symbol. */
736 HOWTO (R_PPC64_PLT16_HA, /* type */
737 16, /* rightshift */
738 1, /* size (0 = byte, 1 = short, 2 = long) */
739 16, /* bitsize */
b34976b6 740 FALSE, /* pc_relative */
5bd4f169 741 0, /* bitpos */
f9c6b907 742 complain_overflow_signed, /* complain_on_overflow */
805fc799 743 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 744 "R_PPC64_PLT16_HA", /* name */
b34976b6 745 FALSE, /* partial_inplace */
5bd4f169
AM
746 0, /* src_mask */
747 0xffff, /* dst_mask */
b34976b6 748 FALSE), /* pcrel_offset */
5bd4f169 749
c061c2d8 750 /* 16-bit section relative relocation. */
5bd4f169
AM
751 HOWTO (R_PPC64_SECTOFF, /* type */
752 0, /* rightshift */
c061c2d8
AM
753 1, /* size (0 = byte, 1 = short, 2 = long) */
754 16, /* bitsize */
b34976b6 755 FALSE, /* pc_relative */
5bd4f169 756 0, /* bitpos */
b80eed39 757 complain_overflow_signed, /* complain_on_overflow */
805fc799 758 ppc64_elf_sectoff_reloc, /* special_function */
5bd4f169 759 "R_PPC64_SECTOFF", /* name */
b34976b6 760 FALSE, /* partial_inplace */
5bd4f169 761 0, /* src_mask */
c061c2d8 762 0xffff, /* dst_mask */
b34976b6 763 FALSE), /* pcrel_offset */
5bd4f169 764
c061c2d8 765 /* Like R_PPC64_SECTOFF, but no overflow warning. */
5bd4f169
AM
766 HOWTO (R_PPC64_SECTOFF_LO, /* type */
767 0, /* rightshift */
768 1, /* size (0 = byte, 1 = short, 2 = long) */
769 16, /* bitsize */
b34976b6 770 FALSE, /* pc_relative */
5bd4f169
AM
771 0, /* bitpos */
772 complain_overflow_dont, /* complain_on_overflow */
805fc799 773 ppc64_elf_sectoff_reloc, /* special_function */
5bd4f169 774 "R_PPC64_SECTOFF_LO", /* name */
b34976b6 775 FALSE, /* partial_inplace */
5bd4f169
AM
776 0, /* src_mask */
777 0xffff, /* dst_mask */
b34976b6 778 FALSE), /* pcrel_offset */
5bd4f169
AM
779
780 /* 16-bit upper half section relative relocation. */
781 HOWTO (R_PPC64_SECTOFF_HI, /* type */
782 16, /* rightshift */
783 1, /* size (0 = byte, 1 = short, 2 = long) */
784 16, /* bitsize */
b34976b6 785 FALSE, /* pc_relative */
5bd4f169 786 0, /* bitpos */
f9c6b907 787 complain_overflow_signed, /* complain_on_overflow */
805fc799 788 ppc64_elf_sectoff_reloc, /* special_function */
5bd4f169 789 "R_PPC64_SECTOFF_HI", /* name */
b34976b6 790 FALSE, /* partial_inplace */
5bd4f169
AM
791 0, /* src_mask */
792 0xffff, /* dst_mask */
b34976b6 793 FALSE), /* pcrel_offset */
5bd4f169
AM
794
795 /* 16-bit upper half adjusted section relative relocation. */
796 HOWTO (R_PPC64_SECTOFF_HA, /* type */
797 16, /* rightshift */
798 1, /* size (0 = byte, 1 = short, 2 = long) */
799 16, /* bitsize */
b34976b6 800 FALSE, /* pc_relative */
5bd4f169 801 0, /* bitpos */
f9c6b907 802 complain_overflow_signed, /* complain_on_overflow */
805fc799 803 ppc64_elf_sectoff_ha_reloc, /* special_function */
5bd4f169 804 "R_PPC64_SECTOFF_HA", /* name */
b34976b6 805 FALSE, /* partial_inplace */
5bd4f169
AM
806 0, /* src_mask */
807 0xffff, /* dst_mask */
b34976b6 808 FALSE), /* pcrel_offset */
5bd4f169 809
04c9666a
AM
810 /* Like R_PPC64_REL24 without touching the two least significant bits. */
811 HOWTO (R_PPC64_REL30, /* type */
5bd4f169
AM
812 2, /* rightshift */
813 2, /* size (0 = byte, 1 = short, 2 = long) */
814 30, /* bitsize */
b34976b6 815 TRUE, /* pc_relative */
5bd4f169
AM
816 0, /* bitpos */
817 complain_overflow_dont, /* complain_on_overflow */
818 bfd_elf_generic_reloc, /* special_function */
04c9666a 819 "R_PPC64_REL30", /* name */
b34976b6 820 FALSE, /* partial_inplace */
d006db6c 821 0, /* src_mask */
5bd4f169 822 0xfffffffc, /* dst_mask */
b34976b6 823 TRUE), /* pcrel_offset */
5bd4f169
AM
824
825 /* Relocs in the 64-bit PowerPC ELF ABI, not in the 32-bit ABI. */
826
827 /* A standard 64-bit relocation. */
828 HOWTO (R_PPC64_ADDR64, /* type */
829 0, /* rightshift */
830 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
831 64, /* bitsize */
b34976b6 832 FALSE, /* pc_relative */
5bd4f169
AM
833 0, /* bitpos */
834 complain_overflow_dont, /* complain_on_overflow */
835 bfd_elf_generic_reloc, /* special_function */
836 "R_PPC64_ADDR64", /* name */
b34976b6 837 FALSE, /* partial_inplace */
5bd4f169 838 0, /* src_mask */
f5e87a1d 839 ONES (64), /* dst_mask */
b34976b6 840 FALSE), /* pcrel_offset */
5bd4f169
AM
841
842 /* The bits 32-47 of an address. */
843 HOWTO (R_PPC64_ADDR16_HIGHER, /* type */
844 32, /* rightshift */
845 1, /* size (0 = byte, 1 = short, 2 = long) */
846 16, /* bitsize */
b34976b6 847 FALSE, /* pc_relative */
5bd4f169
AM
848 0, /* bitpos */
849 complain_overflow_dont, /* complain_on_overflow */
850 bfd_elf_generic_reloc, /* special_function */
851 "R_PPC64_ADDR16_HIGHER", /* name */
b34976b6 852 FALSE, /* partial_inplace */
5bd4f169
AM
853 0, /* src_mask */
854 0xffff, /* dst_mask */
b34976b6 855 FALSE), /* pcrel_offset */
5bd4f169
AM
856
857 /* The bits 32-47 of an address, plus 1 if the contents of the low
858 16 bits, treated as a signed number, is negative. */
859 HOWTO (R_PPC64_ADDR16_HIGHERA, /* type */
860 32, /* rightshift */
861 1, /* size (0 = byte, 1 = short, 2 = long) */
862 16, /* bitsize */
b34976b6 863 FALSE, /* pc_relative */
5bd4f169
AM
864 0, /* bitpos */
865 complain_overflow_dont, /* complain_on_overflow */
805fc799 866 ppc64_elf_ha_reloc, /* special_function */
5bd4f169 867 "R_PPC64_ADDR16_HIGHERA", /* name */
b34976b6 868 FALSE, /* partial_inplace */
5bd4f169
AM
869 0, /* src_mask */
870 0xffff, /* dst_mask */
b34976b6 871 FALSE), /* pcrel_offset */
5bd4f169
AM
872
873 /* The bits 48-63 of an address. */
874 HOWTO (R_PPC64_ADDR16_HIGHEST,/* type */
875 48, /* rightshift */
876 1, /* size (0 = byte, 1 = short, 2 = long) */
877 16, /* bitsize */
b34976b6 878 FALSE, /* pc_relative */
5bd4f169
AM
879 0, /* bitpos */
880 complain_overflow_dont, /* complain_on_overflow */
881 bfd_elf_generic_reloc, /* special_function */
882 "R_PPC64_ADDR16_HIGHEST", /* name */
b34976b6 883 FALSE, /* partial_inplace */
5bd4f169
AM
884 0, /* src_mask */
885 0xffff, /* dst_mask */
b34976b6 886 FALSE), /* pcrel_offset */
5bd4f169
AM
887
888 /* The bits 48-63 of an address, plus 1 if the contents of the low
889 16 bits, treated as a signed number, is negative. */
890 HOWTO (R_PPC64_ADDR16_HIGHESTA,/* type */
891 48, /* rightshift */
892 1, /* size (0 = byte, 1 = short, 2 = long) */
893 16, /* bitsize */
b34976b6 894 FALSE, /* pc_relative */
5bd4f169
AM
895 0, /* bitpos */
896 complain_overflow_dont, /* complain_on_overflow */
805fc799 897 ppc64_elf_ha_reloc, /* special_function */
5bd4f169 898 "R_PPC64_ADDR16_HIGHESTA", /* name */
b34976b6 899 FALSE, /* partial_inplace */
5bd4f169
AM
900 0, /* src_mask */
901 0xffff, /* dst_mask */
b34976b6 902 FALSE), /* pcrel_offset */
5bd4f169
AM
903
904 /* Like ADDR64, but may be unaligned. */
905 HOWTO (R_PPC64_UADDR64, /* type */
906 0, /* rightshift */
907 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
908 64, /* bitsize */
b34976b6 909 FALSE, /* pc_relative */
5bd4f169
AM
910 0, /* bitpos */
911 complain_overflow_dont, /* complain_on_overflow */
912 bfd_elf_generic_reloc, /* special_function */
913 "R_PPC64_UADDR64", /* name */
b34976b6 914 FALSE, /* partial_inplace */
5bd4f169 915 0, /* src_mask */
f5e87a1d 916 ONES (64), /* dst_mask */
b34976b6 917 FALSE), /* pcrel_offset */
5bd4f169
AM
918
919 /* 64-bit relative relocation. */
920 HOWTO (R_PPC64_REL64, /* type */
921 0, /* rightshift */
922 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
923 64, /* bitsize */
b34976b6 924 TRUE, /* pc_relative */
5bd4f169
AM
925 0, /* bitpos */
926 complain_overflow_dont, /* complain_on_overflow */
927 bfd_elf_generic_reloc, /* special_function */
928 "R_PPC64_REL64", /* name */
b34976b6 929 FALSE, /* partial_inplace */
5bd4f169 930 0, /* src_mask */
f5e87a1d 931 ONES (64), /* dst_mask */
b34976b6 932 TRUE), /* pcrel_offset */
5bd4f169 933
cedb70c5 934 /* 64-bit relocation to the symbol's procedure linkage table. */
5bd4f169
AM
935 HOWTO (R_PPC64_PLT64, /* type */
936 0, /* rightshift */
937 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
938 64, /* bitsize */
b34976b6 939 FALSE, /* pc_relative */
5bd4f169
AM
940 0, /* bitpos */
941 complain_overflow_dont, /* complain_on_overflow */
805fc799 942 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 943 "R_PPC64_PLT64", /* name */
b34976b6 944 FALSE, /* partial_inplace */
5bd4f169 945 0, /* src_mask */
f5e87a1d 946 ONES (64), /* dst_mask */
b34976b6 947 FALSE), /* pcrel_offset */
5bd4f169
AM
948
949 /* 64-bit PC relative relocation to the symbol's procedure linkage
950 table. */
951 /* FIXME: R_PPC64_PLTREL64 not supported. */
952 HOWTO (R_PPC64_PLTREL64, /* type */
953 0, /* rightshift */
954 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
955 64, /* bitsize */
b34976b6 956 TRUE, /* pc_relative */
5bd4f169
AM
957 0, /* bitpos */
958 complain_overflow_dont, /* complain_on_overflow */
805fc799 959 ppc64_elf_unhandled_reloc, /* special_function */
5bd4f169 960 "R_PPC64_PLTREL64", /* name */
b34976b6 961 FALSE, /* partial_inplace */
5bd4f169 962 0, /* src_mask */
f5e87a1d 963 ONES (64), /* dst_mask */
b34976b6 964 TRUE), /* pcrel_offset */
5bd4f169
AM
965
966 /* 16 bit TOC-relative relocation. */
967
968 /* R_PPC64_TOC16 47 half16* S + A - .TOC. */
969 HOWTO (R_PPC64_TOC16, /* type */
970 0, /* rightshift */
971 1, /* size (0 = byte, 1 = short, 2 = long) */
972 16, /* bitsize */
b34976b6 973 FALSE, /* pc_relative */
5bd4f169
AM
974 0, /* bitpos */
975 complain_overflow_signed, /* complain_on_overflow */
805fc799 976 ppc64_elf_toc_reloc, /* special_function */
5bd4f169 977 "R_PPC64_TOC16", /* name */
b34976b6 978 FALSE, /* partial_inplace */
5bd4f169
AM
979 0, /* src_mask */
980 0xffff, /* dst_mask */
b34976b6 981 FALSE), /* pcrel_offset */
5bd4f169
AM
982
983 /* 16 bit TOC-relative relocation without overflow. */
984
985 /* R_PPC64_TOC16_LO 48 half16 #lo (S + A - .TOC.) */
986 HOWTO (R_PPC64_TOC16_LO, /* type */
987 0, /* rightshift */
988 1, /* size (0 = byte, 1 = short, 2 = long) */
989 16, /* bitsize */
b34976b6 990 FALSE, /* pc_relative */
5bd4f169
AM
991 0, /* bitpos */
992 complain_overflow_dont, /* complain_on_overflow */
805fc799 993 ppc64_elf_toc_reloc, /* special_function */
5bd4f169 994 "R_PPC64_TOC16_LO", /* name */
b34976b6 995 FALSE, /* partial_inplace */
5bd4f169
AM
996 0, /* src_mask */
997 0xffff, /* dst_mask */
b34976b6 998 FALSE), /* pcrel_offset */
5bd4f169
AM
999
1000 /* 16 bit TOC-relative relocation, high 16 bits. */
1001
1002 /* R_PPC64_TOC16_HI 49 half16 #hi (S + A - .TOC.) */
1003 HOWTO (R_PPC64_TOC16_HI, /* type */
1004 16, /* rightshift */
1005 1, /* size (0 = byte, 1 = short, 2 = long) */
1006 16, /* bitsize */
b34976b6 1007 FALSE, /* pc_relative */
5bd4f169 1008 0, /* bitpos */
f9c6b907 1009 complain_overflow_signed, /* complain_on_overflow */
805fc799 1010 ppc64_elf_toc_reloc, /* special_function */
5bd4f169 1011 "R_PPC64_TOC16_HI", /* name */
b34976b6 1012 FALSE, /* partial_inplace */
5bd4f169
AM
1013 0, /* src_mask */
1014 0xffff, /* dst_mask */
b34976b6 1015 FALSE), /* pcrel_offset */
5bd4f169
AM
1016
1017 /* 16 bit TOC-relative relocation, high 16 bits, plus 1 if the
1018 contents of the low 16 bits, treated as a signed number, is
1019 negative. */
1020
1021 /* R_PPC64_TOC16_HA 50 half16 #ha (S + A - .TOC.) */
1022 HOWTO (R_PPC64_TOC16_HA, /* type */
1023 16, /* rightshift */
1024 1, /* size (0 = byte, 1 = short, 2 = long) */
1025 16, /* bitsize */
b34976b6 1026 FALSE, /* pc_relative */
5bd4f169 1027 0, /* bitpos */
f9c6b907 1028 complain_overflow_signed, /* complain_on_overflow */
805fc799 1029 ppc64_elf_toc_ha_reloc, /* special_function */
5bd4f169 1030 "R_PPC64_TOC16_HA", /* name */
b34976b6 1031 FALSE, /* partial_inplace */
5bd4f169
AM
1032 0, /* src_mask */
1033 0xffff, /* dst_mask */
b34976b6 1034 FALSE), /* pcrel_offset */
5bd4f169
AM
1035
1036 /* 64-bit relocation; insert value of TOC base (.TOC.). */
1037
1038 /* R_PPC64_TOC 51 doubleword64 .TOC. */
1039 HOWTO (R_PPC64_TOC, /* type */
1040 0, /* rightshift */
1041 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
1042 64, /* bitsize */
b34976b6 1043 FALSE, /* pc_relative */
5bd4f169 1044 0, /* bitpos */
b80eed39 1045 complain_overflow_dont, /* complain_on_overflow */
805fc799 1046 ppc64_elf_toc64_reloc, /* special_function */
5bd4f169 1047 "R_PPC64_TOC", /* name */
b34976b6 1048 FALSE, /* partial_inplace */
5bd4f169 1049 0, /* src_mask */
f5e87a1d 1050 ONES (64), /* dst_mask */
b34976b6 1051 FALSE), /* pcrel_offset */
5bd4f169
AM
1052
1053 /* Like R_PPC64_GOT16, but also informs the link editor that the
1054 value to relocate may (!) refer to a PLT entry which the link
1055 editor (a) may replace with the symbol value. If the link editor
1056 is unable to fully resolve the symbol, it may (b) create a PLT
1057 entry and store the address to the new PLT entry in the GOT.
1058 This permits lazy resolution of function symbols at run time.
1059 The link editor may also skip all of this and just (c) emit a
1060 R_PPC64_GLOB_DAT to tie the symbol to the GOT entry. */
1061 /* FIXME: R_PPC64_PLTGOT16 not implemented. */
1062 HOWTO (R_PPC64_PLTGOT16, /* type */
1063 0, /* rightshift */
1064 1, /* size (0 = byte, 1 = short, 2 = long) */
1065 16, /* bitsize */
b34976b6 1066 FALSE, /* pc_relative */
5bd4f169
AM
1067 0, /* bitpos */
1068 complain_overflow_signed, /* complain_on_overflow */
805fc799 1069 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb
AM
1070 "R_PPC64_PLTGOT16", /* name */
1071 FALSE, /* partial_inplace */
1072 0, /* src_mask */
1073 0xffff, /* dst_mask */
1074 FALSE), /* pcrel_offset */
1075
1076 /* Like R_PPC64_PLTGOT16, but without overflow. */
1077 /* FIXME: R_PPC64_PLTGOT16_LO not implemented. */
1078 HOWTO (R_PPC64_PLTGOT16_LO, /* type */
1079 0, /* rightshift */
1080 1, /* size (0 = byte, 1 = short, 2 = long) */
1081 16, /* bitsize */
1082 FALSE, /* pc_relative */
1083 0, /* bitpos */
1084 complain_overflow_dont, /* complain_on_overflow */
1085 ppc64_elf_unhandled_reloc, /* special_function */
1086 "R_PPC64_PLTGOT16_LO", /* name */
1087 FALSE, /* partial_inplace */
1088 0, /* src_mask */
1089 0xffff, /* dst_mask */
1090 FALSE), /* pcrel_offset */
1091
1092 /* Like R_PPC64_PLT_GOT16, but using bits 16-31 of the address. */
1093 /* FIXME: R_PPC64_PLTGOT16_HI not implemented. */
1094 HOWTO (R_PPC64_PLTGOT16_HI, /* type */
1095 16, /* rightshift */
1096 1, /* size (0 = byte, 1 = short, 2 = long) */
1097 16, /* bitsize */
1098 FALSE, /* pc_relative */
1099 0, /* bitpos */
f9c6b907 1100 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1101 ppc64_elf_unhandled_reloc, /* special_function */
1102 "R_PPC64_PLTGOT16_HI", /* name */
1103 FALSE, /* partial_inplace */
1104 0, /* src_mask */
1105 0xffff, /* dst_mask */
1106 FALSE), /* pcrel_offset */
1107
1108 /* Like R_PPC64_PLT_GOT16, but using bits 16-31 of the address, plus
1109 1 if the contents of the low 16 bits, treated as a signed number,
1110 is negative. */
1111 /* FIXME: R_PPC64_PLTGOT16_HA not implemented. */
1112 HOWTO (R_PPC64_PLTGOT16_HA, /* type */
1113 16, /* rightshift */
1114 1, /* size (0 = byte, 1 = short, 2 = long) */
1115 16, /* bitsize */
1116 FALSE, /* pc_relative */
1117 0, /* bitpos */
f9c6b907 1118 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1119 ppc64_elf_unhandled_reloc, /* special_function */
1120 "R_PPC64_PLTGOT16_HA", /* name */
1121 FALSE, /* partial_inplace */
1122 0, /* src_mask */
1123 0xffff, /* dst_mask */
1124 FALSE), /* pcrel_offset */
1125
1126 /* Like R_PPC64_ADDR16, but for instructions with a DS field. */
1127 HOWTO (R_PPC64_ADDR16_DS, /* type */
1128 0, /* rightshift */
1129 1, /* size (0 = byte, 1 = short, 2 = long) */
1130 16, /* bitsize */
1131 FALSE, /* pc_relative */
1132 0, /* bitpos */
b80eed39 1133 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1134 bfd_elf_generic_reloc, /* special_function */
1135 "R_PPC64_ADDR16_DS", /* name */
1136 FALSE, /* partial_inplace */
1137 0, /* src_mask */
1138 0xfffc, /* dst_mask */
1139 FALSE), /* pcrel_offset */
1140
1141 /* Like R_PPC64_ADDR16_LO, but for instructions with a DS field. */
1142 HOWTO (R_PPC64_ADDR16_LO_DS, /* type */
1143 0, /* rightshift */
1144 1, /* size (0 = byte, 1 = short, 2 = long) */
1145 16, /* bitsize */
1146 FALSE, /* pc_relative */
1147 0, /* bitpos */
1148 complain_overflow_dont,/* complain_on_overflow */
1149 bfd_elf_generic_reloc, /* special_function */
1150 "R_PPC64_ADDR16_LO_DS",/* name */
1151 FALSE, /* partial_inplace */
1152 0, /* src_mask */
1153 0xfffc, /* dst_mask */
1154 FALSE), /* pcrel_offset */
1155
1156 /* Like R_PPC64_GOT16, but for instructions with a DS field. */
1157 HOWTO (R_PPC64_GOT16_DS, /* type */
1158 0, /* rightshift */
1159 1, /* size (0 = byte, 1 = short, 2 = long) */
1160 16, /* bitsize */
1161 FALSE, /* pc_relative */
1162 0, /* bitpos */
1163 complain_overflow_signed, /* complain_on_overflow */
1164 ppc64_elf_unhandled_reloc, /* special_function */
1165 "R_PPC64_GOT16_DS", /* name */
1166 FALSE, /* partial_inplace */
1167 0, /* src_mask */
1168 0xfffc, /* dst_mask */
1169 FALSE), /* pcrel_offset */
1170
1171 /* Like R_PPC64_GOT16_LO, but for instructions with a DS field. */
1172 HOWTO (R_PPC64_GOT16_LO_DS, /* type */
1173 0, /* rightshift */
1174 1, /* size (0 = byte, 1 = short, 2 = long) */
1175 16, /* bitsize */
1176 FALSE, /* pc_relative */
1177 0, /* bitpos */
1178 complain_overflow_dont, /* complain_on_overflow */
1179 ppc64_elf_unhandled_reloc, /* special_function */
1180 "R_PPC64_GOT16_LO_DS", /* name */
1181 FALSE, /* partial_inplace */
1182 0, /* src_mask */
1183 0xfffc, /* dst_mask */
1184 FALSE), /* pcrel_offset */
1185
1186 /* Like R_PPC64_PLT16_LO, but for instructions with a DS field. */
1187 HOWTO (R_PPC64_PLT16_LO_DS, /* type */
1188 0, /* rightshift */
1189 1, /* size (0 = byte, 1 = short, 2 = long) */
1190 16, /* bitsize */
1191 FALSE, /* pc_relative */
1192 0, /* bitpos */
1193 complain_overflow_dont, /* complain_on_overflow */
1194 ppc64_elf_unhandled_reloc, /* special_function */
1195 "R_PPC64_PLT16_LO_DS", /* name */
1196 FALSE, /* partial_inplace */
1197 0, /* src_mask */
1198 0xfffc, /* dst_mask */
1199 FALSE), /* pcrel_offset */
1200
1201 /* Like R_PPC64_SECTOFF, but for instructions with a DS field. */
1202 HOWTO (R_PPC64_SECTOFF_DS, /* type */
1203 0, /* rightshift */
1204 1, /* size (0 = byte, 1 = short, 2 = long) */
1205 16, /* bitsize */
1206 FALSE, /* pc_relative */
1207 0, /* bitpos */
b80eed39 1208 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1209 ppc64_elf_sectoff_reloc, /* special_function */
1210 "R_PPC64_SECTOFF_DS", /* name */
1211 FALSE, /* partial_inplace */
1212 0, /* src_mask */
1213 0xfffc, /* dst_mask */
1214 FALSE), /* pcrel_offset */
1215
1216 /* Like R_PPC64_SECTOFF_LO, but for instructions with a DS field. */
1217 HOWTO (R_PPC64_SECTOFF_LO_DS, /* type */
1218 0, /* rightshift */
1219 1, /* size (0 = byte, 1 = short, 2 = long) */
1220 16, /* bitsize */
1221 FALSE, /* pc_relative */
1222 0, /* bitpos */
1223 complain_overflow_dont, /* complain_on_overflow */
1224 ppc64_elf_sectoff_reloc, /* special_function */
1225 "R_PPC64_SECTOFF_LO_DS",/* name */
1226 FALSE, /* partial_inplace */
1227 0, /* src_mask */
1228 0xfffc, /* dst_mask */
1229 FALSE), /* pcrel_offset */
1230
1231 /* Like R_PPC64_TOC16, but for instructions with a DS field. */
1232 HOWTO (R_PPC64_TOC16_DS, /* type */
1233 0, /* rightshift */
1234 1, /* size (0 = byte, 1 = short, 2 = long) */
1235 16, /* bitsize */
1236 FALSE, /* pc_relative */
1237 0, /* bitpos */
1238 complain_overflow_signed, /* complain_on_overflow */
1239 ppc64_elf_toc_reloc, /* special_function */
1240 "R_PPC64_TOC16_DS", /* name */
1241 FALSE, /* partial_inplace */
1242 0, /* src_mask */
1243 0xfffc, /* dst_mask */
1244 FALSE), /* pcrel_offset */
1245
1246 /* Like R_PPC64_TOC16_LO, but for instructions with a DS field. */
1247 HOWTO (R_PPC64_TOC16_LO_DS, /* type */
1248 0, /* rightshift */
1249 1, /* size (0 = byte, 1 = short, 2 = long) */
1250 16, /* bitsize */
1251 FALSE, /* pc_relative */
1252 0, /* bitpos */
1253 complain_overflow_dont, /* complain_on_overflow */
1254 ppc64_elf_toc_reloc, /* special_function */
1255 "R_PPC64_TOC16_LO_DS", /* name */
1256 FALSE, /* partial_inplace */
1257 0, /* src_mask */
1258 0xfffc, /* dst_mask */
1259 FALSE), /* pcrel_offset */
1260
1261 /* Like R_PPC64_PLTGOT16, but for instructions with a DS field. */
1262 /* FIXME: R_PPC64_PLTGOT16_DS not implemented. */
6bfdb61b 1263 HOWTO (R_PPC64_PLTGOT16_DS, /* type */
411e1bfb
AM
1264 0, /* rightshift */
1265 1, /* size (0 = byte, 1 = short, 2 = long) */
1266 16, /* bitsize */
1267 FALSE, /* pc_relative */
1268 0, /* bitpos */
1269 complain_overflow_signed, /* complain_on_overflow */
1270 ppc64_elf_unhandled_reloc, /* special_function */
1271 "R_PPC64_PLTGOT16_DS", /* name */
1272 FALSE, /* partial_inplace */
1273 0, /* src_mask */
1274 0xfffc, /* dst_mask */
1275 FALSE), /* pcrel_offset */
1276
1277 /* Like R_PPC64_PLTGOT16_LO, but for instructions with a DS field. */
1278 /* FIXME: R_PPC64_PLTGOT16_LO not implemented. */
1279 HOWTO (R_PPC64_PLTGOT16_LO_DS,/* type */
1280 0, /* rightshift */
1281 1, /* size (0 = byte, 1 = short, 2 = long) */
1282 16, /* bitsize */
1283 FALSE, /* pc_relative */
1284 0, /* bitpos */
1285 complain_overflow_dont, /* complain_on_overflow */
1286 ppc64_elf_unhandled_reloc, /* special_function */
1287 "R_PPC64_PLTGOT16_LO_DS",/* name */
1288 FALSE, /* partial_inplace */
1289 0, /* src_mask */
1290 0xfffc, /* dst_mask */
1291 FALSE), /* pcrel_offset */
1292
727fc41e 1293 /* Marker relocs for TLS. */
411e1bfb
AM
1294 HOWTO (R_PPC64_TLS,
1295 0, /* rightshift */
1296 2, /* size (0 = byte, 1 = short, 2 = long) */
1297 32, /* bitsize */
1298 FALSE, /* pc_relative */
1299 0, /* bitpos */
1300 complain_overflow_dont, /* complain_on_overflow */
1301 bfd_elf_generic_reloc, /* special_function */
1302 "R_PPC64_TLS", /* name */
1303 FALSE, /* partial_inplace */
1304 0, /* src_mask */
1305 0, /* dst_mask */
1306 FALSE), /* pcrel_offset */
1307
727fc41e
AM
1308 HOWTO (R_PPC64_TLSGD,
1309 0, /* rightshift */
1310 2, /* size (0 = byte, 1 = short, 2 = long) */
1311 32, /* bitsize */
1312 FALSE, /* pc_relative */
1313 0, /* bitpos */
1314 complain_overflow_dont, /* complain_on_overflow */
1315 bfd_elf_generic_reloc, /* special_function */
1316 "R_PPC64_TLSGD", /* name */
1317 FALSE, /* partial_inplace */
1318 0, /* src_mask */
1319 0, /* dst_mask */
1320 FALSE), /* pcrel_offset */
1321
1322 HOWTO (R_PPC64_TLSLD,
1323 0, /* rightshift */
1324 2, /* size (0 = byte, 1 = short, 2 = long) */
1325 32, /* bitsize */
1326 FALSE, /* pc_relative */
1327 0, /* bitpos */
1328 complain_overflow_dont, /* complain_on_overflow */
1329 bfd_elf_generic_reloc, /* special_function */
1330 "R_PPC64_TLSLD", /* name */
1331 FALSE, /* partial_inplace */
1332 0, /* src_mask */
1333 0, /* dst_mask */
1334 FALSE), /* pcrel_offset */
1335
3b421ab3
AM
1336 HOWTO (R_PPC64_TOCSAVE,
1337 0, /* rightshift */
1338 2, /* size (0 = byte, 1 = short, 2 = long) */
1339 32, /* bitsize */
1340 FALSE, /* pc_relative */
1341 0, /* bitpos */
1342 complain_overflow_dont, /* complain_on_overflow */
1343 bfd_elf_generic_reloc, /* special_function */
1344 "R_PPC64_TOCSAVE", /* name */
1345 FALSE, /* partial_inplace */
1346 0, /* src_mask */
1347 0, /* dst_mask */
1348 FALSE), /* pcrel_offset */
1349
411e1bfb
AM
1350 /* Computes the load module index of the load module that contains the
1351 definition of its TLS sym. */
1352 HOWTO (R_PPC64_DTPMOD64,
1353 0, /* rightshift */
1354 4, /* size (0 = byte, 1 = short, 2 = long) */
1355 64, /* bitsize */
1356 FALSE, /* pc_relative */
1357 0, /* bitpos */
1358 complain_overflow_dont, /* complain_on_overflow */
1359 ppc64_elf_unhandled_reloc, /* special_function */
1360 "R_PPC64_DTPMOD64", /* name */
1361 FALSE, /* partial_inplace */
1362 0, /* src_mask */
1363 ONES (64), /* dst_mask */
1364 FALSE), /* pcrel_offset */
1365
1366 /* Computes a dtv-relative displacement, the difference between the value
1367 of sym+add and the base address of the thread-local storage block that
1368 contains the definition of sym, minus 0x8000. */
1369 HOWTO (R_PPC64_DTPREL64,
1370 0, /* rightshift */
1371 4, /* size (0 = byte, 1 = short, 2 = long) */
1372 64, /* bitsize */
1373 FALSE, /* pc_relative */
1374 0, /* bitpos */
1375 complain_overflow_dont, /* complain_on_overflow */
1376 ppc64_elf_unhandled_reloc, /* special_function */
1377 "R_PPC64_DTPREL64", /* name */
1378 FALSE, /* partial_inplace */
1379 0, /* src_mask */
1380 ONES (64), /* dst_mask */
1381 FALSE), /* pcrel_offset */
1382
1383 /* A 16 bit dtprel reloc. */
1384 HOWTO (R_PPC64_DTPREL16,
1385 0, /* rightshift */
1386 1, /* size (0 = byte, 1 = short, 2 = long) */
1387 16, /* bitsize */
1388 FALSE, /* pc_relative */
1389 0, /* bitpos */
1390 complain_overflow_signed, /* complain_on_overflow */
1391 ppc64_elf_unhandled_reloc, /* special_function */
1392 "R_PPC64_DTPREL16", /* name */
1393 FALSE, /* partial_inplace */
1394 0, /* src_mask */
1395 0xffff, /* dst_mask */
1396 FALSE), /* pcrel_offset */
1397
1398 /* Like DTPREL16, but no overflow. */
1399 HOWTO (R_PPC64_DTPREL16_LO,
1400 0, /* rightshift */
1401 1, /* size (0 = byte, 1 = short, 2 = long) */
1402 16, /* bitsize */
1403 FALSE, /* pc_relative */
1404 0, /* bitpos */
1405 complain_overflow_dont, /* complain_on_overflow */
1406 ppc64_elf_unhandled_reloc, /* special_function */
1407 "R_PPC64_DTPREL16_LO", /* name */
1408 FALSE, /* partial_inplace */
1409 0, /* src_mask */
1410 0xffff, /* dst_mask */
1411 FALSE), /* pcrel_offset */
1412
1413 /* Like DTPREL16_LO, but next higher group of 16 bits. */
1414 HOWTO (R_PPC64_DTPREL16_HI,
1415 16, /* rightshift */
1416 1, /* size (0 = byte, 1 = short, 2 = long) */
1417 16, /* bitsize */
1418 FALSE, /* pc_relative */
1419 0, /* bitpos */
f9c6b907 1420 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1421 ppc64_elf_unhandled_reloc, /* special_function */
1422 "R_PPC64_DTPREL16_HI", /* name */
1423 FALSE, /* partial_inplace */
1424 0, /* src_mask */
1425 0xffff, /* dst_mask */
1426 FALSE), /* pcrel_offset */
1427
1428 /* Like DTPREL16_HI, but adjust for low 16 bits. */
1429 HOWTO (R_PPC64_DTPREL16_HA,
1430 16, /* rightshift */
1431 1, /* size (0 = byte, 1 = short, 2 = long) */
1432 16, /* bitsize */
1433 FALSE, /* pc_relative */
1434 0, /* bitpos */
f9c6b907 1435 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1436 ppc64_elf_unhandled_reloc, /* special_function */
1437 "R_PPC64_DTPREL16_HA", /* name */
1438 FALSE, /* partial_inplace */
1439 0, /* src_mask */
1440 0xffff, /* dst_mask */
1441 FALSE), /* pcrel_offset */
1442
1443 /* Like DTPREL16_HI, but next higher group of 16 bits. */
1444 HOWTO (R_PPC64_DTPREL16_HIGHER,
1445 32, /* rightshift */
1446 1, /* size (0 = byte, 1 = short, 2 = long) */
1447 16, /* bitsize */
1448 FALSE, /* pc_relative */
1449 0, /* bitpos */
1450 complain_overflow_dont, /* complain_on_overflow */
1451 ppc64_elf_unhandled_reloc, /* special_function */
1452 "R_PPC64_DTPREL16_HIGHER", /* name */
1453 FALSE, /* partial_inplace */
1454 0, /* src_mask */
1455 0xffff, /* dst_mask */
1456 FALSE), /* pcrel_offset */
1457
1458 /* Like DTPREL16_HIGHER, but adjust for low 16 bits. */
1459 HOWTO (R_PPC64_DTPREL16_HIGHERA,
1460 32, /* rightshift */
1461 1, /* size (0 = byte, 1 = short, 2 = long) */
1462 16, /* bitsize */
1463 FALSE, /* pc_relative */
1464 0, /* bitpos */
1465 complain_overflow_dont, /* complain_on_overflow */
1466 ppc64_elf_unhandled_reloc, /* special_function */
1467 "R_PPC64_DTPREL16_HIGHERA", /* name */
1468 FALSE, /* partial_inplace */
1469 0, /* src_mask */
1470 0xffff, /* dst_mask */
1471 FALSE), /* pcrel_offset */
1472
1473 /* Like DTPREL16_HIGHER, but next higher group of 16 bits. */
1474 HOWTO (R_PPC64_DTPREL16_HIGHEST,
1475 48, /* rightshift */
1476 1, /* size (0 = byte, 1 = short, 2 = long) */
1477 16, /* bitsize */
1478 FALSE, /* pc_relative */
1479 0, /* bitpos */
1480 complain_overflow_dont, /* complain_on_overflow */
1481 ppc64_elf_unhandled_reloc, /* special_function */
1482 "R_PPC64_DTPREL16_HIGHEST", /* name */
1483 FALSE, /* partial_inplace */
1484 0, /* src_mask */
1485 0xffff, /* dst_mask */
1486 FALSE), /* pcrel_offset */
1487
1488 /* Like DTPREL16_HIGHEST, but adjust for low 16 bits. */
1489 HOWTO (R_PPC64_DTPREL16_HIGHESTA,
1490 48, /* rightshift */
1491 1, /* size (0 = byte, 1 = short, 2 = long) */
1492 16, /* bitsize */
1493 FALSE, /* pc_relative */
1494 0, /* bitpos */
1495 complain_overflow_dont, /* complain_on_overflow */
1496 ppc64_elf_unhandled_reloc, /* special_function */
1497 "R_PPC64_DTPREL16_HIGHESTA", /* name */
1498 FALSE, /* partial_inplace */
1499 0, /* src_mask */
1500 0xffff, /* dst_mask */
1501 FALSE), /* pcrel_offset */
1502
1503 /* Like DTPREL16, but for insns with a DS field. */
1504 HOWTO (R_PPC64_DTPREL16_DS,
1505 0, /* rightshift */
1506 1, /* size (0 = byte, 1 = short, 2 = long) */
1507 16, /* bitsize */
1508 FALSE, /* pc_relative */
1509 0, /* bitpos */
1510 complain_overflow_signed, /* complain_on_overflow */
1511 ppc64_elf_unhandled_reloc, /* special_function */
1512 "R_PPC64_DTPREL16_DS", /* name */
1513 FALSE, /* partial_inplace */
1514 0, /* src_mask */
1515 0xfffc, /* dst_mask */
1516 FALSE), /* pcrel_offset */
1517
1518 /* Like DTPREL16_DS, but no overflow. */
1519 HOWTO (R_PPC64_DTPREL16_LO_DS,
1520 0, /* rightshift */
1521 1, /* size (0 = byte, 1 = short, 2 = long) */
1522 16, /* bitsize */
1523 FALSE, /* pc_relative */
1524 0, /* bitpos */
1525 complain_overflow_dont, /* complain_on_overflow */
1526 ppc64_elf_unhandled_reloc, /* special_function */
1527 "R_PPC64_DTPREL16_LO_DS", /* name */
1528 FALSE, /* partial_inplace */
1529 0, /* src_mask */
1530 0xfffc, /* dst_mask */
1531 FALSE), /* pcrel_offset */
1532
1533 /* Computes a tp-relative displacement, the difference between the value of
1534 sym+add and the value of the thread pointer (r13). */
1535 HOWTO (R_PPC64_TPREL64,
1536 0, /* rightshift */
1537 4, /* size (0 = byte, 1 = short, 2 = long) */
1538 64, /* bitsize */
1539 FALSE, /* pc_relative */
1540 0, /* bitpos */
1541 complain_overflow_dont, /* complain_on_overflow */
1542 ppc64_elf_unhandled_reloc, /* special_function */
1543 "R_PPC64_TPREL64", /* name */
1544 FALSE, /* partial_inplace */
1545 0, /* src_mask */
1546 ONES (64), /* dst_mask */
1547 FALSE), /* pcrel_offset */
1548
1549 /* A 16 bit tprel reloc. */
1550 HOWTO (R_PPC64_TPREL16,
1551 0, /* rightshift */
1552 1, /* size (0 = byte, 1 = short, 2 = long) */
1553 16, /* bitsize */
1554 FALSE, /* pc_relative */
1555 0, /* bitpos */
1556 complain_overflow_signed, /* complain_on_overflow */
1557 ppc64_elf_unhandled_reloc, /* special_function */
1558 "R_PPC64_TPREL16", /* name */
1559 FALSE, /* partial_inplace */
1560 0, /* src_mask */
1561 0xffff, /* dst_mask */
1562 FALSE), /* pcrel_offset */
1563
1564 /* Like TPREL16, but no overflow. */
1565 HOWTO (R_PPC64_TPREL16_LO,
1566 0, /* rightshift */
1567 1, /* size (0 = byte, 1 = short, 2 = long) */
1568 16, /* bitsize */
1569 FALSE, /* pc_relative */
1570 0, /* bitpos */
1571 complain_overflow_dont, /* complain_on_overflow */
1572 ppc64_elf_unhandled_reloc, /* special_function */
1573 "R_PPC64_TPREL16_LO", /* name */
1574 FALSE, /* partial_inplace */
1575 0, /* src_mask */
1576 0xffff, /* dst_mask */
1577 FALSE), /* pcrel_offset */
1578
1579 /* Like TPREL16_LO, but next higher group of 16 bits. */
1580 HOWTO (R_PPC64_TPREL16_HI,
1581 16, /* rightshift */
1582 1, /* size (0 = byte, 1 = short, 2 = long) */
1583 16, /* bitsize */
1584 FALSE, /* pc_relative */
1585 0, /* bitpos */
f9c6b907 1586 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1587 ppc64_elf_unhandled_reloc, /* special_function */
1588 "R_PPC64_TPREL16_HI", /* name */
1589 FALSE, /* partial_inplace */
1590 0, /* src_mask */
1591 0xffff, /* dst_mask */
1592 FALSE), /* pcrel_offset */
1593
1594 /* Like TPREL16_HI, but adjust for low 16 bits. */
1595 HOWTO (R_PPC64_TPREL16_HA,
1596 16, /* rightshift */
1597 1, /* size (0 = byte, 1 = short, 2 = long) */
1598 16, /* bitsize */
1599 FALSE, /* pc_relative */
1600 0, /* bitpos */
f9c6b907 1601 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1602 ppc64_elf_unhandled_reloc, /* special_function */
1603 "R_PPC64_TPREL16_HA", /* name */
1604 FALSE, /* partial_inplace */
1605 0, /* src_mask */
1606 0xffff, /* dst_mask */
1607 FALSE), /* pcrel_offset */
1608
1609 /* Like TPREL16_HI, but next higher group of 16 bits. */
1610 HOWTO (R_PPC64_TPREL16_HIGHER,
1611 32, /* rightshift */
1612 1, /* size (0 = byte, 1 = short, 2 = long) */
1613 16, /* bitsize */
1614 FALSE, /* pc_relative */
1615 0, /* bitpos */
1616 complain_overflow_dont, /* complain_on_overflow */
1617 ppc64_elf_unhandled_reloc, /* special_function */
1618 "R_PPC64_TPREL16_HIGHER", /* name */
1619 FALSE, /* partial_inplace */
1620 0, /* src_mask */
1621 0xffff, /* dst_mask */
1622 FALSE), /* pcrel_offset */
1623
1624 /* Like TPREL16_HIGHER, but adjust for low 16 bits. */
1625 HOWTO (R_PPC64_TPREL16_HIGHERA,
1626 32, /* rightshift */
1627 1, /* size (0 = byte, 1 = short, 2 = long) */
1628 16, /* bitsize */
1629 FALSE, /* pc_relative */
1630 0, /* bitpos */
1631 complain_overflow_dont, /* complain_on_overflow */
1632 ppc64_elf_unhandled_reloc, /* special_function */
1633 "R_PPC64_TPREL16_HIGHERA", /* name */
1634 FALSE, /* partial_inplace */
1635 0, /* src_mask */
1636 0xffff, /* dst_mask */
1637 FALSE), /* pcrel_offset */
1638
1639 /* Like TPREL16_HIGHER, but next higher group of 16 bits. */
1640 HOWTO (R_PPC64_TPREL16_HIGHEST,
1641 48, /* rightshift */
1642 1, /* size (0 = byte, 1 = short, 2 = long) */
1643 16, /* bitsize */
1644 FALSE, /* pc_relative */
1645 0, /* bitpos */
1646 complain_overflow_dont, /* complain_on_overflow */
1647 ppc64_elf_unhandled_reloc, /* special_function */
1648 "R_PPC64_TPREL16_HIGHEST", /* name */
1649 FALSE, /* partial_inplace */
1650 0, /* src_mask */
1651 0xffff, /* dst_mask */
1652 FALSE), /* pcrel_offset */
1653
1654 /* Like TPREL16_HIGHEST, but adjust for low 16 bits. */
1655 HOWTO (R_PPC64_TPREL16_HIGHESTA,
1656 48, /* rightshift */
1657 1, /* size (0 = byte, 1 = short, 2 = long) */
1658 16, /* bitsize */
1659 FALSE, /* pc_relative */
1660 0, /* bitpos */
1661 complain_overflow_dont, /* complain_on_overflow */
1662 ppc64_elf_unhandled_reloc, /* special_function */
1663 "R_PPC64_TPREL16_HIGHESTA", /* name */
1664 FALSE, /* partial_inplace */
1665 0, /* src_mask */
1666 0xffff, /* dst_mask */
1667 FALSE), /* pcrel_offset */
1668
1669 /* Like TPREL16, but for insns with a DS field. */
1670 HOWTO (R_PPC64_TPREL16_DS,
1671 0, /* rightshift */
1672 1, /* size (0 = byte, 1 = short, 2 = long) */
1673 16, /* bitsize */
1674 FALSE, /* pc_relative */
1675 0, /* bitpos */
1676 complain_overflow_signed, /* complain_on_overflow */
1677 ppc64_elf_unhandled_reloc, /* special_function */
1678 "R_PPC64_TPREL16_DS", /* name */
1679 FALSE, /* partial_inplace */
1680 0, /* src_mask */
1681 0xfffc, /* dst_mask */
1682 FALSE), /* pcrel_offset */
1683
1684 /* Like TPREL16_DS, but no overflow. */
1685 HOWTO (R_PPC64_TPREL16_LO_DS,
1686 0, /* rightshift */
1687 1, /* size (0 = byte, 1 = short, 2 = long) */
1688 16, /* bitsize */
1689 FALSE, /* pc_relative */
1690 0, /* bitpos */
1691 complain_overflow_dont, /* complain_on_overflow */
1692 ppc64_elf_unhandled_reloc, /* special_function */
1693 "R_PPC64_TPREL16_LO_DS", /* name */
1694 FALSE, /* partial_inplace */
1695 0, /* src_mask */
1696 0xfffc, /* dst_mask */
1697 FALSE), /* pcrel_offset */
1698
1699 /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
1700 with values (sym+add)@dtpmod and (sym+add)@dtprel, and computes the offset
1701 to the first entry relative to the TOC base (r2). */
1702 HOWTO (R_PPC64_GOT_TLSGD16,
1703 0, /* rightshift */
1704 1, /* size (0 = byte, 1 = short, 2 = long) */
1705 16, /* bitsize */
1706 FALSE, /* pc_relative */
1707 0, /* bitpos */
1708 complain_overflow_signed, /* complain_on_overflow */
1709 ppc64_elf_unhandled_reloc, /* special_function */
1710 "R_PPC64_GOT_TLSGD16", /* name */
b34976b6 1711 FALSE, /* partial_inplace */
5bd4f169
AM
1712 0, /* src_mask */
1713 0xffff, /* dst_mask */
b34976b6 1714 FALSE), /* pcrel_offset */
5bd4f169 1715
411e1bfb
AM
1716 /* Like GOT_TLSGD16, but no overflow. */
1717 HOWTO (R_PPC64_GOT_TLSGD16_LO,
5bd4f169
AM
1718 0, /* rightshift */
1719 1, /* size (0 = byte, 1 = short, 2 = long) */
1720 16, /* bitsize */
b34976b6 1721 FALSE, /* pc_relative */
5bd4f169
AM
1722 0, /* bitpos */
1723 complain_overflow_dont, /* complain_on_overflow */
805fc799 1724 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb 1725 "R_PPC64_GOT_TLSGD16_LO", /* name */
b34976b6 1726 FALSE, /* partial_inplace */
5bd4f169
AM
1727 0, /* src_mask */
1728 0xffff, /* dst_mask */
b34976b6 1729 FALSE), /* pcrel_offset */
5bd4f169 1730
411e1bfb
AM
1731 /* Like GOT_TLSGD16_LO, but next higher group of 16 bits. */
1732 HOWTO (R_PPC64_GOT_TLSGD16_HI,
5bd4f169
AM
1733 16, /* rightshift */
1734 1, /* size (0 = byte, 1 = short, 2 = long) */
1735 16, /* bitsize */
b34976b6 1736 FALSE, /* pc_relative */
5bd4f169 1737 0, /* bitpos */
f9c6b907 1738 complain_overflow_signed, /* complain_on_overflow */
805fc799 1739 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb 1740 "R_PPC64_GOT_TLSGD16_HI", /* name */
b34976b6 1741 FALSE, /* partial_inplace */
5bd4f169
AM
1742 0, /* src_mask */
1743 0xffff, /* dst_mask */
b34976b6 1744 FALSE), /* pcrel_offset */
5bd4f169 1745
411e1bfb
AM
1746 /* Like GOT_TLSGD16_HI, but adjust for low 16 bits. */
1747 HOWTO (R_PPC64_GOT_TLSGD16_HA,
5bd4f169
AM
1748 16, /* rightshift */
1749 1, /* size (0 = byte, 1 = short, 2 = long) */
1750 16, /* bitsize */
b34976b6 1751 FALSE, /* pc_relative */
5bd4f169 1752 0, /* bitpos */
f9c6b907 1753 complain_overflow_signed, /* complain_on_overflow */
805fc799 1754 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb 1755 "R_PPC64_GOT_TLSGD16_HA", /* name */
b34976b6 1756 FALSE, /* partial_inplace */
5bd4f169
AM
1757 0, /* src_mask */
1758 0xffff, /* dst_mask */
b34976b6 1759 FALSE), /* pcrel_offset */
5bd4f169 1760
411e1bfb
AM
1761 /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
1762 with values (sym+add)@dtpmod and zero, and computes the offset to the
1763 first entry relative to the TOC base (r2). */
1764 HOWTO (R_PPC64_GOT_TLSLD16,
5bd4f169
AM
1765 0, /* rightshift */
1766 1, /* size (0 = byte, 1 = short, 2 = long) */
1767 16, /* bitsize */
b34976b6 1768 FALSE, /* pc_relative */
5bd4f169 1769 0, /* bitpos */
411e1bfb
AM
1770 complain_overflow_signed, /* complain_on_overflow */
1771 ppc64_elf_unhandled_reloc, /* special_function */
1772 "R_PPC64_GOT_TLSLD16", /* name */
b34976b6 1773 FALSE, /* partial_inplace */
d006db6c 1774 0, /* src_mask */
411e1bfb 1775 0xffff, /* dst_mask */
b34976b6 1776 FALSE), /* pcrel_offset */
5bd4f169 1777
411e1bfb
AM
1778 /* Like GOT_TLSLD16, but no overflow. */
1779 HOWTO (R_PPC64_GOT_TLSLD16_LO,
5bd4f169
AM
1780 0, /* rightshift */
1781 1, /* size (0 = byte, 1 = short, 2 = long) */
1782 16, /* bitsize */
b34976b6 1783 FALSE, /* pc_relative */
5bd4f169 1784 0, /* bitpos */
411e1bfb
AM
1785 complain_overflow_dont, /* complain_on_overflow */
1786 ppc64_elf_unhandled_reloc, /* special_function */
1787 "R_PPC64_GOT_TLSLD16_LO", /* name */
b34976b6 1788 FALSE, /* partial_inplace */
d006db6c 1789 0, /* src_mask */
411e1bfb 1790 0xffff, /* dst_mask */
b34976b6 1791 FALSE), /* pcrel_offset */
5bd4f169 1792
411e1bfb
AM
1793 /* Like GOT_TLSLD16_LO, but next higher group of 16 bits. */
1794 HOWTO (R_PPC64_GOT_TLSLD16_HI,
1795 16, /* rightshift */
5bd4f169
AM
1796 1, /* size (0 = byte, 1 = short, 2 = long) */
1797 16, /* bitsize */
b34976b6 1798 FALSE, /* pc_relative */
5bd4f169 1799 0, /* bitpos */
f9c6b907 1800 complain_overflow_signed, /* complain_on_overflow */
805fc799 1801 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb 1802 "R_PPC64_GOT_TLSLD16_HI", /* name */
b34976b6 1803 FALSE, /* partial_inplace */
d006db6c 1804 0, /* src_mask */
411e1bfb 1805 0xffff, /* dst_mask */
b34976b6 1806 FALSE), /* pcrel_offset */
5bd4f169 1807
411e1bfb
AM
1808 /* Like GOT_TLSLD16_HI, but adjust for low 16 bits. */
1809 HOWTO (R_PPC64_GOT_TLSLD16_HA,
1810 16, /* rightshift */
5bd4f169
AM
1811 1, /* size (0 = byte, 1 = short, 2 = long) */
1812 16, /* bitsize */
b34976b6 1813 FALSE, /* pc_relative */
5bd4f169 1814 0, /* bitpos */
f9c6b907 1815 complain_overflow_signed, /* complain_on_overflow */
805fc799 1816 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb 1817 "R_PPC64_GOT_TLSLD16_HA", /* name */
b34976b6 1818 FALSE, /* partial_inplace */
d006db6c 1819 0, /* src_mask */
411e1bfb 1820 0xffff, /* dst_mask */
b34976b6 1821 FALSE), /* pcrel_offset */
5bd4f169 1822
411e1bfb
AM
1823 /* Allocates an entry in the GOT with value (sym+add)@dtprel, and computes
1824 the offset to the entry relative to the TOC base (r2). */
1825 HOWTO (R_PPC64_GOT_DTPREL16_DS,
5bd4f169
AM
1826 0, /* rightshift */
1827 1, /* size (0 = byte, 1 = short, 2 = long) */
1828 16, /* bitsize */
b34976b6 1829 FALSE, /* pc_relative */
5bd4f169 1830 0, /* bitpos */
411e1bfb 1831 complain_overflow_signed, /* complain_on_overflow */
805fc799 1832 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb 1833 "R_PPC64_GOT_DTPREL16_DS", /* name */
b34976b6 1834 FALSE, /* partial_inplace */
d006db6c 1835 0, /* src_mask */
5bd4f169 1836 0xfffc, /* dst_mask */
b34976b6 1837 FALSE), /* pcrel_offset */
5bd4f169 1838
411e1bfb
AM
1839 /* Like GOT_DTPREL16_DS, but no overflow. */
1840 HOWTO (R_PPC64_GOT_DTPREL16_LO_DS,
5bd4f169 1841 0, /* rightshift */
c061c2d8
AM
1842 1, /* size (0 = byte, 1 = short, 2 = long) */
1843 16, /* bitsize */
b34976b6 1844 FALSE, /* pc_relative */
5bd4f169 1845 0, /* bitpos */
411e1bfb
AM
1846 complain_overflow_dont, /* complain_on_overflow */
1847 ppc64_elf_unhandled_reloc, /* special_function */
1848 "R_PPC64_GOT_DTPREL16_LO_DS", /* name */
b34976b6 1849 FALSE, /* partial_inplace */
d006db6c 1850 0, /* src_mask */
c061c2d8 1851 0xfffc, /* dst_mask */
b34976b6 1852 FALSE), /* pcrel_offset */
5bd4f169 1853
411e1bfb
AM
1854 /* Like GOT_DTPREL16_LO_DS, but next higher group of 16 bits. */
1855 HOWTO (R_PPC64_GOT_DTPREL16_HI,
1856 16, /* rightshift */
5bd4f169
AM
1857 1, /* size (0 = byte, 1 = short, 2 = long) */
1858 16, /* bitsize */
b34976b6 1859 FALSE, /* pc_relative */
5bd4f169 1860 0, /* bitpos */
f9c6b907 1861 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1862 ppc64_elf_unhandled_reloc, /* special_function */
1863 "R_PPC64_GOT_DTPREL16_HI", /* name */
b34976b6 1864 FALSE, /* partial_inplace */
d006db6c 1865 0, /* src_mask */
411e1bfb 1866 0xffff, /* dst_mask */
b34976b6 1867 FALSE), /* pcrel_offset */
5bd4f169 1868
411e1bfb
AM
1869 /* Like GOT_DTPREL16_HI, but adjust for low 16 bits. */
1870 HOWTO (R_PPC64_GOT_DTPREL16_HA,
1871 16, /* rightshift */
1872 1, /* size (0 = byte, 1 = short, 2 = long) */
1873 16, /* bitsize */
1874 FALSE, /* pc_relative */
1875 0, /* bitpos */
f9c6b907 1876 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1877 ppc64_elf_unhandled_reloc, /* special_function */
1878 "R_PPC64_GOT_DTPREL16_HA", /* name */
1879 FALSE, /* partial_inplace */
1880 0, /* src_mask */
1881 0xffff, /* dst_mask */
1882 FALSE), /* pcrel_offset */
1883
1884 /* Allocates an entry in the GOT with value (sym+add)@tprel, and computes the
1885 offset to the entry relative to the TOC base (r2). */
1886 HOWTO (R_PPC64_GOT_TPREL16_DS,
5bd4f169
AM
1887 0, /* rightshift */
1888 1, /* size (0 = byte, 1 = short, 2 = long) */
1889 16, /* bitsize */
b34976b6 1890 FALSE, /* pc_relative */
5bd4f169
AM
1891 0, /* bitpos */
1892 complain_overflow_signed, /* complain_on_overflow */
411e1bfb
AM
1893 ppc64_elf_unhandled_reloc, /* special_function */
1894 "R_PPC64_GOT_TPREL16_DS", /* name */
b34976b6 1895 FALSE, /* partial_inplace */
d006db6c 1896 0, /* src_mask */
ad8e1ba5 1897 0xfffc, /* dst_mask */
b34976b6 1898 FALSE), /* pcrel_offset */
5bd4f169 1899
411e1bfb
AM
1900 /* Like GOT_TPREL16_DS, but no overflow. */
1901 HOWTO (R_PPC64_GOT_TPREL16_LO_DS,
5bd4f169
AM
1902 0, /* rightshift */
1903 1, /* size (0 = byte, 1 = short, 2 = long) */
1904 16, /* bitsize */
b34976b6 1905 FALSE, /* pc_relative */
5bd4f169
AM
1906 0, /* bitpos */
1907 complain_overflow_dont, /* complain_on_overflow */
411e1bfb
AM
1908 ppc64_elf_unhandled_reloc, /* special_function */
1909 "R_PPC64_GOT_TPREL16_LO_DS", /* name */
b34976b6 1910 FALSE, /* partial_inplace */
d006db6c 1911 0, /* src_mask */
ad8e1ba5 1912 0xfffc, /* dst_mask */
b34976b6 1913 FALSE), /* pcrel_offset */
5bd4f169 1914
411e1bfb
AM
1915 /* Like GOT_TPREL16_LO_DS, but next higher group of 16 bits. */
1916 HOWTO (R_PPC64_GOT_TPREL16_HI,
1917 16, /* rightshift */
5bd4f169
AM
1918 1, /* size (0 = byte, 1 = short, 2 = long) */
1919 16, /* bitsize */
b34976b6 1920 FALSE, /* pc_relative */
5bd4f169 1921 0, /* bitpos */
f9c6b907 1922 complain_overflow_signed, /* complain_on_overflow */
805fc799 1923 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb 1924 "R_PPC64_GOT_TPREL16_HI", /* name */
b34976b6 1925 FALSE, /* partial_inplace */
d006db6c 1926 0, /* src_mask */
411e1bfb 1927 0xffff, /* dst_mask */
b34976b6 1928 FALSE), /* pcrel_offset */
5bd4f169 1929
411e1bfb
AM
1930 /* Like GOT_TPREL16_HI, but adjust for low 16 bits. */
1931 HOWTO (R_PPC64_GOT_TPREL16_HA,
1932 16, /* rightshift */
5bd4f169
AM
1933 1, /* size (0 = byte, 1 = short, 2 = long) */
1934 16, /* bitsize */
b34976b6 1935 FALSE, /* pc_relative */
5bd4f169 1936 0, /* bitpos */
f9c6b907 1937 complain_overflow_signed, /* complain_on_overflow */
805fc799 1938 ppc64_elf_unhandled_reloc, /* special_function */
411e1bfb 1939 "R_PPC64_GOT_TPREL16_HA", /* name */
b34976b6 1940 FALSE, /* partial_inplace */
d006db6c 1941 0, /* src_mask */
411e1bfb 1942 0xffff, /* dst_mask */
b34976b6 1943 FALSE), /* pcrel_offset */
5bd4f169 1944
25f23106
AM
1945 HOWTO (R_PPC64_JMP_IREL, /* type */
1946 0, /* rightshift */
1947 0, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
1948 0, /* bitsize */
1949 FALSE, /* pc_relative */
1950 0, /* bitpos */
1951 complain_overflow_dont, /* complain_on_overflow */
1952 ppc64_elf_unhandled_reloc, /* special_function */
1953 "R_PPC64_JMP_IREL", /* name */
1954 FALSE, /* partial_inplace */
1955 0, /* src_mask */
1956 0, /* dst_mask */
1957 FALSE), /* pcrel_offset */
1958
e054468f
AM
1959 HOWTO (R_PPC64_IRELATIVE, /* type */
1960 0, /* rightshift */
1961 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
1962 64, /* bitsize */
1963 FALSE, /* pc_relative */
1964 0, /* bitpos */
1965 complain_overflow_dont, /* complain_on_overflow */
1966 bfd_elf_generic_reloc, /* special_function */
1967 "R_PPC64_IRELATIVE", /* name */
1968 FALSE, /* partial_inplace */
1969 0, /* src_mask */
1970 ONES (64), /* dst_mask */
1971 FALSE), /* pcrel_offset */
1972
25f23106
AM
1973 /* A 16 bit relative relocation. */
1974 HOWTO (R_PPC64_REL16, /* type */
1975 0, /* rightshift */
1976 1, /* size (0 = byte, 1 = short, 2 = long) */
1977 16, /* bitsize */
1978 TRUE, /* pc_relative */
1979 0, /* bitpos */
b80eed39 1980 complain_overflow_signed, /* complain_on_overflow */
25f23106
AM
1981 bfd_elf_generic_reloc, /* special_function */
1982 "R_PPC64_REL16", /* name */
1983 FALSE, /* partial_inplace */
1984 0, /* src_mask */
1985 0xffff, /* dst_mask */
1986 TRUE), /* pcrel_offset */
1987
1988 /* A 16 bit relative relocation without overflow. */
1989 HOWTO (R_PPC64_REL16_LO, /* type */
1990 0, /* rightshift */
1991 1, /* size (0 = byte, 1 = short, 2 = long) */
1992 16, /* bitsize */
1993 TRUE, /* pc_relative */
1994 0, /* bitpos */
1995 complain_overflow_dont,/* complain_on_overflow */
1996 bfd_elf_generic_reloc, /* special_function */
1997 "R_PPC64_REL16_LO", /* name */
1998 FALSE, /* partial_inplace */
1999 0, /* src_mask */
2000 0xffff, /* dst_mask */
2001 TRUE), /* pcrel_offset */
2002
2003 /* The high order 16 bits of a relative address. */
2004 HOWTO (R_PPC64_REL16_HI, /* type */
2005 16, /* rightshift */
2006 1, /* size (0 = byte, 1 = short, 2 = long) */
2007 16, /* bitsize */
2008 TRUE, /* pc_relative */
2009 0, /* bitpos */
f9c6b907 2010 complain_overflow_signed, /* complain_on_overflow */
25f23106
AM
2011 bfd_elf_generic_reloc, /* special_function */
2012 "R_PPC64_REL16_HI", /* name */
2013 FALSE, /* partial_inplace */
2014 0, /* src_mask */
2015 0xffff, /* dst_mask */
2016 TRUE), /* pcrel_offset */
2017
2018 /* The high order 16 bits of a relative address, plus 1 if the contents of
2019 the low 16 bits, treated as a signed number, is negative. */
2020 HOWTO (R_PPC64_REL16_HA, /* type */
2021 16, /* rightshift */
2022 1, /* size (0 = byte, 1 = short, 2 = long) */
2023 16, /* bitsize */
2024 TRUE, /* pc_relative */
2025 0, /* bitpos */
f9c6b907 2026 complain_overflow_signed, /* complain_on_overflow */
25f23106
AM
2027 ppc64_elf_ha_reloc, /* special_function */
2028 "R_PPC64_REL16_HA", /* name */
2029 FALSE, /* partial_inplace */
2030 0, /* src_mask */
2031 0xffff, /* dst_mask */
2032 TRUE), /* pcrel_offset */
2033
a680de9a
PB
2034 /* Like R_PPC64_REL16_HA but for split field in addpcis. */
2035 HOWTO (R_PPC64_REL16DX_HA, /* type */
2036 16, /* rightshift */
2037 2, /* size (0 = byte, 1 = short, 2 = long) */
2038 16, /* bitsize */
2039 TRUE, /* pc_relative */
2040 0, /* bitpos */
2041 complain_overflow_signed, /* complain_on_overflow */
2042 ppc64_elf_ha_reloc, /* special_function */
2043 "R_PPC64_REL16DX_HA", /* name */
2044 FALSE, /* partial_inplace */
2045 0, /* src_mask */
2046 0x1fffc1, /* dst_mask */
2047 TRUE), /* pcrel_offset */
2048
7ba71655
AM
2049 /* A split-field reloc for addpcis, non-relative (gas internal use only). */
2050 HOWTO (R_PPC64_16DX_HA, /* type */
2051 16, /* rightshift */
2052 2, /* size (0 = byte, 1 = short, 2 = long) */
2053 16, /* bitsize */
2054 FALSE, /* pc_relative */
2055 0, /* bitpos */
2056 complain_overflow_signed, /* complain_on_overflow */
2057 ppc64_elf_ha_reloc, /* special_function */
2058 "R_PPC64_16DX_HA", /* name */
2059 FALSE, /* partial_inplace */
2060 0, /* src_mask */
2061 0x1fffc1, /* dst_mask */
2062 FALSE), /* pcrel_offset */
2063
f9c6b907
AM
2064 /* Like R_PPC64_ADDR16_HI, but no overflow. */
2065 HOWTO (R_PPC64_ADDR16_HIGH, /* type */
2066 16, /* rightshift */
2067 1, /* size (0 = byte, 1 = short, 2 = long) */
2068 16, /* bitsize */
2069 FALSE, /* pc_relative */
2070 0, /* bitpos */
2071 complain_overflow_dont, /* complain_on_overflow */
2072 bfd_elf_generic_reloc, /* special_function */
2073 "R_PPC64_ADDR16_HIGH", /* name */
2074 FALSE, /* partial_inplace */
2075 0, /* src_mask */
2076 0xffff, /* dst_mask */
2077 FALSE), /* pcrel_offset */
2078
2079 /* Like R_PPC64_ADDR16_HA, but no overflow. */
2080 HOWTO (R_PPC64_ADDR16_HIGHA, /* type */
2081 16, /* rightshift */
2082 1, /* size (0 = byte, 1 = short, 2 = long) */
2083 16, /* bitsize */
2084 FALSE, /* pc_relative */
2085 0, /* bitpos */
2086 complain_overflow_dont, /* complain_on_overflow */
2087 ppc64_elf_ha_reloc, /* special_function */
2088 "R_PPC64_ADDR16_HIGHA", /* name */
2089 FALSE, /* partial_inplace */
2090 0, /* src_mask */
2091 0xffff, /* dst_mask */
2092 FALSE), /* pcrel_offset */
2093
2094 /* Like R_PPC64_DTPREL16_HI, but no overflow. */
2095 HOWTO (R_PPC64_DTPREL16_HIGH,
2096 16, /* rightshift */
2097 1, /* size (0 = byte, 1 = short, 2 = long) */
2098 16, /* bitsize */
2099 FALSE, /* pc_relative */
2100 0, /* bitpos */
2101 complain_overflow_dont, /* complain_on_overflow */
2102 ppc64_elf_unhandled_reloc, /* special_function */
2103 "R_PPC64_DTPREL16_HIGH", /* name */
2104 FALSE, /* partial_inplace */
2105 0, /* src_mask */
2106 0xffff, /* dst_mask */
2107 FALSE), /* pcrel_offset */
2108
2109 /* Like R_PPC64_DTPREL16_HA, but no overflow. */
2110 HOWTO (R_PPC64_DTPREL16_HIGHA,
2111 16, /* rightshift */
2112 1, /* size (0 = byte, 1 = short, 2 = long) */
2113 16, /* bitsize */
2114 FALSE, /* pc_relative */
2115 0, /* bitpos */
2116 complain_overflow_dont, /* complain_on_overflow */
2117 ppc64_elf_unhandled_reloc, /* special_function */
2118 "R_PPC64_DTPREL16_HIGHA", /* name */
2119 FALSE, /* partial_inplace */
2120 0, /* src_mask */
2121 0xffff, /* dst_mask */
2122 FALSE), /* pcrel_offset */
2123
2124 /* Like R_PPC64_TPREL16_HI, but no overflow. */
2125 HOWTO (R_PPC64_TPREL16_HIGH,
2126 16, /* rightshift */
2127 1, /* size (0 = byte, 1 = short, 2 = long) */
2128 16, /* bitsize */
2129 FALSE, /* pc_relative */
2130 0, /* bitpos */
2131 complain_overflow_dont, /* complain_on_overflow */
2132 ppc64_elf_unhandled_reloc, /* special_function */
2133 "R_PPC64_TPREL16_HIGH", /* name */
2134 FALSE, /* partial_inplace */
2135 0, /* src_mask */
2136 0xffff, /* dst_mask */
2137 FALSE), /* pcrel_offset */
2138
2139 /* Like R_PPC64_TPREL16_HA, but no overflow. */
2140 HOWTO (R_PPC64_TPREL16_HIGHA,
2141 16, /* rightshift */
2142 1, /* size (0 = byte, 1 = short, 2 = long) */
2143 16, /* bitsize */
2144 FALSE, /* pc_relative */
2145 0, /* bitpos */
2146 complain_overflow_dont, /* complain_on_overflow */
2147 ppc64_elf_unhandled_reloc, /* special_function */
2148 "R_PPC64_TPREL16_HIGHA", /* name */
2149 FALSE, /* partial_inplace */
2150 0, /* src_mask */
2151 0xffff, /* dst_mask */
2152 FALSE), /* pcrel_offset */
2153
006589cf
AM
2154 /* Marker reloc on ELFv2 large-model function entry. */
2155 HOWTO (R_PPC64_ENTRY,
2156 0, /* rightshift */
2157 2, /* size (0 = byte, 1 = short, 2 = long) */
2158 32, /* bitsize */
2159 FALSE, /* pc_relative */
2160 0, /* bitpos */
2161 complain_overflow_dont, /* complain_on_overflow */
2162 bfd_elf_generic_reloc, /* special_function */
2163 "R_PPC64_ENTRY", /* name */
2164 FALSE, /* partial_inplace */
2165 0, /* src_mask */
2166 0, /* dst_mask */
2167 FALSE), /* pcrel_offset */
2168
45965137
AM
2169 /* Like ADDR64, but use local entry point of function. */
2170 HOWTO (R_PPC64_ADDR64_LOCAL, /* type */
2171 0, /* rightshift */
2172 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
2173 64, /* bitsize */
2174 FALSE, /* pc_relative */
2175 0, /* bitpos */
2176 complain_overflow_dont, /* complain_on_overflow */
2177 bfd_elf_generic_reloc, /* special_function */
2178 "R_PPC64_ADDR64_LOCAL", /* name */
2179 FALSE, /* partial_inplace */
2180 0, /* src_mask */
2181 ONES (64), /* dst_mask */
2182 FALSE), /* pcrel_offset */
2183
5bd4f169
AM
2184 /* GNU extension to record C++ vtable hierarchy. */
2185 HOWTO (R_PPC64_GNU_VTINHERIT, /* type */
2186 0, /* rightshift */
2187 0, /* size (0 = byte, 1 = short, 2 = long) */
2188 0, /* bitsize */
b34976b6 2189 FALSE, /* pc_relative */
5bd4f169
AM
2190 0, /* bitpos */
2191 complain_overflow_dont, /* complain_on_overflow */
2192 NULL, /* special_function */
2193 "R_PPC64_GNU_VTINHERIT", /* name */
b34976b6 2194 FALSE, /* partial_inplace */
5bd4f169
AM
2195 0, /* src_mask */
2196 0, /* dst_mask */
b34976b6 2197 FALSE), /* pcrel_offset */
5bd4f169
AM
2198
2199 /* GNU extension to record C++ vtable member usage. */
2200 HOWTO (R_PPC64_GNU_VTENTRY, /* type */
2201 0, /* rightshift */
2202 0, /* size (0 = byte, 1 = short, 2 = long) */
2203 0, /* bitsize */
b34976b6 2204 FALSE, /* pc_relative */
5bd4f169
AM
2205 0, /* bitpos */
2206 complain_overflow_dont, /* complain_on_overflow */
2207 NULL, /* special_function */
2208 "R_PPC64_GNU_VTENTRY", /* name */
b34976b6 2209 FALSE, /* partial_inplace */
5bd4f169
AM
2210 0, /* src_mask */
2211 0, /* dst_mask */
b34976b6 2212 FALSE), /* pcrel_offset */
5bd4f169
AM
2213};
2214
2215\f
2216/* Initialize the ppc64_elf_howto_table, so that linear accesses can
2217 be done. */
2218
2219static void
4ce794b7 2220ppc_howto_init (void)
5bd4f169
AM
2221{
2222 unsigned int i, type;
2223
a4b6fadd 2224 for (i = 0; i < ARRAY_SIZE (ppc64_elf_howto_raw); i++)
5bd4f169
AM
2225 {
2226 type = ppc64_elf_howto_raw[i].type;
a4b6fadd 2227 BFD_ASSERT (type < ARRAY_SIZE (ppc64_elf_howto_table));
5bd4f169
AM
2228 ppc64_elf_howto_table[type] = &ppc64_elf_howto_raw[i];
2229 }
2230}
2231
2232static reloc_howto_type *
4ce794b7
AM
2233ppc64_elf_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2234 bfd_reloc_code_real_type code)
5bd4f169 2235{
411e1bfb 2236 enum elf_ppc64_reloc_type r = R_PPC64_NONE;
5bd4f169
AM
2237
2238 if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
2239 /* Initialize howto table if needed. */
2240 ppc_howto_init ();
2241
4ce794b7 2242 switch (code)
5bd4f169
AM
2243 {
2244 default:
4ce794b7 2245 return NULL;
5bd4f169 2246
411e1bfb
AM
2247 case BFD_RELOC_NONE: r = R_PPC64_NONE;
2248 break;
2249 case BFD_RELOC_32: r = R_PPC64_ADDR32;
2250 break;
2251 case BFD_RELOC_PPC_BA26: r = R_PPC64_ADDR24;
2252 break;
2253 case BFD_RELOC_16: r = R_PPC64_ADDR16;
2254 break;
2255 case BFD_RELOC_LO16: r = R_PPC64_ADDR16_LO;
2256 break;
2257 case BFD_RELOC_HI16: r = R_PPC64_ADDR16_HI;
2258 break;
f9c6b907
AM
2259 case BFD_RELOC_PPC64_ADDR16_HIGH: r = R_PPC64_ADDR16_HIGH;
2260 break;
411e1bfb 2261 case BFD_RELOC_HI16_S: r = R_PPC64_ADDR16_HA;
5bd4f169 2262 break;
f9c6b907
AM
2263 case BFD_RELOC_PPC64_ADDR16_HIGHA: r = R_PPC64_ADDR16_HIGHA;
2264 break;
411e1bfb 2265 case BFD_RELOC_PPC_BA16: r = R_PPC64_ADDR14;
5bd4f169 2266 break;
411e1bfb 2267 case BFD_RELOC_PPC_BA16_BRTAKEN: r = R_PPC64_ADDR14_BRTAKEN;
5bd4f169 2268 break;
411e1bfb 2269 case BFD_RELOC_PPC_BA16_BRNTAKEN: r = R_PPC64_ADDR14_BRNTAKEN;
5bd4f169 2270 break;
411e1bfb 2271 case BFD_RELOC_PPC_B26: r = R_PPC64_REL24;
5bd4f169 2272 break;
411e1bfb 2273 case BFD_RELOC_PPC_B16: r = R_PPC64_REL14;
5bd4f169 2274 break;
411e1bfb 2275 case BFD_RELOC_PPC_B16_BRTAKEN: r = R_PPC64_REL14_BRTAKEN;
5bd4f169 2276 break;
411e1bfb 2277 case BFD_RELOC_PPC_B16_BRNTAKEN: r = R_PPC64_REL14_BRNTAKEN;
5bd4f169 2278 break;
411e1bfb 2279 case BFD_RELOC_16_GOTOFF: r = R_PPC64_GOT16;
5bd4f169 2280 break;
411e1bfb 2281 case BFD_RELOC_LO16_GOTOFF: r = R_PPC64_GOT16_LO;
5bd4f169 2282 break;
411e1bfb 2283 case BFD_RELOC_HI16_GOTOFF: r = R_PPC64_GOT16_HI;
5bd4f169 2284 break;
411e1bfb 2285 case BFD_RELOC_HI16_S_GOTOFF: r = R_PPC64_GOT16_HA;
5bd4f169 2286 break;
411e1bfb 2287 case BFD_RELOC_PPC_COPY: r = R_PPC64_COPY;
5bd4f169 2288 break;
411e1bfb 2289 case BFD_RELOC_PPC_GLOB_DAT: r = R_PPC64_GLOB_DAT;
5bd4f169 2290 break;
411e1bfb 2291 case BFD_RELOC_32_PCREL: r = R_PPC64_REL32;
5bd4f169 2292 break;
411e1bfb 2293 case BFD_RELOC_32_PLTOFF: r = R_PPC64_PLT32;
5bd4f169 2294 break;
411e1bfb 2295 case BFD_RELOC_32_PLT_PCREL: r = R_PPC64_PLTREL32;
5bd4f169 2296 break;
411e1bfb 2297 case BFD_RELOC_LO16_PLTOFF: r = R_PPC64_PLT16_LO;
5bd4f169 2298 break;
411e1bfb 2299 case BFD_RELOC_HI16_PLTOFF: r = R_PPC64_PLT16_HI;
5bd4f169 2300 break;
411e1bfb 2301 case BFD_RELOC_HI16_S_PLTOFF: r = R_PPC64_PLT16_HA;
5bd4f169 2302 break;
411e1bfb 2303 case BFD_RELOC_16_BASEREL: r = R_PPC64_SECTOFF;
5bd4f169 2304 break;
411e1bfb 2305 case BFD_RELOC_LO16_BASEREL: r = R_PPC64_SECTOFF_LO;
5bd4f169 2306 break;
411e1bfb 2307 case BFD_RELOC_HI16_BASEREL: r = R_PPC64_SECTOFF_HI;
5bd4f169 2308 break;
411e1bfb 2309 case BFD_RELOC_HI16_S_BASEREL: r = R_PPC64_SECTOFF_HA;
5bd4f169 2310 break;
411e1bfb 2311 case BFD_RELOC_CTOR: r = R_PPC64_ADDR64;
5bd4f169 2312 break;
411e1bfb 2313 case BFD_RELOC_64: r = R_PPC64_ADDR64;
5bd4f169 2314 break;
411e1bfb 2315 case BFD_RELOC_PPC64_HIGHER: r = R_PPC64_ADDR16_HIGHER;
5bd4f169 2316 break;
411e1bfb 2317 case BFD_RELOC_PPC64_HIGHER_S: r = R_PPC64_ADDR16_HIGHERA;
5bd4f169 2318 break;
411e1bfb 2319 case BFD_RELOC_PPC64_HIGHEST: r = R_PPC64_ADDR16_HIGHEST;
5bd4f169 2320 break;
411e1bfb 2321 case BFD_RELOC_PPC64_HIGHEST_S: r = R_PPC64_ADDR16_HIGHESTA;
5bd4f169 2322 break;
411e1bfb 2323 case BFD_RELOC_64_PCREL: r = R_PPC64_REL64;
5bd4f169 2324 break;
411e1bfb 2325 case BFD_RELOC_64_PLTOFF: r = R_PPC64_PLT64;
5bd4f169 2326 break;
411e1bfb 2327 case BFD_RELOC_64_PLT_PCREL: r = R_PPC64_PLTREL64;
5bd4f169 2328 break;
411e1bfb 2329 case BFD_RELOC_PPC_TOC16: r = R_PPC64_TOC16;
5bd4f169 2330 break;
411e1bfb 2331 case BFD_RELOC_PPC64_TOC16_LO: r = R_PPC64_TOC16_LO;
5bd4f169 2332 break;
411e1bfb 2333 case BFD_RELOC_PPC64_TOC16_HI: r = R_PPC64_TOC16_HI;
5bd4f169 2334 break;
411e1bfb 2335 case BFD_RELOC_PPC64_TOC16_HA: r = R_PPC64_TOC16_HA;
5bd4f169 2336 break;
411e1bfb 2337 case BFD_RELOC_PPC64_TOC: r = R_PPC64_TOC;
5bd4f169 2338 break;
411e1bfb 2339 case BFD_RELOC_PPC64_PLTGOT16: r = R_PPC64_PLTGOT16;
5bd4f169 2340 break;
411e1bfb 2341 case BFD_RELOC_PPC64_PLTGOT16_LO: r = R_PPC64_PLTGOT16_LO;
5bd4f169 2342 break;
411e1bfb 2343 case BFD_RELOC_PPC64_PLTGOT16_HI: r = R_PPC64_PLTGOT16_HI;
5bd4f169 2344 break;
411e1bfb 2345 case BFD_RELOC_PPC64_PLTGOT16_HA: r = R_PPC64_PLTGOT16_HA;
5bd4f169 2346 break;
411e1bfb 2347 case BFD_RELOC_PPC64_ADDR16_DS: r = R_PPC64_ADDR16_DS;
5bd4f169 2348 break;
411e1bfb 2349 case BFD_RELOC_PPC64_ADDR16_LO_DS: r = R_PPC64_ADDR16_LO_DS;
5bd4f169 2350 break;
411e1bfb 2351 case BFD_RELOC_PPC64_GOT16_DS: r = R_PPC64_GOT16_DS;
5bd4f169 2352 break;
411e1bfb 2353 case BFD_RELOC_PPC64_GOT16_LO_DS: r = R_PPC64_GOT16_LO_DS;
5bd4f169 2354 break;
411e1bfb 2355 case BFD_RELOC_PPC64_PLT16_LO_DS: r = R_PPC64_PLT16_LO_DS;
5bd4f169 2356 break;
411e1bfb 2357 case BFD_RELOC_PPC64_SECTOFF_DS: r = R_PPC64_SECTOFF_DS;
5bd4f169 2358 break;
411e1bfb 2359 case BFD_RELOC_PPC64_SECTOFF_LO_DS: r = R_PPC64_SECTOFF_LO_DS;
5bd4f169 2360 break;
411e1bfb 2361 case BFD_RELOC_PPC64_TOC16_DS: r = R_PPC64_TOC16_DS;
5bd4f169 2362 break;
411e1bfb 2363 case BFD_RELOC_PPC64_TOC16_LO_DS: r = R_PPC64_TOC16_LO_DS;
5bd4f169 2364 break;
411e1bfb 2365 case BFD_RELOC_PPC64_PLTGOT16_DS: r = R_PPC64_PLTGOT16_DS;
5bd4f169 2366 break;
411e1bfb 2367 case BFD_RELOC_PPC64_PLTGOT16_LO_DS: r = R_PPC64_PLTGOT16_LO_DS;
5bd4f169 2368 break;
411e1bfb 2369 case BFD_RELOC_PPC_TLS: r = R_PPC64_TLS;
5bd4f169 2370 break;
727fc41e
AM
2371 case BFD_RELOC_PPC_TLSGD: r = R_PPC64_TLSGD;
2372 break;
2373 case BFD_RELOC_PPC_TLSLD: r = R_PPC64_TLSLD;
2374 break;
411e1bfb 2375 case BFD_RELOC_PPC_DTPMOD: r = R_PPC64_DTPMOD64;
5bd4f169 2376 break;
411e1bfb 2377 case BFD_RELOC_PPC_TPREL16: r = R_PPC64_TPREL16;
5bd4f169 2378 break;
411e1bfb 2379 case BFD_RELOC_PPC_TPREL16_LO: r = R_PPC64_TPREL16_LO;
5bd4f169 2380 break;
411e1bfb 2381 case BFD_RELOC_PPC_TPREL16_HI: r = R_PPC64_TPREL16_HI;
5bd4f169 2382 break;
f9c6b907
AM
2383 case BFD_RELOC_PPC64_TPREL16_HIGH: r = R_PPC64_TPREL16_HIGH;
2384 break;
411e1bfb 2385 case BFD_RELOC_PPC_TPREL16_HA: r = R_PPC64_TPREL16_HA;
5bd4f169 2386 break;
f9c6b907
AM
2387 case BFD_RELOC_PPC64_TPREL16_HIGHA: r = R_PPC64_TPREL16_HIGHA;
2388 break;
411e1bfb 2389 case BFD_RELOC_PPC_TPREL: r = R_PPC64_TPREL64;
5bd4f169 2390 break;
411e1bfb
AM
2391 case BFD_RELOC_PPC_DTPREL16: r = R_PPC64_DTPREL16;
2392 break;
2393 case BFD_RELOC_PPC_DTPREL16_LO: r = R_PPC64_DTPREL16_LO;
2394 break;
2395 case BFD_RELOC_PPC_DTPREL16_HI: r = R_PPC64_DTPREL16_HI;
2396 break;
f9c6b907
AM
2397 case BFD_RELOC_PPC64_DTPREL16_HIGH: r = R_PPC64_DTPREL16_HIGH;
2398 break;
411e1bfb
AM
2399 case BFD_RELOC_PPC_DTPREL16_HA: r = R_PPC64_DTPREL16_HA;
2400 break;
f9c6b907
AM
2401 case BFD_RELOC_PPC64_DTPREL16_HIGHA: r = R_PPC64_DTPREL16_HIGHA;
2402 break;
411e1bfb
AM
2403 case BFD_RELOC_PPC_DTPREL: r = R_PPC64_DTPREL64;
2404 break;
2405 case BFD_RELOC_PPC_GOT_TLSGD16: r = R_PPC64_GOT_TLSGD16;
2406 break;
2407 case BFD_RELOC_PPC_GOT_TLSGD16_LO: r = R_PPC64_GOT_TLSGD16_LO;
2408 break;
2409 case BFD_RELOC_PPC_GOT_TLSGD16_HI: r = R_PPC64_GOT_TLSGD16_HI;
2410 break;
2411 case BFD_RELOC_PPC_GOT_TLSGD16_HA: r = R_PPC64_GOT_TLSGD16_HA;
2412 break;
2413 case BFD_RELOC_PPC_GOT_TLSLD16: r = R_PPC64_GOT_TLSLD16;
2414 break;
2415 case BFD_RELOC_PPC_GOT_TLSLD16_LO: r = R_PPC64_GOT_TLSLD16_LO;
2416 break;
2417 case BFD_RELOC_PPC_GOT_TLSLD16_HI: r = R_PPC64_GOT_TLSLD16_HI;
2418 break;
2419 case BFD_RELOC_PPC_GOT_TLSLD16_HA: r = R_PPC64_GOT_TLSLD16_HA;
2420 break;
2421 case BFD_RELOC_PPC_GOT_TPREL16: r = R_PPC64_GOT_TPREL16_DS;
2422 break;
2423 case BFD_RELOC_PPC_GOT_TPREL16_LO: r = R_PPC64_GOT_TPREL16_LO_DS;
2424 break;
2425 case BFD_RELOC_PPC_GOT_TPREL16_HI: r = R_PPC64_GOT_TPREL16_HI;
2426 break;
2427 case BFD_RELOC_PPC_GOT_TPREL16_HA: r = R_PPC64_GOT_TPREL16_HA;
2428 break;
2429 case BFD_RELOC_PPC_GOT_DTPREL16: r = R_PPC64_GOT_DTPREL16_DS;
2430 break;
2431 case BFD_RELOC_PPC_GOT_DTPREL16_LO: r = R_PPC64_GOT_DTPREL16_LO_DS;
2432 break;
2433 case BFD_RELOC_PPC_GOT_DTPREL16_HI: r = R_PPC64_GOT_DTPREL16_HI;
2434 break;
2435 case BFD_RELOC_PPC_GOT_DTPREL16_HA: r = R_PPC64_GOT_DTPREL16_HA;
2436 break;
2437 case BFD_RELOC_PPC64_TPREL16_DS: r = R_PPC64_TPREL16_DS;
2438 break;
2439 case BFD_RELOC_PPC64_TPREL16_LO_DS: r = R_PPC64_TPREL16_LO_DS;
2440 break;
2441 case BFD_RELOC_PPC64_TPREL16_HIGHER: r = R_PPC64_TPREL16_HIGHER;
2442 break;
2443 case BFD_RELOC_PPC64_TPREL16_HIGHERA: r = R_PPC64_TPREL16_HIGHERA;
2444 break;
2445 case BFD_RELOC_PPC64_TPREL16_HIGHEST: r = R_PPC64_TPREL16_HIGHEST;
2446 break;
2447 case BFD_RELOC_PPC64_TPREL16_HIGHESTA: r = R_PPC64_TPREL16_HIGHESTA;
2448 break;
2449 case BFD_RELOC_PPC64_DTPREL16_DS: r = R_PPC64_DTPREL16_DS;
2450 break;
2451 case BFD_RELOC_PPC64_DTPREL16_LO_DS: r = R_PPC64_DTPREL16_LO_DS;
2452 break;
2453 case BFD_RELOC_PPC64_DTPREL16_HIGHER: r = R_PPC64_DTPREL16_HIGHER;
2454 break;
2455 case BFD_RELOC_PPC64_DTPREL16_HIGHERA: r = R_PPC64_DTPREL16_HIGHERA;
2456 break;
2457 case BFD_RELOC_PPC64_DTPREL16_HIGHEST: r = R_PPC64_DTPREL16_HIGHEST;
2458 break;
2459 case BFD_RELOC_PPC64_DTPREL16_HIGHESTA: r = R_PPC64_DTPREL16_HIGHESTA;
2460 break;
25f23106
AM
2461 case BFD_RELOC_16_PCREL: r = R_PPC64_REL16;
2462 break;
2463 case BFD_RELOC_LO16_PCREL: r = R_PPC64_REL16_LO;
2464 break;
2465 case BFD_RELOC_HI16_PCREL: r = R_PPC64_REL16_HI;
2466 break;
2467 case BFD_RELOC_HI16_S_PCREL: r = R_PPC64_REL16_HA;
2468 break;
7ba71655
AM
2469 case BFD_RELOC_PPC_16DX_HA: r = R_PPC64_16DX_HA;
2470 break;
a680de9a
PB
2471 case BFD_RELOC_PPC_REL16DX_HA: r = R_PPC64_REL16DX_HA;
2472 break;
006589cf
AM
2473 case BFD_RELOC_PPC64_ENTRY: r = R_PPC64_ENTRY;
2474 break;
45965137
AM
2475 case BFD_RELOC_PPC64_ADDR64_LOCAL: r = R_PPC64_ADDR64_LOCAL;
2476 break;
411e1bfb
AM
2477 case BFD_RELOC_VTABLE_INHERIT: r = R_PPC64_GNU_VTINHERIT;
2478 break;
2479 case BFD_RELOC_VTABLE_ENTRY: r = R_PPC64_GNU_VTENTRY;
5bd4f169
AM
2480 break;
2481 }
2482
4ce794b7 2483 return ppc64_elf_howto_table[r];
5bd4f169
AM
2484};
2485
157090f7
AM
2486static reloc_howto_type *
2487ppc64_elf_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2488 const char *r_name)
2489{
2490 unsigned int i;
2491
a4b6fadd 2492 for (i = 0; i < ARRAY_SIZE (ppc64_elf_howto_raw); i++)
157090f7
AM
2493 if (ppc64_elf_howto_raw[i].name != NULL
2494 && strcasecmp (ppc64_elf_howto_raw[i].name, r_name) == 0)
2495 return &ppc64_elf_howto_raw[i];
2496
2497 return NULL;
2498}
2499
5bd4f169
AM
2500/* Set the howto pointer for a PowerPC ELF reloc. */
2501
2502static void
4aef7643 2503ppc64_elf_info_to_howto (bfd *abfd, arelent *cache_ptr,
4ce794b7 2504 Elf_Internal_Rela *dst)
5bd4f169 2505{
65f38f15
AM
2506 unsigned int type;
2507
ef60b7ff 2508 /* Initialize howto table if needed. */
5bd4f169 2509 if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
5bd4f169
AM
2510 ppc_howto_init ();
2511
65f38f15 2512 type = ELF64_R_TYPE (dst->r_info);
a4b6fadd 2513 if (type >= ARRAY_SIZE (ppc64_elf_howto_table))
d0fb9a8d 2514 {
695344c0 2515 /* xgettext:c-format */
4eca0228
AM
2516 _bfd_error_handler (_("%B: invalid relocation type %d"),
2517 abfd, (int) type);
3ec2b351 2518 type = R_PPC64_NONE;
d0fb9a8d 2519 }
65f38f15 2520 cache_ptr->howto = ppc64_elf_howto_table[type];
5bd4f169
AM
2521}
2522
04c9666a 2523/* Handle the R_PPC64_ADDR16_HA and similar relocs. */
5bd4f169
AM
2524
2525static bfd_reloc_status_type
4ce794b7
AM
2526ppc64_elf_ha_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2527 void *data, asection *input_section,
2528 bfd *output_bfd, char **error_message)
5bd4f169 2529{
a680de9a
PB
2530 enum elf_ppc64_reloc_type r_type;
2531 long insn;
2532 bfd_size_type octets;
3de43e7b 2533 bfd_vma value;
a680de9a 2534
805fc799
AM
2535 /* If this is a relocatable link (output_bfd test tells us), just
2536 call the generic function. Any adjustment will be done at final
2537 link time. */
2538 if (output_bfd != NULL)
cedb70c5 2539 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
805fc799
AM
2540 input_section, output_bfd, error_message);
2541
2542 /* Adjust the addend for sign extension of the low 16 bits.
2543 We won't actually be using the low 16 bits, so trashing them
2544 doesn't matter. */
2545 reloc_entry->addend += 0x8000;
a680de9a
PB
2546 r_type = reloc_entry->howto->type;
2547 if (r_type != R_PPC64_REL16DX_HA)
2548 return bfd_reloc_continue;
2549
2550 value = 0;
2551 if (!bfd_is_com_section (symbol->section))
2552 value = symbol->value;
2553 value += (reloc_entry->addend
2554 + symbol->section->output_offset
2555 + symbol->section->output_section->vma);
2556 value -= (reloc_entry->address
2557 + input_section->output_offset
2558 + input_section->output_section->vma);
3de43e7b 2559 value = (bfd_signed_vma) value >> 16;
a680de9a
PB
2560
2561 octets = reloc_entry->address * bfd_octets_per_byte (abfd);
2562 insn = bfd_get_32 (abfd, (bfd_byte *) data + octets);
2563 insn &= ~0x1fffc1;
3de43e7b 2564 insn |= (value & 0xffc1) | ((value & 0x3e) << 15);
a680de9a 2565 bfd_put_32 (abfd, insn, (bfd_byte *) data + octets);
3de43e7b 2566 if (value + 0x8000 > 0xffff)
a680de9a
PB
2567 return bfd_reloc_overflow;
2568 return bfd_reloc_ok;
805fc799 2569}
5bd4f169 2570
2441e016
AM
2571static bfd_reloc_status_type
2572ppc64_elf_branch_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2573 void *data, asection *input_section,
2574 bfd *output_bfd, char **error_message)
2575{
2576 if (output_bfd != NULL)
2577 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2578 input_section, output_bfd, error_message);
2579
699733f6
AM
2580 if (strcmp (symbol->section->name, ".opd") == 0
2581 && (symbol->section->owner->flags & DYNAMIC) == 0)
2441e016
AM
2582 {
2583 bfd_vma dest = opd_entry_value (symbol->section,
2584 symbol->value + reloc_entry->addend,
aef36ac1 2585 NULL, NULL, FALSE);
2441e016
AM
2586 if (dest != (bfd_vma) -1)
2587 reloc_entry->addend = dest - (symbol->value
2588 + symbol->section->output_section->vma
2589 + symbol->section->output_offset);
2590 }
810d4e75
AM
2591 else
2592 {
2593 elf_symbol_type *elfsym = (elf_symbol_type *) symbol;
2594
2595 if (symbol->section->owner != abfd
9f284bf9 2596 && symbol->section->owner != NULL
810d4e75
AM
2597 && abiversion (symbol->section->owner) >= 2)
2598 {
2599 unsigned int i;
2600
2601 for (i = 0; i < symbol->section->owner->symcount; ++i)
2602 {
2603 asymbol *symdef = symbol->section->owner->outsymbols[i];
2604
2605 if (strcmp (symdef->name, symbol->name) == 0)
2606 {
2607 elfsym = (elf_symbol_type *) symdef;
2608 break;
2609 }
2610 }
2611 }
2612 reloc_entry->addend
2613 += PPC64_LOCAL_ENTRY_OFFSET (elfsym->internal_elf_sym.st_other);
2614 }
2441e016
AM
2615 return bfd_reloc_continue;
2616}
2617
805fc799 2618static bfd_reloc_status_type
4ce794b7
AM
2619ppc64_elf_brtaken_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2620 void *data, asection *input_section,
2621 bfd *output_bfd, char **error_message)
805fc799
AM
2622{
2623 long insn;
04c9666a 2624 enum elf_ppc64_reloc_type r_type;
805fc799 2625 bfd_size_type octets;
794e51c0
AM
2626 /* Assume 'at' branch hints. */
2627 bfd_boolean is_isa_v2 = TRUE;
805fc799
AM
2628
2629 /* If this is a relocatable link (output_bfd test tells us), just
2630 call the generic function. Any adjustment will be done at final
2631 link time. */
5bd4f169 2632 if (output_bfd != NULL)
cedb70c5 2633 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
805fc799
AM
2634 input_section, output_bfd, error_message);
2635
2636 octets = reloc_entry->address * bfd_octets_per_byte (abfd);
2637 insn = bfd_get_32 (abfd, (bfd_byte *) data + octets);
2638 insn &= ~(0x01 << 21);
4ce794b7 2639 r_type = reloc_entry->howto->type;
805fc799
AM
2640 if (r_type == R_PPC64_ADDR14_BRTAKEN
2641 || r_type == R_PPC64_REL14_BRTAKEN)
cedb70c5 2642 insn |= 0x01 << 21; /* 'y' or 't' bit, lowest bit of BO field. */
805fc799 2643
794e51c0 2644 if (is_isa_v2)
5bd4f169 2645 {
805fc799
AM
2646 /* Set 'a' bit. This is 0b00010 in BO field for branch
2647 on CR(BI) insns (BO == 001at or 011at), and 0b01000
2648 for branch on CTR insns (BO == 1a00t or 1a01t). */
2649 if ((insn & (0x14 << 21)) == (0x04 << 21))
2650 insn |= 0x02 << 21;
2651 else if ((insn & (0x14 << 21)) == (0x10 << 21))
2652 insn |= 0x08 << 21;
2653 else
2441e016 2654 goto out;
5bd4f169 2655 }
805fc799
AM
2656 else
2657 {
2658 bfd_vma target = 0;
2659 bfd_vma from;
5bd4f169 2660
805fc799
AM
2661 if (!bfd_is_com_section (symbol->section))
2662 target = symbol->value;
2663 target += symbol->section->output_section->vma;
2664 target += symbol->section->output_offset;
2665 target += reloc_entry->addend;
5bd4f169 2666
805fc799
AM
2667 from = (reloc_entry->address
2668 + input_section->output_offset
2669 + input_section->output_section->vma);
5bd4f169 2670
805fc799
AM
2671 /* Invert 'y' bit if not the default. */
2672 if ((bfd_signed_vma) (target - from) < 0)
2673 insn ^= 0x01 << 21;
2674 }
4ce794b7 2675 bfd_put_32 (abfd, insn, (bfd_byte *) data + octets);
2441e016
AM
2676 out:
2677 return ppc64_elf_branch_reloc (abfd, reloc_entry, symbol, data,
2678 input_section, output_bfd, error_message);
805fc799 2679}
5bd4f169 2680
805fc799 2681static bfd_reloc_status_type
4ce794b7
AM
2682ppc64_elf_sectoff_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2683 void *data, asection *input_section,
2684 bfd *output_bfd, char **error_message)
805fc799
AM
2685{
2686 /* If this is a relocatable link (output_bfd test tells us), just
2687 call the generic function. Any adjustment will be done at final
2688 link time. */
2689 if (output_bfd != NULL)
cedb70c5 2690 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
805fc799 2691 input_section, output_bfd, error_message);
5bd4f169 2692
805fc799
AM
2693 /* Subtract the symbol section base address. */
2694 reloc_entry->addend -= symbol->section->output_section->vma;
5bd4f169
AM
2695 return bfd_reloc_continue;
2696}
2697
805fc799 2698static bfd_reloc_status_type
4ce794b7
AM
2699ppc64_elf_sectoff_ha_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2700 void *data, asection *input_section,
2701 bfd *output_bfd, char **error_message)
805fc799
AM
2702{
2703 /* If this is a relocatable link (output_bfd test tells us), just
2704 call the generic function. Any adjustment will be done at final
2705 link time. */
2706 if (output_bfd != NULL)
cedb70c5 2707 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
805fc799
AM
2708 input_section, output_bfd, error_message);
2709
2710 /* Subtract the symbol section base address. */
2711 reloc_entry->addend -= symbol->section->output_section->vma;
2712
2713 /* Adjust the addend for sign extension of the low 16 bits. */
2714 reloc_entry->addend += 0x8000;
2715 return bfd_reloc_continue;
2716}
2717
2718static bfd_reloc_status_type
4ce794b7
AM
2719ppc64_elf_toc_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2720 void *data, asection *input_section,
2721 bfd *output_bfd, char **error_message)
805fc799
AM
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)
cedb70c5 2729 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
805fc799
AM
2730 input_section, output_bfd, error_message);
2731
2732 TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
2733 if (TOCstart == 0)
1c865ab2 2734 TOCstart = ppc64_elf_set_toc (NULL, input_section->output_section->owner);
805fc799
AM
2735
2736 /* Subtract the TOC base address. */
2737 reloc_entry->addend -= TOCstart + TOC_BASE_OFF;
2738 return bfd_reloc_continue;
2739}
2740
2741static bfd_reloc_status_type
4ce794b7
AM
2742ppc64_elf_toc_ha_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2743 void *data, asection *input_section,
2744 bfd *output_bfd, char **error_message)
805fc799
AM
2745{
2746 bfd_vma TOCstart;
2747
2748 /* If this is a relocatable link (output_bfd test tells us), just
2749 call the generic function. Any adjustment will be done at final
2750 link time. */
2751 if (output_bfd != NULL)
cedb70c5 2752 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
805fc799
AM
2753 input_section, output_bfd, error_message);
2754
2755 TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
2756 if (TOCstart == 0)
1c865ab2 2757 TOCstart = ppc64_elf_set_toc (NULL, input_section->output_section->owner);
805fc799
AM
2758
2759 /* Subtract the TOC base address. */
2760 reloc_entry->addend -= TOCstart + TOC_BASE_OFF;
2761
2762 /* Adjust the addend for sign extension of the low 16 bits. */
2763 reloc_entry->addend += 0x8000;
2764 return bfd_reloc_continue;
2765}
2766
2767static bfd_reloc_status_type
4ce794b7
AM
2768ppc64_elf_toc64_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2769 void *data, asection *input_section,
2770 bfd *output_bfd, char **error_message)
805fc799
AM
2771{
2772 bfd_vma TOCstart;
2773 bfd_size_type octets;
2774
2775 /* If this is a relocatable link (output_bfd test tells us), just
2776 call the generic function. Any adjustment will be done at final
2777 link time. */
2778 if (output_bfd != NULL)
cedb70c5 2779 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
805fc799
AM
2780 input_section, output_bfd, error_message);
2781
2782 TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
2783 if (TOCstart == 0)
1c865ab2 2784 TOCstart = ppc64_elf_set_toc (NULL, input_section->output_section->owner);
805fc799
AM
2785
2786 octets = reloc_entry->address * bfd_octets_per_byte (abfd);
2787 bfd_put_64 (abfd, TOCstart + TOC_BASE_OFF, (bfd_byte *) data + octets);
2788 return bfd_reloc_ok;
2789}
2790
2791static bfd_reloc_status_type
4ce794b7
AM
2792ppc64_elf_unhandled_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2793 void *data, asection *input_section,
2794 bfd *output_bfd, char **error_message)
805fc799
AM
2795{
2796 /* If this is a relocatable link (output_bfd test tells us), just
2797 call the generic function. Any adjustment will be done at final
2798 link time. */
2799 if (output_bfd != NULL)
cedb70c5 2800 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
805fc799
AM
2801 input_section, output_bfd, error_message);
2802
2803 if (error_message != NULL)
2804 {
2805 static char buf[60];
2806 sprintf (buf, "generic linker can't handle %s",
2807 reloc_entry->howto->name);
2808 *error_message = buf;
2809 }
2810 return bfd_reloc_dangerous;
2811}
2812
927be08e
AM
2813/* Track GOT entries needed for a given symbol. We might need more
2814 than one got entry per symbol. */
2815struct got_entry
2816{
2817 struct got_entry *next;
2818
2819 /* The symbol addend that we'll be placing in the GOT. */
2820 bfd_vma addend;
2821
2822 /* Unlike other ELF targets, we use separate GOT entries for the same
2823 symbol referenced from different input files. This is to support
2824 automatic multiple TOC/GOT sections, where the TOC base can vary
2825 from one input file to another. After partitioning into TOC groups
2826 we merge entries within the group.
2827
2828 Point to the BFD owning this GOT entry. */
2829 bfd *owner;
2830
2831 /* Zero for non-tls entries, or TLS_TLS and one of TLS_GD, TLS_LD,
2832 TLS_TPREL or TLS_DTPREL for tls entries. */
f961d9dd 2833 unsigned char tls_type;
927be08e
AM
2834
2835 /* Non-zero if got.ent points to real entry. */
f961d9dd 2836 unsigned char is_indirect;
927be08e
AM
2837
2838 /* Reference count until size_dynamic_sections, GOT offset thereafter. */
2839 union
2840 {
2841 bfd_signed_vma refcount;
2842 bfd_vma offset;
2843 struct got_entry *ent;
2844 } got;
2845};
2846
2847/* The same for PLT. */
2848struct plt_entry
2849{
2850 struct plt_entry *next;
2851
2852 bfd_vma addend;
2853
2854 union
2855 {
2856 bfd_signed_vma refcount;
2857 bfd_vma offset;
2858 } plt;
2859};
2860
e717da7e
AM
2861struct ppc64_elf_obj_tdata
2862{
2863 struct elf_obj_tdata elf;
2864
2865 /* Shortcuts to dynamic linker sections. */
2866 asection *got;
2867 asection *relgot;
2868
b3fac117
AM
2869 /* Used during garbage collection. We attach global symbols defined
2870 on removed .opd entries to this section so that the sym is removed. */
2871 asection *deleted_section;
81688140 2872
927be08e 2873 /* TLS local dynamic got entry handling. Support for multiple GOT
e717da7e 2874 sections means we potentially need one of these for each input bfd. */
927be08e 2875 struct got_entry tlsld_got;
8860955f 2876
729eabd5
AM
2877 union {
2878 /* A copy of relocs before they are modified for --emit-relocs. */
2879 Elf_Internal_Rela *relocs;
2880
2881 /* Section contents. */
2882 bfd_byte *contents;
2883 } opd;
d77c8a4b
AM
2884
2885 /* Nonzero if this bfd has small toc/got relocs, ie. that expect
2886 the reloc to be in the range -32768 to 32767. */
98528052
AM
2887 unsigned int has_small_toc_reloc : 1;
2888
560c8763
AM
2889 /* Set if toc/got ha relocs detected not using r2, or lo reloc
2890 instruction not one we handle. */
2891 unsigned int unexpected_toc_insn : 1;
e717da7e
AM
2892};
2893
2894#define ppc64_elf_tdata(bfd) \
2895 ((struct ppc64_elf_obj_tdata *) (bfd)->tdata.any)
2896
2897#define ppc64_tlsld_got(bfd) \
2898 (&ppc64_elf_tdata (bfd)->tlsld_got)
2899
0c8d6e5c
AM
2900#define is_ppc64_elf(bfd) \
2901 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
4dfe6ac6 2902 && elf_object_id (bfd) == PPC64_ELF_DATA)
0c8d6e5c 2903
e717da7e
AM
2904/* Override the generic function because we store some extras. */
2905
2906static bfd_boolean
2907ppc64_elf_mkobject (bfd *abfd)
2908{
0ffa91dd 2909 return bfd_elf_allocate_object (abfd, sizeof (struct ppc64_elf_obj_tdata),
4dfe6ac6 2910 PPC64_ELF_DATA);
e717da7e
AM
2911}
2912
feee612b 2913/* Fix bad default arch selected for a 64 bit input bfd when the
14b57c7c 2914 default is 32 bit. Also select arch based on apuinfo. */
feee612b 2915
b34976b6 2916static bfd_boolean
4ce794b7 2917ppc64_elf_object_p (bfd *abfd)
feee612b 2918{
14b57c7c
AM
2919 if (!abfd->arch_info->the_default)
2920 return TRUE;
2921
2922 if (abfd->arch_info->bits_per_word == 32)
feee612b
AM
2923 {
2924 Elf_Internal_Ehdr *i_ehdr = elf_elfheader (abfd);
2925
2926 if (i_ehdr->e_ident[EI_CLASS] == ELFCLASS64)
2927 {
2928 /* Relies on arch after 32 bit default being 64 bit default. */
2929 abfd->arch_info = abfd->arch_info->next;
2930 BFD_ASSERT (abfd->arch_info->bits_per_word == 64);
2931 }
2932 }
14b57c7c 2933 return _bfd_elf_ppc_set_arch (abfd);
feee612b
AM
2934}
2935
d37c89e5
AM
2936/* Support for core dump NOTE sections. */
2937
2938static bfd_boolean
2939ppc64_elf_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
2940{
eea6121a 2941 size_t offset, size;
d37c89e5
AM
2942
2943 if (note->descsz != 504)
2944 return FALSE;
2945
2946 /* pr_cursig */
228e534f 2947 elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
d37c89e5
AM
2948
2949 /* pr_pid */
228e534f 2950 elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 32);
d37c89e5
AM
2951
2952 /* pr_reg */
2953 offset = 112;
eea6121a 2954 size = 384;
d37c89e5
AM
2955
2956 /* Make a ".reg/999" section. */
2957 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
eea6121a 2958 size, note->descpos + offset);
d37c89e5
AM
2959}
2960
2961static bfd_boolean
2962ppc64_elf_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
2963{
2964 if (note->descsz != 136)
2965 return FALSE;
2966
228e534f 2967 elf_tdata (abfd)->core->pid
bc989cdc 2968 = bfd_get_32 (abfd, note->descdata + 24);
228e534f 2969 elf_tdata (abfd)->core->program
d37c89e5 2970 = _bfd_elfcore_strndup (abfd, note->descdata + 40, 16);
228e534f 2971 elf_tdata (abfd)->core->command
d37c89e5
AM
2972 = _bfd_elfcore_strndup (abfd, note->descdata + 56, 80);
2973
2974 return TRUE;
2975}
2976
183e98be
AM
2977static char *
2978ppc64_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
2979 ...)
2980{
2981 switch (note_type)
2982 {
2983 default:
2984 return NULL;
2985
2986 case NT_PRPSINFO:
2987 {
2988 char data[136];
2989 va_list ap;
2990
2991 va_start (ap, note_type);
75cd47ed 2992 memset (data, 0, sizeof (data));
183e98be
AM
2993 strncpy (data + 40, va_arg (ap, const char *), 16);
2994 strncpy (data + 56, va_arg (ap, const char *), 80);
2995 va_end (ap);
2996 return elfcore_write_note (abfd, buf, bufsiz,
2997 "CORE", note_type, data, sizeof (data));
2998 }
2999
3000 case NT_PRSTATUS:
3001 {
3002 char data[504];
3003 va_list ap;
3004 long pid;
3005 int cursig;
3006 const void *greg;
3007
3008 va_start (ap, note_type);
3009 memset (data, 0, 112);
3010 pid = va_arg (ap, long);
3011 bfd_put_32 (abfd, pid, data + 32);
3012 cursig = va_arg (ap, int);
3013 bfd_put_16 (abfd, cursig, data + 12);
3014 greg = va_arg (ap, const void *);
3015 memcpy (data + 112, greg, 384);
3016 memset (data + 496, 0, 8);
3017 va_end (ap);
3018 return elfcore_write_note (abfd, buf, bufsiz,
3019 "CORE", note_type, data, sizeof (data));
3020 }
3021 }
3022}
3023
5d35169e
AM
3024/* Add extra PPC sections. */
3025
b35d266b 3026static const struct bfd_elf_special_section ppc64_elf_special_sections[]=
7f4d3958 3027{
0112cd26
NC
3028 { STRING_COMMA_LEN (".plt"), 0, SHT_NOBITS, 0 },
3029 { STRING_COMMA_LEN (".sbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
3030 { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
3031 { STRING_COMMA_LEN (".toc"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
3032 { STRING_COMMA_LEN (".toc1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
3033 { STRING_COMMA_LEN (".tocbss"), 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
3034 { NULL, 0, 0, 0, 0 }
5d35169e
AM
3035};
3036
7c8fe5c4
AM
3037enum _ppc64_sec_type {
3038 sec_normal = 0,
3039 sec_opd = 1,
3040 sec_toc = 2
3041};
3042
f0abc2a1
AM
3043struct _ppc64_elf_section_data
3044{
3045 struct bfd_elf_section_data elf;
411e1bfb 3046
f0abc2a1
AM
3047 union
3048 {
51aecdc5
AM
3049 /* An array with one entry for each opd function descriptor,
3050 and some spares since opd entries may be either 16 or 24 bytes. */
3051#define OPD_NDX(OFF) ((OFF) >> 4)
74f0fb50
AM
3052 struct _opd_sec_data
3053 {
3054 /* Points to the function code section for local opd entries. */
3055 asection **func_sec;
3056
3057 /* After editing .opd, adjust references to opd local syms. */
3058 long *adjust;
3059 } opd;
7c8fe5c4 3060
3a71aa26
AM
3061 /* An array for toc sections, indexed by offset/8. */
3062 struct _toc_sec_data
3063 {
3064 /* Specifies the relocation symbol index used at a given toc offset. */
3065 unsigned *symndx;
3066
3067 /* And the relocation addend. */
3068 bfd_vma *add;
3069 } toc;
7c8fe5c4
AM
3070 } u;
3071
3072 enum _ppc64_sec_type sec_type:2;
411e1bfb 3073
7c8fe5c4
AM
3074 /* Flag set when small branches are detected. Used to
3075 select suitable defaults for the stub group size. */
3076 unsigned int has_14bit_branch:1;
f0abc2a1
AM
3077};
3078
3079#define ppc64_elf_section_data(sec) \
411e1bfb 3080 ((struct _ppc64_elf_section_data *) elf_section_data (sec))
f0abc2a1
AM
3081
3082static bfd_boolean
4ce794b7 3083ppc64_elf_new_section_hook (bfd *abfd, asection *sec)
f0abc2a1 3084{
f592407e
AM
3085 if (!sec->used_by_bfd)
3086 {
3087 struct _ppc64_elf_section_data *sdata;
3088 bfd_size_type amt = sizeof (*sdata);
f0abc2a1 3089
f592407e
AM
3090 sdata = bfd_zalloc (abfd, amt);
3091 if (sdata == NULL)
3092 return FALSE;
3093 sec->used_by_bfd = sdata;
3094 }
f0abc2a1
AM
3095
3096 return _bfd_elf_new_section_hook (abfd, sec);
3097}
4025353c 3098
74f0fb50 3099static struct _opd_sec_data *
4025353c
AM
3100get_opd_info (asection * sec)
3101{
3102 if (sec != NULL
3103 && ppc64_elf_section_data (sec) != NULL
7c8fe5c4 3104 && ppc64_elf_section_data (sec)->sec_type == sec_opd)
74f0fb50 3105 return &ppc64_elf_section_data (sec)->u.opd;
4025353c
AM
3106 return NULL;
3107}
90e3cdf2
JJ
3108\f
3109/* Parameters for the qsort hook. */
90e3cdf2 3110static bfd_boolean synthetic_relocatable;
cd285db5 3111static asection *synthetic_opd;
90e3cdf2 3112
699733f6 3113/* qsort comparison function for ppc64_elf_get_synthetic_symtab. */
90e3cdf2
JJ
3114
3115static int
3116compare_symbols (const void *ap, const void *bp)
3117{
3118 const asymbol *a = * (const asymbol **) ap;
3119 const asymbol *b = * (const asymbol **) bp;
3120
699733f6
AM
3121 /* Section symbols first. */
3122 if ((a->flags & BSF_SECTION_SYM) && !(b->flags & BSF_SECTION_SYM))
90e3cdf2 3123 return -1;
699733f6 3124 if (!(a->flags & BSF_SECTION_SYM) && (b->flags & BSF_SECTION_SYM))
90e3cdf2
JJ
3125 return 1;
3126
699733f6 3127 /* then .opd symbols. */
cd285db5
AM
3128 if (synthetic_opd != NULL)
3129 {
3130 if (strcmp (a->section->name, ".opd") == 0
3131 && strcmp (b->section->name, ".opd") != 0)
3132 return -1;
3133 if (strcmp (a->section->name, ".opd") != 0
3134 && strcmp (b->section->name, ".opd") == 0)
3135 return 1;
3136 }
90e3cdf2 3137
699733f6 3138 /* then other code symbols. */
90e3cdf2
JJ
3139 if ((a->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3140 == (SEC_CODE | SEC_ALLOC)
3141 && (b->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3142 != (SEC_CODE | SEC_ALLOC))
3143 return -1;
3144
3145 if ((a->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3146 != (SEC_CODE | SEC_ALLOC)
3147 && (b->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3148 == (SEC_CODE | SEC_ALLOC))
3149 return 1;
3150
3151 if (synthetic_relocatable)
3152 {
3153 if (a->section->id < b->section->id)
3154 return -1;
3155
3156 if (a->section->id > b->section->id)
3157 return 1;
3158 }
3159
3160 if (a->value + a->section->vma < b->value + b->section->vma)
3161 return -1;
3162
3163 if (a->value + a->section->vma > b->value + b->section->vma)
3164 return 1;
3165
4d35a0aa
AM
3166 /* For syms with the same value, prefer strong dynamic global function
3167 syms over other syms. */
3168 if ((a->flags & BSF_GLOBAL) != 0 && (b->flags & BSF_GLOBAL) == 0)
3169 return -1;
3170
3171 if ((a->flags & BSF_GLOBAL) == 0 && (b->flags & BSF_GLOBAL) != 0)
3172 return 1;
3173
3174 if ((a->flags & BSF_FUNCTION) != 0 && (b->flags & BSF_FUNCTION) == 0)
3175 return -1;
3176
3177 if ((a->flags & BSF_FUNCTION) == 0 && (b->flags & BSF_FUNCTION) != 0)
3178 return 1;
3179
3180 if ((a->flags & BSF_WEAK) == 0 && (b->flags & BSF_WEAK) != 0)
3181 return -1;
3182
3183 if ((a->flags & BSF_WEAK) != 0 && (b->flags & BSF_WEAK) == 0)
3184 return 1;
3185
3186 if ((a->flags & BSF_DYNAMIC) != 0 && (b->flags & BSF_DYNAMIC) == 0)
3187 return -1;
3188
3189 if ((a->flags & BSF_DYNAMIC) == 0 && (b->flags & BSF_DYNAMIC) != 0)
3190 return 1;
3191
aaed6f5b 3192 return a > b;
90e3cdf2
JJ
3193}
3194
699733f6 3195/* Search SYMS for a symbol of the given VALUE. */
90e3cdf2 3196
699733f6 3197static asymbol *
7292b3ac 3198sym_exists_at (asymbol **syms, long lo, long hi, unsigned int id, bfd_vma value)
90e3cdf2 3199{
699733f6 3200 long mid;
90e3cdf2 3201
7292b3ac 3202 if (id == (unsigned) -1)
699733f6
AM
3203 {
3204 while (lo < hi)
3205 {
3206 mid = (lo + hi) >> 1;
3207 if (syms[mid]->value + syms[mid]->section->vma < value)
3208 lo = mid + 1;
3209 else if (syms[mid]->value + syms[mid]->section->vma > value)
3210 hi = mid;
3211 else
3212 return syms[mid];
3213 }
3214 }
3215 else
3216 {
3217 while (lo < hi)
3218 {
3219 mid = (lo + hi) >> 1;
3220 if (syms[mid]->section->id < id)
3221 lo = mid + 1;
3222 else if (syms[mid]->section->id > id)
3223 hi = mid;
3224 else if (syms[mid]->value < value)
3225 lo = mid + 1;
3226 else if (syms[mid]->value > value)
3227 hi = mid;
3228 else
3229 return syms[mid];
3230 }
3231 }
3232 return NULL;
90e3cdf2
JJ
3233}
3234
468392fb
AM
3235static bfd_boolean
3236section_covers_vma (bfd *abfd ATTRIBUTE_UNUSED, asection *section, void *ptr)
3237{
3238 bfd_vma vma = *(bfd_vma *) ptr;
3239 return ((section->flags & SEC_ALLOC) != 0
3240 && section->vma <= vma
3241 && vma < section->vma + section->size);
3242}
3243
699733f6 3244/* Create synthetic symbols, effectively restoring "dot-symbol" function
c4b0b099
AM
3245 entry syms. Also generate @plt symbols for the glink branch table.
3246 Returns count of synthetic symbols in RET or -1 on error. */
90e3cdf2
JJ
3247
3248static long
a7535cf3
AM
3249ppc64_elf_get_synthetic_symtab (bfd *abfd,
3250 long static_count, asymbol **static_syms,
3251 long dyn_count, asymbol **dyn_syms,
c9727e01 3252 asymbol **ret)
90e3cdf2
JJ
3253{
3254 asymbol *s;
699733f6
AM
3255 long i;
3256 long count;
90e3cdf2 3257 char *names;
a7535cf3 3258 long symcount, codesecsym, codesecsymend, secsymend, opdsymend;
ee67d69a 3259 asection *opd = NULL;
90e3cdf2 3260 bfd_boolean relocatable = (abfd->flags & (EXEC_P | DYNAMIC)) == 0;
a7535cf3 3261 asymbol **syms;
ee67d69a 3262 int abi = abiversion (abfd);
90e3cdf2
JJ
3263
3264 *ret = NULL;
3265
ee67d69a
AM
3266 if (abi < 2)
3267 {
3268 opd = bfd_get_section_by_name (abfd, ".opd");
3269 if (opd == NULL && abi == 1)
3270 return 0;
3271 }
90e3cdf2 3272
a5259595
AM
3273 syms = NULL;
3274 codesecsym = 0;
3275 codesecsymend = 0;
3276 secsymend = 0;
3277 opdsymend = 0;
3278 symcount = 0;
3279 if (opd != NULL)
c9727e01 3280 {
a5259595
AM
3281 symcount = static_count;
3282 if (!relocatable)
3283 symcount += dyn_count;
3284 if (symcount == 0)
3285 return 0;
c9727e01 3286
a5259595
AM
3287 syms = bfd_malloc ((symcount + 1) * sizeof (*syms));
3288 if (syms == NULL)
3289 return -1;
90e3cdf2 3290
a5259595
AM
3291 if (!relocatable && static_count != 0 && dyn_count != 0)
3292 {
3293 /* Use both symbol tables. */
3294 memcpy (syms, static_syms, static_count * sizeof (*syms));
3295 memcpy (syms + static_count, dyn_syms,
3296 (dyn_count + 1) * sizeof (*syms));
3297 }
3298 else if (!relocatable && static_count == 0)
3299 memcpy (syms, dyn_syms, (symcount + 1) * sizeof (*syms));
3300 else
3301 memcpy (syms, static_syms, (symcount + 1) * sizeof (*syms));
90e3cdf2 3302
a5259595
AM
3303 synthetic_relocatable = relocatable;
3304 synthetic_opd = opd;
3305 qsort (syms, symcount, sizeof (*syms), compare_symbols);
90e3cdf2 3306
a5259595
AM
3307 if (!relocatable && symcount > 1)
3308 {
3309 long j;
3310 /* Trim duplicate syms, since we may have merged the normal and
3311 dynamic symbols. Actually, we only care about syms that have
3312 different values, so trim any with the same value. */
3313 for (i = 1, j = 1; i < symcount; ++i)
3314 if (syms[i - 1]->value + syms[i - 1]->section->vma
3315 != syms[i]->value + syms[i]->section->vma)
3316 syms[j++] = syms[i];
3317 symcount = j;
3318 }
699733f6 3319
a5259595
AM
3320 i = 0;
3321 /* Note that here and in compare_symbols we can't compare opd and
3322 sym->section directly. With separate debug info files, the
3323 symbols will be extracted from the debug file while abfd passed
3324 to this function is the real binary. */
3325 if (opd != NULL && strcmp (syms[i]->section->name, ".opd") == 0)
3326 ++i;
3327 codesecsym = i;
3328
3329 for (; i < symcount; ++i)
3330 if (((syms[i]->section->flags & (SEC_CODE | SEC_ALLOC
3331 | SEC_THREAD_LOCAL))
3332 != (SEC_CODE | SEC_ALLOC))
3333 || (syms[i]->flags & BSF_SECTION_SYM) == 0)
3334 break;
3335 codesecsymend = i;
3336
3337 for (; i < symcount; ++i)
3338 if ((syms[i]->flags & BSF_SECTION_SYM) == 0)
3339 break;
3340 secsymend = i;
3341
3342 for (; i < symcount; ++i)
3343 if (strcmp (syms[i]->section->name, ".opd") != 0)
3344 break;
3345 opdsymend = i;
3346
3347 for (; i < symcount; ++i)
3348 if ((syms[i]->section->flags & (SEC_CODE | SEC_ALLOC | SEC_THREAD_LOCAL))
3349 != (SEC_CODE | SEC_ALLOC))
3350 break;
3351 symcount = i;
3352 }
c9727e01 3353 count = 0;
90e3cdf2 3354
699733f6 3355 if (relocatable)
90e3cdf2 3356 {
699733f6
AM
3357 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
3358 arelent *r;
3359 size_t size;
3360 long relcount;
90e3cdf2 3361
468392fb
AM
3362 if (opdsymend == secsymend)
3363 goto done;
3364
699733f6 3365 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
90e3cdf2 3366 relcount = (opd->flags & SEC_RELOC) ? opd->reloc_count : 0;
7356fed5 3367 if (relcount == 0)
c9727e01 3368 goto done;
90e3cdf2 3369
7356fed5
AM
3370 if (!(*slurp_relocs) (abfd, opd, static_syms, FALSE))
3371 {
3372 count = -1;
3373 goto done;
3374 }
3375
699733f6 3376 size = 0;
595da8c5 3377 for (i = secsymend, r = opd->relocation; i < opdsymend; ++i)
699733f6
AM
3378 {
3379 asymbol *sym;
90e3cdf2 3380
595da8c5 3381 while (r < opd->relocation + relcount
699733f6
AM
3382 && r->address < syms[i]->value + opd->vma)
3383 ++r;
90e3cdf2 3384
595da8c5 3385 if (r == opd->relocation + relcount)
699733f6 3386 break;
90e3cdf2 3387
699733f6
AM
3388 if (r->address != syms[i]->value + opd->vma)
3389 continue;
90e3cdf2 3390
699733f6
AM
3391 if (r->howto->type != R_PPC64_ADDR64)
3392 continue;
90e3cdf2 3393
699733f6
AM
3394 sym = *r->sym_ptr_ptr;
3395 if (!sym_exists_at (syms, opdsymend, symcount,
3396 sym->section->id, sym->value + r->addend))
3397 {
3398 ++count;
3399 size += sizeof (asymbol);
3400 size += strlen (syms[i]->name) + 2;
3401 }
3402 }
90e3cdf2 3403
c4b0b099
AM
3404 if (size == 0)
3405 goto done;
699733f6
AM
3406 s = *ret = bfd_malloc (size);
3407 if (s == NULL)
3408 {
7356fed5 3409 count = -1;
c9727e01 3410 goto done;
699733f6 3411 }
90e3cdf2 3412
699733f6 3413 names = (char *) (s + count);
90e3cdf2 3414
595da8c5 3415 for (i = secsymend, r = opd->relocation; i < opdsymend; ++i)
90e3cdf2 3416 {
699733f6 3417 asymbol *sym;
90e3cdf2 3418
595da8c5 3419 while (r < opd->relocation + relcount
699733f6
AM
3420 && r->address < syms[i]->value + opd->vma)
3421 ++r;
90e3cdf2 3422
595da8c5 3423 if (r == opd->relocation + relcount)
699733f6
AM
3424 break;
3425
3426 if (r->address != syms[i]->value + opd->vma)
3427 continue;
3428
3429 if (r->howto->type != R_PPC64_ADDR64)
3430 continue;
90e3cdf2 3431
699733f6
AM
3432 sym = *r->sym_ptr_ptr;
3433 if (!sym_exists_at (syms, opdsymend, symcount,
3434 sym->section->id, sym->value + r->addend))
3435 {
3436 size_t len;
3437
3438 *s = *syms[i];
6ba2a415 3439 s->flags |= BSF_SYNTHETIC;
699733f6
AM
3440 s->section = sym->section;
3441 s->value = sym->value + r->addend;
3442 s->name = names;
3443 *names++ = '.';
3444 len = strlen (syms[i]->name);
3445 memcpy (names, syms[i]->name, len + 1);
3446 names += len + 1;
6f610d07
UW
3447 /* Have udata.p point back to the original symbol this
3448 synthetic symbol was derived from. */
3449 s->udata.p = syms[i];
699733f6
AM
3450 s++;
3451 }
3452 }
3453 }
3454 else
90e3cdf2 3455 {
468392fb 3456 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
ee67d69a 3457 bfd_byte *contents = NULL;
699733f6 3458 size_t size;
468392fb
AM
3459 long plt_count = 0;
3460 bfd_vma glink_vma = 0, resolv_vma = 0;
3461 asection *dynamic, *glink = NULL, *relplt = NULL;
3462 arelent *p;
90e3cdf2 3463
ee67d69a 3464 if (opd != NULL && !bfd_malloc_and_get_section (abfd, opd, &contents))
699733f6 3465 {
c4b0b099
AM
3466 free_contents_and_exit_err:
3467 count = -1;
ee67d69a 3468 free_contents_and_exit:
699733f6 3469 if (contents)
ee67d69a 3470 free (contents);
c9727e01 3471 goto done;
699733f6 3472 }
90e3cdf2 3473
699733f6
AM
3474 size = 0;
3475 for (i = secsymend; i < opdsymend; ++i)
3476 {
3477 bfd_vma ent;
90e3cdf2 3478
5ef11c02
AM
3479 /* Ignore bogus symbols. */
3480 if (syms[i]->value > opd->size - 8)
3481 continue;
3482
699733f6
AM
3483 ent = bfd_get_64 (abfd, contents + syms[i]->value);
3484 if (!sym_exists_at (syms, opdsymend, symcount, -1, ent))
3485 {
3486 ++count;
3487 size += sizeof (asymbol);
3488 size += strlen (syms[i]->name) + 2;
3489 }
3490 }
90e3cdf2 3491
468392fb 3492 /* Get start of .glink stubs from DT_PPC64_GLINK. */
066ee829
AM
3493 if (dyn_count != 0
3494 && (dynamic = bfd_get_section_by_name (abfd, ".dynamic")) != NULL)
468392fb
AM
3495 {
3496 bfd_byte *dynbuf, *extdyn, *extdynend;
3497 size_t extdynsize;
3498 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
3499
3500 if (!bfd_malloc_and_get_section (abfd, dynamic, &dynbuf))
c4b0b099 3501 goto free_contents_and_exit_err;
468392fb
AM
3502
3503 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
3504 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
3505
3506 extdyn = dynbuf;
3507 extdynend = extdyn + dynamic->size;
3508 for (; extdyn < extdynend; extdyn += extdynsize)
3509 {
3510 Elf_Internal_Dyn dyn;
3511 (*swap_dyn_in) (abfd, extdyn, &dyn);
3512
3513 if (dyn.d_tag == DT_NULL)
3514 break;
3515
3516 if (dyn.d_tag == DT_PPC64_GLINK)
3517 {
b9e5796b
AM
3518 /* The first glink stub starts at offset 32; see
3519 comment in ppc64_elf_finish_dynamic_sections. */
3520 glink_vma = dyn.d_un.d_val + GLINK_CALL_STUB_SIZE - 8 * 4;
468392fb
AM
3521 /* The .glink section usually does not survive the final
3522 link; search for the section (usually .text) where the
3523 glink stubs now reside. */
3524 glink = bfd_sections_find_if (abfd, section_covers_vma,
3525 &glink_vma);
3526 break;
3527 }
3528 }
3529
3530 free (dynbuf);
3531 }
3532
3533 if (glink != NULL)
3534 {
3535 /* Determine __glink trampoline by reading the relative branch
3536 from the first glink stub. */
3537 bfd_byte buf[4];
b9e5796b
AM
3538 unsigned int off = 0;
3539
3540 while (bfd_get_section_contents (abfd, glink, buf,
3541 glink_vma + off - glink->vma, 4))
468392fb
AM
3542 {
3543 unsigned int insn = bfd_get_32 (abfd, buf);
3544 insn ^= B_DOT;
3545 if ((insn & ~0x3fffffc) == 0)
b9e5796b
AM
3546 {
3547 resolv_vma = glink_vma + off + (insn ^ 0x2000000) - 0x2000000;
3548 break;
3549 }
3550 off += 4;
3551 if (off > 4)
3552 break;
468392fb
AM
3553 }
3554
3555 if (resolv_vma)
3556 size += sizeof (asymbol) + sizeof ("__glink_PLTresolve");
468392fb 3557
066ee829
AM
3558 relplt = bfd_get_section_by_name (abfd, ".rela.plt");
3559 if (relplt != NULL)
3560 {
3561 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
3562 if (! (*slurp_relocs) (abfd, relplt, dyn_syms, TRUE))
c4b0b099 3563 goto free_contents_and_exit_err;
68ffbac6 3564
066ee829
AM
3565 plt_count = relplt->size / sizeof (Elf64_External_Rela);
3566 size += plt_count * sizeof (asymbol);
468392fb 3567
066ee829
AM
3568 p = relplt->relocation;
3569 for (i = 0; i < plt_count; i++, p++)
e054468f
AM
3570 {
3571 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
3572 if (p->addend != 0)
3573 size += sizeof ("+0x") - 1 + 16;
3574 }
066ee829 3575 }
468392fb
AM
3576 }
3577
c4b0b099
AM
3578 if (size == 0)
3579 goto free_contents_and_exit;
699733f6
AM
3580 s = *ret = bfd_malloc (size);
3581 if (s == NULL)
c4b0b099 3582 goto free_contents_and_exit_err;
90e3cdf2 3583
468392fb 3584 names = (char *) (s + count + plt_count + (resolv_vma != 0));
90e3cdf2 3585
699733f6 3586 for (i = secsymend; i < opdsymend; ++i)
90e3cdf2 3587 {
699733f6 3588 bfd_vma ent;
90e3cdf2 3589
5ef11c02
AM
3590 if (syms[i]->value > opd->size - 8)
3591 continue;
3592
699733f6
AM
3593 ent = bfd_get_64 (abfd, contents + syms[i]->value);
3594 if (!sym_exists_at (syms, opdsymend, symcount, -1, ent))
90e3cdf2 3595 {
c9727e01 3596 long lo, hi;
699733f6 3597 size_t len;
c9727e01 3598 asection *sec = abfd->sections;
90e3cdf2 3599
699733f6
AM
3600 *s = *syms[i];
3601 lo = codesecsym;
3602 hi = codesecsymend;
3603 while (lo < hi)
3604 {
c9727e01 3605 long mid = (lo + hi) >> 1;
699733f6
AM
3606 if (syms[mid]->section->vma < ent)
3607 lo = mid + 1;
3608 else if (syms[mid]->section->vma > ent)
3609 hi = mid;
3610 else
c9727e01
AM
3611 {
3612 sec = syms[mid]->section;
3613 break;
3614 }
699733f6
AM
3615 }
3616
c9727e01 3617 if (lo >= hi && lo > codesecsym)
699733f6 3618 sec = syms[lo - 1]->section;
699733f6
AM
3619
3620 for (; sec != NULL; sec = sec->next)
3621 {
3622 if (sec->vma > ent)
3623 break;
63524580
JK
3624 /* SEC_LOAD may not be set if SEC is from a separate debug
3625 info file. */
3626 if ((sec->flags & SEC_ALLOC) == 0)
699733f6
AM
3627 break;
3628 if ((sec->flags & SEC_CODE) != 0)
3629 s->section = sec;
3630 }
6ba2a415 3631 s->flags |= BSF_SYNTHETIC;
699733f6
AM
3632 s->value = ent - s->section->vma;
3633 s->name = names;
3634 *names++ = '.';
3635 len = strlen (syms[i]->name);
3636 memcpy (names, syms[i]->name, len + 1);
3637 names += len + 1;
6f610d07
UW
3638 /* Have udata.p point back to the original symbol this
3639 synthetic symbol was derived from. */
3640 s->udata.p = syms[i];
699733f6 3641 s++;
90e3cdf2 3642 }
90e3cdf2 3643 }
699733f6 3644 free (contents);
468392fb
AM
3645
3646 if (glink != NULL && relplt != NULL)
3647 {
3648 if (resolv_vma)
3649 {
3650 /* Add a symbol for the main glink trampoline. */
86a4952b 3651 memset (s, 0, sizeof *s);
468392fb 3652 s->the_bfd = abfd;
6ba2a415 3653 s->flags = BSF_GLOBAL | BSF_SYNTHETIC;
468392fb
AM
3654 s->section = glink;
3655 s->value = resolv_vma - glink->vma;
3656 s->name = names;
3657 memcpy (names, "__glink_PLTresolve", sizeof ("__glink_PLTresolve"));
3658 names += sizeof ("__glink_PLTresolve");
3659 s++;
3660 count++;
3661 }
3662
3663 /* FIXME: It would be very much nicer to put sym@plt on the
3664 stub rather than on the glink branch table entry. The
3665 objdump disassembler would then use a sensible symbol
3666 name on plt calls. The difficulty in doing so is
3667 a) finding the stubs, and,
3668 b) matching stubs against plt entries, and,
3669 c) there can be multiple stubs for a given plt entry.
3670
3671 Solving (a) could be done by code scanning, but older
3672 ppc64 binaries used different stubs to current code.
3673 (b) is the tricky one since you need to known the toc
3674 pointer for at least one function that uses a pic stub to
3675 be able to calculate the plt address referenced.
3676 (c) means gdb would need to set multiple breakpoints (or
3677 find the glink branch itself) when setting breakpoints
3678 for pending shared library loads. */
3679 p = relplt->relocation;
3680 for (i = 0; i < plt_count; i++, p++)
3681 {
3682 size_t len;
3683
3684 *s = **p->sym_ptr_ptr;
3685 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
3686 we are defining a symbol, ensure one of them is set. */
3687 if ((s->flags & BSF_LOCAL) == 0)
3688 s->flags |= BSF_GLOBAL;
6ba2a415 3689 s->flags |= BSF_SYNTHETIC;
468392fb
AM
3690 s->section = glink;
3691 s->value = glink_vma - glink->vma;
3692 s->name = names;
3693 s->udata.p = NULL;
3694 len = strlen ((*p->sym_ptr_ptr)->name);
3695 memcpy (names, (*p->sym_ptr_ptr)->name, len);
3696 names += len;
e054468f
AM
3697 if (p->addend != 0)
3698 {
3699 memcpy (names, "+0x", sizeof ("+0x") - 1);
3700 names += sizeof ("+0x") - 1;
3701 bfd_sprintf_vma (abfd, names, p->addend);
3702 names += strlen (names);
3703 }
468392fb
AM
3704 memcpy (names, "@plt", sizeof ("@plt"));
3705 names += sizeof ("@plt");
3706 s++;
b9e5796b
AM
3707 if (abi < 2)
3708 {
3709 glink_vma += 8;
3710 if (i >= 0x8000)
3711 glink_vma += 4;
3712 }
3713 else
468392fb
AM
3714 glink_vma += 4;
3715 }
3716 count += plt_count;
3717 }
90e3cdf2
JJ
3718 }
3719
c9727e01 3720 done:
a7535cf3 3721 free (syms);
90e3cdf2
JJ
3722 return count;
3723}
5bd4f169 3724\f
65f38f15
AM
3725/* The following functions are specific to the ELF linker, while
3726 functions above are used generally. Those named ppc64_elf_* are
3727 called by the main ELF linker code. They appear in this file more
3728 or less in the order in which they are called. eg.
3729 ppc64_elf_check_relocs is called early in the link process,
3730 ppc64_elf_finish_dynamic_sections is one of the last functions
e86ce104
AM
3731 called.
3732
3733 PowerPC64-ELF uses a similar scheme to PowerPC64-XCOFF in that
3734 functions have both a function code symbol and a function descriptor
3735 symbol. A call to foo in a relocatable object file looks like:
3736
3737 . .text
3738 . x:
3739 . bl .foo
3740 . nop
3741
3742 The function definition in another object file might be:
3743
3744 . .section .opd
3745 . foo: .quad .foo
3746 . .quad .TOC.@tocbase
3747 . .quad 0
3748 .
3749 . .text
3750 . .foo: blr
3751
3752 When the linker resolves the call during a static link, the branch
3753 unsurprisingly just goes to .foo and the .opd information is unused.
3754 If the function definition is in a shared library, things are a little
3755 different: The call goes via a plt call stub, the opd information gets
3756 copied to the plt, and the linker patches the nop.
3757
3758 . x:
3759 . bl .foo_stub
3760 . ld 2,40(1)
3761 .
3762 .
3763 . .foo_stub:
71a39c98
AM
3764 . std 2,40(1) # in practice, the call stub
3765 . addis 11,2,Lfoo@toc@ha # is slightly optimized, but
3766 . addi 11,11,Lfoo@toc@l # this is the general idea
3767 . ld 12,0(11)
3768 . ld 2,8(11)
3769 . mtctr 12
3770 . ld 11,16(11)
e86ce104
AM
3771 . bctr
3772 .
3773 . .section .plt
3774 . Lfoo: reloc (R_PPC64_JMP_SLOT, foo)
3775
3776 The "reloc ()" notation is supposed to indicate that the linker emits
3777 an R_PPC64_JMP_SLOT reloc against foo. The dynamic linker does the opd
3778 copying.
3779
3780 What are the difficulties here? Well, firstly, the relocations
3781 examined by the linker in check_relocs are against the function code
3782 sym .foo, while the dynamic relocation in the plt is emitted against
3783 the function descriptor symbol, foo. Somewhere along the line, we need
3784 to carefully copy dynamic link information from one symbol to the other.
3785 Secondly, the generic part of the elf linker will make .foo a dynamic
3786 symbol as is normal for most other backends. We need foo dynamic
3787 instead, at least for an application final link. However, when
3788 creating a shared library containing foo, we need to have both symbols
3789 dynamic so that references to .foo are satisfied during the early
3790 stages of linking. Otherwise the linker might decide to pull in a
8387904d
AM
3791 definition from some other object, eg. a static library.
3792
3793 Update: As of August 2004, we support a new convention. Function
3794 calls may use the function descriptor symbol, ie. "bl foo". This
3795 behaves exactly as "bl .foo". */
65f38f15 3796
7c8bbca5
AM
3797/* Of those relocs that might be copied as dynamic relocs, this
3798 function selects those that must be copied when linking a shared
3799 library or PIE, even when the symbol is local. */
65f38f15 3800
1d483afe
AM
3801static int
3802must_be_dyn_reloc (struct bfd_link_info *info,
3803 enum elf_ppc64_reloc_type r_type)
3804{
3805 switch (r_type)
3806 {
3807 default:
7c8bbca5
AM
3808 /* Only relative relocs can be resolved when the object load
3809 address isn't fixed. DTPREL64 is excluded because the
3810 dynamic linker needs to differentiate global dynamic from
3811 local dynamic __tls_index pairs when PPC64_OPT_TLS is set. */
1d483afe
AM
3812 return 1;
3813
3814 case R_PPC64_REL32:
3815 case R_PPC64_REL64:
3816 case R_PPC64_REL30:
3817 return 0;
3818
3819 case R_PPC64_TPREL16:
3820 case R_PPC64_TPREL16_LO:
3821 case R_PPC64_TPREL16_HI:
3822 case R_PPC64_TPREL16_HA:
3823 case R_PPC64_TPREL16_DS:
3824 case R_PPC64_TPREL16_LO_DS:
f9c6b907
AM
3825 case R_PPC64_TPREL16_HIGH:
3826 case R_PPC64_TPREL16_HIGHA:
1d483afe
AM
3827 case R_PPC64_TPREL16_HIGHER:
3828 case R_PPC64_TPREL16_HIGHERA:
3829 case R_PPC64_TPREL16_HIGHEST:
3830 case R_PPC64_TPREL16_HIGHESTA:
3831 case R_PPC64_TPREL64:
7c8bbca5
AM
3832 /* These relocations are relative but in a shared library the
3833 linker doesn't know the thread pointer base. */
3834 return bfd_link_dll (info);
1d483afe
AM
3835 }
3836}
65f38f15 3837
f4656909
AM
3838/* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
3839 copying dynamic variables from a shared lib into an app's dynbss
3840 section, and instead use a dynamic relocation to point into the
5d35169e
AM
3841 shared lib. With code that gcc generates, it's vital that this be
3842 enabled; In the PowerPC64 ABI, the address of a function is actually
3843 the address of a function descriptor, which resides in the .opd
3844 section. gcc uses the descriptor directly rather than going via the
3845 GOT as some other ABI's do, which means that initialized function
3846 pointers must reference the descriptor. Thus, a function pointer
3847 initialized to the address of a function in a shared library will
3848 either require a copy reloc, or a dynamic reloc. Using a copy reloc
4cc11e76 3849 redefines the function descriptor symbol to point to the copy. This
5d35169e
AM
3850 presents a problem as a plt entry for that function is also
3851 initialized from the function descriptor symbol and the copy reloc
3852 may not be initialized first. */
a23b6845 3853#define ELIMINATE_COPY_RELOCS 1
f4656909 3854
721956f4 3855/* Section name for stubs is the associated section name plus this
29942be8
NC
3856 string. */
3857#define STUB_SUFFIX ".stub"
721956f4
AM
3858
3859/* Linker stubs.
3860 ppc_stub_long_branch:
3861 Used when a 14 bit branch (or even a 24 bit branch) can't reach its
3862 destination, but a 24 bit branch in a stub section will reach.
3863 . b dest
3864
3865 ppc_stub_plt_branch:
3866 Similar to the above, but a 24 bit branch in the stub section won't
3867 reach its destination.
71a39c98
AM
3868 . addis %r11,%r2,xxx@toc@ha
3869 . ld %r12,xxx@toc@l(%r11)
3870 . mtctr %r12
721956f4
AM
3871 . bctr
3872
3873 ppc_stub_plt_call:
2c66dc6c
AM
3874 Used to call a function in a shared library. If it so happens that
3875 the plt entry referenced crosses a 64k boundary, then an extra
71a39c98 3876 "addi %r11,%r11,xxx@toc@l" will be inserted before the "mtctr".
721956f4 3877 . std %r2,40(%r1)
71a39c98
AM
3878 . addis %r11,%r2,xxx@toc@ha
3879 . ld %r12,xxx+0@toc@l(%r11)
3880 . mtctr %r12
3881 . ld %r2,xxx+8@toc@l(%r11)
3882 . ld %r11,xxx+16@toc@l(%r11)
721956f4 3883 . bctr
ad8e1ba5
AM
3884
3885 ppc_stub_long_branch and ppc_stub_plt_branch may also have additional
3886 code to adjust the value and save r2 to support multiple toc sections.
3887 A ppc_stub_long_branch with an r2 offset looks like:
3888 . std %r2,40(%r1)
3889 . addis %r2,%r2,off@ha
3890 . addi %r2,%r2,off@l
3891 . b dest
3892
3893 A ppc_stub_plt_branch with an r2 offset looks like:
3894 . std %r2,40(%r1)
71a39c98
AM
3895 . addis %r11,%r2,xxx@toc@ha
3896 . ld %r12,xxx@toc@l(%r11)
ad8e1ba5
AM
3897 . addis %r2,%r2,off@ha
3898 . addi %r2,%r2,off@l
71a39c98 3899 . mtctr %r12
ad8e1ba5 3900 . bctr
ac2df442
AM
3901
3902 In cases where the "addis" instruction would add zero, the "addis" is
3903 omitted and following instructions modified slightly in some cases.
721956f4
AM
3904*/
3905
3906enum ppc_stub_type {
3907 ppc_stub_none,
3908 ppc_stub_long_branch,
ad8e1ba5 3909 ppc_stub_long_branch_r2off,
721956f4 3910 ppc_stub_plt_branch,
ad8e1ba5 3911 ppc_stub_plt_branch_r2off,
794e51c0 3912 ppc_stub_plt_call,
7341d5e2 3913 ppc_stub_plt_call_r2save,
a4b6fadd
AM
3914 ppc_stub_global_entry,
3915 ppc_stub_save_res
721956f4
AM
3916};
3917
6f20ed8a
AM
3918/* Information on stub grouping. */
3919struct map_stub
3920{
3921 /* The stub section. */
3922 asection *stub_sec;
3923 /* This is the section to which stubs in the group will be attached. */
3924 asection *link_sec;
a4b6fadd
AM
3925 /* Next group. */
3926 struct map_stub *next;
3927 /* Whether to emit a copy of register save/restore functions in this
3928 group. */
3929 int needs_save_res;
d4aaa2a0
AM
3930 /* The offset of the __tls_get_addr_opt plt stub bctrl in this group,
3931 or -1u if no such stub with bctrl exists. */
3932 unsigned int tls_get_addr_opt_bctrl;
6f20ed8a
AM
3933};
3934
721956f4
AM
3935struct ppc_stub_hash_entry {
3936
3937 /* Base hash table entry structure. */
3938 struct bfd_hash_entry root;
3939
ad8e1ba5
AM
3940 enum ppc_stub_type stub_type;
3941
6f20ed8a
AM
3942 /* Group information. */
3943 struct map_stub *group;
721956f4
AM
3944
3945 /* Offset within stub_sec of the beginning of this stub. */
3946 bfd_vma stub_offset;
3947
3948 /* Given the symbol's value and its section we can determine its final
3949 value when building the stubs (so the stub knows where to jump. */
3950 bfd_vma target_value;
3951 asection *target_section;
3952
721956f4
AM
3953 /* The symbol table entry, if any, that this was derived from. */
3954 struct ppc_link_hash_entry *h;
e054468f 3955 struct plt_entry *plt_ent;
721956f4 3956
6911b7dc
AM
3957 /* Symbol st_other. */
3958 unsigned char other;
721956f4
AM
3959};
3960
3961struct ppc_branch_hash_entry {
3962
3963 /* Base hash table entry structure. */
3964 struct bfd_hash_entry root;
3965
c456f082 3966 /* Offset within branch lookup table. */
721956f4
AM
3967 unsigned int offset;
3968
3969 /* Generation marker. */
3970 unsigned int iter;
3971};
65f38f15 3972
19e08130
AM
3973/* Used to track dynamic relocations for local symbols. */
3974struct ppc_dyn_relocs
3975{
3976 struct ppc_dyn_relocs *next;
3977
3978 /* The input section of the reloc. */
3979 asection *sec;
3980
3981 /* Total number of relocs copied for the input section. */
3982 unsigned int count : 31;
3983
3984 /* Whether this entry is for STT_GNU_IFUNC symbols. */
3985 unsigned int ifunc : 1;
3986};
3987
65f38f15
AM
3988struct ppc_link_hash_entry
3989{
3990 struct elf_link_hash_entry elf;
3991
b3fac117
AM
3992 union {
3993 /* A pointer to the most recently used stub hash entry against this
3994 symbol. */
3995 struct ppc_stub_hash_entry *stub_cache;
3996
3997 /* A pointer to the next symbol starting with a '.' */
3998 struct ppc_link_hash_entry *next_dot_sym;
3999 } u;
721956f4 4000
65f38f15 4001 /* Track dynamic relocs copied for this symbol. */
6061a67d 4002 struct elf_dyn_relocs *dyn_relocs;
e86ce104 4003
d311bc8b
AM
4004 /* Chain of aliases referring to a weakdef. */
4005 struct ppc_link_hash_entry *weakref;
4006
721956f4 4007 /* Link between function code and descriptor symbols. */
34814b9f 4008 struct ppc_link_hash_entry *oh;
721956f4 4009
e86ce104
AM
4010 /* Flag function code and descriptor symbols. */
4011 unsigned int is_func:1;
4012 unsigned int is_func_descriptor:1;
908b32fc 4013 unsigned int fake:1;
411e1bfb 4014
c5614fa4
AM
4015 /* Whether global opd/toc sym has been adjusted or not.
4016 After ppc64_elf_edit_opd/ppc64_elf_edit_toc has run, this flag
4017 should be set for all globals defined in any opd/toc section. */
754021d0
AM
4018 unsigned int adjust_done:1;
4019
a4b6fadd
AM
4020 /* Set if this is an out-of-line register save/restore function,
4021 with non-standard calling convention. */
4022 unsigned int save_res:1;
4023
8b5f1ed8
AM
4024 /* Set if a duplicate symbol with non-zero localentry is detected,
4025 even when the duplicate symbol does not provide a definition. */
4026 unsigned int non_zero_localentry:1;
4027
411e1bfb 4028 /* Contexts in which symbol is used in the GOT (or TOC).
e7b938ca
AM
4029 TLS_GD .. TLS_EXPLICIT bits are or'd into the mask as the
4030 corresponding relocs are encountered during check_relocs.
4031 tls_optimize clears TLS_GD .. TLS_TPREL when optimizing to
4032 indicate the corresponding GOT entry type is not needed.
4033 tls_optimize may also set TLS_TPRELGD when a GD reloc turns into
4034 a TPREL one. We use a separate flag rather than setting TPREL
4035 just for convenience in distinguishing the two cases. */
4036#define TLS_GD 1 /* GD reloc. */
4037#define TLS_LD 2 /* LD reloc. */
4038#define TLS_TPREL 4 /* TPREL reloc, => IE. */
4039#define TLS_DTPREL 8 /* DTPREL reloc, => LD. */
4040#define TLS_TLS 16 /* Any TLS reloc. */
4041#define TLS_EXPLICIT 32 /* Marks TOC section TLS relocs. */
4042#define TLS_TPRELGD 64 /* TPREL reloc resulting from GD->IE. */
e054468f 4043#define PLT_IFUNC 128 /* STT_GNU_IFUNC. */
f961d9dd 4044 unsigned char tls_mask;
65f38f15
AM
4045};
4046
4047/* ppc64 ELF linker hash table. */
4048
4049struct ppc_link_hash_table
4050{
4051 struct elf_link_hash_table elf;
4052
721956f4
AM
4053 /* The stub hash table. */
4054 struct bfd_hash_table stub_hash_table;
4055
4056 /* Another hash table for plt_branch stubs. */
4057 struct bfd_hash_table branch_hash_table;
4058
3b421ab3
AM
4059 /* Hash table for function prologue tocsave. */
4060 htab_t tocsave_htab;
4061
e7d1c40c
AM
4062 /* Various options and other info passed from the linker. */
4063 struct ppc64_elf_params *params;
721956f4 4064
6f20ed8a
AM
4065 /* The size of sec_info below. */
4066 unsigned int sec_info_arr_size;
4067
4068 /* Per-section array of extra section info. Done this way rather
4069 than as part of ppc64_elf_section_data so we have the info for
4070 non-ppc64 sections. */
4071 struct
4072 {
4073 /* Along with elf_gp, specifies the TOC pointer used by this section. */
ad8e1ba5 4074 bfd_vma toc_off;
6f20ed8a
AM
4075
4076 union
4077 {
4078 /* The section group that this section belongs to. */
4079 struct map_stub *group;
4080 /* A temp section list pointer. */
4081 asection *list;
4082 } u;
4083 } *sec_info;
721956f4 4084
a4b6fadd
AM
4085 /* Linked list of groups. */
4086 struct map_stub *group;
4087
ad8e1ba5
AM
4088 /* Temp used when calculating TOC pointers. */
4089 bfd_vma toc_curr;
bf102f86
AM
4090 bfd *toc_bfd;
4091 asection *toc_first_sec;
ad8e1ba5 4092
b3fac117
AM
4093 /* Used when adding symbols. */
4094 struct ppc_link_hash_entry *dot_syms;
4095
33e44f2e 4096 /* Shortcuts to get to dynamic linker sections. */
4ce794b7 4097 asection *glink;
82bd7b59 4098 asection *sfpr;
4ce794b7
AM
4099 asection *brlt;
4100 asection *relbrlt;
58d180e8 4101 asection *glink_eh_frame;
ec338859 4102
8387904d
AM
4103 /* Shortcut to .__tls_get_addr and __tls_get_addr. */
4104 struct ppc_link_hash_entry *tls_get_addr;
4105 struct ppc_link_hash_entry *tls_get_addr_fd;
411e1bfb 4106
927be08e
AM
4107 /* The size of reliplt used by got entry relocs. */
4108 bfd_size_type got_reli_size;
4109
9b5ecbd0 4110 /* Statistics. */
7341d5e2 4111 unsigned long stub_count[ppc_stub_global_entry];
9b5ecbd0 4112
ee75fd95
AM
4113 /* Number of stubs against global syms. */
4114 unsigned long stub_globals;
4115
ee67d69a
AM
4116 /* Set if we're linking code with function descriptors. */
4117 unsigned int opd_abi:1;
4118
4c52953f 4119 /* Support for multiple toc sections. */
33c0ec9d 4120 unsigned int do_multi_toc:1;
4c52953f 4121 unsigned int multi_toc_needed:1;
927be08e 4122 unsigned int second_toc_pass:1;
67f0cbdb 4123 unsigned int do_toc_opt:1;
4c52953f 4124
9a23f96e
AM
4125 /* Set if tls optimization is enabled. */
4126 unsigned int do_tls_opt:1;
4127
5d1634d7 4128 /* Set on error. */
99877b66 4129 unsigned int stub_error:1;
721956f4 4130
8c5b4e52
AM
4131 /* Whether func_desc_adjust needs to be run over symbols. */
4132 unsigned int need_func_desc_adj:1;
721956f4 4133
82e66161
AM
4134 /* Whether there exist local gnu indirect function resolvers,
4135 referenced by dynamic relocations. */
4136 unsigned int local_ifunc_resolver:1;
4137 unsigned int maybe_local_ifunc_resolver:1;
4138
f378ab09
AM
4139 /* Whether plt calls for ELFv2 localentry:0 funcs have been optimized. */
4140 unsigned int has_plt_localentry0:1;
4141
721956f4
AM
4142 /* Incremented every time we size stubs. */
4143 unsigned int stub_iteration;
5d1634d7 4144
87d72d41
AM
4145 /* Small local sym cache. */
4146 struct sym_cache sym_cache;
65f38f15
AM
4147};
4148
4c52953f
AM
4149/* Rename some of the generic section flags to better document how they
4150 are used here. */
b0dddeec
AM
4151
4152/* Nonzero if this section has TLS related relocations. */
4153#define has_tls_reloc sec_flg0
4154
4155/* Nonzero if this section has a call to __tls_get_addr. */
4156#define has_tls_get_addr_call sec_flg1
4157
4158/* Nonzero if this section has any toc or got relocs. */
4159#define has_toc_reloc sec_flg2
4160
4161/* Nonzero if this section has a call to another section that uses
4162 the toc or got. */
d77c8a4b 4163#define makes_toc_func_call sec_flg3
b0dddeec
AM
4164
4165/* Recursion protection when determining above flag. */
d77c8a4b 4166#define call_check_in_progress sec_flg4
70cc837d 4167#define call_check_done sec_flg5
4c52953f 4168
65f38f15
AM
4169/* Get the ppc64 ELF linker hash table from a link_info structure. */
4170
4171#define ppc_hash_table(p) \
4dfe6ac6
NC
4172 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
4173 == PPC64_ELF_DATA ? ((struct ppc_link_hash_table *) ((p)->hash)) : NULL)
65f38f15 4174
721956f4
AM
4175#define ppc_stub_hash_lookup(table, string, create, copy) \
4176 ((struct ppc_stub_hash_entry *) \
4177 bfd_hash_lookup ((table), (string), (create), (copy)))
4178
4179#define ppc_branch_hash_lookup(table, string, create, copy) \
4180 ((struct ppc_branch_hash_entry *) \
4181 bfd_hash_lookup ((table), (string), (create), (copy)))
4182
4183/* Create an entry in the stub hash table. */
4184
4185static struct bfd_hash_entry *
4ce794b7
AM
4186stub_hash_newfunc (struct bfd_hash_entry *entry,
4187 struct bfd_hash_table *table,
4188 const char *string)
721956f4
AM
4189{
4190 /* Allocate the structure if it has not already been allocated by a
4191 subclass. */
4192 if (entry == NULL)
4193 {
4194 entry = bfd_hash_allocate (table, sizeof (struct ppc_stub_hash_entry));
4195 if (entry == NULL)
4196 return entry;
4197 }
4198
4199 /* Call the allocation method of the superclass. */
4200 entry = bfd_hash_newfunc (entry, table, string);
4201 if (entry != NULL)
4202 {
4203 struct ppc_stub_hash_entry *eh;
4204
4205 /* Initialize the local fields. */
4206 eh = (struct ppc_stub_hash_entry *) entry;
ad8e1ba5 4207 eh->stub_type = ppc_stub_none;
6f20ed8a 4208 eh->group = NULL;
721956f4
AM
4209 eh->stub_offset = 0;
4210 eh->target_value = 0;
4211 eh->target_section = NULL;
721956f4 4212 eh->h = NULL;
6911b7dc 4213 eh->plt_ent = NULL;
6911b7dc 4214 eh->other = 0;
721956f4
AM
4215 }
4216
4217 return entry;
4218}
4219
4220/* Create an entry in the branch hash table. */
4221
4222static struct bfd_hash_entry *
4ce794b7
AM
4223branch_hash_newfunc (struct bfd_hash_entry *entry,
4224 struct bfd_hash_table *table,
4225 const char *string)
721956f4
AM
4226{
4227 /* Allocate the structure if it has not already been allocated by a
4228 subclass. */
4229 if (entry == NULL)
4230 {
4231 entry = bfd_hash_allocate (table, sizeof (struct ppc_branch_hash_entry));
4232 if (entry == NULL)
4233 return entry;
4234 }
4235
4236 /* Call the allocation method of the superclass. */
4237 entry = bfd_hash_newfunc (entry, table, string);
4238 if (entry != NULL)
4239 {
4240 struct ppc_branch_hash_entry *eh;
4241
4242 /* Initialize the local fields. */
4243 eh = (struct ppc_branch_hash_entry *) entry;
4244 eh->offset = 0;
4245 eh->iter = 0;
4246 }
4247
4248 return entry;
4249}
4250
65f38f15
AM
4251/* Create an entry in a ppc64 ELF linker hash table. */
4252
4253static struct bfd_hash_entry *
4ce794b7
AM
4254link_hash_newfunc (struct bfd_hash_entry *entry,
4255 struct bfd_hash_table *table,
4256 const char *string)
65f38f15
AM
4257{
4258 /* Allocate the structure if it has not already been allocated by a
4259 subclass. */
4260 if (entry == NULL)
4261 {
4262 entry = bfd_hash_allocate (table, sizeof (struct ppc_link_hash_entry));
4263 if (entry == NULL)
4264 return entry;
4265 }
4266
4267 /* Call the allocation method of the superclass. */
4268 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
4269 if (entry != NULL)
4270 {
4271 struct ppc_link_hash_entry *eh = (struct ppc_link_hash_entry *) entry;
4272
b3fac117 4273 memset (&eh->u.stub_cache, 0,
908b32fc 4274 (sizeof (struct ppc_link_hash_entry)
b3fac117
AM
4275 - offsetof (struct ppc_link_hash_entry, u.stub_cache)));
4276
4277 /* When making function calls, old ABI code references function entry
4278 points (dot symbols), while new ABI code references the function
4279 descriptor symbol. We need to make any combination of reference and
4280 definition work together, without breaking archive linking.
4281
4282 For a defined function "foo" and an undefined call to "bar":
4283 An old object defines "foo" and ".foo", references ".bar" (possibly
4284 "bar" too).
4285 A new object defines "foo" and references "bar".
4286
4287 A new object thus has no problem with its undefined symbols being
4288 satisfied by definitions in an old object. On the other hand, the
4289 old object won't have ".bar" satisfied by a new object.
4290
4291 Keep a list of newly added dot-symbols. */
4292
4293 if (string[0] == '.')
4294 {
4295 struct ppc_link_hash_table *htab;
4296
4297 htab = (struct ppc_link_hash_table *) table;
4298 eh->u.next_dot_sym = htab->dot_syms;
4299 htab->dot_syms = eh;
4300 }
65f38f15
AM
4301 }
4302
4303 return entry;
4304}
4305
3b421ab3
AM
4306struct tocsave_entry {
4307 asection *sec;
4308 bfd_vma offset;
4309};
4310
4311static hashval_t
4312tocsave_htab_hash (const void *p)
4313{
4314 const struct tocsave_entry *e = (const struct tocsave_entry *) p;
4aef7643 4315 return ((bfd_vma) (intptr_t) e->sec ^ e->offset) >> 3;
3b421ab3
AM
4316}
4317
4318static int
4319tocsave_htab_eq (const void *p1, const void *p2)
4320{
4321 const struct tocsave_entry *e1 = (const struct tocsave_entry *) p1;
4322 const struct tocsave_entry *e2 = (const struct tocsave_entry *) p2;
4323 return e1->sec == e2->sec && e1->offset == e2->offset;
4324}
4325
68faa637
AM
4326/* Destroy a ppc64 ELF linker hash table. */
4327
4328static void
d495ab0d 4329ppc64_elf_link_hash_table_free (bfd *obfd)
68faa637 4330{
d495ab0d 4331 struct ppc_link_hash_table *htab;
68faa637 4332
d495ab0d 4333 htab = (struct ppc_link_hash_table *) obfd->link.hash;
68faa637
AM
4334 if (htab->tocsave_htab)
4335 htab_delete (htab->tocsave_htab);
d495ab0d
AM
4336 bfd_hash_table_free (&htab->branch_hash_table);
4337 bfd_hash_table_free (&htab->stub_hash_table);
4338 _bfd_elf_link_hash_table_free (obfd);
68faa637
AM
4339}
4340
65f38f15
AM
4341/* Create a ppc64 ELF linker hash table. */
4342
4343static struct bfd_link_hash_table *
4ce794b7 4344ppc64_elf_link_hash_table_create (bfd *abfd)
65f38f15
AM
4345{
4346 struct ppc_link_hash_table *htab;
4347 bfd_size_type amt = sizeof (struct ppc_link_hash_table);
4348
4ce794b7 4349 htab = bfd_zmalloc (amt);
65f38f15
AM
4350 if (htab == NULL)
4351 return NULL;
4352
66eb6687 4353 if (!_bfd_elf_link_hash_table_init (&htab->elf, abfd, link_hash_newfunc,
4dfe6ac6
NC
4354 sizeof (struct ppc_link_hash_entry),
4355 PPC64_ELF_DATA))
65f38f15 4356 {
e2d34d7d 4357 free (htab);
65f38f15
AM
4358 return NULL;
4359 }
4360
721956f4 4361 /* Init the stub hash table too. */
66eb6687
AM
4362 if (!bfd_hash_table_init (&htab->stub_hash_table, stub_hash_newfunc,
4363 sizeof (struct ppc_stub_hash_entry)))
2915c55b 4364 {
d495ab0d 4365 _bfd_elf_link_hash_table_free (abfd);
2915c55b
JK
4366 return NULL;
4367 }
721956f4
AM
4368
4369 /* And the branch hash table. */
66eb6687
AM
4370 if (!bfd_hash_table_init (&htab->branch_hash_table, branch_hash_newfunc,
4371 sizeof (struct ppc_branch_hash_entry)))
2915c55b
JK
4372 {
4373 bfd_hash_table_free (&htab->stub_hash_table);
d495ab0d 4374 _bfd_elf_link_hash_table_free (abfd);
2915c55b
JK
4375 return NULL;
4376 }
721956f4 4377
3b421ab3
AM
4378 htab->tocsave_htab = htab_try_create (1024,
4379 tocsave_htab_hash,
4380 tocsave_htab_eq,
4381 NULL);
4382 if (htab->tocsave_htab == NULL)
2915c55b 4383 {
d495ab0d 4384 ppc64_elf_link_hash_table_free (abfd);
2915c55b
JK
4385 return NULL;
4386 }
d495ab0d 4387 htab->elf.root.hash_table_free = ppc64_elf_link_hash_table_free;
3b421ab3 4388
3254fd24
AM
4389 /* Initializing two fields of the union is just cosmetic. We really
4390 only care about glist, but when compiled on a 32-bit host the
4391 bfd_vma fields are larger. Setting the bfd_vma to zero makes
4392 debugger inspection of these fields look nicer. */
a6aa5195
AM
4393 htab->elf.init_got_refcount.refcount = 0;
4394 htab->elf.init_got_refcount.glist = NULL;
4395 htab->elf.init_plt_refcount.refcount = 0;
4396 htab->elf.init_plt_refcount.glist = NULL;
4397 htab->elf.init_got_offset.offset = 0;
4398 htab->elf.init_got_offset.glist = NULL;
4399 htab->elf.init_plt_offset.offset = 0;
4400 htab->elf.init_plt_offset.glist = NULL;
3254fd24 4401
65f38f15
AM
4402 return &htab->elf.root;
4403}
4404
bfeb4a28
AM
4405/* Create sections for linker generated code. */
4406
4407static bfd_boolean
4408create_linkage_sections (bfd *dynobj, struct bfd_link_info *info)
4409{
4410 struct ppc_link_hash_table *htab;
4411 flagword flags;
4412
4413 htab = ppc_hash_table (info);
4414
bfeb4a28
AM
4415 flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY
4416 | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
b32547cd
AM
4417 if (htab->params->save_restore_funcs)
4418 {
4419 /* Create .sfpr for code to save and restore fp regs. */
4420 htab->sfpr = bfd_make_section_anyway_with_flags (dynobj, ".sfpr",
4421 flags);
4422 if (htab->sfpr == NULL
4423 || ! bfd_set_section_alignment (dynobj, htab->sfpr, 2))
4424 return FALSE;
4425 }
4426
4427 if (bfd_link_relocatable (info))
4428 return TRUE;
bfeb4a28
AM
4429
4430 /* Create .glink for lazy dynamic linking support. */
4431 htab->glink = bfd_make_section_anyway_with_flags (dynobj, ".glink",
4432 flags);
4433 if (htab->glink == NULL
4434 || ! bfd_set_section_alignment (dynobj, htab->glink, 3))
4435 return FALSE;
4436
4437 if (!info->no_ld_generated_unwind_info)
4438 {
4439 flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
4440 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4441 htab->glink_eh_frame = bfd_make_section_anyway_with_flags (dynobj,
4442 ".eh_frame",
4443 flags);
4444 if (htab->glink_eh_frame == NULL
4445 || !bfd_set_section_alignment (dynobj, htab->glink_eh_frame, 2))
4446 return FALSE;
4447 }
4448
4449 flags = SEC_ALLOC | SEC_LINKER_CREATED;
33e44f2e
AM
4450 htab->elf.iplt = bfd_make_section_anyway_with_flags (dynobj, ".iplt", flags);
4451 if (htab->elf.iplt == NULL
4452 || ! bfd_set_section_alignment (dynobj, htab->elf.iplt, 3))
bfeb4a28
AM
4453 return FALSE;
4454
4455 flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
4456 | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
33e44f2e
AM
4457 htab->elf.irelplt
4458 = bfd_make_section_anyway_with_flags (dynobj, ".rela.iplt", flags);
4459 if (htab->elf.irelplt == NULL
4460 || ! bfd_set_section_alignment (dynobj, htab->elf.irelplt, 3))
bfeb4a28
AM
4461 return FALSE;
4462
4463 /* Create branch lookup table for plt_branch stubs. */
4464 flags = (SEC_ALLOC | SEC_LOAD
4465 | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4466 htab->brlt = bfd_make_section_anyway_with_flags (dynobj, ".branch_lt",
4467 flags);
4468 if (htab->brlt == NULL
4469 || ! bfd_set_section_alignment (dynobj, htab->brlt, 3))
4470 return FALSE;
4471
0e1862bb 4472 if (!bfd_link_pic (info))
bfeb4a28
AM
4473 return TRUE;
4474
4475 flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
4476 | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4477 htab->relbrlt = bfd_make_section_anyway_with_flags (dynobj,
4478 ".rela.branch_lt",
4479 flags);
4480 if (htab->relbrlt == NULL
4481 || ! bfd_set_section_alignment (dynobj, htab->relbrlt, 3))
4482 return FALSE;
4483
4484 return TRUE;
4485}
4486
e717da7e
AM
4487/* Satisfy the ELF linker by filling in some fields in our fake bfd. */
4488
bfeb4a28 4489bfd_boolean
e7d1c40c
AM
4490ppc64_elf_init_stub_bfd (struct bfd_link_info *info,
4491 struct ppc64_elf_params *params)
e717da7e
AM
4492{
4493 struct ppc_link_hash_table *htab;
4494
e7d1c40c 4495 elf_elfheader (params->stub_bfd)->e_ident[EI_CLASS] = ELFCLASS64;
e717da7e
AM
4496
4497/* Always hook our dynamic sections into the first bfd, which is the
4498 linker created stub bfd. This ensures that the GOT header is at
4499 the start of the output TOC section. */
4500 htab = ppc_hash_table (info);
e7d1c40c
AM
4501 htab->elf.dynobj = params->stub_bfd;
4502 htab->params = params;
bfeb4a28 4503
bfeb4a28 4504 return create_linkage_sections (htab->elf.dynobj, info);
e717da7e
AM
4505}
4506
721956f4
AM
4507/* Build a name for an entry in the stub hash table. */
4508
4509static char *
4ce794b7
AM
4510ppc_stub_name (const asection *input_section,
4511 const asection *sym_sec,
4512 const struct ppc_link_hash_entry *h,
4513 const Elf_Internal_Rela *rel)
721956f4
AM
4514{
4515 char *stub_name;
bcaa2f82 4516 ssize_t len;
721956f4
AM
4517
4518 /* rel->r_addend is actually 64 bit, but who uses more than +/- 2^31
4519 offsets from a sym as a branch target? In fact, we could
4520 probably assume the addend is always zero. */
4521 BFD_ASSERT (((int) rel->r_addend & 0xffffffff) == rel->r_addend);
4522
4523 if (h)
4524 {
4525 len = 8 + 1 + strlen (h->elf.root.root.string) + 1 + 8 + 1;
4526 stub_name = bfd_malloc (len);
46de2a7c
AM
4527 if (stub_name == NULL)
4528 return stub_name;
4529
bcaa2f82
AM
4530 len = sprintf (stub_name, "%08x.%s+%x",
4531 input_section->id & 0xffffffff,
4532 h->elf.root.root.string,
4533 (int) rel->r_addend & 0xffffffff);
721956f4
AM
4534 }
4535 else
4536 {
ad8e1ba5 4537 len = 8 + 1 + 8 + 1 + 8 + 1 + 8 + 1;
721956f4 4538 stub_name = bfd_malloc (len);
46de2a7c
AM
4539 if (stub_name == NULL)
4540 return stub_name;
4541
bcaa2f82
AM
4542 len = sprintf (stub_name, "%08x.%x:%x+%x",
4543 input_section->id & 0xffffffff,
4544 sym_sec->id & 0xffffffff,
4545 (int) ELF64_R_SYM (rel->r_info) & 0xffffffff,
4546 (int) rel->r_addend & 0xffffffff);
721956f4 4547 }
bcaa2f82 4548 if (len > 2 && stub_name[len - 2] == '+' && stub_name[len - 1] == '0')
ee75fd95 4549 stub_name[len - 2] = 0;
721956f4
AM
4550 return stub_name;
4551}
4552
4553/* Look up an entry in the stub hash. Stub entries are cached because
4554 creating the stub name takes a bit of time. */
4555
4556static struct ppc_stub_hash_entry *
4ce794b7
AM
4557ppc_get_stub_entry (const asection *input_section,
4558 const asection *sym_sec,
039b3fef 4559 struct ppc_link_hash_entry *h,
4ce794b7
AM
4560 const Elf_Internal_Rela *rel,
4561 struct ppc_link_hash_table *htab)
721956f4
AM
4562{
4563 struct ppc_stub_hash_entry *stub_entry;
6f20ed8a 4564 struct map_stub *group;
721956f4
AM
4565
4566 /* If this input section is part of a group of sections sharing one
4567 stub section, then use the id of the first section in the group.
4568 Stub names need to include a section id, as there may well be
4569 more than one stub used to reach say, printf, and we need to
4570 distinguish between them. */
6f20ed8a 4571 group = htab->sec_info[input_section->id].u.group;
89d77b8a
AM
4572 if (group == NULL)
4573 return NULL;
721956f4 4574
b3fac117
AM
4575 if (h != NULL && h->u.stub_cache != NULL
4576 && h->u.stub_cache->h == h
6f20ed8a 4577 && h->u.stub_cache->group == group)
721956f4 4578 {
b3fac117 4579 stub_entry = h->u.stub_cache;
721956f4
AM
4580 }
4581 else
4582 {
4583 char *stub_name;
4584
6f20ed8a 4585 stub_name = ppc_stub_name (group->link_sec, sym_sec, h, rel);
721956f4
AM
4586 if (stub_name == NULL)
4587 return NULL;
4588
4589 stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table,
b34976b6 4590 stub_name, FALSE, FALSE);
721956f4 4591 if (h != NULL)
b3fac117 4592 h->u.stub_cache = stub_entry;
721956f4
AM
4593
4594 free (stub_name);
4595 }
4596
4597 return stub_entry;
4598}
4599
4600/* Add a new stub entry to the stub hash. Not all fields of the new
4601 stub entry are initialised. */
4602
4603static struct ppc_stub_hash_entry *
4ce794b7
AM
4604ppc_add_stub (const char *stub_name,
4605 asection *section,
25f53a85 4606 struct bfd_link_info *info)
721956f4 4607{
25f53a85 4608 struct ppc_link_hash_table *htab = ppc_hash_table (info);
6f20ed8a 4609 struct map_stub *group;
721956f4
AM
4610 asection *link_sec;
4611 asection *stub_sec;
4612 struct ppc_stub_hash_entry *stub_entry;
4613
6f20ed8a
AM
4614 group = htab->sec_info[section->id].u.group;
4615 link_sec = group->link_sec;
4616 stub_sec = group->stub_sec;
721956f4
AM
4617 if (stub_sec == NULL)
4618 {
6f20ed8a
AM
4619 size_t namelen;
4620 bfd_size_type len;
4621 char *s_name;
721956f4 4622
6f20ed8a
AM
4623 namelen = strlen (link_sec->name);
4624 len = namelen + sizeof (STUB_SUFFIX);
4625 s_name = bfd_alloc (htab->params->stub_bfd, len);
4626 if (s_name == NULL)
4627 return NULL;
721956f4 4628
6f20ed8a
AM
4629 memcpy (s_name, link_sec->name, namelen);
4630 memcpy (s_name + namelen, STUB_SUFFIX, sizeof (STUB_SUFFIX));
4631 stub_sec = (*htab->params->add_stub_section) (s_name, link_sec);
4632 if (stub_sec == NULL)
4633 return NULL;
4634 group->stub_sec = stub_sec;
721956f4
AM
4635 }
4636
4637 /* Enter this entry into the linker stub hash table. */
4638 stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table, stub_name,
b34976b6 4639 TRUE, FALSE);
721956f4
AM
4640 if (stub_entry == NULL)
4641 {
695344c0 4642 /* xgettext:c-format */
8de848d8 4643 info->callbacks->einfo (_("%P: %B: cannot create stub entry %s\n"),
25f53a85 4644 section->owner, stub_name);
721956f4
AM
4645 return NULL;
4646 }
4647
6f20ed8a 4648 stub_entry->group = group;
721956f4 4649 stub_entry->stub_offset = 0;
721956f4
AM
4650 return stub_entry;
4651}
4652
e717da7e
AM
4653/* Create .got and .rela.got sections in ABFD, and .got in dynobj if
4654 not already done. */
65f38f15 4655
b34976b6 4656static bfd_boolean
e717da7e 4657create_got_section (bfd *abfd, struct bfd_link_info *info)
65f38f15 4658{
e717da7e
AM
4659 asection *got, *relgot;
4660 flagword flags;
4661 struct ppc_link_hash_table *htab = ppc_hash_table (info);
65f38f15 4662
0c8d6e5c 4663 if (!is_ppc64_elf (abfd))
0ffa91dd 4664 return FALSE;
4dfe6ac6
NC
4665 if (htab == NULL)
4666 return FALSE;
0ffa91dd 4667
33e44f2e
AM
4668 if (!htab->elf.sgot
4669 && !_bfd_elf_create_got_section (htab->elf.dynobj, info))
4670 return FALSE;
e717da7e
AM
4671
4672 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
4673 | SEC_LINKER_CREATED);
4674
c456f082 4675 got = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
e717da7e 4676 if (!got
e717da7e
AM
4677 || !bfd_set_section_alignment (abfd, got, 3))
4678 return FALSE;
65f38f15 4679
c456f082
AM
4680 relgot = bfd_make_section_anyway_with_flags (abfd, ".rela.got",
4681 flags | SEC_READONLY);
e717da7e 4682 if (!relgot
e717da7e 4683 || ! bfd_set_section_alignment (abfd, relgot, 3))
b34976b6 4684 return FALSE;
e717da7e
AM
4685
4686 ppc64_elf_tdata (abfd)->got = got;
4687 ppc64_elf_tdata (abfd)->relgot = relgot;
b34976b6 4688 return TRUE;
65f38f15 4689}
5bd4f169 4690
b31867b6
AM
4691/* Follow indirect and warning symbol links. */
4692
4693static inline struct bfd_link_hash_entry *
4694follow_link (struct bfd_link_hash_entry *h)
4695{
4696 while (h->type == bfd_link_hash_indirect
4697 || h->type == bfd_link_hash_warning)
4698 h = h->u.i.link;
4699 return h;
4700}
4701
4702static inline struct elf_link_hash_entry *
4703elf_follow_link (struct elf_link_hash_entry *h)
4704{
4705 return (struct elf_link_hash_entry *) follow_link (&h->root);
4706}
4707
4708static inline struct ppc_link_hash_entry *
4709ppc_follow_link (struct ppc_link_hash_entry *h)
4710{
4711 return (struct ppc_link_hash_entry *) follow_link (&h->elf.root);
4712}
4713
40d16e0b
AM
4714/* Merge PLT info on FROM with that on TO. */
4715
4716static void
4717move_plt_plist (struct ppc_link_hash_entry *from,
4718 struct ppc_link_hash_entry *to)
4719{
4720 if (from->elf.plt.plist != NULL)
4721 {
4722 if (to->elf.plt.plist != NULL)
4723 {
4724 struct plt_entry **entp;
4725 struct plt_entry *ent;
4726
4727 for (entp = &from->elf.plt.plist; (ent = *entp) != NULL; )
4728 {
4729 struct plt_entry *dent;
4730
4731 for (dent = to->elf.plt.plist; dent != NULL; dent = dent->next)
4732 if (dent->addend == ent->addend)
4733 {
4734 dent->plt.refcount += ent->plt.refcount;
4735 *entp = ent->next;
4736 break;
4737 }
4738 if (dent == NULL)
4739 entp = &ent->next;
4740 }
4741 *entp = to->elf.plt.plist;
4742 }
4743
4744 to->elf.plt.plist = from->elf.plt.plist;
4745 from->elf.plt.plist = NULL;
4746 }
4747}
4748
65f38f15
AM
4749/* Copy the extra info we tack onto an elf_link_hash_entry. */
4750
4751static void
fcfa13d2
AM
4752ppc64_elf_copy_indirect_symbol (struct bfd_link_info *info,
4753 struct elf_link_hash_entry *dir,
4754 struct elf_link_hash_entry *ind)
65f38f15
AM
4755{
4756 struct ppc_link_hash_entry *edir, *eind;
4757
4758 edir = (struct ppc_link_hash_entry *) dir;
4759 eind = (struct ppc_link_hash_entry *) ind;
4760
c79d6685
AM
4761 edir->is_func |= eind->is_func;
4762 edir->is_func_descriptor |= eind->is_func_descriptor;
4763 edir->tls_mask |= eind->tls_mask;
4764 if (eind->oh != NULL)
4765 edir->oh = ppc_follow_link (eind->oh);
4766
e81830c5
AM
4767 /* If called to transfer flags for a weakdef during processing
4768 of elf_adjust_dynamic_symbol, don't copy NON_GOT_REF.
4769 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
4770 if (!(ELIMINATE_COPY_RELOCS
4771 && eind->elf.root.type != bfd_link_hash_indirect
4772 && edir->elf.dynamic_adjusted))
4773 edir->elf.non_got_ref |= eind->elf.non_got_ref;
4774
474436e6 4775 if (edir->elf.versioned != versioned_hidden)
e81830c5
AM
4776 edir->elf.ref_dynamic |= eind->elf.ref_dynamic;
4777 edir->elf.ref_regular |= eind->elf.ref_regular;
4778 edir->elf.ref_regular_nonweak |= eind->elf.ref_regular_nonweak;
4779 edir->elf.needs_plt |= eind->elf.needs_plt;
4780 edir->elf.pointer_equality_needed |= eind->elf.pointer_equality_needed;
c79d6685 4781
d311bc8b
AM
4782 /* If we were called to copy over info for a weak sym, don't copy
4783 dyn_relocs, plt/got info, or dynindx. We used to copy dyn_relocs
4784 in order to simplify readonly_dynrelocs and save a field in the
4785 symbol hash entry, but that means dyn_relocs can't be used in any
4786 tests about a specific symbol, or affect other symbol flags which
4787 are then tested.
4788 Chain weakdefs so we can get from the weakdef back to an alias.
4789 The list is circular so that we don't need to use u.weakdef as
4790 well as this list to look at all aliases. */
4791 if (eind->elf.root.type != bfd_link_hash_indirect)
4792 {
4793 struct ppc_link_hash_entry *cur, *add, *next;
4794
4795 add = eind;
4796 do
4797 {
4798 cur = edir->weakref;
4799 if (cur != NULL)
4800 {
4801 do
4802 {
4803 /* We can be called twice for the same symbols.
4804 Don't make multiple loops. */
4805 if (cur == add)
4806 return;
4807 cur = cur->weakref;
4808 } while (cur != edir);
4809 }
4810 next = add->weakref;
4811 if (cur != add)
4812 {
4813 add->weakref = edir->weakref != NULL ? edir->weakref : edir;
4814 edir->weakref = add;
4815 }
4816 add = next;
4817 } while (add != NULL && add != eind);
4818 return;
4819 }
4820
411e1bfb 4821 /* Copy over any dynamic relocs we may have on the indirect sym. */
bbd7ec4a 4822 if (eind->dyn_relocs != NULL)
65f38f15 4823 {
bbd7ec4a
AM
4824 if (edir->dyn_relocs != NULL)
4825 {
6061a67d
AM
4826 struct elf_dyn_relocs **pp;
4827 struct elf_dyn_relocs *p;
bbd7ec4a 4828
fcfa13d2 4829 /* Add reloc counts against the indirect sym to the direct sym
bbd7ec4a
AM
4830 list. Merge any entries against the same section. */
4831 for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
4832 {
6061a67d 4833 struct elf_dyn_relocs *q;
bbd7ec4a
AM
4834
4835 for (q = edir->dyn_relocs; q != NULL; q = q->next)
4836 if (q->sec == p->sec)
4837 {
4838 q->pc_count += p->pc_count;
4839 q->count += p->count;
4840 *pp = p->next;
4841 break;
4842 }
4843 if (q == NULL)
4844 pp = &p->next;
4845 }
4846 *pp = edir->dyn_relocs;
4847 }
4848
65f38f15
AM
4849 edir->dyn_relocs = eind->dyn_relocs;
4850 eind->dyn_relocs = NULL;
4851 }
65f38f15 4852
81848ca0
AM
4853 /* Copy over got entries that we may have already seen to the
4854 symbol which just became indirect. */
411e1bfb
AM
4855 if (eind->elf.got.glist != NULL)
4856 {
4857 if (edir->elf.got.glist != NULL)
4858 {
4859 struct got_entry **entp;
4860 struct got_entry *ent;
4861
4862 for (entp = &eind->elf.got.glist; (ent = *entp) != NULL; )
4863 {
4864 struct got_entry *dent;
4865
4866 for (dent = edir->elf.got.glist; dent != NULL; dent = dent->next)
4867 if (dent->addend == ent->addend
e717da7e 4868 && dent->owner == ent->owner
411e1bfb
AM
4869 && dent->tls_type == ent->tls_type)
4870 {
4871 dent->got.refcount += ent->got.refcount;
4872 *entp = ent->next;
4873 break;
4874 }
4875 if (dent == NULL)
4876 entp = &ent->next;
4877 }
4878 *entp = edir->elf.got.glist;
4879 }
4880
4881 edir->elf.got.glist = eind->elf.got.glist;
4882 eind->elf.got.glist = NULL;
4883 }
4884
4885 /* And plt entries. */
40d16e0b 4886 move_plt_plist (eind, edir);
411e1bfb 4887
fcfa13d2 4888 if (eind->elf.dynindx != -1)
411e1bfb 4889 {
fcfa13d2
AM
4890 if (edir->elf.dynindx != -1)
4891 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
4892 edir->elf.dynstr_index);
411e1bfb
AM
4893 edir->elf.dynindx = eind->elf.dynindx;
4894 edir->elf.dynstr_index = eind->elf.dynstr_index;
4895 eind->elf.dynindx = -1;
4896 eind->elf.dynstr_index = 0;
4897 }
411e1bfb
AM
4898}
4899
8387904d
AM
4900/* Find the function descriptor hash entry from the given function code
4901 hash entry FH. Link the entries via their OH fields. */
4902
4903static struct ppc_link_hash_entry *
b31867b6 4904lookup_fdh (struct ppc_link_hash_entry *fh, struct ppc_link_hash_table *htab)
8387904d
AM
4905{
4906 struct ppc_link_hash_entry *fdh = fh->oh;
4907
4908 if (fdh == NULL)
4909 {
4910 const char *fd_name = fh->elf.root.root.string + 1;
4911
4912 fdh = (struct ppc_link_hash_entry *)
4913 elf_link_hash_lookup (&htab->elf, fd_name, FALSE, FALSE, FALSE);
b31867b6
AM
4914 if (fdh == NULL)
4915 return fdh;
4916
4917 fdh->is_func_descriptor = 1;
4918 fdh->oh = fh;
4919 fh->is_func = 1;
4920 fh->oh = fdh;
8387904d
AM
4921 }
4922
8c5b4e52
AM
4923 fdh = ppc_follow_link (fdh);
4924 fdh->is_func_descriptor = 1;
4925 fdh->oh = fh;
4926 return fdh;
8387904d
AM
4927}
4928
8c5b4e52 4929/* Make a fake function descriptor sym for the undefined code sym FH. */
bb700d78
AM
4930
4931static struct ppc_link_hash_entry *
4932make_fdh (struct bfd_link_info *info,
908b32fc 4933 struct ppc_link_hash_entry *fh)
bb700d78 4934{
8c5b4e52
AM
4935 bfd *abfd = fh->elf.root.u.undef.abfd;
4936 struct bfd_link_hash_entry *bh = NULL;
bb700d78 4937 struct ppc_link_hash_entry *fdh;
8c5b4e52
AM
4938 flagword flags = (fh->elf.root.type == bfd_link_hash_undefweak
4939 ? BSF_WEAK
4940 : BSF_GLOBAL);
4941
4942 if (!_bfd_generic_link_add_one_symbol (info, abfd,
4943 fh->elf.root.root.string + 1,
4944 flags, bfd_und_section_ptr, 0,
4945 NULL, FALSE, FALSE, &bh))
bb700d78
AM
4946 return NULL;
4947
4948 fdh = (struct ppc_link_hash_entry *) bh;
4949 fdh->elf.non_elf = 0;
908b32fc
AM
4950 fdh->fake = 1;
4951 fdh->is_func_descriptor = 1;
4952 fdh->oh = fh;
4953 fh->is_func = 1;
4954 fh->oh = fdh;
bb700d78
AM
4955 return fdh;
4956}
4957
8387904d
AM
4958/* Fix function descriptor symbols defined in .opd sections to be
4959 function type. */
555cd476
AM
4960
4961static bfd_boolean
c16153ae 4962ppc64_elf_add_symbol_hook (bfd *ibfd,
e054468f 4963 struct bfd_link_info *info,
555cd476 4964 Elf_Internal_Sym *isym,
6911b7dc 4965 const char **name,
555cd476
AM
4966 flagword *flags ATTRIBUTE_UNUSED,
4967 asection **sec,
b53dfeb2 4968 bfd_vma *value)
555cd476 4969{
a43942db 4970 if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC
f1885d1e
AM
4971 && (ibfd->flags & DYNAMIC) == 0
4972 && bfd_get_flavour (info->output_bfd) == bfd_target_elf_flavour)
a43942db 4973 elf_tdata (info->output_bfd)->has_gnu_symbols |= elf_gnu_symbol_ifunc;
f64b2e8d 4974
b53dfeb2 4975 if (*sec != NULL
f1885d1e 4976 && strcmp ((*sec)->name, ".opd") == 0)
b53dfeb2
AM
4977 {
4978 asection *code_sec;
4979
4980 if (!(ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC
4981 || ELF_ST_TYPE (isym->st_info) == STT_FUNC))
4982 isym->st_info = ELF_ST_INFO (ELF_ST_BIND (isym->st_info), STT_FUNC);
4983
4984 /* If the symbol is a function defined in .opd, and the function
4985 code is in a discarded group, let it appear to be undefined. */
0e1862bb 4986 if (!bfd_link_relocatable (info)
b53dfeb2
AM
4987 && (*sec)->reloc_count != 0
4988 && opd_entry_value (*sec, *value, &code_sec, NULL,
4989 FALSE) != (bfd_vma) -1
4990 && discarded_section (code_sec))
4991 {
4992 *sec = bfd_und_section_ptr;
4993 isym->st_shndx = SHN_UNDEF;
4994 }
4995 }
dbd1e97e
AM
4996 else if (*sec != NULL
4997 && strcmp ((*sec)->name, ".toc") == 0
4998 && ELF_ST_TYPE (isym->st_info) == STT_OBJECT)
4999 {
5000 struct ppc_link_hash_table *htab = ppc_hash_table (info);
5001 if (htab != NULL)
5002 htab->params->object_in_toc = 1;
5003 }
433817dd 5004
6911b7dc
AM
5005 if ((STO_PPC64_LOCAL_MASK & isym->st_other) != 0)
5006 {
5007 if (abiversion (ibfd) == 0)
5008 set_abiversion (ibfd, 2);
5009 else if (abiversion (ibfd) == 1)
5010 {
5011 info->callbacks->einfo (_("%P: symbol '%s' has invalid st_other"
5012 " for ABI version 1\n"), name);
5013 bfd_set_error (bfd_error_bad_value);
5014 return FALSE;
5015 }
5016 }
5017
555cd476
AM
5018 return TRUE;
5019}
5020
6911b7dc
AM
5021/* Merge non-visibility st_other attributes: local entry point. */
5022
5023static void
5024ppc64_elf_merge_symbol_attribute (struct elf_link_hash_entry *h,
5025 const Elf_Internal_Sym *isym,
5026 bfd_boolean definition,
5027 bfd_boolean dynamic)
5028{
f378ab09 5029 if (definition && (!dynamic || !h->def_regular))
6911b7dc
AM
5030 h->other = ((isym->st_other & ~ELF_ST_VISIBILITY (-1))
5031 | ELF_ST_VISIBILITY (h->other));
5032}
5033
8c5b4e52
AM
5034/* Hook called on merging a symbol. We use this to clear "fake" since
5035 we now have a real symbol. */
5036
5037static bfd_boolean
5038ppc64_elf_merge_symbol (struct elf_link_hash_entry *h,
8b5f1ed8 5039 const Elf_Internal_Sym *isym,
8c5b4e52
AM
5040 asection **psec ATTRIBUTE_UNUSED,
5041 bfd_boolean newdef ATTRIBUTE_UNUSED,
5042 bfd_boolean olddef ATTRIBUTE_UNUSED,
5043 bfd *oldbfd ATTRIBUTE_UNUSED,
5044 const asection *oldsec ATTRIBUTE_UNUSED)
5045{
5046 ((struct ppc_link_hash_entry *) h)->fake = 0;
8b5f1ed8
AM
5047 if ((STO_PPC64_LOCAL_MASK & isym->st_other) != 0)
5048 ((struct ppc_link_hash_entry *) h)->non_zero_localentry = 1;
8c5b4e52
AM
5049 return TRUE;
5050}
5051
8387904d 5052/* This function makes an old ABI object reference to ".bar" cause the
908b32fc
AM
5053 inclusion of a new ABI object archive that defines "bar".
5054 NAME is a symbol defined in an archive. Return a symbol in the hash
5055 table that might be satisfied by the archive symbols. */
8387904d
AM
5056
5057static struct elf_link_hash_entry *
5058ppc64_elf_archive_symbol_lookup (bfd *abfd,
5059 struct bfd_link_info *info,
5060 const char *name)
5061{
5062 struct elf_link_hash_entry *h;
5063 char *dot_name;
5064 size_t len;
5065
5066 h = _bfd_elf_archive_symbol_lookup (abfd, info, name);
908b32fc
AM
5067 if (h != NULL
5068 /* Don't return this sym if it is a fake function descriptor
5069 created by add_symbol_adjust. */
8c5b4e52 5070 && !((struct ppc_link_hash_entry *) h)->fake)
8387904d
AM
5071 return h;
5072
5073 if (name[0] == '.')
5074 return h;
5075
5076 len = strlen (name);
5077 dot_name = bfd_alloc (abfd, len + 2);
5078 if (dot_name == NULL)
5079 return (struct elf_link_hash_entry *) 0 - 1;
5080 dot_name[0] = '.';
5081 memcpy (dot_name + 1, name, len + 1);
5082 h = _bfd_elf_archive_symbol_lookup (abfd, info, dot_name);
5083 bfd_release (abfd, dot_name);
5084 return h;
5085}
5086
5087/* This function satisfies all old ABI object references to ".bar" if a
99877b66
AM
5088 new ABI object defines "bar". Well, at least, undefined dot symbols
5089 are made weak. This stops later archive searches from including an
5090 object if we already have a function descriptor definition. It also
35b0ce59
AM
5091 prevents the linker complaining about undefined symbols.
5092 We also check and correct mismatched symbol visibility here. The
5093 most restrictive visibility of the function descriptor and the
5094 function entry symbol is used. */
8387904d
AM
5095
5096static bfd_boolean
b3fac117 5097add_symbol_adjust (struct ppc_link_hash_entry *eh, struct bfd_link_info *info)
8387904d 5098{
8387904d
AM
5099 struct ppc_link_hash_table *htab;
5100 struct ppc_link_hash_entry *fdh;
5101
b3fac117
AM
5102 if (eh->elf.root.type == bfd_link_hash_warning)
5103 eh = (struct ppc_link_hash_entry *) eh->elf.root.u.i.link;
8387904d 5104
8400d40d
AM
5105 if (eh->elf.root.type == bfd_link_hash_indirect)
5106 return TRUE;
5107
b3fac117
AM
5108 if (eh->elf.root.root.string[0] != '.')
5109 abort ();
8387904d 5110
b3fac117 5111 htab = ppc_hash_table (info);
4dfe6ac6
NC
5112 if (htab == NULL)
5113 return FALSE;
5114
b31867b6 5115 fdh = lookup_fdh (eh, htab);
8c5b4e52
AM
5116 if (fdh == NULL
5117 && !bfd_link_relocatable (info)
5118 && (eh->elf.root.type == bfd_link_hash_undefined
5119 || eh->elf.root.type == bfd_link_hash_undefweak)
5120 && eh->elf.ref_regular)
5121 {
5122 /* Make an undefined function descriptor sym, in order to
5123 pull in an --as-needed shared lib. Archives are handled
5124 elsewhere. */
5125 fdh = make_fdh (info, eh);
5126 if (fdh == NULL)
5127 return FALSE;
bb700d78 5128 }
8c5b4e52
AM
5129
5130 if (fdh != NULL)
8387904d 5131 {
35b0ce59
AM
5132 unsigned entry_vis = ELF_ST_VISIBILITY (eh->elf.other) - 1;
5133 unsigned descr_vis = ELF_ST_VISIBILITY (fdh->elf.other) - 1;
8c5b4e52
AM
5134
5135 /* Make both descriptor and entry symbol have the most
5136 constraining visibility of either symbol. */
35b0ce59
AM
5137 if (entry_vis < descr_vis)
5138 fdh->elf.other += entry_vis - descr_vis;
5139 else if (entry_vis > descr_vis)
5140 eh->elf.other += descr_vis - entry_vis;
5141
8c5b4e52
AM
5142 /* Propagate reference flags from entry symbol to function
5143 descriptor symbol. */
bc4e12de 5144 fdh->elf.root.non_ir_ref_regular |= eh->elf.root.non_ir_ref_regular;
4070765b 5145 fdh->elf.root.non_ir_ref_dynamic |= eh->elf.root.non_ir_ref_dynamic;
8c5b4e52
AM
5146 fdh->elf.ref_regular |= eh->elf.ref_regular;
5147 fdh->elf.ref_regular_nonweak |= eh->elf.ref_regular_nonweak;
5148
5149 if (!fdh->elf.forced_local
5150 && fdh->elf.dynindx == -1
5151 && fdh->elf.versioned != versioned_hidden
5152 && (bfd_link_dll (info)
5153 || fdh->elf.def_dynamic
5154 || fdh->elf.ref_dynamic)
5155 && (eh->elf.ref_regular
5156 || eh->elf.def_regular))
5157 {
5158 if (! bfd_elf_link_record_dynamic_symbol (info, &fdh->elf))
5159 return FALSE;
35b0ce59 5160 }
8387904d 5161 }
99877b66 5162
8387904d
AM
5163 return TRUE;
5164}
5165
f6c7c3e8
AM
5166/* Set up opd section info and abiversion for IBFD, and process list
5167 of dot-symbols we made in link_hash_newfunc. */
b3fac117 5168
8387904d 5169static bfd_boolean
f6c7c3e8 5170ppc64_elf_before_check_relocs (bfd *ibfd, struct bfd_link_info *info)
8387904d 5171{
99877b66 5172 struct ppc_link_hash_table *htab;
b3fac117 5173 struct ppc_link_hash_entry **p, *eh;
459609d6 5174 asection *opd = bfd_get_section_by_name (ibfd, ".opd");
433817dd 5175
459609d6 5176 if (opd != NULL && opd->size != 0)
b3fac117 5177 {
b9399fcf
AM
5178 BFD_ASSERT (ppc64_elf_section_data (opd)->sec_type == sec_normal);
5179 ppc64_elf_section_data (opd)->sec_type = sec_opd;
5180
459609d6
AM
5181 if (abiversion (ibfd) == 0)
5182 set_abiversion (ibfd, 1);
8a2058b5 5183 else if (abiversion (ibfd) >= 2)
f6c7c3e8 5184 {
695344c0 5185 /* xgettext:c-format */
459609d6
AM
5186 info->callbacks->einfo (_("%P: %B .opd not allowed in ABI"
5187 " version %d\n"),
5188 ibfd, abiversion (ibfd));
5189 bfd_set_error (bfd_error_bad_value);
5190 return FALSE;
f6c7c3e8 5191 }
b9399fcf 5192 }
f6c7c3e8 5193
b9399fcf
AM
5194 if (is_ppc64_elf (info->output_bfd))
5195 {
5196 /* For input files without an explicit abiversion in e_flags
5197 we should have flagged any with symbol st_other bits set
5198 as ELFv1 and above flagged those with .opd as ELFv2.
5199 Set the output abiversion if not yet set, and for any input
5200 still ambiguous, take its abiversion from the output.
5201 Differences in ABI are reported later. */
5202 if (abiversion (info->output_bfd) == 0)
5203 set_abiversion (info->output_bfd, abiversion (ibfd));
5204 else if (abiversion (ibfd) == 0)
5205 set_abiversion (ibfd, abiversion (info->output_bfd));
b3fac117
AM
5206 }
5207
459609d6
AM
5208 htab = ppc_hash_table (info);
5209 if (htab == NULL)
b9399fcf 5210 return TRUE;
459609d6 5211
b9399fcf
AM
5212 if (opd != NULL && opd->size != 0
5213 && (ibfd->flags & DYNAMIC) == 0
5214 && (opd->flags & SEC_RELOC) != 0
5215 && opd->reloc_count != 0
5216 && !bfd_is_abs_section (opd->output_section)
5217 && info->gc_sections)
5218 {
5219 /* Garbage collection needs some extra help with .opd sections.
5220 We don't want to necessarily keep everything referenced by
5221 relocs in .opd, as that would keep all functions. Instead,
5222 if we reference an .opd symbol (a function descriptor), we
5223 want to keep the function code symbol's section. This is
5224 easy for global symbols, but for local syms we need to keep
5225 information about the associated function section. */
5226 bfd_size_type amt;
5227 asection **opd_sym_map;
5228 Elf_Internal_Shdr *symtab_hdr;
5229 Elf_Internal_Rela *relocs, *rel_end, *rel;
5230
5231 amt = OPD_NDX (opd->size) * sizeof (*opd_sym_map);
5232 opd_sym_map = bfd_zalloc (ibfd, amt);
5233 if (opd_sym_map == NULL)
5234 return FALSE;
5235 ppc64_elf_section_data (opd)->u.opd.func_sec = opd_sym_map;
5236 relocs = _bfd_elf_link_read_relocs (ibfd, opd, NULL, NULL,
5237 info->keep_memory);
5238 if (relocs == NULL)
5239 return FALSE;
5240 symtab_hdr = &elf_symtab_hdr (ibfd);
5241 rel_end = relocs + opd->reloc_count - 1;
5242 for (rel = relocs; rel < rel_end; rel++)
5243 {
5244 enum elf_ppc64_reloc_type r_type = ELF64_R_TYPE (rel->r_info);
5245 unsigned long r_symndx = ELF64_R_SYM (rel->r_info);
5246
5247 if (r_type == R_PPC64_ADDR64
5248 && ELF64_R_TYPE ((rel + 1)->r_info) == R_PPC64_TOC
5249 && r_symndx < symtab_hdr->sh_info)
5250 {
5251 Elf_Internal_Sym *isym;
5252 asection *s;
5253
5254 isym = bfd_sym_from_r_symndx (&htab->sym_cache, ibfd, r_symndx);
5255 if (isym == NULL)
5256 {
5257 if (elf_section_data (opd)->relocs != relocs)
5258 free (relocs);
5259 return FALSE;
5260 }
5261
5262 s = bfd_section_from_elf_index (ibfd, isym->st_shndx);
5263 if (s != NULL && s != opd)
5264 opd_sym_map[OPD_NDX (rel->r_offset)] = s;
5265 }
5266 }
5267 if (elf_section_data (opd)->relocs != relocs)
5268 free (relocs);
5269 }
459609d6
AM
5270
5271 p = &htab->dot_syms;
5272 while ((eh = *p) != NULL)
5273 {
5274 *p = NULL;
5275 if (&eh->elf == htab->elf.hgot)
5276 ;
5277 else if (htab->elf.hgot == NULL
5278 && strcmp (eh->elf.root.root.string, ".TOC.") == 0)
5279 htab->elf.hgot = &eh->elf;
8c5b4e52
AM
5280 else if (abiversion (ibfd) <= 1)
5281 {
5282 htab->need_func_desc_adj = 1;
5283 if (!add_symbol_adjust (eh, info))
5284 return FALSE;
5285 }
459609d6
AM
5286 p = &eh->u.next_dot_sym;
5287 }
b3fac117 5288 return TRUE;
8387904d
AM
5289}
5290
97fed1c9
JJ
5291/* Undo hash table changes when an --as-needed input file is determined
5292 not to be needed. */
5293
5294static bfd_boolean
e5034e59
AM
5295ppc64_elf_notice_as_needed (bfd *ibfd,
5296 struct bfd_link_info *info,
5297 enum notice_asneeded_action act)
97fed1c9 5298{
e5034e59
AM
5299 if (act == notice_not_needed)
5300 {
5301 struct ppc_link_hash_table *htab = ppc_hash_table (info);
4dfe6ac6 5302
e5034e59
AM
5303 if (htab == NULL)
5304 return FALSE;
4dfe6ac6 5305
e5034e59
AM
5306 htab->dot_syms = NULL;
5307 }
5308 return _bfd_elf_notice_as_needed (ibfd, info, act);
97fed1c9
JJ
5309}
5310
aa374f67
AM
5311/* If --just-symbols against a final linked binary, then assume we need
5312 toc adjusting stubs when calling functions defined there. */
5313
5314static void
5315ppc64_elf_link_just_syms (asection *sec, struct bfd_link_info *info)
5316{
5317 if ((sec->flags & SEC_CODE) != 0
5318 && (sec->owner->flags & (EXEC_P | DYNAMIC)) != 0
5319 && is_ppc64_elf (sec->owner))
5320 {
2c3f079f
AM
5321 if (abiversion (sec->owner) >= 2
5322 || bfd_get_section_by_name (sec->owner, ".opd") != NULL)
aa374f67
AM
5323 sec->has_toc_reloc = 1;
5324 }
5325 _bfd_elf_link_just_syms (sec, info);
5326}
5327
e054468f 5328static struct plt_entry **
4ce794b7
AM
5329update_local_sym_info (bfd *abfd, Elf_Internal_Shdr *symtab_hdr,
5330 unsigned long r_symndx, bfd_vma r_addend, int tls_type)
411e1bfb
AM
5331{
5332 struct got_entry **local_got_ents = elf_local_got_ents (abfd);
e054468f 5333 struct plt_entry **local_plt;
f961d9dd 5334 unsigned char *local_got_tls_masks;
411e1bfb
AM
5335
5336 if (local_got_ents == NULL)
5337 {
5338 bfd_size_type size = symtab_hdr->sh_info;
5339
e054468f
AM
5340 size *= (sizeof (*local_got_ents)
5341 + sizeof (*local_plt)
5342 + sizeof (*local_got_tls_masks));
4ce794b7 5343 local_got_ents = bfd_zalloc (abfd, size);
411e1bfb 5344 if (local_got_ents == NULL)
e054468f 5345 return NULL;
411e1bfb
AM
5346 elf_local_got_ents (abfd) = local_got_ents;
5347 }
5348
e054468f 5349 if ((tls_type & (PLT_IFUNC | TLS_EXPLICIT)) == 0)
411e1bfb
AM
5350 {
5351 struct got_entry *ent;
5352
5353 for (ent = local_got_ents[r_symndx]; ent != NULL; ent = ent->next)
e717da7e
AM
5354 if (ent->addend == r_addend
5355 && ent->owner == abfd
5356 && ent->tls_type == tls_type)
411e1bfb
AM
5357 break;
5358 if (ent == NULL)
5359 {
5360 bfd_size_type amt = sizeof (*ent);
4ce794b7 5361 ent = bfd_alloc (abfd, amt);
411e1bfb
AM
5362 if (ent == NULL)
5363 return FALSE;
5364 ent->next = local_got_ents[r_symndx];
5365 ent->addend = r_addend;
e717da7e 5366 ent->owner = abfd;
411e1bfb 5367 ent->tls_type = tls_type;
927be08e 5368 ent->is_indirect = FALSE;
411e1bfb
AM
5369 ent->got.refcount = 0;
5370 local_got_ents[r_symndx] = ent;
5371 }
5372 ent->got.refcount += 1;
5373 }
5374
e054468f 5375 local_plt = (struct plt_entry **) (local_got_ents + symtab_hdr->sh_info);
f961d9dd 5376 local_got_tls_masks = (unsigned char *) (local_plt + symtab_hdr->sh_info);
e7b938ca 5377 local_got_tls_masks[r_symndx] |= tls_type;
e054468f
AM
5378
5379 return local_plt + r_symndx;
65f38f15
AM
5380}
5381
411e1bfb 5382static bfd_boolean
e054468f 5383update_plt_info (bfd *abfd, struct plt_entry **plist, bfd_vma addend)
1e2f5b6e 5384{
411e1bfb 5385 struct plt_entry *ent;
1e2f5b6e 5386
e054468f 5387 for (ent = *plist; ent != NULL; ent = ent->next)
411e1bfb
AM
5388 if (ent->addend == addend)
5389 break;
5390 if (ent == NULL)
1e2f5b6e 5391 {
411e1bfb 5392 bfd_size_type amt = sizeof (*ent);
4ce794b7 5393 ent = bfd_alloc (abfd, amt);
411e1bfb
AM
5394 if (ent == NULL)
5395 return FALSE;
e054468f 5396 ent->next = *plist;
411e1bfb
AM
5397 ent->addend = addend;
5398 ent->plt.refcount = 0;
e054468f 5399 *plist = ent;
1e2f5b6e 5400 }
411e1bfb 5401 ent->plt.refcount += 1;
b34976b6 5402 return TRUE;
1e2f5b6e
AM
5403}
5404
e054468f
AM
5405static bfd_boolean
5406is_branch_reloc (enum elf_ppc64_reloc_type r_type)
5407{
5408 return (r_type == R_PPC64_REL24
5409 || r_type == R_PPC64_REL14
5410 || r_type == R_PPC64_REL14_BRTAKEN
5411 || r_type == R_PPC64_REL14_BRNTAKEN
5412 || r_type == R_PPC64_ADDR24
5413 || r_type == R_PPC64_ADDR14
5414 || r_type == R_PPC64_ADDR14_BRTAKEN
5415 || r_type == R_PPC64_ADDR14_BRNTAKEN);
5416}
5417
5bd4f169 5418/* Look through the relocs for a section during the first phase, and
65f38f15 5419 calculate needed space in the global offset table, procedure
5d1634d7 5420 linkage table, and dynamic reloc sections. */
5bd4f169 5421
b34976b6 5422static bfd_boolean
4ce794b7
AM
5423ppc64_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
5424 asection *sec, const Elf_Internal_Rela *relocs)
5bd4f169 5425{
65f38f15 5426 struct ppc_link_hash_table *htab;
5bd4f169 5427 Elf_Internal_Shdr *symtab_hdr;
c7e2358a 5428 struct elf_link_hash_entry **sym_hashes;
5bd4f169
AM
5429 const Elf_Internal_Rela *rel;
5430 const Elf_Internal_Rela *rel_end;
5bd4f169 5431 asection *sreloc;
3a71aa26 5432 struct elf_link_hash_entry *tga, *dottga;
b9399fcf 5433 bfd_boolean is_opd;
5bd4f169 5434
0e1862bb 5435 if (bfd_link_relocatable (info))
b34976b6 5436 return TRUE;
5bd4f169 5437
680a3378
AM
5438 /* Don't do anything special with non-loaded, non-alloced sections.
5439 In particular, any relocs in such sections should not affect GOT
5440 and PLT reference counting (ie. we don't allow them to create GOT
5441 or PLT entries), there's no possibility or desire to optimize TLS
5442 relocs, and there's not much point in propagating relocs to shared
5443 libs that the dynamic linker won't relocate. */
5444 if ((sec->flags & SEC_ALLOC) == 0)
5445 return TRUE;
5446
0c8d6e5c 5447 BFD_ASSERT (is_ppc64_elf (abfd));
0ffa91dd 5448
65f38f15 5449 htab = ppc_hash_table (info);
4dfe6ac6
NC
5450 if (htab == NULL)
5451 return FALSE;
5452
3a71aa26
AM
5453 tga = elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
5454 FALSE, FALSE, TRUE);
5455 dottga = elf_link_hash_lookup (&htab->elf, ".__tls_get_addr",
5456 FALSE, FALSE, TRUE);
0ffa91dd 5457 symtab_hdr = &elf_symtab_hdr (abfd);
5bd4f169 5458 sym_hashes = elf_sym_hashes (abfd);
5bd4f169 5459 sreloc = NULL;
b9399fcf 5460 is_opd = ppc64_elf_section_data (sec)->sec_type == sec_opd;
5bd4f169
AM
5461 rel_end = relocs + sec->reloc_count;
5462 for (rel = relocs; rel < rel_end; rel++)
5463 {
5464 unsigned long r_symndx;
5465 struct elf_link_hash_entry *h;
04c9666a 5466 enum elf_ppc64_reloc_type r_type;
727fc41e 5467 int tls_type;
7c8fe5c4 5468 struct _ppc64_elf_section_data *ppc64_sec;
cbf95972 5469 struct plt_entry **ifunc, **plt_list;
5bd4f169
AM
5470
5471 r_symndx = ELF64_R_SYM (rel->r_info);
5472 if (r_symndx < symtab_hdr->sh_info)
5473 h = NULL;
5474 else
973a3492 5475 {
8c5b4e52
AM
5476 struct ppc_link_hash_entry *eh;
5477
973a3492 5478 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
b31867b6 5479 h = elf_follow_link (h);
8c5b4e52 5480 eh = (struct ppc_link_hash_entry *) h;
81fbe831
AM
5481
5482 /* PR15323, ref flags aren't set for references in the same
5483 object. */
bc4e12de 5484 h->root.non_ir_ref_regular = 1;
8c5b4e52 5485 if (eh->is_func && eh->oh != NULL)
bc4e12de 5486 eh->oh->elf.root.non_ir_ref_regular = 1;
1c865ab2
AM
5487
5488 if (h == htab->elf.hgot)
5489 sec->has_toc_reloc = 1;
973a3492 5490 }
5bd4f169 5491
727fc41e 5492 tls_type = 0;
e054468f 5493 ifunc = NULL;
25f23106
AM
5494 if (h != NULL)
5495 {
5496 if (h->type == STT_GNU_IFUNC)
5497 {
5498 h->needs_plt = 1;
5499 ifunc = &h->plt.plist;
5500 }
5501 }
5502 else
5503 {
5504 Elf_Internal_Sym *isym = bfd_sym_from_r_symndx (&htab->sym_cache,
5505 abfd, r_symndx);
5506 if (isym == NULL)
5507 return FALSE;
5508
5509 if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
5510 {
5511 ifunc = update_local_sym_info (abfd, symtab_hdr, r_symndx,
5512 rel->r_addend, PLT_IFUNC);
5513 if (ifunc == NULL)
5514 return FALSE;
5515 }
5516 }
727fc41e 5517
cbf95972 5518 r_type = ELF64_R_TYPE (rel->r_info);
a33d1f77 5519 switch (r_type)
5bd4f169 5520 {
727fc41e
AM
5521 case R_PPC64_TLSGD:
5522 case R_PPC64_TLSLD:
5523 /* These special tls relocs tie a call to __tls_get_addr with
5524 its parameter symbol. */
5525 break;
5526
411e1bfb
AM
5527 case R_PPC64_GOT_TLSLD16:
5528 case R_PPC64_GOT_TLSLD16_LO:
5529 case R_PPC64_GOT_TLSLD16_HI:
5530 case R_PPC64_GOT_TLSLD16_HA:
951fd09b 5531 tls_type = TLS_TLS | TLS_LD;
411e1bfb
AM
5532 goto dogottls;
5533
5534 case R_PPC64_GOT_TLSGD16:
5535 case R_PPC64_GOT_TLSGD16_LO:
5536 case R_PPC64_GOT_TLSGD16_HI:
5537 case R_PPC64_GOT_TLSGD16_HA:
951fd09b 5538 tls_type = TLS_TLS | TLS_GD;
411e1bfb
AM
5539 goto dogottls;
5540
5541 case R_PPC64_GOT_TPREL16_DS:
5542 case R_PPC64_GOT_TPREL16_LO_DS:
5543 case R_PPC64_GOT_TPREL16_HI:
5544 case R_PPC64_GOT_TPREL16_HA:
7c8bbca5 5545 if (bfd_link_dll (info))
411e1bfb
AM
5546 info->flags |= DF_STATIC_TLS;
5547 tls_type = TLS_TLS | TLS_TPREL;
5548 goto dogottls;
5549
5550 case R_PPC64_GOT_DTPREL16_DS:
5551 case R_PPC64_GOT_DTPREL16_LO_DS:
5552 case R_PPC64_GOT_DTPREL16_HI:
5553 case R_PPC64_GOT_DTPREL16_HA:
5554 tls_type = TLS_TLS | TLS_DTPREL;
5555 dogottls:
5556 sec->has_tls_reloc = 1;
1a0670f3 5557 /* Fall through */
411e1bfb 5558
5bd4f169 5559 case R_PPC64_GOT16:
5bd4f169 5560 case R_PPC64_GOT16_DS:
65f38f15
AM
5561 case R_PPC64_GOT16_HA:
5562 case R_PPC64_GOT16_HI:
5563 case R_PPC64_GOT16_LO:
5bd4f169 5564 case R_PPC64_GOT16_LO_DS:
65f38f15 5565 /* This symbol requires a global offset table entry. */
4c52953f 5566 sec->has_toc_reloc = 1;
33c0ec9d
AM
5567 if (r_type == R_PPC64_GOT_TLSLD16
5568 || r_type == R_PPC64_GOT_TLSGD16
5569 || r_type == R_PPC64_GOT_TPREL16_DS
5570 || r_type == R_PPC64_GOT_DTPREL16_DS
5571 || r_type == R_PPC64_GOT16
5572 || r_type == R_PPC64_GOT16_DS)
5573 {
5574 htab->do_multi_toc = 1;
d77c8a4b 5575 ppc64_elf_tdata (abfd)->has_small_toc_reloc = 1;
33c0ec9d
AM
5576 }
5577
e717da7e
AM
5578 if (ppc64_elf_tdata (abfd)->got == NULL
5579 && !create_got_section (abfd, info))
b34976b6 5580 return FALSE;
5bd4f169
AM
5581
5582 if (h != NULL)
5583 {
411e1bfb
AM
5584 struct ppc_link_hash_entry *eh;
5585 struct got_entry *ent;
65f38f15 5586
411e1bfb
AM
5587 eh = (struct ppc_link_hash_entry *) h;
5588 for (ent = eh->elf.got.glist; ent != NULL; ent = ent->next)
5589 if (ent->addend == rel->r_addend
e717da7e 5590 && ent->owner == abfd
411e1bfb
AM
5591 && ent->tls_type == tls_type)
5592 break;
5593 if (ent == NULL)
5bd4f169 5594 {
411e1bfb 5595 bfd_size_type amt = sizeof (*ent);
4ce794b7 5596 ent = bfd_alloc (abfd, amt);
411e1bfb 5597 if (ent == NULL)
b34976b6 5598 return FALSE;
411e1bfb
AM
5599 ent->next = eh->elf.got.glist;
5600 ent->addend = rel->r_addend;
e717da7e 5601 ent->owner = abfd;
411e1bfb 5602 ent->tls_type = tls_type;
927be08e 5603 ent->is_indirect = FALSE;
411e1bfb
AM
5604 ent->got.refcount = 0;
5605 eh->elf.got.glist = ent;
5bd4f169 5606 }
411e1bfb 5607 ent->got.refcount += 1;
e7b938ca 5608 eh->tls_mask |= tls_type;
5bd4f169 5609 }
411e1bfb
AM
5610 else
5611 /* This is a global offset table entry for a local symbol. */
5612 if (!update_local_sym_info (abfd, symtab_hdr, r_symndx,
5613 rel->r_addend, tls_type))
5614 return FALSE;
a345bc8d
AM
5615
5616 /* We may also need a plt entry if the symbol turns out to be
5617 an ifunc. */
0e1862bb 5618 if (h != NULL && !bfd_link_pic (info) && abiversion (abfd) != 1)
a345bc8d
AM
5619 {
5620 if (!update_plt_info (abfd, &h->plt.plist, rel->r_addend))
5621 return FALSE;
5622 }
5bd4f169
AM
5623 break;
5624
5bd4f169 5625 case R_PPC64_PLT16_HA:
65f38f15
AM
5626 case R_PPC64_PLT16_HI:
5627 case R_PPC64_PLT16_LO:
5628 case R_PPC64_PLT32:
5629 case R_PPC64_PLT64:
cbf95972
AM
5630 /* This symbol requires a procedure linkage table entry. */
5631 plt_list = ifunc;
5632 if (h != NULL)
e054468f 5633 {
e054468f
AM
5634 h->needs_plt = 1;
5635 if (h->root.root.string[0] == '.'
5636 && h->root.root.string[1] != '\0')
5637 ((struct ppc_link_hash_entry *) h)->is_func = 1;
cbf95972
AM
5638 plt_list = &h->plt.plist;
5639 }
5640 if (plt_list == NULL)
5641 {
5642 /* It does not make sense to have a procedure linkage
5643 table entry for a non-ifunc local symbol. */
5644 info->callbacks->einfo
695344c0 5645 /* xgettext:c-format */
174d0a74 5646 (_("%H: %s reloc against local symbol\n"),
cbf95972
AM
5647 abfd, sec, rel->r_offset,
5648 ppc64_elf_howto_table[r_type]->name);
5649 bfd_set_error (bfd_error_bad_value);
5650 return FALSE;
e054468f 5651 }
cbf95972
AM
5652 if (!update_plt_info (abfd, plt_list, rel->r_addend))
5653 return FALSE;
5bd4f169
AM
5654 break;
5655
5656 /* The following relocations don't need to propagate the
5657 relocation if linking a shared object since they are
5658 section relative. */
5659 case R_PPC64_SECTOFF:
5660 case R_PPC64_SECTOFF_LO:
5661 case R_PPC64_SECTOFF_HI:
5662 case R_PPC64_SECTOFF_HA:
5663 case R_PPC64_SECTOFF_DS:
5664 case R_PPC64_SECTOFF_LO_DS:
411e1bfb
AM
5665 case R_PPC64_DTPREL16:
5666 case R_PPC64_DTPREL16_LO:
5667 case R_PPC64_DTPREL16_HI:
5668 case R_PPC64_DTPREL16_HA:
5669 case R_PPC64_DTPREL16_DS:
5670 case R_PPC64_DTPREL16_LO_DS:
f9c6b907
AM
5671 case R_PPC64_DTPREL16_HIGH:
5672 case R_PPC64_DTPREL16_HIGHA:
411e1bfb
AM
5673 case R_PPC64_DTPREL16_HIGHER:
5674 case R_PPC64_DTPREL16_HIGHERA:
5675 case R_PPC64_DTPREL16_HIGHEST:
5676 case R_PPC64_DTPREL16_HIGHESTA:
5bd4f169
AM
5677 break;
5678
ad8e1ba5 5679 /* Nor do these. */
25f23106
AM
5680 case R_PPC64_REL16:
5681 case R_PPC64_REL16_LO:
5682 case R_PPC64_REL16_HI:
5683 case R_PPC64_REL16_HA:
a680de9a 5684 case R_PPC64_REL16DX_HA:
25f23106
AM
5685 break;
5686
45965137
AM
5687 /* Not supported as a dynamic relocation. */
5688 case R_PPC64_ADDR64_LOCAL:
0e1862bb 5689 if (bfd_link_pic (info))
45965137
AM
5690 {
5691 if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
5692 ppc_howto_init ();
695344c0 5693 /* xgettext:c-format */
174d0a74 5694 info->callbacks->einfo (_("%H: %s reloc unsupported "
45965137
AM
5695 "in shared libraries and PIEs.\n"),
5696 abfd, sec, rel->r_offset,
5697 ppc64_elf_howto_table[r_type]->name);
5698 bfd_set_error (bfd_error_bad_value);
5699 return FALSE;
5700 }
5701 break;
5702
ad8e1ba5 5703 case R_PPC64_TOC16:
33c0ec9d
AM
5704 case R_PPC64_TOC16_DS:
5705 htab->do_multi_toc = 1;
d77c8a4b 5706 ppc64_elf_tdata (abfd)->has_small_toc_reloc = 1;
1a0670f3 5707 /* Fall through. */
ad8e1ba5
AM
5708 case R_PPC64_TOC16_LO:
5709 case R_PPC64_TOC16_HI:
5710 case R_PPC64_TOC16_HA:
ad8e1ba5 5711 case R_PPC64_TOC16_LO_DS:
4c52953f 5712 sec->has_toc_reloc = 1;
ad8e1ba5
AM
5713 break;
5714
006589cf
AM
5715 /* Marker reloc. */
5716 case R_PPC64_ENTRY:
5717 break;
5718
5bd4f169
AM
5719 /* This relocation describes the C++ object vtable hierarchy.
5720 Reconstruct it for later use during GC. */
5721 case R_PPC64_GNU_VTINHERIT:
c152c796 5722 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
b34976b6 5723 return FALSE;
5bd4f169
AM
5724 break;
5725
5726 /* This relocation describes which C++ vtable entries are actually
5727 used. Record for later use during GC. */
5728 case R_PPC64_GNU_VTENTRY:
d17e0c6e
JB
5729 BFD_ASSERT (h != NULL);
5730 if (h != NULL
5731 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
b34976b6 5732 return FALSE;
5bd4f169
AM
5733 break;
5734
721956f4
AM
5735 case R_PPC64_REL14:
5736 case R_PPC64_REL14_BRTAKEN:
5737 case R_PPC64_REL14_BRNTAKEN:
220c76dd
AM
5738 {
5739 asection *dest = NULL;
5740
5741 /* Heuristic: If jumping outside our section, chances are
5742 we are going to need a stub. */
5743 if (h != NULL)
5744 {
5745 /* If the sym is weak it may be overridden later, so
5746 don't assume we know where a weak sym lives. */
5747 if (h->root.type == bfd_link_hash_defined)
5748 dest = h->root.u.def.section;
5749 }
5750 else
87d72d41
AM
5751 {
5752 Elf_Internal_Sym *isym;
5753
5754 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
5755 abfd, r_symndx);
5756 if (isym == NULL)
5757 return FALSE;
5758
5759 dest = bfd_section_from_elf_index (abfd, isym->st_shndx);
5760 }
5761
220c76dd 5762 if (dest != sec)
7c8fe5c4 5763 ppc64_elf_section_data (sec)->has_14bit_branch = 1;
220c76dd 5764 }
721956f4
AM
5765 /* Fall through. */
5766
5d1634d7 5767 case R_PPC64_REL24:
cbf95972
AM
5768 plt_list = ifunc;
5769 if (h != NULL)
5d1634d7 5770 {
e054468f
AM
5771 h->needs_plt = 1;
5772 if (h->root.root.string[0] == '.'
5773 && h->root.root.string[1] != '\0')
5774 ((struct ppc_link_hash_entry *) h)->is_func = 1;
cbf95972 5775
3a71aa26 5776 if (h == tga || h == dottga)
cbf95972
AM
5777 {
5778 sec->has_tls_reloc = 1;
5779 if (rel != relocs
5780 && (ELF64_R_TYPE (rel[-1].r_info) == R_PPC64_TLSGD
5781 || ELF64_R_TYPE (rel[-1].r_info) == R_PPC64_TLSLD))
5782 /* We have a new-style __tls_get_addr call with
5783 a marker reloc. */
5784 ;
5785 else
5786 /* Mark this section as having an old-style call. */
5787 sec->has_tls_get_addr_call = 1;
5788 }
5789 plt_list = &h->plt.plist;
411e1bfb 5790 }
cbf95972
AM
5791
5792 /* We may need a .plt entry if the function this reloc
5793 refers to is in a shared lib. */
5794 if (plt_list
5795 && !update_plt_info (abfd, plt_list, rel->r_addend))
5796 return FALSE;
411e1bfb
AM
5797 break;
5798
cbf95972
AM
5799 case R_PPC64_ADDR14:
5800 case R_PPC64_ADDR14_BRNTAKEN:
5801 case R_PPC64_ADDR14_BRTAKEN:
5802 case R_PPC64_ADDR24:
5803 goto dodyn;
5804
411e1bfb
AM
5805 case R_PPC64_TPREL64:
5806 tls_type = TLS_EXPLICIT | TLS_TLS | TLS_TPREL;
7c8bbca5 5807 if (bfd_link_dll (info))
411e1bfb
AM
5808 info->flags |= DF_STATIC_TLS;
5809 goto dotlstoc;
5810
5811 case R_PPC64_DTPMOD64:
5812 if (rel + 1 < rel_end
5813 && rel[1].r_info == ELF64_R_INFO (r_symndx, R_PPC64_DTPREL64)
5814 && rel[1].r_offset == rel->r_offset + 8)
951fd09b 5815 tls_type = TLS_EXPLICIT | TLS_TLS | TLS_GD;
411e1bfb 5816 else
951fd09b 5817 tls_type = TLS_EXPLICIT | TLS_TLS | TLS_LD;
411e1bfb
AM
5818 goto dotlstoc;
5819
5820 case R_PPC64_DTPREL64:
5821 tls_type = TLS_EXPLICIT | TLS_TLS | TLS_DTPREL;
5822 if (rel != relocs
5823 && rel[-1].r_info == ELF64_R_INFO (r_symndx, R_PPC64_DTPMOD64)
5824 && rel[-1].r_offset == rel->r_offset - 8)
5825 /* This is the second reloc of a dtpmod, dtprel pair.
5826 Don't mark with TLS_DTPREL. */
5827 goto dodyn;
5828
5829 dotlstoc:
5830 sec->has_tls_reloc = 1;
5831 if (h != NULL)
5832 {
5833 struct ppc_link_hash_entry *eh;
5834 eh = (struct ppc_link_hash_entry *) h;
e7b938ca 5835 eh->tls_mask |= tls_type;
411e1bfb
AM
5836 }
5837 else
5838 if (!update_local_sym_info (abfd, symtab_hdr, r_symndx,
5839 rel->r_addend, tls_type))
5840 return FALSE;
5841
7c8fe5c4
AM
5842 ppc64_sec = ppc64_elf_section_data (sec);
5843 if (ppc64_sec->sec_type != sec_toc)
411e1bfb 5844 {
3a71aa26
AM
5845 bfd_size_type amt;
5846
e7b938ca 5847 /* One extra to simplify get_tls_mask. */
3a71aa26
AM
5848 amt = sec->size * sizeof (unsigned) / 8 + sizeof (unsigned);
5849 ppc64_sec->u.toc.symndx = bfd_zalloc (abfd, amt);
5850 if (ppc64_sec->u.toc.symndx == NULL)
5851 return FALSE;
5852 amt = sec->size * sizeof (bfd_vma) / 8;
5853 ppc64_sec->u.toc.add = bfd_zalloc (abfd, amt);
5854 if (ppc64_sec->u.toc.add == NULL)
411e1bfb 5855 return FALSE;
7c8fe5c4
AM
5856 BFD_ASSERT (ppc64_sec->sec_type == sec_normal);
5857 ppc64_sec->sec_type = sec_toc;
411e1bfb
AM
5858 }
5859 BFD_ASSERT (rel->r_offset % 8 == 0);
3a71aa26
AM
5860 ppc64_sec->u.toc.symndx[rel->r_offset / 8] = r_symndx;
5861 ppc64_sec->u.toc.add[rel->r_offset / 8] = rel->r_addend;
951fd09b
AM
5862
5863 /* Mark the second slot of a GD or LD entry.
5864 -1 to indicate GD and -2 to indicate LD. */
5865 if (tls_type == (TLS_EXPLICIT | TLS_TLS | TLS_GD))
3a71aa26 5866 ppc64_sec->u.toc.symndx[rel->r_offset / 8 + 1] = -1;
951fd09b 5867 else if (tls_type == (TLS_EXPLICIT | TLS_TLS | TLS_LD))
3a71aa26 5868 ppc64_sec->u.toc.symndx[rel->r_offset / 8 + 1] = -2;
411e1bfb
AM
5869 goto dodyn;
5870
5871 case R_PPC64_TPREL16:
5872 case R_PPC64_TPREL16_LO:
5873 case R_PPC64_TPREL16_HI:
5874 case R_PPC64_TPREL16_HA:
5875 case R_PPC64_TPREL16_DS:
5876 case R_PPC64_TPREL16_LO_DS:
f9c6b907
AM
5877 case R_PPC64_TPREL16_HIGH:
5878 case R_PPC64_TPREL16_HIGHA:
411e1bfb
AM
5879 case R_PPC64_TPREL16_HIGHER:
5880 case R_PPC64_TPREL16_HIGHERA:
5881 case R_PPC64_TPREL16_HIGHEST:
5882 case R_PPC64_TPREL16_HIGHESTA:
7c8bbca5
AM
5883 if (bfd_link_dll (info))
5884 info->flags |= DF_STATIC_TLS;
5885 goto dodyn;
5d1634d7 5886
e86ce104 5887 case R_PPC64_ADDR64:
b9399fcf 5888 if (is_opd
1e2f5b6e 5889 && rel + 1 < rel_end
4ce794b7 5890 && ELF64_R_TYPE ((rel + 1)->r_info) == R_PPC64_TOC)
1e2f5b6e 5891 {
8387904d 5892 if (h != NULL)
8c5b4e52 5893 ((struct ppc_link_hash_entry *) h)->is_func = 1;
1e2f5b6e 5894 }
e86ce104
AM
5895 /* Fall through. */
5896
65f38f15
AM
5897 case R_PPC64_ADDR16:
5898 case R_PPC64_ADDR16_DS:
5899 case R_PPC64_ADDR16_HA:
5900 case R_PPC64_ADDR16_HI:
f9c6b907
AM
5901 case R_PPC64_ADDR16_HIGH:
5902 case R_PPC64_ADDR16_HIGHA:
65f38f15
AM
5903 case R_PPC64_ADDR16_HIGHER:
5904 case R_PPC64_ADDR16_HIGHERA:
5905 case R_PPC64_ADDR16_HIGHEST:
5906 case R_PPC64_ADDR16_HIGHESTA:
5907 case R_PPC64_ADDR16_LO:
5908 case R_PPC64_ADDR16_LO_DS:
0e1862bb 5909 if (h != NULL && !bfd_link_pic (info) && abiversion (abfd) != 1
a345bc8d
AM
5910 && rel->r_addend == 0)
5911 {
5912 /* We may need a .plt entry if this reloc refers to a
5913 function in a shared lib. */
5914 if (!update_plt_info (abfd, &h->plt.plist, rel->r_addend))
5915 return FALSE;
5916 h->pointer_equality_needed = 1;
5917 }
5918 /* Fall through. */
5919
5920 case R_PPC64_REL30:
5921 case R_PPC64_REL32:
5922 case R_PPC64_REL64:
65f38f15 5923 case R_PPC64_ADDR32:
65f38f15
AM
5924 case R_PPC64_UADDR16:
5925 case R_PPC64_UADDR32:
5926 case R_PPC64_UADDR64:
5bd4f169 5927 case R_PPC64_TOC:
0e1862bb 5928 if (h != NULL && !bfd_link_pic (info))
81848ca0 5929 /* We may need a copy reloc. */
f5385ebf 5930 h->non_got_ref = 1;
81848ca0 5931
41bd81ab 5932 /* Don't propagate .opd relocs. */
b9399fcf 5933 if (NO_OPD_RELOCS && is_opd)
e86ce104 5934 break;
e86ce104 5935
65f38f15
AM
5936 /* If we are creating a shared library, and this is a reloc
5937 against a global symbol, or a non PC relative reloc
5938 against a local symbol, then we need to copy the reloc
5939 into the shared library. However, if we are linking with
5940 -Bsymbolic, we do not need to copy a reloc against a
5941 global symbol which is defined in an object we are
5942 including in the link (i.e., DEF_REGULAR is set). At
5943 this point we have not seen all the input files, so it is
5944 possible that DEF_REGULAR is not set now but will be set
5945 later (it is never cleared). In case of a weak definition,
5946 DEF_REGULAR may be cleared later by a strong definition in
5947 a shared library. We account for that possibility below by
f4656909 5948 storing information in the dyn_relocs field of the hash
65f38f15
AM
5949 table entry. A similar situation occurs when creating
5950 shared libraries and symbol visibility changes render the
5951 symbol local.
5952
5953 If on the other hand, we are creating an executable, we
5954 may need to keep relocations for symbols satisfied by a
5955 dynamic library if we manage to avoid copy relocs for the
5956 symbol. */
411e1bfb 5957 dodyn:
0e1862bb 5958 if ((bfd_link_pic (info)
1d483afe 5959 && (must_be_dyn_reloc (info, r_type)
65f38f15 5960 || (h != NULL
198f1157 5961 && (!SYMBOLIC_BIND (info, h)
65f38f15 5962 || h->root.type == bfd_link_hash_defweak
f5385ebf 5963 || !h->def_regular))))
f4656909 5964 || (ELIMINATE_COPY_RELOCS
0e1862bb 5965 && !bfd_link_pic (info)
65f38f15
AM
5966 && h != NULL
5967 && (h->root.type == bfd_link_hash_defweak
25f23106 5968 || !h->def_regular))
0e1862bb 5969 || (!bfd_link_pic (info)
25f23106 5970 && ifunc != NULL))
5bd4f169 5971 {
65f38f15
AM
5972 /* We must copy these reloc types into the output file.
5973 Create a reloc section in dynobj and make room for
5974 this reloc. */
5bd4f169
AM
5975 if (sreloc == NULL)
5976 {
83bac4b0
NC
5977 sreloc = _bfd_elf_make_dynamic_reloc_section
5978 (sec, htab->elf.dynobj, 3, abfd, /*rela?*/ TRUE);
65f38f15 5979
5bd4f169 5980 if (sreloc == NULL)
83bac4b0 5981 return FALSE;
5bd4f169
AM
5982 }
5983
65f38f15
AM
5984 /* If this is a global symbol, we count the number of
5985 relocations we need for this symbol. */
5986 if (h != NULL)
5987 {
19e08130
AM
5988 struct elf_dyn_relocs *p;
5989 struct elf_dyn_relocs **head;
5990
ec338859 5991 head = &((struct ppc_link_hash_entry *) h)->dyn_relocs;
19e08130
AM
5992 p = *head;
5993 if (p == NULL || p->sec != sec)
5994 {
5995 p = bfd_alloc (htab->elf.dynobj, sizeof *p);
5996 if (p == NULL)
5997 return FALSE;
5998 p->next = *head;
5999 *head = p;
6000 p->sec = sec;
6001 p->count = 0;
6002 p->pc_count = 0;
6003 }
6004 p->count += 1;
6005 if (!must_be_dyn_reloc (info, r_type))
6006 p->pc_count += 1;
65f38f15
AM
6007 }
6008 else
6009 {
ec338859
AM
6010 /* Track dynamic relocs needed for local syms too.
6011 We really need local syms available to do this
6012 easily. Oh well. */
19e08130
AM
6013 struct ppc_dyn_relocs *p;
6014 struct ppc_dyn_relocs **head;
6015 bfd_boolean is_ifunc;
ec338859 6016 asection *s;
6edfbbad 6017 void *vpp;
87d72d41 6018 Elf_Internal_Sym *isym;
6edfbbad 6019
87d72d41
AM
6020 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
6021 abfd, r_symndx);
6022 if (isym == NULL)
b34976b6 6023 return FALSE;
ec338859 6024
87d72d41
AM
6025 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
6026 if (s == NULL)
6027 s = sec;
6028
6edfbbad 6029 vpp = &elf_section_data (s)->local_dynrel;
19e08130
AM
6030 head = (struct ppc_dyn_relocs **) vpp;
6031 is_ifunc = ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC;
6032 p = *head;
6033 if (p != NULL && p->sec == sec && p->ifunc != is_ifunc)
6034 p = p->next;
6035 if (p == NULL || p->sec != sec || p->ifunc != is_ifunc)
6036 {
6037 p = bfd_alloc (htab->elf.dynobj, sizeof *p);
6038 if (p == NULL)
6039 return FALSE;
6040 p->next = *head;
6041 *head = p;
6042 p->sec = sec;
6043 p->ifunc = is_ifunc;
6044 p->count = 0;
6045 }
6046 p->count += 1;
ec338859 6047 }
65f38f15 6048 }
5bd4f169 6049 break;
65f38f15
AM
6050
6051 default:
96e0dda4 6052 break;
5bd4f169
AM
6053 }
6054 }
6055
b34976b6 6056 return TRUE;
5bd4f169
AM
6057}
6058
ee67d69a
AM
6059/* Merge backend specific data from an object file to the output
6060 object file when linking. */
6061
6062static bfd_boolean
50e03d47 6063ppc64_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
ee67d69a 6064{
50e03d47 6065 bfd *obfd = info->output_bfd;
ee67d69a
AM
6066 unsigned long iflags, oflags;
6067
6068 if ((ibfd->flags & BFD_LINKER_CREATED) != 0)
6069 return TRUE;
6070
6071 if (!is_ppc64_elf (ibfd) || !is_ppc64_elf (obfd))
6072 return TRUE;
6073
50e03d47 6074 if (!_bfd_generic_verify_endian_match (ibfd, info))
ee67d69a
AM
6075 return FALSE;
6076
6077 iflags = elf_elfheader (ibfd)->e_flags;
6078 oflags = elf_elfheader (obfd)->e_flags;
6079
f6c7c3e8 6080 if (iflags & ~EF_PPC64_ABI)
ee67d69a 6081 {
4eca0228 6082 _bfd_error_handler
695344c0 6083 /* xgettext:c-format */
ee67d69a
AM
6084 (_("%B uses unknown e_flags 0x%lx"), ibfd, iflags);
6085 bfd_set_error (bfd_error_bad_value);
6086 return FALSE;
6087 }
f6c7c3e8 6088 else if (iflags != oflags && iflags != 0)
ee67d69a 6089 {
4eca0228 6090 _bfd_error_handler
695344c0 6091 /* xgettext:c-format */
ee67d69a
AM
6092 (_("%B: ABI version %ld is not compatible with ABI version %ld output"),
6093 ibfd, iflags, oflags);
6094 bfd_set_error (bfd_error_bad_value);
6095 return FALSE;
6096 }
6097
50e03d47 6098 _bfd_elf_ppc_merge_fp_attributes (ibfd, info);
005d79fd 6099
ee67d69a 6100 /* Merge Tag_compatibility attributes and any common GNU ones. */
50e03d47 6101 _bfd_elf_merge_object_attributes (ibfd, info);
ee67d69a
AM
6102
6103 return TRUE;
6104}
6105
6106static bfd_boolean
6107ppc64_elf_print_private_bfd_data (bfd *abfd, void *ptr)
6108{
6109 /* Print normal ELF private data. */
6110 _bfd_elf_print_private_bfd_data (abfd, ptr);
6111
6112 if (elf_elfheader (abfd)->e_flags != 0)
6113 {
6114 FILE *file = ptr;
6115
ee67d69a
AM
6116 fprintf (file, _("private flags = 0x%lx:"),
6117 elf_elfheader (abfd)->e_flags);
6118
6119 if ((elf_elfheader (abfd)->e_flags & EF_PPC64_ABI) != 0)
6120 fprintf (file, _(" [abiv%ld]"),
6121 elf_elfheader (abfd)->e_flags & EF_PPC64_ABI);
6122 fputc ('\n', file);
6123 }
6124
6125 return TRUE;
6126}
6127
8387904d 6128/* OFFSET in OPD_SEC specifies a function descriptor. Return the address
b53dfeb2
AM
6129 of the code entry point, and its section, which must be in the same
6130 object as OPD_SEC. Returns (bfd_vma) -1 on error. */
8387904d
AM
6131
6132static bfd_vma
6133opd_entry_value (asection *opd_sec,
6134 bfd_vma offset,
6135 asection **code_sec,
aef36ac1
AM
6136 bfd_vma *code_off,
6137 bfd_boolean in_code_sec)
8387904d
AM
6138{
6139 bfd *opd_bfd = opd_sec->owner;
8860955f 6140 Elf_Internal_Rela *relocs;
8387904d 6141 Elf_Internal_Rela *lo, *hi, *look;
645ea6a9 6142 bfd_vma val;
8387904d 6143
9f296da3
AM
6144 /* No relocs implies we are linking a --just-symbols object, or looking
6145 at a final linked executable with addr2line or somesuch. */
4b85d634
AM
6146 if (opd_sec->reloc_count == 0)
6147 {
729eabd5 6148 bfd_byte *contents = ppc64_elf_tdata (opd_bfd)->opd.contents;
3b36f7e6 6149
729eabd5
AM
6150 if (contents == NULL)
6151 {
6152 if (!bfd_malloc_and_get_section (opd_bfd, opd_sec, &contents))
6153 return (bfd_vma) -1;
6154 ppc64_elf_tdata (opd_bfd)->opd.contents = contents;
6155 }
ee1e4ede 6156
dbb3fbbb 6157 /* PR 17512: file: 64b9dfbb. */
451dfd38 6158 if (offset + 7 >= opd_sec->size || offset + 7 < offset)
dbb3fbbb
NC
6159 return (bfd_vma) -1;
6160
729eabd5 6161 val = bfd_get_64 (opd_bfd, contents + offset);
aef36ac1
AM
6162 if (code_sec != NULL)
6163 {
6164 asection *sec, *likely = NULL;
ee1e4ede 6165
aef36ac1 6166 if (in_code_sec)
4b85d634 6167 {
aef36ac1
AM
6168 sec = *code_sec;
6169 if (sec->vma <= val
6170 && val < sec->vma + sec->size)
6171 likely = sec;
6172 else
6173 val = -1;
6174 }
6175 else
6176 for (sec = opd_bfd->sections; sec != NULL; sec = sec->next)
6177 if (sec->vma <= val
6178 && (sec->flags & SEC_LOAD) != 0
6179 && (sec->flags & SEC_ALLOC) != 0)
6180 likely = sec;
6181 if (likely != NULL)
6182 {
6183 *code_sec = likely;
6184 if (code_off != NULL)
6185 *code_off = val - likely->vma;
4b85d634
AM
6186 }
6187 }
aef36ac1 6188 return val;
4b85d634
AM
6189 }
6190
0c8d6e5c 6191 BFD_ASSERT (is_ppc64_elf (opd_bfd));
0ffa91dd 6192
729eabd5 6193 relocs = ppc64_elf_tdata (opd_bfd)->opd.relocs;
8860955f
AM
6194 if (relocs == NULL)
6195 relocs = _bfd_elf_link_read_relocs (opd_bfd, opd_sec, NULL, NULL, TRUE);
877a8638
NC
6196 /* PR 17512: file: df8e1fd6. */
6197 if (relocs == NULL)
6198 return (bfd_vma) -1;
645ea6a9 6199
8387904d 6200 /* Go find the opd reloc at the sym address. */
8860955f 6201 lo = relocs;
8387904d 6202 hi = lo + opd_sec->reloc_count - 1; /* ignore last reloc */
645ea6a9 6203 val = (bfd_vma) -1;
8387904d
AM
6204 while (lo < hi)
6205 {
6206 look = lo + (hi - lo) / 2;
6207 if (look->r_offset < offset)
6208 lo = look + 1;
6209 else if (look->r_offset > offset)
6210 hi = look;
6211 else
6212 {
0ffa91dd
NC
6213 Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (opd_bfd);
6214
8387904d
AM
6215 if (ELF64_R_TYPE (look->r_info) == R_PPC64_ADDR64
6216 && ELF64_R_TYPE ((look + 1)->r_info) == R_PPC64_TOC)
6217 {
6218 unsigned long symndx = ELF64_R_SYM (look->r_info);
b53dfeb2 6219 asection *sec = NULL;
8387904d 6220
b53dfeb2
AM
6221 if (symndx >= symtab_hdr->sh_info
6222 && elf_sym_hashes (opd_bfd) != NULL)
8387904d
AM
6223 {
6224 struct elf_link_hash_entry **sym_hashes;
6225 struct elf_link_hash_entry *rh;
6226
6227 sym_hashes = elf_sym_hashes (opd_bfd);
6228 rh = sym_hashes[symndx - symtab_hdr->sh_info];
128205bb
AM
6229 if (rh != NULL)
6230 {
6231 rh = elf_follow_link (rh);
bb854a36
AM
6232 if (rh->root.type != bfd_link_hash_defined
6233 && rh->root.type != bfd_link_hash_defweak)
6234 break;
6235 if (rh->root.u.def.section->owner == opd_bfd)
b53dfeb2 6236 {
bb854a36
AM
6237 val = rh->root.u.def.value;
6238 sec = rh->root.u.def.section;
b53dfeb2
AM
6239 }
6240 }
6241 }
6242
6243 if (sec == NULL)
6244 {
6245 Elf_Internal_Sym *sym;
6246
6247 if (symndx < symtab_hdr->sh_info)
6248 {
6249 sym = (Elf_Internal_Sym *) symtab_hdr->contents;
6250 if (sym == NULL)
6251 {
6252 size_t symcnt = symtab_hdr->sh_info;
6253 sym = bfd_elf_get_elf_syms (opd_bfd, symtab_hdr,
6254 symcnt, 0,
6255 NULL, NULL, NULL);
6256 if (sym == NULL)
6257 break;
6258 symtab_hdr->contents = (bfd_byte *) sym;
6259 }
6260 sym += symndx;
128205bb
AM
6261 }
6262 else
6263 {
b53dfeb2
AM
6264 sym = bfd_elf_get_elf_syms (opd_bfd, symtab_hdr,
6265 1, symndx,
6266 NULL, NULL, NULL);
128205bb
AM
6267 if (sym == NULL)
6268 break;
128205bb 6269 }
b53dfeb2
AM
6270 sec = bfd_section_from_elf_index (opd_bfd, sym->st_shndx);
6271 if (sec == NULL)
6272 break;
6273 BFD_ASSERT ((sec->flags & SEC_MERGE) == 0);
6274 val = sym->st_value;
8387904d 6275 }
b53dfeb2 6276
8387904d
AM
6277 val += look->r_addend;
6278 if (code_off != NULL)
6279 *code_off = val;
6280 if (code_sec != NULL)
aef36ac1
AM
6281 {
6282 if (in_code_sec && *code_sec != sec)
6283 return -1;
6284 else
6285 *code_sec = sec;
6286 }
b53dfeb2 6287 if (sec->output_section != NULL)
8387904d 6288 val += sec->output_section->vma + sec->output_offset;
8387904d
AM
6289 }
6290 break;
6291 }
6292 }
645ea6a9 6293
645ea6a9 6294 return val;
8387904d
AM
6295}
6296
aef36ac1
AM
6297/* If the ELF symbol SYM might be a function in SEC, return the
6298 function size and set *CODE_OFF to the function's entry point,
6299 otherwise return zero. */
9f296da3 6300
aef36ac1
AM
6301static bfd_size_type
6302ppc64_elf_maybe_function_sym (const asymbol *sym, asection *sec,
6303 bfd_vma *code_off)
9f296da3 6304{
aef36ac1
AM
6305 bfd_size_type size;
6306
6307 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
6308 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0)
6309 return 0;
6310
6311 size = 0;
6312 if (!(sym->flags & BSF_SYNTHETIC))
6313 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
6314
6315 if (strcmp (sym->section->name, ".opd") == 0)
9f296da3 6316 {
b07bca4e
AM
6317 struct _opd_sec_data *opd = get_opd_info (sym->section);
6318 bfd_vma symval = sym->value;
6319
6320 if (opd != NULL
6321 && opd->adjust != NULL
6322 && elf_section_data (sym->section)->relocs != NULL)
6323 {
6324 /* opd_entry_value will use cached relocs that have been
6325 adjusted, but with raw symbols. That means both local
6326 and global symbols need adjusting. */
6327 long adjust = opd->adjust[OPD_NDX (symval)];
6328 if (adjust == -1)
6329 return 0;
6330 symval += adjust;
6331 }
6332
6333 if (opd_entry_value (sym->section, symval,
aef36ac1
AM
6334 &sec, code_off, TRUE) == (bfd_vma) -1)
6335 return 0;
6336 /* An old ABI binary with dot-syms has a size of 24 on the .opd
6337 symbol. This size has nothing to do with the code size of the
6338 function, which is what we're supposed to return, but the
6339 code size isn't available without looking up the dot-sym.
6340 However, doing that would be a waste of time particularly
6341 since elf_find_function will look at the dot-sym anyway.
6342 Now, elf_find_function will keep the largest size of any
6343 function sym found at the code address of interest, so return
6344 1 here to avoid it incorrectly caching a larger function size
6345 for a small function. This does mean we return the wrong
6346 size for a new-ABI function of size 24, but all that does is
6347 disable caching for such functions. */
6348 if (size == 24)
6349 size = 1;
9f296da3 6350 }
aef36ac1
AM
6351 else
6352 {
6353 if (sym->section != sec)
6354 return 0;
6355 *code_off = sym->value;
6356 }
6357 if (size == 0)
6358 size = 1;
6359 return size;
9f296da3
AM
6360}
6361
f378ab09
AM
6362/* Return true if symbol is a strong function defined in an ELFv2
6363 object with st_other localentry bits of zero, ie. its local entry
6364 point coincides with its global entry point. */
6365
6366static bfd_boolean
6367is_elfv2_localentry0 (struct elf_link_hash_entry *h)
6368{
6369 return (h != NULL
6370 && h->type == STT_FUNC
6371 && h->root.type == bfd_link_hash_defined
6372 && (STO_PPC64_LOCAL_MASK & h->other) == 0
8b5f1ed8 6373 && !((struct ppc_link_hash_entry *) h)->non_zero_localentry
f378ab09
AM
6374 && is_ppc64_elf (h->root.u.def.section->owner)
6375 && abiversion (h->root.u.def.section->owner) >= 2);
6376}
6377
854b41e7
AM
6378/* Return true if symbol is defined in a regular object file. */
6379
6380static bfd_boolean
6381is_static_defined (struct elf_link_hash_entry *h)
6382{
6383 return ((h->root.type == bfd_link_hash_defined
6384 || h->root.type == bfd_link_hash_defweak)
6385 && h->root.u.def.section != NULL
6386 && h->root.u.def.section->output_section != NULL);
6387}
6388
b31867b6
AM
6389/* If FDH is a function descriptor symbol, return the associated code
6390 entry symbol if it is defined. Return NULL otherwise. */
6391
6392static struct ppc_link_hash_entry *
6393defined_code_entry (struct ppc_link_hash_entry *fdh)
6394{
6395 if (fdh->is_func_descriptor)
6396 {
6397 struct ppc_link_hash_entry *fh = ppc_follow_link (fdh->oh);
6398 if (fh->elf.root.type == bfd_link_hash_defined
6399 || fh->elf.root.type == bfd_link_hash_defweak)
6400 return fh;
6401 }
6402 return NULL;
6403}
6404
6405/* If FH is a function code entry symbol, return the associated
6406 function descriptor symbol if it is defined. Return NULL otherwise. */
6407
6408static struct ppc_link_hash_entry *
6409defined_func_desc (struct ppc_link_hash_entry *fh)
6410{
6411 if (fh->oh != NULL
6412 && fh->oh->is_func_descriptor)
6413 {
6414 struct ppc_link_hash_entry *fdh = ppc_follow_link (fh->oh);
6415 if (fdh->elf.root.type == bfd_link_hash_defined
6416 || fdh->elf.root.type == bfd_link_hash_defweak)
6417 return fdh;
6418 }
6419 return NULL;
6420}
6421
8c5b4e52
AM
6422static bfd_boolean func_desc_adjust (struct elf_link_hash_entry *, void *);
6423
6424/* Garbage collect sections, after first dealing with dot-symbols. */
6425
6426static bfd_boolean
6427ppc64_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
6428{
6429 struct ppc_link_hash_table *htab = ppc_hash_table (info);
6430
6431 if (htab != NULL && htab->need_func_desc_adj)
6432 {
6433 elf_link_hash_traverse (&htab->elf, func_desc_adjust, info);
6434 htab->need_func_desc_adj = 0;
6435 }
6436 return bfd_elf_gc_sections (abfd, info);
6437}
6438
74f0fb50
AM
6439/* Mark all our entry sym sections, both opd and code section. */
6440
6441static void
6442ppc64_elf_gc_keep (struct bfd_link_info *info)
6443{
6444 struct ppc_link_hash_table *htab = ppc_hash_table (info);
6445 struct bfd_sym_chain *sym;
6446
4dfe6ac6
NC
6447 if (htab == NULL)
6448 return;
6449
74f0fb50
AM
6450 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
6451 {
b31867b6 6452 struct ppc_link_hash_entry *eh, *fh;
74f0fb50
AM
6453 asection *sec;
6454
6455 eh = (struct ppc_link_hash_entry *)
b31867b6 6456 elf_link_hash_lookup (&htab->elf, sym->name, FALSE, FALSE, TRUE);
74f0fb50
AM
6457 if (eh == NULL)
6458 continue;
6459 if (eh->elf.root.type != bfd_link_hash_defined
6460 && eh->elf.root.type != bfd_link_hash_defweak)
6461 continue;
6462
b31867b6
AM
6463 fh = defined_code_entry (eh);
6464 if (fh != NULL)
74f0fb50 6465 {
b31867b6 6466 sec = fh->elf.root.u.def.section;
74f0fb50
AM
6467 sec->flags |= SEC_KEEP;
6468 }
6469 else if (get_opd_info (eh->elf.root.u.def.section) != NULL
6470 && opd_entry_value (eh->elf.root.u.def.section,
6471 eh->elf.root.u.def.value,
aef36ac1 6472 &sec, NULL, FALSE) != (bfd_vma) -1)
74f0fb50
AM
6473 sec->flags |= SEC_KEEP;
6474
6475 sec = eh->elf.root.u.def.section;
6476 sec->flags |= SEC_KEEP;
6477 }
6478}
6479
64d03ab5
AM
6480/* Mark sections containing dynamically referenced symbols. When
6481 building shared libraries, we must assume that any visible symbol is
6482 referenced. */
6483
6484static bfd_boolean
6485ppc64_elf_gc_mark_dynamic_ref (struct elf_link_hash_entry *h, void *inf)
6486{
6487 struct bfd_link_info *info = (struct bfd_link_info *) inf;
6488 struct ppc_link_hash_entry *eh = (struct ppc_link_hash_entry *) h;
b31867b6 6489 struct ppc_link_hash_entry *fdh;
b407645f 6490 struct bfd_elf_dynamic_list *d = info->dynamic_list;
64d03ab5 6491
64d03ab5 6492 /* Dynamic linking info is on the func descriptor sym. */
b31867b6
AM
6493 fdh = defined_func_desc (eh);
6494 if (fdh != NULL)
6495 eh = fdh;
64d03ab5
AM
6496
6497 if ((eh->elf.root.type == bfd_link_hash_defined
6498 || eh->elf.root.type == bfd_link_hash_defweak)
6499 && (eh->elf.ref_dynamic
1c9177d9 6500 || ((eh->elf.def_regular || ELF_COMMON_DEF_P (&eh->elf))
64d03ab5 6501 && ELF_ST_VISIBILITY (eh->elf.other) != STV_INTERNAL
4c58e0d8 6502 && ELF_ST_VISIBILITY (eh->elf.other) != STV_HIDDEN
0e1862bb 6503 && (!bfd_link_executable (info)
e278ae05 6504 || info->gc_keep_exported
b407645f
AM
6505 || info->export_dynamic
6506 || (eh->elf.dynamic
6507 && d != NULL
6508 && (*d->match) (&d->head, NULL, eh->elf.root.root.string)))
e278ae05 6509 && (eh->elf.versioned >= versioned
4c58e0d8
AM
6510 || !bfd_hide_sym_by_version (info->version_info,
6511 eh->elf.root.root.string)))))
64d03ab5
AM
6512 {
6513 asection *code_sec;
b31867b6 6514 struct ppc_link_hash_entry *fh;
64d03ab5
AM
6515
6516 eh->elf.root.u.def.section->flags |= SEC_KEEP;
6517
6518 /* Function descriptor syms cause the associated
6519 function code sym section to be marked. */
b31867b6
AM
6520 fh = defined_code_entry (eh);
6521 if (fh != NULL)
6522 {
6523 code_sec = fh->elf.root.u.def.section;
6524 code_sec->flags |= SEC_KEEP;
6525 }
64d03ab5
AM
6526 else if (get_opd_info (eh->elf.root.u.def.section) != NULL
6527 && opd_entry_value (eh->elf.root.u.def.section,
6528 eh->elf.root.u.def.value,
aef36ac1 6529 &code_sec, NULL, FALSE) != (bfd_vma) -1)
64d03ab5
AM
6530 code_sec->flags |= SEC_KEEP;
6531 }
6532
6533 return TRUE;
6534}
6535
5bd4f169
AM
6536/* Return the section that should be marked against GC for a given
6537 relocation. */
6538
6539static asection *
4ce794b7 6540ppc64_elf_gc_mark_hook (asection *sec,
fb34365b 6541 struct bfd_link_info *info,
4ce794b7
AM
6542 Elf_Internal_Rela *rel,
6543 struct elf_link_hash_entry *h,
6544 Elf_Internal_Sym *sym)
5bd4f169 6545{
ccfa59ea
AM
6546 asection *rsec;
6547
ccfa59ea
AM
6548 /* Syms return NULL if we're marking .opd, so we avoid marking all
6549 function sections, as all functions are referenced in .opd. */
6550 rsec = NULL;
6551 if (get_opd_info (sec) != NULL)
6552 return rsec;
1e2f5b6e 6553
5bd4f169
AM
6554 if (h != NULL)
6555 {
04c9666a 6556 enum elf_ppc64_reloc_type r_type;
b31867b6 6557 struct ppc_link_hash_entry *eh, *fh, *fdh;
a33d1f77 6558
4ce794b7 6559 r_type = ELF64_R_TYPE (rel->r_info);
a33d1f77 6560 switch (r_type)
5bd4f169
AM
6561 {
6562 case R_PPC64_GNU_VTINHERIT:
6563 case R_PPC64_GNU_VTENTRY:
6564 break;
6565
6566 default:
6567 switch (h->root.type)
6568 {
6569 case bfd_link_hash_defined:
6570 case bfd_link_hash_defweak:
ccfa59ea 6571 eh = (struct ppc_link_hash_entry *) h;
b31867b6
AM
6572 fdh = defined_func_desc (eh);
6573 if (fdh != NULL)
8c5b4e52
AM
6574 {
6575 /* -mcall-aixdesc code references the dot-symbol on
6576 a call reloc. Mark the function descriptor too
6577 against garbage collection. */
6578 fdh->elf.mark = 1;
6579 if (fdh->elf.u.weakdef != NULL)
6580 fdh->elf.u.weakdef->mark = 1;
6581 eh = fdh;
6582 }
1e2f5b6e
AM
6583
6584 /* Function descriptor syms cause the associated
6585 function code sym section to be marked. */
b31867b6
AM
6586 fh = defined_code_entry (eh);
6587 if (fh != NULL)
ccfa59ea
AM
6588 {
6589 /* They also mark their opd section. */
74f0fb50 6590 eh->elf.root.u.def.section->gc_mark = 1;
ccfa59ea 6591
b31867b6 6592 rsec = fh->elf.root.u.def.section;
ccfa59ea 6593 }
8387904d
AM
6594 else if (get_opd_info (eh->elf.root.u.def.section) != NULL
6595 && opd_entry_value (eh->elf.root.u.def.section,
6596 eh->elf.root.u.def.value,
aef36ac1 6597 &rsec, NULL, FALSE) != (bfd_vma) -1)
74f0fb50 6598 eh->elf.root.u.def.section->gc_mark = 1;
ccfa59ea 6599 else
1e2f5b6e
AM
6600 rsec = h->root.u.def.section;
6601 break;
5bd4f169
AM
6602
6603 case bfd_link_hash_common:
1e2f5b6e
AM
6604 rsec = h->root.u.c.p->section;
6605 break;
5bd4f169
AM
6606
6607 default:
fb34365b 6608 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
5bd4f169
AM
6609 }
6610 }
6611 }
6612 else
6613 {
74f0fb50 6614 struct _opd_sec_data *opd;
1e2f5b6e
AM
6615
6616 rsec = bfd_section_from_elf_index (sec->owner, sym->st_shndx);
74f0fb50
AM
6617 opd = get_opd_info (rsec);
6618 if (opd != NULL && opd->func_sec != NULL)
ccfa59ea 6619 {
74f0fb50 6620 rsec->gc_mark = 1;
ccfa59ea 6621
51aecdc5 6622 rsec = opd->func_sec[OPD_NDX (sym->st_value + rel->r_addend)];
ccfa59ea 6623 }
5bd4f169
AM
6624 }
6625
1e2f5b6e 6626 return rsec;
5bd4f169
AM
6627}
6628
deb0e272
AM
6629/* The maximum size of .sfpr. */
6630#define SFPR_MAX (218*4)
6631
6632struct sfpr_def_parms
6633{
699733f6
AM
6634 const char name[12];
6635 unsigned char lo, hi;
deb0e272
AM
6636 bfd_byte * (*write_ent) (bfd *, bfd_byte *, int);
6637 bfd_byte * (*write_tail) (bfd *, bfd_byte *, int);
6638};
6639
a4b6fadd
AM
6640/* Auto-generate _save*, _rest* functions in .sfpr.
6641 If STUB_SEC is non-null, define alias symbols in STUB_SEC
6642 instead. */
deb0e272 6643
4dfe6ac6 6644static bfd_boolean
a4b6fadd
AM
6645sfpr_define (struct bfd_link_info *info,
6646 const struct sfpr_def_parms *parm,
6647 asection *stub_sec)
deb0e272
AM
6648{
6649 struct ppc_link_hash_table *htab = ppc_hash_table (info);
6650 unsigned int i;
6651 size_t len = strlen (parm->name);
6652 bfd_boolean writing = FALSE;
699733f6 6653 char sym[16];
deb0e272 6654
4dfe6ac6
NC
6655 if (htab == NULL)
6656 return FALSE;
6657
deb0e272
AM
6658 memcpy (sym, parm->name, len);
6659 sym[len + 2] = 0;
6660
6661 for (i = parm->lo; i <= parm->hi; i++)
6662 {
a4b6fadd 6663 struct ppc_link_hash_entry *h;
deb0e272
AM
6664
6665 sym[len + 0] = i / 10 + '0';
6666 sym[len + 1] = i % 10 + '0';
a4b6fadd 6667 h = (struct ppc_link_hash_entry *)
b32547cd 6668 elf_link_hash_lookup (&htab->elf, sym, writing, TRUE, TRUE);
a4b6fadd 6669 if (stub_sec != NULL)
deb0e272 6670 {
a4b6fadd
AM
6671 if (h != NULL
6672 && h->elf.root.type == bfd_link_hash_defined
6673 && h->elf.root.u.def.section == htab->sfpr)
6674 {
6675 struct elf_link_hash_entry *s;
6676 char buf[32];
6677 sprintf (buf, "%08x.%s", stub_sec->id & 0xffffffff, sym);
6678 s = elf_link_hash_lookup (&htab->elf, buf, TRUE, TRUE, FALSE);
6679 if (s == NULL)
6680 return FALSE;
6681 if (s->root.type == bfd_link_hash_new
6682 || (s->root.type = bfd_link_hash_defined
6683 && s->root.u.def.section == stub_sec))
6684 {
6685 s->root.type = bfd_link_hash_defined;
6686 s->root.u.def.section = stub_sec;
6687 s->root.u.def.value = (stub_sec->size
6688 + h->elf.root.u.def.value);
6689 s->ref_regular = 1;
6690 s->def_regular = 1;
6691 s->ref_regular_nonweak = 1;
6692 s->forced_local = 1;
6693 s->non_elf = 0;
6694 s->root.linker_def = 1;
6695 }
6696 }
6697 continue;
6698 }
6699 if (h != NULL)
6700 {
6701 h->save_res = 1;
6702 if (!h->elf.def_regular)
deb0e272 6703 {
a4b6fadd
AM
6704 h->elf.root.type = bfd_link_hash_defined;
6705 h->elf.root.u.def.section = htab->sfpr;
6706 h->elf.root.u.def.value = htab->sfpr->size;
6707 h->elf.type = STT_FUNC;
6708 h->elf.def_regular = 1;
b32547cd 6709 h->elf.non_elf = 0;
a4b6fadd
AM
6710 _bfd_elf_link_hash_hide_symbol (info, &h->elf, TRUE);
6711 writing = TRUE;
deb0e272 6712 if (htab->sfpr->contents == NULL)
a4b6fadd
AM
6713 {
6714 htab->sfpr->contents = bfd_alloc (htab->elf.dynobj, SFPR_MAX);
6715 if (htab->sfpr->contents == NULL)
6716 return FALSE;
6717 }
deb0e272
AM
6718 }
6719 }
6720 if (writing)
6721 {
6722 bfd_byte *p = htab->sfpr->contents + htab->sfpr->size;
6723 if (i != parm->hi)
6724 p = (*parm->write_ent) (htab->elf.dynobj, p, i);
6725 else
6726 p = (*parm->write_tail) (htab->elf.dynobj, p, i);
6727 htab->sfpr->size = p - htab->sfpr->contents;
6728 }
6729 }
6730
6731 return TRUE;
6732}
6733
6734static bfd_byte *
6735savegpr0 (bfd *abfd, bfd_byte *p, int r)
6736{
6737 bfd_put_32 (abfd, STD_R0_0R1 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6738 return p + 4;
6739}
6740
6741static bfd_byte *
6742savegpr0_tail (bfd *abfd, bfd_byte *p, int r)
6743{
6744 p = savegpr0 (abfd, p, r);
a078d95a 6745 bfd_put_32 (abfd, STD_R0_0R1 + STK_LR, p);
deb0e272
AM
6746 p = p + 4;
6747 bfd_put_32 (abfd, BLR, p);
6748 return p + 4;
6749}
6750
6751static bfd_byte *
6752restgpr0 (bfd *abfd, bfd_byte *p, int r)
6753{
6754 bfd_put_32 (abfd, LD_R0_0R1 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6755 return p + 4;
6756}
6757
6758static bfd_byte *
6759restgpr0_tail (bfd *abfd, bfd_byte *p, int r)
6760{
a078d95a 6761 bfd_put_32 (abfd, LD_R0_0R1 + STK_LR, p);
deb0e272
AM
6762 p = p + 4;
6763 p = restgpr0 (abfd, p, r);
6764 bfd_put_32 (abfd, MTLR_R0, p);
6765 p = p + 4;
6766 if (r == 29)
6767 {
6768 p = restgpr0 (abfd, p, 30);
6769 p = restgpr0 (abfd, p, 31);
6770 }
6771 bfd_put_32 (abfd, BLR, p);
6772 return p + 4;
6773}
6774
6775static bfd_byte *
6776savegpr1 (bfd *abfd, bfd_byte *p, int r)
6777{
6778 bfd_put_32 (abfd, STD_R0_0R12 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6779 return p + 4;
6780}
6781
6782static bfd_byte *
6783savegpr1_tail (bfd *abfd, bfd_byte *p, int r)
6784{
6785 p = savegpr1 (abfd, p, r);
6786 bfd_put_32 (abfd, BLR, p);
6787 return p + 4;
6788}
6789
6790static bfd_byte *
6791restgpr1 (bfd *abfd, bfd_byte *p, int r)
6792{
6793 bfd_put_32 (abfd, LD_R0_0R12 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6794 return p + 4;
6795}
6796
6797static bfd_byte *
6798restgpr1_tail (bfd *abfd, bfd_byte *p, int r)
6799{
6800 p = restgpr1 (abfd, p, r);
6801 bfd_put_32 (abfd, BLR, p);
6802 return p + 4;
6803}
6804
6805static bfd_byte *
6806savefpr (bfd *abfd, bfd_byte *p, int r)
6807{
6808 bfd_put_32 (abfd, STFD_FR0_0R1 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6809 return p + 4;
6810}
6811
6812static bfd_byte *
6813savefpr0_tail (bfd *abfd, bfd_byte *p, int r)
6814{
6815 p = savefpr (abfd, p, r);
a078d95a 6816 bfd_put_32 (abfd, STD_R0_0R1 + STK_LR, p);
deb0e272
AM
6817 p = p + 4;
6818 bfd_put_32 (abfd, BLR, p);
6819 return p + 4;
6820}
6821
6822static bfd_byte *
6823restfpr (bfd *abfd, bfd_byte *p, int r)
6824{
6825 bfd_put_32 (abfd, LFD_FR0_0R1 + (r << 21) + (1 << 16) - (32 - r) * 8, p);
6826 return p + 4;
6827}
6828
6829static bfd_byte *
6830restfpr0_tail (bfd *abfd, bfd_byte *p, int r)
6831{
a078d95a 6832 bfd_put_32 (abfd, LD_R0_0R1 + STK_LR, p);
deb0e272
AM
6833 p = p + 4;
6834 p = restfpr (abfd, p, r);
6835 bfd_put_32 (abfd, MTLR_R0, p);
6836 p = p + 4;
6837 if (r == 29)
6838 {
6839 p = restfpr (abfd, p, 30);
6840 p = restfpr (abfd, p, 31);
6841 }
6842 bfd_put_32 (abfd, BLR, p);
6843 return p + 4;
6844}
6845
6846static bfd_byte *
6847savefpr1_tail (bfd *abfd, bfd_byte *p, int r)
6848{
6849 p = savefpr (abfd, p, r);
6850 bfd_put_32 (abfd, BLR, p);
6851 return p + 4;
6852}
6853
6854static bfd_byte *
6855restfpr1_tail (bfd *abfd, bfd_byte *p, int r)
6856{
6857 p = restfpr (abfd, p, r);
6858 bfd_put_32 (abfd, BLR, p);
6859 return p + 4;
6860}
6861
6862static bfd_byte *
6863savevr (bfd *abfd, bfd_byte *p, int r)
6864{
6865 bfd_put_32 (abfd, LI_R12_0 + (1 << 16) - (32 - r) * 16, p);
6866 p = p + 4;
6867 bfd_put_32 (abfd, STVX_VR0_R12_R0 + (r << 21), p);
6868 return p + 4;
6869}
6870
6871static bfd_byte *
6872savevr_tail (bfd *abfd, bfd_byte *p, int r)
6873{
6874 p = savevr (abfd, p, r);
6875 bfd_put_32 (abfd, BLR, p);
6876 return p + 4;
6877}
6878
6879static bfd_byte *
6880restvr (bfd *abfd, bfd_byte *p, int r)
6881{
6882 bfd_put_32 (abfd, LI_R12_0 + (1 << 16) - (32 - r) * 16, p);
6883 p = p + 4;
6884 bfd_put_32 (abfd, LVX_VR0_R12_R0 + (r << 21), p);
6885 return p + 4;
6886}
6887
6888static bfd_byte *
6889restvr_tail (bfd *abfd, bfd_byte *p, int r)
6890{
6891 p = restvr (abfd, p, r);
6892 bfd_put_32 (abfd, BLR, p);
6893 return p + 4;
6894}
6895
e86ce104
AM
6896/* Called via elf_link_hash_traverse to transfer dynamic linking
6897 information on function code symbol entries to their corresponding
6898 function descriptor symbol entries. */
deb0e272 6899
b34976b6 6900static bfd_boolean
4ce794b7 6901func_desc_adjust (struct elf_link_hash_entry *h, void *inf)
5bd4f169 6902{
e86ce104 6903 struct bfd_link_info *info;
65f38f15 6904 struct ppc_link_hash_table *htab;
50bc7936
AM
6905 struct ppc_link_hash_entry *fh;
6906 struct ppc_link_hash_entry *fdh;
6907 bfd_boolean force_local;
5bd4f169 6908
50bc7936
AM
6909 fh = (struct ppc_link_hash_entry *) h;
6910 if (fh->elf.root.type == bfd_link_hash_indirect)
b34976b6 6911 return TRUE;
e86ce104 6912
8c5b4e52
AM
6913 if (!fh->is_func)
6914 return TRUE;
6915
6916 if (fh->elf.root.root.string[0] != '.'
6917 || fh->elf.root.root.string[1] == '\0')
6918 return TRUE;
6919
4ce794b7 6920 info = inf;
65f38f15 6921 htab = ppc_hash_table (info);
4dfe6ac6
NC
6922 if (htab == NULL)
6923 return FALSE;
5bd4f169 6924
8c5b4e52
AM
6925 /* Find the corresponding function descriptor symbol. */
6926 fdh = lookup_fdh (fh, htab);
6927
c09bdfe5
AM
6928 /* Resolve undefined references to dot-symbols as the value
6929 in the function descriptor, if we have one in a regular object.
6930 This is to satisfy cases like ".quad .foo". Calls to functions
6931 in dynamic objects are handled elsewhere. */
8c5b4e52
AM
6932 if ((fh->elf.root.type == bfd_link_hash_undefined
6933 || fh->elf.root.type == bfd_link_hash_undefweak)
6934 && (fdh->elf.root.type == bfd_link_hash_defined
6935 || fdh->elf.root.type == bfd_link_hash_defweak)
b31867b6
AM
6936 && get_opd_info (fdh->elf.root.u.def.section) != NULL
6937 && opd_entry_value (fdh->elf.root.u.def.section,
6938 fdh->elf.root.u.def.value,
c09bdfe5 6939 &fh->elf.root.u.def.section,
aef36ac1 6940 &fh->elf.root.u.def.value, FALSE) != (bfd_vma) -1)
c09bdfe5 6941 {
b31867b6 6942 fh->elf.root.type = fdh->elf.root.type;
f5385ebf 6943 fh->elf.forced_local = 1;
b31867b6
AM
6944 fh->elf.def_regular = fdh->elf.def_regular;
6945 fh->elf.def_dynamic = fdh->elf.def_dynamic;
c09bdfe5
AM
6946 }
6947
8c5b4e52
AM
6948 if (!fh->elf.dynamic)
6949 {
6950 struct plt_entry *ent;
5bd4f169 6951
8c5b4e52
AM
6952 for (ent = fh->elf.plt.plist; ent != NULL; ent = ent->next)
6953 if (ent->plt.refcount > 0)
6954 break;
6955 if (ent == NULL)
6956 return TRUE;
6957 }
5bd4f169 6958
8c5b4e52 6959 /* Create a descriptor as undefined if necessary. */
50bc7936 6960 if (fdh == NULL
0e1862bb 6961 && !bfd_link_executable (info)
50bc7936
AM
6962 && (fh->elf.root.type == bfd_link_hash_undefined
6963 || fh->elf.root.type == bfd_link_hash_undefweak))
6964 {
908b32fc 6965 fdh = make_fdh (info, fh);
bb700d78
AM
6966 if (fdh == NULL)
6967 return FALSE;
50bc7936 6968 }
648cca2c 6969
8c5b4e52 6970 /* We can't support overriding of symbols on a fake descriptor. */
908b32fc
AM
6971 if (fdh != NULL
6972 && fdh->fake
8c5b4e52
AM
6973 && (fh->elf.root.type == bfd_link_hash_defined
6974 || fh->elf.root.type == bfd_link_hash_defweak))
6975 _bfd_elf_link_hash_hide_symbol (info, &fdh->elf, TRUE);
908b32fc 6976
8c5b4e52
AM
6977 /* Transfer dynamic linking information to the function descriptor. */
6978 if (fdh != NULL)
6979 {
f5385ebf
AM
6980 fdh->elf.ref_regular |= fh->elf.ref_regular;
6981 fdh->elf.ref_dynamic |= fh->elf.ref_dynamic;
6982 fdh->elf.ref_regular_nonweak |= fh->elf.ref_regular_nonweak;
6983 fdh->elf.non_got_ref |= fh->elf.non_got_ref;
8c5b4e52
AM
6984 fdh->elf.dynamic |= fh->elf.dynamic;
6985 fdh->elf.needs_plt |= (fh->elf.needs_plt
6986 || fh->elf.type == STT_FUNC
6987 || fh->elf.type == STT_GNU_IFUNC);
6988 move_plt_plist (fh, fdh);
6989
6990 if (!fdh->elf.forced_local
6991 && fh->elf.dynindx != -1)
6992 if (!bfd_elf_link_record_dynamic_symbol (info, &fdh->elf))
6993 return FALSE;
e86ce104
AM
6994 }
6995
50bc7936
AM
6996 /* Now that the info is on the function descriptor, clear the
6997 function code sym info. Any function code syms for which we
6998 don't have a definition in a regular file, we force local.
6999 This prevents a shared library from exporting syms that have
7000 been imported from another library. Function code syms that
7001 are really in the library we must leave global to prevent the
7002 linker dragging in a definition from a static library. */
93f3fa99
AM
7003 force_local = (!fh->elf.def_regular
7004 || fdh == NULL
7005 || !fdh->elf.def_regular
7006 || fdh->elf.forced_local);
50bc7936
AM
7007 _bfd_elf_link_hash_hide_symbol (info, &fh->elf, force_local);
7008
b34976b6 7009 return TRUE;
e86ce104 7010}
40b8271b 7011
a4b6fadd
AM
7012static const struct sfpr_def_parms save_res_funcs[] =
7013 {
7014 { "_savegpr0_", 14, 31, savegpr0, savegpr0_tail },
7015 { "_restgpr0_", 14, 29, restgpr0, restgpr0_tail },
7016 { "_restgpr0_", 30, 31, restgpr0, restgpr0_tail },
7017 { "_savegpr1_", 14, 31, savegpr1, savegpr1_tail },
7018 { "_restgpr1_", 14, 31, restgpr1, restgpr1_tail },
7019 { "_savefpr_", 14, 31, savefpr, savefpr0_tail },
7020 { "_restfpr_", 14, 29, restfpr, restfpr0_tail },
7021 { "_restfpr_", 30, 31, restfpr, restfpr0_tail },
7022 { "._savef", 14, 31, savefpr, savefpr1_tail },
7023 { "._restf", 14, 31, restfpr, restfpr1_tail },
7024 { "_savevr_", 20, 31, savevr, savevr_tail },
7025 { "_restvr_", 20, 31, restvr, restvr_tail }
7026 };
7027
e86ce104 7028/* Called near the start of bfd_elf_size_dynamic_sections. We use
82bd7b59
AM
7029 this hook to a) provide some gcc support functions, and b) transfer
7030 dynamic linking information gathered so far on function code symbol
7031 entries, to their corresponding function descriptor symbol entries. */
deb0e272 7032
b34976b6 7033static bfd_boolean
4ce794b7
AM
7034ppc64_elf_func_desc_adjust (bfd *obfd ATTRIBUTE_UNUSED,
7035 struct bfd_link_info *info)
e86ce104
AM
7036{
7037 struct ppc_link_hash_table *htab;
7038
7039 htab = ppc_hash_table (info);
4dfe6ac6
NC
7040 if (htab == NULL)
7041 return FALSE;
7042
b32547cd
AM
7043 /* Provide any missing _save* and _rest* functions. */
7044 if (htab->sfpr != NULL)
7045 {
7046 unsigned int i;
7047
7048 htab->sfpr->size = 0;
7049 for (i = 0; i < ARRAY_SIZE (save_res_funcs); i++)
7050 if (!sfpr_define (info, &save_res_funcs[i], NULL))
7051 return FALSE;
7052 if (htab->sfpr->size == 0)
7053 htab->sfpr->flags |= SEC_EXCLUDE;
7054 }
7055
7056 if (bfd_link_relocatable (info))
7057 return TRUE;
7058
7059 if (htab->elf.hgot != NULL)
dba6fa9b
AM
7060 {
7061 _bfd_elf_link_hash_hide_symbol (info, htab->elf.hgot, TRUE);
7062 /* Make .TOC. defined so as to prevent it being made dynamic.
7063 The wrong value here is fixed later in ppc64_elf_set_toc. */
43417696
AM
7064 if (!htab->elf.hgot->def_regular
7065 || htab->elf.hgot->root.type != bfd_link_hash_defined)
7066 {
7067 htab->elf.hgot->root.type = bfd_link_hash_defined;
7068 htab->elf.hgot->root.u.def.value = 0;
7069 htab->elf.hgot->root.u.def.section = bfd_abs_section_ptr;
7070 htab->elf.hgot->def_regular = 1;
7071 htab->elf.hgot->root.linker_def = 1;
7072 }
dba6fa9b 7073 htab->elf.hgot->type = STT_OBJECT;
dba6fa9b
AM
7074 htab->elf.hgot->other = ((htab->elf.hgot->other & ~ELF_ST_VISIBILITY (-1))
7075 | STV_HIDDEN);
7076 }
c66bb0ee 7077
8c5b4e52
AM
7078 if (htab->need_func_desc_adj)
7079 {
7080 elf_link_hash_traverse (&htab->elf, func_desc_adjust, info);
7081 htab->need_func_desc_adj = 0;
7082 }
805fc799 7083
b34976b6 7084 return TRUE;
e86ce104
AM
7085}
7086
98bbb1b8 7087/* Find dynamic relocs for H that apply to read-only sections. */
a345bc8d 7088
98bbb1b8 7089static asection *
a345bc8d
AM
7090readonly_dynrelocs (struct elf_link_hash_entry *h)
7091{
7092 struct ppc_link_hash_entry *eh;
7093 struct elf_dyn_relocs *p;
7094
7095 eh = (struct ppc_link_hash_entry *) h;
7096 for (p = eh->dyn_relocs; p != NULL; p = p->next)
7097 {
7098 asection *s = p->sec->output_section;
7099
7100 if (s != NULL && (s->flags & SEC_READONLY) != 0)
98bbb1b8 7101 return p->sec;
a345bc8d 7102 }
98bbb1b8 7103 return NULL;
a345bc8d
AM
7104}
7105
d311bc8b
AM
7106/* Return true if we have dynamic relocs against H or any of its weak
7107 aliases, that apply to read-only sections. */
7108
7109static bfd_boolean
7110alias_readonly_dynrelocs (struct elf_link_hash_entry *h)
7111{
7112 struct ppc_link_hash_entry *eh;
7113
7114 eh = (struct ppc_link_hash_entry *) h;
7115 do
7116 {
7117 if (readonly_dynrelocs (&eh->elf))
7118 return TRUE;
7119 eh = eh->weakref;
7120 } while (eh != NULL && &eh->elf != h);
7121
7122 return FALSE;
7123}
8a2058b5 7124
8a9e8e72
AM
7125/* Return whether EH has pc-relative dynamic relocs. */
7126
7127static bfd_boolean
7128pc_dynrelocs (struct ppc_link_hash_entry *eh)
7129{
7130 struct elf_dyn_relocs *p;
7131
7132 for (p = eh->dyn_relocs; p != NULL; p = p->next)
7133 if (p->pc_count != 0)
7134 return TRUE;
7135 return FALSE;
7136}
7137
8a2058b5
AM
7138/* Return true if a global entry stub will be created for H. Valid
7139 for ELFv2 before plt entries have been allocated. */
7140
7141static bfd_boolean
7142global_entry_stub (struct elf_link_hash_entry *h)
7143{
7144 struct plt_entry *pent;
7145
7146 if (!h->pointer_equality_needed
7147 || h->def_regular)
7148 return FALSE;
7149
7150 for (pent = h->plt.plist; pent != NULL; pent = pent->next)
7151 if (pent->plt.refcount > 0
7152 && pent->addend == 0)
7153 return TRUE;
7154
7155 return FALSE;
7156}
7157
e86ce104
AM
7158/* Adjust a symbol defined by a dynamic object and referenced by a
7159 regular object. The current definition is in some section of the
7160 dynamic object, but we're not including those sections. We have to
7161 change the definition to something the rest of the link can
7162 understand. */
7163
b34976b6 7164static bfd_boolean
4ce794b7
AM
7165ppc64_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
7166 struct elf_link_hash_entry *h)
e86ce104
AM
7167{
7168 struct ppc_link_hash_table *htab;
5474d94f 7169 asection *s, *srel;
e86ce104
AM
7170
7171 htab = ppc_hash_table (info);
4dfe6ac6
NC
7172 if (htab == NULL)
7173 return FALSE;
e86ce104
AM
7174
7175 /* Deal with function syms. */
7176 if (h->type == STT_FUNC
e054468f 7177 || h->type == STT_GNU_IFUNC
f5385ebf 7178 || h->needs_plt)
e86ce104
AM
7179 {
7180 /* Clear procedure linkage table information for any symbol that
7181 won't need a .plt entry. */
411e1bfb
AM
7182 struct plt_entry *ent;
7183 for (ent = h->plt.plist; ent != NULL; ent = ent->next)
7184 if (ent->plt.refcount > 0)
7185 break;
8387904d 7186 if (ent == NULL
e054468f
AM
7187 || (h->type != STT_GNU_IFUNC
7188 && (SYMBOL_CALLS_LOCAL (info, h)
21d68fcd 7189 || UNDEFWEAK_NO_DYNAMIC_RELOC (info, h)))
a4b6fadd 7190 || ((struct ppc_link_hash_entry *) h)->save_res)
40b8271b 7191 {
411e1bfb 7192 h->plt.plist = NULL;
f5385ebf 7193 h->needs_plt = 0;
d1eca1e4 7194 h->pointer_equality_needed = 0;
3988aed5
AM
7195 /* After adjust_dynamic_symbol, non_got_ref set in the
7196 non-pic case means that dyn_relocs for this symbol should
7197 be discarded. We either want the symbol to remain
7198 undefined, or we have a local definition of some sort.
7199 The "local definition" for non-function symbols may be
7200 due to creating a local definition in .dynbss, and for
7201 ELFv2 function symbols, defining the symbol on the PLT
7202 call stub code. Set non_got_ref here to ensure undef
7203 weaks stay undefined. */
7204 h->non_got_ref = 1;
40b8271b 7205 }
8a2058b5 7206 else if (abiversion (info->output_bfd) >= 2)
a345bc8d 7207 {
d1eca1e4
AM
7208 /* Taking a function's address in a read/write section
7209 doesn't require us to define the function symbol in the
7210 executable on a global entry stub. A dynamic reloc can
8a2058b5
AM
7211 be used instead. The reason we prefer a few more dynamic
7212 relocs is that calling via a global entry stub costs a
7213 few more instructions, and pointer_equality_needed causes
7214 extra work in ld.so when resolving these symbols. */
7215 if (global_entry_stub (h)
d311bc8b 7216 && !alias_readonly_dynrelocs (h))
d1eca1e4
AM
7217 {
7218 h->pointer_equality_needed = 0;
3988aed5 7219 /* Say that we do want dynamic relocs. */
d1eca1e4 7220 h->non_got_ref = 0;
3988aed5
AM
7221 /* If we haven't seen a branch reloc then we don't need
7222 a plt entry. */
7223 if (!h->needs_plt)
7224 h->plt.plist = NULL;
d1eca1e4
AM
7225 }
7226
3988aed5
AM
7227 /* ELFv2 function symbols can't have copy relocs. */
7228 return TRUE;
7229 }
7230 else if (!h->needs_plt
7231 && !alias_readonly_dynrelocs (h))
7232 {
7233 /* If we haven't seen a branch reloc then we don't need a
7234 plt entry. */
7235 h->plt.plist = NULL;
7236 h->pointer_equality_needed = 0;
7237 h->non_got_ref = 0;
a345bc8d
AM
7238 return TRUE;
7239 }
5bd4f169 7240 }
bbd7ec4a 7241 else
411e1bfb 7242 h->plt.plist = NULL;
5bd4f169
AM
7243
7244 /* If this is a weak symbol, and there is a real definition, the
7245 processor independent code will have arranged for us to see the
7246 real definition first, and we can just use the same value. */
f6e332e6 7247 if (h->u.weakdef != NULL)
5bd4f169 7248 {
f6e332e6
AM
7249 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
7250 || h->u.weakdef->root.type == bfd_link_hash_defweak);
7251 h->root.u.def.section = h->u.weakdef->root.u.def.section;
7252 h->root.u.def.value = h->u.weakdef->root.u.def.value;
a23b6845 7253 if (ELIMINATE_COPY_RELOCS)
f6e332e6 7254 h->non_got_ref = h->u.weakdef->non_got_ref;
b34976b6 7255 return TRUE;
5bd4f169
AM
7256 }
7257
5bd4f169
AM
7258 /* If we are creating a shared library, we must presume that the
7259 only references to the symbol are via the global offset table.
7260 For such cases we need not do anything here; the relocations will
7261 be handled correctly by relocate_section. */
0e1862bb 7262 if (bfd_link_pic (info))
b34976b6 7263 return TRUE;
5bd4f169 7264
65f38f15
AM
7265 /* If there are no references to this symbol that do not use the
7266 GOT, we don't need to generate a copy reloc. */
f5385ebf 7267 if (!h->non_got_ref)
b34976b6 7268 return TRUE;
65f38f15 7269
b186458a 7270 /* Don't generate a copy reloc for symbols defined in the executable. */
d93d1c80 7271 if (!h->def_dynamic || !h->ref_regular || h->def_regular
b186458a 7272
d93d1c80
AM
7273 /* If -z nocopyreloc was given, don't generate them either. */
7274 || info->nocopyreloc
a127494f 7275
d93d1c80
AM
7276 /* If we didn't find any dynamic relocs in read-only sections, then
7277 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
d311bc8b 7278 || (ELIMINATE_COPY_RELOCS && !alias_readonly_dynrelocs (h))
65f38f15 7279
d93d1c80
AM
7280 /* Protected variables do not work with .dynbss. The copy in
7281 .dynbss won't be used by the shared library with the protected
7282 definition for the variable. Text relocations are preferable
7283 to an incorrect program. */
7284 || h->protected_def)
a127494f
AM
7285 {
7286 h->non_got_ref = 0;
7287 return TRUE;
7288 }
7289
5d35169e 7290 if (h->plt.plist != NULL)
97b639ba
AM
7291 {
7292 /* We should never get here, but unfortunately there are versions
7293 of gcc out there that improperly (for this ABI) put initialized
7294 function pointers, vtable refs and suchlike in read-only
7295 sections. Allow them to proceed, but warn that this might
7296 break at runtime. */
25f53a85 7297 info->callbacks->einfo
bc30df16 7298 (_("%P: copy reloc against `%T' requires lazy plt linking; "
25f53a85 7299 "avoid setting LD_BIND_NOW=1 or upgrade gcc\n"),
97b639ba
AM
7300 h->root.root.string);
7301 }
5d35169e
AM
7302
7303 /* This is a reference to a symbol defined by a dynamic object which
7304 is not a function. */
7305
5bd4f169
AM
7306 /* We must allocate the symbol in our .dynbss section, which will
7307 become part of the .bss section of the executable. There will be
7308 an entry for this symbol in the .dynsym section. The dynamic
7309 object will contain position independent code, so all references
7310 from the dynamic object to this symbol will go through the global
7311 offset table. The dynamic linker will use the .dynsym entry to
7312 determine the address it must put in the global offset table, so
7313 both the dynamic object and the regular object will refer to the
7314 same memory location for the variable. */
5bd4f169 7315
04c9666a
AM
7316 /* We must generate a R_PPC64_COPY reloc to tell the dynamic linker
7317 to copy the initial value out of the dynamic object and into the
5bd4f169
AM
7318 runtime process image. We need to remember the offset into the
7319 .rela.bss section we are going to use. */
5474d94f
AM
7320 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
7321 {
7322 s = htab->elf.sdynrelro;
7323 srel = htab->elf.sreldynrelro;
7324 }
7325 else
7326 {
7327 s = htab->elf.sdynbss;
7328 srel = htab->elf.srelbss;
7329 }
1d7e9d18 7330 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
5bd4f169 7331 {
5474d94f 7332 srel->size += sizeof (Elf64_External_Rela);
f5385ebf 7333 h->needs_copy = 1;
5bd4f169
AM
7334 }
7335
6cabe1ea 7336 return _bfd_elf_adjust_dynamic_copy (info, h, s);
5bd4f169
AM
7337}
7338
e86ce104
AM
7339/* If given a function descriptor symbol, hide both the function code
7340 sym and the descriptor. */
7341static void
4ce794b7
AM
7342ppc64_elf_hide_symbol (struct bfd_link_info *info,
7343 struct elf_link_hash_entry *h,
7344 bfd_boolean force_local)
e86ce104 7345{
34814b9f 7346 struct ppc_link_hash_entry *eh;
e86ce104
AM
7347 _bfd_elf_link_hash_hide_symbol (info, h, force_local);
7348
34814b9f
AM
7349 eh = (struct ppc_link_hash_entry *) h;
7350 if (eh->is_func_descriptor)
e86ce104 7351 {
34814b9f 7352 struct ppc_link_hash_entry *fh = eh->oh;
e86ce104 7353
721956f4 7354 if (fh == NULL)
d1329ca3
AM
7355 {
7356 const char *p, *q;
b8ac2841 7357 struct elf_link_hash_table *htab = elf_hash_table (info);
d1329ca3
AM
7358 char save;
7359
7360 /* We aren't supposed to use alloca in BFD because on
7361 systems which do not have alloca the version in libiberty
7362 calls xmalloc, which might cause the program to crash
7363 when it runs out of memory. This function doesn't have a
7364 return status, so there's no way to gracefully return an
7365 error. So cheat. We know that string[-1] can be safely
34814b9f
AM
7366 accessed; It's either a string in an ELF string table,
7367 or allocated in an objalloc structure. */
d1329ca3 7368
34814b9f 7369 p = eh->elf.root.root.string - 1;
d1329ca3
AM
7370 save = *p;
7371 *(char *) p = '.';
34814b9f 7372 fh = (struct ppc_link_hash_entry *)
b8ac2841 7373 elf_link_hash_lookup (htab, p, FALSE, FALSE, FALSE);
d1329ca3
AM
7374 *(char *) p = save;
7375
7376 /* Unfortunately, if it so happens that the string we were
7377 looking for was allocated immediately before this string,
7378 then we overwrote the string terminator. That's the only
7379 reason the lookup should fail. */
7380 if (fh == NULL)
7381 {
34814b9f
AM
7382 q = eh->elf.root.root.string + strlen (eh->elf.root.root.string);
7383 while (q >= eh->elf.root.root.string && *q == *p)
d1329ca3 7384 --q, --p;
34814b9f
AM
7385 if (q < eh->elf.root.root.string && *p == '.')
7386 fh = (struct ppc_link_hash_entry *)
b8ac2841 7387 elf_link_hash_lookup (htab, p, FALSE, FALSE, FALSE);
d1329ca3
AM
7388 }
7389 if (fh != NULL)
7390 {
34814b9f
AM
7391 eh->oh = fh;
7392 fh->oh = eh;
d1329ca3
AM
7393 }
7394 }
e86ce104 7395 if (fh != NULL)
34814b9f 7396 _bfd_elf_link_hash_hide_symbol (info, &fh->elf, force_local);
e86ce104
AM
7397 }
7398}
7399
411e1bfb 7400static bfd_boolean
8843416a
AM
7401get_sym_h (struct elf_link_hash_entry **hp,
7402 Elf_Internal_Sym **symp,
7403 asection **symsecp,
f961d9dd 7404 unsigned char **tls_maskp,
8843416a
AM
7405 Elf_Internal_Sym **locsymsp,
7406 unsigned long r_symndx,
7407 bfd *ibfd)
411e1bfb 7408{
0ffa91dd 7409 Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
411e1bfb
AM
7410
7411 if (r_symndx >= symtab_hdr->sh_info)
7412 {
7413 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
7414 struct elf_link_hash_entry *h;
7415
7416 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
b31867b6 7417 h = elf_follow_link (h);
411e1bfb
AM
7418
7419 if (hp != NULL)
7420 *hp = h;
7421
7422 if (symp != NULL)
7423 *symp = NULL;
7424
7425 if (symsecp != NULL)
7426 {
7427 asection *symsec = NULL;
7428 if (h->root.type == bfd_link_hash_defined
7429 || h->root.type == bfd_link_hash_defweak)
7430 symsec = h->root.u.def.section;
7431 *symsecp = symsec;
7432 }
7433
e7b938ca 7434 if (tls_maskp != NULL)
411e1bfb
AM
7435 {
7436 struct ppc_link_hash_entry *eh;
7437
7438 eh = (struct ppc_link_hash_entry *) h;
e7b938ca 7439 *tls_maskp = &eh->tls_mask;
411e1bfb
AM
7440 }
7441 }
7442 else
7443 {
7444 Elf_Internal_Sym *sym;
7445 Elf_Internal_Sym *locsyms = *locsymsp;
7446
7447 if (locsyms == NULL)
7448 {
7449 locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
7450 if (locsyms == NULL)
7451 locsyms = bfd_elf_get_elf_syms (ibfd, symtab_hdr,
7452 symtab_hdr->sh_info,
7453 0, NULL, NULL, NULL);
7454 if (locsyms == NULL)
7455 return FALSE;
7456 *locsymsp = locsyms;
7457 }
7458 sym = locsyms + r_symndx;
7459
7460 if (hp != NULL)
7461 *hp = NULL;
7462
7463 if (symp != NULL)
7464 *symp = sym;
7465
7466 if (symsecp != NULL)
cb33740c 7467 *symsecp = bfd_section_from_elf_index (ibfd, sym->st_shndx);
411e1bfb 7468
e7b938ca 7469 if (tls_maskp != NULL)
411e1bfb
AM
7470 {
7471 struct got_entry **lgot_ents;
f961d9dd 7472 unsigned char *tls_mask;
411e1bfb 7473
e7b938ca 7474 tls_mask = NULL;
411e1bfb
AM
7475 lgot_ents = elf_local_got_ents (ibfd);
7476 if (lgot_ents != NULL)
7477 {
e054468f
AM
7478 struct plt_entry **local_plt = (struct plt_entry **)
7479 (lgot_ents + symtab_hdr->sh_info);
f961d9dd 7480 unsigned char *lgot_masks = (unsigned char *)
e054468f 7481 (local_plt + symtab_hdr->sh_info);
e7b938ca 7482 tls_mask = &lgot_masks[r_symndx];
411e1bfb 7483 }
e7b938ca 7484 *tls_maskp = tls_mask;
411e1bfb
AM
7485 }
7486 }
7487 return TRUE;
7488}
7489
e7b938ca 7490/* Returns TLS_MASKP for the given REL symbol. Function return is 0 on
951fd09b 7491 error, 2 on a toc GD type suitable for optimization, 3 on a toc LD
ad8e1ba5 7492 type suitable for optimization, and 1 otherwise. */
951fd09b
AM
7493
7494static int
f961d9dd 7495get_tls_mask (unsigned char **tls_maskp,
3a71aa26
AM
7496 unsigned long *toc_symndx,
7497 bfd_vma *toc_addend,
0d4792f7 7498 Elf_Internal_Sym **locsymsp,
3a71aa26
AM
7499 const Elf_Internal_Rela *rel,
7500 bfd *ibfd)
411e1bfb
AM
7501{
7502 unsigned long r_symndx;
0d4792f7 7503 int next_r;
411e1bfb
AM
7504 struct elf_link_hash_entry *h;
7505 Elf_Internal_Sym *sym;
7506 asection *sec;
7507 bfd_vma off;
7508
7509 r_symndx = ELF64_R_SYM (rel->r_info);
e7b938ca 7510 if (!get_sym_h (&h, &sym, &sec, tls_maskp, locsymsp, r_symndx, ibfd))
951fd09b 7511 return 0;
411e1bfb 7512
e7b938ca 7513 if ((*tls_maskp != NULL && **tls_maskp != 0)
411e1bfb 7514 || sec == NULL
6bee8834 7515 || ppc64_elf_section_data (sec) == NULL
7c8fe5c4 7516 || ppc64_elf_section_data (sec)->sec_type != sec_toc)
951fd09b 7517 return 1;
411e1bfb
AM
7518
7519 /* Look inside a TOC section too. */
7520 if (h != NULL)
7521 {
7522 BFD_ASSERT (h->root.type == bfd_link_hash_defined);
7523 off = h->root.u.def.value;
7524 }
7525 else
7526 off = sym->st_value;
7527 off += rel->r_addend;
7528 BFD_ASSERT (off % 8 == 0);
3a71aa26
AM
7529 r_symndx = ppc64_elf_section_data (sec)->u.toc.symndx[off / 8];
7530 next_r = ppc64_elf_section_data (sec)->u.toc.symndx[off / 8 + 1];
0d4792f7
AM
7531 if (toc_symndx != NULL)
7532 *toc_symndx = r_symndx;
3a71aa26
AM
7533 if (toc_addend != NULL)
7534 *toc_addend = ppc64_elf_section_data (sec)->u.toc.add[off / 8];
7535 if (!get_sym_h (&h, &sym, &sec, tls_maskp, locsymsp, r_symndx, ibfd))
7536 return 0;
854b41e7 7537 if ((h == NULL || is_static_defined (h))
0d4792f7
AM
7538 && (next_r == -1 || next_r == -2))
7539 return 1 - next_r;
951fd09b 7540 return 1;
411e1bfb
AM
7541}
7542
3b421ab3
AM
7543/* Find (or create) an entry in the tocsave hash table. */
7544
7545static struct tocsave_entry *
7546tocsave_find (struct ppc_link_hash_table *htab,
7547 enum insert_option insert,
7548 Elf_Internal_Sym **local_syms,
7549 const Elf_Internal_Rela *irela,
7550 bfd *ibfd)
7551{
7552 unsigned long r_indx;
7553 struct elf_link_hash_entry *h;
7554 Elf_Internal_Sym *sym;
7555 struct tocsave_entry ent, *p;
7556 hashval_t hash;
7557 struct tocsave_entry **slot;
7558
7559 r_indx = ELF64_R_SYM (irela->r_info);
7560 if (!get_sym_h (&h, &sym, &ent.sec, NULL, local_syms, r_indx, ibfd))
7561 return NULL;
7562 if (ent.sec == NULL || ent.sec->output_section == NULL)
7563 {
4eca0228 7564 _bfd_error_handler
10463f39 7565 (_("%B: undefined symbol on R_PPC64_TOCSAVE relocation"), ibfd);
3b421ab3
AM
7566 return NULL;
7567 }
7568
7569 if (h != NULL)
7570 ent.offset = h->root.u.def.value;
7571 else
7572 ent.offset = sym->st_value;
7573 ent.offset += irela->r_addend;
7574
7575 hash = tocsave_htab_hash (&ent);
7576 slot = ((struct tocsave_entry **)
7577 htab_find_slot_with_hash (htab->tocsave_htab, &ent, hash, insert));
7578 if (slot == NULL)
7579 return NULL;
7580
7581 if (*slot == NULL)
7582 {
7583 p = (struct tocsave_entry *) bfd_alloc (ibfd, sizeof (*p));
7584 if (p == NULL)
7585 return NULL;
7586 *p = ent;
7587 *slot = p;
7588 }
7589 return *slot;
7590}
7591
754021d0 7592/* Adjust all global syms defined in opd sections. In gcc generated
8387904d 7593 code for the old ABI, these will already have been done. */
754021d0
AM
7594
7595static bfd_boolean
7596adjust_opd_syms (struct elf_link_hash_entry *h, void *inf ATTRIBUTE_UNUSED)
7597{
7598 struct ppc_link_hash_entry *eh;
7599 asection *sym_sec;
74f0fb50 7600 struct _opd_sec_data *opd;
754021d0
AM
7601
7602 if (h->root.type == bfd_link_hash_indirect)
7603 return TRUE;
7604
754021d0
AM
7605 if (h->root.type != bfd_link_hash_defined
7606 && h->root.type != bfd_link_hash_defweak)
7607 return TRUE;
7608
7609 eh = (struct ppc_link_hash_entry *) h;
7610 if (eh->adjust_done)
7611 return TRUE;
7612
7613 sym_sec = eh->elf.root.u.def.section;
74f0fb50
AM
7614 opd = get_opd_info (sym_sec);
7615 if (opd != NULL && opd->adjust != NULL)
754021d0 7616 {
51aecdc5 7617 long adjust = opd->adjust[OPD_NDX (eh->elf.root.u.def.value)];
4025353c
AM
7618 if (adjust == -1)
7619 {
7620 /* This entry has been deleted. */
b3fac117 7621 asection *dsec = ppc64_elf_tdata (sym_sec->owner)->deleted_section;
81688140
AM
7622 if (dsec == NULL)
7623 {
7624 for (dsec = sym_sec->owner->sections; dsec; dsec = dsec->next)
dbaa2011 7625 if (discarded_section (dsec))
81688140 7626 {
b3fac117 7627 ppc64_elf_tdata (sym_sec->owner)->deleted_section = dsec;
81688140
AM
7628 break;
7629 }
7630 }
4025353c 7631 eh->elf.root.u.def.value = 0;
81688140 7632 eh->elf.root.u.def.section = dsec;
4025353c
AM
7633 }
7634 else
7635 eh->elf.root.u.def.value += adjust;
754021d0
AM
7636 eh->adjust_done = 1;
7637 }
7638 return TRUE;
7639}
7640
8c1d1bb8 7641/* Handles decrementing dynamic reloc counts for the reloc specified by
19e08130 7642 R_INFO in section SEC. If LOCAL_SYMS is NULL, then H and SYM
8c1d1bb8
AM
7643 have already been determined. */
7644
7645static bfd_boolean
7646dec_dynrel_count (bfd_vma r_info,
7647 asection *sec,
7648 struct bfd_link_info *info,
7649 Elf_Internal_Sym **local_syms,
7650 struct elf_link_hash_entry *h,
19e08130 7651 Elf_Internal_Sym *sym)
8c1d1bb8
AM
7652{
7653 enum elf_ppc64_reloc_type r_type;
19e08130 7654 asection *sym_sec = NULL;
8c1d1bb8
AM
7655
7656 /* Can this reloc be dynamic? This switch, and later tests here
7657 should be kept in sync with the code in check_relocs. */
7658 r_type = ELF64_R_TYPE (r_info);
7659 switch (r_type)
7660 {
7661 default:
7662 return TRUE;
7663
7664 case R_PPC64_TPREL16:
7665 case R_PPC64_TPREL16_LO:
7666 case R_PPC64_TPREL16_HI:
7667 case R_PPC64_TPREL16_HA:
7668 case R_PPC64_TPREL16_DS:
7669 case R_PPC64_TPREL16_LO_DS:
f9c6b907
AM
7670 case R_PPC64_TPREL16_HIGH:
7671 case R_PPC64_TPREL16_HIGHA:
8c1d1bb8
AM
7672 case R_PPC64_TPREL16_HIGHER:
7673 case R_PPC64_TPREL16_HIGHERA:
7674 case R_PPC64_TPREL16_HIGHEST:
7675 case R_PPC64_TPREL16_HIGHESTA:
8c1d1bb8
AM
7676 case R_PPC64_TPREL64:
7677 case R_PPC64_DTPMOD64:
7678 case R_PPC64_DTPREL64:
7679 case R_PPC64_ADDR64:
7680 case R_PPC64_REL30:
7681 case R_PPC64_REL32:
7682 case R_PPC64_REL64:
7683 case R_PPC64_ADDR14:
7684 case R_PPC64_ADDR14_BRNTAKEN:
7685 case R_PPC64_ADDR14_BRTAKEN:
7686 case R_PPC64_ADDR16:
7687 case R_PPC64_ADDR16_DS:
7688 case R_PPC64_ADDR16_HA:
7689 case R_PPC64_ADDR16_HI:
f9c6b907
AM
7690 case R_PPC64_ADDR16_HIGH:
7691 case R_PPC64_ADDR16_HIGHA:
8c1d1bb8
AM
7692 case R_PPC64_ADDR16_HIGHER:
7693 case R_PPC64_ADDR16_HIGHERA:
7694 case R_PPC64_ADDR16_HIGHEST:
7695 case R_PPC64_ADDR16_HIGHESTA:
7696 case R_PPC64_ADDR16_LO:
7697 case R_PPC64_ADDR16_LO_DS:
7698 case R_PPC64_ADDR24:
7699 case R_PPC64_ADDR32:
7700 case R_PPC64_UADDR16:
7701 case R_PPC64_UADDR32:
7702 case R_PPC64_UADDR64:
7703 case R_PPC64_TOC:
7704 break;
7705 }
7706
7707 if (local_syms != NULL)
7708 {
7709 unsigned long r_symndx;
8c1d1bb8
AM
7710 bfd *ibfd = sec->owner;
7711
7712 r_symndx = ELF64_R_SYM (r_info);
7713 if (!get_sym_h (&h, &sym, &sym_sec, NULL, local_syms, r_symndx, ibfd))
7714 return FALSE;
7715 }
7716
0e1862bb 7717 if ((bfd_link_pic (info)
1d483afe 7718 && (must_be_dyn_reloc (info, r_type)
8c1d1bb8 7719 || (h != NULL
198f1157 7720 && (!SYMBOLIC_BIND (info, h)
8c1d1bb8
AM
7721 || h->root.type == bfd_link_hash_defweak
7722 || !h->def_regular))))
7723 || (ELIMINATE_COPY_RELOCS
0e1862bb 7724 && !bfd_link_pic (info)
8c1d1bb8
AM
7725 && h != NULL
7726 && (h->root.type == bfd_link_hash_defweak
7727 || !h->def_regular)))
7728 ;
7729 else
7730 return TRUE;
7731
7732 if (h != NULL)
6edfbbad 7733 {
19e08130
AM
7734 struct elf_dyn_relocs *p;
7735 struct elf_dyn_relocs **pp;
7736 pp = &((struct ppc_link_hash_entry *) h)->dyn_relocs;
7737
7738 /* elf_gc_sweep may have already removed all dyn relocs associated
7739 with local syms for a given section. Also, symbol flags are
7740 changed by elf_gc_sweep_symbol, confusing the test above. Don't
7741 report a dynreloc miscount. */
7742 if (*pp == NULL && info->gc_sections)
7743 return TRUE;
7744
7745 while ((p = *pp) != NULL)
60124e18 7746 {
19e08130
AM
7747 if (p->sec == sec)
7748 {
7749 if (!must_be_dyn_reloc (info, r_type))
7750 p->pc_count -= 1;
7751 p->count -= 1;
7752 if (p->count == 0)
7753 *pp = p->next;
7754 return TRUE;
7755 }
7756 pp = &p->next;
60124e18 7757 }
6edfbbad 7758 }
19e08130
AM
7759 else
7760 {
7761 struct ppc_dyn_relocs *p;
7762 struct ppc_dyn_relocs **pp;
7763 void *vpp;
7764 bfd_boolean is_ifunc;
8c1d1bb8 7765
19e08130
AM
7766 if (local_syms == NULL)
7767 sym_sec = bfd_section_from_elf_index (sec->owner, sym->st_shndx);
7768 if (sym_sec == NULL)
7769 sym_sec = sec;
c57da1a7 7770
19e08130
AM
7771 vpp = &elf_section_data (sym_sec)->local_dynrel;
7772 pp = (struct ppc_dyn_relocs **) vpp;
7773
7774 if (*pp == NULL && info->gc_sections)
7775 return TRUE;
7776
7777 is_ifunc = ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC;
7778 while ((p = *pp) != NULL)
8c1d1bb8 7779 {
19e08130
AM
7780 if (p->sec == sec && p->ifunc == is_ifunc)
7781 {
7782 p->count -= 1;
7783 if (p->count == 0)
7784 *pp = p->next;
7785 return TRUE;
7786 }
7787 pp = &p->next;
8c1d1bb8 7788 }
8c1d1bb8
AM
7789 }
7790
695344c0 7791 /* xgettext:c-format */
8de848d8 7792 info->callbacks->einfo (_("%P: dynreloc miscount for %B, section %A\n"),
25f53a85 7793 sec->owner, sec);
8c1d1bb8
AM
7794 bfd_set_error (bfd_error_bad_value);
7795 return FALSE;
7796}
7797
754021d0
AM
7798/* Remove unused Official Procedure Descriptor entries. Currently we
7799 only remove those associated with functions in discarded link-once
7800 sections, or weakly defined functions that have been overridden. It
7801 would be possible to remove many more entries for statically linked
7802 applications. */
7803
b34976b6 7804bfd_boolean
e7d1c40c 7805ppc64_elf_edit_opd (struct bfd_link_info *info)
1e2f5b6e
AM
7806{
7807 bfd *ibfd;
754021d0 7808 bfd_boolean some_edited = FALSE;
3f764659 7809 asection *need_pad = NULL;
e7d1c40c
AM
7810 struct ppc_link_hash_table *htab;
7811
7812 htab = ppc_hash_table (info);
7813 if (htab == NULL)
7814 return FALSE;
1e2f5b6e 7815
c72f2fb2 7816 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
1e2f5b6e
AM
7817 {
7818 asection *sec;
7819 Elf_Internal_Rela *relstart, *rel, *relend;
7820 Elf_Internal_Shdr *symtab_hdr;
6cdc0ccc 7821 Elf_Internal_Sym *local_syms;
74f0fb50 7822 struct _opd_sec_data *opd;
51aecdc5 7823 bfd_boolean need_edit, add_aux_fields, broken;
3f764659 7824 bfd_size_type cnt_16b = 0;
1e2f5b6e 7825
854b41e7
AM
7826 if (!is_ppc64_elf (ibfd))
7827 continue;
7828
1e2f5b6e 7829 sec = bfd_get_section_by_name (ibfd, ".opd");
46de2a7c 7830 if (sec == NULL || sec->size == 0)
1e2f5b6e
AM
7831 continue;
7832
dbaa2011 7833 if (sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
4b85d634
AM
7834 continue;
7835
1e2f5b6e
AM
7836 if (sec->output_section == bfd_abs_section_ptr)
7837 continue;
7838
7839 /* Look through the section relocs. */
7840 if ((sec->flags & SEC_RELOC) == 0 || sec->reloc_count == 0)
7841 continue;
7842
6cdc0ccc 7843 local_syms = NULL;
0ffa91dd 7844 symtab_hdr = &elf_symtab_hdr (ibfd);
1e2f5b6e
AM
7845
7846 /* Read the relocations. */
4ce794b7 7847 relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
45d6a902 7848 info->keep_memory);
1e2f5b6e 7849 if (relstart == NULL)
b34976b6 7850 return FALSE;
1e2f5b6e
AM
7851
7852 /* First run through the relocs to check they are sane, and to
7853 determine whether we need to edit this opd section. */
b34976b6 7854 need_edit = FALSE;
51aecdc5 7855 broken = FALSE;
3f764659 7856 need_pad = sec;
1e2f5b6e 7857 relend = relstart + sec->reloc_count;
50bc7936 7858 for (rel = relstart; rel < relend; )
1e2f5b6e 7859 {
04c9666a 7860 enum elf_ppc64_reloc_type r_type;
1e2f5b6e
AM
7861 unsigned long r_symndx;
7862 asection *sym_sec;
7863 struct elf_link_hash_entry *h;
7864 Elf_Internal_Sym *sym;
51aecdc5 7865 bfd_vma offset;
1e2f5b6e 7866
51aecdc5 7867 /* .opd contains an array of 16 or 24 byte entries. We're
1e2f5b6e
AM
7868 only interested in the reloc pointing to a function entry
7869 point. */
51aecdc5
AM
7870 offset = rel->r_offset;
7871 if (rel + 1 == relend
7872 || rel[1].r_offset != offset + 8)
1e2f5b6e
AM
7873 {
7874 /* If someone messes with .opd alignment then after a
7875 "ld -r" we might have padding in the middle of .opd.
7876 Also, there's nothing to prevent someone putting
7877 something silly in .opd with the assembler. No .opd
b34976b6 7878 optimization for them! */
3f764659 7879 broken_opd:
4eca0228 7880 _bfd_error_handler
d003868e 7881 (_("%B: .opd is not a regular array of opd entries"), ibfd);
51aecdc5 7882 broken = TRUE;
1e2f5b6e
AM
7883 break;
7884 }
7885
50bc7936
AM
7886 if ((r_type = ELF64_R_TYPE (rel->r_info)) != R_PPC64_ADDR64
7887 || (r_type = ELF64_R_TYPE ((rel + 1)->r_info)) != R_PPC64_TOC)
7888 {
4eca0228 7889 _bfd_error_handler
695344c0 7890 /* xgettext:c-format */
d003868e
AM
7891 (_("%B: unexpected reloc type %u in .opd section"),
7892 ibfd, r_type);
51aecdc5 7893 broken = TRUE;
50bc7936
AM
7894 break;
7895 }
7896
1e2f5b6e 7897 r_symndx = ELF64_R_SYM (rel->r_info);
411e1bfb
AM
7898 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
7899 r_symndx, ibfd))
50bc7936 7900 goto error_ret;
1e2f5b6e
AM
7901
7902 if (sym_sec == NULL || sym_sec->owner == NULL)
7903 {
411e1bfb
AM
7904 const char *sym_name;
7905 if (h != NULL)
7906 sym_name = h->root.root.string;
7907 else
26c61ae5
L
7908 sym_name = bfd_elf_sym_name (ibfd, symtab_hdr, sym,
7909 sym_sec);
411e1bfb 7910
4eca0228 7911 _bfd_error_handler
695344c0 7912 /* xgettext:c-format */
d003868e
AM
7913 (_("%B: undefined sym `%s' in .opd section"),
7914 ibfd, sym_name);
51aecdc5 7915 broken = TRUE;
1e2f5b6e
AM
7916 break;
7917 }
7918
51020317
AM
7919 /* opd entries are always for functions defined in the
7920 current input bfd. If the symbol isn't defined in the
7921 input bfd, then we won't be using the function in this
7922 bfd; It must be defined in a linkonce section in another
7923 bfd, or is weak. It's also possible that we are
7924 discarding the function due to a linker script /DISCARD/,
7925 which we test for via the output_section. */
7926 if (sym_sec->owner != ibfd
7927 || sym_sec->output_section == bfd_abs_section_ptr)
b34976b6 7928 need_edit = TRUE;
1e2f5b6e 7929
50bc7936 7930 rel += 2;
51aecdc5
AM
7931 if (rel + 1 == relend
7932 || (rel + 2 < relend
7933 && ELF64_R_TYPE (rel[2].r_info) == R_PPC64_TOC))
7934 ++rel;
7935
7936 if (rel == relend)
3f764659
JJ
7937 {
7938 if (sec->size == offset + 24)
7939 {
7940 need_pad = NULL;
7941 break;
7942 }
51aecdc5 7943 if (sec->size == offset + 16)
3f764659
JJ
7944 {
7945 cnt_16b++;
7946 break;
7947 }
7948 goto broken_opd;
7949 }
3f764659
JJ
7950 else if (rel + 1 < relend
7951 && ELF64_R_TYPE (rel[0].r_info) == R_PPC64_ADDR64
7952 && ELF64_R_TYPE (rel[1].r_info) == R_PPC64_TOC)
7953 {
51aecdc5
AM
7954 if (rel[0].r_offset == offset + 16)
7955 cnt_16b++;
7956 else if (rel[0].r_offset != offset + 24)
7957 goto broken_opd;
3f764659
JJ
7958 }
7959 else
7960 goto broken_opd;
1e2f5b6e
AM
7961 }
7962
e7d1c40c 7963 add_aux_fields = htab->params->non_overlapping_opd && cnt_16b > 0;
3f764659 7964
51aecdc5 7965 if (!broken && (need_edit || add_aux_fields))
1e2f5b6e
AM
7966 {
7967 Elf_Internal_Rela *write_rel;
d4730f92 7968 Elf_Internal_Shdr *rel_hdr;
1e2f5b6e 7969 bfd_byte *rptr, *wptr;
983bddc8 7970 bfd_byte *new_contents;
74f0fb50
AM
7971 bfd_size_type amt;
7972
983bddc8 7973 new_contents = NULL;
51aecdc5 7974 amt = OPD_NDX (sec->size) * sizeof (long);
74f0fb50 7975 opd = &ppc64_elf_section_data (sec)->u.opd;
33c0ec9d 7976 opd->adjust = bfd_zalloc (sec->owner, amt);
74f0fb50
AM
7977 if (opd->adjust == NULL)
7978 return FALSE;
1e2f5b6e
AM
7979
7980 /* This seems a waste of time as input .opd sections are all
7981 zeros as generated by gcc, but I suppose there's no reason
7982 this will always be so. We might start putting something in
7983 the third word of .opd entries. */
7984 if ((sec->flags & SEC_IN_MEMORY) == 0)
7985 {
eea6121a
AM
7986 bfd_byte *loc;
7987 if (!bfd_malloc_and_get_section (ibfd, sec, &loc))
6cdc0ccc 7988 {
eea6121a
AM
7989 if (loc != NULL)
7990 free (loc);
50bc7936 7991 error_ret:
6cdc0ccc
AM
7992 if (local_syms != NULL
7993 && symtab_hdr->contents != (unsigned char *) local_syms)
7994 free (local_syms);
6cdc0ccc
AM
7995 if (elf_section_data (sec)->relocs != relstart)
7996 free (relstart);
b34976b6 7997 return FALSE;
6cdc0ccc 7998 }
1e2f5b6e
AM
7999 sec->contents = loc;
8000 sec->flags |= (SEC_IN_MEMORY | SEC_HAS_CONTENTS);
8001 }
8002
8003 elf_section_data (sec)->relocs = relstart;
8004
3f764659 8005 new_contents = sec->contents;
3f764659
JJ
8006 if (add_aux_fields)
8007 {
8008 new_contents = bfd_malloc (sec->size + cnt_16b * 8);
8009 if (new_contents == NULL)
8010 return FALSE;
51aecdc5 8011 need_pad = NULL;
3f764659 8012 }
b4f4e59f
AM
8013 wptr = new_contents;
8014 rptr = sec->contents;
1e2f5b6e 8015 write_rel = relstart;
51aecdc5 8016 for (rel = relstart; rel < relend; )
1e2f5b6e 8017 {
50bc7936
AM
8018 unsigned long r_symndx;
8019 asection *sym_sec;
8020 struct elf_link_hash_entry *h;
51aecdc5 8021 struct ppc_link_hash_entry *fdh = NULL;
50bc7936 8022 Elf_Internal_Sym *sym;
51aecdc5
AM
8023 long opd_ent_size;
8024 Elf_Internal_Rela *next_rel;
8025 bfd_boolean skip;
50bc7936
AM
8026
8027 r_symndx = ELF64_R_SYM (rel->r_info);
8028 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
d37c89e5 8029 r_symndx, ibfd))
50bc7936
AM
8030 goto error_ret;
8031
51aecdc5
AM
8032 next_rel = rel + 2;
8033 if (next_rel + 1 == relend
8034 || (next_rel + 2 < relend
8035 && ELF64_R_TYPE (next_rel[2].r_info) == R_PPC64_TOC))
8036 ++next_rel;
8037
8038 /* See if the .opd entry is full 24 byte or
8039 16 byte (with fd_aux entry overlapped with next
8040 fd_func). */
8041 opd_ent_size = 24;
8042 if (next_rel == relend)
1e2f5b6e 8043 {
51aecdc5 8044 if (sec->size == rel->r_offset + 16)
3f764659 8045 opd_ent_size = 16;
51aecdc5
AM
8046 }
8047 else if (next_rel->r_offset == rel->r_offset + 16)
8048 opd_ent_size = 16;
3f764659 8049
51aecdc5
AM
8050 if (h != NULL
8051 && h->root.root.string[0] == '.')
8052 {
8c5b4e52
AM
8053 fdh = ((struct ppc_link_hash_entry *) h)->oh;
8054 if (fdh != NULL)
8055 {
8056 fdh = ppc_follow_link (fdh);
8057 if (fdh->elf.root.type != bfd_link_hash_defined
8058 && fdh->elf.root.type != bfd_link_hash_defweak)
8059 fdh = NULL;
8060 }
51aecdc5 8061 }
1e2f5b6e 8062
51aecdc5
AM
8063 skip = (sym_sec->owner != ibfd
8064 || sym_sec->output_section == bfd_abs_section_ptr);
8065 if (skip)
8066 {
8067 if (fdh != NULL && sym_sec->owner == ibfd)
a4aa0fb7 8068 {
51aecdc5
AM
8069 /* Arrange for the function descriptor sym
8070 to be dropped. */
8071 fdh->elf.root.u.def.value = 0;
8072 fdh->elf.root.u.def.section = sym_sec;
a4aa0fb7 8073 }
51aecdc5 8074 opd->adjust[OPD_NDX (rel->r_offset)] = -1;
1e2f5b6e 8075
0e1862bb 8076 if (NO_OPD_RELOCS || bfd_link_relocatable (info))
51aecdc5
AM
8077 rel = next_rel;
8078 else
8079 while (1)
8080 {
8081 if (!dec_dynrel_count (rel->r_info, sec, info,
8082 NULL, h, sym))
8083 goto error_ret;
754021d0 8084
51aecdc5
AM
8085 if (++rel == next_rel)
8086 break;
1e2f5b6e 8087
51aecdc5
AM
8088 r_symndx = ELF64_R_SYM (rel->r_info);
8089 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
8090 r_symndx, ibfd))
8091 goto error_ret;
8092 }
50bc7936
AM
8093 }
8094 else
1e2f5b6e 8095 {
51aecdc5
AM
8096 /* We'll be keeping this opd entry. */
8097 long adjust;
8098
8099 if (fdh != NULL)
8100 {
8101 /* Redefine the function descriptor symbol to
8102 this location in the opd section. It is
8103 necessary to update the value here rather
8104 than using an array of adjustments as we do
8105 for local symbols, because various places
8106 in the generic ELF code use the value
8107 stored in u.def.value. */
8108 fdh->elf.root.u.def.value = wptr - new_contents;
8109 fdh->adjust_done = 1;
8110 }
8111
8112 /* Local syms are a bit tricky. We could
8113 tweak them as they can be cached, but
8114 we'd need to look through the local syms
8115 for the function descriptor sym which we
8116 don't have at the moment. So keep an
8117 array of adjustments. */
8118 adjust = (wptr - new_contents) - (rptr - sec->contents);
8119 opd->adjust[OPD_NDX (rel->r_offset)] = adjust;
8120
8121 if (wptr != rptr)
8122 memcpy (wptr, rptr, opd_ent_size);
8123 wptr += opd_ent_size;
8124 if (add_aux_fields && opd_ent_size == 16)
8125 {
8126 memset (wptr, '\0', 8);
8127 wptr += 8;
8128 }
8129
50bc7936 8130 /* We need to adjust any reloc offsets to point to the
51aecdc5
AM
8131 new opd entries. */
8132 for ( ; rel != next_rel; ++rel)
8133 {
8134 rel->r_offset += adjust;
8135 if (write_rel != rel)
8136 memcpy (write_rel, rel, sizeof (*rel));
8137 ++write_rel;
8138 }
1e2f5b6e 8139 }
51aecdc5
AM
8140
8141 rptr += opd_ent_size;
1e2f5b6e
AM
8142 }
8143
3f764659 8144 sec->size = wptr - new_contents;
1e2f5b6e 8145 sec->reloc_count = write_rel - relstart;
3f764659
JJ
8146 if (add_aux_fields)
8147 {
8148 free (sec->contents);
8149 sec->contents = new_contents;
8150 }
8151
05bf9422 8152 /* Fudge the header size too, as this is used later in
cdcf6e38 8153 elf_bfd_final_link if we are emitting relocs. */
d4730f92
BS
8154 rel_hdr = _bfd_elf_single_rel_hdr (sec);
8155 rel_hdr->sh_size = sec->reloc_count * rel_hdr->sh_entsize;
754021d0 8156 some_edited = TRUE;
1e2f5b6e 8157 }
6cdc0ccc 8158 else if (elf_section_data (sec)->relocs != relstart)
1e2f5b6e 8159 free (relstart);
6cdc0ccc 8160
411e1bfb
AM
8161 if (local_syms != NULL
8162 && symtab_hdr->contents != (unsigned char *) local_syms)
8163 {
8164 if (!info->keep_memory)
8165 free (local_syms);
8166 else
8167 symtab_hdr->contents = (unsigned char *) local_syms;
8168 }
8169 }
8170
754021d0
AM
8171 if (some_edited)
8172 elf_link_hash_traverse (elf_hash_table (info), adjust_opd_syms, NULL);
8173
3f764659
JJ
8174 /* If we are doing a final link and the last .opd entry is just 16 byte
8175 long, add a 8 byte padding after it. */
0e1862bb 8176 if (need_pad != NULL && !bfd_link_relocatable (info))
3f764659
JJ
8177 {
8178 bfd_byte *p;
8179
8180 if ((need_pad->flags & SEC_IN_MEMORY) == 0)
8181 {
8182 BFD_ASSERT (need_pad->size > 0);
8183
8184 p = bfd_malloc (need_pad->size + 8);
8185 if (p == NULL)
8186 return FALSE;
699733f6 8187
3f764659
JJ
8188 if (! bfd_get_section_contents (need_pad->owner, need_pad,
8189 p, 0, need_pad->size))
8190 return FALSE;
8191
8192 need_pad->contents = p;
8193 need_pad->flags |= (SEC_IN_MEMORY | SEC_HAS_CONTENTS);
8194 }
8195 else
8196 {
8197 p = bfd_realloc (need_pad->contents, need_pad->size + 8);
8198 if (p == NULL)
8199 return FALSE;
8200
8201 need_pad->contents = p;
8202 }
8203
8204 memset (need_pad->contents + need_pad->size, 0, 8);
8205 need_pad->size += 8;
8206 }
8207
411e1bfb
AM
8208 return TRUE;
8209}
8210
e1918d23 8211/* Set htab->tls_get_addr and call the generic ELF tls_setup function. */
411e1bfb 8212
e1918d23 8213asection *
e7d1c40c 8214ppc64_elf_tls_setup (struct bfd_link_info *info)
411e1bfb 8215{
411e1bfb
AM
8216 struct ppc_link_hash_table *htab;
8217
411e1bfb 8218 htab = ppc_hash_table (info);
4dfe6ac6
NC
8219 if (htab == NULL)
8220 return NULL;
8221
ee67d69a
AM
8222 if (abiversion (info->output_bfd) == 1)
8223 htab->opd_abi = 1;
8224
e7d1c40c 8225 if (htab->params->no_multi_toc)
33c0ec9d
AM
8226 htab->do_multi_toc = 0;
8227 else if (!htab->do_multi_toc)
e7d1c40c 8228 htab->params->no_multi_toc = 1;
33c0ec9d 8229
8b5f1ed8
AM
8230 /* Default to --no-plt-localentry, as this option can cause problems
8231 with symbol interposition. For example, glibc libpthread.so and
8232 libc.so duplicate many pthread symbols, with a fallback
8233 implementation in libc.so. In some cases the fallback does more
8234 work than the pthread implementation. __pthread_condattr_destroy
8235 is one such symbol: the libpthread.so implementation is
8236 localentry:0 while the libc.so implementation is localentry:8.
8237 An app that "cleverly" uses dlopen to only load necessary
8238 libraries at runtime may omit loading libpthread.so when not
8239 running multi-threaded, which then results in the libc.so
8240 fallback symbols being used and ld.so complaining. Now there
8241 are workarounds in ld (see non_zero_localentry) to detect the
8242 pthread situation, but that may not be the only case where
8243 --plt-localentry can cause trouble. */
f378ab09 8244 if (htab->params->plt_localentry0 < 0)
8b5f1ed8 8245 htab->params->plt_localentry0 = 0;
d44c746a
AM
8246 if (htab->params->plt_localentry0
8247 && elf_link_hash_lookup (&htab->elf, "GLIBC_2.26",
8248 FALSE, FALSE, FALSE) == NULL)
8249 info->callbacks->einfo
8250 (_("%P: warning: --plt-localentry is especially dangerous without "
8251 "ld.so support to detect ABI violations.\n"));
f378ab09 8252
3a71aa26
AM
8253 htab->tls_get_addr = ((struct ppc_link_hash_entry *)
8254 elf_link_hash_lookup (&htab->elf, ".__tls_get_addr",
8255 FALSE, FALSE, TRUE));
a7f2871e
AM
8256 /* Move dynamic linking info to the function descriptor sym. */
8257 if (htab->tls_get_addr != NULL)
8258 func_desc_adjust (&htab->tls_get_addr->elf, info);
3a71aa26
AM
8259 htab->tls_get_addr_fd = ((struct ppc_link_hash_entry *)
8260 elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
8261 FALSE, FALSE, TRUE));
7c9cf415 8262 if (htab->params->tls_get_addr_opt)
a7f2871e
AM
8263 {
8264 struct elf_link_hash_entry *opt, *opt_fd, *tga, *tga_fd;
8265
8266 opt = elf_link_hash_lookup (&htab->elf, ".__tls_get_addr_opt",
8267 FALSE, FALSE, TRUE);
8268 if (opt != NULL)
8269 func_desc_adjust (opt, info);
8270 opt_fd = elf_link_hash_lookup (&htab->elf, "__tls_get_addr_opt",
8271 FALSE, FALSE, TRUE);
8272 if (opt_fd != NULL
8273 && (opt_fd->root.type == bfd_link_hash_defined
8274 || opt_fd->root.type == bfd_link_hash_defweak))
8275 {
8276 /* If glibc supports an optimized __tls_get_addr call stub,
8277 signalled by the presence of __tls_get_addr_opt, and we'll
8278 be calling __tls_get_addr via a plt call stub, then
8279 make __tls_get_addr point to __tls_get_addr_opt. */
8280 tga_fd = &htab->tls_get_addr_fd->elf;
8281 if (htab->elf.dynamic_sections_created
8282 && tga_fd != NULL
8283 && (tga_fd->type == STT_FUNC
8284 || tga_fd->needs_plt)
8285 && !(SYMBOL_CALLS_LOCAL (info, tga_fd)
21d68fcd 8286 || UNDEFWEAK_NO_DYNAMIC_RELOC (info, tga_fd)))
a7f2871e
AM
8287 {
8288 struct plt_entry *ent;
8289
8290 for (ent = tga_fd->plt.plist; ent != NULL; ent = ent->next)
8291 if (ent->plt.refcount > 0)
8292 break;
8293 if (ent != NULL)
8294 {
8295 tga_fd->root.type = bfd_link_hash_indirect;
8296 tga_fd->root.u.i.link = &opt_fd->root;
8297 ppc64_elf_copy_indirect_symbol (info, opt_fd, tga_fd);
b531344c 8298 opt_fd->mark = 1;
a7f2871e
AM
8299 if (opt_fd->dynindx != -1)
8300 {
8301 /* Use __tls_get_addr_opt in dynamic relocations. */
8302 opt_fd->dynindx = -1;
8303 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
8304 opt_fd->dynstr_index);
8305 if (!bfd_elf_link_record_dynamic_symbol (info, opt_fd))
854b41e7 8306 return NULL;
a7f2871e
AM
8307 }
8308 htab->tls_get_addr_fd = (struct ppc_link_hash_entry *) opt_fd;
8309 tga = &htab->tls_get_addr->elf;
8310 if (opt != NULL && tga != NULL)
8311 {
8312 tga->root.type = bfd_link_hash_indirect;
8313 tga->root.u.i.link = &opt->root;
8314 ppc64_elf_copy_indirect_symbol (info, opt, tga);
b531344c 8315 opt->mark = 1;
a7f2871e
AM
8316 _bfd_elf_link_hash_hide_symbol (info, opt,
8317 tga->forced_local);
8318 htab->tls_get_addr = (struct ppc_link_hash_entry *) opt;
8319 }
8320 htab->tls_get_addr_fd->oh = htab->tls_get_addr;
8321 htab->tls_get_addr_fd->is_func_descriptor = 1;
8322 if (htab->tls_get_addr != NULL)
8323 {
8324 htab->tls_get_addr->oh = htab->tls_get_addr_fd;
8325 htab->tls_get_addr->is_func = 1;
8326 }
8327 }
8328 }
8329 }
7c9cf415
AM
8330 else if (htab->params->tls_get_addr_opt < 0)
8331 htab->params->tls_get_addr_opt = 0;
a7f2871e 8332 }
33c0ec9d 8333 return _bfd_elf_tls_setup (info->output_bfd, info);
3a71aa26 8334}
8387904d 8335
3a71aa26
AM
8336/* Return TRUE iff REL is a branch reloc with a global symbol matching
8337 HASH1 or HASH2. */
8387904d 8338
3a71aa26
AM
8339static bfd_boolean
8340branch_reloc_hash_match (const bfd *ibfd,
8341 const Elf_Internal_Rela *rel,
8342 const struct ppc_link_hash_entry *hash1,
8343 const struct ppc_link_hash_entry *hash2)
8344{
8345 Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
8346 enum elf_ppc64_reloc_type r_type = ELF64_R_TYPE (rel->r_info);
8347 unsigned int r_symndx = ELF64_R_SYM (rel->r_info);
8348
e054468f 8349 if (r_symndx >= symtab_hdr->sh_info && is_branch_reloc (r_type))
8387904d 8350 {
3a71aa26
AM
8351 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
8352 struct elf_link_hash_entry *h;
8387904d 8353
3a71aa26 8354 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
b31867b6 8355 h = elf_follow_link (h);
3a71aa26
AM
8356 if (h == &hash1->elf || h == &hash2->elf)
8357 return TRUE;
a48ebf4d 8358 }
3a71aa26 8359 return FALSE;
951fd09b 8360}
411e1bfb 8361
951fd09b
AM
8362/* Run through all the TLS relocs looking for optimization
8363 opportunities. The linker has been hacked (see ppc64elf.em) to do
8364 a preliminary section layout so that we know the TLS segment
8365 offsets. We can't optimize earlier because some optimizations need
8366 to know the tp offset, and we need to optimize before allocating
8367 dynamic relocations. */
8368
8369bfd_boolean
33c0ec9d 8370ppc64_elf_tls_optimize (struct bfd_link_info *info)
951fd09b
AM
8371{
8372 bfd *ibfd;
8373 asection *sec;
8374 struct ppc_link_hash_table *htab;
663a1470 8375 unsigned char *toc_ref;
102890f0 8376 int pass;
951fd09b 8377
3cbc1e5e 8378 if (!bfd_link_executable (info))
411e1bfb
AM
8379 return TRUE;
8380
951fd09b 8381 htab = ppc_hash_table (info);
4dfe6ac6
NC
8382 if (htab == NULL)
8383 return FALSE;
8384
663a1470
AM
8385 /* Make two passes over the relocs. On the first pass, mark toc
8386 entries involved with tls relocs, and check that tls relocs
8387 involved in setting up a tls_get_addr call are indeed followed by
8388 such a call. If they are not, we can't do any tls optimization.
8389 On the second pass twiddle tls_mask flags to notify
8390 relocate_section that optimization can be done, and adjust got
8391 and plt refcounts. */
8392 toc_ref = NULL;
8393 for (pass = 0; pass < 2; ++pass)
c72f2fb2 8394 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
663a1470
AM
8395 {
8396 Elf_Internal_Sym *locsyms = NULL;
8397 asection *toc = bfd_get_section_by_name (ibfd, ".toc");
8398
102890f0
AM
8399 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
8400 if (sec->has_tls_reloc && !bfd_is_abs_section (sec->output_section))
8401 {
8402 Elf_Internal_Rela *relstart, *rel, *relend;
663a1470 8403 bfd_boolean found_tls_get_addr_arg = 0;
411e1bfb 8404
102890f0
AM
8405 /* Read the relocations. */
8406 relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
8407 info->keep_memory);
8408 if (relstart == NULL)
2915c55b
JK
8409 {
8410 free (toc_ref);
8411 return FALSE;
8412 }
411e1bfb 8413
102890f0
AM
8414 relend = relstart + sec->reloc_count;
8415 for (rel = relstart; rel < relend; rel++)
8416 {
8417 enum elf_ppc64_reloc_type r_type;
8418 unsigned long r_symndx;
8419 struct elf_link_hash_entry *h;
8420 Elf_Internal_Sym *sym;
8421 asection *sym_sec;
f961d9dd
AM
8422 unsigned char *tls_mask;
8423 unsigned char tls_set, tls_clear, tls_type = 0;
102890f0
AM
8424 bfd_vma value;
8425 bfd_boolean ok_tprel, is_local;
8426 long toc_ref_index = 0;
8427 int expecting_tls_get_addr = 0;
663a1470 8428 bfd_boolean ret = FALSE;
411e1bfb 8429
102890f0
AM
8430 r_symndx = ELF64_R_SYM (rel->r_info);
8431 if (!get_sym_h (&h, &sym, &sym_sec, &tls_mask, &locsyms,
8432 r_symndx, ibfd))
8433 {
8434 err_free_rel:
8435 if (elf_section_data (sec)->relocs != relstart)
8436 free (relstart);
8437 if (toc_ref != NULL)
8438 free (toc_ref);
8439 if (locsyms != NULL
0ffa91dd 8440 && (elf_symtab_hdr (ibfd).contents
102890f0
AM
8441 != (unsigned char *) locsyms))
8442 free (locsyms);
663a1470 8443 return ret;
102890f0 8444 }
411e1bfb 8445
102890f0
AM
8446 if (h != NULL)
8447 {
766bc656
AM
8448 if (h->root.type == bfd_link_hash_defined
8449 || h->root.type == bfd_link_hash_defweak)
8450 value = h->root.u.def.value;
8451 else if (h->root.type == bfd_link_hash_undefweak)
8452 value = 0;
8453 else
663a1470
AM
8454 {
8455 found_tls_get_addr_arg = 0;
8456 continue;
8457 }
102890f0
AM
8458 }
8459 else
8460 /* Symbols referenced by TLS relocs must be of type
8461 STT_TLS. So no need for .opd local sym adjust. */
8462 value = sym->st_value;
8463
8464 ok_tprel = FALSE;
8465 is_local = FALSE;
8466 if (h == NULL
8467 || !h->def_dynamic)
8468 {
8469 is_local = TRUE;
766bc656
AM
8470 if (h != NULL
8471 && h->root.type == bfd_link_hash_undefweak)
8472 ok_tprel = TRUE;
c27b8c2a
AM
8473 else if (sym_sec != NULL
8474 && sym_sec->output_section != NULL)
766bc656
AM
8475 {
8476 value += sym_sec->output_offset;
8477 value += sym_sec->output_section->vma;
8478 value -= htab->elf.tls_sec->vma;
8479 ok_tprel = (value + TP_OFFSET + ((bfd_vma) 1 << 31)
8480 < (bfd_vma) 1 << 32);
8481 }
102890f0 8482 }
951fd09b 8483
102890f0 8484 r_type = ELF64_R_TYPE (rel->r_info);
663a1470
AM
8485 /* If this section has old-style __tls_get_addr calls
8486 without marker relocs, then check that each
8487 __tls_get_addr call reloc is preceded by a reloc
8488 that conceivably belongs to the __tls_get_addr arg
8489 setup insn. If we don't find matching arg setup
8490 relocs, don't do any tls optimization. */
8491 if (pass == 0
8492 && sec->has_tls_get_addr_call
8493 && h != NULL
8494 && (h == &htab->tls_get_addr->elf
8495 || h == &htab->tls_get_addr_fd->elf)
8496 && !found_tls_get_addr_arg
8497 && is_branch_reloc (r_type))
8498 {
25f53a85 8499 info->callbacks->minfo (_("%H __tls_get_addr lost arg, "
663a1470
AM
8500 "TLS optimization disabled\n"),
8501 ibfd, sec, rel->r_offset);
8502 ret = TRUE;
8503 goto err_free_rel;
8504 }
8505
8506 found_tls_get_addr_arg = 0;
102890f0
AM
8507 switch (r_type)
8508 {
8509 case R_PPC64_GOT_TLSLD16:
8510 case R_PPC64_GOT_TLSLD16_LO:
8511 expecting_tls_get_addr = 1;
663a1470 8512 found_tls_get_addr_arg = 1;
1a0670f3 8513 /* Fall through. */
102890f0
AM
8514
8515 case R_PPC64_GOT_TLSLD16_HI:
8516 case R_PPC64_GOT_TLSLD16_HA:
8517 /* These relocs should never be against a symbol
8518 defined in a shared lib. Leave them alone if
8519 that turns out to be the case. */
8520 if (!is_local)
8521 continue;
411e1bfb 8522
102890f0 8523 /* LD -> LE */
411e1bfb 8524 tls_set = 0;
102890f0
AM
8525 tls_clear = TLS_LD;
8526 tls_type = TLS_TLS | TLS_LD;
8527 break;
411e1bfb 8528
102890f0
AM
8529 case R_PPC64_GOT_TLSGD16:
8530 case R_PPC64_GOT_TLSGD16_LO:
8531 expecting_tls_get_addr = 1;
663a1470 8532 found_tls_get_addr_arg = 1;
1a0670f3 8533 /* Fall through. */
102890f0
AM
8534
8535 case R_PPC64_GOT_TLSGD16_HI:
8536 case R_PPC64_GOT_TLSGD16_HA:
8537 if (ok_tprel)
8538 /* GD -> LE */
411e1bfb 8539 tls_set = 0;
102890f0
AM
8540 else
8541 /* GD -> IE */
8542 tls_set = TLS_TLS | TLS_TPRELGD;
8543 tls_clear = TLS_GD;
8544 tls_type = TLS_TLS | TLS_GD;
8545 break;
8546
8547 case R_PPC64_GOT_TPREL16_DS:
8548 case R_PPC64_GOT_TPREL16_LO_DS:
8549 case R_PPC64_GOT_TPREL16_HI:
8550 case R_PPC64_GOT_TPREL16_HA:
8551 if (ok_tprel)
8552 {
8553 /* IE -> LE */
8554 tls_set = 0;
8555 tls_clear = TLS_TPREL;
8556 tls_type = TLS_TLS | TLS_TPREL;
8557 break;
8558 }
411e1bfb
AM
8559 continue;
8560
727fc41e
AM
8561 case R_PPC64_TLSGD:
8562 case R_PPC64_TLSLD:
663a1470 8563 found_tls_get_addr_arg = 1;
1a0670f3 8564 /* Fall through. */
663a1470
AM
8565
8566 case R_PPC64_TLS:
8567 case R_PPC64_TOC16:
8568 case R_PPC64_TOC16_LO:
102890f0
AM
8569 if (sym_sec == NULL || sym_sec != toc)
8570 continue;
8571
8572 /* Mark this toc entry as referenced by a TLS
8573 code sequence. We can do that now in the
8574 case of R_PPC64_TLS, and after checking for
8575 tls_get_addr for the TOC16 relocs. */
8576 if (toc_ref == NULL)
663a1470
AM
8577 toc_ref = bfd_zmalloc (toc->output_section->rawsize / 8);
8578 if (toc_ref == NULL)
8579 goto err_free_rel;
8580
102890f0
AM
8581 if (h != NULL)
8582 value = h->root.u.def.value;
8583 else
8584 value = sym->st_value;
8585 value += rel->r_addend;
73242275
AM
8586 if (value % 8 != 0)
8587 continue;
8588 BFD_ASSERT (value < toc->size
8589 && toc->output_offset % 8 == 0);
663a1470 8590 toc_ref_index = (value + toc->output_offset) / 8;
727fc41e
AM
8591 if (r_type == R_PPC64_TLS
8592 || r_type == R_PPC64_TLSGD
8593 || r_type == R_PPC64_TLSLD)
102890f0
AM
8594 {
8595 toc_ref[toc_ref_index] = 1;
8596 continue;
8597 }
8598
8599 if (pass != 0 && toc_ref[toc_ref_index] == 0)
8600 continue;
8601
8602 tls_set = 0;
8603 tls_clear = 0;
8604 expecting_tls_get_addr = 2;
8605 break;
8606
8607 case R_PPC64_TPREL64:
8608 if (pass == 0
8609 || sec != toc
8610 || toc_ref == NULL
663a1470 8611 || !toc_ref[(rel->r_offset + toc->output_offset) / 8])
102890f0
AM
8612 continue;
8613 if (ok_tprel)
8614 {
8615 /* IE -> LE */
8616 tls_set = TLS_EXPLICIT;
8617 tls_clear = TLS_TPREL;
8618 break;
8619 }
8620 continue;
8621
8622 case R_PPC64_DTPMOD64:
8623 if (pass == 0
8624 || sec != toc
8625 || toc_ref == NULL
663a1470 8626 || !toc_ref[(rel->r_offset + toc->output_offset) / 8])
102890f0
AM
8627 continue;
8628 if (rel + 1 < relend
8629 && (rel[1].r_info
8630 == ELF64_R_INFO (r_symndx, R_PPC64_DTPREL64))
8631 && rel[1].r_offset == rel->r_offset + 8)
8632 {
8633 if (ok_tprel)
8634 /* GD -> LE */
8635 tls_set = TLS_EXPLICIT | TLS_GD;
8636 else
8637 /* GD -> IE */
8638 tls_set = TLS_EXPLICIT | TLS_GD | TLS_TPRELGD;
8639 tls_clear = TLS_GD;
8640 }
8641 else
8642 {
8643 if (!is_local)
8644 continue;
8645
8646 /* LD -> LE */
8647 tls_set = TLS_EXPLICIT;
8648 tls_clear = TLS_LD;
8649 }
8650 break;
8651
8652 default:
8653 continue;
8654 }
8655
8656 if (pass == 0)
8657 {
727fc41e
AM
8658 if (!expecting_tls_get_addr
8659 || !sec->has_tls_get_addr_call)
102890f0
AM
8660 continue;
8661
3a71aa26
AM
8662 if (rel + 1 < relend
8663 && branch_reloc_hash_match (ibfd, rel + 1,
8664 htab->tls_get_addr,
8665 htab->tls_get_addr_fd))
102890f0 8666 {
3a71aa26 8667 if (expecting_tls_get_addr == 2)
102890f0 8668 {
3a71aa26 8669 /* Check for toc tls entries. */
f961d9dd 8670 unsigned char *toc_tls;
3a71aa26
AM
8671 int retval;
8672
8673 retval = get_tls_mask (&toc_tls, NULL, NULL,
8674 &locsyms,
8675 rel, ibfd);
8676 if (retval == 0)
8677 goto err_free_rel;
663a1470
AM
8678 if (toc_tls != NULL)
8679 {
8680 if ((*toc_tls & (TLS_GD | TLS_LD)) != 0)
8681 found_tls_get_addr_arg = 1;
8682 if (retval > 1)
8683 toc_ref[toc_ref_index] = 1;
8684 }
102890f0 8685 }
3a71aa26 8686 continue;
102890f0
AM
8687 }
8688
8689 if (expecting_tls_get_addr != 1)
8690 continue;
8691
8692 /* Uh oh, we didn't find the expected call. We
8693 could just mark this symbol to exclude it
8694 from tls optimization but it's safer to skip
663a1470 8695 the entire optimization. */
695344c0 8696 /* xgettext:c-format */
25f53a85 8697 info->callbacks->minfo (_("%H arg lost __tls_get_addr, "
663a1470
AM
8698 "TLS optimization disabled\n"),
8699 ibfd, sec, rel->r_offset);
8700 ret = TRUE;
8701 goto err_free_rel;
102890f0
AM
8702 }
8703
85f7a9cb 8704 if (expecting_tls_get_addr && htab->tls_get_addr != NULL)
102890f0
AM
8705 {
8706 struct plt_entry *ent;
8707 for (ent = htab->tls_get_addr->elf.plt.plist;
8708 ent != NULL;
8709 ent = ent->next)
8710 if (ent->addend == 0)
411e1bfb 8711 {
102890f0 8712 if (ent->plt.refcount > 0)
30038c59 8713 {
102890f0
AM
8714 ent->plt.refcount -= 1;
8715 expecting_tls_get_addr = 0;
30038c59 8716 }
102890f0 8717 break;
411e1bfb 8718 }
102890f0 8719 }
411e1bfb 8720
85f7a9cb 8721 if (expecting_tls_get_addr && htab->tls_get_addr_fd != NULL)
102890f0
AM
8722 {
8723 struct plt_entry *ent;
8724 for (ent = htab->tls_get_addr_fd->elf.plt.plist;
8725 ent != NULL;
8726 ent = ent->next)
8727 if (ent->addend == 0)
411e1bfb 8728 {
102890f0
AM
8729 if (ent->plt.refcount > 0)
8730 ent->plt.refcount -= 1;
8731 break;
411e1bfb 8732 }
102890f0 8733 }
411e1bfb 8734
102890f0 8735 if (tls_clear == 0)
30038c59
AM
8736 continue;
8737
102890f0
AM
8738 if ((tls_set & TLS_EXPLICIT) == 0)
8739 {
8740 struct got_entry *ent;
411e1bfb 8741
102890f0
AM
8742 /* Adjust got entry for this reloc. */
8743 if (h != NULL)
8744 ent = h->got.glist;
8745 else
8746 ent = elf_local_got_ents (ibfd)[r_symndx];
411e1bfb 8747
102890f0
AM
8748 for (; ent != NULL; ent = ent->next)
8749 if (ent->addend == rel->r_addend
8750 && ent->owner == ibfd
8751 && ent->tls_type == tls_type)
8752 break;
8753 if (ent == NULL)
8754 abort ();
411e1bfb 8755
102890f0
AM
8756 if (tls_set == 0)
8757 {
8758 /* We managed to get rid of a got entry. */
8759 if (ent->got.refcount > 0)
8760 ent->got.refcount -= 1;
8761 }
8762 }
8763 else
8764 {
8765 /* If we got rid of a DTPMOD/DTPREL reloc pair then
8766 we'll lose one or two dyn relocs. */
8767 if (!dec_dynrel_count (rel->r_info, sec, info,
19e08130 8768 NULL, h, sym))
102890f0 8769 return FALSE;
411e1bfb 8770
102890f0
AM
8771 if (tls_set == (TLS_EXPLICIT | TLS_GD))
8772 {
8773 if (!dec_dynrel_count ((rel + 1)->r_info, sec, info,
19e08130 8774 NULL, h, sym))
102890f0
AM
8775 return FALSE;
8776 }
8777 }
411e1bfb 8778
102890f0
AM
8779 *tls_mask |= tls_set;
8780 *tls_mask &= ~tls_clear;
8781 }
8c1d1bb8 8782
102890f0
AM
8783 if (elf_section_data (sec)->relocs != relstart)
8784 free (relstart);
8785 }
411e1bfb 8786
663a1470
AM
8787 if (locsyms != NULL
8788 && (elf_symtab_hdr (ibfd).contents != (unsigned char *) locsyms))
8789 {
8790 if (!info->keep_memory)
8791 free (locsyms);
8792 else
8793 elf_symtab_hdr (ibfd).contents = (unsigned char *) locsyms;
8794 }
8795 }
411e1bfb 8796
663a1470
AM
8797 if (toc_ref != NULL)
8798 free (toc_ref);
9a23f96e 8799 htab->do_tls_opt = 1;
b34976b6 8800 return TRUE;
1e2f5b6e 8801}
b34976b6 8802
c5614fa4
AM
8803/* Called via elf_link_hash_traverse from ppc64_elf_edit_toc to adjust
8804 the values of any global symbols in a toc section that has been
8805 edited. Globals in toc sections should be a rarity, so this function
8806 sets a flag if any are found in toc sections other than the one just
de194d85 8807 edited, so that further hash table traversals can be avoided. */
c5614fa4
AM
8808
8809struct adjust_toc_info
8810{
8811 asection *toc;
8812 unsigned long *skip;
8813 bfd_boolean global_toc_syms;
8814};
8815
ba761f19
AM
8816enum toc_skip_enum { ref_from_discarded = 1, can_optimize = 2 };
8817
c5614fa4
AM
8818static bfd_boolean
8819adjust_toc_syms (struct elf_link_hash_entry *h, void *inf)
8820{
8821 struct ppc_link_hash_entry *eh;
8822 struct adjust_toc_info *toc_inf = (struct adjust_toc_info *) inf;
854b41e7 8823 unsigned long i;
c5614fa4 8824
c5614fa4
AM
8825 if (h->root.type != bfd_link_hash_defined
8826 && h->root.type != bfd_link_hash_defweak)
8827 return TRUE;
8828
8829 eh = (struct ppc_link_hash_entry *) h;
8830 if (eh->adjust_done)
8831 return TRUE;
8832
8833 if (eh->elf.root.u.def.section == toc_inf->toc)
8834 {
854b41e7
AM
8835 if (eh->elf.root.u.def.value > toc_inf->toc->rawsize)
8836 i = toc_inf->toc->rawsize >> 3;
c5614fa4 8837 else
854b41e7
AM
8838 i = eh->elf.root.u.def.value >> 3;
8839
ba761f19 8840 if ((toc_inf->skip[i] & (ref_from_discarded | can_optimize)) != 0)
c5614fa4 8841 {
4eca0228 8842 _bfd_error_handler
854b41e7
AM
8843 (_("%s defined on removed toc entry"), eh->elf.root.root.string);
8844 do
8845 ++i;
ba761f19 8846 while ((toc_inf->skip[i] & (ref_from_discarded | can_optimize)) != 0);
854b41e7 8847 eh->elf.root.u.def.value = (bfd_vma) i << 3;
c5614fa4 8848 }
854b41e7
AM
8849
8850 eh->elf.root.u.def.value -= toc_inf->skip[i];
c5614fa4
AM
8851 eh->adjust_done = 1;
8852 }
8853 else if (strcmp (eh->elf.root.u.def.section->name, ".toc") == 0)
8854 toc_inf->global_toc_syms = TRUE;
8855
8856 return TRUE;
8857}
8858
39eeab25
AM
8859/* Return TRUE iff INSN with a relocation of R_TYPE is one we expect
8860 on a _LO variety toc/got reloc. */
560c8763
AM
8861
8862static bfd_boolean
39eeab25 8863ok_lo_toc_insn (unsigned int insn, enum elf_ppc64_reloc_type r_type)
560c8763 8864{
39eeab25
AM
8865 return ((insn & (0x3f << 26)) == 12u << 26 /* addic */
8866 || (insn & (0x3f << 26)) == 14u << 26 /* addi */
560c8763
AM
8867 || (insn & (0x3f << 26)) == 32u << 26 /* lwz */
8868 || (insn & (0x3f << 26)) == 34u << 26 /* lbz */
8869 || (insn & (0x3f << 26)) == 36u << 26 /* stw */
8870 || (insn & (0x3f << 26)) == 38u << 26 /* stb */
8871 || (insn & (0x3f << 26)) == 40u << 26 /* lhz */
8872 || (insn & (0x3f << 26)) == 42u << 26 /* lha */
8873 || (insn & (0x3f << 26)) == 44u << 26 /* sth */
8874 || (insn & (0x3f << 26)) == 46u << 26 /* lmw */
8875 || (insn & (0x3f << 26)) == 47u << 26 /* stmw */
8876 || (insn & (0x3f << 26)) == 48u << 26 /* lfs */
8877 || (insn & (0x3f << 26)) == 50u << 26 /* lfd */
8878 || (insn & (0x3f << 26)) == 52u << 26 /* stfs */
8879 || (insn & (0x3f << 26)) == 54u << 26 /* stfd */
39eeab25
AM
8880 || (insn & (0x3f << 26)) == 56u << 26 /* lq,lfq */
8881 || ((insn & (0x3f << 26)) == 57u << 26 /* lxsd,lxssp,lfdp */
8882 /* Exclude lfqu by testing reloc. If relocs are ever
8883 defined for the reduced D field in psq_lu then those
8884 will need testing too. */
8885 && r_type != R_PPC64_TOC16_LO && r_type != R_PPC64_GOT16_LO)
8886 || ((insn & (0x3f << 26)) == 58u << 26 /* ld,lwa */
8887 && (insn & 1) == 0)
8888 || (insn & (0x3f << 26)) == 60u << 26 /* stfq */
8889 || ((insn & (0x3f << 26)) == 61u << 26 /* lxv,stx{v,sd,ssp},stfdp */
8890 /* Exclude stfqu. psq_stu as above for psq_lu. */
8891 && r_type != R_PPC64_TOC16_LO && r_type != R_PPC64_GOT16_LO)
8892 || ((insn & (0x3f << 26)) == 62u << 26 /* std,stq */
8893 && (insn & 1) == 0));
560c8763
AM
8894}
8895
c5614fa4
AM
8896/* Examine all relocs referencing .toc sections in order to remove
8897 unused .toc entries. */
8898
8899bfd_boolean
33c0ec9d 8900ppc64_elf_edit_toc (struct bfd_link_info *info)
c5614fa4
AM
8901{
8902 bfd *ibfd;
8903 struct adjust_toc_info toc_inf;
67f0cbdb 8904 struct ppc_link_hash_table *htab = ppc_hash_table (info);
c5614fa4 8905
67f0cbdb 8906 htab->do_toc_opt = 1;
c5614fa4 8907 toc_inf.global_toc_syms = TRUE;
c72f2fb2 8908 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
c5614fa4
AM
8909 {
8910 asection *toc, *sec;
8911 Elf_Internal_Shdr *symtab_hdr;
8912 Elf_Internal_Sym *local_syms;
425b145b 8913 Elf_Internal_Rela *relstart, *rel, *toc_relocs;
c5614fa4
AM
8914 unsigned long *skip, *drop;
8915 unsigned char *used;
8916 unsigned char *keep, last, some_unused;
8917
854b41e7
AM
8918 if (!is_ppc64_elf (ibfd))
8919 continue;
8920
c5614fa4
AM
8921 toc = bfd_get_section_by_name (ibfd, ".toc");
8922 if (toc == NULL
92b7a70f 8923 || toc->size == 0
dbaa2011
AM
8924 || toc->sec_info_type == SEC_INFO_TYPE_JUST_SYMS
8925 || discarded_section (toc))
c5614fa4
AM
8926 continue;
8927
425b145b 8928 toc_relocs = NULL;
c5614fa4 8929 local_syms = NULL;
0ffa91dd 8930 symtab_hdr = &elf_symtab_hdr (ibfd);
c5614fa4
AM
8931
8932 /* Look at sections dropped from the final link. */
8933 skip = NULL;
8934 relstart = NULL;
8935 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
8936 {
8937 if (sec->reloc_count == 0
dbaa2011 8938 || !discarded_section (sec)
c5614fa4
AM
8939 || get_opd_info (sec)
8940 || (sec->flags & SEC_ALLOC) == 0
8941 || (sec->flags & SEC_DEBUGGING) != 0)
8942 continue;
8943
8944 relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL, FALSE);
8945 if (relstart == NULL)
8946 goto error_ret;
8947
8948 /* Run through the relocs to see which toc entries might be
8949 unused. */
8950 for (rel = relstart; rel < relstart + sec->reloc_count; ++rel)
8951 {
8952 enum elf_ppc64_reloc_type r_type;
8953 unsigned long r_symndx;
8954 asection *sym_sec;
8955 struct elf_link_hash_entry *h;
8956 Elf_Internal_Sym *sym;
8957 bfd_vma val;
8958
8959 r_type = ELF64_R_TYPE (rel->r_info);
8960 switch (r_type)
8961 {
8962 default:
8963 continue;
8964
8965 case R_PPC64_TOC16:
8966 case R_PPC64_TOC16_LO:
8967 case R_PPC64_TOC16_HI:
8968 case R_PPC64_TOC16_HA:
8969 case R_PPC64_TOC16_DS:
8970 case R_PPC64_TOC16_LO_DS:
8971 break;
8972 }
8973
8974 r_symndx = ELF64_R_SYM (rel->r_info);
8975 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
8976 r_symndx, ibfd))
8977 goto error_ret;
8978
8979 if (sym_sec != toc)
8980 continue;
8981
8982 if (h != NULL)
8983 val = h->root.u.def.value;
8984 else
8985 val = sym->st_value;
8986 val += rel->r_addend;
8987
8988 if (val >= toc->size)
8989 continue;
8990
8991 /* Anything in the toc ought to be aligned to 8 bytes.
8992 If not, don't mark as unused. */
8993 if (val & 7)
8994 continue;
8995
8996 if (skip == NULL)
8997 {
854b41e7 8998 skip = bfd_zmalloc (sizeof (*skip) * (toc->size + 15) / 8);
c5614fa4
AM
8999 if (skip == NULL)
9000 goto error_ret;
9001 }
9002
ba761f19 9003 skip[val >> 3] = ref_from_discarded;
c5614fa4
AM
9004 }
9005
9006 if (elf_section_data (sec)->relocs != relstart)
9007 free (relstart);
9008 }
9009
ba761f19
AM
9010 /* For largetoc loads of address constants, we can convert
9011 . addis rx,2,addr@got@ha
9012 . ld ry,addr@got@l(rx)
9013 to
9014 . addis rx,2,addr@toc@ha
9015 . addi ry,rx,addr@toc@l
9016 when addr is within 2G of the toc pointer. This then means
9017 that the word storing "addr" in the toc is no longer needed. */
68ffbac6 9018
ba761f19
AM
9019 if (!ppc64_elf_tdata (ibfd)->has_small_toc_reloc
9020 && toc->output_section->rawsize < (bfd_vma) 1 << 31
9021 && toc->reloc_count != 0)
9022 {
9023 /* Read toc relocs. */
425b145b
AM
9024 toc_relocs = _bfd_elf_link_read_relocs (ibfd, toc, NULL, NULL,
9025 info->keep_memory);
9026 if (toc_relocs == NULL)
ba761f19
AM
9027 goto error_ret;
9028
425b145b 9029 for (rel = toc_relocs; rel < toc_relocs + toc->reloc_count; ++rel)
ba761f19
AM
9030 {
9031 enum elf_ppc64_reloc_type r_type;
9032 unsigned long r_symndx;
9033 asection *sym_sec;
9034 struct elf_link_hash_entry *h;
9035 Elf_Internal_Sym *sym;
9036 bfd_vma val, addr;
9037
9038 r_type = ELF64_R_TYPE (rel->r_info);
9039 if (r_type != R_PPC64_ADDR64)
9040 continue;
9041
9042 r_symndx = ELF64_R_SYM (rel->r_info);
9043 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
9044 r_symndx, ibfd))
9045 goto error_ret;
9046
425b145b 9047 if (sym_sec == NULL
c27b8c2a 9048 || sym_sec->output_section == NULL
dbaa2011 9049 || discarded_section (sym_sec))
425b145b
AM
9050 continue;
9051
afe397ea 9052 if (!SYMBOL_REFERENCES_LOCAL (info, h))
ba761f19
AM
9053 continue;
9054
9055 if (h != NULL)
bddc25c9
AM
9056 {
9057 if (h->type == STT_GNU_IFUNC)
9058 continue;
9059 val = h->root.u.def.value;
9060 }
ba761f19 9061 else
bddc25c9
AM
9062 {
9063 if (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
9064 continue;
9065 val = sym->st_value;
9066 }
ba761f19
AM
9067 val += rel->r_addend;
9068 val += sym_sec->output_section->vma + sym_sec->output_offset;
9069
9070 /* We don't yet know the exact toc pointer value, but we
9071 know it will be somewhere in the toc section. Don't
9072 optimize if the difference from any possible toc
9073 pointer is outside [ff..f80008000, 7fff7fff]. */
9074 addr = toc->output_section->vma + TOC_BASE_OFF;
9075 if (val - addr + (bfd_vma) 0x80008000 >= (bfd_vma) 1 << 32)
9076 continue;
9077
9078 addr = toc->output_section->vma + toc->output_section->rawsize;
9079 if (val - addr + (bfd_vma) 0x80008000 >= (bfd_vma) 1 << 32)
9080 continue;
9081
9082 if (skip == NULL)
9083 {
9084 skip = bfd_zmalloc (sizeof (*skip) * (toc->size + 15) / 8);
9085 if (skip == NULL)
9086 goto error_ret;
9087 }
9088
9089 skip[rel->r_offset >> 3]
425b145b 9090 |= can_optimize | ((rel - toc_relocs) << 2);
ba761f19 9091 }
ba761f19
AM
9092 }
9093
c5614fa4
AM
9094 if (skip == NULL)
9095 continue;
9096
9097 used = bfd_zmalloc (sizeof (*used) * (toc->size + 7) / 8);
9098 if (used == NULL)
9099 {
9100 error_ret:
9101 if (local_syms != NULL
9102 && symtab_hdr->contents != (unsigned char *) local_syms)
9103 free (local_syms);
9104 if (sec != NULL
9105 && relstart != NULL
9106 && elf_section_data (sec)->relocs != relstart)
9107 free (relstart);
425b145b
AM
9108 if (toc_relocs != NULL
9109 && elf_section_data (toc)->relocs != toc_relocs)
9110 free (toc_relocs);
c5614fa4
AM
9111 if (skip != NULL)
9112 free (skip);
9113 return FALSE;
9114 }
9115
30038c59
AM
9116 /* Now check all kept sections that might reference the toc.
9117 Check the toc itself last. */
9118 for (sec = (ibfd->sections == toc && toc->next ? toc->next
9119 : ibfd->sections);
c5614fa4 9120 sec != NULL;
c5614fa4 9121 sec = (sec == toc ? NULL
c5614fa4 9122 : sec->next == NULL ? toc
30038c59 9123 : sec->next == toc && toc->next ? toc->next
c5614fa4
AM
9124 : sec->next))
9125 {
9126 int repeat;
9127
9128 if (sec->reloc_count == 0
dbaa2011 9129 || discarded_section (sec)
c5614fa4
AM
9130 || get_opd_info (sec)
9131 || (sec->flags & SEC_ALLOC) == 0
9132 || (sec->flags & SEC_DEBUGGING) != 0)
9133 continue;
9134
854b41e7
AM
9135 relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
9136 info->keep_memory);
c5614fa4 9137 if (relstart == NULL)
2915c55b
JK
9138 {
9139 free (used);
9140 goto error_ret;
9141 }
c5614fa4
AM
9142
9143 /* Mark toc entries referenced as used. */
c5614fa4 9144 do
d4f1ee75
AM
9145 {
9146 repeat = 0;
9147 for (rel = relstart; rel < relstart + sec->reloc_count; ++rel)
9148 {
9149 enum elf_ppc64_reloc_type r_type;
9150 unsigned long r_symndx;
9151 asection *sym_sec;
9152 struct elf_link_hash_entry *h;
9153 Elf_Internal_Sym *sym;
9154 bfd_vma val;
9155 enum {no_check, check_lo, check_ha} insn_check;
98528052 9156
d4f1ee75
AM
9157 r_type = ELF64_R_TYPE (rel->r_info);
9158 switch (r_type)
9159 {
9160 default:
9161 insn_check = no_check;
9162 break;
98528052 9163
d4f1ee75
AM
9164 case R_PPC64_GOT_TLSLD16_HA:
9165 case R_PPC64_GOT_TLSGD16_HA:
9166 case R_PPC64_GOT_TPREL16_HA:
9167 case R_PPC64_GOT_DTPREL16_HA:
9168 case R_PPC64_GOT16_HA:
9169 case R_PPC64_TOC16_HA:
9170 insn_check = check_ha;
9171 break;
98528052 9172
d4f1ee75
AM
9173 case R_PPC64_GOT_TLSLD16_LO:
9174 case R_PPC64_GOT_TLSGD16_LO:
9175 case R_PPC64_GOT_TPREL16_LO_DS:
9176 case R_PPC64_GOT_DTPREL16_LO_DS:
9177 case R_PPC64_GOT16_LO:
9178 case R_PPC64_GOT16_LO_DS:
9179 case R_PPC64_TOC16_LO:
9180 case R_PPC64_TOC16_LO_DS:
9181 insn_check = check_lo;
9182 break;
9183 }
560c8763 9184
d4f1ee75
AM
9185 if (insn_check != no_check)
9186 {
9187 bfd_vma off = rel->r_offset & ~3;
9188 unsigned char buf[4];
9189 unsigned int insn;
c5614fa4 9190
d4f1ee75
AM
9191 if (!bfd_get_section_contents (ibfd, sec, buf, off, 4))
9192 {
9193 free (used);
9194 goto error_ret;
9195 }
9196 insn = bfd_get_32 (ibfd, buf);
9197 if (insn_check == check_lo
39eeab25 9198 ? !ok_lo_toc_insn (insn, r_type)
d4f1ee75
AM
9199 : ((insn & ((0x3f << 26) | 0x1f << 16))
9200 != ((15u << 26) | (2 << 16)) /* addis rt,2,imm */))
9201 {
9202 char str[12];
9203
9204 ppc64_elf_tdata (ibfd)->unexpected_toc_insn = 1;
9205 sprintf (str, "%#08x", insn);
9206 info->callbacks->einfo
695344c0 9207 /* xgettext:c-format */
174d0a74 9208 (_("%H: toc optimization is not supported for"
d4f1ee75
AM
9209 " %s instruction.\n"),
9210 ibfd, sec, rel->r_offset & ~3, str);
9211 }
9212 }
c5614fa4 9213
d4f1ee75
AM
9214 switch (r_type)
9215 {
9216 case R_PPC64_TOC16:
9217 case R_PPC64_TOC16_LO:
9218 case R_PPC64_TOC16_HI:
9219 case R_PPC64_TOC16_HA:
9220 case R_PPC64_TOC16_DS:
9221 case R_PPC64_TOC16_LO_DS:
9222 /* In case we're taking addresses of toc entries. */
9223 case R_PPC64_ADDR64:
9224 break;
c5614fa4 9225
d4f1ee75
AM
9226 default:
9227 continue;
9228 }
c5614fa4 9229
d4f1ee75
AM
9230 r_symndx = ELF64_R_SYM (rel->r_info);
9231 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
9232 r_symndx, ibfd))
9233 {
9234 free (used);
9235 goto error_ret;
9236 }
c5614fa4 9237
d4f1ee75
AM
9238 if (sym_sec != toc)
9239 continue;
c5614fa4 9240
d4f1ee75
AM
9241 if (h != NULL)
9242 val = h->root.u.def.value;
9243 else
9244 val = sym->st_value;
9245 val += rel->r_addend;
ba761f19 9246
d4f1ee75
AM
9247 if (val >= toc->size)
9248 continue;
ba761f19 9249
d4f1ee75
AM
9250 if ((skip[val >> 3] & can_optimize) != 0)
9251 {
9252 bfd_vma off;
9253 unsigned char opc;
9254
9255 switch (r_type)
9256 {
9257 case R_PPC64_TOC16_HA:
ba761f19 9258 break;
ba761f19 9259
d4f1ee75
AM
9260 case R_PPC64_TOC16_LO_DS:
9261 off = rel->r_offset;
9262 off += (bfd_big_endian (ibfd) ? -2 : 3);
9263 if (!bfd_get_section_contents (ibfd, sec, &opc,
9264 off, 1))
9265 {
9266 free (used);
9267 goto error_ret;
9268 }
9269 if ((opc & (0x3f << 2)) == (58u << 2))
9270 break;
1a0670f3 9271 /* Fall through. */
ba761f19 9272
d4f1ee75
AM
9273 default:
9274 /* Wrong sort of reloc, or not a ld. We may
9275 as well clear ref_from_discarded too. */
9276 skip[val >> 3] = 0;
9277 }
9278 }
9279
9280 if (sec != toc)
9281 used[val >> 3] = 1;
9282 /* For the toc section, we only mark as used if this
9283 entry itself isn't unused. */
9284 else if ((used[rel->r_offset >> 3]
9285 || !(skip[rel->r_offset >> 3] & ref_from_discarded))
9286 && !used[val >> 3])
9287 {
9288 /* Do all the relocs again, to catch reference
9289 chains. */
9290 repeat = 1;
9291 used[val >> 3] = 1;
9292 }
9293 }
9294 }
c5614fa4 9295 while (repeat);
854b41e7
AM
9296
9297 if (elf_section_data (sec)->relocs != relstart)
9298 free (relstart);
c5614fa4
AM
9299 }
9300
9301 /* Merge the used and skip arrays. Assume that TOC
9302 doublewords not appearing as either used or unused belong
de194d85 9303 to an entry more than one doubleword in size. */
c5614fa4
AM
9304 for (drop = skip, keep = used, last = 0, some_unused = 0;
9305 drop < skip + (toc->size + 7) / 8;
9306 ++drop, ++keep)
9307 {
9308 if (*keep)
9309 {
ba761f19
AM
9310 *drop &= ~ref_from_discarded;
9311 if ((*drop & can_optimize) != 0)
9312 some_unused = 1;
c5614fa4
AM
9313 last = 0;
9314 }
b140b010 9315 else if ((*drop & ref_from_discarded) != 0)
c5614fa4
AM
9316 {
9317 some_unused = 1;
ba761f19 9318 last = ref_from_discarded;
c5614fa4
AM
9319 }
9320 else
9321 *drop = last;
9322 }
9323
9324 free (used);
9325
9326 if (some_unused)
9327 {
9328 bfd_byte *contents, *src;
9329 unsigned long off;
d62b3684 9330 Elf_Internal_Sym *sym;
ba761f19 9331 bfd_boolean local_toc_syms = FALSE;
c5614fa4
AM
9332
9333 /* Shuffle the toc contents, and at the same time convert the
9334 skip array from booleans into offsets. */
9335 if (!bfd_malloc_and_get_section (ibfd, toc, &contents))
9336 goto error_ret;
9337
9338 elf_section_data (toc)->this_hdr.contents = contents;
9339
9340 for (src = contents, off = 0, drop = skip;
9341 src < contents + toc->size;
9342 src += 8, ++drop)
9343 {
ba761f19
AM
9344 if ((*drop & (can_optimize | ref_from_discarded)) != 0)
9345 off += 8;
c5614fa4
AM
9346 else if (off != 0)
9347 {
9348 *drop = off;
9349 memcpy (src - off, src, 8);
9350 }
9351 }
854b41e7 9352 *drop = off;
c5614fa4
AM
9353 toc->rawsize = toc->size;
9354 toc->size = src - contents - off;
9355
ba761f19
AM
9356 /* Adjust addends for relocs against the toc section sym,
9357 and optimize any accesses we can. */
c5614fa4
AM
9358 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
9359 {
9360 if (sec->reloc_count == 0
dbaa2011 9361 || discarded_section (sec))
c5614fa4
AM
9362 continue;
9363
9364 relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
854b41e7 9365 info->keep_memory);
c5614fa4
AM
9366 if (relstart == NULL)
9367 goto error_ret;
9368
9369 for (rel = relstart; rel < relstart + sec->reloc_count; ++rel)
9370 {
9371 enum elf_ppc64_reloc_type r_type;
9372 unsigned long r_symndx;
9373 asection *sym_sec;
9374 struct elf_link_hash_entry *h;
854b41e7 9375 bfd_vma val;
c5614fa4
AM
9376
9377 r_type = ELF64_R_TYPE (rel->r_info);
9378 switch (r_type)
9379 {
9380 default:
9381 continue;
9382
9383 case R_PPC64_TOC16:
9384 case R_PPC64_TOC16_LO:
9385 case R_PPC64_TOC16_HI:
9386 case R_PPC64_TOC16_HA:
9387 case R_PPC64_TOC16_DS:
9388 case R_PPC64_TOC16_LO_DS:
9389 case R_PPC64_ADDR64:
9390 break;
9391 }
9392
9393 r_symndx = ELF64_R_SYM (rel->r_info);
9394 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
9395 r_symndx, ibfd))
9396 goto error_ret;
9397
ba761f19 9398 if (sym_sec != toc)
c5614fa4
AM
9399 continue;
9400
ba761f19
AM
9401 if (h != NULL)
9402 val = h->root.u.def.value;
9403 else
9404 {
9405 val = sym->st_value;
9406 if (val != 0)
9407 local_toc_syms = TRUE;
9408 }
9409
9410 val += rel->r_addend;
854b41e7
AM
9411
9412 if (val > toc->rawsize)
9413 val = toc->rawsize;
ba761f19
AM
9414 else if ((skip[val >> 3] & ref_from_discarded) != 0)
9415 continue;
9416 else if ((skip[val >> 3] & can_optimize) != 0)
9417 {
9418 Elf_Internal_Rela *tocrel
425b145b 9419 = toc_relocs + (skip[val >> 3] >> 2);
ba761f19
AM
9420 unsigned long tsym = ELF64_R_SYM (tocrel->r_info);
9421
9422 switch (r_type)
9423 {
9424 case R_PPC64_TOC16_HA:
9425 rel->r_info = ELF64_R_INFO (tsym, R_PPC64_TOC16_HA);
9426 break;
9427
9428 case R_PPC64_TOC16_LO_DS:
9429 rel->r_info = ELF64_R_INFO (tsym, R_PPC64_LO_DS_OPT);
9430 break;
9431
9432 default:
28942f62
AM
9433 if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
9434 ppc_howto_init ();
b140b010 9435 info->callbacks->einfo
695344c0 9436 /* xgettext:c-format */
174d0a74 9437 (_("%H: %s references "
b140b010
AM
9438 "optimized away TOC entry\n"),
9439 ibfd, sec, rel->r_offset,
9440 ppc64_elf_howto_table[r_type]->name);
9441 bfd_set_error (bfd_error_bad_value);
9442 goto error_ret;
ba761f19
AM
9443 }
9444 rel->r_addend = tocrel->r_addend;
9445 elf_section_data (sec)->relocs = relstart;
9446 continue;
9447 }
9448
9449 if (h != NULL || sym->st_value != 0)
9450 continue;
854b41e7
AM
9451
9452 rel->r_addend -= skip[val >> 3];
9453 elf_section_data (sec)->relocs = relstart;
c5614fa4 9454 }
854b41e7
AM
9455
9456 if (elf_section_data (sec)->relocs != relstart)
9457 free (relstart);
c5614fa4
AM
9458 }
9459
9460 /* We shouldn't have local or global symbols defined in the TOC,
9461 but handle them anyway. */
df22d223
AM
9462 if (local_syms != NULL)
9463 for (sym = local_syms;
9464 sym < local_syms + symtab_hdr->sh_info;
9465 ++sym)
9466 if (sym->st_value != 0
9467 && bfd_section_from_elf_index (ibfd, sym->st_shndx) == toc)
9468 {
9469 unsigned long i;
854b41e7 9470
df22d223
AM
9471 if (sym->st_value > toc->rawsize)
9472 i = toc->rawsize >> 3;
9473 else
9474 i = sym->st_value >> 3;
854b41e7 9475
df22d223
AM
9476 if ((skip[i] & (ref_from_discarded | can_optimize)) != 0)
9477 {
9478 if (local_toc_syms)
4eca0228 9479 _bfd_error_handler
df22d223
AM
9480 (_("%s defined on removed toc entry"),
9481 bfd_elf_sym_name (ibfd, symtab_hdr, sym, NULL));
9482 do
9483 ++i;
9484 while ((skip[i] & (ref_from_discarded | can_optimize)));
9485 sym->st_value = (bfd_vma) i << 3;
9486 }
d62b3684 9487
df22d223
AM
9488 sym->st_value -= skip[i];
9489 symtab_hdr->contents = (unsigned char *) local_syms;
9490 }
c5614fa4 9491
854b41e7 9492 /* Adjust any global syms defined in this toc input section. */
c5614fa4
AM
9493 if (toc_inf.global_toc_syms)
9494 {
9495 toc_inf.toc = toc;
9496 toc_inf.skip = skip;
9497 toc_inf.global_toc_syms = FALSE;
9498 elf_link_hash_traverse (elf_hash_table (info), adjust_toc_syms,
9499 &toc_inf);
9500 }
854b41e7
AM
9501
9502 if (toc->reloc_count != 0)
9503 {
d4730f92 9504 Elf_Internal_Shdr *rel_hdr;
854b41e7
AM
9505 Elf_Internal_Rela *wrel;
9506 bfd_size_type sz;
9507
854b41e7 9508 /* Remove unused toc relocs, and adjust those we keep. */
28be611c
AM
9509 if (toc_relocs == NULL)
9510 toc_relocs = _bfd_elf_link_read_relocs (ibfd, toc, NULL, NULL,
9511 info->keep_memory);
9512 if (toc_relocs == NULL)
9513 goto error_ret;
9514
425b145b
AM
9515 wrel = toc_relocs;
9516 for (rel = toc_relocs; rel < toc_relocs + toc->reloc_count; ++rel)
ba761f19
AM
9517 if ((skip[rel->r_offset >> 3]
9518 & (ref_from_discarded | can_optimize)) == 0)
854b41e7
AM
9519 {
9520 wrel->r_offset = rel->r_offset - skip[rel->r_offset >> 3];
9521 wrel->r_info = rel->r_info;
9522 wrel->r_addend = rel->r_addend;
9523 ++wrel;
9524 }
9525 else if (!dec_dynrel_count (rel->r_info, toc, info,
9526 &local_syms, NULL, NULL))
9527 goto error_ret;
9528
425b145b
AM
9529 elf_section_data (toc)->relocs = toc_relocs;
9530 toc->reloc_count = wrel - toc_relocs;
d4730f92
BS
9531 rel_hdr = _bfd_elf_single_rel_hdr (toc);
9532 sz = rel_hdr->sh_entsize;
9533 rel_hdr->sh_size = toc->reloc_count * sz;
854b41e7 9534 }
c5614fa4 9535 }
28be611c
AM
9536 else if (toc_relocs != NULL
9537 && elf_section_data (toc)->relocs != toc_relocs)
425b145b 9538 free (toc_relocs);
c5614fa4
AM
9539
9540 if (local_syms != NULL
9541 && symtab_hdr->contents != (unsigned char *) local_syms)
9542 {
9543 if (!info->keep_memory)
9544 free (local_syms);
9545 else
9546 symtab_hdr->contents = (unsigned char *) local_syms;
9547 }
9548 free (skip);
9549 }
9550
9551 return TRUE;
9552}
9553
1bbe0902
AM
9554/* Return true iff input section I references the TOC using
9555 instructions limited to +/-32k offsets. */
9556
9557bfd_boolean
9558ppc64_elf_has_small_toc_reloc (asection *i)
9559{
9560 return (is_ppc64_elf (i->owner)
9561 && ppc64_elf_tdata (i->owner)->has_small_toc_reloc);
9562}
9563
927be08e
AM
9564/* Allocate space for one GOT entry. */
9565
9566static void
9567allocate_got (struct elf_link_hash_entry *h,
9568 struct bfd_link_info *info,
9569 struct got_entry *gent)
9570{
9571 struct ppc_link_hash_table *htab = ppc_hash_table (info);
927be08e
AM
9572 struct ppc_link_hash_entry *eh = (struct ppc_link_hash_entry *) h;
9573 int entsize = (gent->tls_type & eh->tls_mask & (TLS_GD | TLS_LD)
9574 ? 16 : 8);
9575 int rentsize = (gent->tls_type & eh->tls_mask & TLS_GD
9576 ? 2 : 1) * sizeof (Elf64_External_Rela);
9577 asection *got = ppc64_elf_tdata (gent->owner)->got;
9578
9579 gent->got.offset = got->size;
9580 got->size += entsize;
9581
19e08130 9582 if (h->type == STT_GNU_IFUNC)
927be08e 9583 {
33e44f2e 9584 htab->elf.irelplt->size += rentsize;
19e08130 9585 htab->got_reli_size += rentsize;
927be08e 9586 }
0e1862bb 9587 else if ((bfd_link_pic (info)
f0158f44
AM
9588 || (htab->elf.dynamic_sections_created
9589 && h->dynindx != -1
9590 && !SYMBOL_REFERENCES_LOCAL (info, h)))
21d68fcd 9591 && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
927be08e 9592 {
19e08130 9593 asection *relgot = ppc64_elf_tdata (gent->owner)->relgot;
927be08e 9594 relgot->size += rentsize;
927be08e
AM
9595 }
9596}
9597
7865406b
AM
9598/* This function merges got entries in the same toc group. */
9599
9600static void
9601merge_got_entries (struct got_entry **pent)
9602{
9603 struct got_entry *ent, *ent2;
9604
9605 for (ent = *pent; ent != NULL; ent = ent->next)
9606 if (!ent->is_indirect)
9607 for (ent2 = ent->next; ent2 != NULL; ent2 = ent2->next)
9608 if (!ent2->is_indirect
9609 && ent2->addend == ent->addend
9610 && ent2->tls_type == ent->tls_type
9611 && elf_gp (ent2->owner) == elf_gp (ent->owner))
9612 {
9613 ent2->is_indirect = TRUE;
9614 ent2->got.ent = ent;
9615 }
9616}
9617
46434633 9618/* If H is undefined, make it dynamic if that makes sense. */
f0158f44
AM
9619
9620static bfd_boolean
46434633
AM
9621ensure_undef_dynamic (struct bfd_link_info *info,
9622 struct elf_link_hash_entry *h)
f0158f44
AM
9623{
9624 struct elf_link_hash_table *htab = elf_hash_table (info);
9625
9626 if (htab->dynamic_sections_created
46434633
AM
9627 && ((info->dynamic_undefined_weak != 0
9628 && h->root.type == bfd_link_hash_undefweak)
9629 || h->root.type == bfd_link_hash_undefined)
f0158f44
AM
9630 && h->dynindx == -1
9631 && !h->forced_local
9632 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
9633 return bfd_elf_link_record_dynamic_symbol (info, h);
9634 return TRUE;
9635}
9636
65f38f15
AM
9637/* Allocate space in .plt, .got and associated reloc sections for
9638 dynamic relocs. */
5bd4f169 9639
b34976b6 9640static bfd_boolean
4ce794b7 9641allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
5bd4f169 9642{
65f38f15
AM
9643 struct bfd_link_info *info;
9644 struct ppc_link_hash_table *htab;
5bd4f169 9645 asection *s;
65f38f15 9646 struct ppc_link_hash_entry *eh;
0b8bcf0d 9647 struct got_entry **pgent, *gent;
5bd4f169 9648
e92d460e 9649 if (h->root.type == bfd_link_hash_indirect)
b34976b6 9650 return TRUE;
5bd4f169 9651
65f38f15
AM
9652 info = (struct bfd_link_info *) inf;
9653 htab = ppc_hash_table (info);
4dfe6ac6
NC
9654 if (htab == NULL)
9655 return FALSE;
5bd4f169 9656
951fd09b
AM
9657 eh = (struct ppc_link_hash_entry *) h;
9658 /* Run through the TLS GD got entries first if we're changing them
9659 to TPREL. */
e7b938ca 9660 if ((eh->tls_mask & TLS_TPRELGD) != 0)
951fd09b
AM
9661 for (gent = h->got.glist; gent != NULL; gent = gent->next)
9662 if (gent->got.refcount > 0
9663 && (gent->tls_type & TLS_GD) != 0)
9664 {
9665 /* This was a GD entry that has been converted to TPREL. If
9666 there happens to be a TPREL entry we can use that one. */
9667 struct got_entry *ent;
9668 for (ent = h->got.glist; ent != NULL; ent = ent->next)
9669 if (ent->got.refcount > 0
9670 && (ent->tls_type & TLS_TPREL) != 0
e717da7e
AM
9671 && ent->addend == gent->addend
9672 && ent->owner == gent->owner)
951fd09b
AM
9673 {
9674 gent->got.refcount = 0;
9675 break;
9676 }
9677
9678 /* If not, then we'll be using our own TPREL entry. */
9679 if (gent->got.refcount != 0)
9680 gent->tls_type = TLS_TLS | TLS_TPREL;
9681 }
9682
7865406b
AM
9683 /* Remove any list entry that won't generate a word in the GOT before
9684 we call merge_got_entries. Otherwise we risk merging to empty
9685 entries. */
0b8bcf0d
AM
9686 pgent = &h->got.glist;
9687 while ((gent = *pgent) != NULL)
411e1bfb 9688 if (gent->got.refcount > 0)
7865406b
AM
9689 {
9690 if ((gent->tls_type & TLS_LD) != 0
9691 && !h->def_dynamic)
9692 {
9693 ppc64_tlsld_got (gent->owner)->got.refcount += 1;
9694 *pgent = gent->next;
9695 }
9696 else
9697 pgent = &gent->next;
9698 }
9699 else
9700 *pgent = gent->next;
9701
9702 if (!htab->do_multi_toc)
9703 merge_got_entries (&h->got.glist);
9704
9705 for (gent = h->got.glist; gent != NULL; gent = gent->next)
9706 if (!gent->is_indirect)
411e1bfb 9707 {
46434633
AM
9708 /* Make sure this symbol is output as a dynamic symbol. */
9709 if (!ensure_undef_dynamic (info, h))
f0158f44 9710 return FALSE;
65f38f15 9711
0c8d6e5c 9712 if (!is_ppc64_elf (gent->owner))
927be08e 9713 abort ();
0ffa91dd 9714
927be08e 9715 allocate_got (h, info, gent);
411e1bfb 9716 }
65f38f15 9717
954b63d4
AM
9718 /* If no dynamic sections we can't have dynamic relocs, except for
9719 IFUNCs which are handled even in static executables. */
8a2058b5
AM
9720 if (!htab->elf.dynamic_sections_created
9721 && h->type != STT_GNU_IFUNC)
9722 eh->dyn_relocs = NULL;
9723
954b63d4
AM
9724 /* Also discard relocs on undefined weak syms with non-default
9725 visibility, or when dynamic_undefined_weak says so. */
21d68fcd 9726 else if (UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
954b63d4
AM
9727 eh->dyn_relocs = NULL;
9728
8a2058b5 9729 if (eh->dyn_relocs != NULL)
65f38f15 9730 {
8a2058b5
AM
9731 struct elf_dyn_relocs *p, **pp;
9732
57e7d118
AM
9733 /* In the shared -Bsymbolic case, discard space allocated for
9734 dynamic pc-relative relocs against symbols which turn out to
9735 be defined in regular objects. For the normal shared case,
9736 discard space for relocs that have become local due to symbol
9737 visibility changes. */
9738
9739 if (bfd_link_pic (info))
65f38f15 9740 {
57e7d118
AM
9741 /* Relocs that use pc_count are those that appear on a call
9742 insn, or certain REL relocs (see must_be_dyn_reloc) that
9743 can be generated via assembly. We want calls to
9744 protected symbols to resolve directly to the function
9745 rather than going via the plt. If people want function
9746 pointer comparisons to work as expected then they should
9747 avoid writing weird assembly. */
9748 if (SYMBOL_CALLS_LOCAL (info, h))
9749 {
57e7d118
AM
9750 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
9751 {
9752 p->count -= p->pc_count;
9753 p->pc_count = 0;
9754 if (p->count == 0)
9755 *pp = p->next;
9756 else
9757 pp = &p->next;
9758 }
9759 }
65f38f15 9760
954b63d4 9761 if (eh->dyn_relocs != NULL)
5bd4f169 9762 {
46434633
AM
9763 /* Make sure this symbol is output as a dynamic symbol. */
9764 if (!ensure_undef_dynamic (info, h))
f0158f44 9765 return FALSE;
5bd4f169 9766 }
65f38f15 9767 }
57e7d118 9768 else if (h->type == STT_GNU_IFUNC)
dfbb6ac9 9769 {
8a2058b5
AM
9770 /* A plt entry is always created when making direct calls to
9771 an ifunc, even when building a static executable, but
9772 that doesn't cover all cases. We may have only an ifunc
9773 initialised function pointer for a given ifunc symbol.
9774
9775 For ELFv2, dynamic relocations are not required when
9776 generating a global entry PLT stub. */
9777 if (abiversion (info->output_bfd) >= 2)
9778 {
9779 if (global_entry_stub (h))
9780 eh->dyn_relocs = NULL;
9781 }
9782
9783 /* For ELFv1 we have function descriptors. Descriptors need
9784 to be treated like PLT entries and thus have dynamic
9785 relocations. One exception is when the function
9786 descriptor is copied into .dynbss (which should only
9787 happen with ancient versions of gcc). */
9788 else if (h->needs_copy)
dfbb6ac9 9789 eh->dyn_relocs = NULL;
57e7d118
AM
9790 }
9791 else if (ELIMINATE_COPY_RELOCS)
9792 {
8a2058b5 9793 /* For the non-pic case, discard space for relocs against
57e7d118
AM
9794 symbols which turn out to need copy relocs or are not
9795 dynamic. */
f0158f44
AM
9796 if (!h->non_got_ref
9797 && !h->def_regular)
9798 {
46434633
AM
9799 /* Make sure this symbol is output as a dynamic symbol. */
9800 if (!ensure_undef_dynamic (info, h))
f0158f44 9801 return FALSE;
dfbb6ac9 9802
f0158f44
AM
9803 if (h->dynindx == -1)
9804 eh->dyn_relocs = NULL;
9805 }
9806 else
8a2058b5 9807 eh->dyn_relocs = NULL;
57e7d118
AM
9808 }
9809
9810 /* Finally, allocate space. */
9811 for (p = eh->dyn_relocs; p != NULL; p = p->next)
9812 {
9813 asection *sreloc = elf_section_data (p->sec)->sreloc;
9814 if (eh->elf.type == STT_GNU_IFUNC)
9815 sreloc = htab->elf.irelplt;
9816 sreloc->size += p->count * sizeof (Elf64_External_Rela);
dfbb6ac9 9817 }
65f38f15 9818 }
57e7d118
AM
9819
9820 if ((htab->elf.dynamic_sections_created
f0158f44 9821 && h->dynindx != -1)
57e7d118 9822 || h->type == STT_GNU_IFUNC)
65f38f15 9823 {
57e7d118
AM
9824 struct plt_entry *pent;
9825 bfd_boolean doneone = FALSE;
9826 for (pent = h->plt.plist; pent != NULL; pent = pent->next)
9827 if (pent->plt.refcount > 0)
9828 {
9829 if (!htab->elf.dynamic_sections_created
9830 || h->dynindx == -1)
9831 {
9832 s = htab->elf.iplt;
9833 pent->plt.offset = s->size;
9834 s->size += PLT_ENTRY_SIZE (htab);
9835 s = htab->elf.irelplt;
9836 }
9837 else
9838 {
9839 /* If this is the first .plt entry, make room for the special
9840 first entry. */
9841 s = htab->elf.splt;
9842 if (s->size == 0)
9843 s->size += PLT_INITIAL_ENTRY_SIZE (htab);
65f38f15 9844
57e7d118 9845 pent->plt.offset = s->size;
65f38f15 9846
57e7d118
AM
9847 /* Make room for this entry. */
9848 s->size += PLT_ENTRY_SIZE (htab);
65f38f15 9849
57e7d118
AM
9850 /* Make room for the .glink code. */
9851 s = htab->glink;
9852 if (s->size == 0)
9853 s->size += GLINK_CALL_STUB_SIZE;
9854 if (htab->opd_abi)
9855 {
9856 /* We need bigger stubs past index 32767. */
9857 if (s->size >= GLINK_CALL_STUB_SIZE + 32768*2*4)
9858 s->size += 4;
9859 s->size += 2*4;
9860 }
9861 else
9862 s->size += 4;
65f38f15 9863
57e7d118
AM
9864 /* We also need to make an entry in the .rela.plt section. */
9865 s = htab->elf.srelplt;
9866 }
9867 s->size += sizeof (Elf64_External_Rela);
9868 doneone = TRUE;
9869 }
9870 else
9871 pent->plt.offset = (bfd_vma) -1;
9872 if (!doneone)
9873 {
9874 h->plt.plist = NULL;
9875 h->needs_plt = 0;
9876 }
65f38f15 9877 }
57e7d118 9878 else
65f38f15 9879 {
57e7d118
AM
9880 h->plt.plist = NULL;
9881 h->needs_plt = 0;
65f38f15
AM
9882 }
9883
b34976b6 9884 return TRUE;
65f38f15
AM
9885}
9886
a345bc8d
AM
9887/* Called via elf_link_hash_traverse from ppc64_elf_size_dynamic_sections
9888 to set up space for global entry stubs. These are put in glink,
9889 after the branch table. */
65f38f15 9890
b34976b6 9891static bfd_boolean
a345bc8d 9892size_global_entry_stubs (struct elf_link_hash_entry *h, void *inf)
65f38f15 9893{
a345bc8d
AM
9894 struct bfd_link_info *info;
9895 struct ppc_link_hash_table *htab;
9896 struct plt_entry *pent;
9897 asection *s;
65f38f15 9898
a345bc8d
AM
9899 if (h->root.type == bfd_link_hash_indirect)
9900 return TRUE;
65f38f15 9901
a345bc8d
AM
9902 if (!h->pointer_equality_needed)
9903 return TRUE;
65f38f15 9904
a345bc8d
AM
9905 if (h->def_regular)
9906 return TRUE;
65f38f15 9907
a345bc8d
AM
9908 info = inf;
9909 htab = ppc_hash_table (info);
9910 if (htab == NULL)
9911 return FALSE;
9912
9913 s = htab->glink;
9914 for (pent = h->plt.plist; pent != NULL; pent = pent->next)
9915 if (pent->plt.offset != (bfd_vma) -1
9916 && pent->addend == 0)
9917 {
afe397ea
AM
9918 /* For ELFv2, if this symbol is not defined in a regular file
9919 and we are not generating a shared library or pie, then we
9920 need to define the symbol in the executable on a call stub.
9921 This is to avoid text relocations. */
a345bc8d 9922 s->size = (s->size + 15) & -16;
8a2058b5 9923 h->root.type = bfd_link_hash_defined;
afe397ea
AM
9924 h->root.u.def.section = s;
9925 h->root.u.def.value = s->size;
a345bc8d
AM
9926 s->size += 16;
9927 break;
9928 }
9929 return TRUE;
9930}
9931
9932/* Set DF_TEXTREL if we find any dynamic relocs that apply to
9933 read-only sections. */
9934
9935static bfd_boolean
98bbb1b8 9936maybe_set_textrel (struct elf_link_hash_entry *h, void *inf)
a345bc8d 9937{
98bbb1b8
AM
9938 asection *sec;
9939
a345bc8d
AM
9940 if (h->root.type == bfd_link_hash_indirect)
9941 return TRUE;
9942
98bbb1b8
AM
9943 sec = readonly_dynrelocs (h);
9944 if (sec != NULL)
a345bc8d 9945 {
98bbb1b8
AM
9946 struct bfd_link_info *info = (struct bfd_link_info *) inf;
9947
9948 info->flags |= DF_TEXTREL;
9949 info->callbacks->minfo
9950 (_("%B: dynamic relocation in read-only section `%A'\n"),
9951 sec->owner, sec);
a345bc8d
AM
9952
9953 /* Not an error, just cut short the traversal. */
9954 return FALSE;
65f38f15 9955 }
b34976b6 9956 return TRUE;
65f38f15
AM
9957}
9958
9959/* Set the sizes of the dynamic sections. */
9960
b34976b6 9961static bfd_boolean
ee67d69a 9962ppc64_elf_size_dynamic_sections (bfd *output_bfd,
4ce794b7 9963 struct bfd_link_info *info)
65f38f15
AM
9964{
9965 struct ppc_link_hash_table *htab;
9966 bfd *dynobj;
9967 asection *s;
b34976b6 9968 bfd_boolean relocs;
65f38f15 9969 bfd *ibfd;
7865406b 9970 struct got_entry *first_tlsld;
65f38f15
AM
9971
9972 htab = ppc_hash_table (info);
4dfe6ac6
NC
9973 if (htab == NULL)
9974 return FALSE;
9975
65f38f15
AM
9976 dynobj = htab->elf.dynobj;
9977 if (dynobj == NULL)
9978 abort ();
9979
9980 if (htab->elf.dynamic_sections_created)
9981 {
9982 /* Set the contents of the .interp section to the interpreter. */
9b8b325a 9983 if (bfd_link_executable (info) && !info->nointerp)
65f38f15 9984 {
3d4d4302 9985 s = bfd_get_linker_section (dynobj, ".interp");
65f38f15
AM
9986 if (s == NULL)
9987 abort ();
eea6121a 9988 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
65f38f15
AM
9989 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
9990 }
9991 }
9992
9993 /* Set up .got offsets for local syms, and space for local dynamic
9994 relocs. */
c72f2fb2 9995 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
65f38f15 9996 {
411e1bfb
AM
9997 struct got_entry **lgot_ents;
9998 struct got_entry **end_lgot_ents;
e054468f
AM
9999 struct plt_entry **local_plt;
10000 struct plt_entry **end_local_plt;
f961d9dd 10001 unsigned char *lgot_masks;
65f38f15
AM
10002 bfd_size_type locsymcount;
10003 Elf_Internal_Shdr *symtab_hdr;
65f38f15 10004
0c8d6e5c 10005 if (!is_ppc64_elf (ibfd))
65f38f15
AM
10006 continue;
10007
10008 for (s = ibfd->sections; s != NULL; s = s->next)
10009 {
19e08130 10010 struct ppc_dyn_relocs *p;
65f38f15 10011
6edfbbad 10012 for (p = elf_section_data (s)->local_dynrel; p != NULL; p = p->next)
65f38f15 10013 {
ec338859
AM
10014 if (!bfd_is_abs_section (p->sec)
10015 && bfd_is_abs_section (p->sec->output_section))
10016 {
10017 /* Input section has been discarded, either because
10018 it is a copy of a linkonce section or due to
10019 linker script /DISCARD/, so we'll be discarding
10020 the relocs too. */
10021 }
248866a8 10022 else if (p->count != 0)
ec338859 10023 {
19e08130
AM
10024 asection *srel = elf_section_data (p->sec)->sreloc;
10025 if (p->ifunc)
33e44f2e 10026 srel = htab->elf.irelplt;
eea6121a 10027 srel->size += p->count * sizeof (Elf64_External_Rela);
248866a8
AM
10028 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
10029 info->flags |= DF_TEXTREL;
ec338859 10030 }
65f38f15
AM
10031 }
10032 }
10033
411e1bfb
AM
10034 lgot_ents = elf_local_got_ents (ibfd);
10035 if (!lgot_ents)
65f38f15
AM
10036 continue;
10037
0ffa91dd 10038 symtab_hdr = &elf_symtab_hdr (ibfd);
65f38f15 10039 locsymcount = symtab_hdr->sh_info;
411e1bfb 10040 end_lgot_ents = lgot_ents + locsymcount;
e054468f
AM
10041 local_plt = (struct plt_entry **) end_lgot_ents;
10042 end_local_plt = local_plt + locsymcount;
f961d9dd 10043 lgot_masks = (unsigned char *) end_local_plt;
e717da7e 10044 s = ppc64_elf_tdata (ibfd)->got;
e7b938ca 10045 for (; lgot_ents < end_lgot_ents; ++lgot_ents, ++lgot_masks)
65f38f15 10046 {
0b8bcf0d 10047 struct got_entry **pent, *ent;
411e1bfb 10048
0b8bcf0d
AM
10049 pent = lgot_ents;
10050 while ((ent = *pent) != NULL)
411e1bfb
AM
10051 if (ent->got.refcount > 0)
10052 {
e7b938ca 10053 if ((ent->tls_type & *lgot_masks & TLS_LD) != 0)
411e1bfb 10054 {
927be08e 10055 ppc64_tlsld_got (ibfd)->got.refcount += 1;
0b8bcf0d 10056 *pent = ent->next;
411e1bfb
AM
10057 }
10058 else
10059 {
19e08130
AM
10060 unsigned int ent_size = 8;
10061 unsigned int rel_size = sizeof (Elf64_External_Rela);
10062
eea6121a 10063 ent->got.offset = s->size;
e7b938ca 10064 if ((ent->tls_type & *lgot_masks & TLS_GD) != 0)
927be08e 10065 {
19e08130
AM
10066 ent_size *= 2;
10067 rel_size *= 2;
10068 }
10069 s->size += ent_size;
10070 if ((*lgot_masks & PLT_IFUNC) != 0)
10071 {
33e44f2e 10072 htab->elf.irelplt->size += rel_size;
19e08130
AM
10073 htab->got_reli_size += rel_size;
10074 }
0e1862bb 10075 else if (bfd_link_pic (info))
19e08130
AM
10076 {
10077 asection *srel = ppc64_elf_tdata (ibfd)->relgot;
10078 srel->size += rel_size;
927be08e 10079 }
0b8bcf0d 10080 pent = &ent->next;
411e1bfb
AM
10081 }
10082 }
10083 else
0b8bcf0d 10084 *pent = ent->next;
65f38f15 10085 }
e054468f
AM
10086
10087 /* Allocate space for calls to local STT_GNU_IFUNC syms in .iplt. */
10088 for (; local_plt < end_local_plt; ++local_plt)
10089 {
10090 struct plt_entry *ent;
10091
10092 for (ent = *local_plt; ent != NULL; ent = ent->next)
10093 if (ent->plt.refcount > 0)
10094 {
33e44f2e 10095 s = htab->elf.iplt;
e054468f 10096 ent->plt.offset = s->size;
b9e5796b 10097 s->size += PLT_ENTRY_SIZE (htab);
e054468f 10098
33e44f2e 10099 htab->elf.irelplt->size += sizeof (Elf64_External_Rela);
e054468f
AM
10100 }
10101 else
10102 ent->plt.offset = (bfd_vma) -1;
10103 }
65f38f15
AM
10104 }
10105
10106 /* Allocate global sym .plt and .got entries, and space for global
10107 sym dynamic relocs. */
4ce794b7 10108 elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, info);
a345bc8d
AM
10109 /* Stash the end of glink branch table. */
10110 if (htab->glink != NULL)
10111 htab->glink->rawsize = htab->glink->size;
10112
0e1862bb 10113 if (!htab->opd_abi && !bfd_link_pic (info))
a345bc8d 10114 elf_link_hash_traverse (&htab->elf, size_global_entry_stubs, info);
65f38f15 10115
7865406b 10116 first_tlsld = NULL;
c72f2fb2 10117 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
102890f0 10118 {
7865406b
AM
10119 struct got_entry *ent;
10120
0c8d6e5c 10121 if (!is_ppc64_elf (ibfd))
102890f0
AM
10122 continue;
10123
7865406b
AM
10124 ent = ppc64_tlsld_got (ibfd);
10125 if (ent->got.refcount > 0)
102890f0 10126 {
7865406b 10127 if (!htab->do_multi_toc && first_tlsld != NULL)
102890f0 10128 {
7865406b
AM
10129 ent->is_indirect = TRUE;
10130 ent->got.ent = first_tlsld;
10131 }
10132 else
10133 {
10134 if (first_tlsld == NULL)
10135 first_tlsld = ent;
10136 s = ppc64_elf_tdata (ibfd)->got;
10137 ent->got.offset = s->size;
10138 ent->owner = ibfd;
10139 s->size += 16;
0e1862bb 10140 if (bfd_link_pic (info))
7865406b
AM
10141 {
10142 asection *srel = ppc64_elf_tdata (ibfd)->relgot;
10143 srel->size += sizeof (Elf64_External_Rela);
10144 }
102890f0
AM
10145 }
10146 }
10147 else
7865406b 10148 ent->got.offset = (bfd_vma) -1;
102890f0
AM
10149 }
10150
65f38f15
AM
10151 /* We now have determined the sizes of the various dynamic sections.
10152 Allocate memory for them. */
b34976b6 10153 relocs = FALSE;
65f38f15
AM
10154 for (s = dynobj->sections; s != NULL; s = s->next)
10155 {
10156 if ((s->flags & SEC_LINKER_CREATED) == 0)
10157 continue;
10158
4ce794b7 10159 if (s == htab->brlt || s == htab->relbrlt)
721956f4
AM
10160 /* These haven't been allocated yet; don't strip. */
10161 continue;
33e44f2e
AM
10162 else if (s == htab->elf.sgot
10163 || s == htab->elf.splt
10164 || s == htab->elf.iplt
c456f082 10165 || s == htab->glink
5474d94f
AM
10166 || s == htab->elf.sdynbss
10167 || s == htab->elf.sdynrelro)
65f38f15
AM
10168 {
10169 /* Strip this section if we don't need it; see the
10170 comment below. */
5bd4f169 10171 }
58d180e8
AM
10172 else if (s == htab->glink_eh_frame)
10173 {
10174 if (!bfd_is_abs_section (s->output_section))
10175 /* Not sized yet. */
10176 continue;
10177 }
70cc837d 10178 else if (CONST_STRNEQ (s->name, ".rela"))
5bd4f169 10179 {
c456f082 10180 if (s->size != 0)
5bd4f169 10181 {
33e44f2e 10182 if (s != htab->elf.srelplt)
b34976b6 10183 relocs = TRUE;
5bd4f169
AM
10184
10185 /* We use the reloc_count field as a counter if we need
10186 to copy relocs into the output file. */
10187 s->reloc_count = 0;
10188 }
10189 }
65f38f15 10190 else
5bd4f169
AM
10191 {
10192 /* It's not one of our sections, so don't allocate space. */
10193 continue;
10194 }
10195
eea6121a 10196 if (s->size == 0)
5bd4f169 10197 {
c456f082
AM
10198 /* If we don't need this section, strip it from the
10199 output file. This is mostly to handle .rela.bss and
10200 .rela.plt. We must create both sections in
10201 create_dynamic_sections, because they must be created
10202 before the linker maps input sections to output
10203 sections. The linker does that before
10204 adjust_dynamic_symbol is called, and it is that
10205 function which decides whether anything needs to go
10206 into these sections. */
8423293d 10207 s->flags |= SEC_EXCLUDE;
5bd4f169
AM
10208 continue;
10209 }
10210
c456f082 10211 if ((s->flags & SEC_HAS_CONTENTS) == 0)
5f333394
AM
10212 continue;
10213
65f38f15
AM
10214 /* Allocate memory for the section contents. We use bfd_zalloc
10215 here in case unused entries are not reclaimed before the
10216 section's contents are written out. This should not happen,
411e1bfb
AM
10217 but this way if it does we get a R_PPC64_NONE reloc in .rela
10218 sections instead of garbage.
10219 We also rely on the section contents being zero when writing
5474d94f 10220 the GOT and .dynrelro. */
eea6121a 10221 s->contents = bfd_zalloc (dynobj, s->size);
65f38f15 10222 if (s->contents == NULL)
b34976b6 10223 return FALSE;
5bd4f169
AM
10224 }
10225
c72f2fb2 10226 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
e717da7e 10227 {
0c8d6e5c 10228 if (!is_ppc64_elf (ibfd))
7b53ace3
AM
10229 continue;
10230
e717da7e 10231 s = ppc64_elf_tdata (ibfd)->got;
33e44f2e 10232 if (s != NULL && s != htab->elf.sgot)
e717da7e 10233 {
eea6121a 10234 if (s->size == 0)
8423293d 10235 s->flags |= SEC_EXCLUDE;
e717da7e
AM
10236 else
10237 {
eea6121a 10238 s->contents = bfd_zalloc (ibfd, s->size);
e717da7e
AM
10239 if (s->contents == NULL)
10240 return FALSE;
10241 }
10242 }
10243 s = ppc64_elf_tdata (ibfd)->relgot;
10244 if (s != NULL)
10245 {
eea6121a 10246 if (s->size == 0)
8423293d 10247 s->flags |= SEC_EXCLUDE;
e717da7e
AM
10248 else
10249 {
eea6121a 10250 s->contents = bfd_zalloc (ibfd, s->size);
e717da7e
AM
10251 if (s->contents == NULL)
10252 return FALSE;
10253 relocs = TRUE;
10254 s->reloc_count = 0;
10255 }
10256 }
10257 }
10258
e86ce104 10259 if (htab->elf.dynamic_sections_created)
5bd4f169 10260 {
e8910a83
AM
10261 bfd_boolean tls_opt;
10262
5bd4f169
AM
10263 /* Add some entries to the .dynamic section. We fill in the
10264 values later, in ppc64_elf_finish_dynamic_sections, but we
10265 must add the entries now so that we get the correct size for
10266 the .dynamic section. The DT_DEBUG entry is filled in by the
10267 dynamic linker and used by the debugger. */
dc810e39 10268#define add_dynamic_entry(TAG, VAL) \
5a580b3a 10269 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
dc810e39 10270
0e1862bb 10271 if (bfd_link_executable (info))
5bd4f169 10272 {
dc810e39 10273 if (!add_dynamic_entry (DT_DEBUG, 0))
b34976b6 10274 return FALSE;
5bd4f169
AM
10275 }
10276
33e44f2e 10277 if (htab->elf.splt != NULL && htab->elf.splt->size != 0)
5bd4f169 10278 {
dc810e39
AM
10279 if (!add_dynamic_entry (DT_PLTGOT, 0)
10280 || !add_dynamic_entry (DT_PLTRELSZ, 0)
10281 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
5d1634d7
AM
10282 || !add_dynamic_entry (DT_JMPREL, 0)
10283 || !add_dynamic_entry (DT_PPC64_GLINK, 0))
b34976b6 10284 return FALSE;
5bd4f169
AM
10285 }
10286
ee67d69a 10287 if (NO_OPD_RELOCS && abiversion (output_bfd) <= 1)
19397422
AM
10288 {
10289 if (!add_dynamic_entry (DT_PPC64_OPD, 0)
10290 || !add_dynamic_entry (DT_PPC64_OPDSZ, 0))
b34976b6 10291 return FALSE;
19397422
AM
10292 }
10293
7c9cf415 10294 tls_opt = (htab->params->tls_get_addr_opt
e8910a83
AM
10295 && htab->tls_get_addr_fd != NULL
10296 && htab->tls_get_addr_fd->elf.plt.plist != NULL);
10297 if (tls_opt || !htab->opd_abi)
10298 {
10299 if (!add_dynamic_entry (DT_PPC64_OPT, tls_opt ? PPC64_OPT_TLS : 0))
10300 return FALSE;
10301 }
a7f2871e 10302
5bd4f169
AM
10303 if (relocs)
10304 {
dc810e39
AM
10305 if (!add_dynamic_entry (DT_RELA, 0)
10306 || !add_dynamic_entry (DT_RELASZ, 0)
10307 || !add_dynamic_entry (DT_RELAENT, sizeof (Elf64_External_Rela)))
b34976b6 10308 return FALSE;
5bd4f169 10309
65f38f15
AM
10310 /* If any dynamic relocs apply to a read-only section,
10311 then we need a DT_TEXTREL entry. */
248866a8 10312 if ((info->flags & DF_TEXTREL) == 0)
a345bc8d 10313 elf_link_hash_traverse (&htab->elf, maybe_set_textrel, info);
5bd4f169 10314
65f38f15 10315 if ((info->flags & DF_TEXTREL) != 0)
5bd4f169 10316 {
65f38f15 10317 if (!add_dynamic_entry (DT_TEXTREL, 0))
b34976b6 10318 return FALSE;
5bd4f169 10319 }
5bd4f169 10320 }
5bd4f169 10321 }
65f38f15 10322#undef add_dynamic_entry
5bd4f169 10323
b34976b6 10324 return TRUE;
5bd4f169
AM
10325}
10326
a345bc8d
AM
10327/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
10328
10329static bfd_boolean
10330ppc64_elf_hash_symbol (struct elf_link_hash_entry *h)
10331{
10332 if (h->plt.plist != NULL
10333 && !h->def_regular
10334 && !h->pointer_equality_needed)
10335 return FALSE;
10336
10337 return _bfd_elf_hash_symbol (h);
10338}
10339
721956f4 10340/* Determine the type of stub needed, if any, for a call. */
5bd4f169 10341
4ce794b7
AM
10342static inline enum ppc_stub_type
10343ppc_type_of_stub (asection *input_sec,
10344 const Elf_Internal_Rela *rel,
10345 struct ppc_link_hash_entry **hash,
e054468f 10346 struct plt_entry **plt_ent,
6911b7dc
AM
10347 bfd_vma destination,
10348 unsigned long local_off)
5bd4f169 10349{
721956f4
AM
10350 struct ppc_link_hash_entry *h = *hash;
10351 bfd_vma location;
10352 bfd_vma branch_offset;
10353 bfd_vma max_branch_offset;
4ce794b7 10354 enum elf_ppc64_reloc_type r_type;
5bd4f169 10355
721956f4
AM
10356 if (h != NULL)
10357 {
e054468f 10358 struct plt_entry *ent;
7fe2b9a6 10359 struct ppc_link_hash_entry *fdh = h;
b31867b6
AM
10360 if (h->oh != NULL
10361 && h->oh->is_func_descriptor)
7b8f6675
AM
10362 {
10363 fdh = ppc_follow_link (h->oh);
10364 *hash = fdh;
10365 }
8387904d 10366
e054468f
AM
10367 for (ent = fdh->elf.plt.plist; ent != NULL; ent = ent->next)
10368 if (ent->addend == rel->r_addend
10369 && ent->plt.offset != (bfd_vma) -1)
10370 {
e054468f
AM
10371 *plt_ent = ent;
10372 return ppc_stub_plt_call;
10373 }
5bd4f169 10374
7fe2b9a6
AM
10375 /* Here, we know we don't have a plt entry. If we don't have a
10376 either a defined function descriptor or a defined entry symbol
10377 in a regular object file, then it is pointless trying to make
10378 any other type of stub. */
854b41e7
AM
10379 if (!is_static_defined (&fdh->elf)
10380 && !is_static_defined (&h->elf))
721956f4 10381 return ppc_stub_none;
5d1634d7 10382 }
e054468f
AM
10383 else if (elf_local_got_ents (input_sec->owner) != NULL)
10384 {
10385 Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (input_sec->owner);
10386 struct plt_entry **local_plt = (struct plt_entry **)
10387 elf_local_got_ents (input_sec->owner) + symtab_hdr->sh_info;
10388 unsigned long r_symndx = ELF64_R_SYM (rel->r_info);
10389
10390 if (local_plt[r_symndx] != NULL)
10391 {
10392 struct plt_entry *ent;
10393
10394 for (ent = local_plt[r_symndx]; ent != NULL; ent = ent->next)
10395 if (ent->addend == rel->r_addend
10396 && ent->plt.offset != (bfd_vma) -1)
10397 {
10398 *plt_ent = ent;
10399 return ppc_stub_plt_call;
10400 }
10401 }
10402 }
5d1634d7 10403
721956f4
AM
10404 /* Determine where the call point is. */
10405 location = (input_sec->output_offset
10406 + input_sec->output_section->vma
10407 + rel->r_offset);
5d1634d7 10408
721956f4
AM
10409 branch_offset = destination - location;
10410 r_type = ELF64_R_TYPE (rel->r_info);
5d1634d7 10411
721956f4
AM
10412 /* Determine if a long branch stub is needed. */
10413 max_branch_offset = 1 << 25;
4ce794b7 10414 if (r_type != R_PPC64_REL24)
721956f4 10415 max_branch_offset = 1 << 15;
5d1634d7 10416
6911b7dc 10417 if (branch_offset + max_branch_offset >= 2 * max_branch_offset - local_off)
721956f4
AM
10418 /* We need a stub. Figure out whether a long_branch or plt_branch
10419 is needed later. */
10420 return ppc_stub_long_branch;
5d1634d7 10421
721956f4 10422 return ppc_stub_none;
5d1634d7
AM
10423}
10424
794e51c0
AM
10425/* With power7 weakly ordered memory model, it is possible for ld.so
10426 to update a plt entry in one thread and have another thread see a
10427 stale zero toc entry. To avoid this we need some sort of acquire
10428 barrier in the call stub. One solution is to make the load of the
10429 toc word seem to appear to depend on the load of the function entry
10430 word. Another solution is to test for r2 being zero, and branch to
10431 the appropriate glink entry if so.
10432
10433 . fake dep barrier compare
71a39c98
AM
10434 . ld 12,xxx(2) ld 12,xxx(2)
10435 . mtctr 12 mtctr 12
10436 . xor 11,12,12 ld 2,xxx+8(2)
794e51c0
AM
10437 . add 2,2,11 cmpldi 2,0
10438 . ld 2,xxx+8(2) bnectr+
10439 . bctr b <glink_entry>
10440
10441 The solution involving the compare turns out to be faster, so
10442 that's what we use unless the branch won't reach. */
10443
10444#define ALWAYS_USE_FAKE_DEP 0
10445#define ALWAYS_EMIT_R2SAVE 0
5d1634d7 10446
5d1634d7
AM
10447#define PPC_LO(v) ((v) & 0xffff)
10448#define PPC_HI(v) (((v) >> 16) & 0xffff)
10449#define PPC_HA(v) PPC_HI ((v) + 0x8000)
10450
794e51c0
AM
10451static inline unsigned int
10452plt_stub_size (struct ppc_link_hash_table *htab,
10453 struct ppc_stub_hash_entry *stub_entry,
10454 bfd_vma off)
10455{
b9e5796b
AM
10456 unsigned size = 12;
10457
10458 if (ALWAYS_EMIT_R2SAVE
10459 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10460 size += 4;
10461 if (PPC_HA (off) != 0)
794e51c0 10462 size += 4;
b9e5796b
AM
10463 if (htab->opd_abi)
10464 {
10465 size += 4;
e7d1c40c 10466 if (htab->params->plt_static_chain)
b9e5796b 10467 size += 4;
bd4d2eaa
AM
10468 if (htab->params->plt_thread_safe
10469 && htab->elf.dynamic_sections_created
10470 && stub_entry->h != NULL
10471 && stub_entry->h->elf.dynindx != -1)
b9e5796b 10472 size += 8;
e7d1c40c 10473 if (PPC_HA (off + 8 + 8 * htab->params->plt_static_chain) != PPC_HA (off))
b9e5796b
AM
10474 size += 4;
10475 }
794e51c0
AM
10476 if (stub_entry->h != NULL
10477 && (stub_entry->h == htab->tls_get_addr_fd
10478 || stub_entry->h == htab->tls_get_addr)
7c9cf415 10479 && htab->params->tls_get_addr_opt)
f378ab09
AM
10480 {
10481 size += 7 * 4;
10482 if (ALWAYS_EMIT_R2SAVE
10483 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10484 size += 6 * 4;
10485 }
794e51c0
AM
10486 return size;
10487}
10488
2420fff6
AM
10489/* Depending on the sign of plt_stub_align:
10490 If positive, return the padding to align to a 2**plt_stub_align
10491 boundary.
10492 If negative, if this stub would cross fewer 2**plt_stub_align
10493 boundaries if we align, then return the padding needed to do so. */
10494
794e51c0
AM
10495static inline unsigned int
10496plt_stub_pad (struct ppc_link_hash_table *htab,
10497 struct ppc_stub_hash_entry *stub_entry,
10498 bfd_vma plt_off)
10499{
2420fff6 10500 int stub_align;
794e51c0 10501 unsigned stub_size = plt_stub_size (htab, stub_entry, plt_off);
6f20ed8a 10502 bfd_vma stub_off = stub_entry->group->stub_sec->size;
794e51c0 10503
2420fff6
AM
10504 if (htab->params->plt_stub_align >= 0)
10505 {
10506 stub_align = 1 << htab->params->plt_stub_align;
10507 if ((stub_off & (stub_align - 1)) != 0)
10508 return stub_align - (stub_off & (stub_align - 1));
10509 return 0;
10510 }
10511
10512 stub_align = 1 << -htab->params->plt_stub_align;
794e51c0 10513 if (((stub_off + stub_size - 1) & -stub_align) - (stub_off & -stub_align)
e05fa0ba 10514 > ((stub_size - 1) & -stub_align))
794e51c0
AM
10515 return stub_align - (stub_off & (stub_align - 1));
10516 return 0;
10517}
10518
10519/* Build a .plt call stub. */
10520
10521static inline bfd_byte *
10522build_plt_stub (struct ppc_link_hash_table *htab,
10523 struct ppc_stub_hash_entry *stub_entry,
10524 bfd_byte *p, bfd_vma offset, Elf_Internal_Rela *r)
10525{
e7d1c40c 10526 bfd *obfd = htab->params->stub_bfd;
b9e5796b 10527 bfd_boolean plt_load_toc = htab->opd_abi;
e7d1c40c 10528 bfd_boolean plt_static_chain = htab->params->plt_static_chain;
bd4d2eaa
AM
10529 bfd_boolean plt_thread_safe = (htab->params->plt_thread_safe
10530 && htab->elf.dynamic_sections_created
10531 && stub_entry->h != NULL
10532 && stub_entry->h->elf.dynindx != -1);
794e51c0
AM
10533 bfd_boolean use_fake_dep = plt_thread_safe;
10534 bfd_vma cmp_branch_off = 0;
10535
10536 if (!ALWAYS_USE_FAKE_DEP
b9e5796b 10537 && plt_load_toc
794e51c0 10538 && plt_thread_safe
bd4d2eaa
AM
10539 && !((stub_entry->h == htab->tls_get_addr_fd
10540 || stub_entry->h == htab->tls_get_addr)
7c9cf415 10541 && htab->params->tls_get_addr_opt))
794e51c0
AM
10542 {
10543 bfd_vma pltoff = stub_entry->plt_ent->plt.offset & ~1;
b9e5796b
AM
10544 bfd_vma pltindex = ((pltoff - PLT_INITIAL_ENTRY_SIZE (htab))
10545 / PLT_ENTRY_SIZE (htab));
794e51c0
AM
10546 bfd_vma glinkoff = GLINK_CALL_STUB_SIZE + pltindex * 8;
10547 bfd_vma to, from;
10548
68d62958
AM
10549 if (pltindex > 32768)
10550 glinkoff += (pltindex - 32768) * 4;
794e51c0
AM
10551 to = (glinkoff
10552 + htab->glink->output_offset
10553 + htab->glink->output_section->vma);
6f20ed8a 10554 from = (p - stub_entry->group->stub_sec->contents
794e51c0
AM
10555 + 4 * (ALWAYS_EMIT_R2SAVE
10556 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10557 + 4 * (PPC_HA (offset) != 0)
10558 + 4 * (PPC_HA (offset + 8 + 8 * plt_static_chain)
10559 != PPC_HA (offset))
10560 + 4 * (plt_static_chain != 0)
10561 + 20
6f20ed8a
AM
10562 + stub_entry->group->stub_sec->output_offset
10563 + stub_entry->group->stub_sec->output_section->vma);
794e51c0
AM
10564 cmp_branch_off = to - from;
10565 use_fake_dep = cmp_branch_off + (1 << 25) >= (1 << 26);
10566 }
10567
ac2df442
AM
10568 if (PPC_HA (offset) != 0)
10569 {
176a0d42
AM
10570 if (r != NULL)
10571 {
794e51c0
AM
10572 if (ALWAYS_EMIT_R2SAVE
10573 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10574 r[0].r_offset += 4;
176a0d42 10575 r[0].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_HA);
3b421ab3 10576 r[1].r_offset = r[0].r_offset + 4;
176a0d42
AM
10577 r[1].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO_DS);
10578 r[1].r_addend = r[0].r_addend;
b9e5796b 10579 if (plt_load_toc)
176a0d42 10580 {
b9e5796b 10581 if (PPC_HA (offset + 8 + 8 * plt_static_chain) != PPC_HA (offset))
c7131b65 10582 {
b9e5796b
AM
10583 r[2].r_offset = r[1].r_offset + 4;
10584 r[2].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO);
10585 r[2].r_addend = r[0].r_addend;
10586 }
10587 else
10588 {
10589 r[2].r_offset = r[1].r_offset + 8 + 8 * use_fake_dep;
10590 r[2].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO_DS);
10591 r[2].r_addend = r[0].r_addend + 8;
10592 if (plt_static_chain)
10593 {
10594 r[3].r_offset = r[2].r_offset + 4;
10595 r[3].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO_DS);
10596 r[3].r_addend = r[0].r_addend + 16;
10597 }
c7131b65 10598 }
176a0d42
AM
10599 }
10600 }
794e51c0
AM
10601 if (ALWAYS_EMIT_R2SAVE
10602 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
a078d95a 10603 bfd_put_32 (obfd, STD_R2_0R1 + STK_TOC (htab), p), p += 4;
397998fc
AM
10604 if (plt_load_toc)
10605 {
10606 bfd_put_32 (obfd, ADDIS_R11_R2 | PPC_HA (offset), p), p += 4;
10607 bfd_put_32 (obfd, LD_R12_0R11 | PPC_LO (offset), p), p += 4;
10608 }
10609 else
10610 {
10611 bfd_put_32 (obfd, ADDIS_R12_R2 | PPC_HA (offset), p), p += 4;
10612 bfd_put_32 (obfd, LD_R12_0R12 | PPC_LO (offset), p), p += 4;
10613 }
b9e5796b
AM
10614 if (plt_load_toc
10615 && PPC_HA (offset + 8 + 8 * plt_static_chain) != PPC_HA (offset))
ac2df442 10616 {
71a39c98 10617 bfd_put_32 (obfd, ADDI_R11_R11 | PPC_LO (offset), p), p += 4;
ac2df442
AM
10618 offset = 0;
10619 }
71a39c98 10620 bfd_put_32 (obfd, MTCTR_R12, p), p += 4;
b9e5796b 10621 if (plt_load_toc)
794e51c0 10622 {
b9e5796b
AM
10623 if (use_fake_dep)
10624 {
10625 bfd_put_32 (obfd, XOR_R2_R12_R12, p), p += 4;
10626 bfd_put_32 (obfd, ADD_R11_R11_R2, p), p += 4;
10627 }
10628 bfd_put_32 (obfd, LD_R2_0R11 | PPC_LO (offset + 8), p), p += 4;
10629 if (plt_static_chain)
10630 bfd_put_32 (obfd, LD_R11_0R11 | PPC_LO (offset + 16), p), p += 4;
794e51c0 10631 }
ac2df442
AM
10632 }
10633 else
10634 {
176a0d42
AM
10635 if (r != NULL)
10636 {
794e51c0
AM
10637 if (ALWAYS_EMIT_R2SAVE
10638 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
10639 r[0].r_offset += 4;
176a0d42 10640 r[0].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_DS);
b9e5796b 10641 if (plt_load_toc)
176a0d42 10642 {
b9e5796b 10643 if (PPC_HA (offset + 8 + 8 * plt_static_chain) != PPC_HA (offset))
c7131b65 10644 {
b9e5796b
AM
10645 r[1].r_offset = r[0].r_offset + 4;
10646 r[1].r_info = ELF64_R_INFO (0, R_PPC64_TOC16);
10647 r[1].r_addend = r[0].r_addend;
10648 }
10649 else
10650 {
10651 r[1].r_offset = r[0].r_offset + 8 + 8 * use_fake_dep;
10652 r[1].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_DS);
10653 r[1].r_addend = r[0].r_addend + 8 + 8 * plt_static_chain;
10654 if (plt_static_chain)
10655 {
10656 r[2].r_offset = r[1].r_offset + 4;
10657 r[2].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_DS);
10658 r[2].r_addend = r[0].r_addend + 8;
10659 }
c7131b65 10660 }
176a0d42
AM
10661 }
10662 }
794e51c0
AM
10663 if (ALWAYS_EMIT_R2SAVE
10664 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
a078d95a 10665 bfd_put_32 (obfd, STD_R2_0R1 + STK_TOC (htab), p), p += 4;
71a39c98 10666 bfd_put_32 (obfd, LD_R12_0R2 | PPC_LO (offset), p), p += 4;
b9e5796b
AM
10667 if (plt_load_toc
10668 && PPC_HA (offset + 8 + 8 * plt_static_chain) != PPC_HA (offset))
ac2df442
AM
10669 {
10670 bfd_put_32 (obfd, ADDI_R2_R2 | PPC_LO (offset), p), p += 4;
10671 offset = 0;
10672 }
71a39c98 10673 bfd_put_32 (obfd, MTCTR_R12, p), p += 4;
b9e5796b 10674 if (plt_load_toc)
794e51c0 10675 {
b9e5796b
AM
10676 if (use_fake_dep)
10677 {
10678 bfd_put_32 (obfd, XOR_R11_R12_R12, p), p += 4;
10679 bfd_put_32 (obfd, ADD_R2_R2_R11, p), p += 4;
10680 }
10681 if (plt_static_chain)
10682 bfd_put_32 (obfd, LD_R11_0R2 | PPC_LO (offset + 16), p), p += 4;
10683 bfd_put_32 (obfd, LD_R2_0R2 | PPC_LO (offset + 8), p), p += 4;
794e51c0 10684 }
ac2df442 10685 }
b9e5796b 10686 if (plt_load_toc && plt_thread_safe && !use_fake_dep)
794e51c0
AM
10687 {
10688 bfd_put_32 (obfd, CMPLDI_R2_0, p), p += 4;
10689 bfd_put_32 (obfd, BNECTR_P4, p), p += 4;
22aa0c7e 10690 bfd_put_32 (obfd, B_DOT | (cmp_branch_off & 0x3fffffc), p), p += 4;
794e51c0
AM
10691 }
10692 else
10693 bfd_put_32 (obfd, BCTR, p), p += 4;
5d1634d7
AM
10694 return p;
10695}
10696
a7f2871e
AM
10697/* Build a special .plt call stub for __tls_get_addr. */
10698
10699#define LD_R11_0R3 0xe9630000
10700#define LD_R12_0R3 0xe9830000
10701#define MR_R0_R3 0x7c601b78
10702#define CMPDI_R11_0 0x2c2b0000
10703#define ADD_R3_R12_R13 0x7c6c6a14
10704#define BEQLR 0x4d820020
10705#define MR_R3_R0 0x7c030378
a7f2871e
AM
10706#define STD_R11_0R1 0xf9610000
10707#define BCTRL 0x4e800421
10708#define LD_R11_0R1 0xe9610000
a7f2871e
AM
10709#define MTLR_R11 0x7d6803a6
10710
10711static inline bfd_byte *
794e51c0
AM
10712build_tls_get_addr_stub (struct ppc_link_hash_table *htab,
10713 struct ppc_stub_hash_entry *stub_entry,
10714 bfd_byte *p, bfd_vma offset, Elf_Internal_Rela *r)
a7f2871e 10715{
e7d1c40c 10716 bfd *obfd = htab->params->stub_bfd;
794e51c0 10717
a7f2871e
AM
10718 bfd_put_32 (obfd, LD_R11_0R3 + 0, p), p += 4;
10719 bfd_put_32 (obfd, LD_R12_0R3 + 8, p), p += 4;
10720 bfd_put_32 (obfd, MR_R0_R3, p), p += 4;
10721 bfd_put_32 (obfd, CMPDI_R11_0, p), p += 4;
10722 bfd_put_32 (obfd, ADD_R3_R12_R13, p), p += 4;
10723 bfd_put_32 (obfd, BEQLR, p), p += 4;
10724 bfd_put_32 (obfd, MR_R3_R0, p), p += 4;
f378ab09
AM
10725 if (r != NULL)
10726 r[0].r_offset += 7 * 4;
10727 if (!ALWAYS_EMIT_R2SAVE
10728 && stub_entry->stub_type != ppc_stub_plt_call_r2save)
10729 return build_plt_stub (htab, stub_entry, p, offset, r);
10730
a7f2871e 10731 bfd_put_32 (obfd, MFLR_R11, p), p += 4;
a078d95a 10732 bfd_put_32 (obfd, STD_R11_0R1 + STK_LINKER (htab), p), p += 4;
a7f2871e
AM
10733
10734 if (r != NULL)
f378ab09 10735 r[0].r_offset += 2 * 4;
794e51c0 10736 p = build_plt_stub (htab, stub_entry, p, offset, r);
a7f2871e
AM
10737 bfd_put_32 (obfd, BCTRL, p - 4);
10738
a078d95a 10739 bfd_put_32 (obfd, LD_R2_0R1 + STK_TOC (htab), p), p += 4;
bd4d2eaa 10740 bfd_put_32 (obfd, LD_R11_0R1 + STK_LINKER (htab), p), p += 4;
a7f2871e
AM
10741 bfd_put_32 (obfd, MTLR_R11, p), p += 4;
10742 bfd_put_32 (obfd, BLR, p), p += 4;
10743
10744 return p;
10745}
10746
176a0d42
AM
10747static Elf_Internal_Rela *
10748get_relocs (asection *sec, int count)
10749{
10750 Elf_Internal_Rela *relocs;
10751 struct bfd_elf_section_data *elfsec_data;
10752
10753 elfsec_data = elf_section_data (sec);
10754 relocs = elfsec_data->relocs;
10755 if (relocs == NULL)
10756 {
10757 bfd_size_type relsize;
10758 relsize = sec->reloc_count * sizeof (*relocs);
10759 relocs = bfd_alloc (sec->owner, relsize);
10760 if (relocs == NULL)
10761 return NULL;
10762 elfsec_data->relocs = relocs;
d4730f92
BS
10763 elfsec_data->rela.hdr = bfd_zalloc (sec->owner,
10764 sizeof (Elf_Internal_Shdr));
10765 if (elfsec_data->rela.hdr == NULL)
10766 return NULL;
10767 elfsec_data->rela.hdr->sh_size = (sec->reloc_count
10768 * sizeof (Elf64_External_Rela));
10769 elfsec_data->rela.hdr->sh_entsize = sizeof (Elf64_External_Rela);
176a0d42
AM
10770 sec->reloc_count = 0;
10771 }
10772 relocs += sec->reloc_count;
10773 sec->reloc_count += count;
10774 return relocs;
10775}
10776
aa374f67 10777static bfd_vma
25f53a85 10778get_r2off (struct bfd_link_info *info,
aa374f67
AM
10779 struct ppc_stub_hash_entry *stub_entry)
10780{
25f53a85 10781 struct ppc_link_hash_table *htab = ppc_hash_table (info);
6f20ed8a 10782 bfd_vma r2off = htab->sec_info[stub_entry->target_section->id].toc_off;
aa374f67
AM
10783
10784 if (r2off == 0)
10785 {
10786 /* Support linking -R objects. Get the toc pointer from the
10787 opd entry. */
10788 char buf[8];
b9e5796b
AM
10789 if (!htab->opd_abi)
10790 return r2off;
aa374f67
AM
10791 asection *opd = stub_entry->h->elf.root.u.def.section;
10792 bfd_vma opd_off = stub_entry->h->elf.root.u.def.value;
10793
10794 if (strcmp (opd->name, ".opd") != 0
10795 || opd->reloc_count != 0)
10796 {
bc30df16 10797 info->callbacks->einfo (_("%P: cannot find opd entry toc for `%T'\n"),
25f53a85 10798 stub_entry->h->elf.root.root.string);
aa374f67 10799 bfd_set_error (bfd_error_bad_value);
a7c49797 10800 return (bfd_vma) -1;
aa374f67
AM
10801 }
10802 if (!bfd_get_section_contents (opd->owner, opd, buf, opd_off + 8, 8))
a7c49797 10803 return (bfd_vma) -1;
aa374f67 10804 r2off = bfd_get_64 (opd->owner, buf);
25f53a85 10805 r2off -= elf_gp (info->output_bfd);
aa374f67 10806 }
6f20ed8a 10807 r2off -= htab->sec_info[stub_entry->group->link_sec->id].toc_off;
aa374f67
AM
10808 return r2off;
10809}
10810
b34976b6 10811static bfd_boolean
4ce794b7 10812ppc_build_one_stub (struct bfd_hash_entry *gen_entry, void *in_arg)
5d1634d7 10813{
721956f4
AM
10814 struct ppc_stub_hash_entry *stub_entry;
10815 struct ppc_branch_hash_entry *br_entry;
5d1634d7
AM
10816 struct bfd_link_info *info;
10817 struct ppc_link_hash_table *htab;
721956f4
AM
10818 bfd_byte *loc;
10819 bfd_byte *p;
ee75fd95 10820 bfd_vma dest, off;
721956f4 10821 int size;
176a0d42 10822 Elf_Internal_Rela *r;
e054468f 10823 asection *plt;
5d1634d7 10824
721956f4
AM
10825 /* Massage our args to the form they really have. */
10826 stub_entry = (struct ppc_stub_hash_entry *) gen_entry;
4ce794b7 10827 info = in_arg;
5d1634d7 10828
5d1634d7 10829 htab = ppc_hash_table (info);
4dfe6ac6
NC
10830 if (htab == NULL)
10831 return FALSE;
5d1634d7 10832
721956f4 10833 /* Make a note of the offset within the stubs for this entry. */
6f20ed8a
AM
10834 stub_entry->stub_offset = stub_entry->group->stub_sec->size;
10835 loc = stub_entry->group->stub_sec->contents + stub_entry->stub_offset;
721956f4 10836
4ce794b7 10837 htab->stub_count[stub_entry->stub_type - 1] += 1;
721956f4 10838 switch (stub_entry->stub_type)
5d1634d7 10839 {
721956f4 10840 case ppc_stub_long_branch:
ad8e1ba5 10841 case ppc_stub_long_branch_r2off:
721956f4 10842 /* Branches are relative. This is where we are going to. */
6911b7dc
AM
10843 dest = (stub_entry->target_value
10844 + stub_entry->target_section->output_offset
10845 + stub_entry->target_section->output_section->vma);
10846 dest += PPC64_LOCAL_ENTRY_OFFSET (stub_entry->other);
10847 off = dest;
5d1634d7 10848
721956f4
AM
10849 /* And this is where we are coming from. */
10850 off -= (stub_entry->stub_offset
6f20ed8a
AM
10851 + stub_entry->group->stub_sec->output_offset
10852 + stub_entry->group->stub_sec->output_section->vma);
e86ce104 10853
ac2df442
AM
10854 size = 4;
10855 if (stub_entry->stub_type == ppc_stub_long_branch_r2off)
ad8e1ba5 10856 {
25f53a85 10857 bfd_vma r2off = get_r2off (info, stub_entry);
ad8e1ba5 10858
a7c49797 10859 if (r2off == (bfd_vma) -1)
aa374f67
AM
10860 {
10861 htab->stub_error = TRUE;
10862 return FALSE;
10863 }
e7d1c40c 10864 bfd_put_32 (htab->params->stub_bfd, STD_R2_0R1 + STK_TOC (htab), loc);
ad8e1ba5 10865 loc += 4;
a7c49797 10866 size = 8;
ac2df442
AM
10867 if (PPC_HA (r2off) != 0)
10868 {
e7d1c40c
AM
10869 bfd_put_32 (htab->params->stub_bfd,
10870 ADDIS_R2_R2 | PPC_HA (r2off), loc);
ac2df442 10871 loc += 4;
a7c49797
AM
10872 size += 4;
10873 }
10874 if (PPC_LO (r2off) != 0)
10875 {
10876 bfd_put_32 (htab->params->stub_bfd,
10877 ADDI_R2_R2 | PPC_LO (r2off), loc);
10878 loc += 4;
10879 size += 4;
ac2df442 10880 }
ac2df442 10881 off -= size - 4;
ad8e1ba5 10882 }
e7d1c40c 10883 bfd_put_32 (htab->params->stub_bfd, B_DOT | (off & 0x3fffffc), loc);
ad8e1ba5 10884
5c3dead3
AM
10885 if (off + (1 << 25) >= (bfd_vma) (1 << 26))
10886 {
bc30df16
AM
10887 info->callbacks->einfo
10888 (_("%P: long branch stub `%s' offset overflow\n"),
10889 stub_entry->root.string);
5c3dead3
AM
10890 htab->stub_error = TRUE;
10891 return FALSE;
10892 }
ee75fd95
AM
10893
10894 if (info->emitrelocations)
10895 {
6f20ed8a 10896 r = get_relocs (stub_entry->group->stub_sec, 1);
176a0d42
AM
10897 if (r == NULL)
10898 return FALSE;
6f20ed8a 10899 r->r_offset = loc - stub_entry->group->stub_sec->contents;
ee75fd95
AM
10900 r->r_info = ELF64_R_INFO (0, R_PPC64_REL24);
10901 r->r_addend = dest;
10902 if (stub_entry->h != NULL)
10903 {
10904 struct elf_link_hash_entry **hashes;
10905 unsigned long symndx;
10906 struct ppc_link_hash_entry *h;
10907
e7d1c40c 10908 hashes = elf_sym_hashes (htab->params->stub_bfd);
ee75fd95
AM
10909 if (hashes == NULL)
10910 {
10911 bfd_size_type hsize;
10912
10913 hsize = (htab->stub_globals + 1) * sizeof (*hashes);
e7d1c40c 10914 hashes = bfd_zalloc (htab->params->stub_bfd, hsize);
ee75fd95
AM
10915 if (hashes == NULL)
10916 return FALSE;
e7d1c40c 10917 elf_sym_hashes (htab->params->stub_bfd) = hashes;
ee75fd95
AM
10918 htab->stub_globals = 1;
10919 }
10920 symndx = htab->stub_globals++;
10921 h = stub_entry->h;
10922 hashes[symndx] = &h->elf;
10923 r->r_info = ELF64_R_INFO (symndx, R_PPC64_REL24);
10924 if (h->oh != NULL && h->oh->is_func)
b31867b6 10925 h = ppc_follow_link (h->oh);
ee75fd95
AM
10926 if (h->elf.root.u.def.section != stub_entry->target_section)
10927 /* H is an opd symbol. The addend must be zero. */
10928 r->r_addend = 0;
10929 else
10930 {
10931 off = (h->elf.root.u.def.value
10932 + h->elf.root.u.def.section->output_offset
10933 + h->elf.root.u.def.section->output_section->vma);
10934 r->r_addend -= off;
10935 }
10936 }
10937 }
721956f4 10938 break;
e86ce104 10939
721956f4 10940 case ppc_stub_plt_branch:
ad8e1ba5 10941 case ppc_stub_plt_branch_r2off:
721956f4
AM
10942 br_entry = ppc_branch_hash_lookup (&htab->branch_hash_table,
10943 stub_entry->root.string + 9,
b34976b6 10944 FALSE, FALSE);
721956f4
AM
10945 if (br_entry == NULL)
10946 {
8de848d8 10947 info->callbacks->einfo (_("%P: can't find branch stub `%s'\n"),
25f53a85 10948 stub_entry->root.string);
b34976b6
AM
10949 htab->stub_error = TRUE;
10950 return FALSE;
721956f4
AM
10951 }
10952
176a0d42
AM
10953 dest = (stub_entry->target_value
10954 + stub_entry->target_section->output_offset
10955 + stub_entry->target_section->output_section->vma);
6911b7dc
AM
10956 if (stub_entry->stub_type != ppc_stub_plt_branch_r2off)
10957 dest += PPC64_LOCAL_ENTRY_OFFSET (stub_entry->other);
721956f4 10958
176a0d42 10959 bfd_put_64 (htab->brlt->owner, dest,
4ce794b7 10960 htab->brlt->contents + br_entry->offset);
721956f4 10961
f94498ff 10962 if (br_entry->iter == htab->stub_iteration)
721956f4 10963 {
f94498ff 10964 br_entry->iter = 0;
84f5d08e 10965
f94498ff 10966 if (htab->relbrlt != NULL)
84f5d08e 10967 {
f94498ff
AM
10968 /* Create a reloc for the branch lookup table entry. */
10969 Elf_Internal_Rela rela;
10970 bfd_byte *rl;
10971
10972 rela.r_offset = (br_entry->offset
10973 + htab->brlt->output_offset
10974 + htab->brlt->output_section->vma);
10975 rela.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
176a0d42 10976 rela.r_addend = dest;
f94498ff
AM
10977
10978 rl = htab->relbrlt->contents;
10979 rl += (htab->relbrlt->reloc_count++
10980 * sizeof (Elf64_External_Rela));
10981 bfd_elf64_swap_reloca_out (htab->relbrlt->owner, &rela, rl);
10982 }
10983 else if (info->emitrelocations)
10984 {
176a0d42
AM
10985 r = get_relocs (htab->brlt, 1);
10986 if (r == NULL)
10987 return FALSE;
10988 /* brlt, being SEC_LINKER_CREATED does not go through the
10989 normal reloc processing. Symbols and offsets are not
10990 translated from input file to output file form, so
10991 set up the offset per the output file. */
f94498ff
AM
10992 r->r_offset = (br_entry->offset
10993 + htab->brlt->output_offset
10994 + htab->brlt->output_section->vma);
10995 r->r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
176a0d42 10996 r->r_addend = dest;
84f5d08e 10997 }
84f5d08e 10998 }
721956f4 10999
176a0d42
AM
11000 dest = (br_entry->offset
11001 + htab->brlt->output_offset
11002 + htab->brlt->output_section->vma);
11003
11004 off = (dest
4ce794b7 11005 - elf_gp (htab->brlt->output_section->owner)
6f20ed8a 11006 - htab->sec_info[stub_entry->group->link_sec->id].toc_off);
721956f4 11007
ad8e1ba5 11008 if (off + 0x80008000 > 0xffffffff || (off & 7) != 0)
5d1634d7 11009 {
25f53a85 11010 info->callbacks->einfo
bc30df16 11011 (_("%P: linkage table error against `%T'\n"),
721956f4 11012 stub_entry->root.string);
5d1634d7 11013 bfd_set_error (bfd_error_bad_value);
b34976b6
AM
11014 htab->stub_error = TRUE;
11015 return FALSE;
5d1634d7 11016 }
41bd81ab 11017
176a0d42
AM
11018 if (info->emitrelocations)
11019 {
6f20ed8a 11020 r = get_relocs (stub_entry->group->stub_sec, 1 + (PPC_HA (off) != 0));
176a0d42
AM
11021 if (r == NULL)
11022 return FALSE;
6f20ed8a 11023 r[0].r_offset = loc - stub_entry->group->stub_sec->contents;
7cfbafbc
AM
11024 if (bfd_big_endian (info->output_bfd))
11025 r[0].r_offset += 2;
00f412ee 11026 if (stub_entry->stub_type == ppc_stub_plt_branch_r2off)
176a0d42
AM
11027 r[0].r_offset += 4;
11028 r[0].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_DS);
11029 r[0].r_addend = dest;
11030 if (PPC_HA (off) != 0)
11031 {
11032 r[0].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_HA);
11033 r[1].r_offset = r[0].r_offset + 4;
11034 r[1].r_info = ELF64_R_INFO (0, R_PPC64_TOC16_LO_DS);
11035 r[1].r_addend = r[0].r_addend;
11036 }
11037 }
11038
00f412ee 11039 if (stub_entry->stub_type != ppc_stub_plt_branch_r2off)
ad8e1ba5 11040 {
176a0d42 11041 if (PPC_HA (off) != 0)
ac2df442
AM
11042 {
11043 size = 16;
e7d1c40c 11044 bfd_put_32 (htab->params->stub_bfd,
397998fc 11045 ADDIS_R12_R2 | PPC_HA (off), loc);
ac2df442 11046 loc += 4;
e7d1c40c 11047 bfd_put_32 (htab->params->stub_bfd,
397998fc 11048 LD_R12_0R12 | PPC_LO (off), loc);
ac2df442
AM
11049 }
11050 else
11051 {
11052 size = 12;
e7d1c40c
AM
11053 bfd_put_32 (htab->params->stub_bfd,
11054 LD_R12_0R2 | PPC_LO (off), loc);
ac2df442 11055 }
ad8e1ba5
AM
11056 }
11057 else
11058 {
25f53a85 11059 bfd_vma r2off = get_r2off (info, stub_entry);
aa374f67 11060
a7c49797 11061 if (r2off == (bfd_vma) -1)
aa374f67
AM
11062 {
11063 htab->stub_error = TRUE;
11064 return FALSE;
11065 }
ad8e1ba5 11066
e7d1c40c 11067 bfd_put_32 (htab->params->stub_bfd, STD_R2_0R1 + STK_TOC (htab), loc);
ad8e1ba5 11068 loc += 4;
00f412ee 11069 size = 16;
176a0d42 11070 if (PPC_HA (off) != 0)
ac2df442
AM
11071 {
11072 size += 4;
e7d1c40c 11073 bfd_put_32 (htab->params->stub_bfd,
397998fc 11074 ADDIS_R12_R2 | PPC_HA (off), loc);
ac2df442 11075 loc += 4;
e7d1c40c 11076 bfd_put_32 (htab->params->stub_bfd,
397998fc 11077 LD_R12_0R12 | PPC_LO (off), loc);
ac2df442
AM
11078 }
11079 else
e7d1c40c 11080 bfd_put_32 (htab->params->stub_bfd, LD_R12_0R2 | PPC_LO (off), loc);
ac2df442
AM
11081
11082 if (PPC_HA (r2off) != 0)
11083 {
11084 size += 4;
00f412ee 11085 loc += 4;
e7d1c40c
AM
11086 bfd_put_32 (htab->params->stub_bfd,
11087 ADDIS_R2_R2 | PPC_HA (r2off), loc);
00f412ee
AM
11088 }
11089 if (PPC_LO (r2off) != 0)
11090 {
11091 size += 4;
ac2df442 11092 loc += 4;
e7d1c40c
AM
11093 bfd_put_32 (htab->params->stub_bfd,
11094 ADDI_R2_R2 | PPC_LO (r2off), loc);
ac2df442 11095 }
ad8e1ba5
AM
11096 }
11097 loc += 4;
e7d1c40c 11098 bfd_put_32 (htab->params->stub_bfd, MTCTR_R12, loc);
ad8e1ba5 11099 loc += 4;
e7d1c40c 11100 bfd_put_32 (htab->params->stub_bfd, BCTR, loc);
721956f4 11101 break;
5d1634d7 11102
721956f4 11103 case ppc_stub_plt_call:
794e51c0 11104 case ppc_stub_plt_call_r2save:
e054468f 11105 if (stub_entry->h != NULL
b31867b6
AM
11106 && stub_entry->h->is_func_descriptor
11107 && stub_entry->h->oh != NULL)
c862ae31 11108 {
b31867b6
AM
11109 struct ppc_link_hash_entry *fh = ppc_follow_link (stub_entry->h->oh);
11110
11111 /* If the old-ABI "dot-symbol" is undefined make it weak so
6f20ed8a 11112 we don't get a link error from RELOC_FOR_GLOBAL_SYMBOL. */
8c5b4e52
AM
11113 if (fh->elf.root.type == bfd_link_hash_undefined
11114 && (stub_entry->h->elf.root.type == bfd_link_hash_defined
11115 || stub_entry->h->elf.root.type == bfd_link_hash_defweak))
b31867b6 11116 fh->elf.root.type = bfd_link_hash_undefweak;
c862ae31
AM
11117 }
11118
721956f4 11119 /* Now build the stub. */
e054468f 11120 dest = stub_entry->plt_ent->plt.offset & ~1;
176a0d42 11121 if (dest >= (bfd_vma) -2)
721956f4
AM
11122 abort ();
11123
33e44f2e 11124 plt = htab->elf.splt;
25f23106
AM
11125 if (!htab->elf.dynamic_sections_created
11126 || stub_entry->h == NULL
11127 || stub_entry->h->elf.dynindx == -1)
33e44f2e 11128 plt = htab->elf.iplt;
e054468f
AM
11129
11130 dest += plt->output_offset + plt->output_section->vma;
11131
11132 if (stub_entry->h == NULL
11133 && (stub_entry->plt_ent->plt.offset & 1) == 0)
11134 {
11135 Elf_Internal_Rela rela;
11136 bfd_byte *rl;
11137
11138 rela.r_offset = dest;
ee67d69a
AM
11139 if (htab->opd_abi)
11140 rela.r_info = ELF64_R_INFO (0, R_PPC64_JMP_IREL);
11141 else
11142 rela.r_info = ELF64_R_INFO (0, R_PPC64_IRELATIVE);
e054468f
AM
11143 rela.r_addend = (stub_entry->target_value
11144 + stub_entry->target_section->output_offset
11145 + stub_entry->target_section->output_section->vma);
11146
33e44f2e
AM
11147 rl = (htab->elf.irelplt->contents
11148 + (htab->elf.irelplt->reloc_count++
25f23106
AM
11149 * sizeof (Elf64_External_Rela)));
11150 bfd_elf64_swap_reloca_out (info->output_bfd, &rela, rl);
e054468f 11151 stub_entry->plt_ent->plt.offset |= 1;
82e66161 11152 htab->local_ifunc_resolver = 1;
e054468f 11153 }
176a0d42
AM
11154
11155 off = (dest
e054468f 11156 - elf_gp (plt->output_section->owner)
6f20ed8a 11157 - htab->sec_info[stub_entry->group->link_sec->id].toc_off);
721956f4 11158
ad8e1ba5 11159 if (off + 0x80008000 > 0xffffffff || (off & 7) != 0)
721956f4 11160 {
25f53a85 11161 info->callbacks->einfo
695344c0 11162 /* xgettext:c-format */
bc30df16 11163 (_("%P: linkage table error against `%T'\n"),
e054468f
AM
11164 stub_entry->h != NULL
11165 ? stub_entry->h->elf.root.root.string
11166 : "<local sym>");
721956f4 11167 bfd_set_error (bfd_error_bad_value);
b34976b6
AM
11168 htab->stub_error = TRUE;
11169 return FALSE;
721956f4
AM
11170 }
11171
e7d1c40c 11172 if (htab->params->plt_stub_align != 0)
794e51c0
AM
11173 {
11174 unsigned pad = plt_stub_pad (htab, stub_entry, off);
11175
6f20ed8a
AM
11176 stub_entry->group->stub_sec->size += pad;
11177 stub_entry->stub_offset = stub_entry->group->stub_sec->size;
794e51c0
AM
11178 loc += pad;
11179 }
11180
176a0d42
AM
11181 r = NULL;
11182 if (info->emitrelocations)
11183 {
6f20ed8a 11184 r = get_relocs (stub_entry->group->stub_sec,
3ba720c7
AM
11185 ((PPC_HA (off) != 0)
11186 + (htab->opd_abi
e7d1c40c 11187 ? 2 + (htab->params->plt_static_chain
3ba720c7
AM
11188 && PPC_HA (off + 16) == PPC_HA (off))
11189 : 1)));
176a0d42
AM
11190 if (r == NULL)
11191 return FALSE;
6f20ed8a 11192 r[0].r_offset = loc - stub_entry->group->stub_sec->contents;
7cfbafbc
AM
11193 if (bfd_big_endian (info->output_bfd))
11194 r[0].r_offset += 2;
176a0d42
AM
11195 r[0].r_addend = dest;
11196 }
a7f2871e
AM
11197 if (stub_entry->h != NULL
11198 && (stub_entry->h == htab->tls_get_addr_fd
11199 || stub_entry->h == htab->tls_get_addr)
7c9cf415 11200 && htab->params->tls_get_addr_opt)
794e51c0 11201 p = build_tls_get_addr_stub (htab, stub_entry, loc, off, r);
a7f2871e 11202 else
794e51c0 11203 p = build_plt_stub (htab, stub_entry, loc, off, r);
721956f4
AM
11204 size = p - loc;
11205 break;
11206
a4b6fadd
AM
11207 case ppc_stub_save_res:
11208 return TRUE;
11209
721956f4
AM
11210 default:
11211 BFD_FAIL ();
b34976b6 11212 return FALSE;
721956f4
AM
11213 }
11214
6f20ed8a 11215 stub_entry->group->stub_sec->size += size;
97b639ba 11216
e7d1c40c 11217 if (htab->params->emit_stub_syms)
97b639ba
AM
11218 {
11219 struct elf_link_hash_entry *h;
ee75fd95
AM
11220 size_t len1, len2;
11221 char *name;
11222 const char *const stub_str[] = { "long_branch",
11223 "long_branch_r2off",
11224 "plt_branch",
11225 "plt_branch_r2off",
794e51c0 11226 "plt_call",
ee75fd95
AM
11227 "plt_call" };
11228
11229 len1 = strlen (stub_str[stub_entry->stub_type - 1]);
11230 len2 = strlen (stub_entry->root.string);
11231 name = bfd_malloc (len1 + len2 + 2);
11232 if (name == NULL)
11233 return FALSE;
11234 memcpy (name, stub_entry->root.string, 9);
11235 memcpy (name + 9, stub_str[stub_entry->stub_type - 1], len1);
11236 memcpy (name + len1 + 9, stub_entry->root.string + 8, len2 - 8 + 1);
11237 h = elf_link_hash_lookup (&htab->elf, name, TRUE, FALSE, FALSE);
97b639ba
AM
11238 if (h == NULL)
11239 return FALSE;
11240 if (h->root.type == bfd_link_hash_new)
11241 {
11242 h->root.type = bfd_link_hash_defined;
6f20ed8a 11243 h->root.u.def.section = stub_entry->group->stub_sec;
97b639ba 11244 h->root.u.def.value = stub_entry->stub_offset;
f5385ebf
AM
11245 h->ref_regular = 1;
11246 h->def_regular = 1;
11247 h->ref_regular_nonweak = 1;
11248 h->forced_local = 1;
11249 h->non_elf = 0;
2ec55de3 11250 h->root.linker_def = 1;
97b639ba
AM
11251 }
11252 }
11253
b34976b6 11254 return TRUE;
721956f4
AM
11255}
11256
11257/* As above, but don't actually build the stub. Just bump offset so
11258 we know stub section sizes, and select plt_branch stubs where
11259 long_branch stubs won't do. */
11260
b34976b6 11261static bfd_boolean
4ce794b7 11262ppc_size_one_stub (struct bfd_hash_entry *gen_entry, void *in_arg)
721956f4
AM
11263{
11264 struct ppc_stub_hash_entry *stub_entry;
63bc6f6c 11265 struct bfd_link_info *info;
721956f4
AM
11266 struct ppc_link_hash_table *htab;
11267 bfd_vma off;
11268 int size;
11269
11270 /* Massage our args to the form they really have. */
11271 stub_entry = (struct ppc_stub_hash_entry *) gen_entry;
63bc6f6c
AM
11272 info = in_arg;
11273
11274 htab = ppc_hash_table (info);
4dfe6ac6
NC
11275 if (htab == NULL)
11276 return FALSE;
721956f4 11277
a4b6fadd
AM
11278 if (stub_entry->h != NULL
11279 && stub_entry->h->save_res
11280 && stub_entry->h->elf.root.type == bfd_link_hash_defined
11281 && stub_entry->h->elf.root.u.def.section == htab->sfpr)
11282 {
11283 /* Don't make stubs to out-of-line register save/restore
11284 functions. Instead, emit copies of the functions. */
11285 stub_entry->group->needs_save_res = 1;
11286 stub_entry->stub_type = ppc_stub_save_res;
11287 return TRUE;
11288 }
11289
794e51c0
AM
11290 if (stub_entry->stub_type == ppc_stub_plt_call
11291 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
721956f4 11292 {
e054468f
AM
11293 asection *plt;
11294 off = stub_entry->plt_ent->plt.offset & ~(bfd_vma) 1;
58ac9f71 11295 if (off >= (bfd_vma) -2)
411e1bfb 11296 abort ();
33e44f2e 11297 plt = htab->elf.splt;
25f23106
AM
11298 if (!htab->elf.dynamic_sections_created
11299 || stub_entry->h == NULL
11300 || stub_entry->h->elf.dynindx == -1)
33e44f2e 11301 plt = htab->elf.iplt;
e054468f
AM
11302 off += (plt->output_offset
11303 + plt->output_section->vma
11304 - elf_gp (plt->output_section->owner)
6f20ed8a 11305 - htab->sec_info[stub_entry->group->link_sec->id].toc_off);
721956f4 11306
794e51c0 11307 size = plt_stub_size (htab, stub_entry, off);
d4aaa2a0
AM
11308 if (stub_entry->h != NULL
11309 && (stub_entry->h == htab->tls_get_addr_fd
11310 || stub_entry->h == htab->tls_get_addr)
11311 && htab->params->tls_get_addr_opt
11312 && (ALWAYS_EMIT_R2SAVE
11313 || stub_entry->stub_type == ppc_stub_plt_call_r2save))
11314 stub_entry->group->tls_get_addr_opt_bctrl
11315 = stub_entry->group->stub_sec->size + size - 5 * 4;
11316
e7d1c40c 11317 if (htab->params->plt_stub_align)
794e51c0 11318 size += plt_stub_pad (htab, stub_entry, off);
176a0d42
AM
11319 if (info->emitrelocations)
11320 {
6f20ed8a 11321 stub_entry->group->stub_sec->reloc_count
b9e5796b
AM
11322 += ((PPC_HA (off) != 0)
11323 + (htab->opd_abi
e7d1c40c 11324 ? 2 + (htab->params->plt_static_chain
b9e5796b
AM
11325 && PPC_HA (off + 16) == PPC_HA (off))
11326 : 1));
6f20ed8a 11327 stub_entry->group->stub_sec->flags |= SEC_RELOC;
176a0d42 11328 }
721956f4
AM
11329 }
11330 else
11331 {
ad8e1ba5
AM
11332 /* ppc_stub_long_branch or ppc_stub_plt_branch, or their r2off
11333 variants. */
ac2df442 11334 bfd_vma r2off = 0;
6911b7dc 11335 bfd_vma local_off = 0;
ac2df442 11336
721956f4
AM
11337 off = (stub_entry->target_value
11338 + stub_entry->target_section->output_offset
11339 + stub_entry->target_section->output_section->vma);
6f20ed8a
AM
11340 off -= (stub_entry->group->stub_sec->size
11341 + stub_entry->group->stub_sec->output_offset
11342 + stub_entry->group->stub_sec->output_section->vma);
721956f4 11343
ad8e1ba5
AM
11344 /* Reset the stub type from the plt variant in case we now
11345 can reach with a shorter stub. */
11346 if (stub_entry->stub_type >= ppc_stub_plt_branch)
11347 stub_entry->stub_type += ppc_stub_long_branch - ppc_stub_plt_branch;
11348
11349 size = 4;
11350 if (stub_entry->stub_type == ppc_stub_long_branch_r2off)
11351 {
25f53a85 11352 r2off = get_r2off (info, stub_entry);
a7c49797 11353 if (r2off == (bfd_vma) -1)
aa374f67
AM
11354 {
11355 htab->stub_error = TRUE;
11356 return FALSE;
11357 }
a7c49797 11358 size = 8;
ac2df442 11359 if (PPC_HA (r2off) != 0)
a7c49797
AM
11360 size += 4;
11361 if (PPC_LO (r2off) != 0)
11362 size += 4;
ac2df442 11363 off -= size - 4;
ad8e1ba5
AM
11364 }
11365
6911b7dc
AM
11366 local_off = PPC64_LOCAL_ENTRY_OFFSET (stub_entry->other);
11367
b9e5796b
AM
11368 /* If the branch offset if too big, use a ppc_stub_plt_branch.
11369 Do the same for -R objects without function descriptors. */
11370 if (off + (1 << 25) >= (bfd_vma) (1 << 26) - local_off
11371 || (stub_entry->stub_type == ppc_stub_long_branch_r2off
a7c49797
AM
11372 && r2off == 0
11373 && htab->sec_info[stub_entry->target_section->id].toc_off == 0))
721956f4
AM
11374 {
11375 struct ppc_branch_hash_entry *br_entry;
11376
11377 br_entry = ppc_branch_hash_lookup (&htab->branch_hash_table,
11378 stub_entry->root.string + 9,
b34976b6 11379 TRUE, FALSE);
721956f4
AM
11380 if (br_entry == NULL)
11381 {
8de848d8 11382 info->callbacks->einfo (_("%P: can't build branch stub `%s'\n"),
25f53a85 11383 stub_entry->root.string);
b34976b6
AM
11384 htab->stub_error = TRUE;
11385 return FALSE;
721956f4
AM
11386 }
11387
11388 if (br_entry->iter != htab->stub_iteration)
11389 {
11390 br_entry->iter = htab->stub_iteration;
eea6121a
AM
11391 br_entry->offset = htab->brlt->size;
11392 htab->brlt->size += 8;
63bc6f6c 11393
ee75fd95 11394 if (htab->relbrlt != NULL)
eea6121a 11395 htab->relbrlt->size += sizeof (Elf64_External_Rela);
84f5d08e
AM
11396 else if (info->emitrelocations)
11397 {
11398 htab->brlt->reloc_count += 1;
11399 htab->brlt->flags |= SEC_RELOC;
11400 }
721956f4 11401 }
ad8e1ba5
AM
11402
11403 stub_entry->stub_type += ppc_stub_plt_branch - ppc_stub_long_branch;
ac2df442
AM
11404 off = (br_entry->offset
11405 + htab->brlt->output_offset
11406 + htab->brlt->output_section->vma
11407 - elf_gp (htab->brlt->output_section->owner)
6f20ed8a 11408 - htab->sec_info[stub_entry->group->link_sec->id].toc_off);
ac2df442 11409
176a0d42
AM
11410 if (info->emitrelocations)
11411 {
6f20ed8a
AM
11412 stub_entry->group->stub_sec->reloc_count
11413 += 1 + (PPC_HA (off) != 0);
11414 stub_entry->group->stub_sec->flags |= SEC_RELOC;
176a0d42
AM
11415 }
11416
00f412ee 11417 if (stub_entry->stub_type != ppc_stub_plt_branch_r2off)
ac2df442
AM
11418 {
11419 size = 12;
176a0d42 11420 if (PPC_HA (off) != 0)
ac2df442
AM
11421 size = 16;
11422 }
11423 else
11424 {
00f412ee 11425 size = 16;
176a0d42 11426 if (PPC_HA (off) != 0)
ac2df442
AM
11427 size += 4;
11428
11429 if (PPC_HA (r2off) != 0)
11430 size += 4;
00f412ee
AM
11431 if (PPC_LO (r2off) != 0)
11432 size += 4;
ac2df442 11433 }
721956f4 11434 }
84f5d08e
AM
11435 else if (info->emitrelocations)
11436 {
6f20ed8a
AM
11437 stub_entry->group->stub_sec->reloc_count += 1;
11438 stub_entry->group->stub_sec->flags |= SEC_RELOC;
84f5d08e 11439 }
721956f4
AM
11440 }
11441
6f20ed8a 11442 stub_entry->group->stub_sec->size += size;
b34976b6 11443 return TRUE;
721956f4
AM
11444}
11445
11446/* Set up various things so that we can make a list of input sections
11447 for each output section included in the link. Returns -1 on error,
cedb70c5 11448 0 when no stubs will be needed, and 1 on success. */
721956f4
AM
11449
11450int
e7d1c40c 11451ppc64_elf_setup_section_lists (struct bfd_link_info *info)
721956f4 11452{
6f20ed8a 11453 unsigned int id;
721956f4
AM
11454 bfd_size_type amt;
11455 struct ppc_link_hash_table *htab = ppc_hash_table (info);
11456
4dfe6ac6
NC
11457 if (htab == NULL)
11458 return -1;
4c52953f 11459
6f20ed8a
AM
11460 htab->sec_info_arr_size = bfd_get_next_section_id ();
11461 amt = sizeof (*htab->sec_info) * (htab->sec_info_arr_size);
11462 htab->sec_info = bfd_zmalloc (amt);
11463 if (htab->sec_info == NULL)
721956f4
AM
11464 return -1;
11465
3d6f9012
AM
11466 /* Set toc_off for com, und, abs and ind sections. */
11467 for (id = 0; id < 3; id++)
6f20ed8a 11468 htab->sec_info[id].toc_off = TOC_BASE_OFF;
734b6cf9 11469
721956f4
AM
11470 return 1;
11471}
11472
927be08e
AM
11473/* Set up for first pass at multitoc partitioning. */
11474
11475void
11476ppc64_elf_start_multitoc_partition (struct bfd_link_info *info)
11477{
11478 struct ppc_link_hash_table *htab = ppc_hash_table (info);
11479
1c865ab2 11480 htab->toc_curr = ppc64_elf_set_toc (info, info->output_bfd);
927be08e
AM
11481 htab->toc_bfd = NULL;
11482 htab->toc_first_sec = NULL;
11483}
11484
e717da7e
AM
11485/* The linker repeatedly calls this function for each TOC input section
11486 and linker generated GOT section. Group input bfds such that the toc
927be08e 11487 within a group is less than 64k in size. */
ad8e1ba5 11488
927be08e 11489bfd_boolean
4ce794b7 11490ppc64_elf_next_toc_section (struct bfd_link_info *info, asection *isec)
ad8e1ba5
AM
11491{
11492 struct ppc_link_hash_table *htab = ppc_hash_table (info);
d77c8a4b 11493 bfd_vma addr, off, limit;
ad8e1ba5 11494
4dfe6ac6
NC
11495 if (htab == NULL)
11496 return FALSE;
11497
927be08e 11498 if (!htab->second_toc_pass)
4c52953f 11499 {
927be08e 11500 /* Keep track of the first .toc or .got section for this input bfd. */
a4fd3de5
AM
11501 bfd_boolean new_bfd = htab->toc_bfd != isec->owner;
11502
11503 if (new_bfd)
bf102f86
AM
11504 {
11505 htab->toc_bfd = isec->owner;
11506 htab->toc_first_sec = isec;
11507 }
927be08e 11508
bf102f86
AM
11509 addr = isec->output_offset + isec->output_section->vma;
11510 off = addr - htab->toc_curr;
d77c8a4b
AM
11511 limit = 0x80008000;
11512 if (ppc64_elf_tdata (isec->owner)->has_small_toc_reloc)
11513 limit = 0x10000;
11514 if (off + isec->size > limit)
bf102f86
AM
11515 {
11516 addr = (htab->toc_first_sec->output_offset
11517 + htab->toc_first_sec->output_section->vma);
11518 htab->toc_curr = addr;
a27e685f 11519 htab->toc_curr &= -TOC_BASE_ALIGN;
bf102f86 11520 }
99877b66 11521
927be08e
AM
11522 /* toc_curr is the base address of this toc group. Set elf_gp
11523 for the input section to be the offset relative to the
11524 output toc base plus 0x8000. Making the input elf_gp an
11525 offset allows us to move the toc as a whole without
11526 recalculating input elf_gp. */
11527 off = htab->toc_curr - elf_gp (isec->output_section->owner);
11528 off += TOC_BASE_OFF;
11529
11530 /* Die if someone uses a linker script that doesn't keep input
11531 file .toc and .got together. */
a4fd3de5
AM
11532 if (new_bfd
11533 && elf_gp (isec->owner) != 0
927be08e
AM
11534 && elf_gp (isec->owner) != off)
11535 return FALSE;
11536
11537 elf_gp (isec->owner) = off;
11538 return TRUE;
4c52953f 11539 }
927be08e
AM
11540
11541 /* During the second pass toc_first_sec points to the start of
11542 a toc group, and toc_curr is used to track the old elf_gp.
11543 We use toc_bfd to ensure we only look at each bfd once. */
11544 if (htab->toc_bfd == isec->owner)
11545 return TRUE;
11546 htab->toc_bfd = isec->owner;
11547
11548 if (htab->toc_first_sec == NULL
11549 || htab->toc_curr != elf_gp (isec->owner))
11550 {
11551 htab->toc_curr = elf_gp (isec->owner);
11552 htab->toc_first_sec = isec;
11553 }
11554 addr = (htab->toc_first_sec->output_offset
11555 + htab->toc_first_sec->output_section->vma);
11556 off = addr - elf_gp (isec->output_section->owner) + TOC_BASE_OFF;
11557 elf_gp (isec->owner) = off;
11558
11559 return TRUE;
ad8e1ba5
AM
11560}
11561
927be08e
AM
11562/* Called via elf_link_hash_traverse to merge GOT entries for global
11563 symbol H. */
11564
11565static bfd_boolean
11566merge_global_got (struct elf_link_hash_entry *h, void *inf ATTRIBUTE_UNUSED)
11567{
11568 if (h->root.type == bfd_link_hash_indirect)
11569 return TRUE;
11570
927be08e
AM
11571 merge_got_entries (&h->got.glist);
11572
11573 return TRUE;
11574}
11575
11576/* Called via elf_link_hash_traverse to allocate GOT entries for global
11577 symbol H. */
11578
11579static bfd_boolean
11580reallocate_got (struct elf_link_hash_entry *h, void *inf)
11581{
11582 struct got_entry *gent;
11583
11584 if (h->root.type == bfd_link_hash_indirect)
11585 return TRUE;
11586
927be08e
AM
11587 for (gent = h->got.glist; gent != NULL; gent = gent->next)
11588 if (!gent->is_indirect)
11589 allocate_got (h, (struct bfd_link_info *) inf, gent);
11590 return TRUE;
11591}
11592
11593/* Called on the first multitoc pass after the last call to
11594 ppc64_elf_next_toc_section. This function removes duplicate GOT
11595 entries. */
11596
11597bfd_boolean
11598ppc64_elf_layout_multitoc (struct bfd_link_info *info)
ad8e1ba5
AM
11599{
11600 struct ppc_link_hash_table *htab = ppc_hash_table (info);
927be08e
AM
11601 struct bfd *ibfd, *ibfd2;
11602 bfd_boolean done_something;
11603
11604 htab->multi_toc_needed = htab->toc_curr != elf_gp (info->output_bfd);
ad8e1ba5 11605
7865406b
AM
11606 if (!htab->do_multi_toc)
11607 return FALSE;
11608
d0fae19d 11609 /* Merge global sym got entries within a toc group. */
927be08e
AM
11610 elf_link_hash_traverse (&htab->elf, merge_global_got, info);
11611
11612 /* And tlsld_got. */
c72f2fb2 11613 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
927be08e
AM
11614 {
11615 struct got_entry *ent, *ent2;
11616
11617 if (!is_ppc64_elf (ibfd))
11618 continue;
11619
11620 ent = ppc64_tlsld_got (ibfd);
11621 if (!ent->is_indirect
11622 && ent->got.offset != (bfd_vma) -1)
11623 {
c72f2fb2 11624 for (ibfd2 = ibfd->link.next; ibfd2 != NULL; ibfd2 = ibfd2->link.next)
927be08e
AM
11625 {
11626 if (!is_ppc64_elf (ibfd2))
11627 continue;
11628
11629 ent2 = ppc64_tlsld_got (ibfd2);
11630 if (!ent2->is_indirect
11631 && ent2->got.offset != (bfd_vma) -1
11632 && elf_gp (ibfd2) == elf_gp (ibfd))
11633 {
11634 ent2->is_indirect = TRUE;
11635 ent2->got.ent = ent;
11636 }
11637 }
11638 }
11639 }
11640
11641 /* Zap sizes of got sections. */
33e44f2e
AM
11642 htab->elf.irelplt->rawsize = htab->elf.irelplt->size;
11643 htab->elf.irelplt->size -= htab->got_reli_size;
927be08e
AM
11644 htab->got_reli_size = 0;
11645
c72f2fb2 11646 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
927be08e
AM
11647 {
11648 asection *got, *relgot;
11649
11650 if (!is_ppc64_elf (ibfd))
11651 continue;
11652
11653 got = ppc64_elf_tdata (ibfd)->got;
11654 if (got != NULL)
11655 {
11656 got->rawsize = got->size;
11657 got->size = 0;
11658 relgot = ppc64_elf_tdata (ibfd)->relgot;
11659 relgot->rawsize = relgot->size;
11660 relgot->size = 0;
11661 }
11662 }
11663
11664 /* Now reallocate the got, local syms first. We don't need to
11665 allocate section contents again since we never increase size. */
c72f2fb2 11666 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
927be08e
AM
11667 {
11668 struct got_entry **lgot_ents;
11669 struct got_entry **end_lgot_ents;
11670 struct plt_entry **local_plt;
11671 struct plt_entry **end_local_plt;
f961d9dd 11672 unsigned char *lgot_masks;
927be08e
AM
11673 bfd_size_type locsymcount;
11674 Elf_Internal_Shdr *symtab_hdr;
19e08130 11675 asection *s;
927be08e
AM
11676
11677 if (!is_ppc64_elf (ibfd))
11678 continue;
11679
11680 lgot_ents = elf_local_got_ents (ibfd);
11681 if (!lgot_ents)
11682 continue;
11683
11684 symtab_hdr = &elf_symtab_hdr (ibfd);
11685 locsymcount = symtab_hdr->sh_info;
11686 end_lgot_ents = lgot_ents + locsymcount;
11687 local_plt = (struct plt_entry **) end_lgot_ents;
11688 end_local_plt = local_plt + locsymcount;
f961d9dd 11689 lgot_masks = (unsigned char *) end_local_plt;
927be08e 11690 s = ppc64_elf_tdata (ibfd)->got;
927be08e
AM
11691 for (; lgot_ents < end_lgot_ents; ++lgot_ents, ++lgot_masks)
11692 {
11693 struct got_entry *ent;
11694
11695 for (ent = *lgot_ents; ent != NULL; ent = ent->next)
d0fae19d 11696 {
19e08130
AM
11697 unsigned int ent_size = 8;
11698 unsigned int rel_size = sizeof (Elf64_External_Rela);
11699
d0fae19d
AM
11700 ent->got.offset = s->size;
11701 if ((ent->tls_type & *lgot_masks & TLS_GD) != 0)
d0fae19d 11702 {
19e08130
AM
11703 ent_size *= 2;
11704 rel_size *= 2;
11705 }
11706 s->size += ent_size;
11707 if ((*lgot_masks & PLT_IFUNC) != 0)
11708 {
33e44f2e 11709 htab->elf.irelplt->size += rel_size;
19e08130
AM
11710 htab->got_reli_size += rel_size;
11711 }
0e1862bb 11712 else if (bfd_link_pic (info))
19e08130
AM
11713 {
11714 asection *srel = ppc64_elf_tdata (ibfd)->relgot;
11715 srel->size += rel_size;
d0fae19d
AM
11716 }
11717 }
927be08e
AM
11718 }
11719 }
11720
11721 elf_link_hash_traverse (&htab->elf, reallocate_got, info);
11722
c72f2fb2 11723 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
927be08e
AM
11724 {
11725 struct got_entry *ent;
11726
11727 if (!is_ppc64_elf (ibfd))
11728 continue;
11729
11730 ent = ppc64_tlsld_got (ibfd);
11731 if (!ent->is_indirect
11732 && ent->got.offset != (bfd_vma) -1)
11733 {
11734 asection *s = ppc64_elf_tdata (ibfd)->got;
11735 ent->got.offset = s->size;
11736 s->size += 16;
0e1862bb 11737 if (bfd_link_pic (info))
927be08e
AM
11738 {
11739 asection *srel = ppc64_elf_tdata (ibfd)->relgot;
11740 srel->size += sizeof (Elf64_External_Rela);
11741 }
11742 }
11743 }
11744
33e44f2e 11745 done_something = htab->elf.irelplt->rawsize != htab->elf.irelplt->size;
927be08e 11746 if (!done_something)
c72f2fb2 11747 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
927be08e
AM
11748 {
11749 asection *got;
11750
11751 if (!is_ppc64_elf (ibfd))
11752 continue;
11753
11754 got = ppc64_elf_tdata (ibfd)->got;
11755 if (got != NULL)
11756 {
11757 done_something = got->rawsize != got->size;
11758 if (done_something)
11759 break;
11760 }
11761 }
11762
11763 if (done_something)
e7d1c40c 11764 (*htab->params->layout_sections_again) ();
927be08e
AM
11765
11766 /* Set up for second pass over toc sections to recalculate elf_gp
11767 on input sections. */
11768 htab->toc_bfd = NULL;
11769 htab->toc_first_sec = NULL;
11770 htab->second_toc_pass = TRUE;
11771 return done_something;
11772}
11773
11774/* Called after second pass of multitoc partitioning. */
11775
11776void
11777ppc64_elf_finish_multitoc_partition (struct bfd_link_info *info)
11778{
11779 struct ppc_link_hash_table *htab = ppc_hash_table (info);
11780
11781 /* After the second pass, toc_curr tracks the TOC offset used
11782 for code sections below in ppc64_elf_next_input_section. */
3d6f9012 11783 htab->toc_curr = TOC_BASE_OFF;
ad8e1ba5
AM
11784}
11785
9b5ecbd0
AM
11786/* No toc references were found in ISEC. If the code in ISEC makes no
11787 calls, then there's no need to use toc adjusting stubs when branching
11788 into ISEC. Actually, indirect calls from ISEC are OK as they will
4c52953f
AM
11789 load r2. Returns -1 on error, 0 for no stub needed, 1 for stub
11790 needed, and 2 if a cyclical call-graph was found but no other reason
11791 for a stub was detected. If called from the top level, a return of
11792 2 means the same as a return of 0. */
9b5ecbd0
AM
11793
11794static int
4ce794b7 11795toc_adjusting_stub_needed (struct bfd_link_info *info, asection *isec)
9b5ecbd0 11796{
9b5ecbd0 11797 int ret;
70cc837d
AM
11798
11799 /* Mark this section as checked. */
11800 isec->call_check_done = 1;
9b5ecbd0 11801
772119ce
AM
11802 /* We know none of our code bearing sections will need toc stubs. */
11803 if ((isec->flags & SEC_LINKER_CREATED) != 0)
11804 return 0;
11805
eea6121a 11806 if (isec->size == 0)
082c50f8
AM
11807 return 0;
11808
4c52953f
AM
11809 if (isec->output_section == NULL)
11810 return 0;
11811
4c52953f 11812 ret = 0;
70cc837d 11813 if (isec->reloc_count != 0)
9b5ecbd0 11814 {
70cc837d
AM
11815 Elf_Internal_Rela *relstart, *rel;
11816 Elf_Internal_Sym *local_syms;
11817 struct ppc_link_hash_table *htab;
2917689a 11818
70cc837d
AM
11819 relstart = _bfd_elf_link_read_relocs (isec->owner, isec, NULL, NULL,
11820 info->keep_memory);
11821 if (relstart == NULL)
11822 return -1;
90aecf7a 11823
70cc837d
AM
11824 /* Look for branches to outside of this section. */
11825 local_syms = NULL;
11826 htab = ppc_hash_table (info);
11827 if (htab == NULL)
11828 return -1;
4c52953f 11829
70cc837d 11830 for (rel = relstart; rel < relstart + isec->reloc_count; ++rel)
4c52953f 11831 {
70cc837d
AM
11832 enum elf_ppc64_reloc_type r_type;
11833 unsigned long r_symndx;
11834 struct elf_link_hash_entry *h;
11835 struct ppc_link_hash_entry *eh;
11836 Elf_Internal_Sym *sym;
11837 asection *sym_sec;
11838 struct _opd_sec_data *opd;
11839 bfd_vma sym_value;
11840 bfd_vma dest;
11841
11842 r_type = ELF64_R_TYPE (rel->r_info);
11843 if (r_type != R_PPC64_REL24
11844 && r_type != R_PPC64_REL14
11845 && r_type != R_PPC64_REL14_BRTAKEN
11846 && r_type != R_PPC64_REL14_BRNTAKEN)
11847 continue;
4c52953f 11848
70cc837d
AM
11849 r_symndx = ELF64_R_SYM (rel->r_info);
11850 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms, r_symndx,
11851 isec->owner))
4c52953f 11852 {
70cc837d
AM
11853 ret = -1;
11854 break;
11855 }
4c52953f 11856
70cc837d
AM
11857 /* Calls to dynamic lib functions go through a plt call stub
11858 that uses r2. */
11859 eh = (struct ppc_link_hash_entry *) h;
11860 if (eh != NULL
11861 && (eh->elf.plt.plist != NULL
11862 || (eh->oh != NULL
11863 && ppc_follow_link (eh->oh)->elf.plt.plist != NULL)))
11864 {
11865 ret = 1;
11866 break;
4c52953f
AM
11867 }
11868
70cc837d
AM
11869 if (sym_sec == NULL)
11870 /* Ignore other undefined symbols. */
4c52953f 11871 continue;
4c52953f 11872
70cc837d
AM
11873 /* Assume branches to other sections not included in the
11874 link need stubs too, to cover -R and absolute syms. */
11875 if (sym_sec->output_section == NULL)
11876 {
11877 ret = 1;
11878 break;
11879 }
4c52953f 11880
70cc837d
AM
11881 if (h == NULL)
11882 sym_value = sym->st_value;
11883 else
11884 {
11885 if (h->root.type != bfd_link_hash_defined
11886 && h->root.type != bfd_link_hash_defweak)
11887 abort ();
11888 sym_value = h->root.u.def.value;
11889 }
11890 sym_value += rel->r_addend;
4c52953f 11891
70cc837d
AM
11892 /* If this branch reloc uses an opd sym, find the code section. */
11893 opd = get_opd_info (sym_sec);
11894 if (opd != NULL)
11895 {
11896 if (h == NULL && opd->adjust != NULL)
11897 {
11898 long adjust;
4c52953f 11899
92a9c616 11900 adjust = opd->adjust[OPD_NDX (sym_value)];
70cc837d
AM
11901 if (adjust == -1)
11902 /* Assume deleted functions won't ever be called. */
11903 continue;
11904 sym_value += adjust;
11905 }
4c52953f 11906
aef36ac1
AM
11907 dest = opd_entry_value (sym_sec, sym_value,
11908 &sym_sec, NULL, FALSE);
70cc837d
AM
11909 if (dest == (bfd_vma) -1)
11910 continue;
11911 }
11912 else
11913 dest = (sym_value
11914 + sym_sec->output_offset
11915 + sym_sec->output_section->vma);
4c52953f 11916
70cc837d
AM
11917 /* Ignore branch to self. */
11918 if (sym_sec == isec)
11919 continue;
4c52953f 11920
70cc837d
AM
11921 /* If the called function uses the toc, we need a stub. */
11922 if (sym_sec->has_toc_reloc
11923 || sym_sec->makes_toc_func_call)
4c52953f 11924 {
70cc837d 11925 ret = 1;
4c52953f
AM
11926 break;
11927 }
70cc837d
AM
11928
11929 /* Assume any branch that needs a long branch stub might in fact
11930 need a plt_branch stub. A plt_branch stub uses r2. */
11931 else if (dest - (isec->output_offset
11932 + isec->output_section->vma
6911b7dc
AM
11933 + rel->r_offset) + (1 << 25)
11934 >= (2u << 25) - PPC64_LOCAL_ENTRY_OFFSET (h
11935 ? h->other
11936 : sym->st_other))
4c52953f 11937 {
70cc837d
AM
11938 ret = 1;
11939 break;
11940 }
11941
11942 /* If calling back to a section in the process of being
11943 tested, we can't say for sure that no toc adjusting stubs
11944 are needed, so don't return zero. */
11945 else if (sym_sec->call_check_in_progress)
11946 ret = 2;
11947
11948 /* Branches to another section that itself doesn't have any TOC
11949 references are OK. Recursively call ourselves to check. */
11950 else if (!sym_sec->call_check_done)
11951 {
11952 int recur;
11953
11954 /* Mark current section as indeterminate, so that other
11955 sections that call back to current won't be marked as
11956 known. */
11957 isec->call_check_in_progress = 1;
11958 recur = toc_adjusting_stub_needed (info, sym_sec);
11959 isec->call_check_in_progress = 0;
11960
4c52953f
AM
11961 if (recur != 0)
11962 {
70cc837d
AM
11963 ret = recur;
11964 if (recur != 2)
11965 break;
4c52953f
AM
11966 }
11967 }
4c52953f 11968 }
70cc837d
AM
11969
11970 if (local_syms != NULL
11971 && (elf_symtab_hdr (isec->owner).contents
11972 != (unsigned char *) local_syms))
11973 free (local_syms);
11974 if (elf_section_data (isec)->relocs != relstart)
11975 free (relstart);
9b5ecbd0
AM
11976 }
11977
70cc837d
AM
11978 if ((ret & 1) == 0
11979 && isec->map_head.s != NULL
11980 && (strcmp (isec->output_section->name, ".init") == 0
11981 || strcmp (isec->output_section->name, ".fini") == 0))
11982 {
11983 if (isec->map_head.s->has_toc_reloc
11984 || isec->map_head.s->makes_toc_func_call)
11985 ret = 1;
11986 else if (!isec->map_head.s->call_check_done)
11987 {
11988 int recur;
11989 isec->call_check_in_progress = 1;
11990 recur = toc_adjusting_stub_needed (info, isec->map_head.s);
11991 isec->call_check_in_progress = 0;
11992 if (recur != 0)
11993 ret = recur;
11994 }
11995 }
11996
11997 if (ret == 1)
11998 isec->makes_toc_func_call = 1;
4c52953f 11999
9b5ecbd0
AM
12000 return ret;
12001}
12002
721956f4
AM
12003/* The linker repeatedly calls this function for each input section,
12004 in the order that input sections are linked into output sections.
12005 Build lists of input sections to determine groupings between which
12006 we may insert linker stubs. */
12007
9b5ecbd0 12008bfd_boolean
4ce794b7 12009ppc64_elf_next_input_section (struct bfd_link_info *info, asection *isec)
721956f4
AM
12010{
12011 struct ppc_link_hash_table *htab = ppc_hash_table (info);
12012
4dfe6ac6
NC
12013 if (htab == NULL)
12014 return FALSE;
12015
734b6cf9 12016 if ((isec->output_section->flags & SEC_CODE) != 0
6f20ed8a 12017 && isec->output_section->id < htab->sec_info_arr_size)
721956f4 12018 {
3d6f9012
AM
12019 /* This happens to make the list in reverse order,
12020 which is what we want. */
6f20ed8a
AM
12021 htab->sec_info[isec->id].u.list
12022 = htab->sec_info[isec->output_section->id].u.list;
12023 htab->sec_info[isec->output_section->id].u.list = isec;
721956f4 12024 }
ad8e1ba5 12025
4c52953f 12026 if (htab->multi_toc_needed)
9b5ecbd0 12027 {
8b974ba3
AM
12028 /* Analyse sections that aren't already flagged as needing a
12029 valid toc pointer. Exclude .fixup for the linux kernel.
12030 .fixup contains branches, but only back to the function that
12031 hit an exception. */
12032 if (!(isec->has_toc_reloc
12033 || (isec->flags & SEC_CODE) == 0
12034 || strcmp (isec->name, ".fixup") == 0
12035 || isec->call_check_done))
12036 {
12037 if (toc_adjusting_stub_needed (info, isec) < 0)
6683a28d 12038 return FALSE;
8b974ba3
AM
12039 }
12040 /* Make all sections use the TOC assigned for this object file.
12041 This will be wrong for pasted sections; We fix that in
12042 check_pasted_section(). */
12043 if (elf_gp (isec->owner) != 0)
12044 htab->toc_curr = elf_gp (isec->owner);
12045 }
12046
6f20ed8a 12047 htab->sec_info[isec->id].toc_off = htab->toc_curr;
9b5ecbd0 12048 return TRUE;
721956f4
AM
12049}
12050
70cc837d
AM
12051/* Check that all .init and .fini sections use the same toc, if they
12052 have toc relocs. */
12053
12054static bfd_boolean
12055check_pasted_section (struct bfd_link_info *info, const char *name)
12056{
12057 asection *o = bfd_get_section_by_name (info->output_bfd, name);
12058
12059 if (o != NULL)
12060 {
12061 struct ppc_link_hash_table *htab = ppc_hash_table (info);
12062 bfd_vma toc_off = 0;
12063 asection *i;
12064
12065 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
12066 if (i->has_toc_reloc)
12067 {
12068 if (toc_off == 0)
6f20ed8a
AM
12069 toc_off = htab->sec_info[i->id].toc_off;
12070 else if (toc_off != htab->sec_info[i->id].toc_off)
70cc837d
AM
12071 return FALSE;
12072 }
6683a28d
AM
12073
12074 if (toc_off == 0)
12075 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
12076 if (i->makes_toc_func_call)
12077 {
6f20ed8a 12078 toc_off = htab->sec_info[i->id].toc_off;
6683a28d
AM
12079 break;
12080 }
12081
70cc837d
AM
12082 /* Make sure the whole pasted function uses the same toc offset. */
12083 if (toc_off != 0)
12084 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
6f20ed8a 12085 htab->sec_info[i->id].toc_off = toc_off;
70cc837d
AM
12086 }
12087 return TRUE;
12088}
12089
12090bfd_boolean
12091ppc64_elf_check_init_fini (struct bfd_link_info *info)
12092{
12093 return (check_pasted_section (info, ".init")
12094 & check_pasted_section (info, ".fini"));
12095}
12096
721956f4
AM
12097/* See whether we can group stub sections together. Grouping stub
12098 sections may result in fewer stubs. More importantly, we need to
12099 put all .init* and .fini* stubs at the beginning of the .init or
12100 .fini output sections respectively, because glibc splits the
12101 _init and _fini functions into multiple parts. Putting a stub in
12102 the middle of a function is not a good idea. */
12103
6f20ed8a
AM
12104static bfd_boolean
12105group_sections (struct bfd_link_info *info,
4ce794b7
AM
12106 bfd_size_type stub_group_size,
12107 bfd_boolean stubs_always_before_branch)
721956f4 12108{
6f20ed8a
AM
12109 struct ppc_link_hash_table *htab;
12110 asection *osec;
7c8fe5c4
AM
12111 bfd_boolean suppress_size_errors;
12112
6f20ed8a
AM
12113 htab = ppc_hash_table (info);
12114 if (htab == NULL)
12115 return FALSE;
12116
7c8fe5c4 12117 suppress_size_errors = FALSE;
7c8fe5c4
AM
12118 if (stub_group_size == 1)
12119 {
12120 /* Default values. */
12121 if (stubs_always_before_branch)
09f92717 12122 stub_group_size = 0x1e00000;
7c8fe5c4 12123 else
09f92717 12124 stub_group_size = 0x1c00000;
7c8fe5c4
AM
12125 suppress_size_errors = TRUE;
12126 }
12127
6f20ed8a 12128 for (osec = info->output_bfd->sections; osec != NULL; osec = osec->next)
721956f4 12129 {
6f20ed8a
AM
12130 asection *tail;
12131
12132 if (osec->id >= htab->sec_info_arr_size)
12133 continue;
12134
12135 tail = htab->sec_info[osec->id].u.list;
734b6cf9 12136 while (tail != NULL)
721956f4 12137 {
734b6cf9
AM
12138 asection *curr;
12139 asection *prev;
12140 bfd_size_type total;
12141 bfd_boolean big_sec;
12142 bfd_vma curr_toc;
6f20ed8a 12143 struct map_stub *group;
09f92717 12144 bfd_size_type group_size;
734b6cf9
AM
12145
12146 curr = tail;
eea6121a 12147 total = tail->size;
09f92717
AM
12148 group_size = (ppc64_elf_section_data (tail) != NULL
12149 && ppc64_elf_section_data (tail)->has_14bit_branch
12150 ? stub_group_size >> 10 : stub_group_size);
12151
12152 big_sec = total > group_size;
7c8fe5c4 12153 if (big_sec && !suppress_size_errors)
695344c0 12154 /* xgettext:c-format */
4eca0228
AM
12155 _bfd_error_handler (_("%B section %A exceeds stub group size"),
12156 tail->owner, tail);
6f20ed8a 12157 curr_toc = htab->sec_info[tail->id].toc_off;
734b6cf9 12158
6f20ed8a 12159 while ((prev = htab->sec_info[curr->id].u.list) != NULL
734b6cf9 12160 && ((total += curr->output_offset - prev->output_offset)
6bee8834
AM
12161 < (ppc64_elf_section_data (prev) != NULL
12162 && ppc64_elf_section_data (prev)->has_14bit_branch
09f92717 12163 ? (group_size = stub_group_size >> 10) : group_size))
6f20ed8a 12164 && htab->sec_info[prev->id].toc_off == curr_toc)
734b6cf9
AM
12165 curr = prev;
12166
12167 /* OK, the size from the start of CURR to the end is less
09f92717 12168 than group_size and thus can be handled by one stub
734b6cf9 12169 section. (or the tail section is itself larger than
09f92717
AM
12170 group_size, in which case we may be toast.) We should
12171 really be keeping track of the total size of stubs added
12172 here, as stubs contribute to the final output section
12173 size. That's a little tricky, and this way will only
12174 break if stubs added make the total size more than 2^25,
12175 ie. for the default stub_group_size, if stubs total more
12176 than 2097152 bytes, or nearly 75000 plt call stubs. */
6f20ed8a
AM
12177 group = bfd_alloc (curr->owner, sizeof (*group));
12178 if (group == NULL)
12179 return FALSE;
12180 group->link_sec = curr;
12181 group->stub_sec = NULL;
a4b6fadd 12182 group->needs_save_res = 0;
d4aaa2a0 12183 group->tls_get_addr_opt_bctrl = -1u;
a4b6fadd
AM
12184 group->next = htab->group;
12185 htab->group = group;
734b6cf9 12186 do
721956f4 12187 {
6f20ed8a 12188 prev = htab->sec_info[tail->id].u.list;
734b6cf9 12189 /* Set up this stub group. */
6f20ed8a 12190 htab->sec_info[tail->id].u.group = group;
721956f4 12191 }
734b6cf9
AM
12192 while (tail != curr && (tail = prev) != NULL);
12193
09f92717 12194 /* But wait, there's more! Input sections up to group_size
734b6cf9
AM
12195 bytes before the stub section can be handled by it too.
12196 Don't do this if we have a really large section after the
12197 stubs, as adding more stubs increases the chance that
12198 branches may not reach into the stub section. */
12199 if (!stubs_always_before_branch && !big_sec)
12200 {
12201 total = 0;
12202 while (prev != NULL
12203 && ((total += tail->output_offset - prev->output_offset)
6bee8834
AM
12204 < (ppc64_elf_section_data (prev) != NULL
12205 && ppc64_elf_section_data (prev)->has_14bit_branch
09f92717 12206 ? (group_size = stub_group_size >> 10) : group_size))
6f20ed8a 12207 && htab->sec_info[prev->id].toc_off == curr_toc)
734b6cf9
AM
12208 {
12209 tail = prev;
6f20ed8a
AM
12210 prev = htab->sec_info[tail->id].u.list;
12211 htab->sec_info[tail->id].u.group = group;
734b6cf9
AM
12212 }
12213 }
12214 tail = prev;
721956f4
AM
12215 }
12216 }
6f20ed8a 12217 return TRUE;
721956f4
AM
12218}
12219
58d180e8
AM
12220static const unsigned char glink_eh_frame_cie[] =
12221{
12222 0, 0, 0, 16, /* length. */
12223 0, 0, 0, 0, /* id. */
12224 1, /* CIE version. */
12225 'z', 'R', 0, /* Augmentation string. */
12226 4, /* Code alignment. */
12227 0x78, /* Data alignment. */
12228 65, /* RA reg. */
12229 1, /* Augmentation size. */
12230 DW_EH_PE_pcrel | DW_EH_PE_sdata4, /* FDE encoding. */
2e0ce1c8 12231 DW_CFA_def_cfa, 1, 0 /* def_cfa: r1 offset 0. */
58d180e8
AM
12232};
12233
d4aaa2a0
AM
12234static size_t
12235stub_eh_frame_size (struct map_stub *group, size_t align)
12236{
12237 size_t this_size = 17;
12238 if (group->tls_get_addr_opt_bctrl != -1u)
12239 {
12240 unsigned int to_bctrl = group->tls_get_addr_opt_bctrl / 4;
12241 if (to_bctrl < 64)
12242 this_size += 1;
12243 else if (to_bctrl < 256)
12244 this_size += 2;
12245 else if (to_bctrl < 65536)
12246 this_size += 3;
12247 else
12248 this_size += 5;
12249 this_size += 6;
12250 }
12251 this_size = (this_size + align - 1) & -align;
12252 return this_size;
12253}
12254
d969d15f
AM
12255/* Stripping output sections is normally done before dynamic section
12256 symbols have been allocated. This function is called later, and
12257 handles cases like htab->brlt which is mapped to its own output
12258 section. */
12259
12260static void
12261maybe_strip_output (struct bfd_link_info *info, asection *isec)
12262{
12263 if (isec->size == 0
12264 && isec->output_section->size == 0
53d8967a 12265 && !(isec->output_section->flags & SEC_KEEP)
d969d15f
AM
12266 && !bfd_section_removed_from_list (info->output_bfd,
12267 isec->output_section)
12268 && elf_section_data (isec->output_section)->dynindx == 0)
12269 {
12270 isec->output_section->flags |= SEC_EXCLUDE;
12271 bfd_section_list_remove (info->output_bfd, isec->output_section);
12272 info->output_bfd->section_count--;
12273 }
12274}
12275
721956f4
AM
12276/* Determine and set the size of the stub section for a final link.
12277
12278 The basic idea here is to examine all the relocations looking for
12279 PC-relative calls to a target that is unreachable with a "bl"
12280 instruction. */
12281
b34976b6 12282bfd_boolean
e7d1c40c 12283ppc64_elf_size_stubs (struct bfd_link_info *info)
721956f4
AM
12284{
12285 bfd_size_type stub_group_size;
b34976b6 12286 bfd_boolean stubs_always_before_branch;
721956f4
AM
12287 struct ppc_link_hash_table *htab = ppc_hash_table (info);
12288
4dfe6ac6
NC
12289 if (htab == NULL)
12290 return FALSE;
12291
0e1862bb 12292 if (htab->params->plt_thread_safe == -1 && !bfd_link_executable (info))
e7d1c40c 12293 htab->params->plt_thread_safe = 1;
b9e5796b 12294 if (!htab->opd_abi)
e7d1c40c
AM
12295 htab->params->plt_thread_safe = 0;
12296 else if (htab->params->plt_thread_safe == -1)
794e51c0 12297 {
e2458743 12298 static const char *const thread_starter[] =
794e51c0
AM
12299 {
12300 "pthread_create",
12301 /* libstdc++ */
12302 "_ZNSt6thread15_M_start_threadESt10shared_ptrINS_10_Impl_baseEE",
12303 /* librt */
12304 "aio_init", "aio_read", "aio_write", "aio_fsync", "lio_listio",
12305 "mq_notify", "create_timer",
12306 /* libanl */
12307 "getaddrinfo_a",
12308 /* libgomp */
2300b5a1 12309 "GOMP_parallel",
794e51c0 12310 "GOMP_parallel_start",
2300b5a1 12311 "GOMP_parallel_loop_static",
794e51c0 12312 "GOMP_parallel_loop_static_start",
2300b5a1 12313 "GOMP_parallel_loop_dynamic",
794e51c0 12314 "GOMP_parallel_loop_dynamic_start",
2300b5a1 12315 "GOMP_parallel_loop_guided",
794e51c0 12316 "GOMP_parallel_loop_guided_start",
2300b5a1 12317 "GOMP_parallel_loop_runtime",
794e51c0 12318 "GOMP_parallel_loop_runtime_start",
2300b5a1 12319 "GOMP_parallel_sections",
68ffbac6 12320 "GOMP_parallel_sections_start",
f9dffbf0
AM
12321 /* libgo */
12322 "__go_go",
794e51c0
AM
12323 };
12324 unsigned i;
12325
a4b6fadd 12326 for (i = 0; i < ARRAY_SIZE (thread_starter); i++)
794e51c0
AM
12327 {
12328 struct elf_link_hash_entry *h;
12329 h = elf_link_hash_lookup (&htab->elf, thread_starter[i],
12330 FALSE, FALSE, TRUE);
e7d1c40c
AM
12331 htab->params->plt_thread_safe = h != NULL && h->ref_regular;
12332 if (htab->params->plt_thread_safe)
794e51c0
AM
12333 break;
12334 }
12335 }
e7d1c40c
AM
12336 stubs_always_before_branch = htab->params->group_size < 0;
12337 if (htab->params->group_size < 0)
12338 stub_group_size = -htab->params->group_size;
721956f4 12339 else
e7d1c40c 12340 stub_group_size = htab->params->group_size;
721956f4 12341
6f20ed8a
AM
12342 if (!group_sections (info, stub_group_size, stubs_always_before_branch))
12343 return FALSE;
721956f4 12344
c9301e31
AM
12345#define STUB_SHRINK_ITER 20
12346 /* Loop until no stubs added. After iteration 20 of this loop we may
12347 exit on a stub section shrinking. This is to break out of a
12348 pathological case where adding stubs on one iteration decreases
12349 section gaps (perhaps due to alignment), which then requires
12350 fewer or smaller stubs on the next iteration. */
12351
721956f4
AM
12352 while (1)
12353 {
12354 bfd *input_bfd;
12355 unsigned int bfd_indx;
a4b6fadd 12356 struct map_stub *group;
721956f4
AM
12357
12358 htab->stub_iteration += 1;
721956f4
AM
12359
12360 for (input_bfd = info->input_bfds, bfd_indx = 0;
12361 input_bfd != NULL;
c72f2fb2 12362 input_bfd = input_bfd->link.next, bfd_indx++)
721956f4
AM
12363 {
12364 Elf_Internal_Shdr *symtab_hdr;
12365 asection *section;
6cdc0ccc 12366 Elf_Internal_Sym *local_syms = NULL;
721956f4 12367
0c8d6e5c 12368 if (!is_ppc64_elf (input_bfd))
67f93c31
AM
12369 continue;
12370
721956f4 12371 /* We'll need the symbol table in a second. */
0ffa91dd 12372 symtab_hdr = &elf_symtab_hdr (input_bfd);
721956f4
AM
12373 if (symtab_hdr->sh_info == 0)
12374 continue;
12375
721956f4
AM
12376 /* Walk over each section attached to the input bfd. */
12377 for (section = input_bfd->sections;
12378 section != NULL;
12379 section = section->next)
12380 {
721956f4 12381 Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
721956f4
AM
12382
12383 /* If there aren't any relocs, then there's nothing more
12384 to do. */
12385 if ((section->flags & SEC_RELOC) == 0
12c0f757
AM
12386 || (section->flags & SEC_ALLOC) == 0
12387 || (section->flags & SEC_LOAD) == 0
12388 || (section->flags & SEC_CODE) == 0
721956f4
AM
12389 || section->reloc_count == 0)
12390 continue;
12391
12392 /* If this section is a link-once section that will be
12393 discarded, then don't create any stubs. */
12394 if (section->output_section == NULL
927be08e 12395 || section->output_section->owner != info->output_bfd)
721956f4
AM
12396 continue;
12397
1e2f5b6e
AM
12398 /* Get the relocs. */
12399 internal_relocs
4ce794b7 12400 = _bfd_elf_link_read_relocs (input_bfd, section, NULL, NULL,
45d6a902 12401 info->keep_memory);
721956f4 12402 if (internal_relocs == NULL)
1e2f5b6e 12403 goto error_ret_free_local;
721956f4
AM
12404
12405 /* Now examine each relocation. */
12406 irela = internal_relocs;
12407 irelaend = irela + section->reloc_count;
12408 for (; irela < irelaend; irela++)
12409 {
4ce794b7
AM
12410 enum elf_ppc64_reloc_type r_type;
12411 unsigned int r_indx;
721956f4
AM
12412 enum ppc_stub_type stub_type;
12413 struct ppc_stub_hash_entry *stub_entry;
8387904d 12414 asection *sym_sec, *code_sec;
e054468f 12415 bfd_vma sym_value, code_value;
721956f4 12416 bfd_vma destination;
6911b7dc 12417 unsigned long local_off;
8843416a 12418 bfd_boolean ok_dest;
721956f4 12419 struct ppc_link_hash_entry *hash;
8387904d 12420 struct ppc_link_hash_entry *fdh;
411e1bfb
AM
12421 struct elf_link_hash_entry *h;
12422 Elf_Internal_Sym *sym;
721956f4
AM
12423 char *stub_name;
12424 const asection *id_sec;
74f0fb50 12425 struct _opd_sec_data *opd;
e054468f 12426 struct plt_entry *plt_ent;
721956f4
AM
12427
12428 r_type = ELF64_R_TYPE (irela->r_info);
12429 r_indx = ELF64_R_SYM (irela->r_info);
12430
4ce794b7 12431 if (r_type >= R_PPC64_max)
721956f4
AM
12432 {
12433 bfd_set_error (bfd_error_bad_value);
6cdc0ccc 12434 goto error_ret_free_internal;
721956f4
AM
12435 }
12436
12437 /* Only look for stubs on branch instructions. */
4ce794b7
AM
12438 if (r_type != R_PPC64_REL24
12439 && r_type != R_PPC64_REL14
12440 && r_type != R_PPC64_REL14_BRTAKEN
12441 && r_type != R_PPC64_REL14_BRNTAKEN)
721956f4
AM
12442 continue;
12443
12444 /* Now determine the call target, its name, value,
12445 section. */
411e1bfb
AM
12446 if (!get_sym_h (&h, &sym, &sym_sec, NULL, &local_syms,
12447 r_indx, input_bfd))
12448 goto error_ret_free_internal;
12449 hash = (struct ppc_link_hash_entry *) h;
12450
8843416a 12451 ok_dest = FALSE;
8387904d 12452 fdh = NULL;
7fe2b9a6 12453 sym_value = 0;
411e1bfb 12454 if (hash == NULL)
721956f4 12455 {
411e1bfb 12456 sym_value = sym->st_value;
c27b8c2a
AM
12457 if (sym_sec != NULL
12458 && sym_sec->output_section != NULL)
12459 ok_dest = TRUE;
721956f4 12460 }
7fe2b9a6
AM
12461 else if (hash->elf.root.type == bfd_link_hash_defined
12462 || hash->elf.root.type == bfd_link_hash_defweak)
12463 {
12464 sym_value = hash->elf.root.u.def.value;
12465 if (sym_sec->output_section != NULL)
12466 ok_dest = TRUE;
12467 }
12468 else if (hash->elf.root.type == bfd_link_hash_undefweak
12469 || hash->elf.root.type == bfd_link_hash_undefined)
721956f4 12470 {
99877b66 12471 /* Recognise an old ABI func code entry sym, and
7fe2b9a6
AM
12472 use the func descriptor sym instead if it is
12473 defined. */
ceb1f1ef 12474 if (hash->elf.root.root.string[0] == '.'
8c5b4e52 12475 && hash->oh != NULL)
8387904d 12476 {
8c5b4e52 12477 fdh = ppc_follow_link (hash->oh);
8387904d
AM
12478 if (fdh->elf.root.type == bfd_link_hash_defined
12479 || fdh->elf.root.type == bfd_link_hash_defweak)
12480 {
12481 sym_sec = fdh->elf.root.u.def.section;
12482 sym_value = fdh->elf.root.u.def.value;
12483 if (sym_sec->output_section != NULL)
12484 ok_dest = TRUE;
12485 }
99877b66
AM
12486 else
12487 fdh = NULL;
8387904d 12488 }
7fe2b9a6
AM
12489 }
12490 else
12491 {
12492 bfd_set_error (bfd_error_bad_value);
12493 goto error_ret_free_internal;
721956f4
AM
12494 }
12495
8843416a 12496 destination = 0;
6911b7dc 12497 local_off = 0;
8843416a
AM
12498 if (ok_dest)
12499 {
12500 sym_value += irela->r_addend;
12501 destination = (sym_value
12502 + sym_sec->output_offset
12503 + sym_sec->output_section->vma);
6911b7dc
AM
12504 local_off = PPC64_LOCAL_ENTRY_OFFSET (hash
12505 ? hash->elf.other
12506 : sym->st_other);
8843416a
AM
12507 }
12508
8387904d 12509 code_sec = sym_sec;
e054468f 12510 code_value = sym_value;
74f0fb50
AM
12511 opd = get_opd_info (sym_sec);
12512 if (opd != NULL)
8387904d
AM
12513 {
12514 bfd_vma dest;
12515
74f0fb50 12516 if (hash == NULL && opd->adjust != NULL)
8387904d 12517 {
51aecdc5 12518 long adjust = opd->adjust[OPD_NDX (sym_value)];
8387904d
AM
12519 if (adjust == -1)
12520 continue;
e054468f 12521 code_value += adjust;
8387904d
AM
12522 sym_value += adjust;
12523 }
12524 dest = opd_entry_value (sym_sec, sym_value,
aef36ac1 12525 &code_sec, &code_value, FALSE);
8387904d
AM
12526 if (dest != (bfd_vma) -1)
12527 {
12528 destination = dest;
12529 if (fdh != NULL)
12530 {
12531 /* Fixup old ABI sym to point at code
12532 entry. */
99877b66 12533 hash->elf.root.type = bfd_link_hash_defweak;
8387904d 12534 hash->elf.root.u.def.section = code_sec;
e054468f 12535 hash->elf.root.u.def.value = code_value;
8387904d
AM
12536 }
12537 }
12538 }
12539
721956f4 12540 /* Determine what (if any) linker stub is needed. */
e054468f 12541 plt_ent = NULL;
721956f4 12542 stub_type = ppc_type_of_stub (section, irela, &hash,
6911b7dc
AM
12543 &plt_ent, destination,
12544 local_off);
ad8e1ba5
AM
12545
12546 if (stub_type != ppc_stub_plt_call)
12547 {
12548 /* Check whether we need a TOC adjusting stub.
12549 Since the linker pastes together pieces from
12550 different object files when creating the
12551 _init and _fini functions, it may be that a
12552 call to what looks like a local sym is in
12553 fact a call needing a TOC adjustment. */
8387904d
AM
12554 if (code_sec != NULL
12555 && code_sec->output_section != NULL
6f20ed8a
AM
12556 && (htab->sec_info[code_sec->id].toc_off
12557 != htab->sec_info[section->id].toc_off)
4c52953f
AM
12558 && (code_sec->has_toc_reloc
12559 || code_sec->makes_toc_func_call))
ad8e1ba5
AM
12560 stub_type = ppc_stub_long_branch_r2off;
12561 }
12562
721956f4
AM
12563 if (stub_type == ppc_stub_none)
12564 continue;
12565
411e1bfb
AM
12566 /* __tls_get_addr calls might be eliminated. */
12567 if (stub_type != ppc_stub_plt_call
12568 && hash != NULL
8387904d
AM
12569 && (hash == htab->tls_get_addr
12570 || hash == htab->tls_get_addr_fd)
411e1bfb
AM
12571 && section->has_tls_reloc
12572 && irela != internal_relocs)
12573 {
12574 /* Get tls info. */
f961d9dd 12575 unsigned char *tls_mask;
411e1bfb 12576
3a71aa26 12577 if (!get_tls_mask (&tls_mask, NULL, NULL, &local_syms,
411e1bfb
AM
12578 irela - 1, input_bfd))
12579 goto error_ret_free_internal;
e7b938ca 12580 if (*tls_mask != 0)
411e1bfb
AM
12581 continue;
12582 }
12583
f378ab09 12584 if (stub_type == ppc_stub_plt_call)
794e51c0 12585 {
6e1816be
AM
12586 if (!htab->opd_abi
12587 && htab->params->plt_localentry0 != 0
12588 && is_elfv2_localentry0 (&hash->elf))
12589 htab->has_plt_localentry0 = 1;
12590 else if (irela + 1 < irelaend
12591 && irela[1].r_offset == irela->r_offset + 4
12592 && (ELF64_R_TYPE (irela[1].r_info)
12593 == R_PPC64_TOCSAVE))
f378ab09
AM
12594 {
12595 if (!tocsave_find (htab, INSERT,
12596 &local_syms, irela + 1, input_bfd))
12597 goto error_ret_free_internal;
12598 }
f378ab09
AM
12599 else
12600 stub_type = ppc_stub_plt_call_r2save;
794e51c0 12601 }
3b421ab3 12602
721956f4 12603 /* Support for grouping stub sections. */
6f20ed8a 12604 id_sec = htab->sec_info[section->id].u.group->link_sec;
721956f4
AM
12605
12606 /* Get the name of this stub. */
12607 stub_name = ppc_stub_name (id_sec, sym_sec, hash, irela);
12608 if (!stub_name)
12609 goto error_ret_free_internal;
12610
12611 stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table,
b34976b6 12612 stub_name, FALSE, FALSE);
721956f4
AM
12613 if (stub_entry != NULL)
12614 {
12615 /* The proper stub has already been created. */
12616 free (stub_name);
794e51c0
AM
12617 if (stub_type == ppc_stub_plt_call_r2save)
12618 stub_entry->stub_type = stub_type;
721956f4
AM
12619 continue;
12620 }
12621
25f53a85 12622 stub_entry = ppc_add_stub (stub_name, section, info);
721956f4
AM
12623 if (stub_entry == NULL)
12624 {
12625 free (stub_name);
6cdc0ccc
AM
12626 error_ret_free_internal:
12627 if (elf_section_data (section)->relocs == NULL)
12628 free (internal_relocs);
12629 error_ret_free_local:
12630 if (local_syms != NULL
12631 && (symtab_hdr->contents
12632 != (unsigned char *) local_syms))
12633 free (local_syms);
b34976b6 12634 return FALSE;
721956f4
AM
12635 }
12636
ad8e1ba5 12637 stub_entry->stub_type = stub_type;
794e51c0
AM
12638 if (stub_type != ppc_stub_plt_call
12639 && stub_type != ppc_stub_plt_call_r2save)
e054468f
AM
12640 {
12641 stub_entry->target_value = code_value;
12642 stub_entry->target_section = code_sec;
12643 }
12644 else
12645 {
12646 stub_entry->target_value = sym_value;
12647 stub_entry->target_section = sym_sec;
12648 }
721956f4 12649 stub_entry->h = hash;
e054468f 12650 stub_entry->plt_ent = plt_ent;
6911b7dc 12651 stub_entry->other = hash ? hash->elf.other : sym->st_other;
ee75fd95
AM
12652
12653 if (stub_entry->h != NULL)
12654 htab->stub_globals += 1;
721956f4
AM
12655 }
12656
12657 /* We're done with the internal relocs, free them. */
6cdc0ccc 12658 if (elf_section_data (section)->relocs != internal_relocs)
1e2f5b6e 12659 free (internal_relocs);
721956f4 12660 }
6cdc0ccc
AM
12661
12662 if (local_syms != NULL
12663 && symtab_hdr->contents != (unsigned char *) local_syms)
12664 {
12665 if (!info->keep_memory)
12666 free (local_syms);
12667 else
12668 symtab_hdr->contents = (unsigned char *) local_syms;
12669 }
721956f4
AM
12670 }
12671
5c3dead3 12672 /* We may have added some stubs. Find out the new size of the
721956f4 12673 stub sections. */
d4aaa2a0
AM
12674 for (group = htab->group; group != NULL; group = group->next)
12675 if (group->stub_sec != NULL)
ee75fd95 12676 {
d4aaa2a0
AM
12677 asection *stub_sec = group->stub_sec;
12678
ea3d7d1c
AM
12679 if (htab->stub_iteration <= STUB_SHRINK_ITER
12680 || stub_sec->rawsize < stub_sec->size)
12681 /* Past STUB_SHRINK_ITER, rawsize is the max size seen. */
12682 stub_sec->rawsize = stub_sec->size;
ee75fd95
AM
12683 stub_sec->size = 0;
12684 stub_sec->reloc_count = 0;
84f5d08e 12685 stub_sec->flags &= ~SEC_RELOC;
ee75fd95 12686 }
eea6121a
AM
12687
12688 htab->brlt->size = 0;
84f5d08e
AM
12689 htab->brlt->reloc_count = 0;
12690 htab->brlt->flags &= ~SEC_RELOC;
ee75fd95 12691 if (htab->relbrlt != NULL)
eea6121a 12692 htab->relbrlt->size = 0;
721956f4 12693
63bc6f6c 12694 bfd_hash_traverse (&htab->stub_hash_table, ppc_size_one_stub, info);
721956f4 12695
a4b6fadd
AM
12696 for (group = htab->group; group != NULL; group = group->next)
12697 if (group->needs_save_res)
12698 group->stub_sec->size += htab->sfpr->size;
12699
176a0d42
AM
12700 if (info->emitrelocations
12701 && htab->glink != NULL && htab->glink->size != 0)
12702 {
12703 htab->glink->reloc_count = 1;
12704 htab->glink->flags |= SEC_RELOC;
12705 }
12706
58d180e8
AM
12707 if (htab->glink_eh_frame != NULL
12708 && !bfd_is_abs_section (htab->glink_eh_frame->output_section)
9a2a56cc 12709 && htab->glink_eh_frame->output_section->size != 0)
58d180e8 12710 {
2e0ce1c8 12711 size_t size = 0, align = 4;
58d180e8 12712
d4aaa2a0
AM
12713 for (group = htab->group; group != NULL; group = group->next)
12714 if (group->stub_sec != NULL)
12715 size += stub_eh_frame_size (group, align);
58d180e8 12716 if (htab->glink != NULL && htab->glink->size != 0)
2e0ce1c8 12717 size += (24 + align - 1) & -align;
58d180e8 12718 if (size != 0)
2e0ce1c8
AM
12719 size += (sizeof (glink_eh_frame_cie) + align - 1) & -align;
12720 align = 1ul << htab->glink_eh_frame->output_section->alignment_power;
12721 size = (size + align - 1) & -align;
58d180e8
AM
12722 htab->glink_eh_frame->rawsize = htab->glink_eh_frame->size;
12723 htab->glink_eh_frame->size = size;
12724 }
12725
e7d1c40c 12726 if (htab->params->plt_stub_align != 0)
d4aaa2a0
AM
12727 for (group = htab->group; group != NULL; group = group->next)
12728 if (group->stub_sec != NULL)
12729 group->stub_sec->size = ((group->stub_sec->size
12730 + (1 << htab->params->plt_stub_align) - 1)
12731 & -(1 << htab->params->plt_stub_align));
12732
12733 for (group = htab->group; group != NULL; group = group->next)
12734 if (group->stub_sec != NULL
12735 && group->stub_sec->rawsize != group->stub_sec->size
c9301e31 12736 && (htab->stub_iteration <= STUB_SHRINK_ITER
d4aaa2a0 12737 || group->stub_sec->rawsize < group->stub_sec->size))
5c3dead3
AM
12738 break;
12739
d4aaa2a0 12740 if (group == NULL
58d180e8
AM
12741 && (htab->glink_eh_frame == NULL
12742 || htab->glink_eh_frame->rawsize == htab->glink_eh_frame->size))
5c3dead3
AM
12743 break;
12744
721956f4 12745 /* Ask the linker to do its stuff. */
e7d1c40c 12746 (*htab->params->layout_sections_again) ();
721956f4
AM
12747 }
12748
da44f4e5
AM
12749 if (htab->glink_eh_frame != NULL
12750 && htab->glink_eh_frame->size != 0)
12751 {
12752 bfd_vma val;
12753 bfd_byte *p, *last_fde;
12754 size_t last_fde_len, size, align, pad;
d4aaa2a0 12755 struct map_stub *group;
da44f4e5
AM
12756
12757 p = bfd_zalloc (htab->glink_eh_frame->owner, htab->glink_eh_frame->size);
12758 if (p == NULL)
12759 return FALSE;
12760 htab->glink_eh_frame->contents = p;
12761 last_fde = p;
2e0ce1c8 12762 align = 4;
da44f4e5
AM
12763
12764 memcpy (p, glink_eh_frame_cie, sizeof (glink_eh_frame_cie));
12765 /* CIE length (rewrite in case little-endian). */
2e0ce1c8 12766 last_fde_len = ((sizeof (glink_eh_frame_cie) + align - 1) & -align) - 4;
da44f4e5 12767 bfd_put_32 (htab->elf.dynobj, last_fde_len, p);
2e0ce1c8 12768 p += last_fde_len + 4;
da44f4e5 12769
d4aaa2a0
AM
12770 for (group = htab->group; group != NULL; group = group->next)
12771 if (group->stub_sec != NULL)
da44f4e5
AM
12772 {
12773 last_fde = p;
d4aaa2a0 12774 last_fde_len = stub_eh_frame_size (group, align) - 4;
da44f4e5 12775 /* FDE length. */
2e0ce1c8 12776 bfd_put_32 (htab->elf.dynobj, last_fde_len, p);
da44f4e5
AM
12777 p += 4;
12778 /* CIE pointer. */
12779 val = p - htab->glink_eh_frame->contents;
12780 bfd_put_32 (htab->elf.dynobj, val, p);
12781 p += 4;
12782 /* Offset to stub section, written later. */
12783 p += 4;
12784 /* stub section size. */
d4aaa2a0 12785 bfd_put_32 (htab->elf.dynobj, group->stub_sec->size, p);
da44f4e5
AM
12786 p += 4;
12787 /* Augmentation. */
12788 p += 1;
d4aaa2a0
AM
12789 if (group->tls_get_addr_opt_bctrl != -1u)
12790 {
12791 unsigned int to_bctrl = group->tls_get_addr_opt_bctrl / 4;
12792
12793 /* This FDE needs more than just the default.
12794 Describe __tls_get_addr_opt stub LR. */
12795 if (to_bctrl < 64)
12796 *p++ = DW_CFA_advance_loc + to_bctrl;
12797 else if (to_bctrl < 256)
12798 {
12799 *p++ = DW_CFA_advance_loc1;
12800 *p++ = to_bctrl;
12801 }
12802 else if (to_bctrl < 65536)
12803 {
12804 *p++ = DW_CFA_advance_loc2;
12805 bfd_put_16 (htab->elf.dynobj, to_bctrl, p);
12806 p += 2;
12807 }
12808 else
12809 {
12810 *p++ = DW_CFA_advance_loc4;
12811 bfd_put_32 (htab->elf.dynobj, to_bctrl, p);
12812 p += 4;
12813 }
12814 *p++ = DW_CFA_offset_extended_sf;
12815 *p++ = 65;
12816 *p++ = -(STK_LINKER (htab) / 8) & 0x7f;
12817 *p++ = DW_CFA_advance_loc + 4;
12818 *p++ = DW_CFA_restore_extended;
12819 *p++ = 65;
12820 }
da44f4e5 12821 /* Pad. */
d4aaa2a0 12822 p = last_fde + last_fde_len + 4;
da44f4e5
AM
12823 }
12824 if (htab->glink != NULL && htab->glink->size != 0)
12825 {
12826 last_fde = p;
2e0ce1c8 12827 last_fde_len = ((24 + align - 1) & -align) - 4;
da44f4e5 12828 /* FDE length. */
2e0ce1c8 12829 bfd_put_32 (htab->elf.dynobj, last_fde_len, p);
da44f4e5
AM
12830 p += 4;
12831 /* CIE pointer. */
12832 val = p - htab->glink_eh_frame->contents;
12833 bfd_put_32 (htab->elf.dynobj, val, p);
12834 p += 4;
12835 /* Offset to .glink, written later. */
12836 p += 4;
12837 /* .glink size. */
12838 bfd_put_32 (htab->elf.dynobj, htab->glink->size - 8, p);
12839 p += 4;
12840 /* Augmentation. */
12841 p += 1;
12842
12843 *p++ = DW_CFA_advance_loc + 1;
12844 *p++ = DW_CFA_register;
12845 *p++ = 65;
9f08fa5c 12846 *p++ = htab->opd_abi ? 12 : 0;
15a3a14f 12847 *p++ = DW_CFA_advance_loc + (htab->opd_abi ? 5 : 7);
da44f4e5
AM
12848 *p++ = DW_CFA_restore_extended;
12849 *p++ = 65;
2e0ce1c8 12850 p += ((24 + align - 1) & -align) - 24;
da44f4e5
AM
12851 }
12852 /* Subsume any padding into the last FDE if user .eh_frame
12853 sections are aligned more than glink_eh_frame. Otherwise any
12854 zero padding will be seen as a terminator. */
2e0ce1c8 12855 align = 1ul << htab->glink_eh_frame->output_section->alignment_power;
da44f4e5 12856 size = p - htab->glink_eh_frame->contents;
2e0ce1c8 12857 pad = ((size + align - 1) & -align) - size;
da44f4e5
AM
12858 htab->glink_eh_frame->size = size + pad;
12859 bfd_put_32 (htab->elf.dynobj, last_fde_len + pad, last_fde);
12860 }
12861
d969d15f
AM
12862 maybe_strip_output (info, htab->brlt);
12863 if (htab->glink_eh_frame != NULL)
12864 maybe_strip_output (info, htab->glink_eh_frame);
721956f4 12865
b34976b6 12866 return TRUE;
721956f4
AM
12867}
12868
12869/* Called after we have determined section placement. If sections
805fc799 12870 move, we'll be called again. Provide a value for TOCstart. */
721956f4 12871
805fc799 12872bfd_vma
1c865ab2 12873ppc64_elf_set_toc (struct bfd_link_info *info, bfd *obfd)
721956f4 12874{
805fc799 12875 asection *s;
a27e685f 12876 bfd_vma TOCstart, adjust;
721956f4 12877
43417696
AM
12878 if (info != NULL)
12879 {
12880 struct elf_link_hash_entry *h;
12881 struct elf_link_hash_table *htab = elf_hash_table (info);
12882
12883 if (is_elf_hash_table (htab)
12884 && htab->hgot != NULL)
12885 h = htab->hgot;
12886 else
12887 {
12888 h = elf_link_hash_lookup (htab, ".TOC.", FALSE, FALSE, TRUE);
12889 if (is_elf_hash_table (htab))
12890 htab->hgot = h;
12891 }
12892 if (h != NULL
12893 && h->root.type == bfd_link_hash_defined
12894 && !h->root.linker_def
12895 && (!is_elf_hash_table (htab)
12896 || h->def_regular))
12897 {
12898 TOCstart = (h->root.u.def.value - TOC_BASE_OFF
12899 + h->root.u.def.section->output_offset
12900 + h->root.u.def.section->output_section->vma);
12901 _bfd_set_gp_value (obfd, TOCstart);
12902 return TOCstart;
12903 }
12904 }
12905
805fc799
AM
12906 /* The TOC consists of sections .got, .toc, .tocbss, .plt in that
12907 order. The TOC starts where the first of these sections starts. */
12908 s = bfd_get_section_by_name (obfd, ".got");
e054468f 12909 if (s == NULL || (s->flags & SEC_EXCLUDE) != 0)
805fc799 12910 s = bfd_get_section_by_name (obfd, ".toc");
e054468f 12911 if (s == NULL || (s->flags & SEC_EXCLUDE) != 0)
805fc799 12912 s = bfd_get_section_by_name (obfd, ".tocbss");
e054468f 12913 if (s == NULL || (s->flags & SEC_EXCLUDE) != 0)
805fc799 12914 s = bfd_get_section_by_name (obfd, ".plt");
e054468f 12915 if (s == NULL || (s->flags & SEC_EXCLUDE) != 0)
805fc799
AM
12916 {
12917 /* This may happen for
12918 o references to TOC base (SYM@toc / TOC[tc0]) without a
12919 .toc directive
12920 o bad linker script
12921 o --gc-sections and empty TOC sections
12922
12923 FIXME: Warn user? */
12924
12925 /* Look for a likely section. We probably won't even be
12926 using TOCstart. */
12927 for (s = obfd->sections; s != NULL; s = s->next)
e054468f
AM
12928 if ((s->flags & (SEC_ALLOC | SEC_SMALL_DATA | SEC_READONLY
12929 | SEC_EXCLUDE))
805fc799
AM
12930 == (SEC_ALLOC | SEC_SMALL_DATA))
12931 break;
721956f4 12932 if (s == NULL)
805fc799 12933 for (s = obfd->sections; s != NULL; s = s->next)
e054468f 12934 if ((s->flags & (SEC_ALLOC | SEC_SMALL_DATA | SEC_EXCLUDE))
805fc799
AM
12935 == (SEC_ALLOC | SEC_SMALL_DATA))
12936 break;
721956f4 12937 if (s == NULL)
805fc799 12938 for (s = obfd->sections; s != NULL; s = s->next)
e054468f
AM
12939 if ((s->flags & (SEC_ALLOC | SEC_READONLY | SEC_EXCLUDE))
12940 == SEC_ALLOC)
805fc799 12941 break;
721956f4 12942 if (s == NULL)
805fc799 12943 for (s = obfd->sections; s != NULL; s = s->next)
e054468f 12944 if ((s->flags & (SEC_ALLOC | SEC_EXCLUDE)) == SEC_ALLOC)
805fc799
AM
12945 break;
12946 }
721956f4 12947
805fc799
AM
12948 TOCstart = 0;
12949 if (s != NULL)
12950 TOCstart = s->output_section->vma + s->output_offset;
721956f4 12951
a27e685f
AM
12952 /* Force alignment. */
12953 adjust = TOCstart & (TOC_BASE_ALIGN - 1);
12954 TOCstart -= adjust;
1c865ab2
AM
12955 _bfd_set_gp_value (obfd, TOCstart);
12956
810d4e75 12957 if (info != NULL && s != NULL)
1c865ab2
AM
12958 {
12959 struct ppc_link_hash_table *htab = ppc_hash_table (info);
12960
810d4e75
AM
12961 if (htab != NULL)
12962 {
12963 if (htab->elf.hgot != NULL)
12964 {
a27e685f 12965 htab->elf.hgot->root.u.def.value = TOC_BASE_OFF - adjust;
810d4e75
AM
12966 htab->elf.hgot->root.u.def.section = s;
12967 }
12968 }
12969 else
1c865ab2 12970 {
810d4e75
AM
12971 struct bfd_link_hash_entry *bh = NULL;
12972 _bfd_generic_link_add_one_symbol (info, obfd, ".TOC.", BSF_GLOBAL,
a27e685f
AM
12973 s, TOC_BASE_OFF - adjust,
12974 NULL, FALSE, FALSE, &bh);
1c865ab2
AM
12975 }
12976 }
805fc799 12977 return TOCstart;
721956f4
AM
12978}
12979
a345bc8d
AM
12980/* Called via elf_link_hash_traverse from ppc64_elf_build_stubs to
12981 write out any global entry stubs. */
12982
12983static bfd_boolean
12984build_global_entry_stubs (struct elf_link_hash_entry *h, void *inf)
12985{
12986 struct bfd_link_info *info;
12987 struct ppc_link_hash_table *htab;
12988 struct plt_entry *pent;
12989 asection *s;
12990
12991 if (h->root.type == bfd_link_hash_indirect)
12992 return TRUE;
12993
12994 if (!h->pointer_equality_needed)
12995 return TRUE;
12996
12997 if (h->def_regular)
12998 return TRUE;
12999
13000 info = inf;
13001 htab = ppc_hash_table (info);
13002 if (htab == NULL)
13003 return FALSE;
13004
13005 s = htab->glink;
13006 for (pent = h->plt.plist; pent != NULL; pent = pent->next)
13007 if (pent->plt.offset != (bfd_vma) -1
13008 && pent->addend == 0)
13009 {
13010 bfd_byte *p;
13011 asection *plt;
13012 bfd_vma off;
13013
a345bc8d 13014 p = s->contents + h->root.u.def.value;
33e44f2e 13015 plt = htab->elf.splt;
a345bc8d
AM
13016 if (!htab->elf.dynamic_sections_created
13017 || h->dynindx == -1)
33e44f2e 13018 plt = htab->elf.iplt;
a345bc8d
AM
13019 off = pent->plt.offset + plt->output_offset + plt->output_section->vma;
13020 off -= h->root.u.def.value + s->output_offset + s->output_section->vma;
13021
13022 if (off + 0x80008000 > 0xffffffff || (off & 3) != 0)
13023 {
13024 info->callbacks->einfo
13025 (_("%P: linkage table error against `%T'\n"),
13026 h->root.root.string);
13027 bfd_set_error (bfd_error_bad_value);
13028 htab->stub_error = TRUE;
13029 }
13030
7341d5e2
AM
13031 htab->stub_count[ppc_stub_global_entry - 1] += 1;
13032 if (htab->params->emit_stub_syms)
13033 {
13034 size_t len = strlen (h->root.root.string);
13035 char *name = bfd_malloc (sizeof "12345678.global_entry." + len);
13036
13037 if (name == NULL)
13038 return FALSE;
13039
13040 sprintf (name, "%08x.global_entry.%s", s->id, h->root.root.string);
13041 h = elf_link_hash_lookup (&htab->elf, name, TRUE, FALSE, FALSE);
13042 if (h == NULL)
13043 return FALSE;
13044 if (h->root.type == bfd_link_hash_new)
13045 {
13046 h->root.type = bfd_link_hash_defined;
13047 h->root.u.def.section = s;
13048 h->root.u.def.value = p - s->contents;
13049 h->ref_regular = 1;
13050 h->def_regular = 1;
13051 h->ref_regular_nonweak = 1;
13052 h->forced_local = 1;
13053 h->non_elf = 0;
2ec55de3 13054 h->root.linker_def = 1;
7341d5e2
AM
13055 }
13056 }
13057
a345bc8d
AM
13058 if (PPC_HA (off) != 0)
13059 {
13060 bfd_put_32 (s->owner, ADDIS_R12_R12 | PPC_HA (off), p);
13061 p += 4;
13062 }
13063 bfd_put_32 (s->owner, LD_R12_0R12 | PPC_LO (off), p);
13064 p += 4;
13065 bfd_put_32 (s->owner, MTCTR_R12, p);
13066 p += 4;
13067 bfd_put_32 (s->owner, BCTR, p);
13068 break;
13069 }
13070 return TRUE;
13071}
13072
721956f4
AM
13073/* Build all the stubs associated with the current output file.
13074 The stubs are kept in a hash table attached to the main linker
13075 hash table. This function is called via gldelf64ppc_finish. */
13076
b34976b6 13077bfd_boolean
e7d1c40c 13078ppc64_elf_build_stubs (struct bfd_link_info *info,
4ce794b7 13079 char **stats)
5d1634d7
AM
13080{
13081 struct ppc_link_hash_table *htab = ppc_hash_table (info);
a4b6fadd 13082 struct map_stub *group;
721956f4 13083 asection *stub_sec;
5d1634d7 13084 bfd_byte *p;
e717da7e 13085 int stub_sec_count = 0;
5d1634d7 13086
4dfe6ac6
NC
13087 if (htab == NULL)
13088 return FALSE;
13089
eea6121a 13090 /* Allocate memory to hold the linker stubs. */
d4aaa2a0
AM
13091 for (group = htab->group; group != NULL; group = group->next)
13092 if ((stub_sec = group->stub_sec) != NULL
eea6121a 13093 && stub_sec->size != 0)
e717da7e 13094 {
e7d1c40c 13095 stub_sec->contents = bfd_zalloc (htab->params->stub_bfd, stub_sec->size);
eea6121a
AM
13096 if (stub_sec->contents == NULL)
13097 return FALSE;
eea6121a 13098 stub_sec->size = 0;
e717da7e 13099 }
5d1634d7 13100
23eb7e01 13101 if (htab->glink != NULL && htab->glink->size != 0)
5d1634d7 13102 {
9f951329 13103 unsigned int indx;
ad8e1ba5 13104 bfd_vma plt0;
9f951329 13105
721956f4 13106 /* Build the .glink plt call stub. */
e7d1c40c 13107 if (htab->params->emit_stub_syms)
97b639ba
AM
13108 {
13109 struct elf_link_hash_entry *h;
468392fb
AM
13110 h = elf_link_hash_lookup (&htab->elf, "__glink_PLTresolve",
13111 TRUE, FALSE, FALSE);
97b639ba
AM
13112 if (h == NULL)
13113 return FALSE;
13114 if (h->root.type == bfd_link_hash_new)
13115 {
13116 h->root.type = bfd_link_hash_defined;
13117 h->root.u.def.section = htab->glink;
ee4bf8d2 13118 h->root.u.def.value = 8;
f5385ebf
AM
13119 h->ref_regular = 1;
13120 h->def_regular = 1;
13121 h->ref_regular_nonweak = 1;
13122 h->forced_local = 1;
13123 h->non_elf = 0;
2ec55de3 13124 h->root.linker_def = 1;
97b639ba
AM
13125 }
13126 }
33e44f2e
AM
13127 plt0 = (htab->elf.splt->output_section->vma
13128 + htab->elf.splt->output_offset
13129 - 16);
176a0d42
AM
13130 if (info->emitrelocations)
13131 {
13132 Elf_Internal_Rela *r = get_relocs (htab->glink, 1);
13133 if (r == NULL)
13134 return FALSE;
13135 r->r_offset = (htab->glink->output_offset
13136 + htab->glink->output_section->vma);
13137 r->r_info = ELF64_R_INFO (0, R_PPC64_REL64);
13138 r->r_addend = plt0;
13139 }
4ce794b7 13140 p = htab->glink->contents;
176a0d42 13141 plt0 -= htab->glink->output_section->vma + htab->glink->output_offset;
ee4bf8d2
AM
13142 bfd_put_64 (htab->glink->owner, plt0, p);
13143 p += 8;
b9e5796b
AM
13144 if (htab->opd_abi)
13145 {
13146 bfd_put_32 (htab->glink->owner, MFLR_R12, p);
13147 p += 4;
13148 bfd_put_32 (htab->glink->owner, BCL_20_31, p);
13149 p += 4;
13150 bfd_put_32 (htab->glink->owner, MFLR_R11, p);
13151 p += 4;
13152 bfd_put_32 (htab->glink->owner, LD_R2_0R11 | (-16 & 0xfffc), p);
13153 p += 4;
13154 bfd_put_32 (htab->glink->owner, MTLR_R12, p);
13155 p += 4;
13156 bfd_put_32 (htab->glink->owner, ADD_R11_R2_R11, p);
13157 p += 4;
13158 bfd_put_32 (htab->glink->owner, LD_R12_0R11, p);
13159 p += 4;
13160 bfd_put_32 (htab->glink->owner, LD_R2_0R11 | 8, p);
13161 p += 4;
13162 bfd_put_32 (htab->glink->owner, MTCTR_R12, p);
13163 p += 4;
13164 bfd_put_32 (htab->glink->owner, LD_R11_0R11 | 16, p);
13165 p += 4;
13166 }
13167 else
13168 {
13169 bfd_put_32 (htab->glink->owner, MFLR_R0, p);
13170 p += 4;
13171 bfd_put_32 (htab->glink->owner, BCL_20_31, p);
13172 p += 4;
13173 bfd_put_32 (htab->glink->owner, MFLR_R11, p);
13174 p += 4;
f378ab09
AM
13175 bfd_put_32 (htab->glink->owner, STD_R2_0R1 + 24, p);
13176 p += 4;
b9e5796b
AM
13177 bfd_put_32 (htab->glink->owner, LD_R2_0R11 | (-16 & 0xfffc), p);
13178 p += 4;
13179 bfd_put_32 (htab->glink->owner, MTLR_R0, p);
13180 p += 4;
13181 bfd_put_32 (htab->glink->owner, SUB_R12_R12_R11, p);
13182 p += 4;
13183 bfd_put_32 (htab->glink->owner, ADD_R11_R2_R11, p);
13184 p += 4;
13185 bfd_put_32 (htab->glink->owner, ADDI_R0_R12 | (-48 & 0xffff), p);
13186 p += 4;
13187 bfd_put_32 (htab->glink->owner, LD_R12_0R11, p);
13188 p += 4;
13189 bfd_put_32 (htab->glink->owner, SRDI_R0_R0_2, p);
13190 p += 4;
13191 bfd_put_32 (htab->glink->owner, MTCTR_R12, p);
13192 p += 4;
13193 bfd_put_32 (htab->glink->owner, LD_R11_0R11 | 8, p);
13194 p += 4;
13195 }
4ce794b7 13196 bfd_put_32 (htab->glink->owner, BCTR, p);
ad8e1ba5 13197 p += 4;
ee4bf8d2
AM
13198 while (p - htab->glink->contents < GLINK_CALL_STUB_SIZE)
13199 {
13200 bfd_put_32 (htab->glink->owner, NOP, p);
13201 p += 4;
13202 }
ad8e1ba5 13203
9f951329
AM
13204 /* Build the .glink lazy link call stubs. */
13205 indx = 0;
a345bc8d 13206 while (p < htab->glink->contents + htab->glink->rawsize)
9f951329 13207 {
b9e5796b 13208 if (htab->opd_abi)
9f951329 13209 {
b9e5796b
AM
13210 if (indx < 0x8000)
13211 {
13212 bfd_put_32 (htab->glink->owner, LI_R0_0 | indx, p);
13213 p += 4;
13214 }
13215 else
13216 {
13217 bfd_put_32 (htab->glink->owner, LIS_R0_0 | PPC_HI (indx), p);
13218 p += 4;
13219 bfd_put_32 (htab->glink->owner, ORI_R0_R0_0 | PPC_LO (indx),
13220 p);
13221 p += 4;
13222 }
9f951329 13223 }
4ce794b7 13224 bfd_put_32 (htab->glink->owner,
ee4bf8d2 13225 B_DOT | ((htab->glink->contents - p + 8) & 0x3fffffc), p);
a16d5acb 13226 indx++;
9f951329
AM
13227 p += 4;
13228 }
a345bc8d
AM
13229
13230 /* Build .glink global entry stubs. */
13231 if (htab->glink->size > htab->glink->rawsize)
afe397ea 13232 elf_link_hash_traverse (&htab->elf, build_global_entry_stubs, info);
5d1634d7 13233 }
5d1634d7 13234
7341d5e2 13235 if (htab->brlt != NULL && htab->brlt->size != 0)
721956f4 13236 {
4ce794b7 13237 htab->brlt->contents = bfd_zalloc (htab->brlt->owner,
eea6121a 13238 htab->brlt->size);
4ce794b7 13239 if (htab->brlt->contents == NULL)
b34976b6 13240 return FALSE;
721956f4 13241 }
ee75fd95 13242 if (htab->relbrlt != NULL && htab->relbrlt->size != 0)
63bc6f6c
AM
13243 {
13244 htab->relbrlt->contents = bfd_zalloc (htab->relbrlt->owner,
eea6121a 13245 htab->relbrlt->size);
63bc6f6c
AM
13246 if (htab->relbrlt->contents == NULL)
13247 return FALSE;
13248 }
5d1634d7 13249
721956f4
AM
13250 /* Build the stubs as directed by the stub hash table. */
13251 bfd_hash_traverse (&htab->stub_hash_table, ppc_build_one_stub, info);
5d1634d7 13252
a4b6fadd
AM
13253 for (group = htab->group; group != NULL; group = group->next)
13254 if (group->needs_save_res)
13255 {
13256 stub_sec = group->stub_sec;
13257 memcpy (stub_sec->contents + stub_sec->size, htab->sfpr->contents,
13258 htab->sfpr->size);
13259 if (htab->params->emit_stub_syms)
13260 {
13261 unsigned int i;
13262
13263 for (i = 0; i < ARRAY_SIZE (save_res_funcs); i++)
13264 if (!sfpr_define (info, &save_res_funcs[i], stub_sec))
13265 return FALSE;
13266 }
13267 stub_sec->size += htab->sfpr->size;
13268 }
13269
aa8a7074
AM
13270 if (htab->relbrlt != NULL)
13271 htab->relbrlt->reloc_count = 0;
13272
e7d1c40c 13273 if (htab->params->plt_stub_align != 0)
d4aaa2a0
AM
13274 for (group = htab->group; group != NULL; group = group->next)
13275 if ((stub_sec = group->stub_sec) != NULL)
e7d1c40c
AM
13276 stub_sec->size = ((stub_sec->size
13277 + (1 << htab->params->plt_stub_align) - 1)
29f628db 13278 & -(1 << htab->params->plt_stub_align));
794e51c0 13279
d4aaa2a0
AM
13280 for (group = htab->group; group != NULL; group = group->next)
13281 if ((stub_sec = group->stub_sec) != NULL)
e717da7e
AM
13282 {
13283 stub_sec_count += 1;
c9301e31
AM
13284 if (stub_sec->rawsize != stub_sec->size
13285 && (htab->stub_iteration <= STUB_SHRINK_ITER
13286 || stub_sec->rawsize < stub_sec->size))
e717da7e
AM
13287 break;
13288 }
5d1634d7 13289
25516cc5 13290 if (group != NULL)
5d1634d7 13291 {
b34976b6 13292 htab->stub_error = TRUE;
8de848d8 13293 info->callbacks->einfo (_("%P: stubs don't match calculated size\n"));
5d1634d7 13294 }
721956f4 13295
d2a300cf
AM
13296 if (htab->stub_error)
13297 return FALSE;
13298
13299 if (stats != NULL)
13300 {
13301 *stats = bfd_malloc (500);
13302 if (*stats == NULL)
13303 return FALSE;
13304
ee75fd95 13305 sprintf (*stats, _("linker stubs in %u group%s\n"
d2a300cf
AM
13306 " branch %lu\n"
13307 " toc adjust %lu\n"
13308 " long branch %lu\n"
13309 " long toc adj %lu\n"
794e51c0 13310 " plt call %lu\n"
7341d5e2
AM
13311 " plt call toc %lu\n"
13312 " global entry %lu"),
e717da7e 13313 stub_sec_count,
ee75fd95 13314 stub_sec_count == 1 ? "" : "s",
4ce794b7
AM
13315 htab->stub_count[ppc_stub_long_branch - 1],
13316 htab->stub_count[ppc_stub_long_branch_r2off - 1],
13317 htab->stub_count[ppc_stub_plt_branch - 1],
13318 htab->stub_count[ppc_stub_plt_branch_r2off - 1],
794e51c0 13319 htab->stub_count[ppc_stub_plt_call - 1],
7341d5e2
AM
13320 htab->stub_count[ppc_stub_plt_call_r2save - 1],
13321 htab->stub_count[ppc_stub_global_entry - 1]);
d2a300cf
AM
13322 }
13323 return TRUE;
5bd4f169
AM
13324}
13325
60124e18
AM
13326/* What to do when ld finds relocations against symbols defined in
13327 discarded sections. */
13328
13329static unsigned int
13330ppc64_elf_action_discarded (asection *sec)
13331{
13332 if (strcmp (".opd", sec->name) == 0)
13333 return 0;
13334
13335 if (strcmp (".toc", sec->name) == 0)
13336 return 0;
13337
bce50a28
JJ
13338 if (strcmp (".toc1", sec->name) == 0)
13339 return 0;
13340
60124e18
AM
13341 return _bfd_elf_default_action_discarded (sec);
13342}
13343
5bd4f169
AM
13344/* The RELOCATE_SECTION function is called by the ELF backend linker
13345 to handle the relocations for a section.
13346
13347 The relocs are always passed as Rela structures; if the section
13348 actually uses Rel structures, the r_addend field will always be
13349 zero.
13350
13351 This function is responsible for adjust the section contents as
13352 necessary, and (if using Rela relocs and generating a
1049f94e 13353 relocatable output file) adjusting the reloc addend as
5bd4f169
AM
13354 necessary.
13355
13356 This function does not have to worry about setting the reloc
13357 address or the reloc symbol index.
13358
13359 LOCAL_SYMS is a pointer to the swapped in local symbols.
13360
13361 LOCAL_SECTIONS is an array giving the section in the input file
13362 corresponding to the st_shndx field of each local symbol.
13363
13364 The global hash table entry for the global symbols can be found
13365 via elf_sym_hashes (input_bfd).
13366
1049f94e 13367 When generating relocatable output, this function must handle
5bd4f169
AM
13368 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
13369 going to be the section symbol corresponding to the output
13370 section, which means that the addend must be adjusted
13371 accordingly. */
13372
b34976b6 13373static bfd_boolean
4ce794b7
AM
13374ppc64_elf_relocate_section (bfd *output_bfd,
13375 struct bfd_link_info *info,
13376 bfd *input_bfd,
13377 asection *input_section,
13378 bfd_byte *contents,
13379 Elf_Internal_Rela *relocs,
13380 Elf_Internal_Sym *local_syms,
13381 asection **local_sections)
5bd4f169 13382{
65f38f15 13383 struct ppc_link_hash_table *htab;
5bd4f169
AM
13384 Elf_Internal_Shdr *symtab_hdr;
13385 struct elf_link_hash_entry **sym_hashes;
5bd4f169 13386 Elf_Internal_Rela *rel;
c316a17c 13387 Elf_Internal_Rela *wrel;
5bd4f169 13388 Elf_Internal_Rela *relend;
411e1bfb
AM
13389 Elf_Internal_Rela outrel;
13390 bfd_byte *loc;
411e1bfb 13391 struct got_entry **local_got_ents;
5bd4f169 13392 bfd_vma TOCstart;
b34976b6
AM
13393 bfd_boolean ret = TRUE;
13394 bfd_boolean is_opd;
794e51c0
AM
13395 /* Assume 'at' branch hints. */
13396 bfd_boolean is_isa_v2 = TRUE;
95f0d0d2 13397 bfd_vma d_offset = (bfd_big_endian (input_bfd) ? 2 : 0);
5bd4f169 13398
65f38f15 13399 /* Initialize howto table if needed. */
5bd4f169 13400 if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
5bd4f169
AM
13401 ppc_howto_init ();
13402
65f38f15 13403 htab = ppc_hash_table (info);
4dfe6ac6
NC
13404 if (htab == NULL)
13405 return FALSE;
ee75fd95
AM
13406
13407 /* Don't relocate stub sections. */
e7d1c40c 13408 if (input_section->owner == htab->params->stub_bfd)
ee75fd95
AM
13409 return TRUE;
13410
0c8d6e5c 13411 BFD_ASSERT (is_ppc64_elf (input_bfd));
0ffa91dd 13412
411e1bfb 13413 local_got_ents = elf_local_got_ents (input_bfd);
5bd4f169 13414 TOCstart = elf_gp (output_bfd);
0ffa91dd 13415 symtab_hdr = &elf_symtab_hdr (input_bfd);
5bd4f169 13416 sym_hashes = elf_sym_hashes (input_bfd);
7c8fe5c4 13417 is_opd = ppc64_elf_section_data (input_section)->sec_type == sec_opd;
65f38f15 13418
c316a17c 13419 rel = wrel = relocs;
5bd4f169 13420 relend = relocs + input_section->reloc_count;
c316a17c 13421 for (; rel < relend; wrel++, rel++)
5bd4f169 13422 {
04c9666a 13423 enum elf_ppc64_reloc_type r_type;
31c76678 13424 bfd_vma addend;
5bd4f169
AM
13425 bfd_reloc_status_type r;
13426 Elf_Internal_Sym *sym;
13427 asection *sec;
039b3fef
AM
13428 struct elf_link_hash_entry *h_elf;
13429 struct ppc_link_hash_entry *h;
13430 struct ppc_link_hash_entry *fdh;
5bd4f169 13431 const char *sym_name;
0d4792f7 13432 unsigned long r_symndx, toc_symndx;
3a71aa26 13433 bfd_vma toc_addend;
f961d9dd
AM
13434 unsigned char tls_mask, tls_gd, tls_type;
13435 unsigned char sym_type;
5bd4f169 13436 bfd_vma relocation;
b34976b6
AM
13437 bfd_boolean unresolved_reloc;
13438 bfd_boolean warned;
bc30df16 13439 enum { DEST_NORMAL, DEST_OPD, DEST_STUB } reloc_dest;
67f0cbdb 13440 unsigned int insn;
e11840f9 13441 unsigned int mask;
721956f4
AM
13442 struct ppc_stub_hash_entry *stub_entry;
13443 bfd_vma max_br_offset;
13444 bfd_vma from;
c316a17c 13445 Elf_Internal_Rela orig_rel;
b80eed39
AM
13446 reloc_howto_type *howto;
13447 struct reloc_howto_struct alt_howto;
5bd4f169 13448
c316a17c
AM
13449 again:
13450 orig_rel = *rel;
13451
4ce794b7 13452 r_type = ELF64_R_TYPE (rel->r_info);
5bd4f169 13453 r_symndx = ELF64_R_SYM (rel->r_info);
ee87f2da
AM
13454
13455 /* For old style R_PPC64_TOC relocs with a zero symbol, use the
13456 symbol of the previous ADDR64 reloc. The symbol gives us the
13457 proper TOC base to use. */
13458 if (rel->r_info == ELF64_R_INFO (0, R_PPC64_TOC)
c316a17c
AM
13459 && wrel != relocs
13460 && ELF64_R_TYPE (wrel[-1].r_info) == R_PPC64_ADDR64
ee87f2da 13461 && is_opd)
c316a17c 13462 r_symndx = ELF64_R_SYM (wrel[-1].r_info);
ee87f2da 13463
4ce794b7
AM
13464 sym = NULL;
13465 sec = NULL;
039b3fef 13466 h_elf = NULL;
4ce794b7 13467 sym_name = NULL;
b34976b6
AM
13468 unresolved_reloc = FALSE;
13469 warned = FALSE;
65f38f15 13470
0b13192e 13471 if (r_symndx < symtab_hdr->sh_info)
5bd4f169
AM
13472 {
13473 /* It's a local symbol. */
74f0fb50 13474 struct _opd_sec_data *opd;
4025353c 13475
5bd4f169
AM
13476 sym = local_syms + r_symndx;
13477 sec = local_sections[r_symndx];
26c61ae5 13478 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym, sec);
0d4792f7 13479 sym_type = ELF64_ST_TYPE (sym->st_info);
8517fae7 13480 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
74f0fb50
AM
13481 opd = get_opd_info (sec);
13482 if (opd != NULL && opd->adjust != NULL)
1e2f5b6e 13483 {
51aecdc5
AM
13484 long adjust = opd->adjust[OPD_NDX (sym->st_value
13485 + rel->r_addend)];
4025353c
AM
13486 if (adjust == -1)
13487 relocation = 0;
13488 else
4cc603a5
AM
13489 {
13490 /* If this is a relocation against the opd section sym
13491 and we have edited .opd, adjust the reloc addend so
13492 that ld -r and ld --emit-relocs output is correct.
13493 If it is a reloc against some other .opd symbol,
13494 then the symbol value will be adjusted later. */
13495 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
13496 rel->r_addend += adjust;
13497 else
13498 relocation += adjust;
13499 }
1e2f5b6e 13500 }
5bd4f169
AM
13501 }
13502 else
13503 {
62d887d4
L
13504 bfd_boolean ignored;
13505
b2a8e766
AM
13506 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
13507 r_symndx, symtab_hdr, sym_hashes,
039b3fef 13508 h_elf, sec, relocation,
62d887d4 13509 unresolved_reloc, warned, ignored);
039b3fef
AM
13510 sym_name = h_elf->root.root.string;
13511 sym_type = h_elf->type;
b69fdb4e
AM
13512 if (sec != NULL
13513 && sec->owner == output_bfd
13514 && strcmp (sec->name, ".opd") == 0)
13515 {
13516 /* This is a symbol defined in a linker script. All
13517 such are defined in output sections, even those
13518 defined by simple assignment from a symbol defined in
13519 an input section. Transfer the symbol to an
13520 appropriate input .opd section, so that a branch to
13521 this symbol will be mapped to the location specified
13522 by the opd entry. */
13523 struct bfd_link_order *lo;
13524 for (lo = sec->map_head.link_order; lo != NULL; lo = lo->next)
13525 if (lo->type == bfd_indirect_link_order)
13526 {
13527 asection *isec = lo->u.indirect.section;
13528 if (h_elf->root.u.def.value >= isec->output_offset
13529 && h_elf->root.u.def.value < (isec->output_offset
13530 + isec->size))
13531 {
13532 h_elf->root.u.def.value -= isec->output_offset;
13533 h_elf->root.u.def.section = isec;
13534 sec = isec;
13535 break;
13536 }
13537 }
13538 }
5bd4f169 13539 }
039b3fef 13540 h = (struct ppc_link_hash_entry *) h_elf;
5bd4f169 13541
dbaa2011 13542 if (sec != NULL && discarded_section (sec))
c316a17c
AM
13543 {
13544 _bfd_clear_contents (ppc64_elf_howto_table[r_type],
13545 input_bfd, input_section,
13546 contents + rel->r_offset);
13547 wrel->r_offset = rel->r_offset;
13548 wrel->r_info = 0;
13549 wrel->r_addend = 0;
13550
13551 /* For ld -r, remove relocations in debug sections against
dcd2b8a0 13552 symbols defined in discarded sections. Not done for
c316a17c
AM
13553 non-debug to preserve relocs in .eh_frame which the
13554 eh_frame editing code expects to be present. */
13555 if (bfd_link_relocatable (info)
13556 && (input_section->flags & SEC_DEBUGGING))
13557 wrel--;
13558
13559 continue;
13560 }
ab96bf03 13561
0e1862bb 13562 if (bfd_link_relocatable (info))
c316a17c 13563 goto copy_reloc;
ab96bf03 13564
f40da81b
AM
13565 if (h != NULL && &h->elf == htab->elf.hgot)
13566 {
6f20ed8a 13567 relocation = TOCstart + htab->sec_info[input_section->id].toc_off;
f40da81b
AM
13568 sec = bfd_abs_section_ptr;
13569 unresolved_reloc = FALSE;
13570 }
13571
951fd09b
AM
13572 /* TLS optimizations. Replace instruction sequences and relocs
13573 based on information we collected in tls_optimize. We edit
13574 RELOCS so that --emit-relocs will output something sensible
13575 for the final instruction stream. */
13576 tls_mask = 0;
13577 tls_gd = 0;
0d4792f7 13578 toc_symndx = 0;
727fc41e
AM
13579 if (h != NULL)
13580 tls_mask = h->tls_mask;
13581 else if (local_got_ents != NULL)
411e1bfb 13582 {
e054468f
AM
13583 struct plt_entry **local_plt = (struct plt_entry **)
13584 (local_got_ents + symtab_hdr->sh_info);
f961d9dd 13585 unsigned char *lgot_masks = (unsigned char *)
e054468f 13586 (local_plt + symtab_hdr->sh_info);
727fc41e
AM
13587 tls_mask = lgot_masks[r_symndx];
13588 }
13589 if (tls_mask == 0
13590 && (r_type == R_PPC64_TLS
13591 || r_type == R_PPC64_TLSGD
13592 || r_type == R_PPC64_TLSLD))
13593 {
13594 /* Check for toc tls entries. */
f961d9dd 13595 unsigned char *toc_tls;
0d4792f7 13596
727fc41e
AM
13597 if (!get_tls_mask (&toc_tls, &toc_symndx, &toc_addend,
13598 &local_syms, rel, input_bfd))
13599 return FALSE;
0d4792f7 13600
727fc41e
AM
13601 if (toc_tls)
13602 tls_mask = *toc_tls;
0d4792f7
AM
13603 }
13604
13605 /* Check that tls relocs are used with tls syms, and non-tls
13606 relocs are used with non-tls syms. */
cf35638d 13607 if (r_symndx != STN_UNDEF
0d4792f7
AM
13608 && r_type != R_PPC64_NONE
13609 && (h == NULL
039b3fef
AM
13610 || h->elf.root.type == bfd_link_hash_defined
13611 || h->elf.root.type == bfd_link_hash_defweak)
1d483afe
AM
13612 && (IS_PPC64_TLS_RELOC (r_type)
13613 != (sym_type == STT_TLS
13614 || (sym_type == STT_SECTION
13615 && (sec->flags & SEC_THREAD_LOCAL) != 0))))
0d4792f7 13616 {
727fc41e
AM
13617 if (tls_mask != 0
13618 && (r_type == R_PPC64_TLS
13619 || r_type == R_PPC64_TLSGD
13620 || r_type == R_PPC64_TLSLD))
0d4792f7
AM
13621 /* R_PPC64_TLS is OK against a symbol in the TOC. */
13622 ;
13623 else
25f53a85 13624 info->callbacks->einfo
1d483afe 13625 (!IS_PPC64_TLS_RELOC (r_type)
695344c0 13626 /* xgettext:c-format */
174d0a74 13627 ? _("%H: %s used with TLS symbol `%T'\n")
695344c0 13628 /* xgettext:c-format */
174d0a74 13629 : _("%H: %s used with non-TLS symbol `%T'\n"),
25f53a85 13630 input_bfd, input_section, rel->r_offset,
0d4792f7
AM
13631 ppc64_elf_howto_table[r_type]->name,
13632 sym_name);
411e1bfb
AM
13633 }
13634
13635 /* Ensure reloc mapping code below stays sane. */
13636 if (R_PPC64_TOC16_LO_DS != R_PPC64_TOC16_DS + 1
13637 || R_PPC64_TOC16_LO != R_PPC64_TOC16 + 1
13638 || (R_PPC64_GOT_TLSLD16 & 3) != (R_PPC64_GOT_TLSGD16 & 3)
13639 || (R_PPC64_GOT_TLSLD16_LO & 3) != (R_PPC64_GOT_TLSGD16_LO & 3)
13640 || (R_PPC64_GOT_TLSLD16_HI & 3) != (R_PPC64_GOT_TLSGD16_HI & 3)
13641 || (R_PPC64_GOT_TLSLD16_HA & 3) != (R_PPC64_GOT_TLSGD16_HA & 3)
13642 || (R_PPC64_GOT_TLSLD16 & 3) != (R_PPC64_GOT_TPREL16_DS & 3)
13643 || (R_PPC64_GOT_TLSLD16_LO & 3) != (R_PPC64_GOT_TPREL16_LO_DS & 3)
13644 || (R_PPC64_GOT_TLSLD16_HI & 3) != (R_PPC64_GOT_TPREL16_HI & 3)
13645 || (R_PPC64_GOT_TLSLD16_HA & 3) != (R_PPC64_GOT_TPREL16_HA & 3))
13646 abort ();
0d4792f7 13647
411e1bfb
AM
13648 switch (r_type)
13649 {
13650 default:
411e1bfb
AM
13651 break;
13652
ba761f19 13653 case R_PPC64_LO_DS_OPT:
95f0d0d2 13654 insn = bfd_get_32 (input_bfd, contents + rel->r_offset - d_offset);
ba761f19
AM
13655 if ((insn & (0x3f << 26)) != 58u << 26)
13656 abort ();
13657 insn += (14u << 26) - (58u << 26);
95f0d0d2 13658 bfd_put_32 (input_bfd, insn, contents + rel->r_offset - d_offset);
ba761f19
AM
13659 r_type = R_PPC64_TOC16_LO;
13660 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13661 break;
13662
411e1bfb
AM
13663 case R_PPC64_TOC16:
13664 case R_PPC64_TOC16_LO:
13665 case R_PPC64_TOC16_DS:
13666 case R_PPC64_TOC16_LO_DS:
411e1bfb
AM
13667 {
13668 /* Check for toc tls entries. */
f961d9dd 13669 unsigned char *toc_tls;
951fd09b 13670 int retval;
411e1bfb 13671
3a71aa26
AM
13672 retval = get_tls_mask (&toc_tls, &toc_symndx, &toc_addend,
13673 &local_syms, rel, input_bfd);
951fd09b 13674 if (retval == 0)
411e1bfb
AM
13675 return FALSE;
13676
13677 if (toc_tls)
13678 {
951fd09b 13679 tls_mask = *toc_tls;
411e1bfb
AM
13680 if (r_type == R_PPC64_TOC16_DS
13681 || r_type == R_PPC64_TOC16_LO_DS)
81407a69
AM
13682 {
13683 if (tls_mask != 0
13684 && (tls_mask & (TLS_DTPREL | TLS_TPREL)) == 0)
13685 goto toctprel;
13686 }
411e1bfb 13687 else
951fd09b
AM
13688 {
13689 /* If we found a GD reloc pair, then we might be
13690 doing a GD->IE transition. */
13691 if (retval == 2)
13692 {
13693 tls_gd = TLS_TPRELGD;
13694 if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
102890f0 13695 goto tls_ldgd_opt;
951fd09b
AM
13696 }
13697 else if (retval == 3)
13698 {
13699 if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
102890f0 13700 goto tls_ldgd_opt;
951fd09b
AM
13701 }
13702 }
411e1bfb
AM
13703 }
13704 }
13705 break;
13706
9d6ded02
AM
13707 case R_PPC64_GOT_TPREL16_HI:
13708 case R_PPC64_GOT_TPREL16_HA:
13709 if (tls_mask != 0
13710 && (tls_mask & TLS_TPREL) == 0)
13711 {
13712 rel->r_offset -= d_offset;
95f0d0d2 13713 bfd_put_32 (input_bfd, NOP, contents + rel->r_offset);
9d6ded02
AM
13714 r_type = R_PPC64_NONE;
13715 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13716 }
13717 break;
13718
411e1bfb
AM
13719 case R_PPC64_GOT_TPREL16_DS:
13720 case R_PPC64_GOT_TPREL16_LO_DS:
951fd09b
AM
13721 if (tls_mask != 0
13722 && (tls_mask & TLS_TPREL) == 0)
411e1bfb 13723 {
81407a69 13724 toctprel:
95f0d0d2 13725 insn = bfd_get_32 (input_bfd,
c316a17c 13726 contents + rel->r_offset - d_offset);
411e1bfb
AM
13727 insn &= 31 << 21;
13728 insn |= 0x3c0d0000; /* addis 0,13,0 */
95f0d0d2 13729 bfd_put_32 (input_bfd, insn,
c316a17c 13730 contents + rel->r_offset - d_offset);
411e1bfb 13731 r_type = R_PPC64_TPREL16_HA;
0d4792f7
AM
13732 if (toc_symndx != 0)
13733 {
13734 rel->r_info = ELF64_R_INFO (toc_symndx, r_type);
3a71aa26 13735 rel->r_addend = toc_addend;
0d4792f7
AM
13736 /* We changed the symbol. Start over in order to
13737 get h, sym, sec etc. right. */
c316a17c 13738 goto again;
0d4792f7
AM
13739 }
13740 else
13741 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
411e1bfb
AM
13742 }
13743 break;
13744
13745 case R_PPC64_TLS:
951fd09b
AM
13746 if (tls_mask != 0
13747 && (tls_mask & TLS_TPREL) == 0)
411e1bfb 13748 {
95f0d0d2 13749 insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
2d0f3896
AM
13750 insn = _bfd_elf_ppc_at_tls_transform (insn, 13);
13751 if (insn == 0)
411e1bfb 13752 abort ();
95f0d0d2 13753 bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
411e1bfb 13754 /* Was PPC64_TLS which sits on insn boundary, now
4fe5ca5b
GM
13755 PPC64_TPREL16_LO which is at low-order half-word. */
13756 rel->r_offset += d_offset;
0d4792f7
AM
13757 r_type = R_PPC64_TPREL16_LO;
13758 if (toc_symndx != 0)
13759 {
13760 rel->r_info = ELF64_R_INFO (toc_symndx, r_type);
3a71aa26 13761 rel->r_addend = toc_addend;
0d4792f7
AM
13762 /* We changed the symbol. Start over in order to
13763 get h, sym, sec etc. right. */
c316a17c 13764 goto again;
0d4792f7
AM
13765 }
13766 else
13767 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
411e1bfb
AM
13768 }
13769 break;
13770
411e1bfb
AM
13771 case R_PPC64_GOT_TLSGD16_HI:
13772 case R_PPC64_GOT_TLSGD16_HA:
951fd09b
AM
13773 tls_gd = TLS_TPRELGD;
13774 if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
13775 goto tls_gdld_hi;
13776 break;
13777
411e1bfb
AM
13778 case R_PPC64_GOT_TLSLD16_HI:
13779 case R_PPC64_GOT_TLSLD16_HA:
951fd09b 13780 if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
411e1bfb 13781 {
951fd09b
AM
13782 tls_gdld_hi:
13783 if ((tls_mask & tls_gd) != 0)
13784 r_type = (((r_type - (R_PPC64_GOT_TLSGD16 & 3)) & 3)
13785 + R_PPC64_GOT_TPREL16_DS);
13786 else
411e1bfb 13787 {
4fe5ca5b 13788 rel->r_offset -= d_offset;
95f0d0d2 13789 bfd_put_32 (input_bfd, NOP, contents + rel->r_offset);
951fd09b 13790 r_type = R_PPC64_NONE;
411e1bfb 13791 }
951fd09b 13792 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
411e1bfb
AM
13793 }
13794 break;
13795
951fd09b
AM
13796 case R_PPC64_GOT_TLSGD16:
13797 case R_PPC64_GOT_TLSGD16_LO:
13798 tls_gd = TLS_TPRELGD;
13799 if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
102890f0 13800 goto tls_ldgd_opt;
951fd09b 13801 break;
411e1bfb 13802
951fd09b
AM
13803 case R_PPC64_GOT_TLSLD16:
13804 case R_PPC64_GOT_TLSLD16_LO:
13805 if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
13806 {
b9f04fe0 13807 unsigned int insn1, insn2;
102890f0
AM
13808 bfd_vma offset;
13809
13810 tls_ldgd_opt:
727fc41e
AM
13811 offset = (bfd_vma) -1;
13812 /* If not using the newer R_PPC64_TLSGD/LD to mark
13813 __tls_get_addr calls, we must trust that the call
13814 stays with its arg setup insns, ie. that the next
13815 reloc is the __tls_get_addr call associated with
13816 the current reloc. Edit both insns. */
13817 if (input_section->has_tls_get_addr_call
13818 && rel + 1 < relend
13819 && branch_reloc_hash_match (input_bfd, rel + 1,
13820 htab->tls_get_addr,
13821 htab->tls_get_addr_fd))
13822 offset = rel[1].r_offset;
b86ac8e3
AM
13823 /* We read the low GOT_TLS (or TOC16) insn because we
13824 need to keep the destination reg. It may be
13825 something other than the usual r3, and moved to r3
13826 before the call by intervening code. */
95f0d0d2 13827 insn1 = bfd_get_32 (input_bfd,
b86ac8e3 13828 contents + rel->r_offset - d_offset);
102890f0 13829 if ((tls_mask & tls_gd) != 0)
411e1bfb 13830 {
102890f0 13831 /* IE */
b86ac8e3 13832 insn1 &= (0x1f << 21) | (0x1f << 16);
102890f0
AM
13833 insn1 |= 58 << 26; /* ld */
13834 insn2 = 0x7c636a14; /* add 3,3,13 */
727fc41e 13835 if (offset != (bfd_vma) -1)
f58d5a2d 13836 rel[1].r_info = ELF64_R_INFO (STN_UNDEF, R_PPC64_NONE);
102890f0
AM
13837 if ((tls_mask & TLS_EXPLICIT) == 0)
13838 r_type = (((r_type - (R_PPC64_GOT_TLSGD16 & 3)) & 3)
13839 + R_PPC64_GOT_TPREL16_DS);
411e1bfb 13840 else
102890f0
AM
13841 r_type += R_PPC64_TOC16_DS - R_PPC64_TOC16;
13842 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13843 }
13844 else
13845 {
13846 /* LE */
b86ac8e3
AM
13847 insn1 &= 0x1f << 21;
13848 insn1 |= 0x3c0d0000; /* addis r,13,0 */
102890f0
AM
13849 insn2 = 0x38630000; /* addi 3,3,0 */
13850 if (tls_gd == 0)
951fd09b 13851 {
102890f0 13852 /* Was an LD reloc. */
1d483afe
AM
13853 if (toc_symndx)
13854 sec = local_sections[toc_symndx];
13855 for (r_symndx = 0;
13856 r_symndx < symtab_hdr->sh_info;
13857 r_symndx++)
13858 if (local_sections[r_symndx] == sec)
13859 break;
13860 if (r_symndx >= symtab_hdr->sh_info)
cf35638d 13861 r_symndx = STN_UNDEF;
102890f0 13862 rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
cf35638d 13863 if (r_symndx != STN_UNDEF)
1d483afe
AM
13864 rel->r_addend -= (local_syms[r_symndx].st_value
13865 + sec->output_offset
13866 + sec->output_section->vma);
951fd09b 13867 }
102890f0 13868 else if (toc_symndx != 0)
3a71aa26
AM
13869 {
13870 r_symndx = toc_symndx;
13871 rel->r_addend = toc_addend;
13872 }
102890f0
AM
13873 r_type = R_PPC64_TPREL16_HA;
13874 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
727fc41e
AM
13875 if (offset != (bfd_vma) -1)
13876 {
13877 rel[1].r_info = ELF64_R_INFO (r_symndx,
13878 R_PPC64_TPREL16_LO);
13879 rel[1].r_offset = offset + d_offset;
13880 rel[1].r_addend = rel->r_addend;
13881 }
102890f0 13882 }
95f0d0d2 13883 bfd_put_32 (input_bfd, insn1,
3a71aa26 13884 contents + rel->r_offset - d_offset);
727fc41e 13885 if (offset != (bfd_vma) -1)
b9f04fe0 13886 bfd_put_32 (input_bfd, insn2, contents + offset);
727fc41e
AM
13887 if ((tls_mask & tls_gd) == 0
13888 && (tls_gd == 0 || toc_symndx != 0))
13889 {
13890 /* We changed the symbol. Start over in order
13891 to get h, sym, sec etc. right. */
c316a17c 13892 goto again;
727fc41e
AM
13893 }
13894 }
13895 break;
13896
13897 case R_PPC64_TLSGD:
13898 if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
13899 {
b9f04fe0 13900 unsigned int insn2;
727fc41e
AM
13901 bfd_vma offset = rel->r_offset;
13902
13903 if ((tls_mask & TLS_TPRELGD) != 0)
13904 {
13905 /* IE */
13906 r_type = R_PPC64_NONE;
13907 insn2 = 0x7c636a14; /* add 3,3,13 */
13908 }
13909 else
13910 {
13911 /* LE */
13912 if (toc_symndx != 0)
13913 {
13914 r_symndx = toc_symndx;
13915 rel->r_addend = toc_addend;
13916 }
13917 r_type = R_PPC64_TPREL16_LO;
13918 rel->r_offset = offset + d_offset;
13919 insn2 = 0x38630000; /* addi 3,3,0 */
13920 }
13921 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13922 /* Zap the reloc on the _tls_get_addr call too. */
13923 BFD_ASSERT (offset == rel[1].r_offset);
f58d5a2d 13924 rel[1].r_info = ELF64_R_INFO (STN_UNDEF, R_PPC64_NONE);
95f0d0d2 13925 bfd_put_32 (input_bfd, insn2, contents + offset);
727fc41e 13926 if ((tls_mask & TLS_TPRELGD) == 0 && toc_symndx != 0)
c316a17c 13927 goto again;
411e1bfb 13928 }
411e1bfb
AM
13929 break;
13930
727fc41e
AM
13931 case R_PPC64_TLSLD:
13932 if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
13933 {
b9f04fe0 13934 unsigned int insn2;
727fc41e
AM
13935 bfd_vma offset = rel->r_offset;
13936
13937 if (toc_symndx)
13938 sec = local_sections[toc_symndx];
13939 for (r_symndx = 0;
13940 r_symndx < symtab_hdr->sh_info;
13941 r_symndx++)
13942 if (local_sections[r_symndx] == sec)
13943 break;
13944 if (r_symndx >= symtab_hdr->sh_info)
cf35638d 13945 r_symndx = STN_UNDEF;
727fc41e 13946 rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
cf35638d 13947 if (r_symndx != STN_UNDEF)
727fc41e
AM
13948 rel->r_addend -= (local_syms[r_symndx].st_value
13949 + sec->output_offset
13950 + sec->output_section->vma);
13951
13952 r_type = R_PPC64_TPREL16_LO;
13953 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13954 rel->r_offset = offset + d_offset;
13955 /* Zap the reloc on the _tls_get_addr call too. */
13956 BFD_ASSERT (offset == rel[1].r_offset);
f58d5a2d 13957 rel[1].r_info = ELF64_R_INFO (STN_UNDEF, R_PPC64_NONE);
727fc41e 13958 insn2 = 0x38630000; /* addi 3,3,0 */
95f0d0d2 13959 bfd_put_32 (input_bfd, insn2, contents + offset);
c316a17c 13960 goto again;
727fc41e
AM
13961 }
13962 break;
13963
411e1bfb 13964 case R_PPC64_DTPMOD64:
951fd09b
AM
13965 if (rel + 1 < relend
13966 && rel[1].r_info == ELF64_R_INFO (r_symndx, R_PPC64_DTPREL64)
13967 && rel[1].r_offset == rel->r_offset + 8)
411e1bfb 13968 {
951fd09b
AM
13969 if ((tls_mask & TLS_GD) == 0)
13970 {
13971 rel[1].r_info = ELF64_R_INFO (r_symndx, R_PPC64_NONE);
13972 if ((tls_mask & TLS_TPRELGD) != 0)
13973 r_type = R_PPC64_TPREL64;
13974 else
13975 {
4ce794b7 13976 bfd_put_64 (output_bfd, 1, contents + rel->r_offset);
951fd09b
AM
13977 r_type = R_PPC64_NONE;
13978 }
13979 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13980 }
13981 }
13982 else
13983 {
13984 if ((tls_mask & TLS_LD) == 0)
411e1bfb 13985 {
4ce794b7 13986 bfd_put_64 (output_bfd, 1, contents + rel->r_offset);
411e1bfb 13987 r_type = R_PPC64_NONE;
951fd09b 13988 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
411e1bfb 13989 }
411e1bfb
AM
13990 }
13991 break;
13992
13993 case R_PPC64_TPREL64:
951fd09b 13994 if ((tls_mask & TLS_TPREL) == 0)
411e1bfb
AM
13995 {
13996 r_type = R_PPC64_NONE;
13997 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
13998 }
13999 break;
52a82034 14000
006589cf
AM
14001 case R_PPC64_ENTRY:
14002 relocation = TOCstart + htab->sec_info[input_section->id].toc_off;
14003 if (!bfd_link_pic (info)
14004 && !info->traditional_format
14005 && relocation + 0x80008000 <= 0xffffffff)
14006 {
14007 unsigned int insn1, insn2;
14008
14009 insn1 = bfd_get_32 (input_bfd, contents + rel->r_offset);
14010 insn2 = bfd_get_32 (input_bfd, contents + rel->r_offset + 4);
14011 if ((insn1 & ~0xfffc) == LD_R2_0R12
14012 && insn2 == ADD_R2_R2_R12)
14013 {
95f0d0d2 14014 bfd_put_32 (input_bfd,
006589cf
AM
14015 LIS_R2 + PPC_HA (relocation),
14016 contents + rel->r_offset);
95f0d0d2 14017 bfd_put_32 (input_bfd,
006589cf
AM
14018 ADDI_R2_R2 + PPC_LO (relocation),
14019 contents + rel->r_offset + 4);
14020 }
14021 }
14022 else
14023 {
14024 relocation -= (rel->r_offset
14025 + input_section->output_offset
14026 + input_section->output_section->vma);
14027 if (relocation + 0x80008000 <= 0xffffffff)
14028 {
14029 unsigned int insn1, insn2;
14030
14031 insn1 = bfd_get_32 (input_bfd, contents + rel->r_offset);
14032 insn2 = bfd_get_32 (input_bfd, contents + rel->r_offset + 4);
14033 if ((insn1 & ~0xfffc) == LD_R2_0R12
14034 && insn2 == ADD_R2_R2_R12)
14035 {
95f0d0d2 14036 bfd_put_32 (input_bfd,
006589cf
AM
14037 ADDIS_R2_R12 + PPC_HA (relocation),
14038 contents + rel->r_offset);
95f0d0d2 14039 bfd_put_32 (input_bfd,
006589cf
AM
14040 ADDI_R2_R2 + PPC_LO (relocation),
14041 contents + rel->r_offset + 4);
14042 }
14043 }
14044 }
14045 break;
14046
52a82034
AM
14047 case R_PPC64_REL16_HA:
14048 /* If we are generating a non-PIC executable, edit
14049 . 0: addis 2,12,.TOC.-0b@ha
14050 . addi 2,2,.TOC.-0b@l
14051 used by ELFv2 global entry points to set up r2, to
14052 . lis 2,.TOC.@ha
14053 . addi 2,2,.TOC.@l
14054 if .TOC. is in range. */
0e1862bb 14055 if (!bfd_link_pic (info)
810d4e75 14056 && !info->traditional_format
006589cf 14057 && !htab->opd_abi
4f038ee5 14058 && rel->r_addend == d_offset
52a82034
AM
14059 && h != NULL && &h->elf == htab->elf.hgot
14060 && rel + 1 < relend
14061 && rel[1].r_info == ELF64_R_INFO (r_symndx, R_PPC64_REL16_LO)
14062 && rel[1].r_offset == rel->r_offset + 4
14063 && rel[1].r_addend == rel->r_addend + 4
14064 && relocation + 0x80008000 <= 0xffffffff)
14065 {
14066 unsigned int insn1, insn2;
14067 bfd_vma offset = rel->r_offset - d_offset;
95f0d0d2
AM
14068 insn1 = bfd_get_32 (input_bfd, contents + offset);
14069 insn2 = bfd_get_32 (input_bfd, contents + offset + 4);
006589cf
AM
14070 if ((insn1 & 0xffff0000) == ADDIS_R2_R12
14071 && (insn2 & 0xffff0000) == ADDI_R2_R2)
52a82034
AM
14072 {
14073 r_type = R_PPC64_ADDR16_HA;
14074 rel->r_info = ELF64_R_INFO (r_symndx, r_type);
14075 rel->r_addend -= d_offset;
14076 rel[1].r_info = ELF64_R_INFO (r_symndx, R_PPC64_ADDR16_LO);
14077 rel[1].r_addend -= d_offset + 4;
95f0d0d2 14078 bfd_put_32 (input_bfd, LIS_R2, contents + offset);
52a82034
AM
14079 }
14080 }
14081 break;
411e1bfb
AM
14082 }
14083
14084 /* Handle other relocations that tweak non-addend part of insn. */
86c76c7b 14085 insn = 0;
b25116a9
AM
14086 max_br_offset = 1 << 25;
14087 addend = rel->r_addend;
bc30df16 14088 reloc_dest = DEST_NORMAL;
65f38f15 14089 switch (r_type)
5bd4f169
AM
14090 {
14091 default:
65f38f15 14092 break;
5bd4f169 14093
3b421ab3
AM
14094 case R_PPC64_TOCSAVE:
14095 if (relocation + addend == (rel->r_offset
14096 + input_section->output_offset
14097 + input_section->output_section->vma)
14098 && tocsave_find (htab, NO_INSERT,
14099 &local_syms, rel, input_bfd))
14100 {
14101 insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
14102 if (insn == NOP
14103 || insn == CROR_151515 || insn == CROR_313131)
a078d95a
AM
14104 bfd_put_32 (input_bfd,
14105 STD_R2_0R1 + STK_TOC (htab),
3b421ab3
AM
14106 contents + rel->r_offset);
14107 }
14108 break;
14109
65f38f15
AM
14110 /* Branch taken prediction relocations. */
14111 case R_PPC64_ADDR14_BRTAKEN:
14112 case R_PPC64_REL14_BRTAKEN:
cedb70c5 14113 insn = 0x01 << 21; /* 'y' or 't' bit, lowest bit of BO field. */
1a0670f3 14114 /* Fall through. */
65f38f15 14115
86c76c7b 14116 /* Branch not taken prediction relocations. */
65f38f15
AM
14117 case R_PPC64_ADDR14_BRNTAKEN:
14118 case R_PPC64_REL14_BRNTAKEN:
95f0d0d2 14119 insn |= bfd_get_32 (input_bfd,
411e1bfb 14120 contents + rel->r_offset) & ~(0x01 << 21);
1a0670f3 14121 /* Fall through. */
86c76c7b 14122
b25116a9
AM
14123 case R_PPC64_REL14:
14124 max_br_offset = 1 << 15;
1a0670f3 14125 /* Fall through. */
5bd4f169 14126
65f38f15 14127 case R_PPC64_REL24:
ad8e1ba5
AM
14128 /* Calls to functions with a different TOC, such as calls to
14129 shared objects, need to alter the TOC pointer. This is
14130 done using a linkage stub. A REL24 branching to these
14131 linkage stubs needs to be followed by a nop, as the nop
14132 will be replaced with an instruction to restore the TOC
14133 base pointer. */
8387904d 14134 fdh = h;
b31867b6
AM
14135 if (h != NULL
14136 && h->oh != NULL
14137 && h->oh->is_func_descriptor)
14138 fdh = ppc_follow_link (h->oh);
31c76678
DK
14139 stub_entry = ppc_get_stub_entry (input_section, sec, fdh, &orig_rel,
14140 htab);
6abec6bc 14141 if (stub_entry != NULL
ad8e1ba5 14142 && (stub_entry->stub_type == ppc_stub_plt_call
794e51c0 14143 || stub_entry->stub_type == ppc_stub_plt_call_r2save
ad8e1ba5
AM
14144 || stub_entry->stub_type == ppc_stub_plt_branch_r2off
14145 || stub_entry->stub_type == ppc_stub_long_branch_r2off))
41bd81ab 14146 {
b25116a9 14147 bfd_boolean can_plt_call = FALSE;
721956f4 14148
6e1816be
AM
14149 if (stub_entry->stub_type == ppc_stub_plt_call
14150 && !htab->opd_abi
14151 && htab->params->plt_localentry0 != 0
14152 && is_elfv2_localentry0 (&h->elf))
14153 {
14154 /* The function doesn't use or change r2. */
14155 can_plt_call = TRUE;
14156 }
14157
f378ab09 14158 /* All of these stubs may modify r2, so there must be a
ba8ca3e7
AM
14159 branch and link followed by a nop. The nop is
14160 replaced by an insn to restore r2. */
6e1816be 14161 else if (rel->r_offset + 8 <= input_section->size)
41bd81ab 14162 {
ba8ca3e7
AM
14163 unsigned long br;
14164
14165 br = bfd_get_32 (input_bfd,
14166 contents + rel->r_offset);
14167 if ((br & 1) != 0)
41bd81ab 14168 {
ba8ca3e7
AM
14169 unsigned long nop;
14170
14171 nop = bfd_get_32 (input_bfd,
14172 contents + rel->r_offset + 4);
14173 if (nop == NOP
14174 || nop == CROR_151515 || nop == CROR_313131)
a7f2871e 14175 {
ba8ca3e7
AM
14176 if (h != NULL
14177 && (h == htab->tls_get_addr_fd
14178 || h == htab->tls_get_addr)
7c9cf415 14179 && htab->params->tls_get_addr_opt)
ba8ca3e7
AM
14180 {
14181 /* Special stub used, leave nop alone. */
14182 }
14183 else
a078d95a
AM
14184 bfd_put_32 (input_bfd,
14185 LD_R2_0R1 + STK_TOC (htab),
ba8ca3e7
AM
14186 contents + rel->r_offset + 4);
14187 can_plt_call = TRUE;
a7f2871e 14188 }
41bd81ab 14189 }
5bd4f169 14190 }
721956f4 14191
ba8ca3e7 14192 if (!can_plt_call && h != NULL)
721956f4 14193 {
ba8ca3e7
AM
14194 const char *name = h->elf.root.root.string;
14195
14196 if (*name == '.')
14197 ++name;
14198
14199 if (strncmp (name, "__libc_start_main", 17) == 0
14200 && (name[17] == 0 || name[17] == '@'))
6ab189d5 14201 {
ba8ca3e7
AM
14202 /* Allow crt1 branch to go via a toc adjusting
14203 stub. Other calls that never return could do
14204 the same, if we could detect such. */
b25116a9 14205 can_plt_call = TRUE;
6ab189d5 14206 }
ba8ca3e7
AM
14207 }
14208
14209 if (!can_plt_call)
14210 {
14211 /* g++ as of 20130507 emits self-calls without a
14212 following nop. This is arguably wrong since we
14213 have conflicting information. On the one hand a
14214 global symbol and on the other a local call
14215 sequence, but don't error for this special case.
14216 It isn't possible to cheaply verify we have
14217 exactly such a call. Allow all calls to the same
14218 section. */
14219 asection *code_sec = sec;
14220
14221 if (get_opd_info (sec) != NULL)
ad8e1ba5 14222 {
ba8ca3e7
AM
14223 bfd_vma off = (relocation + addend
14224 - sec->output_section->vma
14225 - sec->output_offset);
bc30df16 14226
ba8ca3e7 14227 opd_entry_value (sec, off, &code_sec, NULL, FALSE);
ad8e1ba5 14228 }
ba8ca3e7
AM
14229 if (code_sec == input_section)
14230 can_plt_call = TRUE;
14231 }
14232
14233 if (!can_plt_call)
14234 {
4805fc55
AM
14235 if (stub_entry->stub_type == ppc_stub_plt_call
14236 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
14237 info->callbacks->einfo
695344c0 14238 /* xgettext:c-format */
174d0a74 14239 (_("%H: call to `%T' lacks nop, can't restore toc; "
4805fc55
AM
14240 "recompile with -fPIC\n"),
14241 input_bfd, input_section, rel->r_offset, sym_name);
14242 else
14243 info->callbacks->einfo
695344c0 14244 /* xgettext:c-format */
174d0a74 14245 (_("%H: call to `%T' lacks nop, can't restore toc; "
4805fc55
AM
14246 "(-mcmodel=small toc adjust stub)\n"),
14247 input_bfd, input_section, rel->r_offset, sym_name);
ba8ca3e7
AM
14248
14249 bfd_set_error (bfd_error_bad_value);
14250 ret = FALSE;
721956f4
AM
14251 }
14252
b25116a9 14253 if (can_plt_call
794e51c0
AM
14254 && (stub_entry->stub_type == ppc_stub_plt_call
14255 || stub_entry->stub_type == ppc_stub_plt_call_r2save))
b25116a9
AM
14256 unresolved_reloc = FALSE;
14257 }
14258
6abec6bc
AM
14259 if ((stub_entry == NULL
14260 || stub_entry->stub_type == ppc_stub_long_branch
14261 || stub_entry->stub_type == ppc_stub_plt_branch)
8387904d
AM
14262 && get_opd_info (sec) != NULL)
14263 {
14264 /* The branch destination is the value of the opd entry. */
4cc603a5
AM
14265 bfd_vma off = (relocation + addend
14266 - sec->output_section->vma
14267 - sec->output_offset);
aef36ac1 14268 bfd_vma dest = opd_entry_value (sec, off, NULL, NULL, FALSE);
8387904d
AM
14269 if (dest != (bfd_vma) -1)
14270 {
14271 relocation = dest;
14272 addend = 0;
bc30df16 14273 reloc_dest = DEST_OPD;
8387904d
AM
14274 }
14275 }
14276
b25116a9
AM
14277 /* If the branch is out of reach we ought to have a long
14278 branch stub. */
14279 from = (rel->r_offset
14280 + input_section->output_offset
14281 + input_section->output_section->vma);
14282
6911b7dc
AM
14283 relocation += PPC64_LOCAL_ENTRY_OFFSET (fdh
14284 ? fdh->elf.other
14285 : sym->st_other);
14286
6abec6bc
AM
14287 if (stub_entry != NULL
14288 && (stub_entry->stub_type == ppc_stub_long_branch
14289 || stub_entry->stub_type == ppc_stub_plt_branch)
14290 && (r_type == R_PPC64_ADDR14_BRTAKEN
14291 || r_type == R_PPC64_ADDR14_BRNTAKEN
14292 || (relocation + addend - from + max_br_offset
14293 < 2 * max_br_offset)))
14294 /* Don't use the stub if this branch is in range. */
14295 stub_entry = NULL;
b25116a9
AM
14296
14297 if (stub_entry != NULL)
14298 {
14299 /* Munge up the value and addend so that we call the stub
14300 rather than the procedure directly. */
a4b6fadd
AM
14301 asection *stub_sec = stub_entry->group->stub_sec;
14302
14303 if (stub_entry->stub_type == ppc_stub_save_res)
14304 relocation += (stub_sec->output_offset
14305 + stub_sec->output_section->vma
14306 + stub_sec->size - htab->sfpr->size
14307 - htab->sfpr->output_offset
14308 - htab->sfpr->output_section->vma);
14309 else
14310 relocation = (stub_entry->stub_offset
14311 + stub_sec->output_offset
14312 + stub_sec->output_section->vma);
b25116a9 14313 addend = 0;
bc30df16 14314 reloc_dest = DEST_STUB;
3b421ab3 14315
954b63d4 14316 if ((stub_entry->stub_type == ppc_stub_plt_call
794e51c0
AM
14317 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
14318 && (ALWAYS_EMIT_R2SAVE
14319 || stub_entry->stub_type == ppc_stub_plt_call_r2save)
3b421ab3
AM
14320 && rel + 1 < relend
14321 && rel[1].r_offset == rel->r_offset + 4
14322 && ELF64_R_TYPE (rel[1].r_info) == R_PPC64_TOCSAVE)
14323 relocation += 4;
b25116a9
AM
14324 }
14325
14326 if (insn != 0)
14327 {
794e51c0 14328 if (is_isa_v2)
721956f4 14329 {
b25116a9
AM
14330 /* Set 'a' bit. This is 0b00010 in BO field for branch
14331 on CR(BI) insns (BO == 001at or 011at), and 0b01000
14332 for branch on CTR insns (BO == 1a00t or 1a01t). */
14333 if ((insn & (0x14 << 21)) == (0x04 << 21))
14334 insn |= 0x02 << 21;
14335 else if ((insn & (0x14 << 21)) == (0x10 << 21))
14336 insn |= 0x08 << 21;
14337 else
14338 break;
14339 }
14340 else
14341 {
14342 /* Invert 'y' bit if not the default. */
4cc603a5 14343 if ((bfd_signed_vma) (relocation + addend - from) < 0)
b25116a9 14344 insn ^= 0x01 << 21;
721956f4 14345 }
b25116a9 14346
95f0d0d2 14347 bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
5bd4f169 14348 }
e86ce104 14349
06da1e8e
AM
14350 /* NOP out calls to undefined weak functions.
14351 We can thus call a weak function without first
14352 checking whether the function is defined. */
b25116a9 14353 else if (h != NULL
039b3fef 14354 && h->elf.root.type == bfd_link_hash_undefweak
766bc656 14355 && h->elf.dynindx == -1
b25116a9
AM
14356 && r_type == R_PPC64_REL24
14357 && relocation == 0
4cc603a5 14358 && addend == 0)
e86ce104 14359 {
95f0d0d2 14360 bfd_put_32 (input_bfd, NOP, contents + rel->r_offset);
c316a17c 14361 goto copy_reloc;
e86ce104 14362 }
65f38f15
AM
14363 break;
14364 }
5bd4f169 14365
65f38f15 14366 /* Set `addend'. */
411e1bfb 14367 tls_type = 0;
65f38f15
AM
14368 switch (r_type)
14369 {
14370 default:
25f53a85 14371 info->callbacks->einfo
695344c0 14372 /* xgettext:c-format */
bc30df16 14373 (_("%P: %B: unknown relocation type %d for `%T'\n"),
d003868e 14374 input_bfd, (int) r_type, sym_name);
5bd4f169 14375
65f38f15 14376 bfd_set_error (bfd_error_bad_value);
b34976b6 14377 ret = FALSE;
c316a17c 14378 goto copy_reloc;
5bd4f169 14379
65f38f15 14380 case R_PPC64_NONE:
411e1bfb 14381 case R_PPC64_TLS:
727fc41e
AM
14382 case R_PPC64_TLSGD:
14383 case R_PPC64_TLSLD:
3b421ab3 14384 case R_PPC64_TOCSAVE:
04c9666a
AM
14385 case R_PPC64_GNU_VTINHERIT:
14386 case R_PPC64_GNU_VTENTRY:
006589cf 14387 case R_PPC64_ENTRY:
c316a17c 14388 goto copy_reloc;
5bd4f169
AM
14389
14390 /* GOT16 relocations. Like an ADDR16 using the symbol's
14391 address in the GOT as relocation value instead of the
411e1bfb 14392 symbol's value itself. Also, create a GOT entry for the
5bd4f169 14393 symbol and put the symbol value there. */
411e1bfb
AM
14394 case R_PPC64_GOT_TLSGD16:
14395 case R_PPC64_GOT_TLSGD16_LO:
14396 case R_PPC64_GOT_TLSGD16_HI:
14397 case R_PPC64_GOT_TLSGD16_HA:
951fd09b 14398 tls_type = TLS_TLS | TLS_GD;
411e1bfb
AM
14399 goto dogot;
14400
14401 case R_PPC64_GOT_TLSLD16:
14402 case R_PPC64_GOT_TLSLD16_LO:
14403 case R_PPC64_GOT_TLSLD16_HI:
14404 case R_PPC64_GOT_TLSLD16_HA:
951fd09b 14405 tls_type = TLS_TLS | TLS_LD;
411e1bfb
AM
14406 goto dogot;
14407
14408 case R_PPC64_GOT_TPREL16_DS:
14409 case R_PPC64_GOT_TPREL16_LO_DS:
14410 case R_PPC64_GOT_TPREL16_HI:
14411 case R_PPC64_GOT_TPREL16_HA:
14412 tls_type = TLS_TLS | TLS_TPREL;
14413 goto dogot;
14414
14415 case R_PPC64_GOT_DTPREL16_DS:
14416 case R_PPC64_GOT_DTPREL16_LO_DS:
14417 case R_PPC64_GOT_DTPREL16_HI:
14418 case R_PPC64_GOT_DTPREL16_HA:
14419 tls_type = TLS_TLS | TLS_DTPREL;
14420 goto dogot;
14421
65f38f15
AM
14422 case R_PPC64_GOT16:
14423 case R_PPC64_GOT16_LO:
14424 case R_PPC64_GOT16_HI:
14425 case R_PPC64_GOT16_HA:
14426 case R_PPC64_GOT16_DS:
14427 case R_PPC64_GOT16_LO_DS:
411e1bfb 14428 dogot:
5bd4f169
AM
14429 {
14430 /* Relocation is to the entry for this symbol in the global
14431 offset table. */
e717da7e 14432 asection *got;
d881513a 14433 bfd_vma *offp;
5bd4f169 14434 bfd_vma off;
d881513a 14435 unsigned long indx = 0;
927be08e 14436 struct got_entry *ent;
65f38f15 14437
d881513a
AM
14438 if (tls_type == (TLS_TLS | TLS_LD)
14439 && (h == NULL
f5385ebf 14440 || !h->elf.def_dynamic))
927be08e 14441 ent = ppc64_tlsld_got (input_bfd);
411e1bfb 14442 else
5bd4f169 14443 {
d881513a
AM
14444 if (h != NULL)
14445 {
f0158f44
AM
14446 if (!htab->elf.dynamic_sections_created
14447 || h->elf.dynindx == -1
14448 || SYMBOL_REFERENCES_LOCAL (info, &h->elf)
21d68fcd 14449 || UNDEFWEAK_NO_DYNAMIC_RELOC (info, &h->elf))
d881513a
AM
14450 /* This is actually a static link, or it is a
14451 -Bsymbolic link and the symbol is defined
14452 locally, or the symbol was forced to be local
14453 because of a version file. */
14454 ;
14455 else
14456 {
039b3fef 14457 indx = h->elf.dynindx;
d881513a
AM
14458 unresolved_reloc = FALSE;
14459 }
039b3fef 14460 ent = h->elf.got.glist;
d881513a 14461 }
411e1bfb 14462 else
5bd4f169 14463 {
d881513a
AM
14464 if (local_got_ents == NULL)
14465 abort ();
14466 ent = local_got_ents[r_symndx];
5bd4f169 14467 }
d881513a
AM
14468
14469 for (; ent != NULL; ent = ent->next)
31c76678 14470 if (ent->addend == orig_rel.r_addend
e717da7e 14471 && ent->owner == input_bfd
d881513a
AM
14472 && ent->tls_type == tls_type)
14473 break;
5bd4f169 14474 }
411e1bfb 14475
927be08e
AM
14476 if (ent == NULL)
14477 abort ();
14478 if (ent->is_indirect)
14479 ent = ent->got.ent;
14480 offp = &ent->got.offset;
14481 got = ppc64_elf_tdata (ent->owner)->got;
e717da7e
AM
14482 if (got == NULL)
14483 abort ();
14484
411e1bfb
AM
14485 /* The offset must always be a multiple of 8. We use the
14486 least significant bit to record whether we have already
14487 processed this entry. */
d881513a 14488 off = *offp;
411e1bfb
AM
14489 if ((off & 1) != 0)
14490 off &= ~1;
5bd4f169
AM
14491 else
14492 {
411e1bfb
AM
14493 /* Generate relocs for the dynamic linker, except in
14494 the case of TLSLD where we'll use one entry per
14495 module. */
25f23106
AM
14496 asection *relgot;
14497 bfd_boolean ifunc;
e717da7e 14498
d881513a 14499 *offp = off | 1;
25f23106
AM
14500 relgot = NULL;
14501 ifunc = (h != NULL
14502 ? h->elf.type == STT_GNU_IFUNC
14503 : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC);
19e08130 14504 if (ifunc)
82e66161
AM
14505 {
14506 relgot = htab->elf.irelplt;
14507 if (indx == 0)
14508 htab->local_ifunc_resolver = 1;
14509 else if (is_static_defined (&h->elf))
14510 htab->maybe_local_ifunc_resolver = 1;
14511 }
f0158f44
AM
14512 else if (indx != 0
14513 || (bfd_link_pic (info)
14514 && (h == NULL
21d68fcd 14515 || !UNDEFWEAK_NO_DYNAMIC_RELOC (info, &h->elf)
f0158f44
AM
14516 || (tls_type == (TLS_TLS | TLS_LD)
14517 && !h->elf.def_dynamic))))
19e08130 14518 relgot = ppc64_elf_tdata (ent->owner)->relgot;
25f23106 14519 if (relgot != NULL)
5bd4f169 14520 {
e717da7e
AM
14521 outrel.r_offset = (got->output_section->vma
14522 + got->output_offset
411e1bfb 14523 + off);
4cc603a5 14524 outrel.r_addend = addend;
d881513a 14525 if (tls_type & (TLS_LD | TLS_GD))
5bd4f169 14526 {
411e1bfb 14527 outrel.r_addend = 0;
e515b051 14528 outrel.r_info = ELF64_R_INFO (indx, R_PPC64_DTPMOD64);
d881513a
AM
14529 if (tls_type == (TLS_TLS | TLS_GD))
14530 {
e717da7e
AM
14531 loc = relgot->contents;
14532 loc += (relgot->reloc_count++
d881513a
AM
14533 * sizeof (Elf64_External_Rela));
14534 bfd_elf64_swap_reloca_out (output_bfd,
14535 &outrel, loc);
e515b051 14536 outrel.r_offset += 8;
4cc603a5 14537 outrel.r_addend = addend;
d881513a
AM
14538 outrel.r_info
14539 = ELF64_R_INFO (indx, R_PPC64_DTPREL64);
d881513a 14540 }
411e1bfb 14541 }
951fd09b 14542 else if (tls_type == (TLS_TLS | TLS_DTPREL))
411e1bfb 14543 outrel.r_info = ELF64_R_INFO (indx, R_PPC64_DTPREL64);
951fd09b 14544 else if (tls_type == (TLS_TLS | TLS_TPREL))
411e1bfb 14545 outrel.r_info = ELF64_R_INFO (indx, R_PPC64_TPREL64);
25f23106
AM
14546 else if (indx != 0)
14547 outrel.r_info = ELF64_R_INFO (indx, R_PPC64_GLOB_DAT);
14548 else
81407a69 14549 {
25f23106
AM
14550 if (ifunc)
14551 outrel.r_info = ELF64_R_INFO (0, R_PPC64_IRELATIVE);
14552 else
14553 outrel.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
81407a69
AM
14554
14555 /* Write the .got section contents for the sake
14556 of prelink. */
e717da7e 14557 loc = got->contents + off;
23fbd6fa
JJ
14558 bfd_put_64 (output_bfd, outrel.r_addend + relocation,
14559 loc);
81407a69 14560 }
81407a69
AM
14561
14562 if (indx == 0 && tls_type != (TLS_TLS | TLS_LD))
e515b051
AM
14563 {
14564 outrel.r_addend += relocation;
14565 if (tls_type & (TLS_GD | TLS_DTPREL | TLS_TPREL))
989f9879
AM
14566 {
14567 if (htab->elf.tls_sec == NULL)
14568 outrel.r_addend = 0;
14569 else
14570 outrel.r_addend -= htab->elf.tls_sec->vma;
14571 }
e515b051 14572 }
e717da7e
AM
14573 loc = relgot->contents;
14574 loc += (relgot->reloc_count++
411e1bfb
AM
14575 * sizeof (Elf64_External_Rela));
14576 bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc);
14577 }
14578
ad8e1ba5 14579 /* Init the .got section contents here if we're not
81407a69 14580 emitting a reloc. */
d881513a 14581 else
411e1bfb 14582 {
4cc603a5 14583 relocation += addend;
f0158f44 14584 if (tls_type != 0)
411e1bfb 14585 {
989f9879
AM
14586 if (htab->elf.tls_sec == NULL)
14587 relocation = 0;
14588 else
14589 {
f0158f44
AM
14590 if (tls_type & TLS_LD)
14591 relocation = 0;
14592 else
14593 relocation -= htab->elf.tls_sec->vma + DTP_OFFSET;
676ee2b5 14594 if (tls_type & TLS_TPREL)
989f9879
AM
14595 relocation += DTP_OFFSET - TP_OFFSET;
14596 }
5bd4f169 14597
f0158f44 14598 if (tls_type & (TLS_GD | TLS_LD))
7b609f53
AM
14599 {
14600 bfd_put_64 (output_bfd, relocation,
e717da7e 14601 got->contents + off + 8);
676ee2b5 14602 relocation = 1;
7b609f53 14603 }
411e1bfb
AM
14604 }
14605 bfd_put_64 (output_bfd, relocation,
e717da7e 14606 got->contents + off);
5bd4f169
AM
14607 }
14608 }
14609
65f38f15
AM
14610 if (off >= (bfd_vma) -2)
14611 abort ();
14612
bf102f86 14613 relocation = got->output_section->vma + got->output_offset + off;
6f20ed8a 14614 addend = -(TOCstart + htab->sec_info[input_section->id].toc_off);
5bd4f169 14615 }
65f38f15
AM
14616 break;
14617
14618 case R_PPC64_PLT16_HA:
14619 case R_PPC64_PLT16_HI:
14620 case R_PPC64_PLT16_LO:
14621 case R_PPC64_PLT32:
14622 case R_PPC64_PLT64:
14623 /* Relocation is to the entry for this symbol in the
14624 procedure linkage table. */
cbf95972
AM
14625 {
14626 struct plt_entry **plt_list = NULL;
14627 if (h != NULL)
14628 plt_list = &h->elf.plt.plist;
14629 else if (local_got_ents != NULL)
14630 {
14631 struct plt_entry **local_plt = (struct plt_entry **)
14632 (local_got_ents + symtab_hdr->sh_info);
14633 unsigned char *local_got_tls_masks = (unsigned char *)
14634 (local_plt + symtab_hdr->sh_info);
14635 if ((local_got_tls_masks[r_symndx] & PLT_IFUNC) != 0)
14636 plt_list = local_plt + r_symndx;
14637 }
14638 if (plt_list)
14639 {
14640 struct plt_entry *ent;
65f38f15 14641
cbf95972
AM
14642 for (ent = *plt_list; ent != NULL; ent = ent->next)
14643 if (ent->plt.offset != (bfd_vma) -1
14644 && ent->addend == orig_rel.r_addend)
14645 {
14646 asection *plt;
14647
14648 plt = htab->elf.splt;
14649 if (!htab->elf.dynamic_sections_created
14650 || h == NULL
14651 || h->elf.dynindx == -1)
14652 plt = htab->elf.iplt;
14653 relocation = (plt->output_section->vma
14654 + plt->output_offset
14655 + ent->plt.offset);
14656 addend = 0;
14657 unresolved_reloc = FALSE;
14658 break;
14659 }
14660 }
14661 }
65f38f15 14662 break;
5bd4f169 14663
0b13192e
AM
14664 case R_PPC64_TOC:
14665 /* Relocation value is TOC base. */
14666 relocation = TOCstart;
cf35638d 14667 if (r_symndx == STN_UNDEF)
6f20ed8a 14668 relocation += htab->sec_info[input_section->id].toc_off;
8517fae7
AM
14669 else if (unresolved_reloc)
14670 ;
6f20ed8a
AM
14671 else if (sec != NULL && sec->id < htab->sec_info_arr_size)
14672 relocation += htab->sec_info[sec->id].toc_off;
0b13192e
AM
14673 else
14674 unresolved_reloc = TRUE;
ab96bf03 14675 goto dodyn;
0b13192e 14676
5bd4f169
AM
14677 /* TOC16 relocs. We want the offset relative to the TOC base,
14678 which is the address of the start of the TOC plus 0x8000.
14679 The TOC consists of sections .got, .toc, .tocbss, and .plt,
14680 in this order. */
65f38f15
AM
14681 case R_PPC64_TOC16:
14682 case R_PPC64_TOC16_LO:
14683 case R_PPC64_TOC16_HI:
14684 case R_PPC64_TOC16_DS:
14685 case R_PPC64_TOC16_LO_DS:
14686 case R_PPC64_TOC16_HA:
6f20ed8a 14687 addend -= TOCstart + htab->sec_info[input_section->id].toc_off;
5bd4f169
AM
14688 break;
14689
14690 /* Relocate against the beginning of the section. */
65f38f15
AM
14691 case R_PPC64_SECTOFF:
14692 case R_PPC64_SECTOFF_LO:
14693 case R_PPC64_SECTOFF_HI:
14694 case R_PPC64_SECTOFF_DS:
14695 case R_PPC64_SECTOFF_LO_DS:
14696 case R_PPC64_SECTOFF_HA:
4ce794b7 14697 if (sec != NULL)
65f38f15 14698 addend -= sec->output_section->vma;
5bd4f169
AM
14699 break;
14700
25f23106
AM
14701 case R_PPC64_REL16:
14702 case R_PPC64_REL16_LO:
14703 case R_PPC64_REL16_HI:
14704 case R_PPC64_REL16_HA:
a680de9a 14705 case R_PPC64_REL16DX_HA:
25f23106
AM
14706 break;
14707
721956f4
AM
14708 case R_PPC64_REL14:
14709 case R_PPC64_REL14_BRNTAKEN:
14710 case R_PPC64_REL14_BRTAKEN:
5d1634d7
AM
14711 case R_PPC64_REL24:
14712 break;
14713
411e1bfb
AM
14714 case R_PPC64_TPREL16:
14715 case R_PPC64_TPREL16_LO:
14716 case R_PPC64_TPREL16_HI:
14717 case R_PPC64_TPREL16_HA:
14718 case R_PPC64_TPREL16_DS:
14719 case R_PPC64_TPREL16_LO_DS:
f9c6b907
AM
14720 case R_PPC64_TPREL16_HIGH:
14721 case R_PPC64_TPREL16_HIGHA:
411e1bfb
AM
14722 case R_PPC64_TPREL16_HIGHER:
14723 case R_PPC64_TPREL16_HIGHERA:
14724 case R_PPC64_TPREL16_HIGHEST:
14725 case R_PPC64_TPREL16_HIGHESTA:
766bc656
AM
14726 if (h != NULL
14727 && h->elf.root.type == bfd_link_hash_undefweak
14728 && h->elf.dynindx == -1)
14729 {
14730 /* Make this relocation against an undefined weak symbol
14731 resolve to zero. This is really just a tweak, since
14732 code using weak externs ought to check that they are
14733 defined before using them. */
14734 bfd_byte *p = contents + rel->r_offset - d_offset;
14735
95f0d0d2 14736 insn = bfd_get_32 (input_bfd, p);
766bc656
AM
14737 insn = _bfd_elf_ppc_at_tprel_transform (insn, 13);
14738 if (insn != 0)
95f0d0d2 14739 bfd_put_32 (input_bfd, insn, p);
766bc656
AM
14740 break;
14741 }
989f9879
AM
14742 if (htab->elf.tls_sec != NULL)
14743 addend -= htab->elf.tls_sec->vma + TP_OFFSET;
7c8bbca5
AM
14744 /* The TPREL16 relocs shouldn't really be used in shared
14745 libs or with non-local symbols as that will result in
14746 DT_TEXTREL being set, but support them anyway. */
14747 goto dodyn;
411e1bfb
AM
14748
14749 case R_PPC64_DTPREL16:
14750 case R_PPC64_DTPREL16_LO:
14751 case R_PPC64_DTPREL16_HI:
14752 case R_PPC64_DTPREL16_HA:
14753 case R_PPC64_DTPREL16_DS:
14754 case R_PPC64_DTPREL16_LO_DS:
f9c6b907
AM
14755 case R_PPC64_DTPREL16_HIGH:
14756 case R_PPC64_DTPREL16_HIGHA:
411e1bfb
AM
14757 case R_PPC64_DTPREL16_HIGHER:
14758 case R_PPC64_DTPREL16_HIGHERA:
14759 case R_PPC64_DTPREL16_HIGHEST:
14760 case R_PPC64_DTPREL16_HIGHESTA:
989f9879
AM
14761 if (htab->elf.tls_sec != NULL)
14762 addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
411e1bfb
AM
14763 break;
14764
45965137
AM
14765 case R_PPC64_ADDR64_LOCAL:
14766 addend += PPC64_LOCAL_ENTRY_OFFSET (h != NULL
14767 ? h->elf.other
14768 : sym->st_other);
14769 break;
14770
e515b051
AM
14771 case R_PPC64_DTPMOD64:
14772 relocation = 1;
14773 addend = 0;
14774 goto dodyn;
14775
411e1bfb 14776 case R_PPC64_TPREL64:
989f9879
AM
14777 if (htab->elf.tls_sec != NULL)
14778 addend -= htab->elf.tls_sec->vma + TP_OFFSET;
411e1bfb
AM
14779 goto dodyn;
14780
14781 case R_PPC64_DTPREL64:
989f9879
AM
14782 if (htab->elf.tls_sec != NULL)
14783 addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
1a0670f3 14784 /* Fall through. */
411e1bfb 14785
65f38f15
AM
14786 /* Relocations that may need to be propagated if this is a
14787 dynamic object. */
04c9666a 14788 case R_PPC64_REL30:
65f38f15
AM
14789 case R_PPC64_REL32:
14790 case R_PPC64_REL64:
14791 case R_PPC64_ADDR14:
14792 case R_PPC64_ADDR14_BRNTAKEN:
14793 case R_PPC64_ADDR14_BRTAKEN:
14794 case R_PPC64_ADDR16:
14795 case R_PPC64_ADDR16_DS:
14796 case R_PPC64_ADDR16_HA:
14797 case R_PPC64_ADDR16_HI:
f9c6b907
AM
14798 case R_PPC64_ADDR16_HIGH:
14799 case R_PPC64_ADDR16_HIGHA:
65f38f15
AM
14800 case R_PPC64_ADDR16_HIGHER:
14801 case R_PPC64_ADDR16_HIGHERA:
14802 case R_PPC64_ADDR16_HIGHEST:
14803 case R_PPC64_ADDR16_HIGHESTA:
14804 case R_PPC64_ADDR16_LO:
14805 case R_PPC64_ADDR16_LO_DS:
14806 case R_PPC64_ADDR24:
65f38f15
AM
14807 case R_PPC64_ADDR32:
14808 case R_PPC64_ADDR64:
14809 case R_PPC64_UADDR16:
14810 case R_PPC64_UADDR32:
14811 case R_PPC64_UADDR64:
411e1bfb 14812 dodyn:
5d1634d7 14813 if ((input_section->flags & SEC_ALLOC) == 0)
ec338859
AM
14814 break;
14815
41bd81ab
AM
14816 if (NO_OPD_RELOCS && is_opd)
14817 break;
14818
8a9e8e72 14819 if (bfd_link_pic (info)
b1b07054
AM
14820 ? ((h == NULL
14821 || h->dyn_relocs != NULL)
14822 && ((h != NULL && pc_dynrelocs (h))
14823 || must_be_dyn_reloc (info, r_type)))
8a9e8e72
AM
14824 : (h != NULL
14825 ? h->dyn_relocs != NULL
d311bc8b 14826 : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC))
65f38f15 14827 {
b34976b6 14828 bfd_boolean skip, relocate;
65f38f15 14829 asection *sreloc;
1cf1f670 14830 bfd_vma out_off;
82e66161 14831 long indx = 0;
65f38f15
AM
14832
14833 /* When generating a dynamic object, these relocations
14834 are copied into the output file to be resolved at run
14835 time. */
14836
b34976b6
AM
14837 skip = FALSE;
14838 relocate = FALSE;
65f38f15 14839
1cf1f670
AM
14840 out_off = _bfd_elf_section_offset (output_bfd, info,
14841 input_section, rel->r_offset);
14842 if (out_off == (bfd_vma) -1)
b34976b6 14843 skip = TRUE;
1cf1f670 14844 else if (out_off == (bfd_vma) -2)
b34976b6 14845 skip = TRUE, relocate = TRUE;
1cf1f670
AM
14846 out_off += (input_section->output_section->vma
14847 + input_section->output_offset);
14848 outrel.r_offset = out_off;
411e1bfb 14849 outrel.r_addend = rel->r_addend;
65f38f15 14850
1cf1f670
AM
14851 /* Optimize unaligned reloc use. */
14852 if ((r_type == R_PPC64_ADDR64 && (out_off & 7) != 0)
14853 || (r_type == R_PPC64_UADDR64 && (out_off & 7) == 0))
14854 r_type ^= R_PPC64_ADDR64 ^ R_PPC64_UADDR64;
14855 else if ((r_type == R_PPC64_ADDR32 && (out_off & 3) != 0)
14856 || (r_type == R_PPC64_UADDR32 && (out_off & 3) == 0))
14857 r_type ^= R_PPC64_ADDR32 ^ R_PPC64_UADDR32;
14858 else if ((r_type == R_PPC64_ADDR16 && (out_off & 1) != 0)
14859 || (r_type == R_PPC64_UADDR16 && (out_off & 1) == 0))
14860 r_type ^= R_PPC64_ADDR16 ^ R_PPC64_UADDR16;
14861
65f38f15 14862 if (skip)
0bb2d96a 14863 memset (&outrel, 0, sizeof outrel);
afe397ea 14864 else if (!SYMBOL_REFERENCES_LOCAL (info, &h->elf)
0b13192e
AM
14865 && !is_opd
14866 && r_type != R_PPC64_TOC)
14acf4dc 14867 {
82e66161
AM
14868 indx = h->elf.dynindx;
14869 BFD_ASSERT (indx != -1);
14870 outrel.r_info = ELF64_R_INFO (indx, r_type);
14acf4dc 14871 }
65f38f15
AM
14872 else
14873 {
41bd81ab
AM
14874 /* This symbol is local, or marked to become local,
14875 or this is an opd section reloc which must point
14876 at a local function. */
65f38f15 14877 outrel.r_addend += relocation;
e86ce104 14878 if (r_type == R_PPC64_ADDR64 || r_type == R_PPC64_TOC)
65f38f15 14879 {
3fad3c7c 14880 if (is_opd && h != NULL)
afbe61cf
AM
14881 {
14882 /* Lie about opd entries. This case occurs
14883 when building shared libraries and we
14884 reference a function in another shared
3fad3c7c
AM
14885 lib. The same thing happens for a weak
14886 definition in an application that's
14887 overridden by a strong definition in a
14888 shared lib. (I believe this is a generic
14889 bug in binutils handling of weak syms.)
14890 In these cases we won't use the opd
1e2f5b6e 14891 entry in this lib. */
b34976b6 14892 unresolved_reloc = FALSE;
afbe61cf 14893 }
25f23106
AM
14894 if (!is_opd
14895 && r_type == R_PPC64_ADDR64
14896 && (h != NULL
14897 ? h->elf.type == STT_GNU_IFUNC
14898 : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC))
14899 outrel.r_info = ELF64_R_INFO (0, R_PPC64_IRELATIVE);
14900 else
14901 {
14902 outrel.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
81407a69 14903
25f23106
AM
14904 /* We need to relocate .opd contents for ld.so.
14905 Prelink also wants simple and consistent rules
14906 for relocs. This make all RELATIVE relocs have
14907 *r_offset equal to r_addend. */
14908 relocate = TRUE;
14909 }
65f38f15
AM
14910 }
14911 else
14912 {
25f23106
AM
14913 if (h != NULL
14914 ? h->elf.type == STT_GNU_IFUNC
14915 : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
14916 {
25f53a85 14917 info->callbacks->einfo
695344c0 14918 /* xgettext:c-format */
174d0a74 14919 (_("%H: %s for indirect "
bc30df16 14920 "function `%T' unsupported\n"),
25f53a85 14921 input_bfd, input_section, rel->r_offset,
25f23106
AM
14922 ppc64_elf_howto_table[r_type]->name,
14923 sym_name);
14924 ret = FALSE;
14925 }
cf35638d 14926 else if (r_symndx == STN_UNDEF || bfd_is_abs_section (sec))
65f38f15
AM
14927 ;
14928 else if (sec == NULL || sec->owner == NULL)
14929 {
14930 bfd_set_error (bfd_error_bad_value);
b34976b6 14931 return FALSE;
65f38f15
AM
14932 }
14933 else
14934 {
14935 asection *osec;
14936
14937 osec = sec->output_section;
14938 indx = elf_section_data (osec)->dynindx;
14939
74541ad4
AM
14940 if (indx == 0)
14941 {
14942 if ((osec->flags & SEC_READONLY) == 0
14943 && htab->elf.data_index_section != NULL)
14944 osec = htab->elf.data_index_section;
14945 else
14946 osec = htab->elf.text_index_section;
14947 indx = elf_section_data (osec)->dynindx;
14948 }
14949 BFD_ASSERT (indx != 0);
14950
65f38f15
AM
14951 /* We are turning this relocation into one
14952 against a section symbol, so subtract out
14953 the output section's address but not the
14954 offset of the input section in the output
14955 section. */
14956 outrel.r_addend -= osec->vma;
14957 }
14958
14959 outrel.r_info = ELF64_R_INFO (indx, r_type);
14960 }
14961 }
14962
14963 sreloc = elf_section_data (input_section)->sreloc;
19e08130
AM
14964 if (h != NULL
14965 ? h->elf.type == STT_GNU_IFUNC
14966 : ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
82e66161
AM
14967 {
14968 sreloc = htab->elf.irelplt;
14969 if (indx == 0)
14970 htab->local_ifunc_resolver = 1;
14971 else if (is_static_defined (&h->elf))
14972 htab->maybe_local_ifunc_resolver = 1;
14973 }
65f38f15
AM
14974 if (sreloc == NULL)
14975 abort ();
14976
dfbb6ac9
AM
14977 if (sreloc->reloc_count * sizeof (Elf64_External_Rela)
14978 >= sreloc->size)
14979 abort ();
947216bf
AM
14980 loc = sreloc->contents;
14981 loc += sreloc->reloc_count++ * sizeof (Elf64_External_Rela);
65f38f15
AM
14982 bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc);
14983
14984 /* If this reloc is against an external symbol, it will
14985 be computed at runtime, so there's no need to do
81407a69
AM
14986 anything now. However, for the sake of prelink ensure
14987 that the section contents are a known value. */
65f38f15 14988 if (! relocate)
81407a69
AM
14989 {
14990 unresolved_reloc = FALSE;
14991 /* The value chosen here is quite arbitrary as ld.so
14992 ignores section contents except for the special
14993 case of .opd where the contents might be accessed
14994 before relocation. Choose zero, as that won't
14995 cause reloc overflow. */
14996 relocation = 0;
14997 addend = 0;
14998 /* Use *r_offset == r_addend for R_PPC64_ADDR64 relocs
14999 to improve backward compatibility with older
15000 versions of ld. */
15001 if (r_type == R_PPC64_ADDR64)
15002 addend = outrel.r_addend;
15003 /* Adjust pc_relative relocs to have zero in *r_offset. */
4ce794b7 15004 else if (ppc64_elf_howto_table[r_type]->pc_relative)
f0158f44 15005 addend = outrel.r_offset;
81407a69 15006 }
65f38f15 15007 }
5bd4f169
AM
15008 break;
15009
65f38f15
AM
15010 case R_PPC64_COPY:
15011 case R_PPC64_GLOB_DAT:
15012 case R_PPC64_JMP_SLOT:
25f23106 15013 case R_PPC64_JMP_IREL:
65f38f15
AM
15014 case R_PPC64_RELATIVE:
15015 /* We shouldn't ever see these dynamic relocs in relocatable
15016 files. */
ae9a127f 15017 /* Fall through. */
65f38f15
AM
15018
15019 case R_PPC64_PLTGOT16:
15020 case R_PPC64_PLTGOT16_DS:
15021 case R_PPC64_PLTGOT16_HA:
15022 case R_PPC64_PLTGOT16_HI:
15023 case R_PPC64_PLTGOT16_LO:
15024 case R_PPC64_PLTGOT16_LO_DS:
15025 case R_PPC64_PLTREL32:
15026 case R_PPC64_PLTREL64:
15027 /* These ones haven't been implemented yet. */
15028
25f53a85 15029 info->callbacks->einfo
695344c0 15030 /* xgettext:c-format */
bc30df16 15031 (_("%P: %B: %s is not supported for `%T'\n"),
d003868e 15032 input_bfd,
4ce794b7 15033 ppc64_elf_howto_table[r_type]->name, sym_name);
5bd4f169
AM
15034
15035 bfd_set_error (bfd_error_invalid_operation);
b34976b6 15036 ret = FALSE;
c316a17c 15037 goto copy_reloc;
65f38f15 15038 }
5bd4f169 15039
67f0cbdb
AM
15040 /* Multi-instruction sequences that access the TOC can be
15041 optimized, eg. addis ra,r2,0; addi rb,ra,x;
15042 to nop; addi rb,r2,x; */
9a23f96e 15043 howto = ppc64_elf_howto_table[(int) r_type];
67f0cbdb
AM
15044 switch (r_type)
15045 {
15046 default:
15047 break;
15048
15049 case R_PPC64_GOT_TLSLD16_HI:
15050 case R_PPC64_GOT_TLSGD16_HI:
15051 case R_PPC64_GOT_TPREL16_HI:
15052 case R_PPC64_GOT_DTPREL16_HI:
15053 case R_PPC64_GOT16_HI:
15054 case R_PPC64_TOC16_HI:
15055 /* These relocs would only be useful if building up an
15056 offset to later add to r2, perhaps in an indexed
15057 addressing mode instruction. Don't try to optimize.
15058 Unfortunately, the possibility of someone building up an
15059 offset like this or even with the HA relocs, means that
15060 we need to check the high insn when optimizing the low
15061 insn. */
15062 break;
15063
15064 case R_PPC64_GOT_TLSLD16_HA:
15065 case R_PPC64_GOT_TLSGD16_HA:
15066 case R_PPC64_GOT_TPREL16_HA:
15067 case R_PPC64_GOT_DTPREL16_HA:
15068 case R_PPC64_GOT16_HA:
15069 case R_PPC64_TOC16_HA:
98528052 15070 if (htab->do_toc_opt && relocation + addend + 0x8000 < 0x10000
560c8763 15071 && !ppc64_elf_tdata (input_bfd)->unexpected_toc_insn)
98528052
AM
15072 {
15073 bfd_byte *p = contents + (rel->r_offset & ~3);
15074 bfd_put_32 (input_bfd, NOP, p);
15075 }
67f0cbdb
AM
15076 break;
15077
15078 case R_PPC64_GOT_TLSLD16_LO:
15079 case R_PPC64_GOT_TLSGD16_LO:
15080 case R_PPC64_GOT_TPREL16_LO_DS:
15081 case R_PPC64_GOT_DTPREL16_LO_DS:
15082 case R_PPC64_GOT16_LO:
15083 case R_PPC64_GOT16_LO_DS:
15084 case R_PPC64_TOC16_LO:
15085 case R_PPC64_TOC16_LO_DS:
98528052 15086 if (htab->do_toc_opt && relocation + addend + 0x8000 < 0x10000
560c8763 15087 && !ppc64_elf_tdata (input_bfd)->unexpected_toc_insn)
67f0cbdb
AM
15088 {
15089 bfd_byte *p = contents + (rel->r_offset & ~3);
15090 insn = bfd_get_32 (input_bfd, p);
560c8763
AM
15091 if ((insn & (0x3f << 26)) == 12u << 26 /* addic */)
15092 {
15093 /* Transform addic to addi when we change reg. */
15094 insn &= ~((0x3f << 26) | (0x1f << 16));
15095 insn |= (14u << 26) | (2 << 16);
15096 }
15097 else
67f0cbdb 15098 {
98528052
AM
15099 insn &= ~(0x1f << 16);
15100 insn |= 2 << 16;
67f0cbdb 15101 }
560c8763 15102 bfd_put_32 (input_bfd, insn, p);
67f0cbdb
AM
15103 }
15104 break;
9a23f96e
AM
15105
15106 case R_PPC64_TPREL16_HA:
15107 if (htab->do_tls_opt && relocation + addend + 0x8000 < 0x10000)
15108 {
15109 bfd_byte *p = contents + (rel->r_offset & ~3);
15110 insn = bfd_get_32 (input_bfd, p);
15111 if ((insn & ((0x3f << 26) | 0x1f << 16))
15112 != ((15u << 26) | (13 << 16)) /* addis rt,13,imm */)
15113 /* xgettext:c-format */
15114 info->callbacks->minfo
15115 (_("%H: warning: %s unexpected insn %#x.\n"),
15116 input_bfd, input_section, rel->r_offset, howto->name, insn);
15117 else
15118 bfd_put_32 (input_bfd, NOP, p);
15119 }
15120 break;
15121
15122 case R_PPC64_TPREL16_LO:
15123 case R_PPC64_TPREL16_LO_DS:
15124 if (htab->do_tls_opt && relocation + addend + 0x8000 < 0x10000)
15125 {
15126 bfd_byte *p = contents + (rel->r_offset & ~3);
15127 insn = bfd_get_32 (input_bfd, p);
15128 insn &= ~(0x1f << 16);
15129 insn |= 13 << 16;
15130 bfd_put_32 (input_bfd, insn, p);
15131 }
15132 break;
67f0cbdb
AM
15133 }
15134
65f38f15
AM
15135 /* Do any further special processing. */
15136 switch (r_type)
15137 {
15138 default:
15139 break;
15140
25f23106 15141 case R_PPC64_REL16_HA:
a680de9a 15142 case R_PPC64_REL16DX_HA:
f9c6b907
AM
15143 case R_PPC64_ADDR16_HA:
15144 case R_PPC64_ADDR16_HIGHA:
65f38f15
AM
15145 case R_PPC64_ADDR16_HIGHERA:
15146 case R_PPC64_ADDR16_HIGHESTA:
65f38f15
AM
15147 case R_PPC64_TOC16_HA:
15148 case R_PPC64_SECTOFF_HA:
411e1bfb 15149 case R_PPC64_TPREL16_HA:
f9c6b907 15150 case R_PPC64_TPREL16_HIGHA:
411e1bfb 15151 case R_PPC64_TPREL16_HIGHERA:
411e1bfb 15152 case R_PPC64_TPREL16_HIGHESTA:
f9c6b907
AM
15153 case R_PPC64_DTPREL16_HA:
15154 case R_PPC64_DTPREL16_HIGHA:
411e1bfb 15155 case R_PPC64_DTPREL16_HIGHERA:
411e1bfb 15156 case R_PPC64_DTPREL16_HIGHESTA:
65f38f15
AM
15157 /* It's just possible that this symbol is a weak symbol
15158 that's not actually defined anywhere. In that case,
15159 'sec' would be NULL, and we should leave the symbol
15160 alone (it will be set to zero elsewhere in the link). */
5c5f6e17
AM
15161 if (sec == NULL)
15162 break;
1a0670f3 15163 /* Fall through. */
5c5f6e17
AM
15164
15165 case R_PPC64_GOT16_HA:
15166 case R_PPC64_PLTGOT16_HA:
15167 case R_PPC64_PLT16_HA:
15168 case R_PPC64_GOT_TLSGD16_HA:
15169 case R_PPC64_GOT_TLSLD16_HA:
15170 case R_PPC64_GOT_TPREL16_HA:
15171 case R_PPC64_GOT_DTPREL16_HA:
15172 /* Add 0x10000 if sign bit in 0:15 is set.
15173 Bits 0:15 are not used. */
15174 addend += 0x8000;
65f38f15
AM
15175 break;
15176
15177 case R_PPC64_ADDR16_DS:
15178 case R_PPC64_ADDR16_LO_DS:
15179 case R_PPC64_GOT16_DS:
15180 case R_PPC64_GOT16_LO_DS:
15181 case R_PPC64_PLT16_LO_DS:
15182 case R_PPC64_SECTOFF_DS:
15183 case R_PPC64_SECTOFF_LO_DS:
15184 case R_PPC64_TOC16_DS:
15185 case R_PPC64_TOC16_LO_DS:
15186 case R_PPC64_PLTGOT16_DS:
15187 case R_PPC64_PLTGOT16_LO_DS:
411e1bfb
AM
15188 case R_PPC64_GOT_TPREL16_DS:
15189 case R_PPC64_GOT_TPREL16_LO_DS:
15190 case R_PPC64_GOT_DTPREL16_DS:
15191 case R_PPC64_GOT_DTPREL16_LO_DS:
15192 case R_PPC64_TPREL16_DS:
15193 case R_PPC64_TPREL16_LO_DS:
15194 case R_PPC64_DTPREL16_DS:
15195 case R_PPC64_DTPREL16_LO_DS:
adadcc0c
AM
15196 insn = bfd_get_32 (input_bfd, contents + (rel->r_offset & ~3));
15197 mask = 3;
a680de9a
PB
15198 /* If this reloc is against an lq, lxv, or stxv insn, then
15199 the value must be a multiple of 16. This is somewhat of
15200 a hack, but the "correct" way to do this by defining _DQ
15201 forms of all the _DS relocs bloats all reloc switches in
15202 this file. It doesn't make much sense to use these
15203 relocs in data, so testing the insn should be safe. */
15204 if ((insn & (0x3f << 26)) == (56u << 26)
15205 || ((insn & (0x3f << 26)) == (61u << 26) && (insn & 3) == 1))
adadcc0c 15206 mask = 15;
a680de9a
PB
15207 relocation += addend;
15208 addend = insn & (mask ^ 3);
15209 if ((relocation & mask) != 0)
65f38f15 15210 {
a680de9a 15211 relocation ^= relocation & mask;
25f53a85 15212 info->callbacks->einfo
695344c0 15213 /* xgettext:c-format */
174d0a74 15214 (_("%H: error: %s not a multiple of %u\n"),
25f53a85 15215 input_bfd, input_section, rel->r_offset,
b80eed39 15216 howto->name,
adadcc0c 15217 mask + 1);
65f38f15 15218 bfd_set_error (bfd_error_bad_value);
b34976b6 15219 ret = FALSE;
c316a17c 15220 goto copy_reloc;
65f38f15
AM
15221 }
15222 break;
5bd4f169
AM
15223 }
15224
239e1f3a
AM
15225 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
15226 because such sections are not SEC_ALLOC and thus ld.so will
15227 not process them. */
65f38f15 15228 if (unresolved_reloc
239e1f3a 15229 && !((input_section->flags & SEC_DEBUGGING) != 0
1d5316ab
AM
15230 && h->elf.def_dynamic)
15231 && _bfd_elf_section_offset (output_bfd, info, input_section,
15232 rel->r_offset) != (bfd_vma) -1)
9c07fe7c 15233 {
25f53a85 15234 info->callbacks->einfo
695344c0 15235 /* xgettext:c-format */
174d0a74 15236 (_("%H: unresolvable %s against `%T'\n"),
25f53a85 15237 input_bfd, input_section, rel->r_offset,
b80eed39 15238 howto->name,
039b3fef 15239 h->elf.root.root.string);
b34976b6 15240 ret = FALSE;
9c07fe7c 15241 }
5bd4f169 15242
b80eed39
AM
15243 /* 16-bit fields in insns mostly have signed values, but a
15244 few insns have 16-bit unsigned values. Really, we should
15245 have different reloc types. */
15246 if (howto->complain_on_overflow != complain_overflow_dont
15247 && howto->dst_mask == 0xffff
15248 && (input_section->flags & SEC_CODE) != 0)
15249 {
15250 enum complain_overflow complain = complain_overflow_signed;
15251
15252 insn = bfd_get_32 (input_bfd, contents + (rel->r_offset & ~3));
a47622ac
AM
15253 if ((insn & (0x3f << 26)) == 10u << 26 /* cmpli */)
15254 complain = complain_overflow_bitfield;
15255 else if (howto->rightshift == 0
15256 ? ((insn & (0x3f << 26)) == 28u << 26 /* andi */
15257 || (insn & (0x3f << 26)) == 24u << 26 /* ori */
15258 || (insn & (0x3f << 26)) == 26u << 26 /* xori */)
15259 : ((insn & (0x3f << 26)) == 29u << 26 /* andis */
15260 || (insn & (0x3f << 26)) == 25u << 26 /* oris */
15261 || (insn & (0x3f << 26)) == 27u << 26 /* xoris */))
b80eed39
AM
15262 complain = complain_overflow_unsigned;
15263 if (howto->complain_on_overflow != complain)
15264 {
15265 alt_howto = *howto;
15266 alt_howto.complain_on_overflow = complain;
15267 howto = &alt_howto;
15268 }
15269 }
15270
a680de9a
PB
15271 if (r_type == R_PPC64_REL16DX_HA)
15272 {
15273 /* Split field reloc isn't handled by _bfd_final_link_relocate. */
15274 if (rel->r_offset + 4 > input_section->size)
15275 r = bfd_reloc_outofrange;
15276 else
15277 {
15278 relocation += addend;
15279 relocation -= (rel->r_offset
15280 + input_section->output_offset
15281 + input_section->output_section->vma);
3de43e7b 15282 relocation = (bfd_signed_vma) relocation >> 16;
a680de9a
PB
15283 insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
15284 insn &= ~0x1fffc1;
3de43e7b 15285 insn |= (relocation & 0xffc1) | ((relocation & 0x3e) << 15);
a680de9a
PB
15286 bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
15287 r = bfd_reloc_ok;
3de43e7b 15288 if (relocation + 0x8000 > 0xffff)
a680de9a
PB
15289 r = bfd_reloc_overflow;
15290 }
15291 }
15292 else
15293 r = _bfd_final_link_relocate (howto, input_bfd, input_section, contents,
15294 rel->r_offset, relocation, addend);
5bd4f169 15295
ef60b7ff 15296 if (r != bfd_reloc_ok)
5bd4f169 15297 {
bc30df16 15298 char *more_info = NULL;
b80eed39 15299 const char *reloc_name = howto->name;
bc30df16
AM
15300
15301 if (reloc_dest != DEST_NORMAL)
15302 {
15303 more_info = bfd_malloc (strlen (reloc_name) + 8);
15304 if (more_info != NULL)
15305 {
15306 strcpy (more_info, reloc_name);
15307 strcat (more_info, (reloc_dest == DEST_OPD
15308 ? " (OPD)" : " (stub)"));
15309 reloc_name = more_info;
15310 }
15311 }
15312
cd27b276 15313 if (r == bfd_reloc_overflow)
5bd4f169 15314 {
8131c122
AM
15315 /* On code like "if (foo) foo();" don't report overflow
15316 on a branch to zero when foo is undefined. */
15317 if (!warned
15318 && (reloc_dest == DEST_STUB
15319 || !(h != NULL
15320 && (h->elf.root.type == bfd_link_hash_undefweak
15321 || h->elf.root.type == bfd_link_hash_undefined)
15322 && is_branch_reloc (r_type))))
1a72702b
AM
15323 info->callbacks->reloc_overflow (info, &h->elf.root,
15324 sym_name, reloc_name,
15325 orig_rel.r_addend,
15326 input_bfd, input_section,
15327 rel->r_offset);
ef60b7ff
AM
15328 }
15329 else
15330 {
25f53a85 15331 info->callbacks->einfo
695344c0 15332 /* xgettext:c-format */
174d0a74 15333 (_("%H: %s against `%T': error %d\n"),
25f53a85 15334 input_bfd, input_section, rel->r_offset,
bc30df16 15335 reloc_name, sym_name, (int) r);
b34976b6 15336 ret = FALSE;
ef60b7ff 15337 }
bc30df16
AM
15338 if (more_info != NULL)
15339 free (more_info);
5bd4f169 15340 }
c316a17c
AM
15341 copy_reloc:
15342 if (wrel != rel)
15343 *wrel = *rel;
15344 }
15345
15346 if (wrel != rel)
15347 {
15348 Elf_Internal_Shdr *rel_hdr;
15349 size_t deleted = rel - wrel;
15350
15351 rel_hdr = _bfd_elf_single_rel_hdr (input_section->output_section);
15352 rel_hdr->sh_size -= rel_hdr->sh_entsize * deleted;
15353 if (rel_hdr->sh_size == 0)
15354 {
15355 /* It is too late to remove an empty reloc section. Leave
15356 one NONE reloc.
15357 ??? What is wrong with an empty section??? */
15358 rel_hdr->sh_size = rel_hdr->sh_entsize;
15359 deleted -= 1;
15360 }
15361 rel_hdr = _bfd_elf_single_rel_hdr (input_section);
15362 rel_hdr->sh_size -= rel_hdr->sh_entsize * deleted;
15363 input_section->reloc_count -= deleted;
5bd4f169
AM
15364 }
15365
645ea6a9
AM
15366 /* If we're emitting relocations, then shortly after this function
15367 returns, reloc offsets and addends for this section will be
15368 adjusted. Worse, reloc symbol indices will be for the output
8860955f
AM
15369 file rather than the input. Save a copy of the relocs for
15370 opd_entry_value. */
0e1862bb 15371 if (is_opd && (info->emitrelocations || bfd_link_relocatable (info)))
8860955f
AM
15372 {
15373 bfd_size_type amt;
15374 amt = input_section->reloc_count * sizeof (Elf_Internal_Rela);
15375 rel = bfd_alloc (input_bfd, amt);
729eabd5
AM
15376 BFD_ASSERT (ppc64_elf_tdata (input_bfd)->opd.relocs == NULL);
15377 ppc64_elf_tdata (input_bfd)->opd.relocs = rel;
8860955f
AM
15378 if (rel == NULL)
15379 return FALSE;
15380 memcpy (rel, relocs, amt);
15381 }
5bd4f169
AM
15382 return ret;
15383}
15384
754021d0
AM
15385/* Adjust the value of any local symbols in opd sections. */
15386
6e0b88f1 15387static int
754021d0
AM
15388ppc64_elf_output_symbol_hook (struct bfd_link_info *info,
15389 const char *name ATTRIBUTE_UNUSED,
15390 Elf_Internal_Sym *elfsym,
15391 asection *input_sec,
15392 struct elf_link_hash_entry *h)
15393{
74f0fb50
AM
15394 struct _opd_sec_data *opd;
15395 long adjust;
754021d0
AM
15396 bfd_vma value;
15397
4025353c 15398 if (h != NULL)
6e0b88f1 15399 return 1;
4025353c 15400
74f0fb50
AM
15401 opd = get_opd_info (input_sec);
15402 if (opd == NULL || opd->adjust == NULL)
6e0b88f1 15403 return 1;
754021d0
AM
15404
15405 value = elfsym->st_value - input_sec->output_offset;
0e1862bb 15406 if (!bfd_link_relocatable (info))
754021d0
AM
15407 value -= input_sec->output_section->vma;
15408
51aecdc5 15409 adjust = opd->adjust[OPD_NDX (value)];
4025353c 15410 if (adjust == -1)
6e0b88f1
AM
15411 return 2;
15412
15413 elfsym->st_value += adjust;
15414 return 1;
754021d0
AM
15415}
15416
5bd4f169
AM
15417/* Finish up dynamic symbol handling. We set the contents of various
15418 dynamic sections here. */
15419
b34976b6 15420static bfd_boolean
4ce794b7
AM
15421ppc64_elf_finish_dynamic_symbol (bfd *output_bfd,
15422 struct bfd_link_info *info,
15423 struct elf_link_hash_entry *h,
4aef7643 15424 Elf_Internal_Sym *sym)
5bd4f169 15425{
65f38f15 15426 struct ppc_link_hash_table *htab;
8387904d
AM
15427 struct plt_entry *ent;
15428 Elf_Internal_Rela rela;
15429 bfd_byte *loc;
5bd4f169 15430
65f38f15 15431 htab = ppc_hash_table (info);
4dfe6ac6
NC
15432 if (htab == NULL)
15433 return FALSE;
5bd4f169 15434
8387904d
AM
15435 for (ent = h->plt.plist; ent != NULL; ent = ent->next)
15436 if (ent->plt.offset != (bfd_vma) -1)
15437 {
15438 /* This symbol has an entry in the procedure linkage
15439 table. Set it up. */
e054468f
AM
15440 if (!htab->elf.dynamic_sections_created
15441 || h->dynindx == -1)
15442 {
15443 BFD_ASSERT (h->type == STT_GNU_IFUNC
15444 && h->def_regular
15445 && (h->root.type == bfd_link_hash_defined
15446 || h->root.type == bfd_link_hash_defweak));
33e44f2e
AM
15447 rela.r_offset = (htab->elf.iplt->output_section->vma
15448 + htab->elf.iplt->output_offset
25f23106 15449 + ent->plt.offset);
ee67d69a
AM
15450 if (htab->opd_abi)
15451 rela.r_info = ELF64_R_INFO (0, R_PPC64_JMP_IREL);
15452 else
15453 rela.r_info = ELF64_R_INFO (0, R_PPC64_IRELATIVE);
e054468f
AM
15454 rela.r_addend = (h->root.u.def.value
15455 + h->root.u.def.section->output_offset
15456 + h->root.u.def.section->output_section->vma
15457 + ent->addend);
33e44f2e
AM
15458 loc = (htab->elf.irelplt->contents
15459 + (htab->elf.irelplt->reloc_count++
25f23106 15460 * sizeof (Elf64_External_Rela)));
82e66161 15461 htab->local_ifunc_resolver = 1;
e054468f
AM
15462 }
15463 else
15464 {
33e44f2e
AM
15465 rela.r_offset = (htab->elf.splt->output_section->vma
15466 + htab->elf.splt->output_offset
25f23106 15467 + ent->plt.offset);
e054468f
AM
15468 rela.r_info = ELF64_R_INFO (h->dynindx, R_PPC64_JMP_SLOT);
15469 rela.r_addend = ent->addend;
33e44f2e 15470 loc = (htab->elf.srelplt->contents
b9e5796b
AM
15471 + ((ent->plt.offset - PLT_INITIAL_ENTRY_SIZE (htab))
15472 / PLT_ENTRY_SIZE (htab) * sizeof (Elf64_External_Rela)));
82e66161
AM
15473 if (h->type == STT_GNU_IFUNC && is_static_defined (h))
15474 htab->maybe_local_ifunc_resolver = 1;
e054468f 15475 }
8387904d 15476 bfd_elf64_swap_reloca_out (output_bfd, &rela, loc);
a345bc8d
AM
15477
15478 if (!htab->opd_abi)
15479 {
15480 if (!h->def_regular)
15481 {
15482 /* Mark the symbol as undefined, rather than as
15483 defined in glink. Leave the value if there were
15484 any relocations where pointer equality matters
15485 (this is a clue for the dynamic linker, to make
15486 function pointer comparisons work between an
15487 application and shared library), otherwise set it
15488 to zero. */
15489 sym->st_shndx = SHN_UNDEF;
15490 if (!h->pointer_equality_needed)
15491 sym->st_value = 0;
15492 else if (!h->ref_regular_nonweak)
15493 {
15494 /* This breaks function pointer comparisons, but
15495 that is better than breaking tests for a NULL
15496 function pointer. */
15497 sym->st_value = 0;
15498 }
15499 }
15500 }
8387904d 15501 }
5bd4f169 15502
f5385ebf 15503 if (h->needs_copy)
5bd4f169 15504 {
65f38f15 15505 /* This symbol needs a copy reloc. Set it up. */
5474d94f 15506 asection *srel;
5bd4f169 15507
65f38f15
AM
15508 if (h->dynindx == -1
15509 || (h->root.type != bfd_link_hash_defined
15510 && h->root.type != bfd_link_hash_defweak)
5474d94f
AM
15511 || htab->elf.srelbss == NULL
15512 || htab->elf.sreldynrelro == NULL)
65f38f15 15513 abort ();
5bd4f169
AM
15514
15515 rela.r_offset = (h->root.u.def.value
15516 + h->root.u.def.section->output_section->vma
15517 + h->root.u.def.section->output_offset);
15518 rela.r_info = ELF64_R_INFO (h->dynindx, R_PPC64_COPY);
15519 rela.r_addend = 0;
afbf7e8e 15520 if (h->root.u.def.section == htab->elf.sdynrelro)
5474d94f
AM
15521 srel = htab->elf.sreldynrelro;
15522 else
15523 srel = htab->elf.srelbss;
15524 loc = srel->contents;
15525 loc += srel->reloc_count++ * sizeof (Elf64_External_Rela);
65f38f15 15526 bfd_elf64_swap_reloca_out (output_bfd, &rela, loc);
5bd4f169
AM
15527 }
15528
b34976b6 15529 return TRUE;
5bd4f169
AM
15530}
15531
65f38f15
AM
15532/* Used to decide how to sort relocs in an optimal manner for the
15533 dynamic linker, before writing them out. */
15534
15535static enum elf_reloc_type_class
7e612e98
AM
15536ppc64_elf_reloc_type_class (const struct bfd_link_info *info,
15537 const asection *rel_sec,
15538 const Elf_Internal_Rela *rela)
65f38f15 15539{
04c9666a 15540 enum elf_ppc64_reloc_type r_type;
7e612e98
AM
15541 struct ppc_link_hash_table *htab = ppc_hash_table (info);
15542
33e44f2e 15543 if (rel_sec == htab->elf.irelplt)
7e612e98 15544 return reloc_class_ifunc;
a33d1f77 15545
4ce794b7 15546 r_type = ELF64_R_TYPE (rela->r_info);
a33d1f77 15547 switch (r_type)
65f38f15
AM
15548 {
15549 case R_PPC64_RELATIVE:
15550 return reloc_class_relative;
15551 case R_PPC64_JMP_SLOT:
15552 return reloc_class_plt;
15553 case R_PPC64_COPY:
15554 return reloc_class_copy;
15555 default:
15556 return reloc_class_normal;
15557 }
15558}
15559
5bd4f169
AM
15560/* Finish up the dynamic sections. */
15561
b34976b6 15562static bfd_boolean
4ce794b7
AM
15563ppc64_elf_finish_dynamic_sections (bfd *output_bfd,
15564 struct bfd_link_info *info)
5bd4f169 15565{
65f38f15
AM
15566 struct ppc_link_hash_table *htab;
15567 bfd *dynobj;
5bd4f169 15568 asection *sdyn;
5bd4f169 15569
65f38f15 15570 htab = ppc_hash_table (info);
4dfe6ac6
NC
15571 if (htab == NULL)
15572 return FALSE;
15573
65f38f15 15574 dynobj = htab->elf.dynobj;
3d4d4302 15575 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
5bd4f169 15576
65f38f15 15577 if (htab->elf.dynamic_sections_created)
5bd4f169 15578 {
5bd4f169
AM
15579 Elf64_External_Dyn *dyncon, *dynconend;
15580
33e44f2e 15581 if (sdyn == NULL || htab->elf.sgot == NULL)
65f38f15 15582 abort ();
5bd4f169
AM
15583
15584 dyncon = (Elf64_External_Dyn *) sdyn->contents;
eea6121a 15585 dynconend = (Elf64_External_Dyn *) (sdyn->contents + sdyn->size);
5bd4f169
AM
15586 for (; dyncon < dynconend; dyncon++)
15587 {
15588 Elf_Internal_Dyn dyn;
19397422 15589 asection *s;
5bd4f169
AM
15590
15591 bfd_elf64_swap_dyn_in (dynobj, dyncon, &dyn);
15592
15593 switch (dyn.d_tag)
15594 {
65f38f15
AM
15595 default:
15596 continue;
5bd4f169 15597
5d1634d7 15598 case DT_PPC64_GLINK:
4ce794b7 15599 s = htab->glink;
6348e046 15600 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
ad8e1ba5
AM
15601 /* We stupidly defined DT_PPC64_GLINK to be the start
15602 of glink rather than the first entry point, which is
15603 what ld.so needs, and now have a bigger stub to
15604 support automatic multiple TOCs. */
b9e5796b 15605 dyn.d_un.d_ptr += GLINK_CALL_STUB_SIZE - 8 * 4;
5d1634d7
AM
15606 break;
15607
19397422
AM
15608 case DT_PPC64_OPD:
15609 s = bfd_get_section_by_name (output_bfd, ".opd");
6348e046
AM
15610 if (s == NULL)
15611 continue;
15612 dyn.d_un.d_ptr = s->vma;
19397422
AM
15613 break;
15614
e8910a83
AM
15615 case DT_PPC64_OPT:
15616 if (htab->do_multi_toc && htab->multi_toc_needed)
15617 dyn.d_un.d_val |= PPC64_OPT_MULTI_TOC;
f378ab09
AM
15618 if (htab->has_plt_localentry0)
15619 dyn.d_un.d_val |= PPC64_OPT_LOCALENTRY;
e8910a83
AM
15620 break;
15621
19397422
AM
15622 case DT_PPC64_OPDSZ:
15623 s = bfd_get_section_by_name (output_bfd, ".opd");
6348e046
AM
15624 if (s == NULL)
15625 continue;
eea6121a 15626 dyn.d_un.d_val = s->size;
19397422
AM
15627 break;
15628
65f38f15 15629 case DT_PLTGOT:
33e44f2e 15630 s = htab->elf.splt;
6348e046 15631 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
65f38f15
AM
15632 break;
15633
15634 case DT_JMPREL:
33e44f2e 15635 s = htab->elf.srelplt;
6348e046 15636 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
65f38f15 15637 break;
5bd4f169 15638
65f38f15 15639 case DT_PLTRELSZ:
33e44f2e 15640 dyn.d_un.d_val = htab->elf.srelplt->size;
5d1634d7 15641 break;
82e66161
AM
15642
15643 case DT_TEXTREL:
15644 if (htab->local_ifunc_resolver)
15645 info->callbacks->einfo
15646 (_("%X%P: text relocations and GNU indirect "
15647 "functions will result in a segfault at runtime\n"));
15648 else if (htab->maybe_local_ifunc_resolver)
15649 info->callbacks->einfo
15650 (_("%P: warning: text relocations and GNU indirect "
15651 "functions may result in a segfault at runtime\n"));
15652 continue;
5bd4f169 15653 }
5bd4f169 15654
65f38f15 15655 bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
5bd4f169 15656 }
5bd4f169
AM
15657 }
15658
6528b6eb
AM
15659 if (htab->elf.sgot != NULL && htab->elf.sgot->size != 0
15660 && htab->elf.sgot->output_section != bfd_abs_section_ptr)
5d1634d7
AM
15661 {
15662 /* Fill in the first entry in the global offset table.
15663 We use it to hold the link-time TOCbase. */
15664 bfd_put_64 (output_bfd,
60ee0d4a 15665 elf_gp (output_bfd) + TOC_BASE_OFF,
33e44f2e 15666 htab->elf.sgot->contents);
5d1634d7
AM
15667
15668 /* Set .got entry size. */
33e44f2e 15669 elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize = 8;
5d1634d7
AM
15670 }
15671
6528b6eb
AM
15672 if (htab->elf.splt != NULL && htab->elf.splt->size != 0
15673 && htab->elf.splt->output_section != bfd_abs_section_ptr)
5d1634d7
AM
15674 {
15675 /* Set .plt entry size. */
33e44f2e 15676 elf_section_data (htab->elf.splt->output_section)->this_hdr.sh_entsize
b9e5796b 15677 = PLT_ENTRY_SIZE (htab);
5d1634d7
AM
15678 }
15679
84f5d08e
AM
15680 /* brlt is SEC_LINKER_CREATED, so we need to write out relocs for
15681 brlt ourselves if emitrelocations. */
15682 if (htab->brlt != NULL
15683 && htab->brlt->reloc_count != 0
15684 && !_bfd_elf_link_output_relocs (output_bfd,
15685 htab->brlt,
d4730f92 15686 elf_section_data (htab->brlt)->rela.hdr,
84f5d08e
AM
15687 elf_section_data (htab->brlt)->relocs,
15688 NULL))
15689 return FALSE;
15690
176a0d42
AM
15691 if (htab->glink != NULL
15692 && htab->glink->reloc_count != 0
15693 && !_bfd_elf_link_output_relocs (output_bfd,
15694 htab->glink,
d4730f92 15695 elf_section_data (htab->glink)->rela.hdr,
176a0d42
AM
15696 elf_section_data (htab->glink)->relocs,
15697 NULL))
15698 return FALSE;
15699
58d180e8 15700 if (htab->glink_eh_frame != NULL
da44f4e5
AM
15701 && htab->glink_eh_frame->size != 0)
15702 {
15703 bfd_vma val;
15704 bfd_byte *p;
d4aaa2a0 15705 struct map_stub *group;
2e0ce1c8 15706 size_t align = 4;
da44f4e5 15707
2e0ce1c8
AM
15708 p = htab->glink_eh_frame->contents;
15709 p += (sizeof (glink_eh_frame_cie) + align - 1) & -align;
d4aaa2a0
AM
15710
15711 for (group = htab->group; group != NULL; group = group->next)
15712 if (group->stub_sec != NULL)
da44f4e5 15713 {
da44f4e5 15714 /* Offset to stub section. */
d4aaa2a0
AM
15715 val = (group->stub_sec->output_section->vma
15716 + group->stub_sec->output_offset);
da44f4e5
AM
15717 val -= (htab->glink_eh_frame->output_section->vma
15718 + htab->glink_eh_frame->output_offset
d4aaa2a0 15719 + (p + 8 - htab->glink_eh_frame->contents));
da44f4e5
AM
15720 if (val + 0x80000000 > 0xffffffff)
15721 {
15722 info->callbacks->einfo
15723 (_("%P: %s offset too large for .eh_frame sdata4 encoding"),
d4aaa2a0 15724 group->stub_sec->name);
da44f4e5
AM
15725 return FALSE;
15726 }
d4aaa2a0
AM
15727 bfd_put_32 (dynobj, val, p + 8);
15728 p += stub_eh_frame_size (group, align);
da44f4e5
AM
15729 }
15730 if (htab->glink != NULL && htab->glink->size != 0)
15731 {
da44f4e5
AM
15732 /* Offset to .glink. */
15733 val = (htab->glink->output_section->vma
15734 + htab->glink->output_offset
15735 + 8);
15736 val -= (htab->glink_eh_frame->output_section->vma
15737 + htab->glink_eh_frame->output_offset
d4aaa2a0 15738 + (p + 8 - htab->glink_eh_frame->contents));
da44f4e5
AM
15739 if (val + 0x80000000 > 0xffffffff)
15740 {
15741 info->callbacks->einfo
15742 (_("%P: %s offset too large for .eh_frame sdata4 encoding"),
15743 htab->glink->name);
15744 return FALSE;
15745 }
d4aaa2a0
AM
15746 bfd_put_32 (dynobj, val, p + 8);
15747 p += (24 + align - 1) & -align;
da44f4e5
AM
15748 }
15749
15750 if (htab->glink_eh_frame->sec_info_type == SEC_INFO_TYPE_EH_FRAME
15751 && !_bfd_elf_write_section_eh_frame (output_bfd, info,
15752 htab->glink_eh_frame,
15753 htab->glink_eh_frame->contents))
15754 return FALSE;
15755 }
58d180e8 15756
e717da7e 15757 /* We need to handle writing out multiple GOT sections ourselves,
7b53ace3
AM
15758 since we didn't add them to DYNOBJ. We know dynobj is the first
15759 bfd. */
c72f2fb2 15760 while ((dynobj = dynobj->link.next) != NULL)
e717da7e
AM
15761 {
15762 asection *s;
7b53ace3 15763
0c8d6e5c 15764 if (!is_ppc64_elf (dynobj))
7b53ace3
AM
15765 continue;
15766
e717da7e
AM
15767 s = ppc64_elf_tdata (dynobj)->got;
15768 if (s != NULL
eea6121a 15769 && s->size != 0
e717da7e
AM
15770 && s->output_section != bfd_abs_section_ptr
15771 && !bfd_set_section_contents (output_bfd, s->output_section,
15772 s->contents, s->output_offset,
eea6121a 15773 s->size))
e717da7e
AM
15774 return FALSE;
15775 s = ppc64_elf_tdata (dynobj)->relgot;
15776 if (s != NULL
eea6121a 15777 && s->size != 0
e717da7e
AM
15778 && s->output_section != bfd_abs_section_ptr
15779 && !bfd_set_section_contents (output_bfd, s->output_section,
15780 s->contents, s->output_offset,
eea6121a 15781 s->size))
e717da7e
AM
15782 return FALSE;
15783 }
f6c52c13 15784
b34976b6 15785 return TRUE;
5bd4f169
AM
15786}
15787
5bd4f169 15788#include "elf64-target.h"
7b8e7dad
AM
15789
15790/* FreeBSD support */
15791
15792#undef TARGET_LITTLE_SYM
15793#undef TARGET_LITTLE_NAME
15794
15795#undef TARGET_BIG_SYM
6d00b590 15796#define TARGET_BIG_SYM powerpc_elf64_fbsd_vec
7b8e7dad
AM
15797#undef TARGET_BIG_NAME
15798#define TARGET_BIG_NAME "elf64-powerpc-freebsd"
15799
15800#undef ELF_OSABI
15801#define ELF_OSABI ELFOSABI_FREEBSD
15802
15803#undef elf64_bed
15804#define elf64_bed elf64_powerpc_fbsd_bed
15805
15806#include "elf64-target.h"
This page took 3.261977 seconds and 4 git commands to generate.