* elf64-ppc.c: Comment typo fixes.
[deliverable/binutils-gdb.git] / bfd / elf64-ppc.c
1 /* PowerPC64-specific support for 64-bit ELF.
2 Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3 Written by Linus Nordberg, Swox AB <info@swox.com>,
4 based on elf32-ppc.c by Ian Lance Taylor.
5
6 This file is part of BFD, the Binary File Descriptor library.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21
22 /* This file is based on the 64-bit PowerPC ELF ABI. It is also based
23 on the file elf32-ppc.c. */
24
25 #include "bfd.h"
26 #include "sysdep.h"
27 #include "bfdlink.h"
28 #include "libbfd.h"
29 #include "elf-bfd.h"
30 #include "elf/ppc.h"
31 #include "elf64-ppc.h"
32
33 static void ppc_howto_init
34 PARAMS ((void));
35 static reloc_howto_type *ppc64_elf_reloc_type_lookup
36 PARAMS ((bfd *abfd, bfd_reloc_code_real_type code));
37 static void ppc64_elf_info_to_howto
38 PARAMS ((bfd *abfd, arelent *cache_ptr, Elf64_Internal_Rela *dst));
39 static bfd_reloc_status_type ppc64_elf_ha_reloc
40 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
41 static bfd_reloc_status_type ppc64_elf_brtaken_reloc
42 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
43 static bfd_reloc_status_type ppc64_elf_sectoff_reloc
44 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
45 static bfd_reloc_status_type ppc64_elf_sectoff_ha_reloc
46 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
47 static bfd_reloc_status_type ppc64_elf_toc_reloc
48 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
49 static bfd_reloc_status_type ppc64_elf_toc_ha_reloc
50 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
51 static bfd_reloc_status_type ppc64_elf_toc64_reloc
52 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
53 static bfd_reloc_status_type ppc64_elf_unhandled_reloc
54 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
55 static boolean ppc64_elf_object_p
56 PARAMS ((bfd *));
57 static boolean ppc64_elf_merge_private_bfd_data
58 PARAMS ((bfd *, bfd *));
59
60
61 /* The name of the dynamic interpreter. This is put in the .interp
62 section. */
63 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
64
65 /* The size in bytes of an entry in the procedure linkage table. */
66 #define PLT_ENTRY_SIZE 24
67
68 /* The initial size of the plt reserved for the dynamic linker. */
69 #define PLT_INITIAL_ENTRY_SIZE PLT_ENTRY_SIZE
70
71 /* TOC base pointers offset from start of TOC. */
72 #define TOC_BASE_OFF (0x8000)
73
74 /* .plt call stub instructions. */
75 #define ADDIS_R12_R2 0x3d820000 /* addis %r12,%r2,xxx@ha */
76 #define STD_R2_40R1 0xf8410028 /* std %r2,40(%r1) */
77 #define LD_R11_0R12 0xe96c0000 /* ld %r11,xxx+0@l(%r12) */
78 #define LD_R2_0R12 0xe84c0000 /* ld %r2,xxx+8@l(%r12) */
79 #define MTCTR_R11 0x7d6903a6 /* mtctr %r11 */
80 /* ld %r11,xxx+16@l(%r12) */
81 #define BCTR 0x4e800420 /* bctr */
82
83 /* The normal stub is this size. */
84 #define PLT_CALL_STUB_SIZE (7*4)
85
86 /* But sometimes the .plt entry crosses a 64k boundary, and we need
87 to adjust the high word with this insn. */
88 #define ADDIS_R12_R12_1 0x3d8c0001 /* addis %r12,%r12,1 */
89
90 /* The .glink fixup call stub is the same as the .plt call stub, but
91 the first instruction restores r2, and the std is omitted. */
92 #define LD_R2_40R1 0xe8410028 /* ld %r2,40(%r1) */
93
94 /* Always allow this much space. */
95 #define GLINK_CALL_STUB_SIZE (8*4)
96
97 /* Pad with this. */
98 #define NOP 0x60000000
99
100 /* Some other nops. */
101 #define CROR_151515 0x4def7b82
102 #define CROR_313131 0x4ffffb82
103
104 /* .glink entries for the first 32k functions are two instructions. */
105 #define LI_R0_0 0x38000000 /* li %r0,0 */
106 #define B_DOT 0x48000000 /* b . */
107
108 /* After that, we need two instructions to load the index, followed by
109 a branch. */
110 #define LIS_R0_0 0x3c000000 /* lis %r0,0 */
111 #define ORI_R0_R0_0 0x60000000 /* ori %r0,%r0,0 */
112
113 /* Instructions to save and restore floating point regs. */
114 #define STFD_FR0_0R1 0xd8010000 /* stfd %fr0,0(%r1) */
115 #define LFD_FR0_0R1 0xc8010000 /* lfd %fr0,0(%r1) */
116 #define BLR 0x4e800020 /* blr */
117
118 /* Since .opd is an array of descriptors and each entry will end up
119 with identical R_PPC64_RELATIVE relocs, there is really no need to
120 propagate .opd relocs; The dynamic linker should be taught to
121 relocate .opd without reloc entries. */
122 #ifndef NO_OPD_RELOCS
123 #define NO_OPD_RELOCS 0
124 #endif
125 \f
126 #define ONES(n) (((bfd_vma) 1 << ((n) - 1) << 1) - 1)
127
128 /* Relocation HOWTO's. */
129 static reloc_howto_type *ppc64_elf_howto_table[(int) R_PPC_max];
130
131 static reloc_howto_type ppc64_elf_howto_raw[] = {
132 /* This reloc does nothing. */
133 HOWTO (R_PPC64_NONE, /* type */
134 0, /* rightshift */
135 0, /* size (0 = byte, 1 = short, 2 = long) */
136 8, /* bitsize */
137 false, /* pc_relative */
138 0, /* bitpos */
139 complain_overflow_dont, /* complain_on_overflow */
140 bfd_elf_generic_reloc, /* special_function */
141 "R_PPC64_NONE", /* name */
142 false, /* partial_inplace */
143 0, /* src_mask */
144 0, /* dst_mask */
145 false), /* pcrel_offset */
146
147 /* A standard 32 bit relocation. */
148 HOWTO (R_PPC64_ADDR32, /* type */
149 0, /* rightshift */
150 2, /* size (0 = byte, 1 = short, 2 = long) */
151 32, /* bitsize */
152 false, /* pc_relative */
153 0, /* bitpos */
154 complain_overflow_bitfield, /* complain_on_overflow */
155 bfd_elf_generic_reloc, /* special_function */
156 "R_PPC64_ADDR32", /* name */
157 false, /* partial_inplace */
158 0, /* src_mask */
159 0xffffffff, /* dst_mask */
160 false), /* pcrel_offset */
161
162 /* An absolute 26 bit branch; the lower two bits must be zero.
163 FIXME: we don't check that, we just clear them. */
164 HOWTO (R_PPC64_ADDR24, /* type */
165 0, /* rightshift */
166 2, /* size (0 = byte, 1 = short, 2 = long) */
167 26, /* bitsize */
168 false, /* pc_relative */
169 0, /* bitpos */
170 complain_overflow_bitfield, /* complain_on_overflow */
171 bfd_elf_generic_reloc, /* special_function */
172 "R_PPC64_ADDR24", /* name */
173 false, /* partial_inplace */
174 0, /* src_mask */
175 0x03fffffc, /* dst_mask */
176 false), /* pcrel_offset */
177
178 /* A standard 16 bit relocation. */
179 HOWTO (R_PPC64_ADDR16, /* type */
180 0, /* rightshift */
181 1, /* size (0 = byte, 1 = short, 2 = long) */
182 16, /* bitsize */
183 false, /* pc_relative */
184 0, /* bitpos */
185 complain_overflow_bitfield, /* complain_on_overflow */
186 bfd_elf_generic_reloc, /* special_function */
187 "R_PPC64_ADDR16", /* name */
188 false, /* partial_inplace */
189 0, /* src_mask */
190 0xffff, /* dst_mask */
191 false), /* pcrel_offset */
192
193 /* A 16 bit relocation without overflow. */
194 HOWTO (R_PPC64_ADDR16_LO, /* type */
195 0, /* rightshift */
196 1, /* size (0 = byte, 1 = short, 2 = long) */
197 16, /* bitsize */
198 false, /* pc_relative */
199 0, /* bitpos */
200 complain_overflow_dont,/* complain_on_overflow */
201 bfd_elf_generic_reloc, /* special_function */
202 "R_PPC64_ADDR16_LO", /* name */
203 false, /* partial_inplace */
204 0, /* src_mask */
205 0xffff, /* dst_mask */
206 false), /* pcrel_offset */
207
208 /* Bits 16-31 of an address. */
209 HOWTO (R_PPC64_ADDR16_HI, /* type */
210 16, /* rightshift */
211 1, /* size (0 = byte, 1 = short, 2 = long) */
212 16, /* bitsize */
213 false, /* pc_relative */
214 0, /* bitpos */
215 complain_overflow_dont, /* complain_on_overflow */
216 bfd_elf_generic_reloc, /* special_function */
217 "R_PPC64_ADDR16_HI", /* name */
218 false, /* partial_inplace */
219 0, /* src_mask */
220 0xffff, /* dst_mask */
221 false), /* pcrel_offset */
222
223 /* Bits 16-31 of an address, plus 1 if the contents of the low 16
224 bits, treated as a signed number, is negative. */
225 HOWTO (R_PPC64_ADDR16_HA, /* type */
226 16, /* rightshift */
227 1, /* size (0 = byte, 1 = short, 2 = long) */
228 16, /* bitsize */
229 false, /* pc_relative */
230 0, /* bitpos */
231 complain_overflow_dont, /* complain_on_overflow */
232 ppc64_elf_ha_reloc, /* special_function */
233 "R_PPC64_ADDR16_HA", /* name */
234 false, /* partial_inplace */
235 0, /* src_mask */
236 0xffff, /* dst_mask */
237 false), /* pcrel_offset */
238
239 /* An absolute 16 bit branch; the lower two bits must be zero.
240 FIXME: we don't check that, we just clear them. */
241 HOWTO (R_PPC64_ADDR14, /* type */
242 0, /* rightshift */
243 2, /* size (0 = byte, 1 = short, 2 = long) */
244 16, /* bitsize */
245 false, /* pc_relative */
246 0, /* bitpos */
247 complain_overflow_bitfield, /* complain_on_overflow */
248 bfd_elf_generic_reloc, /* special_function */
249 "R_PPC64_ADDR14", /* name */
250 false, /* partial_inplace */
251 0, /* src_mask */
252 0x0000fffc, /* dst_mask */
253 false), /* pcrel_offset */
254
255 /* An absolute 16 bit branch, for which bit 10 should be set to
256 indicate that the branch is expected to be taken. The lower two
257 bits must be zero. */
258 HOWTO (R_PPC64_ADDR14_BRTAKEN, /* type */
259 0, /* rightshift */
260 2, /* size (0 = byte, 1 = short, 2 = long) */
261 16, /* bitsize */
262 false, /* pc_relative */
263 0, /* bitpos */
264 complain_overflow_bitfield, /* complain_on_overflow */
265 ppc64_elf_brtaken_reloc, /* special_function */
266 "R_PPC64_ADDR14_BRTAKEN",/* name */
267 false, /* partial_inplace */
268 0, /* src_mask */
269 0x0000fffc, /* dst_mask */
270 false), /* pcrel_offset */
271
272 /* An absolute 16 bit branch, for which bit 10 should be set to
273 indicate that the branch is not expected to be taken. The lower
274 two bits must be zero. */
275 HOWTO (R_PPC64_ADDR14_BRNTAKEN, /* type */
276 0, /* rightshift */
277 2, /* size (0 = byte, 1 = short, 2 = long) */
278 16, /* bitsize */
279 false, /* pc_relative */
280 0, /* bitpos */
281 complain_overflow_bitfield, /* complain_on_overflow */
282 ppc64_elf_brtaken_reloc, /* special_function */
283 "R_PPC64_ADDR14_BRNTAKEN",/* name */
284 false, /* partial_inplace */
285 0, /* src_mask */
286 0x0000fffc, /* dst_mask */
287 false), /* pcrel_offset */
288
289 /* A relative 26 bit branch; the lower two bits must be zero. */
290 HOWTO (R_PPC64_REL24, /* type */
291 0, /* rightshift */
292 2, /* size (0 = byte, 1 = short, 2 = long) */
293 26, /* bitsize */
294 true, /* pc_relative */
295 0, /* bitpos */
296 complain_overflow_signed, /* complain_on_overflow */
297 bfd_elf_generic_reloc, /* special_function */
298 "R_PPC64_REL24", /* name */
299 false, /* partial_inplace */
300 0, /* src_mask */
301 0x03fffffc, /* dst_mask */
302 true), /* pcrel_offset */
303
304 /* A relative 16 bit branch; the lower two bits must be zero. */
305 HOWTO (R_PPC64_REL14, /* type */
306 0, /* rightshift */
307 2, /* size (0 = byte, 1 = short, 2 = long) */
308 16, /* bitsize */
309 true, /* pc_relative */
310 0, /* bitpos */
311 complain_overflow_signed, /* complain_on_overflow */
312 bfd_elf_generic_reloc, /* special_function */
313 "R_PPC64_REL14", /* name */
314 false, /* partial_inplace */
315 0, /* src_mask */
316 0x0000fffc, /* dst_mask */
317 true), /* pcrel_offset */
318
319 /* A relative 16 bit branch. Bit 10 should be set to indicate that
320 the branch is expected to be taken. The lower two bits must be
321 zero. */
322 HOWTO (R_PPC64_REL14_BRTAKEN, /* type */
323 0, /* rightshift */
324 2, /* size (0 = byte, 1 = short, 2 = long) */
325 16, /* bitsize */
326 true, /* pc_relative */
327 0, /* bitpos */
328 complain_overflow_signed, /* complain_on_overflow */
329 ppc64_elf_brtaken_reloc, /* special_function */
330 "R_PPC64_REL14_BRTAKEN", /* name */
331 false, /* partial_inplace */
332 0, /* src_mask */
333 0x0000fffc, /* dst_mask */
334 true), /* pcrel_offset */
335
336 /* A relative 16 bit branch. Bit 10 should be set to indicate that
337 the branch is not expected to be taken. The lower two bits must
338 be zero. */
339 HOWTO (R_PPC64_REL14_BRNTAKEN, /* type */
340 0, /* rightshift */
341 2, /* size (0 = byte, 1 = short, 2 = long) */
342 16, /* bitsize */
343 true, /* pc_relative */
344 0, /* bitpos */
345 complain_overflow_signed, /* complain_on_overflow */
346 ppc64_elf_brtaken_reloc, /* special_function */
347 "R_PPC64_REL14_BRNTAKEN",/* name */
348 false, /* partial_inplace */
349 0, /* src_mask */
350 0x0000fffc, /* dst_mask */
351 true), /* pcrel_offset */
352
353 /* Like R_PPC64_ADDR16, but referring to the GOT table entry for the
354 symbol. */
355 HOWTO (R_PPC64_GOT16, /* type */
356 0, /* rightshift */
357 1, /* size (0 = byte, 1 = short, 2 = long) */
358 16, /* bitsize */
359 false, /* pc_relative */
360 0, /* bitpos */
361 complain_overflow_signed, /* complain_on_overflow */
362 ppc64_elf_unhandled_reloc, /* special_function */
363 "R_PPC64_GOT16", /* name */
364 false, /* partial_inplace */
365 0, /* src_mask */
366 0xffff, /* dst_mask */
367 false), /* pcrel_offset */
368
369 /* Like R_PPC64_ADDR16_LO, but referring to the GOT table entry for
370 the symbol. */
371 HOWTO (R_PPC64_GOT16_LO, /* type */
372 0, /* rightshift */
373 1, /* size (0 = byte, 1 = short, 2 = long) */
374 16, /* bitsize */
375 false, /* pc_relative */
376 0, /* bitpos */
377 complain_overflow_dont, /* complain_on_overflow */
378 ppc64_elf_unhandled_reloc, /* special_function */
379 "R_PPC64_GOT16_LO", /* name */
380 false, /* partial_inplace */
381 0, /* src_mask */
382 0xffff, /* dst_mask */
383 false), /* pcrel_offset */
384
385 /* Like R_PPC64_ADDR16_HI, but referring to the GOT table entry for
386 the symbol. */
387 HOWTO (R_PPC64_GOT16_HI, /* type */
388 16, /* rightshift */
389 1, /* size (0 = byte, 1 = short, 2 = long) */
390 16, /* bitsize */
391 false, /* pc_relative */
392 0, /* bitpos */
393 complain_overflow_dont,/* complain_on_overflow */
394 ppc64_elf_unhandled_reloc, /* special_function */
395 "R_PPC64_GOT16_HI", /* name */
396 false, /* partial_inplace */
397 0, /* src_mask */
398 0xffff, /* dst_mask */
399 false), /* pcrel_offset */
400
401 /* Like R_PPC64_ADDR16_HA, but referring to the GOT table entry for
402 the symbol. */
403 HOWTO (R_PPC64_GOT16_HA, /* type */
404 16, /* rightshift */
405 1, /* size (0 = byte, 1 = short, 2 = long) */
406 16, /* bitsize */
407 false, /* pc_relative */
408 0, /* bitpos */
409 complain_overflow_dont,/* complain_on_overflow */
410 ppc64_elf_unhandled_reloc, /* special_function */
411 "R_PPC64_GOT16_HA", /* name */
412 false, /* partial_inplace */
413 0, /* src_mask */
414 0xffff, /* dst_mask */
415 false), /* pcrel_offset */
416
417 /* This is used only by the dynamic linker. The symbol should exist
418 both in the object being run and in some shared library. The
419 dynamic linker copies the data addressed by the symbol from the
420 shared library into the object, because the object being
421 run has to have the data at some particular address. */
422 HOWTO (R_PPC64_COPY, /* type */
423 0, /* rightshift */
424 0, /* this one is variable size */
425 0, /* bitsize */
426 false, /* pc_relative */
427 0, /* bitpos */
428 complain_overflow_dont, /* complain_on_overflow */
429 ppc64_elf_unhandled_reloc, /* special_function */
430 "R_PPC64_COPY", /* name */
431 false, /* partial_inplace */
432 0, /* src_mask */
433 0, /* dst_mask */
434 false), /* pcrel_offset */
435
436 /* Like R_PPC64_ADDR64, but used when setting global offset table
437 entries. */
438 HOWTO (R_PPC64_GLOB_DAT, /* type */
439 0, /* rightshift */
440 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
441 64, /* bitsize */
442 false, /* pc_relative */
443 0, /* bitpos */
444 complain_overflow_dont, /* complain_on_overflow */
445 ppc64_elf_unhandled_reloc, /* special_function */
446 "R_PPC64_GLOB_DAT", /* name */
447 false, /* partial_inplace */
448 0, /* src_mask */
449 ONES (64), /* dst_mask */
450 false), /* pcrel_offset */
451
452 /* Created by the link editor. Marks a procedure linkage table
453 entry for a symbol. */
454 HOWTO (R_PPC64_JMP_SLOT, /* type */
455 0, /* rightshift */
456 0, /* size (0 = byte, 1 = short, 2 = long) */
457 0, /* bitsize */
458 false, /* pc_relative */
459 0, /* bitpos */
460 complain_overflow_dont, /* complain_on_overflow */
461 ppc64_elf_unhandled_reloc, /* special_function */
462 "R_PPC64_JMP_SLOT", /* name */
463 false, /* partial_inplace */
464 0, /* src_mask */
465 0, /* dst_mask */
466 false), /* pcrel_offset */
467
468 /* Used only by the dynamic linker. When the object is run, this
469 doubleword64 is set to the load address of the object, plus the
470 addend. */
471 HOWTO (R_PPC64_RELATIVE, /* type */
472 0, /* rightshift */
473 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
474 64, /* bitsize */
475 false, /* pc_relative */
476 0, /* bitpos */
477 complain_overflow_dont, /* complain_on_overflow */
478 bfd_elf_generic_reloc, /* special_function */
479 "R_PPC64_RELATIVE", /* name */
480 false, /* partial_inplace */
481 0, /* src_mask */
482 ONES (64), /* dst_mask */
483 false), /* pcrel_offset */
484
485 /* Like R_PPC64_ADDR32, but may be unaligned. */
486 HOWTO (R_PPC64_UADDR32, /* type */
487 0, /* rightshift */
488 2, /* size (0 = byte, 1 = short, 2 = long) */
489 32, /* bitsize */
490 false, /* pc_relative */
491 0, /* bitpos */
492 complain_overflow_bitfield, /* complain_on_overflow */
493 bfd_elf_generic_reloc, /* special_function */
494 "R_PPC64_UADDR32", /* name */
495 false, /* partial_inplace */
496 0, /* src_mask */
497 0xffffffff, /* dst_mask */
498 false), /* pcrel_offset */
499
500 /* Like R_PPC64_ADDR16, but may be unaligned. */
501 HOWTO (R_PPC64_UADDR16, /* type */
502 0, /* rightshift */
503 1, /* size (0 = byte, 1 = short, 2 = long) */
504 16, /* bitsize */
505 false, /* pc_relative */
506 0, /* bitpos */
507 complain_overflow_bitfield, /* complain_on_overflow */
508 bfd_elf_generic_reloc, /* special_function */
509 "R_PPC64_UADDR16", /* name */
510 false, /* partial_inplace */
511 0, /* src_mask */
512 0xffff, /* dst_mask */
513 false), /* pcrel_offset */
514
515 /* 32-bit PC relative. */
516 HOWTO (R_PPC64_REL32, /* type */
517 0, /* rightshift */
518 2, /* size (0 = byte, 1 = short, 2 = long) */
519 32, /* bitsize */
520 true, /* pc_relative */
521 0, /* bitpos */
522 /* FIXME: Verify. Was complain_overflow_bitfield. */
523 complain_overflow_signed, /* complain_on_overflow */
524 bfd_elf_generic_reloc, /* special_function */
525 "R_PPC64_REL32", /* name */
526 false, /* partial_inplace */
527 0, /* src_mask */
528 0xffffffff, /* dst_mask */
529 true), /* pcrel_offset */
530
531 /* 32-bit relocation to the symbol's procedure linkage table. */
532 HOWTO (R_PPC64_PLT32, /* type */
533 0, /* rightshift */
534 2, /* size (0 = byte, 1 = short, 2 = long) */
535 32, /* bitsize */
536 false, /* pc_relative */
537 0, /* bitpos */
538 complain_overflow_bitfield, /* complain_on_overflow */
539 ppc64_elf_unhandled_reloc, /* special_function */
540 "R_PPC64_PLT32", /* name */
541 false, /* partial_inplace */
542 0, /* src_mask */
543 0xffffffff, /* dst_mask */
544 false), /* pcrel_offset */
545
546 /* 32-bit PC relative relocation to the symbol's procedure linkage table.
547 FIXME: R_PPC64_PLTREL32 not supported. */
548 HOWTO (R_PPC64_PLTREL32, /* type */
549 0, /* rightshift */
550 2, /* size (0 = byte, 1 = short, 2 = long) */
551 32, /* bitsize */
552 true, /* pc_relative */
553 0, /* bitpos */
554 complain_overflow_signed, /* complain_on_overflow */
555 bfd_elf_generic_reloc, /* special_function */
556 "R_PPC64_PLTREL32", /* name */
557 false, /* partial_inplace */
558 0, /* src_mask */
559 0xffffffff, /* dst_mask */
560 true), /* pcrel_offset */
561
562 /* Like R_PPC64_ADDR16_LO, but referring to the PLT table entry for
563 the symbol. */
564 HOWTO (R_PPC64_PLT16_LO, /* type */
565 0, /* rightshift */
566 1, /* size (0 = byte, 1 = short, 2 = long) */
567 16, /* bitsize */
568 false, /* pc_relative */
569 0, /* bitpos */
570 complain_overflow_dont, /* complain_on_overflow */
571 ppc64_elf_unhandled_reloc, /* special_function */
572 "R_PPC64_PLT16_LO", /* name */
573 false, /* partial_inplace */
574 0, /* src_mask */
575 0xffff, /* dst_mask */
576 false), /* pcrel_offset */
577
578 /* Like R_PPC64_ADDR16_HI, but referring to the PLT table entry for
579 the symbol. */
580 HOWTO (R_PPC64_PLT16_HI, /* type */
581 16, /* rightshift */
582 1, /* size (0 = byte, 1 = short, 2 = long) */
583 16, /* bitsize */
584 false, /* pc_relative */
585 0, /* bitpos */
586 complain_overflow_dont, /* complain_on_overflow */
587 ppc64_elf_unhandled_reloc, /* special_function */
588 "R_PPC64_PLT16_HI", /* name */
589 false, /* partial_inplace */
590 0, /* src_mask */
591 0xffff, /* dst_mask */
592 false), /* pcrel_offset */
593
594 /* Like R_PPC64_ADDR16_HA, but referring to the PLT table entry for
595 the symbol. */
596 HOWTO (R_PPC64_PLT16_HA, /* type */
597 16, /* rightshift */
598 1, /* size (0 = byte, 1 = short, 2 = long) */
599 16, /* bitsize */
600 false, /* pc_relative */
601 0, /* bitpos */
602 complain_overflow_dont, /* complain_on_overflow */
603 ppc64_elf_unhandled_reloc, /* special_function */
604 "R_PPC64_PLT16_HA", /* name */
605 false, /* partial_inplace */
606 0, /* src_mask */
607 0xffff, /* dst_mask */
608 false), /* pcrel_offset */
609
610 /* 16-bit section relative relocation. */
611 HOWTO (R_PPC64_SECTOFF, /* type */
612 0, /* rightshift */
613 1, /* size (0 = byte, 1 = short, 2 = long) */
614 16, /* bitsize */
615 false, /* pc_relative */
616 0, /* bitpos */
617 complain_overflow_bitfield, /* complain_on_overflow */
618 ppc64_elf_sectoff_reloc, /* special_function */
619 "R_PPC64_SECTOFF", /* name */
620 false, /* partial_inplace */
621 0, /* src_mask */
622 0xffff, /* dst_mask */
623 false), /* pcrel_offset */
624
625 /* Like R_PPC64_SECTOFF, but no overflow warning. */
626 HOWTO (R_PPC64_SECTOFF_LO, /* type */
627 0, /* rightshift */
628 1, /* size (0 = byte, 1 = short, 2 = long) */
629 16, /* bitsize */
630 false, /* pc_relative */
631 0, /* bitpos */
632 complain_overflow_dont, /* complain_on_overflow */
633 ppc64_elf_sectoff_reloc, /* special_function */
634 "R_PPC64_SECTOFF_LO", /* name */
635 false, /* partial_inplace */
636 0, /* src_mask */
637 0xffff, /* dst_mask */
638 false), /* pcrel_offset */
639
640 /* 16-bit upper half section relative relocation. */
641 HOWTO (R_PPC64_SECTOFF_HI, /* type */
642 16, /* rightshift */
643 1, /* size (0 = byte, 1 = short, 2 = long) */
644 16, /* bitsize */
645 false, /* pc_relative */
646 0, /* bitpos */
647 complain_overflow_dont, /* complain_on_overflow */
648 ppc64_elf_sectoff_reloc, /* special_function */
649 "R_PPC64_SECTOFF_HI", /* name */
650 false, /* partial_inplace */
651 0, /* src_mask */
652 0xffff, /* dst_mask */
653 false), /* pcrel_offset */
654
655 /* 16-bit upper half adjusted section relative relocation. */
656 HOWTO (R_PPC64_SECTOFF_HA, /* type */
657 16, /* rightshift */
658 1, /* size (0 = byte, 1 = short, 2 = long) */
659 16, /* bitsize */
660 false, /* pc_relative */
661 0, /* bitpos */
662 complain_overflow_dont, /* complain_on_overflow */
663 ppc64_elf_sectoff_ha_reloc, /* special_function */
664 "R_PPC64_SECTOFF_HA", /* name */
665 false, /* partial_inplace */
666 0, /* src_mask */
667 0xffff, /* dst_mask */
668 false), /* pcrel_offset */
669
670 /* Like R_PPC64_REL24 without touching the two least significant
671 bits. Should have been named R_PPC64_REL30! */
672 HOWTO (R_PPC64_ADDR30, /* type */
673 2, /* rightshift */
674 2, /* size (0 = byte, 1 = short, 2 = long) */
675 30, /* bitsize */
676 true, /* pc_relative */
677 0, /* bitpos */
678 complain_overflow_dont, /* complain_on_overflow */
679 bfd_elf_generic_reloc, /* special_function */
680 "R_PPC64_ADDR30", /* name */
681 false, /* partial_inplace */
682 0, /* src_mask */
683 0xfffffffc, /* dst_mask */
684 true), /* pcrel_offset */
685
686 /* Relocs in the 64-bit PowerPC ELF ABI, not in the 32-bit ABI. */
687
688 /* A standard 64-bit relocation. */
689 HOWTO (R_PPC64_ADDR64, /* type */
690 0, /* rightshift */
691 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
692 64, /* bitsize */
693 false, /* pc_relative */
694 0, /* bitpos */
695 complain_overflow_dont, /* complain_on_overflow */
696 bfd_elf_generic_reloc, /* special_function */
697 "R_PPC64_ADDR64", /* name */
698 false, /* partial_inplace */
699 0, /* src_mask */
700 ONES (64), /* dst_mask */
701 false), /* pcrel_offset */
702
703 /* The bits 32-47 of an address. */
704 HOWTO (R_PPC64_ADDR16_HIGHER, /* type */
705 32, /* rightshift */
706 1, /* size (0 = byte, 1 = short, 2 = long) */
707 16, /* bitsize */
708 false, /* pc_relative */
709 0, /* bitpos */
710 complain_overflow_dont, /* complain_on_overflow */
711 bfd_elf_generic_reloc, /* special_function */
712 "R_PPC64_ADDR16_HIGHER", /* name */
713 false, /* partial_inplace */
714 0, /* src_mask */
715 0xffff, /* dst_mask */
716 false), /* pcrel_offset */
717
718 /* The bits 32-47 of an address, plus 1 if the contents of the low
719 16 bits, treated as a signed number, is negative. */
720 HOWTO (R_PPC64_ADDR16_HIGHERA, /* type */
721 32, /* rightshift */
722 1, /* size (0 = byte, 1 = short, 2 = long) */
723 16, /* bitsize */
724 false, /* pc_relative */
725 0, /* bitpos */
726 complain_overflow_dont, /* complain_on_overflow */
727 ppc64_elf_ha_reloc, /* special_function */
728 "R_PPC64_ADDR16_HIGHERA", /* name */
729 false, /* partial_inplace */
730 0, /* src_mask */
731 0xffff, /* dst_mask */
732 false), /* pcrel_offset */
733
734 /* The bits 48-63 of an address. */
735 HOWTO (R_PPC64_ADDR16_HIGHEST,/* type */
736 48, /* rightshift */
737 1, /* size (0 = byte, 1 = short, 2 = long) */
738 16, /* bitsize */
739 false, /* pc_relative */
740 0, /* bitpos */
741 complain_overflow_dont, /* complain_on_overflow */
742 bfd_elf_generic_reloc, /* special_function */
743 "R_PPC64_ADDR16_HIGHEST", /* name */
744 false, /* partial_inplace */
745 0, /* src_mask */
746 0xffff, /* dst_mask */
747 false), /* pcrel_offset */
748
749 /* The bits 48-63 of an address, plus 1 if the contents of the low
750 16 bits, treated as a signed number, is negative. */
751 HOWTO (R_PPC64_ADDR16_HIGHESTA,/* type */
752 48, /* rightshift */
753 1, /* size (0 = byte, 1 = short, 2 = long) */
754 16, /* bitsize */
755 false, /* pc_relative */
756 0, /* bitpos */
757 complain_overflow_dont, /* complain_on_overflow */
758 ppc64_elf_ha_reloc, /* special_function */
759 "R_PPC64_ADDR16_HIGHESTA", /* name */
760 false, /* partial_inplace */
761 0, /* src_mask */
762 0xffff, /* dst_mask */
763 false), /* pcrel_offset */
764
765 /* Like ADDR64, but may be unaligned. */
766 HOWTO (R_PPC64_UADDR64, /* type */
767 0, /* rightshift */
768 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
769 64, /* bitsize */
770 false, /* pc_relative */
771 0, /* bitpos */
772 complain_overflow_dont, /* complain_on_overflow */
773 bfd_elf_generic_reloc, /* special_function */
774 "R_PPC64_UADDR64", /* name */
775 false, /* partial_inplace */
776 0, /* src_mask */
777 ONES (64), /* dst_mask */
778 false), /* pcrel_offset */
779
780 /* 64-bit relative relocation. */
781 HOWTO (R_PPC64_REL64, /* type */
782 0, /* rightshift */
783 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
784 64, /* bitsize */
785 true, /* pc_relative */
786 0, /* bitpos */
787 complain_overflow_dont, /* complain_on_overflow */
788 bfd_elf_generic_reloc, /* special_function */
789 "R_PPC64_REL64", /* name */
790 false, /* partial_inplace */
791 0, /* src_mask */
792 ONES (64), /* dst_mask */
793 true), /* pcrel_offset */
794
795 /* 64-bit relocation to the symbol's procedure linkage table. */
796 HOWTO (R_PPC64_PLT64, /* type */
797 0, /* rightshift */
798 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
799 64, /* bitsize */
800 false, /* pc_relative */
801 0, /* bitpos */
802 complain_overflow_dont, /* complain_on_overflow */
803 ppc64_elf_unhandled_reloc, /* special_function */
804 "R_PPC64_PLT64", /* name */
805 false, /* partial_inplace */
806 0, /* src_mask */
807 ONES (64), /* dst_mask */
808 false), /* pcrel_offset */
809
810 /* 64-bit PC relative relocation to the symbol's procedure linkage
811 table. */
812 /* FIXME: R_PPC64_PLTREL64 not supported. */
813 HOWTO (R_PPC64_PLTREL64, /* type */
814 0, /* rightshift */
815 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
816 64, /* bitsize */
817 true, /* pc_relative */
818 0, /* bitpos */
819 complain_overflow_dont, /* complain_on_overflow */
820 ppc64_elf_unhandled_reloc, /* special_function */
821 "R_PPC64_PLTREL64", /* name */
822 false, /* partial_inplace */
823 0, /* src_mask */
824 ONES (64), /* dst_mask */
825 true), /* pcrel_offset */
826
827 /* 16 bit TOC-relative relocation. */
828
829 /* R_PPC64_TOC16 47 half16* S + A - .TOC. */
830 HOWTO (R_PPC64_TOC16, /* type */
831 0, /* rightshift */
832 1, /* size (0 = byte, 1 = short, 2 = long) */
833 16, /* bitsize */
834 false, /* pc_relative */
835 0, /* bitpos */
836 complain_overflow_signed, /* complain_on_overflow */
837 ppc64_elf_toc_reloc, /* special_function */
838 "R_PPC64_TOC16", /* name */
839 false, /* partial_inplace */
840 0, /* src_mask */
841 0xffff, /* dst_mask */
842 false), /* pcrel_offset */
843
844 /* 16 bit TOC-relative relocation without overflow. */
845
846 /* R_PPC64_TOC16_LO 48 half16 #lo (S + A - .TOC.) */
847 HOWTO (R_PPC64_TOC16_LO, /* type */
848 0, /* rightshift */
849 1, /* size (0 = byte, 1 = short, 2 = long) */
850 16, /* bitsize */
851 false, /* pc_relative */
852 0, /* bitpos */
853 complain_overflow_dont, /* complain_on_overflow */
854 ppc64_elf_toc_reloc, /* special_function */
855 "R_PPC64_TOC16_LO", /* name */
856 false, /* partial_inplace */
857 0, /* src_mask */
858 0xffff, /* dst_mask */
859 false), /* pcrel_offset */
860
861 /* 16 bit TOC-relative relocation, high 16 bits. */
862
863 /* R_PPC64_TOC16_HI 49 half16 #hi (S + A - .TOC.) */
864 HOWTO (R_PPC64_TOC16_HI, /* type */
865 16, /* rightshift */
866 1, /* size (0 = byte, 1 = short, 2 = long) */
867 16, /* bitsize */
868 false, /* pc_relative */
869 0, /* bitpos */
870 complain_overflow_dont, /* complain_on_overflow */
871 ppc64_elf_toc_reloc, /* special_function */
872 "R_PPC64_TOC16_HI", /* name */
873 false, /* partial_inplace */
874 0, /* src_mask */
875 0xffff, /* dst_mask */
876 false), /* pcrel_offset */
877
878 /* 16 bit TOC-relative relocation, high 16 bits, plus 1 if the
879 contents of the low 16 bits, treated as a signed number, is
880 negative. */
881
882 /* R_PPC64_TOC16_HA 50 half16 #ha (S + A - .TOC.) */
883 HOWTO (R_PPC64_TOC16_HA, /* type */
884 16, /* rightshift */
885 1, /* size (0 = byte, 1 = short, 2 = long) */
886 16, /* bitsize */
887 false, /* pc_relative */
888 0, /* bitpos */
889 complain_overflow_dont, /* complain_on_overflow */
890 ppc64_elf_toc_ha_reloc, /* special_function */
891 "R_PPC64_TOC16_HA", /* name */
892 false, /* partial_inplace */
893 0, /* src_mask */
894 0xffff, /* dst_mask */
895 false), /* pcrel_offset */
896
897 /* 64-bit relocation; insert value of TOC base (.TOC.). */
898
899 /* R_PPC64_TOC 51 doubleword64 .TOC. */
900 HOWTO (R_PPC64_TOC, /* type */
901 0, /* rightshift */
902 4, /* size (0=byte, 1=short, 2=long, 4=64 bits) */
903 64, /* bitsize */
904 false, /* pc_relative */
905 0, /* bitpos */
906 complain_overflow_bitfield, /* complain_on_overflow */
907 ppc64_elf_toc64_reloc, /* special_function */
908 "R_PPC64_TOC", /* name */
909 false, /* partial_inplace */
910 0, /* src_mask */
911 ONES (64), /* dst_mask */
912 false), /* pcrel_offset */
913
914 /* Like R_PPC64_GOT16, but also informs the link editor that the
915 value to relocate may (!) refer to a PLT entry which the link
916 editor (a) may replace with the symbol value. If the link editor
917 is unable to fully resolve the symbol, it may (b) create a PLT
918 entry and store the address to the new PLT entry in the GOT.
919 This permits lazy resolution of function symbols at run time.
920 The link editor may also skip all of this and just (c) emit a
921 R_PPC64_GLOB_DAT to tie the symbol to the GOT entry. */
922 /* FIXME: R_PPC64_PLTGOT16 not implemented. */
923 HOWTO (R_PPC64_PLTGOT16, /* type */
924 0, /* rightshift */
925 1, /* size (0 = byte, 1 = short, 2 = long) */
926 16, /* bitsize */
927 false, /* pc_relative */
928 0, /* bitpos */
929 complain_overflow_signed, /* complain_on_overflow */
930 ppc64_elf_unhandled_reloc, /* special_function */
931 "R_PPC64_PLTGOT16", /* name */
932 false, /* partial_inplace */
933 0, /* src_mask */
934 0xffff, /* dst_mask */
935 false), /* pcrel_offset */
936
937 /* Like R_PPC64_PLTGOT16, but without overflow. */
938 /* FIXME: R_PPC64_PLTGOT16_LO not implemented. */
939 HOWTO (R_PPC64_PLTGOT16_LO, /* type */
940 0, /* rightshift */
941 1, /* size (0 = byte, 1 = short, 2 = long) */
942 16, /* bitsize */
943 false, /* pc_relative */
944 0, /* bitpos */
945 complain_overflow_dont, /* complain_on_overflow */
946 ppc64_elf_unhandled_reloc, /* special_function */
947 "R_PPC64_PLTGOT16_LO", /* name */
948 false, /* partial_inplace */
949 0, /* src_mask */
950 0xffff, /* dst_mask */
951 false), /* pcrel_offset */
952
953 /* Like R_PPC64_PLT_GOT16, but using bits 16-31 of the address. */
954 /* FIXME: R_PPC64_PLTGOT16_HI not implemented. */
955 HOWTO (R_PPC64_PLTGOT16_HI, /* type */
956 16, /* rightshift */
957 1, /* size (0 = byte, 1 = short, 2 = long) */
958 16, /* bitsize */
959 false, /* pc_relative */
960 0, /* bitpos */
961 complain_overflow_dont, /* complain_on_overflow */
962 ppc64_elf_unhandled_reloc, /* special_function */
963 "R_PPC64_PLTGOT16_HI", /* name */
964 false, /* partial_inplace */
965 0, /* src_mask */
966 0xffff, /* dst_mask */
967 false), /* pcrel_offset */
968
969 /* Like R_PPC64_PLT_GOT16, but using bits 16-31 of the address, plus
970 1 if the contents of the low 16 bits, treated as a signed number,
971 is negative. */
972 /* FIXME: R_PPC64_PLTGOT16_HA not implemented. */
973 HOWTO (R_PPC64_PLTGOT16_HA, /* type */
974 16, /* rightshift */
975 1, /* size (0 = byte, 1 = short, 2 = long) */
976 16, /* bitsize */
977 false, /* pc_relative */
978 0, /* bitpos */
979 complain_overflow_dont,/* complain_on_overflow */
980 ppc64_elf_unhandled_reloc, /* special_function */
981 "R_PPC64_PLTGOT16_HA", /* name */
982 false, /* partial_inplace */
983 0, /* src_mask */
984 0xffff, /* dst_mask */
985 false), /* pcrel_offset */
986
987 /* Like R_PPC64_ADDR16, but for instructions with a DS field. */
988 HOWTO (R_PPC64_ADDR16_DS, /* type */
989 0, /* rightshift */
990 1, /* size (0 = byte, 1 = short, 2 = long) */
991 16, /* bitsize */
992 false, /* pc_relative */
993 0, /* bitpos */
994 complain_overflow_bitfield, /* complain_on_overflow */
995 bfd_elf_generic_reloc, /* special_function */
996 "R_PPC64_ADDR16_DS", /* name */
997 false, /* partial_inplace */
998 0, /* src_mask */
999 0xfffc, /* dst_mask */
1000 false), /* pcrel_offset */
1001
1002 /* Like R_PPC64_ADDR16_LO, but for instructions with a DS field. */
1003 HOWTO (R_PPC64_ADDR16_LO_DS, /* type */
1004 0, /* rightshift */
1005 1, /* size (0 = byte, 1 = short, 2 = long) */
1006 16, /* bitsize */
1007 false, /* pc_relative */
1008 0, /* bitpos */
1009 complain_overflow_dont,/* complain_on_overflow */
1010 bfd_elf_generic_reloc, /* special_function */
1011 "R_PPC64_ADDR16_LO_DS",/* name */
1012 false, /* partial_inplace */
1013 0, /* src_mask */
1014 0xfffc, /* dst_mask */
1015 false), /* pcrel_offset */
1016
1017 /* Like R_PPC64_GOT16, but for instructions with a DS field. */
1018 HOWTO (R_PPC64_GOT16_DS, /* type */
1019 0, /* rightshift */
1020 1, /* size (0 = byte, 1 = short, 2 = long) */
1021 16, /* bitsize */
1022 false, /* pc_relative */
1023 0, /* bitpos */
1024 complain_overflow_signed, /* complain_on_overflow */
1025 ppc64_elf_unhandled_reloc, /* special_function */
1026 "R_PPC64_GOT16_DS", /* name */
1027 false, /* partial_inplace */
1028 0, /* src_mask */
1029 0xfffc, /* dst_mask */
1030 false), /* pcrel_offset */
1031
1032 /* Like R_PPC64_GOT16_LO, but for instructions with a DS field. */
1033 HOWTO (R_PPC64_GOT16_LO_DS, /* type */
1034 0, /* rightshift */
1035 1, /* size (0 = byte, 1 = short, 2 = long) */
1036 16, /* bitsize */
1037 false, /* pc_relative */
1038 0, /* bitpos */
1039 complain_overflow_dont, /* complain_on_overflow */
1040 ppc64_elf_unhandled_reloc, /* special_function */
1041 "R_PPC64_GOT16_LO_DS", /* name */
1042 false, /* partial_inplace */
1043 0, /* src_mask */
1044 0xfffc, /* dst_mask */
1045 false), /* pcrel_offset */
1046
1047 /* Like R_PPC64_PLT16_LO, but for instructions with a DS field. */
1048 HOWTO (R_PPC64_PLT16_LO_DS, /* type */
1049 0, /* rightshift */
1050 1, /* size (0 = byte, 1 = short, 2 = long) */
1051 16, /* bitsize */
1052 false, /* pc_relative */
1053 0, /* bitpos */
1054 complain_overflow_dont, /* complain_on_overflow */
1055 ppc64_elf_unhandled_reloc, /* special_function */
1056 "R_PPC64_PLT16_LO_DS", /* name */
1057 false, /* partial_inplace */
1058 0, /* src_mask */
1059 0xfffc, /* dst_mask */
1060 false), /* pcrel_offset */
1061
1062 /* Like R_PPC64_SECTOFF, but for instructions with a DS field. */
1063 HOWTO (R_PPC64_SECTOFF_DS, /* type */
1064 0, /* rightshift */
1065 1, /* size (0 = byte, 1 = short, 2 = long) */
1066 16, /* bitsize */
1067 false, /* pc_relative */
1068 0, /* bitpos */
1069 complain_overflow_bitfield, /* complain_on_overflow */
1070 ppc64_elf_sectoff_reloc, /* special_function */
1071 "R_PPC64_SECTOFF_DS", /* name */
1072 false, /* partial_inplace */
1073 0, /* src_mask */
1074 0xfffc, /* dst_mask */
1075 false), /* pcrel_offset */
1076
1077 /* Like R_PPC64_SECTOFF_LO, but for instructions with a DS field. */
1078 HOWTO (R_PPC64_SECTOFF_LO_DS, /* 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_sectoff_reloc, /* special_function */
1086 "R_PPC64_SECTOFF_LO_DS",/* name */
1087 false, /* partial_inplace */
1088 0, /* src_mask */
1089 0xfffc, /* dst_mask */
1090 false), /* pcrel_offset */
1091
1092 /* Like R_PPC64_TOC16, but for instructions with a DS field. */
1093 HOWTO (R_PPC64_TOC16_DS, /* type */
1094 0, /* rightshift */
1095 1, /* size (0 = byte, 1 = short, 2 = long) */
1096 16, /* bitsize */
1097 false, /* pc_relative */
1098 0, /* bitpos */
1099 complain_overflow_signed, /* complain_on_overflow */
1100 ppc64_elf_toc_reloc, /* special_function */
1101 "R_PPC64_TOC16_DS", /* name */
1102 false, /* partial_inplace */
1103 0, /* src_mask */
1104 0xfffc, /* dst_mask */
1105 false), /* pcrel_offset */
1106
1107 /* Like R_PPC64_TOC16_LO, but for instructions with a DS field. */
1108 HOWTO (R_PPC64_TOC16_LO_DS, /* type */
1109 0, /* rightshift */
1110 1, /* size (0 = byte, 1 = short, 2 = long) */
1111 16, /* bitsize */
1112 false, /* pc_relative */
1113 0, /* bitpos */
1114 complain_overflow_dont, /* complain_on_overflow */
1115 ppc64_elf_toc_reloc, /* special_function */
1116 "R_PPC64_TOC16_LO_DS", /* name */
1117 false, /* partial_inplace */
1118 0, /* src_mask */
1119 0xfffc, /* dst_mask */
1120 false), /* pcrel_offset */
1121
1122 /* Like R_PPC64_PLTGOT16, but for instructions with a DS field. */
1123 /* FIXME: R_PPC64_PLTGOT16_DS not implemented. */
1124 HOWTO (R_PPC64_PLTGOT16_DS, /* type */
1125 0, /* rightshift */
1126 1, /* size (0 = byte, 1 = short, 2 = long) */
1127 16, /* bitsize */
1128 false, /* pc_relative */
1129 0, /* bitpos */
1130 complain_overflow_signed, /* complain_on_overflow */
1131 ppc64_elf_unhandled_reloc, /* special_function */
1132 "R_PPC64_PLTGOT16_DS", /* name */
1133 false, /* partial_inplace */
1134 0, /* src_mask */
1135 0xfffc, /* dst_mask */
1136 false), /* pcrel_offset */
1137
1138 /* Like R_PPC64_PLTGOT16_LO, but for instructions with a DS field. */
1139 /* FIXME: R_PPC64_PLTGOT16_LO not implemented. */
1140 HOWTO (R_PPC64_PLTGOT16_LO_DS,/* type */
1141 0, /* rightshift */
1142 1, /* size (0 = byte, 1 = short, 2 = long) */
1143 16, /* bitsize */
1144 false, /* pc_relative */
1145 0, /* bitpos */
1146 complain_overflow_dont, /* complain_on_overflow */
1147 ppc64_elf_unhandled_reloc, /* special_function */
1148 "R_PPC64_PLTGOT16_LO_DS",/* name */
1149 false, /* partial_inplace */
1150 0, /* src_mask */
1151 0xfffc, /* dst_mask */
1152 false), /* pcrel_offset */
1153
1154 /* GNU extension to record C++ vtable hierarchy. */
1155 HOWTO (R_PPC64_GNU_VTINHERIT, /* type */
1156 0, /* rightshift */
1157 0, /* size (0 = byte, 1 = short, 2 = long) */
1158 0, /* bitsize */
1159 false, /* pc_relative */
1160 0, /* bitpos */
1161 complain_overflow_dont, /* complain_on_overflow */
1162 NULL, /* special_function */
1163 "R_PPC64_GNU_VTINHERIT", /* name */
1164 false, /* partial_inplace */
1165 0, /* src_mask */
1166 0, /* dst_mask */
1167 false), /* pcrel_offset */
1168
1169 /* GNU extension to record C++ vtable member usage. */
1170 HOWTO (R_PPC64_GNU_VTENTRY, /* type */
1171 0, /* rightshift */
1172 0, /* size (0 = byte, 1 = short, 2 = long) */
1173 0, /* bitsize */
1174 false, /* pc_relative */
1175 0, /* bitpos */
1176 complain_overflow_dont, /* complain_on_overflow */
1177 NULL, /* special_function */
1178 "R_PPC64_GNU_VTENTRY", /* name */
1179 false, /* partial_inplace */
1180 0, /* src_mask */
1181 0, /* dst_mask */
1182 false), /* pcrel_offset */
1183 };
1184
1185 \f
1186 /* Initialize the ppc64_elf_howto_table, so that linear accesses can
1187 be done. */
1188
1189 static void
1190 ppc_howto_init ()
1191 {
1192 unsigned int i, type;
1193
1194 for (i = 0;
1195 i < sizeof (ppc64_elf_howto_raw) / sizeof (ppc64_elf_howto_raw[0]);
1196 i++)
1197 {
1198 type = ppc64_elf_howto_raw[i].type;
1199 BFD_ASSERT (type < (sizeof (ppc64_elf_howto_table)
1200 / sizeof (ppc64_elf_howto_table[0])));
1201 ppc64_elf_howto_table[type] = &ppc64_elf_howto_raw[i];
1202 }
1203 }
1204
1205 static reloc_howto_type *
1206 ppc64_elf_reloc_type_lookup (abfd, code)
1207 bfd *abfd ATTRIBUTE_UNUSED;
1208 bfd_reloc_code_real_type code;
1209 {
1210 enum elf_ppc_reloc_type ppc_reloc = R_PPC_NONE;
1211
1212 if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
1213 /* Initialize howto table if needed. */
1214 ppc_howto_init ();
1215
1216 switch ((int) code)
1217 {
1218 default:
1219 return (reloc_howto_type *) NULL;
1220
1221 case BFD_RELOC_NONE: ppc_reloc = R_PPC64_NONE;
1222 break;
1223 case BFD_RELOC_32: ppc_reloc = R_PPC64_ADDR32;
1224 break;
1225 case BFD_RELOC_PPC_BA26: ppc_reloc = R_PPC64_ADDR24;
1226 break;
1227 case BFD_RELOC_16: ppc_reloc = R_PPC64_ADDR16;
1228 break;
1229 case BFD_RELOC_LO16: ppc_reloc = R_PPC64_ADDR16_LO;
1230 break;
1231 case BFD_RELOC_HI16: ppc_reloc = R_PPC64_ADDR16_HI;
1232 break;
1233 case BFD_RELOC_HI16_S: ppc_reloc = R_PPC64_ADDR16_HA;
1234 break;
1235 case BFD_RELOC_PPC_BA16: ppc_reloc = R_PPC64_ADDR14;
1236 break;
1237 case BFD_RELOC_PPC_BA16_BRTAKEN: ppc_reloc = R_PPC64_ADDR14_BRTAKEN;
1238 break;
1239 case BFD_RELOC_PPC_BA16_BRNTAKEN: ppc_reloc = R_PPC64_ADDR14_BRNTAKEN;
1240 break;
1241 case BFD_RELOC_PPC_B26: ppc_reloc = R_PPC64_REL24;
1242 break;
1243 case BFD_RELOC_PPC_B16: ppc_reloc = R_PPC64_REL14;
1244 break;
1245 case BFD_RELOC_PPC_B16_BRTAKEN: ppc_reloc = R_PPC64_REL14_BRTAKEN;
1246 break;
1247 case BFD_RELOC_PPC_B16_BRNTAKEN: ppc_reloc = R_PPC64_REL14_BRNTAKEN;
1248 break;
1249 case BFD_RELOC_16_GOTOFF: ppc_reloc = R_PPC64_GOT16;
1250 break;
1251 case BFD_RELOC_LO16_GOTOFF: ppc_reloc = R_PPC64_GOT16_LO;
1252 break;
1253 case BFD_RELOC_HI16_GOTOFF: ppc_reloc = R_PPC64_GOT16_HI;
1254 break;
1255 case BFD_RELOC_HI16_S_GOTOFF: ppc_reloc = R_PPC64_GOT16_HA;
1256 break;
1257 case BFD_RELOC_PPC_COPY: ppc_reloc = R_PPC64_COPY;
1258 break;
1259 case BFD_RELOC_PPC_GLOB_DAT: ppc_reloc = R_PPC64_GLOB_DAT;
1260 break;
1261 case BFD_RELOC_32_PCREL: ppc_reloc = R_PPC64_REL32;
1262 break;
1263 case BFD_RELOC_32_PLTOFF: ppc_reloc = R_PPC64_PLT32;
1264 break;
1265 case BFD_RELOC_32_PLT_PCREL: ppc_reloc = R_PPC64_PLTREL32;
1266 break;
1267 case BFD_RELOC_LO16_PLTOFF: ppc_reloc = R_PPC64_PLT16_LO;
1268 break;
1269 case BFD_RELOC_HI16_PLTOFF: ppc_reloc = R_PPC64_PLT16_HI;
1270 break;
1271 case BFD_RELOC_HI16_S_PLTOFF: ppc_reloc = R_PPC64_PLT16_HA;
1272 break;
1273 case BFD_RELOC_16_BASEREL: ppc_reloc = R_PPC64_SECTOFF;
1274 break;
1275 case BFD_RELOC_LO16_BASEREL: ppc_reloc = R_PPC64_SECTOFF_LO;
1276 break;
1277 case BFD_RELOC_HI16_BASEREL: ppc_reloc = R_PPC64_SECTOFF_HI;
1278 break;
1279 case BFD_RELOC_HI16_S_BASEREL: ppc_reloc = R_PPC64_SECTOFF_HA;
1280 break;
1281 case BFD_RELOC_CTOR: ppc_reloc = R_PPC64_ADDR64;
1282 break;
1283 case BFD_RELOC_64: ppc_reloc = R_PPC64_ADDR64;
1284 break;
1285 case BFD_RELOC_PPC64_HIGHER: ppc_reloc = R_PPC64_ADDR16_HIGHER;
1286 break;
1287 case BFD_RELOC_PPC64_HIGHER_S: ppc_reloc = R_PPC64_ADDR16_HIGHERA;
1288 break;
1289 case BFD_RELOC_PPC64_HIGHEST: ppc_reloc = R_PPC64_ADDR16_HIGHEST;
1290 break;
1291 case BFD_RELOC_PPC64_HIGHEST_S: ppc_reloc = R_PPC64_ADDR16_HIGHESTA;
1292 break;
1293 case BFD_RELOC_64_PCREL: ppc_reloc = R_PPC64_REL64;
1294 break;
1295 case BFD_RELOC_64_PLTOFF: ppc_reloc = R_PPC64_PLT64;
1296 break;
1297 case BFD_RELOC_64_PLT_PCREL: ppc_reloc = R_PPC64_PLTREL64;
1298 break;
1299 case BFD_RELOC_PPC_TOC16: ppc_reloc = R_PPC64_TOC16;
1300 break;
1301 case BFD_RELOC_PPC64_TOC16_LO: ppc_reloc = R_PPC64_TOC16_LO;
1302 break;
1303 case BFD_RELOC_PPC64_TOC16_HI: ppc_reloc = R_PPC64_TOC16_HI;
1304 break;
1305 case BFD_RELOC_PPC64_TOC16_HA: ppc_reloc = R_PPC64_TOC16_HA;
1306 break;
1307 case BFD_RELOC_PPC64_TOC: ppc_reloc = R_PPC64_TOC;
1308 break;
1309 case BFD_RELOC_PPC64_PLTGOT16: ppc_reloc = R_PPC64_PLTGOT16;
1310 break;
1311 case BFD_RELOC_PPC64_PLTGOT16_LO: ppc_reloc = R_PPC64_PLTGOT16_LO;
1312 break;
1313 case BFD_RELOC_PPC64_PLTGOT16_HI: ppc_reloc = R_PPC64_PLTGOT16_HI;
1314 break;
1315 case BFD_RELOC_PPC64_PLTGOT16_HA: ppc_reloc = R_PPC64_PLTGOT16_HA;
1316 break;
1317 case BFD_RELOC_PPC64_ADDR16_DS: ppc_reloc = R_PPC64_ADDR16_DS;
1318 break;
1319 case BFD_RELOC_PPC64_ADDR16_LO_DS: ppc_reloc = R_PPC64_ADDR16_LO_DS;
1320 break;
1321 case BFD_RELOC_PPC64_GOT16_DS: ppc_reloc = R_PPC64_GOT16_DS;
1322 break;
1323 case BFD_RELOC_PPC64_GOT16_LO_DS: ppc_reloc = R_PPC64_GOT16_LO_DS;
1324 break;
1325 case BFD_RELOC_PPC64_PLT16_LO_DS: ppc_reloc = R_PPC64_PLT16_LO_DS;
1326 break;
1327 case BFD_RELOC_PPC64_SECTOFF_DS: ppc_reloc = R_PPC64_SECTOFF_DS;
1328 break;
1329 case BFD_RELOC_PPC64_SECTOFF_LO_DS: ppc_reloc = R_PPC64_SECTOFF_LO_DS;
1330 break;
1331 case BFD_RELOC_PPC64_TOC16_DS: ppc_reloc = R_PPC64_TOC16_DS;
1332 break;
1333 case BFD_RELOC_PPC64_TOC16_LO_DS: ppc_reloc = R_PPC64_TOC16_LO_DS;
1334 break;
1335 case BFD_RELOC_PPC64_PLTGOT16_DS: ppc_reloc = R_PPC64_PLTGOT16_DS;
1336 break;
1337 case BFD_RELOC_PPC64_PLTGOT16_LO_DS: ppc_reloc = R_PPC64_PLTGOT16_LO_DS;
1338 break;
1339 case BFD_RELOC_VTABLE_INHERIT: ppc_reloc = R_PPC64_GNU_VTINHERIT;
1340 break;
1341 case BFD_RELOC_VTABLE_ENTRY: ppc_reloc = R_PPC64_GNU_VTENTRY;
1342 break;
1343 }
1344
1345 return ppc64_elf_howto_table[(int) ppc_reloc];
1346 };
1347
1348 /* Set the howto pointer for a PowerPC ELF reloc. */
1349
1350 static void
1351 ppc64_elf_info_to_howto (abfd, cache_ptr, dst)
1352 bfd *abfd ATTRIBUTE_UNUSED;
1353 arelent *cache_ptr;
1354 Elf64_Internal_Rela *dst;
1355 {
1356 unsigned int type;
1357
1358 /* Initialize howto table if needed. */
1359 if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
1360 ppc_howto_init ();
1361
1362 type = ELF64_R_TYPE (dst->r_info);
1363 BFD_ASSERT (type < (sizeof (ppc64_elf_howto_table)
1364 / sizeof (ppc64_elf_howto_table[0])));
1365 cache_ptr->howto = ppc64_elf_howto_table[type];
1366 }
1367
1368 /* Handle the R_PPC_ADDR16_HA and similar relocs. */
1369
1370 static bfd_reloc_status_type
1371 ppc64_elf_ha_reloc (abfd, reloc_entry, symbol, data,
1372 input_section, output_bfd, error_message)
1373 bfd *abfd;
1374 arelent *reloc_entry;
1375 asymbol *symbol;
1376 PTR data;
1377 asection *input_section;
1378 bfd *output_bfd;
1379 char **error_message;
1380 {
1381 /* If this is a relocatable link (output_bfd test tells us), just
1382 call the generic function. Any adjustment will be done at final
1383 link time. */
1384 if (output_bfd != NULL)
1385 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1386 input_section, output_bfd, error_message);
1387
1388 /* Adjust the addend for sign extension of the low 16 bits.
1389 We won't actually be using the low 16 bits, so trashing them
1390 doesn't matter. */
1391 reloc_entry->addend += 0x8000;
1392 return bfd_reloc_continue;
1393 }
1394
1395 static bfd_reloc_status_type
1396 ppc64_elf_brtaken_reloc (abfd, reloc_entry, symbol, data,
1397 input_section, output_bfd, error_message)
1398 bfd *abfd;
1399 arelent *reloc_entry;
1400 asymbol *symbol;
1401 PTR data;
1402 asection *input_section;
1403 bfd *output_bfd;
1404 char **error_message;
1405 {
1406 long insn;
1407 enum elf_ppc_reloc_type r_type;
1408 bfd_size_type octets;
1409 /* Disabled until we sort out how ld should choose 'y' vs 'at'. */
1410 boolean is_power4 = false;
1411
1412 /* If this is a relocatable link (output_bfd test tells us), just
1413 call the generic function. Any adjustment will be done at final
1414 link time. */
1415 if (output_bfd != NULL)
1416 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1417 input_section, output_bfd, error_message);
1418
1419 octets = reloc_entry->address * bfd_octets_per_byte (abfd);
1420 insn = bfd_get_32 (abfd, (bfd_byte *) data + octets);
1421 insn &= ~(0x01 << 21);
1422 r_type = (enum elf_ppc_reloc_type) reloc_entry->howto->type;
1423 if (r_type == R_PPC64_ADDR14_BRTAKEN
1424 || r_type == R_PPC64_REL14_BRTAKEN)
1425 insn |= 0x01 << 21; /* 'y' or 't' bit, lowest bit of BO field. */
1426
1427 if (is_power4)
1428 {
1429 /* Set 'a' bit. This is 0b00010 in BO field for branch
1430 on CR(BI) insns (BO == 001at or 011at), and 0b01000
1431 for branch on CTR insns (BO == 1a00t or 1a01t). */
1432 if ((insn & (0x14 << 21)) == (0x04 << 21))
1433 insn |= 0x02 << 21;
1434 else if ((insn & (0x14 << 21)) == (0x10 << 21))
1435 insn |= 0x08 << 21;
1436 else
1437 return bfd_reloc_continue;
1438 }
1439 else
1440 {
1441 bfd_vma target = 0;
1442 bfd_vma from;
1443
1444 if (!bfd_is_com_section (symbol->section))
1445 target = symbol->value;
1446 target += symbol->section->output_section->vma;
1447 target += symbol->section->output_offset;
1448 target += reloc_entry->addend;
1449
1450 from = (reloc_entry->address
1451 + input_section->output_offset
1452 + input_section->output_section->vma);
1453
1454 /* Invert 'y' bit if not the default. */
1455 if ((bfd_signed_vma) (target - from) < 0)
1456 insn ^= 0x01 << 21;
1457 }
1458 bfd_put_32 (abfd, (bfd_vma) insn, (bfd_byte *) data + octets);
1459 return bfd_reloc_continue;
1460 }
1461
1462 static bfd_reloc_status_type
1463 ppc64_elf_sectoff_reloc (abfd, reloc_entry, symbol, data,
1464 input_section, output_bfd, error_message)
1465 bfd *abfd;
1466 arelent *reloc_entry;
1467 asymbol *symbol;
1468 PTR data;
1469 asection *input_section;
1470 bfd *output_bfd;
1471 char **error_message;
1472 {
1473 /* If this is a relocatable link (output_bfd test tells us), just
1474 call the generic function. Any adjustment will be done at final
1475 link time. */
1476 if (output_bfd != NULL)
1477 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1478 input_section, output_bfd, error_message);
1479
1480 /* Subtract the symbol section base address. */
1481 reloc_entry->addend -= symbol->section->output_section->vma;
1482 return bfd_reloc_continue;
1483 }
1484
1485 static bfd_reloc_status_type
1486 ppc64_elf_sectoff_ha_reloc (abfd, reloc_entry, symbol, data,
1487 input_section, output_bfd, error_message)
1488 bfd *abfd;
1489 arelent *reloc_entry;
1490 asymbol *symbol;
1491 PTR data;
1492 asection *input_section;
1493 bfd *output_bfd;
1494 char **error_message;
1495 {
1496 /* If this is a relocatable link (output_bfd test tells us), just
1497 call the generic function. Any adjustment will be done at final
1498 link time. */
1499 if (output_bfd != NULL)
1500 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1501 input_section, output_bfd, error_message);
1502
1503 /* Subtract the symbol section base address. */
1504 reloc_entry->addend -= symbol->section->output_section->vma;
1505
1506 /* Adjust the addend for sign extension of the low 16 bits. */
1507 reloc_entry->addend += 0x8000;
1508 return bfd_reloc_continue;
1509 }
1510
1511 static bfd_reloc_status_type
1512 ppc64_elf_toc_reloc (abfd, reloc_entry, symbol, data,
1513 input_section, output_bfd, error_message)
1514 bfd *abfd;
1515 arelent *reloc_entry;
1516 asymbol *symbol;
1517 PTR data;
1518 asection *input_section;
1519 bfd *output_bfd;
1520 char **error_message;
1521 {
1522 bfd_vma TOCstart;
1523
1524 /* If this is a relocatable link (output_bfd test tells us), just
1525 call the generic function. Any adjustment will be done at final
1526 link time. */
1527 if (output_bfd != NULL)
1528 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1529 input_section, output_bfd, error_message);
1530
1531 TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
1532 if (TOCstart == 0)
1533 TOCstart = ppc64_elf_toc (input_section->output_section->owner);
1534
1535 /* Subtract the TOC base address. */
1536 reloc_entry->addend -= TOCstart + TOC_BASE_OFF;
1537 return bfd_reloc_continue;
1538 }
1539
1540 static bfd_reloc_status_type
1541 ppc64_elf_toc_ha_reloc (abfd, reloc_entry, symbol, data,
1542 input_section, output_bfd, error_message)
1543 bfd *abfd;
1544 arelent *reloc_entry;
1545 asymbol *symbol;
1546 PTR data;
1547 asection *input_section;
1548 bfd *output_bfd;
1549 char **error_message;
1550 {
1551 bfd_vma TOCstart;
1552
1553 /* If this is a relocatable link (output_bfd test tells us), just
1554 call the generic function. Any adjustment will be done at final
1555 link time. */
1556 if (output_bfd != NULL)
1557 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1558 input_section, output_bfd, error_message);
1559
1560 TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
1561 if (TOCstart == 0)
1562 TOCstart = ppc64_elf_toc (input_section->output_section->owner);
1563
1564 /* Subtract the TOC base address. */
1565 reloc_entry->addend -= TOCstart + TOC_BASE_OFF;
1566
1567 /* Adjust the addend for sign extension of the low 16 bits. */
1568 reloc_entry->addend += 0x8000;
1569 return bfd_reloc_continue;
1570 }
1571
1572 static bfd_reloc_status_type
1573 ppc64_elf_toc64_reloc (abfd, reloc_entry, symbol, data,
1574 input_section, output_bfd, error_message)
1575 bfd *abfd;
1576 arelent *reloc_entry;
1577 asymbol *symbol;
1578 PTR data;
1579 asection *input_section;
1580 bfd *output_bfd;
1581 char **error_message;
1582 {
1583 bfd_vma TOCstart;
1584 bfd_size_type octets;
1585
1586 /* If this is a relocatable link (output_bfd test tells us), just
1587 call the generic function. Any adjustment will be done at final
1588 link time. */
1589 if (output_bfd != NULL)
1590 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1591 input_section, output_bfd, error_message);
1592
1593 TOCstart = _bfd_get_gp_value (input_section->output_section->owner);
1594 if (TOCstart == 0)
1595 TOCstart = ppc64_elf_toc (input_section->output_section->owner);
1596
1597 octets = reloc_entry->address * bfd_octets_per_byte (abfd);
1598 bfd_put_64 (abfd, TOCstart + TOC_BASE_OFF, (bfd_byte *) data + octets);
1599 return bfd_reloc_ok;
1600 }
1601
1602 static bfd_reloc_status_type
1603 ppc64_elf_unhandled_reloc (abfd, reloc_entry, symbol, data,
1604 input_section, output_bfd, error_message)
1605 bfd *abfd;
1606 arelent *reloc_entry;
1607 asymbol *symbol;
1608 PTR data;
1609 asection *input_section;
1610 bfd *output_bfd;
1611 char **error_message;
1612 {
1613 /* If this is a relocatable link (output_bfd test tells us), just
1614 call the generic function. Any adjustment will be done at final
1615 link time. */
1616 if (output_bfd != NULL)
1617 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1618 input_section, output_bfd, error_message);
1619
1620 if (error_message != NULL)
1621 {
1622 static char buf[60];
1623 sprintf (buf, "generic linker can't handle %s",
1624 reloc_entry->howto->name);
1625 *error_message = buf;
1626 }
1627 return bfd_reloc_dangerous;
1628 }
1629
1630 /* Fix bad default arch selected for a 64 bit input bfd when the
1631 default is 32 bit. */
1632
1633 static boolean
1634 ppc64_elf_object_p (abfd)
1635 bfd *abfd;
1636 {
1637 if (abfd->arch_info->the_default && abfd->arch_info->bits_per_word == 32)
1638 {
1639 Elf_Internal_Ehdr *i_ehdr = elf_elfheader (abfd);
1640
1641 if (i_ehdr->e_ident[EI_CLASS] == ELFCLASS64)
1642 {
1643 /* Relies on arch after 32 bit default being 64 bit default. */
1644 abfd->arch_info = abfd->arch_info->next;
1645 BFD_ASSERT (abfd->arch_info->bits_per_word == 64);
1646 }
1647 }
1648 return true;
1649 }
1650
1651 /* Merge backend specific data from an object file to the output
1652 object file when linking. */
1653
1654 static boolean
1655 ppc64_elf_merge_private_bfd_data (ibfd, obfd)
1656 bfd *ibfd;
1657 bfd *obfd;
1658 {
1659 /* Check if we have the same endianess. */
1660 if (ibfd->xvec->byteorder != obfd->xvec->byteorder
1661 && ibfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN
1662 && obfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN)
1663 {
1664 const char *msg;
1665
1666 if (bfd_big_endian (ibfd))
1667 msg = _("%s: compiled for a big endian system and target is little endian");
1668 else
1669 msg = _("%s: compiled for a little endian system and target is big endian");
1670
1671 (*_bfd_error_handler) (msg, bfd_archive_filename (ibfd));
1672
1673 bfd_set_error (bfd_error_wrong_format);
1674 return false;
1675 }
1676
1677 return true;
1678 }
1679 \f
1680 /* The following functions are specific to the ELF linker, while
1681 functions above are used generally. Those named ppc64_elf_* are
1682 called by the main ELF linker code. They appear in this file more
1683 or less in the order in which they are called. eg.
1684 ppc64_elf_check_relocs is called early in the link process,
1685 ppc64_elf_finish_dynamic_sections is one of the last functions
1686 called.
1687
1688 PowerPC64-ELF uses a similar scheme to PowerPC64-XCOFF in that
1689 functions have both a function code symbol and a function descriptor
1690 symbol. A call to foo in a relocatable object file looks like:
1691
1692 . .text
1693 . x:
1694 . bl .foo
1695 . nop
1696
1697 The function definition in another object file might be:
1698
1699 . .section .opd
1700 . foo: .quad .foo
1701 . .quad .TOC.@tocbase
1702 . .quad 0
1703 .
1704 . .text
1705 . .foo: blr
1706
1707 When the linker resolves the call during a static link, the branch
1708 unsurprisingly just goes to .foo and the .opd information is unused.
1709 If the function definition is in a shared library, things are a little
1710 different: The call goes via a plt call stub, the opd information gets
1711 copied to the plt, and the linker patches the nop.
1712
1713 . x:
1714 . bl .foo_stub
1715 . ld 2,40(1)
1716 .
1717 .
1718 . .foo_stub:
1719 . addis 12,2,Lfoo@toc@ha # in practice, the call stub
1720 . addi 12,12,Lfoo@toc@l # is slightly optimised, but
1721 . std 2,40(1) # this is the general idea
1722 . ld 11,0(12)
1723 . ld 2,8(12)
1724 . mtctr 11
1725 . ld 11,16(12)
1726 . bctr
1727 .
1728 . .section .plt
1729 . Lfoo: reloc (R_PPC64_JMP_SLOT, foo)
1730
1731 The "reloc ()" notation is supposed to indicate that the linker emits
1732 an R_PPC64_JMP_SLOT reloc against foo. The dynamic linker does the opd
1733 copying.
1734
1735 What are the difficulties here? Well, firstly, the relocations
1736 examined by the linker in check_relocs are against the function code
1737 sym .foo, while the dynamic relocation in the plt is emitted against
1738 the function descriptor symbol, foo. Somewhere along the line, we need
1739 to carefully copy dynamic link information from one symbol to the other.
1740 Secondly, the generic part of the elf linker will make .foo a dynamic
1741 symbol as is normal for most other backends. We need foo dynamic
1742 instead, at least for an application final link. However, when
1743 creating a shared library containing foo, we need to have both symbols
1744 dynamic so that references to .foo are satisfied during the early
1745 stages of linking. Otherwise the linker might decide to pull in a
1746 definition from some other object, eg. a static library. */
1747
1748 /* The linker needs to keep track of the number of relocs that it
1749 decides to copy as dynamic relocs in check_relocs for each symbol.
1750 This is so that it can later discard them if they are found to be
1751 unnecessary. We store the information in a field extending the
1752 regular ELF linker hash table. */
1753
1754 struct ppc_dyn_relocs
1755 {
1756 struct ppc_dyn_relocs *next;
1757
1758 /* The input section of the reloc. */
1759 asection *sec;
1760
1761 /* Total number of relocs copied for the input section. */
1762 bfd_size_type count;
1763
1764 /* Number of pc-relative relocs copied for the input section. */
1765 bfd_size_type pc_count;
1766 };
1767
1768 /* Of those relocs that might be copied as dynamic relocs, this macro
1769 selects between relative and absolute types. */
1770
1771 #define IS_ABSOLUTE_RELOC(RTYPE) \
1772 ((RTYPE) != R_PPC64_REL32 \
1773 && (RTYPE) != R_PPC64_REL64 \
1774 && (RTYPE) != R_PPC64_ADDR30)
1775
1776 /* Section name for stubs is the associated section name plus this
1777 string. */
1778 #define STUB_SUFFIX ".stub"
1779
1780 /* Linker stubs.
1781 ppc_stub_long_branch:
1782 Used when a 14 bit branch (or even a 24 bit branch) can't reach its
1783 destination, but a 24 bit branch in a stub section will reach.
1784 . b dest
1785
1786 ppc_stub_plt_branch:
1787 Similar to the above, but a 24 bit branch in the stub section won't
1788 reach its destination.
1789 . addis %r12,%r2,xxx@toc@ha
1790 . ld %r11,xxx@toc@l(%r12)
1791 . mtctr %r11
1792 . bctr
1793
1794 ppc_stub_plt_call:
1795 Used to call a function in a shared library.
1796 . addis %r12,%r2,xxx@toc@ha
1797 . std %r2,40(%r1)
1798 . ld %r11,xxx+0@toc@l(%r12)
1799 . ld %r2,xxx+8@toc@l(%r12)
1800 . mtctr %r11
1801 . ld %r11,xxx+16@toc@l(%r12)
1802 . bctr
1803 */
1804
1805 enum ppc_stub_type {
1806 ppc_stub_none,
1807 ppc_stub_long_branch,
1808 ppc_stub_plt_branch,
1809 ppc_stub_plt_call
1810 };
1811
1812 struct ppc_stub_hash_entry {
1813
1814 /* Base hash table entry structure. */
1815 struct bfd_hash_entry root;
1816
1817 /* The stub section. */
1818 asection *stub_sec;
1819
1820 /* Offset within stub_sec of the beginning of this stub. */
1821 bfd_vma stub_offset;
1822
1823 /* Given the symbol's value and its section we can determine its final
1824 value when building the stubs (so the stub knows where to jump. */
1825 bfd_vma target_value;
1826 asection *target_section;
1827
1828 enum ppc_stub_type stub_type;
1829
1830 /* The symbol table entry, if any, that this was derived from. */
1831 struct ppc_link_hash_entry *h;
1832
1833 /* Where this stub is being called from, or, in the case of combined
1834 stub sections, the first input section in the group. */
1835 asection *id_sec;
1836 };
1837
1838 struct ppc_branch_hash_entry {
1839
1840 /* Base hash table entry structure. */
1841 struct bfd_hash_entry root;
1842
1843 /* Offset within .branch_lt. */
1844 unsigned int offset;
1845
1846 /* Generation marker. */
1847 unsigned int iter;
1848 };
1849
1850 struct ppc_link_hash_entry
1851 {
1852 struct elf_link_hash_entry elf;
1853
1854 /* A pointer to the most recently used stub hash entry against this
1855 symbol. */
1856 struct ppc_stub_hash_entry *stub_cache;
1857
1858 /* Track dynamic relocs copied for this symbol. */
1859 struct ppc_dyn_relocs *dyn_relocs;
1860
1861 /* Link between function code and descriptor symbols. */
1862 struct elf_link_hash_entry *oh;
1863
1864 /* Flag function code and descriptor symbols. */
1865 unsigned int is_func:1;
1866 unsigned int is_func_descriptor:1;
1867 unsigned int is_entry:1;
1868 };
1869
1870 /* ppc64 ELF linker hash table. */
1871
1872 struct ppc_link_hash_table
1873 {
1874 struct elf_link_hash_table elf;
1875
1876 /* The stub hash table. */
1877 struct bfd_hash_table stub_hash_table;
1878
1879 /* Another hash table for plt_branch stubs. */
1880 struct bfd_hash_table branch_hash_table;
1881
1882 /* Linker stub bfd. */
1883 bfd *stub_bfd;
1884
1885 /* Linker call-backs. */
1886 asection * (*add_stub_section) PARAMS ((const char *, asection *));
1887 void (*layout_sections_again) PARAMS ((void));
1888
1889 /* Array to keep track of which stub sections have been created, and
1890 information on stub grouping. */
1891 struct map_stub {
1892 /* This is the section to which stubs in the group will be attached. */
1893 asection *link_sec;
1894 /* The stub section. */
1895 asection *stub_sec;
1896 } *stub_group;
1897
1898 /* Assorted information used by ppc64_elf_size_stubs. */
1899 int top_index;
1900 asection **input_list;
1901
1902 /* Short-cuts to get to dynamic linker sections. */
1903 asection *sgot;
1904 asection *srelgot;
1905 asection *splt;
1906 asection *srelplt;
1907 asection *sdynbss;
1908 asection *srelbss;
1909 asection *sglink;
1910 asection *sfpr;
1911 asection *sbrlt;
1912 asection *srelbrlt;
1913
1914 /* Set on error. */
1915 unsigned int stub_error;
1916
1917 /* Flag set when small branches are detected. Used to
1918 select suitable defaults for the stub group size. */
1919 unsigned int has_14bit_branch;
1920
1921 /* Set if we detect a reference undefined weak symbol. */
1922 unsigned int have_undefweak;
1923
1924 /* Incremented every time we size stubs. */
1925 unsigned int stub_iteration;
1926
1927 /* Small local sym to section mapping cache. */
1928 struct sym_sec_cache sym_sec;
1929 };
1930
1931 static struct bfd_hash_entry *stub_hash_newfunc
1932 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
1933 static struct bfd_hash_entry *branch_hash_newfunc
1934 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
1935 static struct bfd_hash_entry *link_hash_newfunc
1936 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
1937 static struct bfd_link_hash_table *ppc64_elf_link_hash_table_create
1938 PARAMS ((bfd *));
1939 static void ppc64_elf_link_hash_table_free
1940 PARAMS ((struct bfd_link_hash_table *));
1941 static char *ppc_stub_name
1942 PARAMS ((const asection *, const asection *,
1943 const struct ppc_link_hash_entry *, const Elf_Internal_Rela *));
1944 static struct ppc_stub_hash_entry *ppc_get_stub_entry
1945 PARAMS ((const asection *, const asection *, struct elf_link_hash_entry *,
1946 const Elf_Internal_Rela *, struct ppc_link_hash_table *));
1947 static struct ppc_stub_hash_entry *ppc_add_stub
1948 PARAMS ((const char *, asection *, struct ppc_link_hash_table *));
1949 static boolean create_linkage_sections
1950 PARAMS ((bfd *, struct bfd_link_info *));
1951 static boolean create_got_section
1952 PARAMS ((bfd *, struct bfd_link_info *));
1953 static boolean ppc64_elf_create_dynamic_sections
1954 PARAMS ((bfd *, struct bfd_link_info *));
1955 static void ppc64_elf_copy_indirect_symbol
1956 PARAMS ((struct elf_backend_data *, struct elf_link_hash_entry *,
1957 struct elf_link_hash_entry *));
1958 static boolean ppc64_elf_check_relocs
1959 PARAMS ((bfd *, struct bfd_link_info *, asection *,
1960 const Elf_Internal_Rela *));
1961 static asection * ppc64_elf_gc_mark_hook
1962 PARAMS ((asection *, struct bfd_link_info *, Elf_Internal_Rela *,
1963 struct elf_link_hash_entry *, Elf_Internal_Sym *));
1964 static boolean ppc64_elf_gc_sweep_hook
1965 PARAMS ((bfd *, struct bfd_link_info *, asection *,
1966 const Elf_Internal_Rela *));
1967 static boolean func_desc_adjust
1968 PARAMS ((struct elf_link_hash_entry *, PTR));
1969 static boolean ppc64_elf_func_desc_adjust
1970 PARAMS ((bfd *, struct bfd_link_info *));
1971 static boolean ppc64_elf_adjust_dynamic_symbol
1972 PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
1973 static void ppc64_elf_hide_symbol
1974 PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *, boolean));
1975 static boolean edit_opd
1976 PARAMS ((bfd *, struct bfd_link_info *));
1977 static boolean allocate_dynrelocs
1978 PARAMS ((struct elf_link_hash_entry *, PTR));
1979 static boolean readonly_dynrelocs
1980 PARAMS ((struct elf_link_hash_entry *, PTR));
1981 static enum elf_reloc_type_class ppc64_elf_reloc_type_class
1982 PARAMS ((const Elf_Internal_Rela *));
1983 static boolean ppc64_elf_size_dynamic_sections
1984 PARAMS ((bfd *, struct bfd_link_info *));
1985 static INLINE enum ppc_stub_type ppc_type_of_stub
1986 PARAMS ((asection *, const Elf_Internal_Rela *,
1987 struct ppc_link_hash_entry **, bfd_vma));
1988 static bfd_byte *build_plt_stub
1989 PARAMS ((bfd *, bfd_byte *, int, int));
1990 static boolean ppc_build_one_stub
1991 PARAMS ((struct bfd_hash_entry *, PTR));
1992 static boolean ppc_size_one_stub
1993 PARAMS ((struct bfd_hash_entry *, PTR));
1994 static void group_sections
1995 PARAMS ((struct ppc_link_hash_table *, bfd_size_type, boolean));
1996 static boolean ppc64_elf_relocate_section
1997 PARAMS ((bfd *, struct bfd_link_info *info, bfd *, asection *, bfd_byte *,
1998 Elf_Internal_Rela *relocs, Elf_Internal_Sym *local_syms,
1999 asection **));
2000 static boolean ppc64_elf_finish_dynamic_symbol
2001 PARAMS ((bfd *, struct bfd_link_info *, struct elf_link_hash_entry *,
2002 Elf_Internal_Sym *));
2003 static boolean ppc64_elf_finish_dynamic_sections
2004 PARAMS ((bfd *, struct bfd_link_info *));
2005
2006 /* Get the ppc64 ELF linker hash table from a link_info structure. */
2007
2008 #define ppc_hash_table(p) \
2009 ((struct ppc_link_hash_table *) ((p)->hash))
2010
2011 #define ppc_stub_hash_lookup(table, string, create, copy) \
2012 ((struct ppc_stub_hash_entry *) \
2013 bfd_hash_lookup ((table), (string), (create), (copy)))
2014
2015 #define ppc_branch_hash_lookup(table, string, create, copy) \
2016 ((struct ppc_branch_hash_entry *) \
2017 bfd_hash_lookup ((table), (string), (create), (copy)))
2018
2019 /* Create an entry in the stub hash table. */
2020
2021 static struct bfd_hash_entry *
2022 stub_hash_newfunc (entry, table, string)
2023 struct bfd_hash_entry *entry;
2024 struct bfd_hash_table *table;
2025 const char *string;
2026 {
2027 /* Allocate the structure if it has not already been allocated by a
2028 subclass. */
2029 if (entry == NULL)
2030 {
2031 entry = bfd_hash_allocate (table, sizeof (struct ppc_stub_hash_entry));
2032 if (entry == NULL)
2033 return entry;
2034 }
2035
2036 /* Call the allocation method of the superclass. */
2037 entry = bfd_hash_newfunc (entry, table, string);
2038 if (entry != NULL)
2039 {
2040 struct ppc_stub_hash_entry *eh;
2041
2042 /* Initialize the local fields. */
2043 eh = (struct ppc_stub_hash_entry *) entry;
2044 eh->stub_sec = NULL;
2045 eh->stub_offset = 0;
2046 eh->target_value = 0;
2047 eh->target_section = NULL;
2048 eh->stub_type = ppc_stub_none;
2049 eh->h = NULL;
2050 eh->id_sec = NULL;
2051 }
2052
2053 return entry;
2054 }
2055
2056 /* Create an entry in the branch hash table. */
2057
2058 static struct bfd_hash_entry *
2059 branch_hash_newfunc (entry, table, string)
2060 struct bfd_hash_entry *entry;
2061 struct bfd_hash_table *table;
2062 const char *string;
2063 {
2064 /* Allocate the structure if it has not already been allocated by a
2065 subclass. */
2066 if (entry == NULL)
2067 {
2068 entry = bfd_hash_allocate (table, sizeof (struct ppc_branch_hash_entry));
2069 if (entry == NULL)
2070 return entry;
2071 }
2072
2073 /* Call the allocation method of the superclass. */
2074 entry = bfd_hash_newfunc (entry, table, string);
2075 if (entry != NULL)
2076 {
2077 struct ppc_branch_hash_entry *eh;
2078
2079 /* Initialize the local fields. */
2080 eh = (struct ppc_branch_hash_entry *) entry;
2081 eh->offset = 0;
2082 eh->iter = 0;
2083 }
2084
2085 return entry;
2086 }
2087
2088 /* Create an entry in a ppc64 ELF linker hash table. */
2089
2090 static struct bfd_hash_entry *
2091 link_hash_newfunc (entry, table, string)
2092 struct bfd_hash_entry *entry;
2093 struct bfd_hash_table *table;
2094 const char *string;
2095 {
2096 /* Allocate the structure if it has not already been allocated by a
2097 subclass. */
2098 if (entry == NULL)
2099 {
2100 entry = bfd_hash_allocate (table, sizeof (struct ppc_link_hash_entry));
2101 if (entry == NULL)
2102 return entry;
2103 }
2104
2105 /* Call the allocation method of the superclass. */
2106 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
2107 if (entry != NULL)
2108 {
2109 struct ppc_link_hash_entry *eh = (struct ppc_link_hash_entry *) entry;
2110
2111 eh->stub_cache = NULL;
2112 eh->dyn_relocs = NULL;
2113 eh->oh = NULL;
2114 eh->is_func = 0;
2115 eh->is_func_descriptor = 0;
2116 eh->is_entry = 0;
2117 }
2118
2119 return entry;
2120 }
2121
2122 /* Create a ppc64 ELF linker hash table. */
2123
2124 static struct bfd_link_hash_table *
2125 ppc64_elf_link_hash_table_create (abfd)
2126 bfd *abfd;
2127 {
2128 struct ppc_link_hash_table *htab;
2129 bfd_size_type amt = sizeof (struct ppc_link_hash_table);
2130
2131 htab = (struct ppc_link_hash_table *) bfd_malloc (amt);
2132 if (htab == NULL)
2133 return NULL;
2134
2135 if (! _bfd_elf_link_hash_table_init (&htab->elf, abfd, link_hash_newfunc))
2136 {
2137 free (htab);
2138 return NULL;
2139 }
2140
2141 /* Init the stub hash table too. */
2142 if (!bfd_hash_table_init (&htab->stub_hash_table, stub_hash_newfunc))
2143 return NULL;
2144
2145 /* And the branch hash table. */
2146 if (!bfd_hash_table_init (&htab->branch_hash_table, branch_hash_newfunc))
2147 return NULL;
2148
2149 htab->stub_bfd = NULL;
2150 htab->add_stub_section = NULL;
2151 htab->layout_sections_again = NULL;
2152 htab->stub_group = NULL;
2153 htab->sgot = NULL;
2154 htab->srelgot = NULL;
2155 htab->splt = NULL;
2156 htab->srelplt = NULL;
2157 htab->sdynbss = NULL;
2158 htab->srelbss = NULL;
2159 htab->sglink = NULL;
2160 htab->sfpr = NULL;
2161 htab->sbrlt = NULL;
2162 htab->srelbrlt = NULL;
2163 htab->stub_error = 0;
2164 htab->has_14bit_branch = 0;
2165 htab->have_undefweak = 0;
2166 htab->stub_iteration = 0;
2167 htab->sym_sec.abfd = NULL;
2168
2169 return &htab->elf.root;
2170 }
2171
2172 /* Free the derived linker hash table. */
2173
2174 static void
2175 ppc64_elf_link_hash_table_free (hash)
2176 struct bfd_link_hash_table *hash;
2177 {
2178 struct ppc_link_hash_table *ret = (struct ppc_link_hash_table *) hash;
2179
2180 bfd_hash_table_free (&ret->stub_hash_table);
2181 bfd_hash_table_free (&ret->branch_hash_table);
2182 _bfd_generic_link_hash_table_free (hash);
2183 }
2184
2185 /* Build a name for an entry in the stub hash table. */
2186
2187 static char *
2188 ppc_stub_name (input_section, sym_sec, h, rel)
2189 const asection *input_section;
2190 const asection *sym_sec;
2191 const struct ppc_link_hash_entry *h;
2192 const Elf_Internal_Rela *rel;
2193 {
2194 char *stub_name;
2195 bfd_size_type len;
2196
2197 /* rel->r_addend is actually 64 bit, but who uses more than +/- 2^31
2198 offsets from a sym as a branch target? In fact, we could
2199 probably assume the addend is always zero. */
2200 BFD_ASSERT (((int) rel->r_addend & 0xffffffff) == rel->r_addend);
2201
2202 if (h)
2203 {
2204 len = 8 + 1 + strlen (h->elf.root.root.string) + 1 + 8 + 1;
2205 stub_name = bfd_malloc (len);
2206 if (stub_name != NULL)
2207 {
2208 sprintf (stub_name, "%08x_%s+%x",
2209 input_section->id & 0xffffffff,
2210 h->elf.root.root.string,
2211 (int) rel->r_addend & 0xffffffff);
2212 }
2213 }
2214 else
2215 {
2216 len = 8 + 1 + 8 + 1 + 8 + 1 + 16 + 1;
2217 stub_name = bfd_malloc (len);
2218 if (stub_name != NULL)
2219 {
2220 sprintf (stub_name, "%08x_%x:%x+%x",
2221 input_section->id & 0xffffffff,
2222 sym_sec->id & 0xffffffff,
2223 (int) ELF64_R_SYM (rel->r_info) & 0xffffffff,
2224 (int) rel->r_addend & 0xffffffff);
2225 }
2226 }
2227 return stub_name;
2228 }
2229
2230 /* Look up an entry in the stub hash. Stub entries are cached because
2231 creating the stub name takes a bit of time. */
2232
2233 static struct ppc_stub_hash_entry *
2234 ppc_get_stub_entry (input_section, sym_sec, hash, rel, htab)
2235 const asection *input_section;
2236 const asection *sym_sec;
2237 struct elf_link_hash_entry *hash;
2238 const Elf_Internal_Rela *rel;
2239 struct ppc_link_hash_table *htab;
2240 {
2241 struct ppc_stub_hash_entry *stub_entry;
2242 struct ppc_link_hash_entry *h = (struct ppc_link_hash_entry *) hash;
2243 const asection *id_sec;
2244
2245 /* If this input section is part of a group of sections sharing one
2246 stub section, then use the id of the first section in the group.
2247 Stub names need to include a section id, as there may well be
2248 more than one stub used to reach say, printf, and we need to
2249 distinguish between them. */
2250 id_sec = htab->stub_group[input_section->id].link_sec;
2251
2252 if (h != NULL && h->stub_cache != NULL
2253 && h->stub_cache->h == h
2254 && h->stub_cache->id_sec == id_sec)
2255 {
2256 stub_entry = h->stub_cache;
2257 }
2258 else
2259 {
2260 char *stub_name;
2261
2262 stub_name = ppc_stub_name (id_sec, sym_sec, h, rel);
2263 if (stub_name == NULL)
2264 return NULL;
2265
2266 stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table,
2267 stub_name, false, false);
2268 if (h != NULL)
2269 h->stub_cache = stub_entry;
2270
2271 free (stub_name);
2272 }
2273
2274 return stub_entry;
2275 }
2276
2277 /* Add a new stub entry to the stub hash. Not all fields of the new
2278 stub entry are initialised. */
2279
2280 static struct ppc_stub_hash_entry *
2281 ppc_add_stub (stub_name, section, htab)
2282 const char *stub_name;
2283 asection *section;
2284 struct ppc_link_hash_table *htab;
2285 {
2286 asection *link_sec;
2287 asection *stub_sec;
2288 struct ppc_stub_hash_entry *stub_entry;
2289
2290 link_sec = htab->stub_group[section->id].link_sec;
2291 stub_sec = htab->stub_group[section->id].stub_sec;
2292 if (stub_sec == NULL)
2293 {
2294 stub_sec = htab->stub_group[link_sec->id].stub_sec;
2295 if (stub_sec == NULL)
2296 {
2297 size_t namelen;
2298 bfd_size_type len;
2299 char *s_name;
2300
2301 namelen = strlen (link_sec->name);
2302 len = namelen + sizeof (STUB_SUFFIX);
2303 s_name = bfd_alloc (htab->stub_bfd, len);
2304 if (s_name == NULL)
2305 return NULL;
2306
2307 memcpy (s_name, link_sec->name, namelen);
2308 memcpy (s_name + namelen, STUB_SUFFIX, sizeof (STUB_SUFFIX));
2309 stub_sec = (*htab->add_stub_section) (s_name, link_sec);
2310 if (stub_sec == NULL)
2311 return NULL;
2312 htab->stub_group[link_sec->id].stub_sec = stub_sec;
2313 }
2314 htab->stub_group[section->id].stub_sec = stub_sec;
2315 }
2316
2317 /* Enter this entry into the linker stub hash table. */
2318 stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table, stub_name,
2319 true, false);
2320 if (stub_entry == NULL)
2321 {
2322 (*_bfd_error_handler) (_("%s: cannot create stub entry %s"),
2323 bfd_archive_filename (section->owner),
2324 stub_name);
2325 return NULL;
2326 }
2327
2328 stub_entry->stub_sec = stub_sec;
2329 stub_entry->stub_offset = 0;
2330 stub_entry->id_sec = link_sec;
2331 return stub_entry;
2332 }
2333
2334 /* Create sections for linker generated code. */
2335
2336 static boolean
2337 create_linkage_sections (dynobj, info)
2338 bfd *dynobj;
2339 struct bfd_link_info *info;
2340 {
2341 struct ppc_link_hash_table *htab;
2342 flagword flags;
2343
2344 htab = ppc_hash_table (info);
2345
2346 /* Create .sfpr for code to save and restore fp regs. */
2347 flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY
2348 | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2349 htab->sfpr = bfd_make_section_anyway (dynobj, ".sfpr");
2350 if (htab->sfpr == NULL
2351 || ! bfd_set_section_flags (dynobj, htab->sfpr, flags)
2352 || ! bfd_set_section_alignment (dynobj, htab->sfpr, 2))
2353 return false;
2354
2355 /* Create .glink for lazy dynamic linking support. */
2356 htab->sglink = bfd_make_section_anyway (dynobj, ".glink");
2357 if (htab->sglink == NULL
2358 || ! bfd_set_section_flags (dynobj, htab->sglink, flags)
2359 || ! bfd_set_section_alignment (dynobj, htab->sglink, 2))
2360 return false;
2361
2362 /* Create .branch_lt for plt_branch stubs. */
2363 flags = (SEC_ALLOC | SEC_LOAD
2364 | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2365 htab->sbrlt = bfd_make_section_anyway (dynobj, ".branch_lt");
2366 if (htab->sbrlt == NULL
2367 || ! bfd_set_section_flags (dynobj, htab->sbrlt, flags)
2368 || ! bfd_set_section_alignment (dynobj, htab->sbrlt, 3))
2369 return false;
2370
2371 if (info->shared)
2372 {
2373 flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
2374 | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2375 htab->srelbrlt = bfd_make_section_anyway (dynobj, ".rela.branch_lt");
2376 if (!htab->srelbrlt
2377 || ! bfd_set_section_flags (dynobj, htab->srelbrlt, flags)
2378 || ! bfd_set_section_alignment (dynobj, htab->srelbrlt, 3))
2379 return false;
2380 }
2381 return true;
2382 }
2383
2384 /* Create .got and .rela.got sections in DYNOBJ, and set up
2385 shortcuts to them in our hash table. */
2386
2387 static boolean
2388 create_got_section (dynobj, info)
2389 bfd *dynobj;
2390 struct bfd_link_info *info;
2391 {
2392 struct ppc_link_hash_table *htab;
2393
2394 if (! _bfd_elf_create_got_section (dynobj, info))
2395 return false;
2396
2397 htab = ppc_hash_table (info);
2398 htab->sgot = bfd_get_section_by_name (dynobj, ".got");
2399 if (!htab->sgot)
2400 abort ();
2401
2402 htab->srelgot = bfd_make_section (dynobj, ".rela.got");
2403 if (!htab->srelgot
2404 || ! bfd_set_section_flags (dynobj, htab->srelgot,
2405 (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
2406 | SEC_IN_MEMORY | SEC_LINKER_CREATED
2407 | SEC_READONLY))
2408 || ! bfd_set_section_alignment (dynobj, htab->srelgot, 3))
2409 return false;
2410 return true;
2411 }
2412
2413 /* Create the dynamic sections, and set up shortcuts. */
2414
2415 static boolean
2416 ppc64_elf_create_dynamic_sections (dynobj, info)
2417 bfd *dynobj;
2418 struct bfd_link_info *info;
2419 {
2420 struct ppc_link_hash_table *htab;
2421
2422 htab = ppc_hash_table (info);
2423 if (!htab->sgot && !create_got_section (dynobj, info))
2424 return false;
2425
2426 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
2427 return false;
2428
2429 htab->splt = bfd_get_section_by_name (dynobj, ".plt");
2430 htab->srelplt = bfd_get_section_by_name (dynobj, ".rela.plt");
2431 htab->sdynbss = bfd_get_section_by_name (dynobj, ".dynbss");
2432 if (!info->shared)
2433 htab->srelbss = bfd_get_section_by_name (dynobj, ".rela.bss");
2434
2435 if (!htab->splt || !htab->srelplt || !htab->sdynbss
2436 || (!info->shared && !htab->srelbss))
2437 abort ();
2438
2439 return true;
2440 }
2441
2442 /* Copy the extra info we tack onto an elf_link_hash_entry. */
2443
2444 static void
2445 ppc64_elf_copy_indirect_symbol (bed, dir, ind)
2446 struct elf_backend_data *bed;
2447 struct elf_link_hash_entry *dir, *ind;
2448 {
2449 struct ppc_link_hash_entry *edir, *eind;
2450
2451 edir = (struct ppc_link_hash_entry *) dir;
2452 eind = (struct ppc_link_hash_entry *) ind;
2453
2454 if (eind->dyn_relocs != NULL)
2455 {
2456 if (edir->dyn_relocs != NULL)
2457 {
2458 struct ppc_dyn_relocs **pp;
2459 struct ppc_dyn_relocs *p;
2460
2461 if (ind->root.type == bfd_link_hash_indirect)
2462 abort ();
2463
2464 /* Add reloc counts against the weak sym to the strong sym
2465 list. Merge any entries against the same section. */
2466 for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
2467 {
2468 struct ppc_dyn_relocs *q;
2469
2470 for (q = edir->dyn_relocs; q != NULL; q = q->next)
2471 if (q->sec == p->sec)
2472 {
2473 q->pc_count += p->pc_count;
2474 q->count += p->count;
2475 *pp = p->next;
2476 break;
2477 }
2478 if (q == NULL)
2479 pp = &p->next;
2480 }
2481 *pp = edir->dyn_relocs;
2482 }
2483
2484 edir->dyn_relocs = eind->dyn_relocs;
2485 eind->dyn_relocs = NULL;
2486 }
2487
2488 edir->is_func |= eind->is_func;
2489 edir->is_func_descriptor |= eind->is_func_descriptor;
2490 edir->is_entry |= eind->is_entry;
2491
2492 _bfd_elf_link_hash_copy_indirect (bed, dir, ind);
2493 }
2494
2495 /* Set a flag, used by ppc64_elf_gc_mark_hook, on the entry symbol and
2496 symbols undefined on the command-line. */
2497
2498 boolean
2499 ppc64_elf_mark_entry_syms (info)
2500 struct bfd_link_info *info;
2501 {
2502 struct ppc_link_hash_table *htab;
2503 struct bfd_sym_chain *sym;
2504
2505 htab = ppc_hash_table (info);
2506 for (sym = info->gc_sym_list; sym; sym = sym->next)
2507 {
2508 struct elf_link_hash_entry *h;
2509
2510 h = elf_link_hash_lookup (&htab->elf, sym->name, false, false, false);
2511 if (h != NULL)
2512 ((struct ppc_link_hash_entry *) h)->is_entry = 1;
2513 }
2514 return true;
2515 }
2516
2517 /* Look through the relocs for a section during the first phase, and
2518 calculate needed space in the global offset table, procedure
2519 linkage table, and dynamic reloc sections. */
2520
2521 static boolean
2522 ppc64_elf_check_relocs (abfd, info, sec, relocs)
2523 bfd *abfd;
2524 struct bfd_link_info *info;
2525 asection *sec;
2526 const Elf_Internal_Rela *relocs;
2527 {
2528 struct ppc_link_hash_table *htab;
2529 Elf_Internal_Shdr *symtab_hdr;
2530 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
2531 const Elf_Internal_Rela *rel;
2532 const Elf_Internal_Rela *rel_end;
2533 asection *sreloc;
2534 asection **opd_sym_map;
2535
2536 if (info->relocateable)
2537 return true;
2538
2539 htab = ppc_hash_table (info);
2540 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2541
2542 sym_hashes = elf_sym_hashes (abfd);
2543 sym_hashes_end = (sym_hashes
2544 + symtab_hdr->sh_size / sizeof (Elf64_External_Sym)
2545 - symtab_hdr->sh_info);
2546
2547 sreloc = NULL;
2548 opd_sym_map = NULL;
2549 if (strcmp (bfd_get_section_name (abfd, sec), ".opd") == 0)
2550 {
2551 /* Garbage collection needs some extra help with .opd sections.
2552 We don't want to necessarily keep everything referenced by
2553 relocs in .opd, as that would keep all functions. Instead,
2554 if we reference an .opd symbol (a function descriptor), we
2555 want to keep the function code symbol's section. This is
2556 easy for global symbols, but for local syms we need to keep
2557 information about the associated function section. Later, if
2558 edit_opd deletes entries, we'll use this array to adjust
2559 local syms in .opd. */
2560 union opd_info {
2561 asection *func_section;
2562 long entry_adjust;
2563 };
2564 bfd_size_type amt;
2565
2566 amt = sec->_raw_size * sizeof (union opd_info) / 24;
2567 opd_sym_map = (asection **) bfd_zalloc (abfd, amt);
2568 if (opd_sym_map == NULL)
2569 return false;
2570 elf_section_data (sec)->tdata = opd_sym_map;
2571 }
2572
2573 if (htab->elf.dynobj == NULL)
2574 htab->elf.dynobj = abfd;
2575 if (htab->sfpr == NULL
2576 && !create_linkage_sections (htab->elf.dynobj, info))
2577 return false;
2578
2579 rel_end = relocs + sec->reloc_count;
2580 for (rel = relocs; rel < rel_end; rel++)
2581 {
2582 unsigned long r_symndx;
2583 struct elf_link_hash_entry *h;
2584 enum elf_ppc_reloc_type r_type;
2585
2586 r_symndx = ELF64_R_SYM (rel->r_info);
2587 if (r_symndx < symtab_hdr->sh_info)
2588 h = NULL;
2589 else
2590 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
2591
2592 r_type = (enum elf_ppc_reloc_type) ELF64_R_TYPE (rel->r_info);
2593 switch (r_type)
2594 {
2595 /* GOT16 relocations */
2596 case R_PPC64_GOT16:
2597 case R_PPC64_GOT16_DS:
2598 case R_PPC64_GOT16_HA:
2599 case R_PPC64_GOT16_HI:
2600 case R_PPC64_GOT16_LO:
2601 case R_PPC64_GOT16_LO_DS:
2602
2603 /* This symbol requires a global offset table entry. */
2604 if (htab->sgot == NULL
2605 && !create_got_section (htab->elf.dynobj, info))
2606 return false;
2607
2608 if (h != NULL)
2609 {
2610 h->got.refcount += 1;
2611 }
2612 else
2613 {
2614 bfd_signed_vma *local_got_refcounts;
2615
2616 /* This is a global offset table entry for a local symbol. */
2617 local_got_refcounts = elf_local_got_refcounts (abfd);
2618 if (local_got_refcounts == NULL)
2619 {
2620 bfd_size_type size;
2621
2622 size = symtab_hdr->sh_info;
2623 size *= sizeof (bfd_signed_vma);
2624 local_got_refcounts = ((bfd_signed_vma *)
2625 bfd_zalloc (abfd, size));
2626 if (local_got_refcounts == NULL)
2627 return false;
2628 elf_local_got_refcounts (abfd) = local_got_refcounts;
2629 }
2630 local_got_refcounts[r_symndx] += 1;
2631 }
2632 break;
2633
2634 case R_PPC64_PLT16_HA:
2635 case R_PPC64_PLT16_HI:
2636 case R_PPC64_PLT16_LO:
2637 case R_PPC64_PLT32:
2638 case R_PPC64_PLT64:
2639 /* This symbol requires a procedure linkage table entry. We
2640 actually build the entry in adjust_dynamic_symbol,
2641 because this might be a case of linking PIC code without
2642 linking in any dynamic objects, in which case we don't
2643 need to generate a procedure linkage table after all. */
2644 if (h == NULL)
2645 {
2646 /* It does not make sense to have a procedure linkage
2647 table entry for a local symbol. */
2648 bfd_set_error (bfd_error_bad_value);
2649 return false;
2650 }
2651
2652 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
2653 h->plt.refcount += 1;
2654 ((struct ppc_link_hash_entry *) h)->is_func = 1;
2655 break;
2656
2657 /* The following relocations don't need to propagate the
2658 relocation if linking a shared object since they are
2659 section relative. */
2660 case R_PPC64_SECTOFF:
2661 case R_PPC64_SECTOFF_LO:
2662 case R_PPC64_SECTOFF_HI:
2663 case R_PPC64_SECTOFF_HA:
2664 case R_PPC64_SECTOFF_DS:
2665 case R_PPC64_SECTOFF_LO_DS:
2666 case R_PPC64_TOC16:
2667 case R_PPC64_TOC16_LO:
2668 case R_PPC64_TOC16_HI:
2669 case R_PPC64_TOC16_HA:
2670 case R_PPC64_TOC16_DS:
2671 case R_PPC64_TOC16_LO_DS:
2672 break;
2673
2674 /* This relocation describes the C++ object vtable hierarchy.
2675 Reconstruct it for later use during GC. */
2676 case R_PPC64_GNU_VTINHERIT:
2677 if (!_bfd_elf64_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
2678 return false;
2679 break;
2680
2681 /* This relocation describes which C++ vtable entries are actually
2682 used. Record for later use during GC. */
2683 case R_PPC64_GNU_VTENTRY:
2684 if (!_bfd_elf64_gc_record_vtentry (abfd, sec, h, rel->r_addend))
2685 return false;
2686 break;
2687
2688 case R_PPC64_REL14:
2689 case R_PPC64_REL14_BRTAKEN:
2690 case R_PPC64_REL14_BRNTAKEN:
2691 htab->has_14bit_branch = 1;
2692 /* Fall through. */
2693
2694 case R_PPC64_REL24:
2695 if (h != NULL
2696 && h->root.root.string[0] == '.'
2697 && h->root.root.string[1] != 0)
2698 {
2699 /* We may need a .plt entry if the function this reloc
2700 refers to is in a shared lib. */
2701 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
2702 h->plt.refcount += 1;
2703 ((struct ppc_link_hash_entry *) h)->is_func = 1;
2704 }
2705 break;
2706
2707 case R_PPC64_ADDR64:
2708 if (opd_sym_map != NULL
2709 && h != NULL
2710 && h->root.root.string[0] == '.'
2711 && h->root.root.string[1] != 0)
2712 {
2713 struct elf_link_hash_entry *fdh;
2714
2715 fdh = elf_link_hash_lookup (&htab->elf, h->root.root.string + 1,
2716 false, false, false);
2717 if (fdh != NULL)
2718 {
2719 ((struct ppc_link_hash_entry *) fdh)->is_func_descriptor = 1;
2720 ((struct ppc_link_hash_entry *) fdh)->oh = h;
2721 ((struct ppc_link_hash_entry *) h)->is_func = 1;
2722 ((struct ppc_link_hash_entry *) h)->oh = fdh;
2723 }
2724 }
2725 if (opd_sym_map != NULL
2726 && h == NULL
2727 && rel + 1 < rel_end
2728 && ((enum elf_ppc_reloc_type) ELF64_R_TYPE ((rel + 1)->r_info)
2729 == R_PPC64_TOC))
2730 {
2731 asection *s;
2732
2733 s = bfd_section_from_r_symndx (abfd, &htab->sym_sec, sec,
2734 r_symndx);
2735 if (s == NULL)
2736 return false;
2737 else if (s != sec)
2738 opd_sym_map[rel->r_offset / 24] = s;
2739 }
2740 /* Fall through. */
2741
2742 case R_PPC64_REL64:
2743 case R_PPC64_REL32:
2744 case R_PPC64_ADDR14:
2745 case R_PPC64_ADDR14_BRNTAKEN:
2746 case R_PPC64_ADDR14_BRTAKEN:
2747 case R_PPC64_ADDR16:
2748 case R_PPC64_ADDR16_DS:
2749 case R_PPC64_ADDR16_HA:
2750 case R_PPC64_ADDR16_HI:
2751 case R_PPC64_ADDR16_HIGHER:
2752 case R_PPC64_ADDR16_HIGHERA:
2753 case R_PPC64_ADDR16_HIGHEST:
2754 case R_PPC64_ADDR16_HIGHESTA:
2755 case R_PPC64_ADDR16_LO:
2756 case R_PPC64_ADDR16_LO_DS:
2757 case R_PPC64_ADDR24:
2758 case R_PPC64_ADDR30:
2759 case R_PPC64_ADDR32:
2760 case R_PPC64_UADDR16:
2761 case R_PPC64_UADDR32:
2762 case R_PPC64_UADDR64:
2763 case R_PPC64_TOC:
2764 /* Don't propagate .opd relocs. */
2765 if (NO_OPD_RELOCS && opd_sym_map != NULL)
2766 break;
2767
2768 /* If we are creating a shared library, and this is a reloc
2769 against a global symbol, or a non PC relative reloc
2770 against a local symbol, then we need to copy the reloc
2771 into the shared library. However, if we are linking with
2772 -Bsymbolic, we do not need to copy a reloc against a
2773 global symbol which is defined in an object we are
2774 including in the link (i.e., DEF_REGULAR is set). At
2775 this point we have not seen all the input files, so it is
2776 possible that DEF_REGULAR is not set now but will be set
2777 later (it is never cleared). In case of a weak definition,
2778 DEF_REGULAR may be cleared later by a strong definition in
2779 a shared library. We account for that possibility below by
2780 storing information in the relocs_copied field of the hash
2781 table entry. A similar situation occurs when creating
2782 shared libraries and symbol visibility changes render the
2783 symbol local.
2784
2785 If on the other hand, we are creating an executable, we
2786 may need to keep relocations for symbols satisfied by a
2787 dynamic library if we manage to avoid copy relocs for the
2788 symbol. */
2789 if ((info->shared
2790 && (sec->flags & SEC_ALLOC) != 0
2791 && (IS_ABSOLUTE_RELOC (r_type)
2792 || (h != NULL
2793 && (! info->symbolic
2794 || h->root.type == bfd_link_hash_defweak
2795 || (h->elf_link_hash_flags
2796 & ELF_LINK_HASH_DEF_REGULAR) == 0))))
2797 || (!info->shared
2798 && (sec->flags & SEC_ALLOC) != 0
2799 && h != NULL
2800 && (h->root.type == bfd_link_hash_defweak
2801 || (h->elf_link_hash_flags
2802 & ELF_LINK_HASH_DEF_REGULAR) == 0)))
2803 {
2804 struct ppc_dyn_relocs *p;
2805 struct ppc_dyn_relocs **head;
2806
2807 /* We must copy these reloc types into the output file.
2808 Create a reloc section in dynobj and make room for
2809 this reloc. */
2810 if (sreloc == NULL)
2811 {
2812 const char *name;
2813 bfd *dynobj;
2814
2815 name = (bfd_elf_string_from_elf_section
2816 (abfd,
2817 elf_elfheader (abfd)->e_shstrndx,
2818 elf_section_data (sec)->rel_hdr.sh_name));
2819 if (name == NULL)
2820 return false;
2821
2822 if (strncmp (name, ".rela", 5) != 0
2823 || strcmp (bfd_get_section_name (abfd, sec),
2824 name + 5) != 0)
2825 {
2826 (*_bfd_error_handler)
2827 (_("%s: bad relocation section name `%s\'"),
2828 bfd_archive_filename (abfd), name);
2829 bfd_set_error (bfd_error_bad_value);
2830 }
2831
2832 dynobj = htab->elf.dynobj;
2833 sreloc = bfd_get_section_by_name (dynobj, name);
2834 if (sreloc == NULL)
2835 {
2836 flagword flags;
2837
2838 sreloc = bfd_make_section (dynobj, name);
2839 flags = (SEC_HAS_CONTENTS | SEC_READONLY
2840 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2841 if ((sec->flags & SEC_ALLOC) != 0)
2842 flags |= SEC_ALLOC | SEC_LOAD;
2843 if (sreloc == NULL
2844 || ! bfd_set_section_flags (dynobj, sreloc, flags)
2845 || ! bfd_set_section_alignment (dynobj, sreloc, 3))
2846 return false;
2847 }
2848 elf_section_data (sec)->sreloc = sreloc;
2849 }
2850
2851 /* If this is a global symbol, we count the number of
2852 relocations we need for this symbol. */
2853 if (h != NULL)
2854 {
2855 head = &((struct ppc_link_hash_entry *) h)->dyn_relocs;
2856 }
2857 else
2858 {
2859 /* Track dynamic relocs needed for local syms too.
2860 We really need local syms available to do this
2861 easily. Oh well. */
2862
2863 asection *s;
2864 s = bfd_section_from_r_symndx (abfd, &htab->sym_sec,
2865 sec, r_symndx);
2866 if (s == NULL)
2867 return false;
2868
2869 head = ((struct ppc_dyn_relocs **)
2870 &elf_section_data (s)->local_dynrel);
2871 }
2872
2873 p = *head;
2874 if (p == NULL || p->sec != sec)
2875 {
2876 p = ((struct ppc_dyn_relocs *)
2877 bfd_alloc (htab->elf.dynobj,
2878 (bfd_size_type) sizeof *p));
2879 if (p == NULL)
2880 return false;
2881 p->next = *head;
2882 *head = p;
2883 p->sec = sec;
2884 p->count = 0;
2885 p->pc_count = 0;
2886 }
2887
2888 p->count += 1;
2889 if (!IS_ABSOLUTE_RELOC (r_type))
2890 p->pc_count += 1;
2891 }
2892 break;
2893
2894 default:
2895 break;
2896 }
2897 }
2898
2899 return true;
2900 }
2901
2902 /* Return the section that should be marked against GC for a given
2903 relocation. */
2904
2905 static asection *
2906 ppc64_elf_gc_mark_hook (sec, info, rel, h, sym)
2907 asection *sec;
2908 struct bfd_link_info *info ATTRIBUTE_UNUSED;
2909 Elf_Internal_Rela *rel;
2910 struct elf_link_hash_entry *h;
2911 Elf_Internal_Sym *sym;
2912 {
2913 asection *rsec = NULL;
2914
2915 if (h != NULL)
2916 {
2917 enum elf_ppc_reloc_type r_type;
2918 struct ppc_link_hash_entry *fdh;
2919
2920 r_type = (enum elf_ppc_reloc_type) ELF64_R_TYPE (rel->r_info);
2921 switch (r_type)
2922 {
2923 case R_PPC64_GNU_VTINHERIT:
2924 case R_PPC64_GNU_VTENTRY:
2925 break;
2926
2927 default:
2928 switch (h->root.type)
2929 {
2930 case bfd_link_hash_defined:
2931 case bfd_link_hash_defweak:
2932 fdh = (struct ppc_link_hash_entry *) h;
2933
2934 /* Function descriptor syms cause the associated
2935 function code sym section to be marked. */
2936 if (fdh->is_func_descriptor)
2937 rsec = fdh->oh->root.u.def.section;
2938
2939 /* Function entry syms return NULL if they are in .opd
2940 and are not ._start (or others undefined on the ld
2941 command line). Thus we avoid marking all function
2942 sections, as all functions are referenced in .opd. */
2943 else if ((fdh->oh != NULL
2944 && ((struct ppc_link_hash_entry *) fdh->oh)->is_entry)
2945 || elf_section_data (sec)->tdata == NULL)
2946 rsec = h->root.u.def.section;
2947 break;
2948
2949 case bfd_link_hash_common:
2950 rsec = h->root.u.c.p->section;
2951 break;
2952
2953 default:
2954 break;
2955 }
2956 }
2957 }
2958 else
2959 {
2960 asection **opd_sym_section;
2961
2962 rsec = bfd_section_from_elf_index (sec->owner, sym->st_shndx);
2963 opd_sym_section = (asection **) elf_section_data (rsec)->tdata;
2964 if (opd_sym_section != NULL)
2965 rsec = opd_sym_section[sym->st_value / 24];
2966 else if (elf_section_data (sec)->tdata != NULL)
2967 rsec = NULL;
2968 }
2969
2970 return rsec;
2971 }
2972
2973 /* Update the .got, .plt. and dynamic reloc reference counts for the
2974 section being removed. */
2975
2976 static boolean
2977 ppc64_elf_gc_sweep_hook (abfd, info, sec, relocs)
2978 bfd *abfd;
2979 struct bfd_link_info *info ATTRIBUTE_UNUSED;
2980 asection *sec;
2981 const Elf_Internal_Rela *relocs;
2982 {
2983 Elf_Internal_Shdr *symtab_hdr;
2984 struct elf_link_hash_entry **sym_hashes;
2985 bfd_signed_vma *local_got_refcounts;
2986 const Elf_Internal_Rela *rel, *relend;
2987
2988 elf_section_data (sec)->local_dynrel = NULL;
2989
2990 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2991 sym_hashes = elf_sym_hashes (abfd);
2992 local_got_refcounts = elf_local_got_refcounts (abfd);
2993
2994 relend = relocs + sec->reloc_count;
2995 for (rel = relocs; rel < relend; rel++)
2996 {
2997 unsigned long r_symndx;
2998 enum elf_ppc_reloc_type r_type;
2999 struct elf_link_hash_entry *h;
3000
3001 r_symndx = ELF64_R_SYM (rel->r_info);
3002 r_type = (enum elf_ppc_reloc_type) ELF64_R_TYPE (rel->r_info);
3003 switch (r_type)
3004 {
3005 case R_PPC64_GOT16:
3006 case R_PPC64_GOT16_DS:
3007 case R_PPC64_GOT16_HA:
3008 case R_PPC64_GOT16_HI:
3009 case R_PPC64_GOT16_LO:
3010 case R_PPC64_GOT16_LO_DS:
3011 if (r_symndx >= symtab_hdr->sh_info)
3012 {
3013 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3014 if (h->got.refcount > 0)
3015 h->got.refcount--;
3016 }
3017 else
3018 {
3019 if (local_got_refcounts[r_symndx] > 0)
3020 local_got_refcounts[r_symndx]--;
3021 }
3022 break;
3023
3024 case R_PPC64_PLT16_HA:
3025 case R_PPC64_PLT16_HI:
3026 case R_PPC64_PLT16_LO:
3027 case R_PPC64_PLT32:
3028 case R_PPC64_PLT64:
3029 if (r_symndx >= symtab_hdr->sh_info)
3030 {
3031 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3032 if (h->plt.refcount > 0)
3033 h->plt.refcount--;
3034 }
3035 break;
3036
3037 case R_PPC64_REL14:
3038 case R_PPC64_REL14_BRNTAKEN:
3039 case R_PPC64_REL14_BRTAKEN:
3040 case R_PPC64_REL24:
3041 if (r_symndx >= symtab_hdr->sh_info)
3042 {
3043 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3044 if (h->plt.refcount > 0)
3045 h->plt.refcount--;
3046 }
3047 break;
3048
3049 case R_PPC64_REL32:
3050 case R_PPC64_REL64:
3051 if (r_symndx >= symtab_hdr->sh_info)
3052 {
3053 struct ppc_link_hash_entry *eh;
3054 struct ppc_dyn_relocs **pp;
3055 struct ppc_dyn_relocs *p;
3056
3057 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3058 eh = (struct ppc_link_hash_entry *) h;
3059
3060 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
3061 if (p->sec == sec)
3062 {
3063 p->pc_count -= 1;
3064 p->count -= 1;
3065 if (p->count == 0)
3066 *pp = p->next;
3067 break;
3068 }
3069 }
3070 break;
3071
3072 case R_PPC64_ADDR14:
3073 case R_PPC64_ADDR14_BRNTAKEN:
3074 case R_PPC64_ADDR14_BRTAKEN:
3075 case R_PPC64_ADDR16:
3076 case R_PPC64_ADDR16_DS:
3077 case R_PPC64_ADDR16_HA:
3078 case R_PPC64_ADDR16_HI:
3079 case R_PPC64_ADDR16_HIGHER:
3080 case R_PPC64_ADDR16_HIGHERA:
3081 case R_PPC64_ADDR16_HIGHEST:
3082 case R_PPC64_ADDR16_HIGHESTA:
3083 case R_PPC64_ADDR16_LO:
3084 case R_PPC64_ADDR16_LO_DS:
3085 case R_PPC64_ADDR24:
3086 case R_PPC64_ADDR30:
3087 case R_PPC64_ADDR32:
3088 case R_PPC64_ADDR64:
3089 case R_PPC64_UADDR16:
3090 case R_PPC64_UADDR32:
3091 case R_PPC64_UADDR64:
3092 case R_PPC64_TOC:
3093 if (r_symndx >= symtab_hdr->sh_info)
3094 {
3095 struct ppc_link_hash_entry *eh;
3096 struct ppc_dyn_relocs **pp;
3097 struct ppc_dyn_relocs *p;
3098
3099 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3100 eh = (struct ppc_link_hash_entry *) h;
3101
3102 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
3103 if (p->sec == sec)
3104 {
3105 p->count -= 1;
3106 if (p->count == 0)
3107 *pp = p->next;
3108 break;
3109 }
3110 }
3111 break;
3112
3113 default:
3114 break;
3115 }
3116 }
3117 return true;
3118 }
3119
3120 /* Called via elf_link_hash_traverse to transfer dynamic linking
3121 information on function code symbol entries to their corresponding
3122 function descriptor symbol entries. */
3123 static boolean
3124 func_desc_adjust (h, inf)
3125 struct elf_link_hash_entry *h;
3126 PTR inf;
3127 {
3128 struct bfd_link_info *info;
3129 struct ppc_link_hash_table *htab;
3130
3131 if (h->root.type == bfd_link_hash_indirect)
3132 return true;
3133
3134 if (h->root.type == bfd_link_hash_warning)
3135 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3136
3137 info = (struct bfd_link_info *) inf;
3138 htab = ppc_hash_table (info);
3139
3140 /* If this is a function code symbol, transfer dynamic linking
3141 information to the function descriptor symbol. */
3142 if (!((struct ppc_link_hash_entry *) h)->is_func)
3143 return true;
3144
3145 if (h->root.type == bfd_link_hash_undefweak
3146 && (h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR))
3147 htab->have_undefweak = true;
3148
3149 if (h->plt.refcount > 0
3150 && h->root.root.string[0] == '.'
3151 && h->root.root.string[1] != '\0')
3152 {
3153 struct elf_link_hash_entry *fdh = ((struct ppc_link_hash_entry *) h)->oh;
3154 boolean force_local;
3155
3156 /* Find the corresponding function descriptor symbol. Create it
3157 as undefined if necessary. */
3158
3159 if (fdh == NULL)
3160 fdh = elf_link_hash_lookup (&htab->elf, h->root.root.string + 1,
3161 false, false, true);
3162
3163 if (fdh == NULL
3164 && info->shared
3165 && (h->root.type == bfd_link_hash_undefined
3166 || h->root.type == bfd_link_hash_undefweak))
3167 {
3168 bfd *abfd;
3169 asymbol *newsym;
3170 struct bfd_link_hash_entry *bh;
3171
3172 abfd = h->root.u.undef.abfd;
3173 newsym = bfd_make_empty_symbol (abfd);
3174 newsym->name = h->root.root.string + 1;
3175 newsym->section = bfd_und_section_ptr;
3176 newsym->value = 0;
3177 newsym->flags = BSF_OBJECT;
3178 if (h->root.type == bfd_link_hash_undefweak)
3179 newsym->flags |= BSF_WEAK;
3180
3181 bh = &fdh->root;
3182 if ( !(_bfd_generic_link_add_one_symbol
3183 (info, abfd, newsym->name, newsym->flags,
3184 newsym->section, newsym->value, NULL, false, false, &bh)))
3185 {
3186 return false;
3187 }
3188 fdh = (struct elf_link_hash_entry *) bh;
3189 fdh->elf_link_hash_flags &= ~ELF_LINK_NON_ELF;
3190 }
3191
3192 if (fdh != NULL
3193 && (fdh->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0
3194 && (info->shared
3195 || (fdh->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
3196 || (fdh->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) != 0))
3197 {
3198 if (fdh->dynindx == -1)
3199 if (! bfd_elf64_link_record_dynamic_symbol (info, fdh))
3200 return false;
3201 fdh->elf_link_hash_flags |= (h->elf_link_hash_flags
3202 & (ELF_LINK_HASH_REF_REGULAR
3203 | ELF_LINK_HASH_REF_DYNAMIC
3204 | ELF_LINK_HASH_REF_REGULAR_NONWEAK
3205 | ELF_LINK_NON_GOT_REF));
3206 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
3207 {
3208 fdh->plt.refcount = h->plt.refcount;
3209 fdh->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
3210 }
3211 ((struct ppc_link_hash_entry *) fdh)->is_func_descriptor = 1;
3212 ((struct ppc_link_hash_entry *) fdh)->oh = h;
3213 ((struct ppc_link_hash_entry *) h)->oh = fdh;
3214 }
3215
3216 /* Now that the info is on the function descriptor, clear the
3217 function code sym info. Any function code syms for which we
3218 don't have a definition in a regular file, we force local.
3219 This prevents a shared library from exporting syms that have
3220 been imported from another library. Function code syms that
3221 are really in the library we must leave global to prevent the
3222 linker dragging in a definition from a static library. */
3223 force_local = (info->shared
3224 && ((h->elf_link_hash_flags
3225 & ELF_LINK_HASH_DEF_REGULAR) == 0
3226 || fdh == NULL
3227 || (fdh->elf_link_hash_flags
3228 & ELF_LINK_HASH_DEF_REGULAR) == 0
3229 || (fdh->elf_link_hash_flags
3230 & ELF_LINK_FORCED_LOCAL) != 0));
3231 _bfd_elf_link_hash_hide_symbol (info, h, force_local);
3232 }
3233
3234 return true;
3235 }
3236
3237 #define MIN_SAVE_FPR 14
3238 #define MAX_SAVE_FPR 31
3239
3240 /* Called near the start of bfd_elf_size_dynamic_sections. We use
3241 this hook to a) provide some gcc support functions, and b) transfer
3242 dynamic linking information gathered so far on function code symbol
3243 entries, to their corresponding function descriptor symbol entries. */
3244 static boolean
3245 ppc64_elf_func_desc_adjust (obfd, info)
3246 bfd *obfd ATTRIBUTE_UNUSED;
3247 struct bfd_link_info *info;
3248 {
3249 struct ppc_link_hash_table *htab;
3250 unsigned int lowest_savef = MAX_SAVE_FPR + 2;
3251 unsigned int lowest_restf = MAX_SAVE_FPR + 2;
3252 unsigned int i;
3253 struct elf_link_hash_entry *h;
3254 bfd_byte *p;
3255 char sym[10];
3256
3257 htab = ppc_hash_table (info);
3258
3259 if (htab->sfpr == NULL)
3260 /* We don't have any relocs. */
3261 return true;
3262
3263 /* First provide any missing ._savef* and ._restf* functions. */
3264 memcpy (sym, "._savef14", 10);
3265 for (i = MIN_SAVE_FPR; i <= MAX_SAVE_FPR; i++)
3266 {
3267 sym[7] = i / 10 + '0';
3268 sym[8] = i % 10 + '0';
3269 h = elf_link_hash_lookup (&htab->elf, sym, false, false, true);
3270 if (h != NULL
3271 && h->root.type == bfd_link_hash_undefined)
3272 {
3273 if (lowest_savef > i)
3274 lowest_savef = i;
3275 h->root.type = bfd_link_hash_defined;
3276 h->root.u.def.section = htab->sfpr;
3277 h->root.u.def.value = (i - lowest_savef) * 4;
3278 h->type = STT_FUNC;
3279 h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR;
3280 _bfd_elf_link_hash_hide_symbol (info, h, info->shared);
3281 }
3282 }
3283
3284 memcpy (sym, "._restf14", 10);
3285 for (i = MIN_SAVE_FPR; i <= MAX_SAVE_FPR; i++)
3286 {
3287 sym[7] = i / 10 + '0';
3288 sym[8] = i % 10 + '0';
3289 h = elf_link_hash_lookup (&htab->elf, sym, false, false, true);
3290 if (h != NULL
3291 && h->root.type == bfd_link_hash_undefined)
3292 {
3293 if (lowest_restf > i)
3294 lowest_restf = i;
3295 h->root.type = bfd_link_hash_defined;
3296 h->root.u.def.section = htab->sfpr;
3297 h->root.u.def.value = ((MAX_SAVE_FPR + 2 - lowest_savef) * 4
3298 + (i - lowest_restf) * 4);
3299 h->type = STT_FUNC;
3300 h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR;
3301 _bfd_elf_link_hash_hide_symbol (info, h, info->shared);
3302 }
3303 }
3304
3305 elf_link_hash_traverse (&htab->elf, func_desc_adjust, (PTR) info);
3306
3307 htab->sfpr->_raw_size = ((MAX_SAVE_FPR + 2 - lowest_savef) * 4
3308 + (MAX_SAVE_FPR + 2 - lowest_restf) * 4);
3309
3310 if (htab->sfpr->_raw_size == 0)
3311 {
3312 if (!htab->have_undefweak)
3313 {
3314 _bfd_strip_section_from_output (info, htab->sfpr);
3315 return true;
3316 }
3317
3318 htab->sfpr->_raw_size = 4;
3319 }
3320
3321 p = (bfd_byte *) bfd_alloc (htab->elf.dynobj, htab->sfpr->_raw_size);
3322 if (p == NULL)
3323 return false;
3324 htab->sfpr->contents = p;
3325
3326 for (i = lowest_savef; i <= MAX_SAVE_FPR; i++)
3327 {
3328 unsigned int fpr = i << 21;
3329 unsigned int stackoff = (1 << 16) - (MAX_SAVE_FPR + 1 - i) * 8;
3330 bfd_put_32 (htab->elf.dynobj, STFD_FR0_0R1 + fpr + stackoff, p);
3331 p += 4;
3332 }
3333 if (lowest_savef <= MAX_SAVE_FPR)
3334 {
3335 bfd_put_32 (htab->elf.dynobj, BLR, p);
3336 p += 4;
3337 }
3338
3339 for (i = lowest_restf; i <= MAX_SAVE_FPR; i++)
3340 {
3341 unsigned int fpr = i << 21;
3342 unsigned int stackoff = (1 << 16) - (MAX_SAVE_FPR + 1 - i) * 8;
3343 bfd_put_32 (htab->elf.dynobj, LFD_FR0_0R1 + fpr + stackoff, p);
3344 p += 4;
3345 }
3346 if (lowest_restf <= MAX_SAVE_FPR
3347 || htab->sfpr->_raw_size == 4)
3348 {
3349 bfd_put_32 (htab->elf.dynobj, BLR, p);
3350 }
3351
3352 return true;
3353 }
3354
3355 /* Adjust a symbol defined by a dynamic object and referenced by a
3356 regular object. The current definition is in some section of the
3357 dynamic object, but we're not including those sections. We have to
3358 change the definition to something the rest of the link can
3359 understand. */
3360
3361 static boolean
3362 ppc64_elf_adjust_dynamic_symbol (info, h)
3363 struct bfd_link_info *info;
3364 struct elf_link_hash_entry *h;
3365 {
3366 struct ppc_link_hash_table *htab;
3367 struct ppc_link_hash_entry * eh;
3368 struct ppc_dyn_relocs *p;
3369 asection *s;
3370 unsigned int power_of_two;
3371
3372 htab = ppc_hash_table (info);
3373
3374 /* Deal with function syms. */
3375 if (h->type == STT_FUNC
3376 || (h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) != 0)
3377 {
3378 /* Clear procedure linkage table information for any symbol that
3379 won't need a .plt entry. */
3380 if (!((struct ppc_link_hash_entry *) h)->is_func_descriptor
3381 || h->plt.refcount <= 0
3382 || (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0
3383 || (! info->shared
3384 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) == 0
3385 && (h->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) == 0))
3386 {
3387 h->plt.offset = (bfd_vma) -1;
3388 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
3389 }
3390 return true;
3391 }
3392 else
3393 h->plt.offset = (bfd_vma) -1;
3394
3395 /* If this is a weak symbol, and there is a real definition, the
3396 processor independent code will have arranged for us to see the
3397 real definition first, and we can just use the same value. */
3398 if (h->weakdef != NULL)
3399 {
3400 BFD_ASSERT (h->weakdef->root.type == bfd_link_hash_defined
3401 || h->weakdef->root.type == bfd_link_hash_defweak);
3402 h->root.u.def.section = h->weakdef->root.u.def.section;
3403 h->root.u.def.value = h->weakdef->root.u.def.value;
3404 return true;
3405 }
3406
3407 /* This is a reference to a symbol defined by a dynamic object which
3408 is not a function. */
3409
3410 /* If we are creating a shared library, we must presume that the
3411 only references to the symbol are via the global offset table.
3412 For such cases we need not do anything here; the relocations will
3413 be handled correctly by relocate_section. */
3414 if (info->shared)
3415 return true;
3416
3417 /* If there are no references to this symbol that do not use the
3418 GOT, we don't need to generate a copy reloc. */
3419 if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0)
3420 return true;
3421
3422 eh = (struct ppc_link_hash_entry *) h;
3423 for (p = eh->dyn_relocs; p != NULL; p = p->next)
3424 {
3425 s = p->sec->output_section;
3426 if (s != NULL && (s->flags & SEC_READONLY) != 0)
3427 break;
3428 }
3429
3430 /* If we didn't find any dynamic relocs in read-only sections, then
3431 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
3432 if (p == NULL)
3433 {
3434 h->elf_link_hash_flags &= ~ELF_LINK_NON_GOT_REF;
3435 return true;
3436 }
3437
3438 /* We must allocate the symbol in our .dynbss section, which will
3439 become part of the .bss section of the executable. There will be
3440 an entry for this symbol in the .dynsym section. The dynamic
3441 object will contain position independent code, so all references
3442 from the dynamic object to this symbol will go through the global
3443 offset table. The dynamic linker will use the .dynsym entry to
3444 determine the address it must put in the global offset table, so
3445 both the dynamic object and the regular object will refer to the
3446 same memory location for the variable. */
3447
3448 /* We must generate a R_PPC_COPY reloc to tell the dynamic linker to
3449 copy the initial value out of the dynamic object and into the
3450 runtime process image. We need to remember the offset into the
3451 .rela.bss section we are going to use. */
3452 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
3453 {
3454 htab->srelbss->_raw_size += sizeof (Elf64_External_Rela);
3455 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_COPY;
3456 }
3457
3458 /* We need to figure out the alignment required for this symbol. I
3459 have no idea how ELF linkers handle this. */
3460 power_of_two = bfd_log2 (h->size);
3461 if (power_of_two > 4)
3462 power_of_two = 4;
3463
3464 /* Apply the required alignment. */
3465 s = htab->sdynbss;
3466 s->_raw_size = BFD_ALIGN (s->_raw_size, (bfd_size_type) (1 << power_of_two));
3467 if (power_of_two > bfd_get_section_alignment (htab->elf.dynobj, s))
3468 {
3469 if (! bfd_set_section_alignment (htab->elf.dynobj, s, power_of_two))
3470 return false;
3471 }
3472
3473 /* Define the symbol as being at this point in the section. */
3474 h->root.u.def.section = s;
3475 h->root.u.def.value = s->_raw_size;
3476
3477 /* Increment the section size to make room for the symbol. */
3478 s->_raw_size += h->size;
3479
3480 return true;
3481 }
3482
3483 /* If given a function descriptor symbol, hide both the function code
3484 sym and the descriptor. */
3485 static void
3486 ppc64_elf_hide_symbol (info, h, force_local)
3487 struct bfd_link_info *info;
3488 struct elf_link_hash_entry *h;
3489 boolean force_local;
3490 {
3491 _bfd_elf_link_hash_hide_symbol (info, h, force_local);
3492
3493 if (((struct ppc_link_hash_entry *) h)->is_func_descriptor)
3494 {
3495 struct elf_link_hash_entry *fh = ((struct ppc_link_hash_entry *) h)->oh;
3496
3497 if (fh == NULL)
3498 {
3499 const char *p, *q;
3500 struct ppc_link_hash_table *htab;
3501 char save;
3502
3503 /* We aren't supposed to use alloca in BFD because on
3504 systems which do not have alloca the version in libiberty
3505 calls xmalloc, which might cause the program to crash
3506 when it runs out of memory. This function doesn't have a
3507 return status, so there's no way to gracefully return an
3508 error. So cheat. We know that string[-1] can be safely
3509 dereferenced; It's either a string in an ELF string
3510 table, or allocated in an objalloc structure. */
3511
3512 p = h->root.root.string - 1;
3513 save = *p;
3514 *(char *) p = '.';
3515 htab = ppc_hash_table (info);
3516 fh = elf_link_hash_lookup (&htab->elf, p, false, false, false);
3517 *(char *) p = save;
3518
3519 /* Unfortunately, if it so happens that the string we were
3520 looking for was allocated immediately before this string,
3521 then we overwrote the string terminator. That's the only
3522 reason the lookup should fail. */
3523 if (fh == NULL)
3524 {
3525 q = h->root.root.string + strlen (h->root.root.string);
3526 while (q >= h->root.root.string && *q == *p)
3527 --q, --p;
3528 if (q < h->root.root.string && *p == '.')
3529 fh = elf_link_hash_lookup (&htab->elf, p, false, false, false);
3530 }
3531 if (fh != NULL)
3532 {
3533 ((struct ppc_link_hash_entry *) h)->oh = fh;
3534 ((struct ppc_link_hash_entry *) fh)->oh = h;
3535 }
3536 }
3537 if (fh != NULL)
3538 _bfd_elf_link_hash_hide_symbol (info, fh, force_local);
3539 }
3540 }
3541
3542 static boolean
3543 edit_opd (obfd, info)
3544 bfd *obfd;
3545 struct bfd_link_info *info;
3546 {
3547 bfd *ibfd;
3548 unsigned int bfd_indx;
3549
3550 for (bfd_indx = 0, ibfd = info->input_bfds;
3551 ibfd != NULL;
3552 ibfd = ibfd->link_next, bfd_indx++)
3553 {
3554 asection *sec;
3555 Elf_Internal_Rela *relstart, *rel, *relend;
3556 Elf_Internal_Shdr *symtab_hdr;
3557 Elf_Internal_Sym *local_syms;
3558 struct elf_link_hash_entry **sym_hashes;
3559 bfd_vma offset;
3560 long *adjust;
3561 boolean need_edit;
3562
3563 sec = bfd_get_section_by_name (ibfd, ".opd");
3564 if (sec == NULL)
3565 continue;
3566
3567 adjust = (long *) elf_section_data (sec)->tdata;
3568 BFD_ASSERT (adjust != NULL);
3569 memset (adjust, 0, (size_t) sec->_raw_size * sizeof (long) / 24);
3570
3571 if (sec->output_section == bfd_abs_section_ptr)
3572 continue;
3573
3574 /* Look through the section relocs. */
3575 if ((sec->flags & SEC_RELOC) == 0 || sec->reloc_count == 0)
3576 continue;
3577
3578 local_syms = NULL;
3579 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
3580 sym_hashes = elf_sym_hashes (ibfd);
3581
3582 /* Read the relocations. */
3583 relstart = _bfd_elf64_link_read_relocs (obfd, sec, (PTR) NULL,
3584 (Elf_Internal_Rela *) NULL,
3585 info->keep_memory);
3586 if (relstart == NULL)
3587 return false;
3588
3589 /* First run through the relocs to check they are sane, and to
3590 determine whether we need to edit this opd section. */
3591 need_edit = false;
3592 offset = 0;
3593 relend = relstart + sec->reloc_count;
3594 for (rel = relstart; rel < relend; rel++)
3595 {
3596 enum elf_ppc_reloc_type r_type;
3597 unsigned long r_symndx;
3598 asection *sym_sec;
3599 struct elf_link_hash_entry *h;
3600 Elf_Internal_Sym *sym;
3601
3602 /* .opd contains a regular array of 24 byte entries. We're
3603 only interested in the reloc pointing to a function entry
3604 point. */
3605 r_type = (enum elf_ppc_reloc_type) ELF64_R_TYPE (rel->r_info);
3606 if (r_type == R_PPC64_TOC)
3607 continue;
3608
3609 if (r_type != R_PPC64_ADDR64)
3610 {
3611 (*_bfd_error_handler)
3612 (_("%s: unexpected reloc type %u in .opd section"),
3613 bfd_archive_filename (ibfd), r_type);
3614 need_edit = false;
3615 break;
3616 }
3617
3618 if (rel + 1 >= relend)
3619 continue;
3620 r_type = (enum elf_ppc_reloc_type) ELF64_R_TYPE ((rel + 1)->r_info);
3621 if (r_type != R_PPC64_TOC)
3622 continue;
3623
3624 if (rel->r_offset != offset)
3625 {
3626 /* If someone messes with .opd alignment then after a
3627 "ld -r" we might have padding in the middle of .opd.
3628 Also, there's nothing to prevent someone putting
3629 something silly in .opd with the assembler. No .opd
3630 optimization for them! */
3631 (*_bfd_error_handler)
3632 (_("%s: .opd is not a regular array of opd entries"),
3633 bfd_archive_filename (ibfd));
3634 need_edit = false;
3635 break;
3636 }
3637
3638 r_symndx = ELF64_R_SYM (rel->r_info);
3639 sym_sec = NULL;
3640 h = NULL;
3641 sym = NULL;
3642 if (r_symndx >= symtab_hdr->sh_info)
3643 {
3644 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3645 while (h->root.type == bfd_link_hash_indirect
3646 || h->root.type == bfd_link_hash_warning)
3647 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3648 if (h->root.type == bfd_link_hash_defined
3649 || h->root.type == bfd_link_hash_defweak)
3650 sym_sec = h->root.u.def.section;
3651 }
3652 else
3653 {
3654 if (local_syms == NULL)
3655 {
3656 local_syms = (Elf_Internal_Sym *) symtab_hdr->contents;
3657 if (local_syms == NULL)
3658 local_syms = bfd_elf_get_elf_syms (ibfd, symtab_hdr,
3659 symtab_hdr->sh_info, 0,
3660 NULL, NULL, NULL);
3661 if (local_syms == NULL)
3662 goto error_free_rel;
3663 }
3664 sym = local_syms + r_symndx;
3665 if ((sym->st_shndx != SHN_UNDEF
3666 && sym->st_shndx < SHN_LORESERVE)
3667 || sym->st_shndx > SHN_HIRESERVE)
3668 sym_sec = bfd_section_from_elf_index (ibfd, sym->st_shndx);
3669 }
3670
3671 if (sym_sec == NULL || sym_sec->owner == NULL)
3672 {
3673 (*_bfd_error_handler)
3674 (_("%s: undefined sym `%s' in .opd section"),
3675 bfd_archive_filename (ibfd),
3676 h != NULL ? h->root.root.string : "<local symbol>");
3677 need_edit = false;
3678 break;
3679 }
3680
3681 /* opd entries are always for functions defined in the
3682 current input bfd. If the symbol isn't defined in the
3683 input bfd, then we won't be using the function in this
3684 bfd; It must be defined in a linkonce section in another
3685 bfd, or is weak. It's also possible that we are
3686 discarding the function due to a linker script /DISCARD/,
3687 which we test for via the output_section. */
3688 if (sym_sec->owner != ibfd
3689 || sym_sec->output_section == bfd_abs_section_ptr)
3690 need_edit = true;
3691
3692 offset += 24;
3693 }
3694
3695 if (need_edit)
3696 {
3697 Elf_Internal_Rela *write_rel;
3698 bfd_byte *rptr, *wptr;
3699 boolean skip;
3700
3701 /* This seems a waste of time as input .opd sections are all
3702 zeros as generated by gcc, but I suppose there's no reason
3703 this will always be so. We might start putting something in
3704 the third word of .opd entries. */
3705 if ((sec->flags & SEC_IN_MEMORY) == 0)
3706 {
3707 bfd_byte *loc = bfd_alloc (ibfd, sec->_raw_size);
3708 if (loc == NULL
3709 || !bfd_get_section_contents (ibfd, sec, loc, (bfd_vma) 0,
3710 sec->_raw_size))
3711 {
3712 if (local_syms != NULL
3713 && symtab_hdr->contents != (unsigned char *) local_syms)
3714 free (local_syms);
3715 error_free_rel:
3716 if (elf_section_data (sec)->relocs != relstart)
3717 free (relstart);
3718 return false;
3719 }
3720 sec->contents = loc;
3721 sec->flags |= (SEC_IN_MEMORY | SEC_HAS_CONTENTS);
3722 }
3723
3724 elf_section_data (sec)->relocs = relstart;
3725
3726 wptr = sec->contents;
3727 rptr = sec->contents;
3728 write_rel = relstart;
3729 skip = false;
3730 offset = 0;
3731 for (rel = relstart; rel < relend; rel++)
3732 {
3733 if (rel->r_offset == offset)
3734 {
3735 unsigned long r_symndx;
3736 asection *sym_sec;
3737 struct elf_link_hash_entry *h;
3738 Elf_Internal_Sym *sym;
3739
3740 r_symndx = ELF64_R_SYM (rel->r_info);
3741 sym_sec = NULL;
3742 h = NULL;
3743 sym = NULL;
3744 if (r_symndx >= symtab_hdr->sh_info)
3745 {
3746 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3747 while (h->root.type == bfd_link_hash_indirect
3748 || h->root.type == bfd_link_hash_warning)
3749 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3750 if (h->root.type == bfd_link_hash_defined
3751 || h->root.type == bfd_link_hash_defweak)
3752 sym_sec = h->root.u.def.section;
3753 }
3754 else
3755 {
3756 sym = local_syms + r_symndx;
3757 if ((sym->st_shndx != SHN_UNDEF
3758 && sym->st_shndx < SHN_LORESERVE)
3759 || sym->st_shndx > SHN_HIRESERVE)
3760 sym_sec = bfd_section_from_elf_index (ibfd,
3761 sym->st_shndx);
3762 }
3763
3764 skip = (sym_sec->owner != ibfd
3765 || sym_sec->output_section == bfd_abs_section_ptr);
3766 if (skip)
3767 {
3768 if (h != NULL && sym_sec->owner == ibfd)
3769 {
3770 /* Arrange for the function descriptor sym
3771 to be dropped. */
3772 struct elf_link_hash_entry *fdh;
3773 struct ppc_link_hash_entry *fh;
3774
3775 fh = (struct ppc_link_hash_entry *) h;
3776 BFD_ASSERT (fh->is_func);
3777 fdh = fh->oh;
3778 fdh->root.u.def.value = 0;
3779 fdh->root.u.def.section = sym_sec;
3780 }
3781 }
3782 else
3783 {
3784 /* We'll be keeping this opd entry. */
3785
3786 if (h != NULL)
3787 {
3788 /* Redefine the function descriptor symbol
3789 to this location in the opd section.
3790 We've checked above that opd relocs are
3791 ordered. */
3792 struct elf_link_hash_entry *fdh;
3793 struct ppc_link_hash_entry *fh;
3794
3795 fh = (struct ppc_link_hash_entry *) h;
3796 BFD_ASSERT (fh->is_func);
3797 fdh = fh->oh;
3798 fdh->root.u.def.value = wptr - sec->contents;
3799 }
3800 else
3801 {
3802 /* Local syms are a bit tricky. We could
3803 tweak them as they can be cached, but
3804 we'd need to look through the local syms
3805 for the function descriptor sym which we
3806 don't have at the moment. So keep an
3807 array of adjustments. */
3808 adjust[rel->r_offset / 24] = wptr - rptr;
3809 }
3810
3811 if (wptr != rptr)
3812 memcpy (wptr, rptr, 24);
3813 wptr += 24;
3814 }
3815 rptr += 24;
3816 offset += 24;
3817 }
3818
3819 /* We need to adjust any reloc offsets to point to the
3820 new opd entries. While we're at it, we may as well
3821 remove redundant relocs. */
3822 if (!skip)
3823 {
3824 rel->r_offset += wptr - rptr;
3825 if (write_rel != rel)
3826 memcpy (write_rel, rel, sizeof (*rel));
3827 ++write_rel;
3828 }
3829 }
3830
3831 sec->_cooked_size = wptr - sec->contents;
3832 sec->reloc_count = write_rel - relstart;
3833 }
3834 else if (elf_section_data (sec)->relocs != relstart)
3835 free (relstart);
3836
3837 if (local_syms != NULL
3838 && symtab_hdr->contents != (unsigned char *) local_syms)
3839 {
3840 if (!info->keep_memory)
3841 free (local_syms);
3842 else
3843 symtab_hdr->contents = (unsigned char *) local_syms;
3844 }
3845 }
3846
3847 return true;
3848 }
3849
3850 /* This is the condition under which ppc64_elf_finish_dynamic_symbol
3851 will be called from elflink.h. If elflink.h doesn't call our
3852 finish_dynamic_symbol routine, we'll need to do something about
3853 initializing any .plt and .got entries in ppc64_elf_relocate_section. */
3854 #define WILL_CALL_FINISH_DYNAMIC_SYMBOL(DYN, INFO, H) \
3855 ((DYN) \
3856 && ((INFO)->shared \
3857 || ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0) \
3858 && ((H)->dynindx != -1 \
3859 || ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0))
3860
3861 /* Allocate space in .plt, .got and associated reloc sections for
3862 dynamic relocs. */
3863
3864 static boolean
3865 allocate_dynrelocs (h, inf)
3866 struct elf_link_hash_entry *h;
3867 PTR inf;
3868 {
3869 struct bfd_link_info *info;
3870 struct ppc_link_hash_table *htab;
3871 asection *s;
3872 struct ppc_link_hash_entry *eh;
3873 struct ppc_dyn_relocs *p;
3874
3875 if (h->root.type == bfd_link_hash_indirect)
3876 return true;
3877
3878 if (h->root.type == bfd_link_hash_warning)
3879 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3880
3881 info = (struct bfd_link_info *) inf;
3882 htab = ppc_hash_table (info);
3883
3884 if (htab->elf.dynamic_sections_created
3885 && h->plt.refcount > 0
3886 && h->dynindx != -1)
3887 {
3888 BFD_ASSERT (((struct ppc_link_hash_entry *) h)->is_func_descriptor);
3889
3890 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, info, h))
3891 {
3892 /* If this is the first .plt entry, make room for the special
3893 first entry. */
3894 s = htab->splt;
3895 if (s->_raw_size == 0)
3896 s->_raw_size += PLT_INITIAL_ENTRY_SIZE;
3897
3898 h->plt.offset = s->_raw_size;
3899
3900 /* Make room for this entry. */
3901 s->_raw_size += PLT_ENTRY_SIZE;
3902
3903 /* Make room for the .glink code. */
3904 s = htab->sglink;
3905 if (s->_raw_size == 0)
3906 s->_raw_size += GLINK_CALL_STUB_SIZE;
3907 /* We need bigger stubs past index 32767. */
3908 if (s->_raw_size >= GLINK_CALL_STUB_SIZE + 32768*2*4)
3909 s->_raw_size += 4;
3910 s->_raw_size += 2*4;
3911
3912 /* We also need to make an entry in the .rela.plt section. */
3913 s = htab->srelplt;
3914 s->_raw_size += sizeof (Elf64_External_Rela);
3915 }
3916 else
3917 {
3918 h->plt.offset = (bfd_vma) -1;
3919 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
3920 }
3921 }
3922 else
3923 {
3924 h->plt.offset = (bfd_vma) -1;
3925 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
3926 }
3927
3928 if (h->got.refcount > 0)
3929 {
3930 boolean dyn;
3931
3932 /* Make sure this symbol is output as a dynamic symbol.
3933 Undefined weak syms won't yet be marked as dynamic. */
3934 if (h->dynindx == -1
3935 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
3936 {
3937 if (! bfd_elf64_link_record_dynamic_symbol (info, h))
3938 return false;
3939 }
3940
3941 s = htab->sgot;
3942 h->got.offset = s->_raw_size;
3943 s->_raw_size += 8;
3944 dyn = htab->elf.dynamic_sections_created;
3945 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info, h))
3946 htab->srelgot->_raw_size += sizeof (Elf64_External_Rela);
3947 }
3948 else
3949 h->got.offset = (bfd_vma) -1;
3950
3951 eh = (struct ppc_link_hash_entry *) h;
3952 if (eh->dyn_relocs == NULL)
3953 return true;
3954
3955 /* In the shared -Bsymbolic case, discard space allocated for
3956 dynamic pc-relative relocs against symbols which turn out to be
3957 defined in regular objects. For the normal shared case, discard
3958 space for relocs that have become local due to symbol visibility
3959 changes. */
3960
3961 if (info->shared)
3962 {
3963 if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) != 0
3964 && ((h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0
3965 || info->symbolic))
3966 {
3967 struct ppc_dyn_relocs **pp;
3968
3969 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
3970 {
3971 p->count -= p->pc_count;
3972 p->pc_count = 0;
3973 if (p->count == 0)
3974 *pp = p->next;
3975 else
3976 pp = &p->next;
3977 }
3978 }
3979 }
3980 else
3981 {
3982 /* For the non-shared case, discard space for relocs against
3983 symbols which turn out to need copy relocs or are not
3984 dynamic. */
3985
3986 if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
3987 && (((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
3988 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
3989 || (htab->elf.dynamic_sections_created
3990 && (h->root.type == bfd_link_hash_undefweak
3991 || h->root.type == bfd_link_hash_undefined))))
3992 {
3993 /* Make sure this symbol is output as a dynamic symbol.
3994 Undefined weak syms won't yet be marked as dynamic. */
3995 if (h->dynindx == -1
3996 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
3997 {
3998 if (! bfd_elf64_link_record_dynamic_symbol (info, h))
3999 return false;
4000 }
4001
4002 /* If that succeeded, we know we'll be keeping all the
4003 relocs. */
4004 if (h->dynindx != -1)
4005 goto keep;
4006 }
4007
4008 eh->dyn_relocs = NULL;
4009
4010 keep: ;
4011 }
4012
4013 /* Finally, allocate space. */
4014 for (p = eh->dyn_relocs; p != NULL; p = p->next)
4015 {
4016 asection *sreloc = elf_section_data (p->sec)->sreloc;
4017 sreloc->_raw_size += p->count * sizeof (Elf64_External_Rela);
4018 }
4019
4020 return true;
4021 }
4022
4023 /* Find any dynamic relocs that apply to read-only sections. */
4024
4025 static boolean
4026 readonly_dynrelocs (h, inf)
4027 struct elf_link_hash_entry *h;
4028 PTR inf;
4029 {
4030 struct ppc_link_hash_entry *eh;
4031 struct ppc_dyn_relocs *p;
4032
4033 if (h->root.type == bfd_link_hash_warning)
4034 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4035
4036 eh = (struct ppc_link_hash_entry *) h;
4037 for (p = eh->dyn_relocs; p != NULL; p = p->next)
4038 {
4039 asection *s = p->sec->output_section;
4040
4041 if (s != NULL && (s->flags & SEC_READONLY) != 0)
4042 {
4043 struct bfd_link_info *info = (struct bfd_link_info *) inf;
4044
4045 info->flags |= DF_TEXTREL;
4046
4047 /* Not an error, just cut short the traversal. */
4048 return false;
4049 }
4050 }
4051 return true;
4052 }
4053
4054 /* Set the sizes of the dynamic sections. */
4055
4056 static boolean
4057 ppc64_elf_size_dynamic_sections (output_bfd, info)
4058 bfd *output_bfd ATTRIBUTE_UNUSED;
4059 struct bfd_link_info *info;
4060 {
4061 struct ppc_link_hash_table *htab;
4062 bfd *dynobj;
4063 asection *s;
4064 boolean relocs;
4065 bfd *ibfd;
4066
4067 htab = ppc_hash_table (info);
4068 dynobj = htab->elf.dynobj;
4069 if (dynobj == NULL)
4070 abort ();
4071
4072 if (htab->elf.dynamic_sections_created)
4073 {
4074 /* Set the contents of the .interp section to the interpreter. */
4075 if (! info->shared)
4076 {
4077 s = bfd_get_section_by_name (dynobj, ".interp");
4078 if (s == NULL)
4079 abort ();
4080 s->_raw_size = sizeof ELF_DYNAMIC_INTERPRETER;
4081 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
4082 }
4083 }
4084
4085 /* Set up .got offsets for local syms, and space for local dynamic
4086 relocs. */
4087 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
4088 {
4089 bfd_signed_vma *local_got;
4090 bfd_signed_vma *end_local_got;
4091 bfd_size_type locsymcount;
4092 Elf_Internal_Shdr *symtab_hdr;
4093 asection *srel;
4094
4095 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
4096 continue;
4097
4098 for (s = ibfd->sections; s != NULL; s = s->next)
4099 {
4100 struct ppc_dyn_relocs *p;
4101
4102 for (p = *((struct ppc_dyn_relocs **)
4103 &elf_section_data (s)->local_dynrel);
4104 p != NULL;
4105 p = p->next)
4106 {
4107 if (!bfd_is_abs_section (p->sec)
4108 && bfd_is_abs_section (p->sec->output_section))
4109 {
4110 /* Input section has been discarded, either because
4111 it is a copy of a linkonce section or due to
4112 linker script /DISCARD/, so we'll be discarding
4113 the relocs too. */
4114 }
4115 else if (p->count != 0)
4116 {
4117 srel = elf_section_data (p->sec)->sreloc;
4118 srel->_raw_size += p->count * sizeof (Elf64_External_Rela);
4119 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
4120 info->flags |= DF_TEXTREL;
4121 }
4122 }
4123 }
4124
4125 local_got = elf_local_got_refcounts (ibfd);
4126 if (!local_got)
4127 continue;
4128
4129 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
4130 locsymcount = symtab_hdr->sh_info;
4131 end_local_got = local_got + locsymcount;
4132 s = htab->sgot;
4133 srel = htab->srelgot;
4134 for (; local_got < end_local_got; ++local_got)
4135 {
4136 if (*local_got > 0)
4137 {
4138 *local_got = s->_raw_size;
4139 s->_raw_size += 8;
4140 if (info->shared)
4141 srel->_raw_size += sizeof (Elf64_External_Rela);
4142 }
4143 else
4144 *local_got = (bfd_vma) -1;
4145 }
4146 }
4147
4148 if (!edit_opd (output_bfd, info))
4149 return false;
4150
4151 /* Allocate global sym .plt and .got entries, and space for global
4152 sym dynamic relocs. */
4153 elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, (PTR) info);
4154
4155 /* We now have determined the sizes of the various dynamic sections.
4156 Allocate memory for them. */
4157 relocs = false;
4158 for (s = dynobj->sections; s != NULL; s = s->next)
4159 {
4160 if ((s->flags & SEC_LINKER_CREATED) == 0)
4161 continue;
4162
4163 if (s == htab->sbrlt || s == htab->srelbrlt)
4164 /* These haven't been allocated yet; don't strip. */
4165 continue;
4166 else if (s == htab->splt
4167 || s == htab->sgot
4168 || s == htab->sglink)
4169 {
4170 /* Strip this section if we don't need it; see the
4171 comment below. */
4172 }
4173 else if (strncmp (bfd_get_section_name (dynobj, s), ".rela", 5) == 0)
4174 {
4175 if (s->_raw_size == 0)
4176 {
4177 /* If we don't need this section, strip it from the
4178 output file. This is mostly to handle .rela.bss and
4179 .rela.plt. We must create both sections in
4180 create_dynamic_sections, because they must be created
4181 before the linker maps input sections to output
4182 sections. The linker does that before
4183 adjust_dynamic_symbol is called, and it is that
4184 function which decides whether anything needs to go
4185 into these sections. */
4186 }
4187 else
4188 {
4189 if (s != htab->srelplt)
4190 relocs = true;
4191
4192 /* We use the reloc_count field as a counter if we need
4193 to copy relocs into the output file. */
4194 s->reloc_count = 0;
4195 }
4196 }
4197 else
4198 {
4199 /* It's not one of our sections, so don't allocate space. */
4200 continue;
4201 }
4202
4203 if (s->_raw_size == 0)
4204 {
4205 _bfd_strip_section_from_output (info, s);
4206 continue;
4207 }
4208
4209 /* .plt is in the bss section. We don't initialise it. */
4210 if ((s->flags & SEC_LOAD) == 0)
4211 continue;
4212
4213 /* Allocate memory for the section contents. We use bfd_zalloc
4214 here in case unused entries are not reclaimed before the
4215 section's contents are written out. This should not happen,
4216 but this way if it does, we get a R_PPC64_NONE reloc instead
4217 of garbage. */
4218 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->_raw_size);
4219 if (s->contents == NULL)
4220 return false;
4221 }
4222
4223 if (htab->elf.dynamic_sections_created)
4224 {
4225 /* Add some entries to the .dynamic section. We fill in the
4226 values later, in ppc64_elf_finish_dynamic_sections, but we
4227 must add the entries now so that we get the correct size for
4228 the .dynamic section. The DT_DEBUG entry is filled in by the
4229 dynamic linker and used by the debugger. */
4230 #define add_dynamic_entry(TAG, VAL) \
4231 bfd_elf64_add_dynamic_entry (info, (bfd_vma) (TAG), (bfd_vma) (VAL))
4232
4233 if (!info->shared)
4234 {
4235 if (!add_dynamic_entry (DT_DEBUG, 0))
4236 return false;
4237 }
4238
4239 if (htab->splt != NULL && htab->splt->_raw_size != 0)
4240 {
4241 if (!add_dynamic_entry (DT_PLTGOT, 0)
4242 || !add_dynamic_entry (DT_PLTRELSZ, 0)
4243 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
4244 || !add_dynamic_entry (DT_JMPREL, 0)
4245 || !add_dynamic_entry (DT_PPC64_GLINK, 0))
4246 return false;
4247 }
4248
4249 if (NO_OPD_RELOCS)
4250 {
4251 if (!add_dynamic_entry (DT_PPC64_OPD, 0)
4252 || !add_dynamic_entry (DT_PPC64_OPDSZ, 0))
4253 return false;
4254 }
4255
4256 if (relocs)
4257 {
4258 if (!add_dynamic_entry (DT_RELA, 0)
4259 || !add_dynamic_entry (DT_RELASZ, 0)
4260 || !add_dynamic_entry (DT_RELAENT, sizeof (Elf64_External_Rela)))
4261 return false;
4262
4263 /* If any dynamic relocs apply to a read-only section,
4264 then we need a DT_TEXTREL entry. */
4265 if ((info->flags & DF_TEXTREL) == 0)
4266 elf_link_hash_traverse (&htab->elf, readonly_dynrelocs,
4267 (PTR) info);
4268
4269 if ((info->flags & DF_TEXTREL) != 0)
4270 {
4271 if (!add_dynamic_entry (DT_TEXTREL, 0))
4272 return false;
4273 }
4274 }
4275 }
4276 #undef add_dynamic_entry
4277
4278 return true;
4279 }
4280
4281 /* Determine the type of stub needed, if any, for a call. */
4282
4283 static INLINE enum ppc_stub_type
4284 ppc_type_of_stub (input_sec, rel, hash, destination)
4285 asection *input_sec;
4286 const Elf_Internal_Rela *rel;
4287 struct ppc_link_hash_entry **hash;
4288 bfd_vma destination;
4289 {
4290 struct ppc_link_hash_entry *h = *hash;
4291 bfd_vma location;
4292 bfd_vma branch_offset;
4293 bfd_vma max_branch_offset;
4294 unsigned int r_type;
4295
4296 if (h != NULL)
4297 {
4298 if (h->oh != NULL
4299 && h->oh->plt.offset != (bfd_vma) -1
4300 && h->oh->dynindx != -1)
4301 {
4302 *hash = (struct ppc_link_hash_entry *) h->oh;
4303 return ppc_stub_plt_call;
4304 }
4305
4306 if (h->elf.root.type == bfd_link_hash_undefweak
4307 || h->elf.root.type == bfd_link_hash_undefined)
4308 return ppc_stub_none;
4309 }
4310
4311 /* Determine where the call point is. */
4312 location = (input_sec->output_offset
4313 + input_sec->output_section->vma
4314 + rel->r_offset);
4315
4316 branch_offset = destination - location;
4317 r_type = ELF64_R_TYPE (rel->r_info);
4318
4319 /* Determine if a long branch stub is needed. */
4320 max_branch_offset = 1 << 25;
4321 if (r_type != (unsigned int) R_PPC64_REL24)
4322 max_branch_offset = 1 << 15;
4323
4324 if (branch_offset + max_branch_offset >= 2 * max_branch_offset)
4325 /* We need a stub. Figure out whether a long_branch or plt_branch
4326 is needed later. */
4327 return ppc_stub_long_branch;
4328
4329 return ppc_stub_none;
4330 }
4331
4332 /* Build a .plt call stub. */
4333
4334 static bfd_byte *
4335 build_plt_stub (obfd, p, offset, glink)
4336 bfd *obfd;
4337 bfd_byte *p;
4338 int offset;
4339 int glink;
4340 {
4341 #define PPC_LO(v) ((v) & 0xffff)
4342 #define PPC_HI(v) (((v) >> 16) & 0xffff)
4343 #define PPC_HA(v) PPC_HI ((v) + 0x8000)
4344
4345 if (glink)
4346 bfd_put_32 (obfd, LD_R2_40R1, p), p += 4;
4347 bfd_put_32 (obfd, ADDIS_R12_R2 | PPC_HA (offset), p), p += 4;
4348 if (!glink)
4349 bfd_put_32 (obfd, STD_R2_40R1, p), p += 4;
4350 bfd_put_32 (obfd, LD_R11_0R12 | PPC_LO (offset), p), p += 4;
4351 if (PPC_HA (offset + 8) != PPC_HA (offset))
4352 bfd_put_32 (obfd, ADDIS_R12_R12_1, p), p += 4;
4353 offset += 8;
4354 bfd_put_32 (obfd, LD_R2_0R12 | PPC_LO (offset), p), p += 4;
4355 if (PPC_HA (offset + 8) != PPC_HA (offset))
4356 bfd_put_32 (obfd, ADDIS_R12_R12_1, p), p += 4;
4357 offset += 8;
4358 bfd_put_32 (obfd, MTCTR_R11, p), p += 4;
4359 bfd_put_32 (obfd, LD_R11_0R12 | PPC_LO (offset), p), p += 4;
4360 bfd_put_32 (obfd, BCTR, p), p += 4;
4361 return p;
4362 }
4363
4364 static boolean
4365 ppc_build_one_stub (gen_entry, in_arg)
4366 struct bfd_hash_entry *gen_entry;
4367 PTR in_arg;
4368 {
4369 struct ppc_stub_hash_entry *stub_entry;
4370 struct ppc_branch_hash_entry *br_entry;
4371 struct bfd_link_info *info;
4372 struct ppc_link_hash_table *htab;
4373 asection *stub_sec;
4374 bfd *stub_bfd;
4375 bfd_byte *loc;
4376 bfd_byte *p;
4377 unsigned int indx;
4378 bfd_vma off;
4379 int size;
4380
4381 /* Massage our args to the form they really have. */
4382 stub_entry = (struct ppc_stub_hash_entry *) gen_entry;
4383 info = (struct bfd_link_info *) in_arg;
4384
4385 htab = ppc_hash_table (info);
4386 stub_sec = stub_entry->stub_sec;
4387
4388 /* Make a note of the offset within the stubs for this entry. */
4389 stub_entry->stub_offset = stub_sec->_cooked_size;
4390 loc = stub_sec->contents + stub_entry->stub_offset;
4391
4392 stub_bfd = stub_sec->owner;
4393
4394 switch (stub_entry->stub_type)
4395 {
4396 case ppc_stub_long_branch:
4397 /* Branches are relative. This is where we are going to. */
4398 off = (stub_entry->target_value
4399 + stub_entry->target_section->output_offset
4400 + stub_entry->target_section->output_section->vma);
4401
4402 /* And this is where we are coming from. */
4403 off -= (stub_entry->stub_offset
4404 + stub_sec->output_offset
4405 + stub_sec->output_section->vma);
4406
4407 BFD_ASSERT (off + (1 << 25) < (bfd_vma) (1 << 26));
4408
4409 bfd_put_32 (stub_bfd, (bfd_vma) B_DOT | (off & 0x3fffffc), loc);
4410 size = 4;
4411 break;
4412
4413 case ppc_stub_plt_branch:
4414 br_entry = ppc_branch_hash_lookup (&htab->branch_hash_table,
4415 stub_entry->root.string + 9,
4416 false, false);
4417 if (br_entry == NULL)
4418 {
4419 (*_bfd_error_handler) (_("can't find branch stub `%s'"),
4420 stub_entry->root.string + 9);
4421 htab->stub_error = true;
4422 return false;
4423 }
4424
4425 off = (stub_entry->target_value
4426 + stub_entry->target_section->output_offset
4427 + stub_entry->target_section->output_section->vma);
4428
4429 bfd_put_64 (htab->sbrlt->owner, off,
4430 htab->sbrlt->contents + br_entry->offset);
4431
4432 if (info->shared)
4433 {
4434 /* Create a reloc for the branch lookup table entry. */
4435 Elf_Internal_Rela rela;
4436 Elf64_External_Rela *r;
4437
4438 rela.r_offset = (br_entry->offset
4439 + htab->sbrlt->output_offset
4440 + htab->sbrlt->output_section->vma);
4441 rela.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
4442 rela.r_addend = off;
4443
4444 r = (Elf64_External_Rela *) htab->srelbrlt->contents;
4445 r += htab->srelbrlt->reloc_count++;
4446 bfd_elf64_swap_reloca_out (htab->srelbrlt->owner, &rela, r);
4447 }
4448
4449 off = (br_entry->offset
4450 + htab->sbrlt->output_offset
4451 + htab->sbrlt->output_section->vma
4452 - elf_gp (htab->sbrlt->output_section->owner)
4453 - TOC_BASE_OFF);
4454
4455 if (off + 0x80000000 > 0xffffffff || (off & 7) != 0)
4456 {
4457 (*_bfd_error_handler)
4458 (_("linkage table error against `%s'"),
4459 stub_entry->root.string);
4460 bfd_set_error (bfd_error_bad_value);
4461 htab->stub_error = true;
4462 return false;
4463 }
4464
4465 indx = off;
4466 bfd_put_32 (stub_bfd, (bfd_vma) ADDIS_R12_R2 | PPC_HA (indx), loc);
4467 bfd_put_32 (stub_bfd, (bfd_vma) LD_R11_0R12 | PPC_LO (indx), loc + 4);
4468 bfd_put_32 (stub_bfd, (bfd_vma) MTCTR_R11, loc + 8);
4469 bfd_put_32 (stub_bfd, (bfd_vma) BCTR, loc + 12);
4470 size = 16;
4471 break;
4472
4473 case ppc_stub_plt_call:
4474 /* Do the best we can for shared libraries built without
4475 exporting ".foo" for each "foo". This can happen when symbol
4476 versioning scripts strip all bar a subset of symbols. */
4477 if (stub_entry->h->oh->root.type != bfd_link_hash_defined
4478 && stub_entry->h->oh->root.type != bfd_link_hash_defweak)
4479 {
4480 /* Point the symbol at the stub. There may be multiple stubs,
4481 we don't really care; The main thing is to make this sym
4482 defined somewhere. */
4483 stub_entry->h->oh->root.type = bfd_link_hash_defined;
4484 stub_entry->h->oh->root.u.def.section = stub_entry->stub_sec;
4485 stub_entry->h->oh->root.u.def.value = stub_entry->stub_offset;
4486 }
4487
4488 /* Now build the stub. */
4489 off = stub_entry->h->elf.plt.offset;
4490 if (off >= (bfd_vma) -2)
4491 abort ();
4492
4493 off &= ~ (bfd_vma) 1;
4494 off += (htab->splt->output_offset
4495 + htab->splt->output_section->vma
4496 - elf_gp (htab->splt->output_section->owner)
4497 - TOC_BASE_OFF);
4498
4499 if (off + 0x80000000 > 0xffffffff || (off & 7) != 0)
4500 {
4501 (*_bfd_error_handler)
4502 (_("linkage table error against `%s'"),
4503 stub_entry->h->elf.root.root.string);
4504 bfd_set_error (bfd_error_bad_value);
4505 htab->stub_error = true;
4506 return false;
4507 }
4508
4509 p = build_plt_stub (stub_bfd, loc, (int) off, 0);
4510 size = p - loc;
4511 break;
4512
4513 default:
4514 BFD_FAIL ();
4515 return false;
4516 }
4517
4518 stub_sec->_cooked_size += size;
4519 return true;
4520 }
4521
4522 /* As above, but don't actually build the stub. Just bump offset so
4523 we know stub section sizes, and select plt_branch stubs where
4524 long_branch stubs won't do. */
4525
4526 static boolean
4527 ppc_size_one_stub (gen_entry, in_arg)
4528 struct bfd_hash_entry *gen_entry;
4529 PTR in_arg;
4530 {
4531 struct ppc_stub_hash_entry *stub_entry;
4532 struct ppc_link_hash_table *htab;
4533 bfd_vma off;
4534 int size;
4535
4536 /* Massage our args to the form they really have. */
4537 stub_entry = (struct ppc_stub_hash_entry *) gen_entry;
4538 htab = (struct ppc_link_hash_table *) in_arg;
4539
4540 if (stub_entry->stub_type == ppc_stub_plt_call)
4541 {
4542 off = stub_entry->h->elf.plt.offset & ~(bfd_vma) 1;
4543 off += (htab->splt->output_offset
4544 + htab->splt->output_section->vma
4545 - elf_gp (htab->splt->output_section->owner)
4546 - TOC_BASE_OFF);
4547
4548 size = 28;
4549 if (PPC_HA ((int) off + 16) != PPC_HA ((int) off))
4550 size += 4;
4551 }
4552 else
4553 {
4554 /* ppc_stub_long_branch or ppc_stub_plt_branch. */
4555 stub_entry->stub_type = ppc_stub_long_branch;
4556 size = 4;
4557
4558 off = (stub_entry->target_value
4559 + stub_entry->target_section->output_offset
4560 + stub_entry->target_section->output_section->vma);
4561 off -= (stub_entry->stub_sec->_raw_size
4562 + stub_entry->stub_sec->output_offset
4563 + stub_entry->stub_sec->output_section->vma);
4564
4565 if (off + (1 << 25) >= (bfd_vma) (1 << 26))
4566 {
4567 struct ppc_branch_hash_entry *br_entry;
4568
4569 br_entry = ppc_branch_hash_lookup (&htab->branch_hash_table,
4570 stub_entry->root.string + 9,
4571 true, false);
4572 if (br_entry == NULL)
4573 {
4574 (*_bfd_error_handler) (_("can't build branch stub `%s'"),
4575 stub_entry->root.string + 9);
4576 htab->stub_error = true;
4577 return false;
4578 }
4579
4580 if (br_entry->iter != htab->stub_iteration)
4581 {
4582 br_entry->iter = htab->stub_iteration;
4583 br_entry->offset = htab->sbrlt->_raw_size;
4584 htab->sbrlt->_raw_size += 8;
4585 }
4586 stub_entry->stub_type = ppc_stub_plt_branch;
4587 size = 16;
4588 }
4589 }
4590
4591 stub_entry->stub_sec->_raw_size += size;
4592 return true;
4593 }
4594
4595 /* Set up various things so that we can make a list of input sections
4596 for each output section included in the link. Returns -1 on error,
4597 0 when no stubs will be needed, and 1 on success. */
4598
4599 int
4600 ppc64_elf_setup_section_lists (output_bfd, info)
4601 bfd *output_bfd;
4602 struct bfd_link_info *info;
4603 {
4604 bfd *input_bfd;
4605 int top_id, top_index;
4606 asection *section;
4607 asection **input_list, **list;
4608 bfd_size_type amt;
4609 struct ppc_link_hash_table *htab = ppc_hash_table (info);
4610
4611 if (htab->elf.root.creator->flavour != bfd_target_elf_flavour
4612 || htab->sbrlt == NULL)
4613 return 0;
4614
4615 /* Find the top input section id. */
4616 for (input_bfd = info->input_bfds, top_id = 0;
4617 input_bfd != NULL;
4618 input_bfd = input_bfd->link_next)
4619 {
4620 for (section = input_bfd->sections;
4621 section != NULL;
4622 section = section->next)
4623 {
4624 if (top_id < section->id)
4625 top_id = section->id;
4626 }
4627 }
4628
4629 amt = sizeof (struct map_stub) * (top_id + 1);
4630 htab->stub_group = (struct map_stub *) bfd_zmalloc (amt);
4631 if (htab->stub_group == NULL)
4632 return -1;
4633
4634 /* We can't use output_bfd->section_count here to find the top output
4635 section index as some sections may have been removed, and
4636 _bfd_strip_section_from_output doesn't renumber the indices. */
4637 for (section = output_bfd->sections, top_index = 0;
4638 section != NULL;
4639 section = section->next)
4640 {
4641 if (top_index < section->index)
4642 top_index = section->index;
4643 }
4644
4645 htab->top_index = top_index;
4646 amt = sizeof (asection *) * (top_index + 1);
4647 input_list = (asection **) bfd_malloc (amt);
4648 htab->input_list = input_list;
4649 if (input_list == NULL)
4650 return -1;
4651
4652 /* For sections we aren't interested in, mark their entries with a
4653 value we can check later. */
4654 list = input_list + top_index;
4655 do
4656 *list = bfd_abs_section_ptr;
4657 while (list-- != input_list);
4658
4659 for (section = output_bfd->sections;
4660 section != NULL;
4661 section = section->next)
4662 {
4663 if ((section->flags & SEC_CODE) != 0)
4664 input_list[section->index] = NULL;
4665 }
4666
4667 return 1;
4668 }
4669
4670 /* The linker repeatedly calls this function for each input section,
4671 in the order that input sections are linked into output sections.
4672 Build lists of input sections to determine groupings between which
4673 we may insert linker stubs. */
4674
4675 void
4676 ppc64_elf_next_input_section (info, isec)
4677 struct bfd_link_info *info;
4678 asection *isec;
4679 {
4680 struct ppc_link_hash_table *htab = ppc_hash_table (info);
4681
4682 if (isec->output_section->index <= htab->top_index)
4683 {
4684 asection **list = htab->input_list + isec->output_section->index;
4685 if (*list != bfd_abs_section_ptr)
4686 {
4687 /* Steal the link_sec pointer for our list. */
4688 #define PREV_SEC(sec) (htab->stub_group[(sec)->id].link_sec)
4689 /* This happens to make the list in reverse order,
4690 which is what we want. */
4691 PREV_SEC (isec) = *list;
4692 *list = isec;
4693 }
4694 }
4695 }
4696
4697 /* See whether we can group stub sections together. Grouping stub
4698 sections may result in fewer stubs. More importantly, we need to
4699 put all .init* and .fini* stubs at the beginning of the .init or
4700 .fini output sections respectively, because glibc splits the
4701 _init and _fini functions into multiple parts. Putting a stub in
4702 the middle of a function is not a good idea. */
4703
4704 static void
4705 group_sections (htab, stub_group_size, stubs_always_before_branch)
4706 struct ppc_link_hash_table *htab;
4707 bfd_size_type stub_group_size;
4708 boolean stubs_always_before_branch;
4709 {
4710 asection **list = htab->input_list + htab->top_index;
4711 do
4712 {
4713 asection *tail = *list;
4714 if (tail == bfd_abs_section_ptr)
4715 continue;
4716 while (tail != NULL)
4717 {
4718 asection *curr;
4719 asection *prev;
4720 bfd_size_type total;
4721
4722 curr = tail;
4723 if (tail->_cooked_size)
4724 total = tail->_cooked_size;
4725 else
4726 total = tail->_raw_size;
4727 while ((prev = PREV_SEC (curr)) != NULL
4728 && ((total += curr->output_offset - prev->output_offset)
4729 < stub_group_size))
4730 curr = prev;
4731
4732 /* OK, the size from the start of CURR to the end is less
4733 than stub_group_size and thus can be handled by one stub
4734 section. (or the tail section is itself larger than
4735 stub_group_size, in which case we may be toast.) We
4736 should really be keeping track of the total size of stubs
4737 added here, as stubs contribute to the final output
4738 section size. That's a little tricky, and this way will
4739 only break if stubs added make the total size more than
4740 2^25, ie. for the default stub_group_size, if stubs total
4741 more than 2834432 bytes, or over 100000 plt call stubs. */
4742 do
4743 {
4744 prev = PREV_SEC (tail);
4745 /* Set up this stub group. */
4746 htab->stub_group[tail->id].link_sec = curr;
4747 }
4748 while (tail != curr && (tail = prev) != NULL);
4749
4750 /* But wait, there's more! Input sections up to stub_group_size
4751 bytes before the stub section can be handled by it too. */
4752 if (!stubs_always_before_branch)
4753 {
4754 total = 0;
4755 while (prev != NULL
4756 && ((total += tail->output_offset - prev->output_offset)
4757 < stub_group_size))
4758 {
4759 tail = prev;
4760 prev = PREV_SEC (tail);
4761 htab->stub_group[tail->id].link_sec = curr;
4762 }
4763 }
4764 tail = prev;
4765 }
4766 }
4767 while (list-- != htab->input_list);
4768 free (htab->input_list);
4769 #undef PREV_SEC
4770 }
4771
4772 /* Determine and set the size of the stub section for a final link.
4773
4774 The basic idea here is to examine all the relocations looking for
4775 PC-relative calls to a target that is unreachable with a "bl"
4776 instruction. */
4777
4778 boolean
4779 ppc64_elf_size_stubs (output_bfd, stub_bfd, info, group_size,
4780 add_stub_section, layout_sections_again)
4781 bfd *output_bfd;
4782 bfd *stub_bfd;
4783 struct bfd_link_info *info;
4784 bfd_signed_vma group_size;
4785 asection * (*add_stub_section) PARAMS ((const char *, asection *));
4786 void (*layout_sections_again) PARAMS ((void));
4787 {
4788 bfd_size_type stub_group_size;
4789 boolean stubs_always_before_branch;
4790 struct ppc_link_hash_table *htab = ppc_hash_table (info);
4791
4792 /* Stash our params away. */
4793 htab->stub_bfd = stub_bfd;
4794 htab->add_stub_section = add_stub_section;
4795 htab->layout_sections_again = layout_sections_again;
4796 stubs_always_before_branch = group_size < 0;
4797 if (group_size < 0)
4798 stub_group_size = -group_size;
4799 else
4800 stub_group_size = group_size;
4801 if (stub_group_size == 1)
4802 {
4803 /* Default values. */
4804 stub_group_size = 30720000;
4805 if (htab->has_14bit_branch)
4806 stub_group_size = 30000;
4807 }
4808
4809 group_sections (htab, stub_group_size, stubs_always_before_branch);
4810
4811 while (1)
4812 {
4813 bfd *input_bfd;
4814 unsigned int bfd_indx;
4815 asection *stub_sec;
4816 boolean stub_changed;
4817
4818 htab->stub_iteration += 1;
4819 stub_changed = false;
4820
4821 for (input_bfd = info->input_bfds, bfd_indx = 0;
4822 input_bfd != NULL;
4823 input_bfd = input_bfd->link_next, bfd_indx++)
4824 {
4825 Elf_Internal_Shdr *symtab_hdr;
4826 asection *section;
4827 Elf_Internal_Sym *local_syms = NULL;
4828
4829 /* We'll need the symbol table in a second. */
4830 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
4831 if (symtab_hdr->sh_info == 0)
4832 continue;
4833
4834 /* Walk over each section attached to the input bfd. */
4835 for (section = input_bfd->sections;
4836 section != NULL;
4837 section = section->next)
4838 {
4839 Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
4840
4841 /* If there aren't any relocs, then there's nothing more
4842 to do. */
4843 if ((section->flags & SEC_RELOC) == 0
4844 || section->reloc_count == 0)
4845 continue;
4846
4847 /* If this section is a link-once section that will be
4848 discarded, then don't create any stubs. */
4849 if (section->output_section == NULL
4850 || section->output_section->owner != output_bfd)
4851 continue;
4852
4853 /* Get the relocs. */
4854 internal_relocs
4855 = _bfd_elf64_link_read_relocs (input_bfd, section, NULL,
4856 (Elf_Internal_Rela *) NULL,
4857 info->keep_memory);
4858 if (internal_relocs == NULL)
4859 goto error_ret_free_local;
4860
4861 /* Now examine each relocation. */
4862 irela = internal_relocs;
4863 irelaend = irela + section->reloc_count;
4864 for (; irela < irelaend; irela++)
4865 {
4866 unsigned int r_type, r_indx;
4867 enum ppc_stub_type stub_type;
4868 struct ppc_stub_hash_entry *stub_entry;
4869 asection *sym_sec;
4870 bfd_vma sym_value;
4871 bfd_vma destination;
4872 struct ppc_link_hash_entry *hash;
4873 char *stub_name;
4874 const asection *id_sec;
4875
4876 r_type = ELF64_R_TYPE (irela->r_info);
4877 r_indx = ELF64_R_SYM (irela->r_info);
4878
4879 if (r_type >= (unsigned int) R_PPC_max)
4880 {
4881 bfd_set_error (bfd_error_bad_value);
4882 goto error_ret_free_internal;
4883 }
4884
4885 /* Only look for stubs on branch instructions. */
4886 if (r_type != (unsigned int) R_PPC64_REL24
4887 && r_type != (unsigned int) R_PPC64_REL14
4888 && r_type != (unsigned int) R_PPC64_REL14_BRTAKEN
4889 && r_type != (unsigned int) R_PPC64_REL14_BRNTAKEN)
4890 continue;
4891
4892 /* Now determine the call target, its name, value,
4893 section. */
4894 sym_sec = NULL;
4895 sym_value = 0;
4896 destination = 0;
4897 hash = NULL;
4898 if (r_indx < symtab_hdr->sh_info)
4899 {
4900 /* It's a local symbol. */
4901 Elf_Internal_Sym *sym;
4902 Elf_Internal_Shdr *hdr;
4903
4904 if (local_syms == NULL)
4905 {
4906 local_syms
4907 = (Elf_Internal_Sym *) symtab_hdr->contents;
4908 if (local_syms == NULL)
4909 local_syms
4910 = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
4911 symtab_hdr->sh_info, 0,
4912 NULL, NULL, NULL);
4913 if (local_syms == NULL)
4914 goto error_ret_free_internal;
4915 }
4916 sym = local_syms + r_indx;
4917 hdr = elf_elfsections (input_bfd)[sym->st_shndx];
4918 sym_sec = hdr->bfd_section;
4919 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
4920 sym_value = sym->st_value;
4921 destination = (sym_value + irela->r_addend
4922 + sym_sec->output_offset
4923 + sym_sec->output_section->vma);
4924 }
4925 else
4926 {
4927 /* It's an external symbol. */
4928 int e_indx;
4929
4930 e_indx = r_indx - symtab_hdr->sh_info;
4931 hash = ((struct ppc_link_hash_entry *)
4932 elf_sym_hashes (input_bfd)[e_indx]);
4933
4934 while (hash->elf.root.type == bfd_link_hash_indirect
4935 || hash->elf.root.type == bfd_link_hash_warning)
4936 hash = ((struct ppc_link_hash_entry *)
4937 hash->elf.root.u.i.link);
4938
4939 if (hash->elf.root.type == bfd_link_hash_defined
4940 || hash->elf.root.type == bfd_link_hash_defweak)
4941 {
4942 sym_sec = hash->elf.root.u.def.section;
4943 sym_value = hash->elf.root.u.def.value;
4944 if (sym_sec->output_section != NULL)
4945 destination = (sym_value + irela->r_addend
4946 + sym_sec->output_offset
4947 + sym_sec->output_section->vma);
4948 }
4949 else if (hash->elf.root.type == bfd_link_hash_undefweak)
4950 ;
4951 else if (hash->elf.root.type == bfd_link_hash_undefined)
4952 ;
4953 else
4954 {
4955 bfd_set_error (bfd_error_bad_value);
4956 goto error_ret_free_internal;
4957 }
4958 }
4959
4960 /* Determine what (if any) linker stub is needed. */
4961 stub_type = ppc_type_of_stub (section, irela, &hash,
4962 destination);
4963 if (stub_type == ppc_stub_none)
4964 continue;
4965
4966 /* Support for grouping stub sections. */
4967 id_sec = htab->stub_group[section->id].link_sec;
4968
4969 /* Get the name of this stub. */
4970 stub_name = ppc_stub_name (id_sec, sym_sec, hash, irela);
4971 if (!stub_name)
4972 goto error_ret_free_internal;
4973
4974 stub_entry = ppc_stub_hash_lookup (&htab->stub_hash_table,
4975 stub_name, false, false);
4976 if (stub_entry != NULL)
4977 {
4978 /* The proper stub has already been created. */
4979 free (stub_name);
4980 continue;
4981 }
4982
4983 stub_entry = ppc_add_stub (stub_name, section, htab);
4984 if (stub_entry == NULL)
4985 {
4986 free (stub_name);
4987 error_ret_free_internal:
4988 if (elf_section_data (section)->relocs == NULL)
4989 free (internal_relocs);
4990 error_ret_free_local:
4991 if (local_syms != NULL
4992 && (symtab_hdr->contents
4993 != (unsigned char *) local_syms))
4994 free (local_syms);
4995 return false;
4996 }
4997
4998 stub_entry->target_value = sym_value;
4999 stub_entry->target_section = sym_sec;
5000 stub_entry->stub_type = stub_type;
5001 stub_entry->h = hash;
5002 stub_changed = true;
5003 }
5004
5005 /* We're done with the internal relocs, free them. */
5006 if (elf_section_data (section)->relocs != internal_relocs)
5007 free (internal_relocs);
5008 }
5009
5010 if (local_syms != NULL
5011 && symtab_hdr->contents != (unsigned char *) local_syms)
5012 {
5013 if (!info->keep_memory)
5014 free (local_syms);
5015 else
5016 symtab_hdr->contents = (unsigned char *) local_syms;
5017 }
5018 }
5019
5020 if (!stub_changed)
5021 break;
5022
5023 /* OK, we've added some stubs. Find out the new size of the
5024 stub sections. */
5025 for (stub_sec = htab->stub_bfd->sections;
5026 stub_sec != NULL;
5027 stub_sec = stub_sec->next)
5028 {
5029 stub_sec->_raw_size = 0;
5030 stub_sec->_cooked_size = 0;
5031 }
5032 htab->sbrlt->_raw_size = 0;
5033 htab->sbrlt->_cooked_size = 0;
5034
5035 bfd_hash_traverse (&htab->stub_hash_table, ppc_size_one_stub, htab);
5036
5037 /* Ask the linker to do its stuff. */
5038 (*htab->layout_sections_again) ();
5039 }
5040
5041 /* It would be nice to strip .branch_lt from the output if the
5042 section is empty, but it's too late. If we strip sections here,
5043 the dynamic symbol table is corrupted since the section symbol
5044 for the stripped section isn't written. */
5045
5046 return true;
5047 }
5048
5049 /* Called after we have determined section placement. If sections
5050 move, we'll be called again. Provide a value for TOCstart. */
5051
5052 bfd_vma
5053 ppc64_elf_toc (obfd)
5054 bfd *obfd;
5055 {
5056 asection *s;
5057 bfd_vma TOCstart;
5058
5059 /* The TOC consists of sections .got, .toc, .tocbss, .plt in that
5060 order. The TOC starts where the first of these sections starts. */
5061 s = bfd_get_section_by_name (obfd, ".got");
5062 if (s == NULL)
5063 s = bfd_get_section_by_name (obfd, ".toc");
5064 if (s == NULL)
5065 s = bfd_get_section_by_name (obfd, ".tocbss");
5066 if (s == NULL)
5067 s = bfd_get_section_by_name (obfd, ".plt");
5068 if (s == NULL)
5069 {
5070 /* This may happen for
5071 o references to TOC base (SYM@toc / TOC[tc0]) without a
5072 .toc directive
5073 o bad linker script
5074 o --gc-sections and empty TOC sections
5075
5076 FIXME: Warn user? */
5077
5078 /* Look for a likely section. We probably won't even be
5079 using TOCstart. */
5080 for (s = obfd->sections; s != NULL; s = s->next)
5081 if ((s->flags & (SEC_ALLOC | SEC_SMALL_DATA | SEC_READONLY))
5082 == (SEC_ALLOC | SEC_SMALL_DATA))
5083 break;
5084 if (s == NULL)
5085 for (s = obfd->sections; s != NULL; s = s->next)
5086 if ((s->flags & (SEC_ALLOC | SEC_SMALL_DATA))
5087 == (SEC_ALLOC | SEC_SMALL_DATA))
5088 break;
5089 if (s == NULL)
5090 for (s = obfd->sections; s != NULL; s = s->next)
5091 if ((s->flags & (SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
5092 break;
5093 if (s == NULL)
5094 for (s = obfd->sections; s != NULL; s = s->next)
5095 if ((s->flags & SEC_ALLOC) == SEC_ALLOC)
5096 break;
5097 }
5098
5099 TOCstart = 0;
5100 if (s != NULL)
5101 TOCstart = s->output_section->vma + s->output_offset;
5102
5103 return TOCstart;
5104 }
5105
5106 /* Build all the stubs associated with the current output file.
5107 The stubs are kept in a hash table attached to the main linker
5108 hash table. This function is called via gldelf64ppc_finish. */
5109
5110 boolean
5111 ppc64_elf_build_stubs (info)
5112 struct bfd_link_info *info;
5113 {
5114 struct ppc_link_hash_table *htab = ppc_hash_table (info);
5115 asection *stub_sec;
5116 bfd_vma plt_r2;
5117 bfd_byte *p;
5118
5119 for (stub_sec = htab->stub_bfd->sections;
5120 stub_sec != NULL;
5121 stub_sec = stub_sec->next)
5122 {
5123 bfd_size_type size;
5124
5125 /* Allocate memory to hold the linker stubs. */
5126 size = stub_sec->_raw_size;
5127 if (size != 0)
5128 {
5129 stub_sec->contents = (bfd_byte *) bfd_zalloc (htab->stub_bfd, size);
5130 if (stub_sec->contents == NULL)
5131 return false;
5132 }
5133 stub_sec->_cooked_size = 0;
5134 }
5135
5136 if (htab->splt != NULL)
5137 {
5138 unsigned int indx;
5139
5140 /* Build the .glink plt call stub. */
5141 plt_r2 = (htab->splt->output_offset
5142 + htab->splt->output_section->vma
5143 - elf_gp (htab->splt->output_section->owner)
5144 - TOC_BASE_OFF);
5145 p = htab->sglink->contents;
5146 p = build_plt_stub (htab->sglink->owner, p, (int) plt_r2, 1);
5147 while (p < htab->sglink->contents + GLINK_CALL_STUB_SIZE)
5148 {
5149 bfd_put_32 (htab->sglink->owner, NOP, p);
5150 p += 4;
5151 }
5152
5153 /* Build the .glink lazy link call stubs. */
5154 indx = 0;
5155 while (p < htab->sglink->contents + htab->sglink->_raw_size)
5156 {
5157 if (indx < 0x8000)
5158 {
5159 bfd_put_32 (htab->sglink->owner, LI_R0_0 | indx, p);
5160 p += 4;
5161 }
5162 else
5163 {
5164 bfd_put_32 (htab->sglink->owner, LIS_R0_0 | PPC_HI (indx), p);
5165 p += 4;
5166 bfd_put_32 (htab->sglink->owner, ORI_R0_R0_0 | PPC_LO (indx), p);
5167 p += 4;
5168 }
5169 bfd_put_32 (htab->sglink->owner,
5170 B_DOT | ((htab->sglink->contents - p) & 0x3fffffc), p);
5171 indx++;
5172 p += 4;
5173 }
5174 htab->sglink->_cooked_size = p - htab->sglink->contents;
5175 }
5176
5177 if (htab->sbrlt->_raw_size != 0)
5178 {
5179 htab->sbrlt->contents = (bfd_byte *) bfd_zalloc (htab->sbrlt->owner,
5180 htab->sbrlt->_raw_size);
5181 if (htab->sbrlt->contents == NULL)
5182 return false;
5183 }
5184
5185 /* Build the stubs as directed by the stub hash table. */
5186 bfd_hash_traverse (&htab->stub_hash_table, ppc_build_one_stub, info);
5187
5188 for (stub_sec = htab->stub_bfd->sections;
5189 stub_sec != NULL;
5190 stub_sec = stub_sec->next)
5191 {
5192 if (stub_sec->_raw_size != stub_sec->_cooked_size)
5193 break;
5194 }
5195
5196 if (stub_sec != NULL
5197 || htab->sglink->_raw_size != htab->sglink->_cooked_size)
5198 {
5199 htab->stub_error = true;
5200 (*_bfd_error_handler) (_("stubs don't match calculated size"));
5201 }
5202
5203 return !htab->stub_error;
5204 }
5205
5206 /* The RELOCATE_SECTION function is called by the ELF backend linker
5207 to handle the relocations for a section.
5208
5209 The relocs are always passed as Rela structures; if the section
5210 actually uses Rel structures, the r_addend field will always be
5211 zero.
5212
5213 This function is responsible for adjust the section contents as
5214 necessary, and (if using Rela relocs and generating a
5215 relocateable output file) adjusting the reloc addend as
5216 necessary.
5217
5218 This function does not have to worry about setting the reloc
5219 address or the reloc symbol index.
5220
5221 LOCAL_SYMS is a pointer to the swapped in local symbols.
5222
5223 LOCAL_SECTIONS is an array giving the section in the input file
5224 corresponding to the st_shndx field of each local symbol.
5225
5226 The global hash table entry for the global symbols can be found
5227 via elf_sym_hashes (input_bfd).
5228
5229 When generating relocateable output, this function must handle
5230 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
5231 going to be the section symbol corresponding to the output
5232 section, which means that the addend must be adjusted
5233 accordingly. */
5234
5235 static boolean
5236 ppc64_elf_relocate_section (output_bfd, info, input_bfd, input_section,
5237 contents, relocs, local_syms, local_sections)
5238 bfd *output_bfd;
5239 struct bfd_link_info *info;
5240 bfd *input_bfd;
5241 asection *input_section;
5242 bfd_byte *contents;
5243 Elf_Internal_Rela *relocs;
5244 Elf_Internal_Sym *local_syms;
5245 asection **local_sections;
5246 {
5247 struct ppc_link_hash_table *htab;
5248 Elf_Internal_Shdr *symtab_hdr;
5249 struct elf_link_hash_entry **sym_hashes;
5250 Elf_Internal_Rela *rel;
5251 Elf_Internal_Rela *relend;
5252 bfd_vma *local_got_offsets;
5253 bfd_vma TOCstart;
5254 boolean ret = true;
5255 boolean is_opd;
5256 /* Disabled until we sort out how ld should choose 'y' vs 'at'. */
5257 boolean is_power4 = false;
5258
5259 if (info->relocateable)
5260 return true;
5261
5262 /* Initialize howto table if needed. */
5263 if (!ppc64_elf_howto_table[R_PPC64_ADDR32])
5264 ppc_howto_init ();
5265
5266 htab = ppc_hash_table (info);
5267 local_got_offsets = elf_local_got_offsets (input_bfd);
5268 TOCstart = elf_gp (output_bfd);
5269 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5270 sym_hashes = elf_sym_hashes (input_bfd);
5271 is_opd = elf_section_data (input_section)->tdata != NULL;
5272
5273 rel = relocs;
5274 relend = relocs + input_section->reloc_count;
5275 for (; rel < relend; rel++)
5276 {
5277 enum elf_ppc_reloc_type r_type;
5278 bfd_vma offset;
5279 bfd_vma addend;
5280 bfd_reloc_status_type r;
5281 Elf_Internal_Sym *sym;
5282 asection *sec;
5283 struct elf_link_hash_entry *h;
5284 struct elf_link_hash_entry *fdh;
5285 const char *sym_name;
5286 unsigned long r_symndx;
5287 bfd_vma relocation;
5288 boolean unresolved_reloc;
5289 boolean warned;
5290 long insn;
5291 struct ppc_stub_hash_entry *stub_entry;
5292 bfd_vma max_br_offset;
5293 bfd_vma from;
5294
5295 r_type = (enum elf_ppc_reloc_type) ELF64_R_TYPE (rel->r_info);
5296 r_symndx = ELF64_R_SYM (rel->r_info);
5297 offset = rel->r_offset;
5298 addend = rel->r_addend;
5299 r = bfd_reloc_other;
5300 sym = (Elf_Internal_Sym *) 0;
5301 sec = (asection *) 0;
5302 h = (struct elf_link_hash_entry *) 0;
5303 sym_name = (const char *) 0;
5304 unresolved_reloc = false;
5305 warned = false;
5306
5307 if (r_type == R_PPC64_TOC)
5308 {
5309 /* Relocation value is TOC base. Symbol is ignored. */
5310 relocation = TOCstart + TOC_BASE_OFF;
5311 }
5312 else if (r_symndx < symtab_hdr->sh_info)
5313 {
5314 /* It's a local symbol. */
5315 sym = local_syms + r_symndx;
5316 sec = local_sections[r_symndx];
5317 sym_name = "<local symbol>";
5318
5319 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, sec, rel);
5320 /* rel may have changed, update our copy of addend. */
5321 addend = rel->r_addend;
5322
5323 if (elf_section_data (sec) != NULL)
5324 {
5325 long *opd_sym_adjust;
5326
5327 opd_sym_adjust = (long *) elf_section_data (sec)->tdata;
5328 if (opd_sym_adjust != NULL && sym->st_value % 24 == 0)
5329 relocation += opd_sym_adjust[sym->st_value / 24];
5330 }
5331 }
5332 else
5333 {
5334 /* It's a global symbol. */
5335 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
5336 while (h->root.type == bfd_link_hash_indirect
5337 || h->root.type == bfd_link_hash_warning)
5338 h = (struct elf_link_hash_entry *) h->root.u.i.link;
5339 sym_name = h->root.root.string;
5340 relocation = 0;
5341 if (h->root.type == bfd_link_hash_defined
5342 || h->root.type == bfd_link_hash_defweak)
5343 {
5344 sec = h->root.u.def.section;
5345 if (sec->output_section == NULL)
5346 /* Set a flag that will be cleared later if we find a
5347 relocation value for this symbol. output_section
5348 is typically NULL for symbols satisfied by a shared
5349 library. */
5350 unresolved_reloc = true;
5351 else
5352 relocation = (h->root.u.def.value
5353 + sec->output_section->vma
5354 + sec->output_offset);
5355 }
5356 else if (h->root.type == bfd_link_hash_undefweak)
5357 ;
5358 else if (info->shared
5359 && (!info->symbolic || info->allow_shlib_undefined)
5360 && !info->no_undefined
5361 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
5362 ;
5363 else
5364 {
5365 if (! ((*info->callbacks->undefined_symbol)
5366 (info, h->root.root.string, input_bfd, input_section,
5367 offset, (!info->shared
5368 || info->no_undefined
5369 || ELF_ST_VISIBILITY (h->other)))))
5370 return false;
5371 warned = true;
5372 }
5373 }
5374
5375 /* First handle relocations that tweak non-addend part of insn. */
5376 insn = 0;
5377 switch (r_type)
5378 {
5379 default:
5380 break;
5381
5382 /* Branch taken prediction relocations. */
5383 case R_PPC64_ADDR14_BRTAKEN:
5384 case R_PPC64_REL14_BRTAKEN:
5385 insn = 0x01 << 21; /* 'y' or 't' bit, lowest bit of BO field. */
5386 /* Fall thru. */
5387
5388 /* Branch not taken prediction relocations. */
5389 case R_PPC64_ADDR14_BRNTAKEN:
5390 case R_PPC64_REL14_BRNTAKEN:
5391 insn |= bfd_get_32 (output_bfd, contents + offset) & ~(0x01 << 21);
5392 if (is_power4)
5393 {
5394 /* Set 'a' bit. This is 0b00010 in BO field for branch
5395 on CR(BI) insns (BO == 001at or 011at), and 0b01000
5396 for branch on CTR insns (BO == 1a00t or 1a01t). */
5397 if ((insn & (0x14 << 21)) == (0x04 << 21))
5398 insn |= 0x02 << 21;
5399 else if ((insn & (0x14 << 21)) == (0x10 << 21))
5400 insn |= 0x08 << 21;
5401 else
5402 break;
5403 }
5404 else
5405 {
5406 from = (offset
5407 + input_section->output_offset
5408 + input_section->output_section->vma);
5409
5410 /* Invert 'y' bit if not the default. */
5411 if ((bfd_signed_vma) (relocation + addend - from) < 0)
5412 insn ^= 0x01 << 21;
5413 }
5414
5415 bfd_put_32 (output_bfd, (bfd_vma) insn, contents + offset);
5416 break;
5417
5418 case R_PPC64_REL24:
5419 /* A REL24 branching to a linkage function is followed by a
5420 nop. We replace the nop with a ld in order to restore
5421 the TOC base pointer. Only calls to shared objects need
5422 to alter the TOC base. These are recognized by their
5423 need for a PLT entry. */
5424 if (h != NULL
5425 && (fdh = ((struct ppc_link_hash_entry *) h)->oh) != NULL
5426 && fdh->plt.offset != (bfd_vma) -1
5427 && (stub_entry = ppc_get_stub_entry (input_section, sec, fdh,
5428 rel, htab)) != NULL)
5429 {
5430 boolean can_plt_call = 0;
5431
5432 if (offset + 8 <= input_section->_cooked_size)
5433 {
5434 insn = bfd_get_32 (input_bfd, contents + offset + 4);
5435 if (insn == NOP
5436 || insn == CROR_151515 || insn == CROR_313131)
5437 {
5438 bfd_put_32 (input_bfd, (bfd_vma) LD_R2_40R1,
5439 contents + offset + 4);
5440 can_plt_call = 1;
5441 }
5442 }
5443
5444 if (!can_plt_call)
5445 {
5446 /* If this is a plain branch rather than a branch
5447 and link, don't require a nop. */
5448 insn = bfd_get_32 (input_bfd, contents + offset);
5449 if ((insn & 1) == 0)
5450 can_plt_call = 1;
5451 }
5452
5453 if (can_plt_call)
5454 {
5455 relocation = (stub_entry->stub_offset
5456 + stub_entry->stub_sec->output_offset
5457 + stub_entry->stub_sec->output_section->vma);
5458 addend = 0;
5459 unresolved_reloc = false;
5460 }
5461 }
5462
5463 if (h != NULL
5464 && h->root.type == bfd_link_hash_undefweak
5465 && relocation == 0
5466 && addend == 0)
5467 {
5468 /* Tweak calls to undefined weak functions to point at a
5469 blr. We can thus call a weak function without first
5470 checking whether the function is defined. We have a
5471 blr at the end of .sfpr. */
5472 BFD_ASSERT (htab->sfpr->_raw_size != 0);
5473 relocation = (htab->sfpr->_raw_size - 4
5474 + htab->sfpr->output_offset
5475 + htab->sfpr->output_section->vma);
5476 from = (offset
5477 + input_section->output_offset
5478 + input_section->output_section->vma);
5479
5480 /* But let's not be silly about it. If the blr isn't in
5481 reach, just go to the next instruction. */
5482 if (relocation - from + (1 << 25) >= (1 << 26)
5483 || htab->sfpr->_raw_size == 0)
5484 relocation = from + 4;
5485 }
5486 break;
5487 }
5488
5489 /* Set `addend'. */
5490 switch (r_type)
5491 {
5492 default:
5493 (*_bfd_error_handler)
5494 (_("%s: unknown relocation type %d for symbol %s"),
5495 bfd_archive_filename (input_bfd), (int) r_type, sym_name);
5496
5497 bfd_set_error (bfd_error_bad_value);
5498 ret = false;
5499 continue;
5500
5501 case R_PPC64_NONE:
5502 case R_PPC_GNU_VTINHERIT:
5503 case R_PPC_GNU_VTENTRY:
5504 continue;
5505
5506 /* GOT16 relocations. Like an ADDR16 using the symbol's
5507 address in the GOT as relocation value instead of the
5508 symbols value itself. Also, create a GOT entry for the
5509 symbol and put the symbol value there. */
5510 case R_PPC64_GOT16:
5511 case R_PPC64_GOT16_LO:
5512 case R_PPC64_GOT16_HI:
5513 case R_PPC64_GOT16_HA:
5514 case R_PPC64_GOT16_DS:
5515 case R_PPC64_GOT16_LO_DS:
5516 {
5517 /* Relocation is to the entry for this symbol in the global
5518 offset table. */
5519 bfd_vma off;
5520
5521 if (htab->sgot == NULL)
5522 abort ();
5523
5524 if (h != NULL)
5525 {
5526 boolean dyn;
5527
5528 off = h->got.offset;
5529 dyn = htab->elf.dynamic_sections_created;
5530 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info, h)
5531 || (info->shared
5532 && (info->symbolic
5533 || h->dynindx == -1
5534 || (h->elf_link_hash_flags
5535 & ELF_LINK_FORCED_LOCAL))
5536 && (h->elf_link_hash_flags
5537 & ELF_LINK_HASH_DEF_REGULAR)))
5538 {
5539 /* This is actually a static link, or it is a
5540 -Bsymbolic link and the symbol is defined
5541 locally, or the symbol was forced to be local
5542 because of a version file. We must initialize
5543 this entry in the global offset table. Since the
5544 offset must always be a multiple of 8, we use the
5545 least significant bit to record whether we have
5546 initialized it already.
5547
5548 When doing a dynamic link, we create a .rel.got
5549 relocation entry to initialize the value. This
5550 is done in the finish_dynamic_symbol routine. */
5551 if ((off & 1) != 0)
5552 off &= ~1;
5553 else
5554 {
5555 bfd_put_64 (output_bfd, relocation,
5556 htab->sgot->contents + off);
5557 h->got.offset |= 1;
5558 }
5559 }
5560 else
5561 unresolved_reloc = false;
5562 }
5563 else
5564 {
5565 if (local_got_offsets == NULL)
5566 abort ();
5567
5568 off = local_got_offsets[r_symndx];
5569
5570 /* The offset must always be a multiple of 8. We use
5571 the least significant bit to record whether we have
5572 already processed this entry. */
5573 if ((off & 1) != 0)
5574 off &= ~1;
5575 else
5576 {
5577 bfd_put_64 (output_bfd, relocation,
5578 htab->sgot->contents + off);
5579
5580 if (info->shared)
5581 {
5582 Elf_Internal_Rela outrel;
5583 Elf64_External_Rela *loc;
5584
5585 /* We need to generate a R_PPC64_RELATIVE reloc
5586 for the dynamic linker. */
5587 outrel.r_offset = (htab->sgot->output_section->vma
5588 + htab->sgot->output_offset
5589 + off);
5590 outrel.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
5591 outrel.r_addend = relocation;
5592 loc = (Elf64_External_Rela *) htab->srelgot->contents;
5593 loc += htab->srelgot->reloc_count++;
5594 bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc);
5595 }
5596
5597 local_got_offsets[r_symndx] |= 1;
5598 }
5599 }
5600
5601 if (off >= (bfd_vma) -2)
5602 abort ();
5603
5604 relocation = htab->sgot->output_offset + off;
5605
5606 /* TOC base (r2) is TOC start plus 0x8000. */
5607 addend -= TOC_BASE_OFF;
5608 }
5609 break;
5610
5611 case R_PPC64_PLT16_HA:
5612 case R_PPC64_PLT16_HI:
5613 case R_PPC64_PLT16_LO:
5614 case R_PPC64_PLT32:
5615 case R_PPC64_PLT64:
5616 /* Relocation is to the entry for this symbol in the
5617 procedure linkage table. */
5618
5619 /* Resolve a PLT reloc against a local symbol directly,
5620 without using the procedure linkage table. */
5621 if (h == NULL)
5622 break;
5623
5624 if (h->plt.offset == (bfd_vma) -1
5625 || htab->splt == NULL)
5626 {
5627 /* We didn't make a PLT entry for this symbol. This
5628 happens when statically linking PIC code, or when
5629 using -Bsymbolic. */
5630 break;
5631 }
5632
5633 relocation = (htab->splt->output_section->vma
5634 + htab->splt->output_offset
5635 + h->plt.offset);
5636 unresolved_reloc = false;
5637 break;
5638
5639 /* TOC16 relocs. We want the offset relative to the TOC base,
5640 which is the address of the start of the TOC plus 0x8000.
5641 The TOC consists of sections .got, .toc, .tocbss, and .plt,
5642 in this order. */
5643 case R_PPC64_TOC16:
5644 case R_PPC64_TOC16_LO:
5645 case R_PPC64_TOC16_HI:
5646 case R_PPC64_TOC16_DS:
5647 case R_PPC64_TOC16_LO_DS:
5648 case R_PPC64_TOC16_HA:
5649 addend -= TOCstart + TOC_BASE_OFF;
5650 break;
5651
5652 /* Relocate against the beginning of the section. */
5653 case R_PPC64_SECTOFF:
5654 case R_PPC64_SECTOFF_LO:
5655 case R_PPC64_SECTOFF_HI:
5656 case R_PPC64_SECTOFF_DS:
5657 case R_PPC64_SECTOFF_LO_DS:
5658 case R_PPC64_SECTOFF_HA:
5659 if (sec != (asection *) 0)
5660 addend -= sec->output_section->vma;
5661 break;
5662
5663 case R_PPC64_REL14:
5664 case R_PPC64_REL14_BRNTAKEN:
5665 case R_PPC64_REL14_BRTAKEN:
5666 case R_PPC64_REL24:
5667 break;
5668
5669 /* Relocations that may need to be propagated if this is a
5670 dynamic object. */
5671 case R_PPC64_REL32:
5672 case R_PPC64_REL64:
5673 case R_PPC64_ADDR14:
5674 case R_PPC64_ADDR14_BRNTAKEN:
5675 case R_PPC64_ADDR14_BRTAKEN:
5676 case R_PPC64_ADDR16:
5677 case R_PPC64_ADDR16_DS:
5678 case R_PPC64_ADDR16_HA:
5679 case R_PPC64_ADDR16_HI:
5680 case R_PPC64_ADDR16_HIGHER:
5681 case R_PPC64_ADDR16_HIGHERA:
5682 case R_PPC64_ADDR16_HIGHEST:
5683 case R_PPC64_ADDR16_HIGHESTA:
5684 case R_PPC64_ADDR16_LO:
5685 case R_PPC64_ADDR16_LO_DS:
5686 case R_PPC64_ADDR24:
5687 case R_PPC64_ADDR30:
5688 case R_PPC64_ADDR32:
5689 case R_PPC64_ADDR64:
5690 case R_PPC64_UADDR16:
5691 case R_PPC64_UADDR32:
5692 case R_PPC64_UADDR64:
5693 /* r_symndx will be zero only for relocs against symbols
5694 from removed linkonce sections, or sections discarded by
5695 a linker script. */
5696 if (r_symndx == 0)
5697 break;
5698 /* Fall thru. */
5699
5700 case R_PPC64_TOC:
5701 if ((input_section->flags & SEC_ALLOC) == 0)
5702 break;
5703
5704 if (NO_OPD_RELOCS && is_opd)
5705 break;
5706
5707 if ((info->shared
5708 && (IS_ABSOLUTE_RELOC (r_type)
5709 || (h != NULL
5710 && h->dynindx != -1
5711 && (! info->symbolic
5712 || (h->elf_link_hash_flags
5713 & ELF_LINK_HASH_DEF_REGULAR) == 0))))
5714 || (!info->shared
5715 && h != NULL
5716 && h->dynindx != -1
5717 && (h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
5718 && (((h->elf_link_hash_flags
5719 & ELF_LINK_HASH_DEF_DYNAMIC) != 0
5720 && (h->elf_link_hash_flags
5721 & ELF_LINK_HASH_DEF_REGULAR) == 0)
5722 || h->root.type == bfd_link_hash_undefweak
5723 || h->root.type == bfd_link_hash_undefined)))
5724 {
5725 Elf_Internal_Rela outrel;
5726 boolean skip, relocate;
5727 asection *sreloc;
5728 Elf64_External_Rela *loc;
5729
5730 /* When generating a dynamic object, these relocations
5731 are copied into the output file to be resolved at run
5732 time. */
5733
5734 skip = false;
5735 relocate = false;
5736
5737 outrel.r_offset =
5738 _bfd_elf_section_offset (output_bfd, info, input_section,
5739 rel->r_offset);
5740 if (outrel.r_offset == (bfd_vma) -1)
5741 skip = true;
5742 else if (outrel.r_offset == (bfd_vma) -2)
5743 skip = true, relocate = true;
5744 outrel.r_offset += (input_section->output_section->vma
5745 + input_section->output_offset);
5746 outrel.r_addend = addend;
5747
5748 if (skip)
5749 memset (&outrel, 0, sizeof outrel);
5750 else if (h != NULL
5751 && h->dynindx != -1
5752 && !is_opd
5753 && (!IS_ABSOLUTE_RELOC (r_type)
5754 || !info->shared
5755 || !info->symbolic
5756 || (h->elf_link_hash_flags
5757 & ELF_LINK_HASH_DEF_REGULAR) == 0))
5758 outrel.r_info = ELF64_R_INFO (h->dynindx, r_type);
5759 else
5760 {
5761 /* This symbol is local, or marked to become local,
5762 or this is an opd section reloc which must point
5763 at a local function. */
5764 outrel.r_addend += relocation;
5765 relocate = true;
5766 if (r_type == R_PPC64_ADDR64 || r_type == R_PPC64_TOC)
5767 {
5768 if (is_opd && h != NULL)
5769 {
5770 /* Lie about opd entries. This case occurs
5771 when building shared libraries and we
5772 reference a function in another shared
5773 lib. The same thing happens for a weak
5774 definition in an application that's
5775 overridden by a strong definition in a
5776 shared lib. (I believe this is a generic
5777 bug in binutils handling of weak syms.)
5778 In these cases we won't use the opd
5779 entry in this lib. */
5780 unresolved_reloc = false;
5781 }
5782 outrel.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
5783 }
5784 else
5785 {
5786 long indx = 0;
5787
5788 if (bfd_is_abs_section (sec))
5789 ;
5790 else if (sec == NULL || sec->owner == NULL)
5791 {
5792 bfd_set_error (bfd_error_bad_value);
5793 return false;
5794 }
5795 else
5796 {
5797 asection *osec;
5798
5799 osec = sec->output_section;
5800 indx = elf_section_data (osec)->dynindx;
5801
5802 /* We are turning this relocation into one
5803 against a section symbol, so subtract out
5804 the output section's address but not the
5805 offset of the input section in the output
5806 section. */
5807 outrel.r_addend -= osec->vma;
5808 }
5809
5810 outrel.r_info = ELF64_R_INFO (indx, r_type);
5811 }
5812 }
5813
5814 sreloc = elf_section_data (input_section)->sreloc;
5815 if (sreloc == NULL)
5816 abort ();
5817
5818 loc = (Elf64_External_Rela *) sreloc->contents;
5819 loc += sreloc->reloc_count++;
5820 bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc);
5821
5822 /* If this reloc is against an external symbol, it will
5823 be computed at runtime, so there's no need to do
5824 anything now. */
5825 if (! relocate)
5826 continue;
5827 }
5828 break;
5829
5830 case R_PPC64_COPY:
5831 case R_PPC64_GLOB_DAT:
5832 case R_PPC64_JMP_SLOT:
5833 case R_PPC64_RELATIVE:
5834 /* We shouldn't ever see these dynamic relocs in relocatable
5835 files. */
5836 /* Fall thru */
5837
5838 case R_PPC64_PLTGOT16:
5839 case R_PPC64_PLTGOT16_DS:
5840 case R_PPC64_PLTGOT16_HA:
5841 case R_PPC64_PLTGOT16_HI:
5842 case R_PPC64_PLTGOT16_LO:
5843 case R_PPC64_PLTGOT16_LO_DS:
5844 case R_PPC64_PLTREL32:
5845 case R_PPC64_PLTREL64:
5846 /* These ones haven't been implemented yet. */
5847
5848 (*_bfd_error_handler)
5849 (_("%s: Relocation %s is not supported for symbol %s."),
5850 bfd_archive_filename (input_bfd),
5851 ppc64_elf_howto_table[(int) r_type]->name, sym_name);
5852
5853 bfd_set_error (bfd_error_invalid_operation);
5854 ret = false;
5855 continue;
5856 }
5857
5858 /* Do any further special processing. */
5859 switch (r_type)
5860 {
5861 default:
5862 break;
5863
5864 case R_PPC64_ADDR16_HA:
5865 case R_PPC64_ADDR16_HIGHERA:
5866 case R_PPC64_ADDR16_HIGHESTA:
5867 case R_PPC64_PLT16_HA:
5868 case R_PPC64_TOC16_HA:
5869 case R_PPC64_SECTOFF_HA:
5870 /* It's just possible that this symbol is a weak symbol
5871 that's not actually defined anywhere. In that case,
5872 'sec' would be NULL, and we should leave the symbol
5873 alone (it will be set to zero elsewhere in the link). */
5874 if (sec != NULL)
5875 /* Add 0x10000 if sign bit in 0:15 is set. */
5876 addend += ((relocation + addend) & 0x8000) << 1;
5877 break;
5878
5879 case R_PPC64_ADDR16_DS:
5880 case R_PPC64_ADDR16_LO_DS:
5881 case R_PPC64_GOT16_DS:
5882 case R_PPC64_GOT16_LO_DS:
5883 case R_PPC64_PLT16_LO_DS:
5884 case R_PPC64_SECTOFF_DS:
5885 case R_PPC64_SECTOFF_LO_DS:
5886 case R_PPC64_TOC16_DS:
5887 case R_PPC64_TOC16_LO_DS:
5888 case R_PPC64_PLTGOT16_DS:
5889 case R_PPC64_PLTGOT16_LO_DS:
5890 if (((relocation + addend) & 3) != 0)
5891 {
5892 (*_bfd_error_handler)
5893 (_("%s: error: relocation %s not a multiple of 4"),
5894 bfd_archive_filename (input_bfd),
5895 ppc64_elf_howto_table[(int) r_type]->name);
5896 bfd_set_error (bfd_error_bad_value);
5897 ret = false;
5898 continue;
5899 }
5900 break;
5901
5902 case R_PPC64_REL14:
5903 case R_PPC64_REL14_BRNTAKEN:
5904 case R_PPC64_REL14_BRTAKEN:
5905 max_br_offset = 1 << 15;
5906 goto branch_check;
5907
5908 case R_PPC64_REL24:
5909 max_br_offset = 1 << 25;
5910
5911 branch_check:
5912 /* If the branch is out of reach, then redirect the
5913 call to the local stub for this function. */
5914 from = (offset
5915 + input_section->output_offset
5916 + input_section->output_section->vma);
5917 if (relocation + addend - from + max_br_offset >= 2 * max_br_offset
5918 && (stub_entry = ppc_get_stub_entry (input_section, sec, h,
5919 rel, htab)) != NULL)
5920 {
5921 /* Munge up the value and addend so that we call the stub
5922 rather than the procedure directly. */
5923 relocation = (stub_entry->stub_offset
5924 + stub_entry->stub_sec->output_offset
5925 + stub_entry->stub_sec->output_section->vma);
5926 addend = 0;
5927 }
5928 break;
5929 }
5930
5931 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
5932 because such sections are not SEC_ALLOC and thus ld.so will
5933 not process them. */
5934 if (unresolved_reloc
5935 && !((input_section->flags & SEC_DEBUGGING) != 0
5936 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0))
5937 {
5938 (*_bfd_error_handler)
5939 (_("%s(%s+0x%lx): unresolvable relocation against symbol `%s'"),
5940 bfd_archive_filename (input_bfd),
5941 bfd_get_section_name (input_bfd, input_section),
5942 (long) rel->r_offset,
5943 h->root.root.string);
5944 ret = false;
5945 }
5946
5947 r = _bfd_final_link_relocate (ppc64_elf_howto_table[(int) r_type],
5948 input_bfd,
5949 input_section,
5950 contents,
5951 offset,
5952 relocation,
5953 addend);
5954
5955 if (r != bfd_reloc_ok)
5956 {
5957 const char *name;
5958
5959 if (h != NULL)
5960 {
5961 if (h->root.type == bfd_link_hash_undefweak
5962 && ppc64_elf_howto_table[(int) r_type]->pc_relative)
5963 {
5964 /* Assume this is a call protected by other code that
5965 detects the symbol is undefined. If this is the case,
5966 we can safely ignore the overflow. If not, the
5967 program is hosed anyway, and a little warning isn't
5968 going to help. */
5969
5970 continue;
5971 }
5972
5973 name = h->root.root.string;
5974 }
5975 else
5976 {
5977 name = bfd_elf_string_from_elf_section (input_bfd,
5978 symtab_hdr->sh_link,
5979 sym->st_name);
5980 if (name == NULL)
5981 continue;
5982 if (*name == '\0')
5983 name = bfd_section_name (input_bfd, sec);
5984 }
5985
5986 if (r == bfd_reloc_overflow)
5987 {
5988 if (warned)
5989 continue;
5990 if (!((*info->callbacks->reloc_overflow)
5991 (info, name, ppc64_elf_howto_table[(int) r_type]->name,
5992 rel->r_addend, input_bfd, input_section, offset)))
5993 return false;
5994 }
5995 else
5996 {
5997 (*_bfd_error_handler)
5998 (_("%s(%s+0x%lx): reloc against `%s': error %d"),
5999 bfd_archive_filename (input_bfd),
6000 bfd_get_section_name (input_bfd, input_section),
6001 (long) rel->r_offset, name, (int) r);
6002 ret = false;
6003 }
6004 }
6005 }
6006
6007 return ret;
6008 }
6009
6010 /* Finish up dynamic symbol handling. We set the contents of various
6011 dynamic sections here. */
6012
6013 static boolean
6014 ppc64_elf_finish_dynamic_symbol (output_bfd, info, h, sym)
6015 bfd *output_bfd;
6016 struct bfd_link_info *info;
6017 struct elf_link_hash_entry *h;
6018 Elf_Internal_Sym *sym;
6019 {
6020 struct ppc_link_hash_table *htab;
6021 bfd *dynobj;
6022
6023 htab = ppc_hash_table (info);
6024 dynobj = htab->elf.dynobj;
6025
6026 if (h->plt.offset != (bfd_vma) -1
6027 && ((struct ppc_link_hash_entry *) h)->is_func_descriptor)
6028 {
6029 Elf_Internal_Rela rela;
6030 Elf64_External_Rela *loc;
6031
6032 /* This symbol has an entry in the procedure linkage table. Set
6033 it up. */
6034
6035 if (htab->splt == NULL
6036 || htab->srelplt == NULL
6037 || htab->sglink == NULL)
6038 abort ();
6039
6040 /* Create a JMP_SLOT reloc to inform the dynamic linker to
6041 fill in the PLT entry. */
6042
6043 rela.r_offset = (htab->splt->output_section->vma
6044 + htab->splt->output_offset
6045 + h->plt.offset);
6046 rela.r_info = ELF64_R_INFO (h->dynindx, R_PPC64_JMP_SLOT);
6047 rela.r_addend = 0;
6048
6049 loc = (Elf64_External_Rela *) htab->srelplt->contents;
6050 loc += (h->plt.offset - PLT_INITIAL_ENTRY_SIZE) / PLT_ENTRY_SIZE;
6051 bfd_elf64_swap_reloca_out (output_bfd, &rela, loc);
6052 }
6053
6054 if (h->got.offset != (bfd_vma) -1)
6055 {
6056 Elf_Internal_Rela rela;
6057 Elf64_External_Rela *loc;
6058
6059 /* This symbol has an entry in the global offset table. Set it
6060 up. */
6061
6062 if (htab->sgot == NULL || htab->srelgot == NULL)
6063 abort ();
6064
6065 rela.r_offset = (htab->sgot->output_section->vma
6066 + htab->sgot->output_offset
6067 + (h->got.offset &~ (bfd_vma) 1));
6068
6069 /* If this is a static link, or it is a -Bsymbolic link and the
6070 symbol is defined locally or was forced to be local because
6071 of a version file, we just want to emit a RELATIVE reloc.
6072 The entry in the global offset table will already have been
6073 initialized in the relocate_section function. */
6074 if (info->shared
6075 && (info->symbolic
6076 || h->dynindx == -1
6077 || (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL))
6078 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR))
6079 {
6080 BFD_ASSERT((h->got.offset & 1) != 0);
6081 rela.r_info = ELF64_R_INFO (0, R_PPC64_RELATIVE);
6082 rela.r_addend = (h->root.u.def.value
6083 + h->root.u.def.section->output_section->vma
6084 + h->root.u.def.section->output_offset);
6085 }
6086 else
6087 {
6088 BFD_ASSERT ((h->got.offset & 1) == 0);
6089 bfd_put_64 (output_bfd, (bfd_vma) 0,
6090 htab->sgot->contents + h->got.offset);
6091 rela.r_info = ELF64_R_INFO (h->dynindx, R_PPC64_GLOB_DAT);
6092 rela.r_addend = 0;
6093 }
6094
6095 loc = (Elf64_External_Rela *) htab->srelgot->contents;
6096 loc += htab->srelgot->reloc_count++;
6097 bfd_elf64_swap_reloca_out (output_bfd, &rela, loc);
6098 }
6099
6100 if ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_COPY) != 0)
6101 {
6102 Elf_Internal_Rela rela;
6103 Elf64_External_Rela *loc;
6104
6105 /* This symbol needs a copy reloc. Set it up. */
6106
6107 if (h->dynindx == -1
6108 || (h->root.type != bfd_link_hash_defined
6109 && h->root.type != bfd_link_hash_defweak)
6110 || htab->srelbss == NULL)
6111 abort ();
6112
6113 rela.r_offset = (h->root.u.def.value
6114 + h->root.u.def.section->output_section->vma
6115 + h->root.u.def.section->output_offset);
6116 rela.r_info = ELF64_R_INFO (h->dynindx, R_PPC64_COPY);
6117 rela.r_addend = 0;
6118 loc = (Elf64_External_Rela *) htab->srelbss->contents;
6119 loc += htab->srelbss->reloc_count++;
6120 bfd_elf64_swap_reloca_out (output_bfd, &rela, loc);
6121 }
6122
6123 /* Mark some specially defined symbols as absolute. */
6124 if (strcmp (h->root.root.string, "_DYNAMIC") == 0)
6125 sym->st_shndx = SHN_ABS;
6126
6127 return true;
6128 }
6129
6130 /* Used to decide how to sort relocs in an optimal manner for the
6131 dynamic linker, before writing them out. */
6132
6133 static enum elf_reloc_type_class
6134 ppc64_elf_reloc_type_class (rela)
6135 const Elf_Internal_Rela *rela;
6136 {
6137 enum elf_ppc_reloc_type r_type;
6138
6139 r_type = (enum elf_ppc_reloc_type) ELF64_R_TYPE (rela->r_info);
6140 switch (r_type)
6141 {
6142 case R_PPC64_RELATIVE:
6143 return reloc_class_relative;
6144 case R_PPC64_JMP_SLOT:
6145 return reloc_class_plt;
6146 case R_PPC64_COPY:
6147 return reloc_class_copy;
6148 default:
6149 return reloc_class_normal;
6150 }
6151 }
6152
6153 /* Finish up the dynamic sections. */
6154
6155 static boolean
6156 ppc64_elf_finish_dynamic_sections (output_bfd, info)
6157 bfd *output_bfd;
6158 struct bfd_link_info *info;
6159 {
6160 struct ppc_link_hash_table *htab;
6161 bfd *dynobj;
6162 asection *sdyn;
6163
6164 htab = ppc_hash_table (info);
6165 dynobj = htab->elf.dynobj;
6166 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
6167
6168 if (htab->elf.dynamic_sections_created)
6169 {
6170 Elf64_External_Dyn *dyncon, *dynconend;
6171
6172 if (sdyn == NULL || htab->sgot == NULL)
6173 abort ();
6174
6175 dyncon = (Elf64_External_Dyn *) sdyn->contents;
6176 dynconend = (Elf64_External_Dyn *) (sdyn->contents + sdyn->_raw_size);
6177 for (; dyncon < dynconend; dyncon++)
6178 {
6179 Elf_Internal_Dyn dyn;
6180 asection *s;
6181
6182 bfd_elf64_swap_dyn_in (dynobj, dyncon, &dyn);
6183
6184 switch (dyn.d_tag)
6185 {
6186 default:
6187 continue;
6188
6189 case DT_PPC64_GLINK:
6190 dyn.d_un.d_ptr = (htab->sglink->output_section->vma
6191 + htab->sglink->output_offset);
6192 break;
6193
6194 case DT_PPC64_OPD:
6195 s = bfd_get_section_by_name (output_bfd, ".opd");
6196 if (s != NULL)
6197 dyn.d_un.d_ptr = s->vma;
6198 break;
6199
6200 case DT_PPC64_OPDSZ:
6201 s = bfd_get_section_by_name (output_bfd, ".opd");
6202 if (s != NULL)
6203 dyn.d_un.d_val = s->_raw_size;
6204 break;
6205
6206 case DT_PLTGOT:
6207 dyn.d_un.d_ptr = (htab->splt->output_section->vma
6208 + htab->splt->output_offset);
6209 break;
6210
6211 case DT_JMPREL:
6212 dyn.d_un.d_ptr = (htab->srelplt->output_section->vma
6213 + htab->srelplt->output_offset);
6214 break;
6215
6216 case DT_PLTRELSZ:
6217 dyn.d_un.d_val = htab->srelplt->_raw_size;
6218 break;
6219
6220 case DT_RELASZ:
6221 /* Don't count procedure linkage table relocs in the
6222 overall reloc count. */
6223 if (htab->srelplt != NULL)
6224 dyn.d_un.d_val -= htab->srelplt->_raw_size;
6225 break;
6226 }
6227
6228 bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
6229 }
6230 }
6231
6232 if (htab->sgot != NULL && htab->sgot->_raw_size != 0)
6233 {
6234 /* Fill in the first entry in the global offset table.
6235 We use it to hold the link-time TOCbase. */
6236 bfd_put_64 (output_bfd,
6237 elf_gp (output_bfd) + TOC_BASE_OFF,
6238 htab->sgot->contents);
6239
6240 /* Set .got entry size. */
6241 elf_section_data (htab->sgot->output_section)->this_hdr.sh_entsize = 8;
6242 }
6243
6244 if (htab->splt != NULL && htab->splt->_raw_size != 0)
6245 {
6246 /* Set .plt entry size. */
6247 elf_section_data (htab->splt->output_section)->this_hdr.sh_entsize
6248 = PLT_ENTRY_SIZE;
6249 }
6250
6251 return true;
6252 }
6253
6254 #define TARGET_LITTLE_SYM bfd_elf64_powerpcle_vec
6255 #define TARGET_LITTLE_NAME "elf64-powerpcle"
6256 #define TARGET_BIG_SYM bfd_elf64_powerpc_vec
6257 #define TARGET_BIG_NAME "elf64-powerpc"
6258 #define ELF_ARCH bfd_arch_powerpc
6259 #define ELF_MACHINE_CODE EM_PPC64
6260 #define ELF_MAXPAGESIZE 0x10000
6261 #define elf_info_to_howto ppc64_elf_info_to_howto
6262
6263 #ifdef EM_CYGNUS_POWERPC
6264 #define ELF_MACHINE_ALT1 EM_CYGNUS_POWERPC
6265 #endif
6266
6267 #ifdef EM_PPC_OLD
6268 #define ELF_MACHINE_ALT2 EM_PPC_OLD
6269 #endif
6270
6271 #define elf_backend_want_got_sym 0
6272 #define elf_backend_want_plt_sym 0
6273 #define elf_backend_plt_alignment 3
6274 #define elf_backend_plt_not_loaded 1
6275 #define elf_backend_got_symbol_offset 0
6276 #define elf_backend_got_header_size 8
6277 #define elf_backend_plt_header_size PLT_INITIAL_ENTRY_SIZE
6278 #define elf_backend_can_gc_sections 1
6279 #define elf_backend_can_refcount 1
6280 #define elf_backend_rela_normal 1
6281
6282 #define bfd_elf64_bfd_reloc_type_lookup ppc64_elf_reloc_type_lookup
6283 #define bfd_elf64_bfd_merge_private_bfd_data ppc64_elf_merge_private_bfd_data
6284 #define bfd_elf64_bfd_link_hash_table_create ppc64_elf_link_hash_table_create
6285 #define bfd_elf64_bfd_link_hash_table_free ppc64_elf_link_hash_table_free
6286
6287 #define elf_backend_object_p ppc64_elf_object_p
6288 #define elf_backend_create_dynamic_sections ppc64_elf_create_dynamic_sections
6289 #define elf_backend_copy_indirect_symbol ppc64_elf_copy_indirect_symbol
6290 #define elf_backend_check_relocs ppc64_elf_check_relocs
6291 #define elf_backend_gc_mark_hook ppc64_elf_gc_mark_hook
6292 #define elf_backend_gc_sweep_hook ppc64_elf_gc_sweep_hook
6293 #define elf_backend_adjust_dynamic_symbol ppc64_elf_adjust_dynamic_symbol
6294 #define elf_backend_hide_symbol ppc64_elf_hide_symbol
6295 #define elf_backend_always_size_sections ppc64_elf_func_desc_adjust
6296 #define elf_backend_size_dynamic_sections ppc64_elf_size_dynamic_sections
6297 #define elf_backend_relocate_section ppc64_elf_relocate_section
6298 #define elf_backend_finish_dynamic_symbol ppc64_elf_finish_dynamic_symbol
6299 #define elf_backend_reloc_type_class ppc64_elf_reloc_type_class
6300 #define elf_backend_finish_dynamic_sections ppc64_elf_finish_dynamic_sections
6301
6302 #include "elf64-target.h"
This page took 0.178981 seconds and 5 git commands to generate.