1 /* PowerPC-specific support for 32-bit ELF
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor, Cygnus Support.
6 This file is part of BFD, the Binary File Descriptor library.
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.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the
20 Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 /* This file is based on a preliminary PowerPC ELF ABI. The
24 information may not match the final PowerPC ELF ABI. It includes
25 suggestions from the in-progress Embedded PowerPC ABI, and that
26 information may also not match. */
34 #include "elf32-ppc.h"
36 /* RELA relocations are used here. */
38 static bfd_reloc_status_type ppc_elf_addr16_ha_reloc
39 (bfd
*, arelent
*, asymbol
*, void *, asection
*, bfd
*, char **);
40 static bfd_reloc_status_type ppc_elf_unhandled_reloc
41 (bfd
*, arelent
*, asymbol
*, void *, asection
*, bfd
*, char **);
43 /* Branch prediction bit for branch taken relocs. */
44 #define BRANCH_PREDICT_BIT 0x200000
45 /* Mask to set RA in memory instructions. */
46 #define RA_REGISTER_MASK 0x001f0000
47 /* Value to shift register by to insert RA. */
48 #define RA_REGISTER_SHIFT 16
50 /* The name of the dynamic interpreter. This is put in the .interp
52 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
54 /* For old-style PLT. */
55 /* The size in bytes of an entry in the procedure linkage table. */
56 #define PLT_ENTRY_SIZE 12
57 /* The initial size of the plt reserved for the dynamic linker. */
58 #define PLT_INITIAL_ENTRY_SIZE 72
59 /* The size of the gap between entries in the PLT. */
60 #define PLT_SLOT_SIZE 8
61 /* The number of single-slot PLT entries (the rest use two slots). */
62 #define PLT_NUM_SINGLE_ENTRIES 8192
64 /* For new-style .glink and .plt. */
65 #define GLINK_PLTRESOLVE 16*4
66 #define GLINK_ENTRY_SIZE 4*4
68 /* Some instructions. */
69 #define ADDIS_11_11 0x3d6b0000
70 #define ADDIS_11_30 0x3d7e0000
71 #define ADDIS_12_12 0x3d8c0000
72 #define ADDI_11_11 0x396b0000
73 #define ADD_0_11_11 0x7c0b5a14
74 #define ADD_11_0_11 0x7d605a14
76 #define BCL_20_31 0x429f0005
77 #define BCTR 0x4e800420
78 #define LIS_11 0x3d600000
79 #define LIS_12 0x3d800000
80 #define LWZU_0_12 0x840c0000
81 #define LWZ_0_12 0x800c0000
82 #define LWZ_11_11 0x816b0000
83 #define LWZ_11_30 0x817e0000
84 #define LWZ_12_12 0x818c0000
85 #define MFLR_0 0x7c0802a6
86 #define MFLR_12 0x7d8802a6
87 #define MTCTR_0 0x7c0903a6
88 #define MTCTR_11 0x7d6903a6
89 #define MTLR_0 0x7c0803a6
90 #define NOP 0x60000000
91 #define SUB_11_11_12 0x7d6c5850
93 /* Offset of tp and dtp pointers from start of TLS block. */
94 #define TP_OFFSET 0x7000
95 #define DTP_OFFSET 0x8000
97 static reloc_howto_type
*ppc_elf_howto_table
[R_PPC_max
];
99 static reloc_howto_type ppc_elf_howto_raw
[] = {
100 /* This reloc does nothing. */
101 HOWTO (R_PPC_NONE
, /* type */
103 2, /* size (0 = byte, 1 = short, 2 = long) */
105 FALSE
, /* pc_relative */
107 complain_overflow_bitfield
, /* complain_on_overflow */
108 bfd_elf_generic_reloc
, /* special_function */
109 "R_PPC_NONE", /* name */
110 FALSE
, /* partial_inplace */
113 FALSE
), /* pcrel_offset */
115 /* A standard 32 bit relocation. */
116 HOWTO (R_PPC_ADDR32
, /* type */
118 2, /* size (0 = byte, 1 = short, 2 = long) */
120 FALSE
, /* pc_relative */
122 complain_overflow_bitfield
, /* complain_on_overflow */
123 bfd_elf_generic_reloc
, /* special_function */
124 "R_PPC_ADDR32", /* name */
125 FALSE
, /* partial_inplace */
127 0xffffffff, /* dst_mask */
128 FALSE
), /* pcrel_offset */
130 /* An absolute 26 bit branch; the lower two bits must be zero.
131 FIXME: we don't check that, we just clear them. */
132 HOWTO (R_PPC_ADDR24
, /* type */
134 2, /* size (0 = byte, 1 = short, 2 = long) */
136 FALSE
, /* pc_relative */
138 complain_overflow_bitfield
, /* complain_on_overflow */
139 bfd_elf_generic_reloc
, /* special_function */
140 "R_PPC_ADDR24", /* name */
141 FALSE
, /* partial_inplace */
143 0x3fffffc, /* dst_mask */
144 FALSE
), /* pcrel_offset */
146 /* A standard 16 bit relocation. */
147 HOWTO (R_PPC_ADDR16
, /* type */
149 1, /* size (0 = byte, 1 = short, 2 = long) */
151 FALSE
, /* pc_relative */
153 complain_overflow_bitfield
, /* complain_on_overflow */
154 bfd_elf_generic_reloc
, /* special_function */
155 "R_PPC_ADDR16", /* name */
156 FALSE
, /* partial_inplace */
158 0xffff, /* dst_mask */
159 FALSE
), /* pcrel_offset */
161 /* A 16 bit relocation without overflow. */
162 HOWTO (R_PPC_ADDR16_LO
, /* type */
164 1, /* size (0 = byte, 1 = short, 2 = long) */
166 FALSE
, /* pc_relative */
168 complain_overflow_dont
,/* complain_on_overflow */
169 bfd_elf_generic_reloc
, /* special_function */
170 "R_PPC_ADDR16_LO", /* name */
171 FALSE
, /* partial_inplace */
173 0xffff, /* dst_mask */
174 FALSE
), /* pcrel_offset */
176 /* The high order 16 bits of an address. */
177 HOWTO (R_PPC_ADDR16_HI
, /* type */
179 1, /* size (0 = byte, 1 = short, 2 = long) */
181 FALSE
, /* pc_relative */
183 complain_overflow_dont
, /* complain_on_overflow */
184 bfd_elf_generic_reloc
, /* special_function */
185 "R_PPC_ADDR16_HI", /* name */
186 FALSE
, /* partial_inplace */
188 0xffff, /* dst_mask */
189 FALSE
), /* pcrel_offset */
191 /* The high order 16 bits of an address, plus 1 if the contents of
192 the low 16 bits, treated as a signed number, is negative. */
193 HOWTO (R_PPC_ADDR16_HA
, /* type */
195 1, /* size (0 = byte, 1 = short, 2 = long) */
197 FALSE
, /* pc_relative */
199 complain_overflow_dont
, /* complain_on_overflow */
200 ppc_elf_addr16_ha_reloc
, /* special_function */
201 "R_PPC_ADDR16_HA", /* name */
202 FALSE
, /* partial_inplace */
204 0xffff, /* dst_mask */
205 FALSE
), /* pcrel_offset */
207 /* An absolute 16 bit branch; the lower two bits must be zero.
208 FIXME: we don't check that, we just clear them. */
209 HOWTO (R_PPC_ADDR14
, /* type */
211 2, /* size (0 = byte, 1 = short, 2 = long) */
213 FALSE
, /* pc_relative */
215 complain_overflow_bitfield
, /* complain_on_overflow */
216 bfd_elf_generic_reloc
, /* special_function */
217 "R_PPC_ADDR14", /* name */
218 FALSE
, /* partial_inplace */
220 0xfffc, /* dst_mask */
221 FALSE
), /* pcrel_offset */
223 /* An absolute 16 bit branch, for which bit 10 should be set to
224 indicate that the branch is expected to be taken. The lower two
225 bits must be zero. */
226 HOWTO (R_PPC_ADDR14_BRTAKEN
, /* type */
228 2, /* size (0 = byte, 1 = short, 2 = long) */
230 FALSE
, /* pc_relative */
232 complain_overflow_bitfield
, /* complain_on_overflow */
233 bfd_elf_generic_reloc
, /* special_function */
234 "R_PPC_ADDR14_BRTAKEN",/* name */
235 FALSE
, /* partial_inplace */
237 0xfffc, /* dst_mask */
238 FALSE
), /* pcrel_offset */
240 /* An absolute 16 bit branch, for which bit 10 should be set to
241 indicate that the branch is not expected to be taken. The lower
242 two bits must be zero. */
243 HOWTO (R_PPC_ADDR14_BRNTAKEN
, /* type */
245 2, /* size (0 = byte, 1 = short, 2 = long) */
247 FALSE
, /* pc_relative */
249 complain_overflow_bitfield
, /* complain_on_overflow */
250 bfd_elf_generic_reloc
, /* special_function */
251 "R_PPC_ADDR14_BRNTAKEN",/* name */
252 FALSE
, /* partial_inplace */
254 0xfffc, /* dst_mask */
255 FALSE
), /* pcrel_offset */
257 /* A relative 26 bit branch; the lower two bits must be zero. */
258 HOWTO (R_PPC_REL24
, /* type */
260 2, /* size (0 = byte, 1 = short, 2 = long) */
262 TRUE
, /* pc_relative */
264 complain_overflow_signed
, /* complain_on_overflow */
265 bfd_elf_generic_reloc
, /* special_function */
266 "R_PPC_REL24", /* name */
267 FALSE
, /* partial_inplace */
269 0x3fffffc, /* dst_mask */
270 TRUE
), /* pcrel_offset */
272 /* A relative 16 bit branch; the lower two bits must be zero. */
273 HOWTO (R_PPC_REL14
, /* type */
275 2, /* size (0 = byte, 1 = short, 2 = long) */
277 TRUE
, /* pc_relative */
279 complain_overflow_signed
, /* complain_on_overflow */
280 bfd_elf_generic_reloc
, /* special_function */
281 "R_PPC_REL14", /* name */
282 FALSE
, /* partial_inplace */
284 0xfffc, /* dst_mask */
285 TRUE
), /* pcrel_offset */
287 /* A relative 16 bit branch. Bit 10 should be set to indicate that
288 the branch is expected to be taken. The lower two bits must be
290 HOWTO (R_PPC_REL14_BRTAKEN
, /* type */
292 2, /* size (0 = byte, 1 = short, 2 = long) */
294 TRUE
, /* pc_relative */
296 complain_overflow_signed
, /* complain_on_overflow */
297 bfd_elf_generic_reloc
, /* special_function */
298 "R_PPC_REL14_BRTAKEN", /* name */
299 FALSE
, /* partial_inplace */
301 0xfffc, /* dst_mask */
302 TRUE
), /* pcrel_offset */
304 /* A relative 16 bit branch. Bit 10 should be set to indicate that
305 the branch is not expected to be taken. The lower two bits must
307 HOWTO (R_PPC_REL14_BRNTAKEN
, /* type */
309 2, /* size (0 = byte, 1 = short, 2 = long) */
311 TRUE
, /* pc_relative */
313 complain_overflow_signed
, /* complain_on_overflow */
314 bfd_elf_generic_reloc
, /* special_function */
315 "R_PPC_REL14_BRNTAKEN",/* name */
316 FALSE
, /* partial_inplace */
318 0xfffc, /* dst_mask */
319 TRUE
), /* pcrel_offset */
321 /* Like R_PPC_ADDR16, but referring to the GOT table entry for the
323 HOWTO (R_PPC_GOT16
, /* type */
325 1, /* size (0 = byte, 1 = short, 2 = long) */
327 FALSE
, /* pc_relative */
329 complain_overflow_signed
, /* complain_on_overflow */
330 bfd_elf_generic_reloc
, /* special_function */
331 "R_PPC_GOT16", /* name */
332 FALSE
, /* partial_inplace */
334 0xffff, /* dst_mask */
335 FALSE
), /* pcrel_offset */
337 /* Like R_PPC_ADDR16_LO, but referring to the GOT table entry for
339 HOWTO (R_PPC_GOT16_LO
, /* type */
341 1, /* size (0 = byte, 1 = short, 2 = long) */
343 FALSE
, /* pc_relative */
345 complain_overflow_dont
, /* complain_on_overflow */
346 bfd_elf_generic_reloc
, /* special_function */
347 "R_PPC_GOT16_LO", /* name */
348 FALSE
, /* partial_inplace */
350 0xffff, /* dst_mask */
351 FALSE
), /* pcrel_offset */
353 /* Like R_PPC_ADDR16_HI, but referring to the GOT table entry for
355 HOWTO (R_PPC_GOT16_HI
, /* type */
357 1, /* size (0 = byte, 1 = short, 2 = long) */
359 FALSE
, /* pc_relative */
361 complain_overflow_bitfield
, /* complain_on_overflow */
362 bfd_elf_generic_reloc
, /* special_function */
363 "R_PPC_GOT16_HI", /* name */
364 FALSE
, /* partial_inplace */
366 0xffff, /* dst_mask */
367 FALSE
), /* pcrel_offset */
369 /* Like R_PPC_ADDR16_HA, but referring to the GOT table entry for
371 HOWTO (R_PPC_GOT16_HA
, /* type */
373 1, /* size (0 = byte, 1 = short, 2 = long) */
375 FALSE
, /* pc_relative */
377 complain_overflow_bitfield
, /* complain_on_overflow */
378 ppc_elf_addr16_ha_reloc
, /* special_function */
379 "R_PPC_GOT16_HA", /* name */
380 FALSE
, /* partial_inplace */
382 0xffff, /* dst_mask */
383 FALSE
), /* pcrel_offset */
385 /* Like R_PPC_REL24, but referring to the procedure linkage table
386 entry for the symbol. */
387 HOWTO (R_PPC_PLTREL24
, /* type */
389 2, /* size (0 = byte, 1 = short, 2 = long) */
391 TRUE
, /* pc_relative */
393 complain_overflow_signed
, /* complain_on_overflow */
394 bfd_elf_generic_reloc
, /* special_function */
395 "R_PPC_PLTREL24", /* name */
396 FALSE
, /* partial_inplace */
398 0x3fffffc, /* dst_mask */
399 TRUE
), /* pcrel_offset */
401 /* This is used only by the dynamic linker. The symbol should exist
402 both in the object being run and in some shared library. The
403 dynamic linker copies the data addressed by the symbol from the
404 shared library into the object, because the object being
405 run has to have the data at some particular address. */
406 HOWTO (R_PPC_COPY
, /* type */
408 2, /* size (0 = byte, 1 = short, 2 = long) */
410 FALSE
, /* pc_relative */
412 complain_overflow_bitfield
, /* complain_on_overflow */
413 bfd_elf_generic_reloc
, /* special_function */
414 "R_PPC_COPY", /* name */
415 FALSE
, /* partial_inplace */
418 FALSE
), /* pcrel_offset */
420 /* Like R_PPC_ADDR32, but used when setting global offset table
422 HOWTO (R_PPC_GLOB_DAT
, /* type */
424 2, /* size (0 = byte, 1 = short, 2 = long) */
426 FALSE
, /* pc_relative */
428 complain_overflow_bitfield
, /* complain_on_overflow */
429 bfd_elf_generic_reloc
, /* special_function */
430 "R_PPC_GLOB_DAT", /* name */
431 FALSE
, /* partial_inplace */
433 0xffffffff, /* dst_mask */
434 FALSE
), /* pcrel_offset */
436 /* Marks a procedure linkage table entry for a symbol. */
437 HOWTO (R_PPC_JMP_SLOT
, /* type */
439 2, /* size (0 = byte, 1 = short, 2 = long) */
441 FALSE
, /* pc_relative */
443 complain_overflow_bitfield
, /* complain_on_overflow */
444 bfd_elf_generic_reloc
, /* special_function */
445 "R_PPC_JMP_SLOT", /* name */
446 FALSE
, /* partial_inplace */
449 FALSE
), /* pcrel_offset */
451 /* Used only by the dynamic linker. When the object is run, this
452 longword is set to the load address of the object, plus the
454 HOWTO (R_PPC_RELATIVE
, /* type */
456 2, /* size (0 = byte, 1 = short, 2 = long) */
458 FALSE
, /* pc_relative */
460 complain_overflow_bitfield
, /* complain_on_overflow */
461 bfd_elf_generic_reloc
, /* special_function */
462 "R_PPC_RELATIVE", /* name */
463 FALSE
, /* partial_inplace */
465 0xffffffff, /* dst_mask */
466 FALSE
), /* pcrel_offset */
468 /* Like R_PPC_REL24, but uses the value of the symbol within the
469 object rather than the final value. Normally used for
470 _GLOBAL_OFFSET_TABLE_. */
471 HOWTO (R_PPC_LOCAL24PC
, /* type */
473 2, /* size (0 = byte, 1 = short, 2 = long) */
475 TRUE
, /* pc_relative */
477 complain_overflow_signed
, /* complain_on_overflow */
478 bfd_elf_generic_reloc
, /* special_function */
479 "R_PPC_LOCAL24PC", /* name */
480 FALSE
, /* partial_inplace */
482 0x3fffffc, /* dst_mask */
483 TRUE
), /* pcrel_offset */
485 /* Like R_PPC_ADDR32, but may be unaligned. */
486 HOWTO (R_PPC_UADDR32
, /* type */
488 2, /* size (0 = byte, 1 = short, 2 = long) */
490 FALSE
, /* pc_relative */
492 complain_overflow_bitfield
, /* complain_on_overflow */
493 bfd_elf_generic_reloc
, /* special_function */
494 "R_PPC_UADDR32", /* name */
495 FALSE
, /* partial_inplace */
497 0xffffffff, /* dst_mask */
498 FALSE
), /* pcrel_offset */
500 /* Like R_PPC_ADDR16, but may be unaligned. */
501 HOWTO (R_PPC_UADDR16
, /* type */
503 1, /* size (0 = byte, 1 = short, 2 = long) */
505 FALSE
, /* pc_relative */
507 complain_overflow_bitfield
, /* complain_on_overflow */
508 bfd_elf_generic_reloc
, /* special_function */
509 "R_PPC_UADDR16", /* name */
510 FALSE
, /* partial_inplace */
512 0xffff, /* dst_mask */
513 FALSE
), /* pcrel_offset */
515 /* 32-bit PC relative */
516 HOWTO (R_PPC_REL32
, /* type */
518 2, /* size (0 = byte, 1 = short, 2 = long) */
520 TRUE
, /* pc_relative */
522 complain_overflow_bitfield
, /* complain_on_overflow */
523 bfd_elf_generic_reloc
, /* special_function */
524 "R_PPC_REL32", /* name */
525 FALSE
, /* partial_inplace */
527 0xffffffff, /* dst_mask */
528 TRUE
), /* pcrel_offset */
530 /* 32-bit relocation to the symbol's procedure linkage table.
531 FIXME: not supported. */
532 HOWTO (R_PPC_PLT32
, /* type */
534 2, /* size (0 = byte, 1 = short, 2 = long) */
536 FALSE
, /* pc_relative */
538 complain_overflow_bitfield
, /* complain_on_overflow */
539 bfd_elf_generic_reloc
, /* special_function */
540 "R_PPC_PLT32", /* name */
541 FALSE
, /* partial_inplace */
544 FALSE
), /* pcrel_offset */
546 /* 32-bit PC relative relocation to the symbol's procedure linkage table.
547 FIXME: not supported. */
548 HOWTO (R_PPC_PLTREL32
, /* type */
550 2, /* size (0 = byte, 1 = short, 2 = long) */
552 TRUE
, /* pc_relative */
554 complain_overflow_bitfield
, /* complain_on_overflow */
555 bfd_elf_generic_reloc
, /* special_function */
556 "R_PPC_PLTREL32", /* name */
557 FALSE
, /* partial_inplace */
560 TRUE
), /* pcrel_offset */
562 /* Like R_PPC_ADDR16_LO, but referring to the PLT table entry for
564 HOWTO (R_PPC_PLT16_LO
, /* type */
566 1, /* size (0 = byte, 1 = short, 2 = long) */
568 FALSE
, /* pc_relative */
570 complain_overflow_dont
, /* complain_on_overflow */
571 bfd_elf_generic_reloc
, /* special_function */
572 "R_PPC_PLT16_LO", /* name */
573 FALSE
, /* partial_inplace */
575 0xffff, /* dst_mask */
576 FALSE
), /* pcrel_offset */
578 /* Like R_PPC_ADDR16_HI, but referring to the PLT table entry for
580 HOWTO (R_PPC_PLT16_HI
, /* type */
582 1, /* size (0 = byte, 1 = short, 2 = long) */
584 FALSE
, /* pc_relative */
586 complain_overflow_bitfield
, /* complain_on_overflow */
587 bfd_elf_generic_reloc
, /* special_function */
588 "R_PPC_PLT16_HI", /* name */
589 FALSE
, /* partial_inplace */
591 0xffff, /* dst_mask */
592 FALSE
), /* pcrel_offset */
594 /* Like R_PPC_ADDR16_HA, but referring to the PLT table entry for
596 HOWTO (R_PPC_PLT16_HA
, /* type */
598 1, /* size (0 = byte, 1 = short, 2 = long) */
600 FALSE
, /* pc_relative */
602 complain_overflow_bitfield
, /* complain_on_overflow */
603 ppc_elf_addr16_ha_reloc
, /* special_function */
604 "R_PPC_PLT16_HA", /* name */
605 FALSE
, /* partial_inplace */
607 0xffff, /* dst_mask */
608 FALSE
), /* pcrel_offset */
610 /* A sign-extended 16 bit value relative to _SDA_BASE_, for use with
612 HOWTO (R_PPC_SDAREL16
, /* type */
614 1, /* size (0 = byte, 1 = short, 2 = long) */
616 FALSE
, /* pc_relative */
618 complain_overflow_signed
, /* complain_on_overflow */
619 bfd_elf_generic_reloc
, /* special_function */
620 "R_PPC_SDAREL16", /* name */
621 FALSE
, /* partial_inplace */
623 0xffff, /* dst_mask */
624 FALSE
), /* pcrel_offset */
626 /* 16-bit section relative relocation. */
627 HOWTO (R_PPC_SECTOFF
, /* type */
629 1, /* size (0 = byte, 1 = short, 2 = long) */
631 FALSE
, /* pc_relative */
633 complain_overflow_bitfield
, /* complain_on_overflow */
634 bfd_elf_generic_reloc
, /* special_function */
635 "R_PPC_SECTOFF", /* name */
636 FALSE
, /* partial_inplace */
638 0xffff, /* dst_mask */
639 FALSE
), /* pcrel_offset */
641 /* 16-bit lower half section relative relocation. */
642 HOWTO (R_PPC_SECTOFF_LO
, /* type */
644 1, /* size (0 = byte, 1 = short, 2 = long) */
646 FALSE
, /* pc_relative */
648 complain_overflow_dont
, /* complain_on_overflow */
649 bfd_elf_generic_reloc
, /* special_function */
650 "R_PPC_SECTOFF_LO", /* name */
651 FALSE
, /* partial_inplace */
653 0xffff, /* dst_mask */
654 FALSE
), /* pcrel_offset */
656 /* 16-bit upper half section relative relocation. */
657 HOWTO (R_PPC_SECTOFF_HI
, /* type */
659 1, /* size (0 = byte, 1 = short, 2 = long) */
661 FALSE
, /* pc_relative */
663 complain_overflow_bitfield
, /* complain_on_overflow */
664 bfd_elf_generic_reloc
, /* special_function */
665 "R_PPC_SECTOFF_HI", /* name */
666 FALSE
, /* partial_inplace */
668 0xffff, /* dst_mask */
669 FALSE
), /* pcrel_offset */
671 /* 16-bit upper half adjusted section relative relocation. */
672 HOWTO (R_PPC_SECTOFF_HA
, /* type */
674 1, /* size (0 = byte, 1 = short, 2 = long) */
676 FALSE
, /* pc_relative */
678 complain_overflow_bitfield
, /* complain_on_overflow */
679 ppc_elf_addr16_ha_reloc
, /* special_function */
680 "R_PPC_SECTOFF_HA", /* name */
681 FALSE
, /* partial_inplace */
683 0xffff, /* dst_mask */
684 FALSE
), /* pcrel_offset */
686 /* Marker reloc for TLS. */
689 2, /* size (0 = byte, 1 = short, 2 = long) */
691 FALSE
, /* pc_relative */
693 complain_overflow_dont
, /* complain_on_overflow */
694 bfd_elf_generic_reloc
, /* special_function */
695 "R_PPC_TLS", /* name */
696 FALSE
, /* partial_inplace */
699 FALSE
), /* pcrel_offset */
701 /* Computes the load module index of the load module that contains the
702 definition of its TLS sym. */
703 HOWTO (R_PPC_DTPMOD32
,
705 2, /* size (0 = byte, 1 = short, 2 = long) */
707 FALSE
, /* pc_relative */
709 complain_overflow_dont
, /* complain_on_overflow */
710 ppc_elf_unhandled_reloc
, /* special_function */
711 "R_PPC_DTPMOD32", /* name */
712 FALSE
, /* partial_inplace */
714 0xffffffff, /* dst_mask */
715 FALSE
), /* pcrel_offset */
717 /* Computes a dtv-relative displacement, the difference between the value
718 of sym+add and the base address of the thread-local storage block that
719 contains the definition of sym, minus 0x8000. */
720 HOWTO (R_PPC_DTPREL32
,
722 2, /* size (0 = byte, 1 = short, 2 = long) */
724 FALSE
, /* pc_relative */
726 complain_overflow_dont
, /* complain_on_overflow */
727 ppc_elf_unhandled_reloc
, /* special_function */
728 "R_PPC_DTPREL32", /* name */
729 FALSE
, /* partial_inplace */
731 0xffffffff, /* dst_mask */
732 FALSE
), /* pcrel_offset */
734 /* A 16 bit dtprel reloc. */
735 HOWTO (R_PPC_DTPREL16
,
737 1, /* size (0 = byte, 1 = short, 2 = long) */
739 FALSE
, /* pc_relative */
741 complain_overflow_signed
, /* complain_on_overflow */
742 ppc_elf_unhandled_reloc
, /* special_function */
743 "R_PPC_DTPREL16", /* name */
744 FALSE
, /* partial_inplace */
746 0xffff, /* dst_mask */
747 FALSE
), /* pcrel_offset */
749 /* Like DTPREL16, but no overflow. */
750 HOWTO (R_PPC_DTPREL16_LO
,
752 1, /* size (0 = byte, 1 = short, 2 = long) */
754 FALSE
, /* pc_relative */
756 complain_overflow_dont
, /* complain_on_overflow */
757 ppc_elf_unhandled_reloc
, /* special_function */
758 "R_PPC_DTPREL16_LO", /* name */
759 FALSE
, /* partial_inplace */
761 0xffff, /* dst_mask */
762 FALSE
), /* pcrel_offset */
764 /* Like DTPREL16_LO, but next higher group of 16 bits. */
765 HOWTO (R_PPC_DTPREL16_HI
,
767 1, /* size (0 = byte, 1 = short, 2 = long) */
769 FALSE
, /* pc_relative */
771 complain_overflow_dont
, /* complain_on_overflow */
772 ppc_elf_unhandled_reloc
, /* special_function */
773 "R_PPC_DTPREL16_HI", /* name */
774 FALSE
, /* partial_inplace */
776 0xffff, /* dst_mask */
777 FALSE
), /* pcrel_offset */
779 /* Like DTPREL16_HI, but adjust for low 16 bits. */
780 HOWTO (R_PPC_DTPREL16_HA
,
782 1, /* size (0 = byte, 1 = short, 2 = long) */
784 FALSE
, /* pc_relative */
786 complain_overflow_dont
, /* complain_on_overflow */
787 ppc_elf_unhandled_reloc
, /* special_function */
788 "R_PPC_DTPREL16_HA", /* name */
789 FALSE
, /* partial_inplace */
791 0xffff, /* dst_mask */
792 FALSE
), /* pcrel_offset */
794 /* Computes a tp-relative displacement, the difference between the value of
795 sym+add and the value of the thread pointer (r13). */
796 HOWTO (R_PPC_TPREL32
,
798 2, /* size (0 = byte, 1 = short, 2 = long) */
800 FALSE
, /* pc_relative */
802 complain_overflow_dont
, /* complain_on_overflow */
803 ppc_elf_unhandled_reloc
, /* special_function */
804 "R_PPC_TPREL32", /* name */
805 FALSE
, /* partial_inplace */
807 0xffffffff, /* dst_mask */
808 FALSE
), /* pcrel_offset */
810 /* A 16 bit tprel reloc. */
811 HOWTO (R_PPC_TPREL16
,
813 1, /* size (0 = byte, 1 = short, 2 = long) */
815 FALSE
, /* pc_relative */
817 complain_overflow_signed
, /* complain_on_overflow */
818 ppc_elf_unhandled_reloc
, /* special_function */
819 "R_PPC_TPREL16", /* name */
820 FALSE
, /* partial_inplace */
822 0xffff, /* dst_mask */
823 FALSE
), /* pcrel_offset */
825 /* Like TPREL16, but no overflow. */
826 HOWTO (R_PPC_TPREL16_LO
,
828 1, /* size (0 = byte, 1 = short, 2 = long) */
830 FALSE
, /* pc_relative */
832 complain_overflow_dont
, /* complain_on_overflow */
833 ppc_elf_unhandled_reloc
, /* special_function */
834 "R_PPC_TPREL16_LO", /* name */
835 FALSE
, /* partial_inplace */
837 0xffff, /* dst_mask */
838 FALSE
), /* pcrel_offset */
840 /* Like TPREL16_LO, but next higher group of 16 bits. */
841 HOWTO (R_PPC_TPREL16_HI
,
843 1, /* size (0 = byte, 1 = short, 2 = long) */
845 FALSE
, /* pc_relative */
847 complain_overflow_dont
, /* complain_on_overflow */
848 ppc_elf_unhandled_reloc
, /* special_function */
849 "R_PPC_TPREL16_HI", /* name */
850 FALSE
, /* partial_inplace */
852 0xffff, /* dst_mask */
853 FALSE
), /* pcrel_offset */
855 /* Like TPREL16_HI, but adjust for low 16 bits. */
856 HOWTO (R_PPC_TPREL16_HA
,
858 1, /* size (0 = byte, 1 = short, 2 = long) */
860 FALSE
, /* pc_relative */
862 complain_overflow_dont
, /* complain_on_overflow */
863 ppc_elf_unhandled_reloc
, /* special_function */
864 "R_PPC_TPREL16_HA", /* name */
865 FALSE
, /* partial_inplace */
867 0xffff, /* dst_mask */
868 FALSE
), /* pcrel_offset */
870 /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
871 with values (sym+add)@dtpmod and (sym+add)@dtprel, and computes the offset
872 to the first entry. */
873 HOWTO (R_PPC_GOT_TLSGD16
,
875 1, /* size (0 = byte, 1 = short, 2 = long) */
877 FALSE
, /* pc_relative */
879 complain_overflow_signed
, /* complain_on_overflow */
880 ppc_elf_unhandled_reloc
, /* special_function */
881 "R_PPC_GOT_TLSGD16", /* name */
882 FALSE
, /* partial_inplace */
884 0xffff, /* dst_mask */
885 FALSE
), /* pcrel_offset */
887 /* Like GOT_TLSGD16, but no overflow. */
888 HOWTO (R_PPC_GOT_TLSGD16_LO
,
890 1, /* size (0 = byte, 1 = short, 2 = long) */
892 FALSE
, /* pc_relative */
894 complain_overflow_dont
, /* complain_on_overflow */
895 ppc_elf_unhandled_reloc
, /* special_function */
896 "R_PPC_GOT_TLSGD16_LO", /* name */
897 FALSE
, /* partial_inplace */
899 0xffff, /* dst_mask */
900 FALSE
), /* pcrel_offset */
902 /* Like GOT_TLSGD16_LO, but next higher group of 16 bits. */
903 HOWTO (R_PPC_GOT_TLSGD16_HI
,
905 1, /* size (0 = byte, 1 = short, 2 = long) */
907 FALSE
, /* pc_relative */
909 complain_overflow_dont
, /* complain_on_overflow */
910 ppc_elf_unhandled_reloc
, /* special_function */
911 "R_PPC_GOT_TLSGD16_HI", /* name */
912 FALSE
, /* partial_inplace */
914 0xffff, /* dst_mask */
915 FALSE
), /* pcrel_offset */
917 /* Like GOT_TLSGD16_HI, but adjust for low 16 bits. */
918 HOWTO (R_PPC_GOT_TLSGD16_HA
,
920 1, /* size (0 = byte, 1 = short, 2 = long) */
922 FALSE
, /* pc_relative */
924 complain_overflow_dont
, /* complain_on_overflow */
925 ppc_elf_unhandled_reloc
, /* special_function */
926 "R_PPC_GOT_TLSGD16_HA", /* name */
927 FALSE
, /* partial_inplace */
929 0xffff, /* dst_mask */
930 FALSE
), /* pcrel_offset */
932 /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
933 with values (sym+add)@dtpmod and zero, and computes the offset to the
935 HOWTO (R_PPC_GOT_TLSLD16
,
937 1, /* size (0 = byte, 1 = short, 2 = long) */
939 FALSE
, /* pc_relative */
941 complain_overflow_signed
, /* complain_on_overflow */
942 ppc_elf_unhandled_reloc
, /* special_function */
943 "R_PPC_GOT_TLSLD16", /* name */
944 FALSE
, /* partial_inplace */
946 0xffff, /* dst_mask */
947 FALSE
), /* pcrel_offset */
949 /* Like GOT_TLSLD16, but no overflow. */
950 HOWTO (R_PPC_GOT_TLSLD16_LO
,
952 1, /* size (0 = byte, 1 = short, 2 = long) */
954 FALSE
, /* pc_relative */
956 complain_overflow_dont
, /* complain_on_overflow */
957 ppc_elf_unhandled_reloc
, /* special_function */
958 "R_PPC_GOT_TLSLD16_LO", /* name */
959 FALSE
, /* partial_inplace */
961 0xffff, /* dst_mask */
962 FALSE
), /* pcrel_offset */
964 /* Like GOT_TLSLD16_LO, but next higher group of 16 bits. */
965 HOWTO (R_PPC_GOT_TLSLD16_HI
,
967 1, /* size (0 = byte, 1 = short, 2 = long) */
969 FALSE
, /* pc_relative */
971 complain_overflow_dont
, /* complain_on_overflow */
972 ppc_elf_unhandled_reloc
, /* special_function */
973 "R_PPC_GOT_TLSLD16_HI", /* name */
974 FALSE
, /* partial_inplace */
976 0xffff, /* dst_mask */
977 FALSE
), /* pcrel_offset */
979 /* Like GOT_TLSLD16_HI, but adjust for low 16 bits. */
980 HOWTO (R_PPC_GOT_TLSLD16_HA
,
982 1, /* size (0 = byte, 1 = short, 2 = long) */
984 FALSE
, /* pc_relative */
986 complain_overflow_dont
, /* complain_on_overflow */
987 ppc_elf_unhandled_reloc
, /* special_function */
988 "R_PPC_GOT_TLSLD16_HA", /* name */
989 FALSE
, /* partial_inplace */
991 0xffff, /* dst_mask */
992 FALSE
), /* pcrel_offset */
994 /* Allocates an entry in the GOT with value (sym+add)@dtprel, and computes
995 the offset to the entry. */
996 HOWTO (R_PPC_GOT_DTPREL16
,
998 1, /* size (0 = byte, 1 = short, 2 = long) */
1000 FALSE
, /* pc_relative */
1002 complain_overflow_signed
, /* complain_on_overflow */
1003 ppc_elf_unhandled_reloc
, /* special_function */
1004 "R_PPC_GOT_DTPREL16", /* name */
1005 FALSE
, /* partial_inplace */
1007 0xffff, /* dst_mask */
1008 FALSE
), /* pcrel_offset */
1010 /* Like GOT_DTPREL16, but no overflow. */
1011 HOWTO (R_PPC_GOT_DTPREL16_LO
,
1013 1, /* size (0 = byte, 1 = short, 2 = long) */
1015 FALSE
, /* pc_relative */
1017 complain_overflow_dont
, /* complain_on_overflow */
1018 ppc_elf_unhandled_reloc
, /* special_function */
1019 "R_PPC_GOT_DTPREL16_LO", /* name */
1020 FALSE
, /* partial_inplace */
1022 0xffff, /* dst_mask */
1023 FALSE
), /* pcrel_offset */
1025 /* Like GOT_DTPREL16_LO, but next higher group of 16 bits. */
1026 HOWTO (R_PPC_GOT_DTPREL16_HI
,
1027 16, /* rightshift */
1028 1, /* size (0 = byte, 1 = short, 2 = long) */
1030 FALSE
, /* pc_relative */
1032 complain_overflow_dont
, /* complain_on_overflow */
1033 ppc_elf_unhandled_reloc
, /* special_function */
1034 "R_PPC_GOT_DTPREL16_HI", /* name */
1035 FALSE
, /* partial_inplace */
1037 0xffff, /* dst_mask */
1038 FALSE
), /* pcrel_offset */
1040 /* Like GOT_DTPREL16_HI, but adjust for low 16 bits. */
1041 HOWTO (R_PPC_GOT_DTPREL16_HA
,
1042 16, /* rightshift */
1043 1, /* size (0 = byte, 1 = short, 2 = long) */
1045 FALSE
, /* pc_relative */
1047 complain_overflow_dont
, /* complain_on_overflow */
1048 ppc_elf_unhandled_reloc
, /* special_function */
1049 "R_PPC_GOT_DTPREL16_HA", /* name */
1050 FALSE
, /* partial_inplace */
1052 0xffff, /* dst_mask */
1053 FALSE
), /* pcrel_offset */
1055 /* Allocates an entry in the GOT with value (sym+add)@tprel, and computes the
1056 offset to the entry. */
1057 HOWTO (R_PPC_GOT_TPREL16
,
1059 1, /* size (0 = byte, 1 = short, 2 = long) */
1061 FALSE
, /* pc_relative */
1063 complain_overflow_signed
, /* complain_on_overflow */
1064 ppc_elf_unhandled_reloc
, /* special_function */
1065 "R_PPC_GOT_TPREL16", /* name */
1066 FALSE
, /* partial_inplace */
1068 0xffff, /* dst_mask */
1069 FALSE
), /* pcrel_offset */
1071 /* Like GOT_TPREL16, but no overflow. */
1072 HOWTO (R_PPC_GOT_TPREL16_LO
,
1074 1, /* size (0 = byte, 1 = short, 2 = long) */
1076 FALSE
, /* pc_relative */
1078 complain_overflow_dont
, /* complain_on_overflow */
1079 ppc_elf_unhandled_reloc
, /* special_function */
1080 "R_PPC_GOT_TPREL16_LO", /* name */
1081 FALSE
, /* partial_inplace */
1083 0xffff, /* dst_mask */
1084 FALSE
), /* pcrel_offset */
1086 /* Like GOT_TPREL16_LO, but next higher group of 16 bits. */
1087 HOWTO (R_PPC_GOT_TPREL16_HI
,
1088 16, /* rightshift */
1089 1, /* size (0 = byte, 1 = short, 2 = long) */
1091 FALSE
, /* pc_relative */
1093 complain_overflow_dont
, /* complain_on_overflow */
1094 ppc_elf_unhandled_reloc
, /* special_function */
1095 "R_PPC_GOT_TPREL16_HI", /* name */
1096 FALSE
, /* partial_inplace */
1098 0xffff, /* dst_mask */
1099 FALSE
), /* pcrel_offset */
1101 /* Like GOT_TPREL16_HI, but adjust for low 16 bits. */
1102 HOWTO (R_PPC_GOT_TPREL16_HA
,
1103 16, /* rightshift */
1104 1, /* size (0 = byte, 1 = short, 2 = long) */
1106 FALSE
, /* pc_relative */
1108 complain_overflow_dont
, /* complain_on_overflow */
1109 ppc_elf_unhandled_reloc
, /* special_function */
1110 "R_PPC_GOT_TPREL16_HA", /* name */
1111 FALSE
, /* partial_inplace */
1113 0xffff, /* dst_mask */
1114 FALSE
), /* pcrel_offset */
1116 /* The remaining relocs are from the Embedded ELF ABI, and are not
1117 in the SVR4 ELF ABI. */
1119 /* 32 bit value resulting from the addend minus the symbol. */
1120 HOWTO (R_PPC_EMB_NADDR32
, /* type */
1122 2, /* size (0 = byte, 1 = short, 2 = long) */
1124 FALSE
, /* pc_relative */
1126 complain_overflow_bitfield
, /* complain_on_overflow */
1127 bfd_elf_generic_reloc
, /* special_function */
1128 "R_PPC_EMB_NADDR32", /* name */
1129 FALSE
, /* partial_inplace */
1131 0xffffffff, /* dst_mask */
1132 FALSE
), /* pcrel_offset */
1134 /* 16 bit value resulting from the addend minus the symbol. */
1135 HOWTO (R_PPC_EMB_NADDR16
, /* type */
1137 1, /* size (0 = byte, 1 = short, 2 = long) */
1139 FALSE
, /* pc_relative */
1141 complain_overflow_bitfield
, /* complain_on_overflow */
1142 bfd_elf_generic_reloc
, /* special_function */
1143 "R_PPC_EMB_NADDR16", /* name */
1144 FALSE
, /* partial_inplace */
1146 0xffff, /* dst_mask */
1147 FALSE
), /* pcrel_offset */
1149 /* 16 bit value resulting from the addend minus the symbol. */
1150 HOWTO (R_PPC_EMB_NADDR16_LO
, /* type */
1152 1, /* size (0 = byte, 1 = short, 2 = long) */
1154 FALSE
, /* pc_relative */
1156 complain_overflow_dont
,/* complain_on_overflow */
1157 bfd_elf_generic_reloc
, /* special_function */
1158 "R_PPC_EMB_ADDR16_LO", /* name */
1159 FALSE
, /* partial_inplace */
1161 0xffff, /* dst_mask */
1162 FALSE
), /* pcrel_offset */
1164 /* The high order 16 bits of the addend minus the symbol. */
1165 HOWTO (R_PPC_EMB_NADDR16_HI
, /* type */
1166 16, /* rightshift */
1167 1, /* size (0 = byte, 1 = short, 2 = long) */
1169 FALSE
, /* pc_relative */
1171 complain_overflow_dont
, /* complain_on_overflow */
1172 bfd_elf_generic_reloc
, /* special_function */
1173 "R_PPC_EMB_NADDR16_HI", /* name */
1174 FALSE
, /* partial_inplace */
1176 0xffff, /* dst_mask */
1177 FALSE
), /* pcrel_offset */
1179 /* The high order 16 bits of the result of the addend minus the address,
1180 plus 1 if the contents of the low 16 bits, treated as a signed number,
1182 HOWTO (R_PPC_EMB_NADDR16_HA
, /* type */
1183 16, /* rightshift */
1184 1, /* size (0 = byte, 1 = short, 2 = long) */
1186 FALSE
, /* pc_relative */
1188 complain_overflow_dont
, /* complain_on_overflow */
1189 ppc_elf_addr16_ha_reloc
, /* special_function */
1190 "R_PPC_EMB_NADDR16_HA", /* name */
1191 FALSE
, /* partial_inplace */
1193 0xffff, /* dst_mask */
1194 FALSE
), /* pcrel_offset */
1196 /* 16 bit value resulting from allocating a 4 byte word to hold an
1197 address in the .sdata section, and returning the offset from
1198 _SDA_BASE_ for that relocation. */
1199 HOWTO (R_PPC_EMB_SDAI16
, /* type */
1201 1, /* size (0 = byte, 1 = short, 2 = long) */
1203 FALSE
, /* pc_relative */
1205 complain_overflow_bitfield
, /* complain_on_overflow */
1206 bfd_elf_generic_reloc
, /* special_function */
1207 "R_PPC_EMB_SDAI16", /* name */
1208 FALSE
, /* partial_inplace */
1210 0xffff, /* dst_mask */
1211 FALSE
), /* pcrel_offset */
1213 /* 16 bit value resulting from allocating a 4 byte word to hold an
1214 address in the .sdata2 section, and returning the offset from
1215 _SDA2_BASE_ for that relocation. */
1216 HOWTO (R_PPC_EMB_SDA2I16
, /* type */
1218 1, /* size (0 = byte, 1 = short, 2 = long) */
1220 FALSE
, /* pc_relative */
1222 complain_overflow_bitfield
, /* complain_on_overflow */
1223 bfd_elf_generic_reloc
, /* special_function */
1224 "R_PPC_EMB_SDA2I16", /* name */
1225 FALSE
, /* partial_inplace */
1227 0xffff, /* dst_mask */
1228 FALSE
), /* pcrel_offset */
1230 /* A sign-extended 16 bit value relative to _SDA2_BASE_, for use with
1231 small data items. */
1232 HOWTO (R_PPC_EMB_SDA2REL
, /* type */
1234 1, /* size (0 = byte, 1 = short, 2 = long) */
1236 FALSE
, /* pc_relative */
1238 complain_overflow_signed
, /* complain_on_overflow */
1239 bfd_elf_generic_reloc
, /* special_function */
1240 "R_PPC_EMB_SDA2REL", /* name */
1241 FALSE
, /* partial_inplace */
1243 0xffff, /* dst_mask */
1244 FALSE
), /* pcrel_offset */
1246 /* Relocate against either _SDA_BASE_ or _SDA2_BASE_, filling in the 16 bit
1247 signed offset from the appropriate base, and filling in the register
1248 field with the appropriate register (0, 2, or 13). */
1249 HOWTO (R_PPC_EMB_SDA21
, /* type */
1251 2, /* size (0 = byte, 1 = short, 2 = long) */
1253 FALSE
, /* pc_relative */
1255 complain_overflow_signed
, /* complain_on_overflow */
1256 bfd_elf_generic_reloc
, /* special_function */
1257 "R_PPC_EMB_SDA21", /* name */
1258 FALSE
, /* partial_inplace */
1260 0xffff, /* dst_mask */
1261 FALSE
), /* pcrel_offset */
1263 /* Relocation not handled: R_PPC_EMB_MRKREF */
1264 /* Relocation not handled: R_PPC_EMB_RELSEC16 */
1265 /* Relocation not handled: R_PPC_EMB_RELST_LO */
1266 /* Relocation not handled: R_PPC_EMB_RELST_HI */
1267 /* Relocation not handled: R_PPC_EMB_RELST_HA */
1268 /* Relocation not handled: R_PPC_EMB_BIT_FLD */
1270 /* PC relative relocation against either _SDA_BASE_ or _SDA2_BASE_, filling
1271 in the 16 bit signed offset from the appropriate base, and filling in the
1272 register field with the appropriate register (0, 2, or 13). */
1273 HOWTO (R_PPC_EMB_RELSDA
, /* type */
1275 1, /* size (0 = byte, 1 = short, 2 = long) */
1277 TRUE
, /* pc_relative */
1279 complain_overflow_signed
, /* complain_on_overflow */
1280 bfd_elf_generic_reloc
, /* special_function */
1281 "R_PPC_EMB_RELSDA", /* name */
1282 FALSE
, /* partial_inplace */
1284 0xffff, /* dst_mask */
1285 FALSE
), /* pcrel_offset */
1287 /* A 16 bit relative relocation. */
1288 HOWTO (R_PPC_REL16
, /* type */
1290 1, /* size (0 = byte, 1 = short, 2 = long) */
1292 TRUE
, /* pc_relative */
1294 complain_overflow_bitfield
, /* complain_on_overflow */
1295 bfd_elf_generic_reloc
, /* special_function */
1296 "R_PPC_REL16", /* name */
1297 FALSE
, /* partial_inplace */
1299 0xffff, /* dst_mask */
1300 TRUE
), /* pcrel_offset */
1302 /* A 16 bit relative relocation without overflow. */
1303 HOWTO (R_PPC_REL16_LO
, /* type */
1305 1, /* size (0 = byte, 1 = short, 2 = long) */
1307 TRUE
, /* pc_relative */
1309 complain_overflow_dont
,/* complain_on_overflow */
1310 bfd_elf_generic_reloc
, /* special_function */
1311 "R_PPC_REL16_LO", /* name */
1312 FALSE
, /* partial_inplace */
1314 0xffff, /* dst_mask */
1315 TRUE
), /* pcrel_offset */
1317 /* The high order 16 bits of a relative address. */
1318 HOWTO (R_PPC_REL16_HI
, /* type */
1319 16, /* rightshift */
1320 1, /* size (0 = byte, 1 = short, 2 = long) */
1322 TRUE
, /* pc_relative */
1324 complain_overflow_dont
, /* complain_on_overflow */
1325 bfd_elf_generic_reloc
, /* special_function */
1326 "R_PPC_REL16_HI", /* name */
1327 FALSE
, /* partial_inplace */
1329 0xffff, /* dst_mask */
1330 TRUE
), /* pcrel_offset */
1332 /* The high order 16 bits of a relative address, plus 1 if the contents of
1333 the low 16 bits, treated as a signed number, is negative. */
1334 HOWTO (R_PPC_REL16_HA
, /* type */
1335 16, /* rightshift */
1336 1, /* size (0 = byte, 1 = short, 2 = long) */
1338 TRUE
, /* pc_relative */
1340 complain_overflow_dont
, /* complain_on_overflow */
1341 ppc_elf_addr16_ha_reloc
, /* special_function */
1342 "R_PPC_REL16_HA", /* name */
1343 FALSE
, /* partial_inplace */
1345 0xffff, /* dst_mask */
1346 TRUE
), /* pcrel_offset */
1348 /* GNU extension to record C++ vtable hierarchy. */
1349 HOWTO (R_PPC_GNU_VTINHERIT
, /* type */
1351 0, /* size (0 = byte, 1 = short, 2 = long) */
1353 FALSE
, /* pc_relative */
1355 complain_overflow_dont
, /* complain_on_overflow */
1356 NULL
, /* special_function */
1357 "R_PPC_GNU_VTINHERIT", /* name */
1358 FALSE
, /* partial_inplace */
1361 FALSE
), /* pcrel_offset */
1363 /* GNU extension to record C++ vtable member usage. */
1364 HOWTO (R_PPC_GNU_VTENTRY
, /* type */
1366 0, /* size (0 = byte, 1 = short, 2 = long) */
1368 FALSE
, /* pc_relative */
1370 complain_overflow_dont
, /* complain_on_overflow */
1371 NULL
, /* special_function */
1372 "R_PPC_GNU_VTENTRY", /* name */
1373 FALSE
, /* partial_inplace */
1376 FALSE
), /* pcrel_offset */
1378 /* Phony reloc to handle AIX style TOC entries. */
1379 HOWTO (R_PPC_TOC16
, /* type */
1381 1, /* size (0 = byte, 1 = short, 2 = long) */
1383 FALSE
, /* pc_relative */
1385 complain_overflow_signed
, /* complain_on_overflow */
1386 bfd_elf_generic_reloc
, /* special_function */
1387 "R_PPC_TOC16", /* name */
1388 FALSE
, /* partial_inplace */
1390 0xffff, /* dst_mask */
1391 FALSE
), /* pcrel_offset */
1394 /* Initialize the ppc_elf_howto_table, so that linear accesses can be done. */
1397 ppc_elf_howto_init (void)
1399 unsigned int i
, type
;
1402 i
< sizeof (ppc_elf_howto_raw
) / sizeof (ppc_elf_howto_raw
[0]);
1405 type
= ppc_elf_howto_raw
[i
].type
;
1406 if (type
>= (sizeof (ppc_elf_howto_table
)
1407 / sizeof (ppc_elf_howto_table
[0])))
1409 ppc_elf_howto_table
[type
] = &ppc_elf_howto_raw
[i
];
1413 static reloc_howto_type
*
1414 ppc_elf_reloc_type_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
1415 bfd_reloc_code_real_type code
)
1417 enum elf_ppc_reloc_type r
;
1419 /* Initialize howto table if not already done. */
1420 if (!ppc_elf_howto_table
[R_PPC_ADDR32
])
1421 ppc_elf_howto_init ();
1428 case BFD_RELOC_NONE
: r
= R_PPC_NONE
; break;
1429 case BFD_RELOC_32
: r
= R_PPC_ADDR32
; break;
1430 case BFD_RELOC_PPC_BA26
: r
= R_PPC_ADDR24
; break;
1431 case BFD_RELOC_16
: r
= R_PPC_ADDR16
; break;
1432 case BFD_RELOC_LO16
: r
= R_PPC_ADDR16_LO
; break;
1433 case BFD_RELOC_HI16
: r
= R_PPC_ADDR16_HI
; break;
1434 case BFD_RELOC_HI16_S
: r
= R_PPC_ADDR16_HA
; break;
1435 case BFD_RELOC_PPC_BA16
: r
= R_PPC_ADDR14
; break;
1436 case BFD_RELOC_PPC_BA16_BRTAKEN
: r
= R_PPC_ADDR14_BRTAKEN
; break;
1437 case BFD_RELOC_PPC_BA16_BRNTAKEN
: r
= R_PPC_ADDR14_BRNTAKEN
; break;
1438 case BFD_RELOC_PPC_B26
: r
= R_PPC_REL24
; break;
1439 case BFD_RELOC_PPC_B16
: r
= R_PPC_REL14
; break;
1440 case BFD_RELOC_PPC_B16_BRTAKEN
: r
= R_PPC_REL14_BRTAKEN
; break;
1441 case BFD_RELOC_PPC_B16_BRNTAKEN
: r
= R_PPC_REL14_BRNTAKEN
; break;
1442 case BFD_RELOC_16_GOTOFF
: r
= R_PPC_GOT16
; break;
1443 case BFD_RELOC_LO16_GOTOFF
: r
= R_PPC_GOT16_LO
; break;
1444 case BFD_RELOC_HI16_GOTOFF
: r
= R_PPC_GOT16_HI
; break;
1445 case BFD_RELOC_HI16_S_GOTOFF
: r
= R_PPC_GOT16_HA
; break;
1446 case BFD_RELOC_24_PLT_PCREL
: r
= R_PPC_PLTREL24
; break;
1447 case BFD_RELOC_PPC_COPY
: r
= R_PPC_COPY
; break;
1448 case BFD_RELOC_PPC_GLOB_DAT
: r
= R_PPC_GLOB_DAT
; break;
1449 case BFD_RELOC_PPC_LOCAL24PC
: r
= R_PPC_LOCAL24PC
; break;
1450 case BFD_RELOC_32_PCREL
: r
= R_PPC_REL32
; break;
1451 case BFD_RELOC_32_PLTOFF
: r
= R_PPC_PLT32
; break;
1452 case BFD_RELOC_32_PLT_PCREL
: r
= R_PPC_PLTREL32
; break;
1453 case BFD_RELOC_LO16_PLTOFF
: r
= R_PPC_PLT16_LO
; break;
1454 case BFD_RELOC_HI16_PLTOFF
: r
= R_PPC_PLT16_HI
; break;
1455 case BFD_RELOC_HI16_S_PLTOFF
: r
= R_PPC_PLT16_HA
; break;
1456 case BFD_RELOC_GPREL16
: r
= R_PPC_SDAREL16
; break;
1457 case BFD_RELOC_16_BASEREL
: r
= R_PPC_SECTOFF
; break;
1458 case BFD_RELOC_LO16_BASEREL
: r
= R_PPC_SECTOFF_LO
; break;
1459 case BFD_RELOC_HI16_BASEREL
: r
= R_PPC_SECTOFF_HI
; break;
1460 case BFD_RELOC_HI16_S_BASEREL
: r
= R_PPC_SECTOFF_HA
; break;
1461 case BFD_RELOC_CTOR
: r
= R_PPC_ADDR32
; break;
1462 case BFD_RELOC_PPC_TOC16
: r
= R_PPC_TOC16
; break;
1463 case BFD_RELOC_PPC_TLS
: r
= R_PPC_TLS
; break;
1464 case BFD_RELOC_PPC_DTPMOD
: r
= R_PPC_DTPMOD32
; break;
1465 case BFD_RELOC_PPC_TPREL16
: r
= R_PPC_TPREL16
; break;
1466 case BFD_RELOC_PPC_TPREL16_LO
: r
= R_PPC_TPREL16_LO
; break;
1467 case BFD_RELOC_PPC_TPREL16_HI
: r
= R_PPC_TPREL16_HI
; break;
1468 case BFD_RELOC_PPC_TPREL16_HA
: r
= R_PPC_TPREL16_HA
; break;
1469 case BFD_RELOC_PPC_TPREL
: r
= R_PPC_TPREL32
; break;
1470 case BFD_RELOC_PPC_DTPREL16
: r
= R_PPC_DTPREL16
; break;
1471 case BFD_RELOC_PPC_DTPREL16_LO
: r
= R_PPC_DTPREL16_LO
; break;
1472 case BFD_RELOC_PPC_DTPREL16_HI
: r
= R_PPC_DTPREL16_HI
; break;
1473 case BFD_RELOC_PPC_DTPREL16_HA
: r
= R_PPC_DTPREL16_HA
; break;
1474 case BFD_RELOC_PPC_DTPREL
: r
= R_PPC_DTPREL32
; break;
1475 case BFD_RELOC_PPC_GOT_TLSGD16
: r
= R_PPC_GOT_TLSGD16
; break;
1476 case BFD_RELOC_PPC_GOT_TLSGD16_LO
: r
= R_PPC_GOT_TLSGD16_LO
; break;
1477 case BFD_RELOC_PPC_GOT_TLSGD16_HI
: r
= R_PPC_GOT_TLSGD16_HI
; break;
1478 case BFD_RELOC_PPC_GOT_TLSGD16_HA
: r
= R_PPC_GOT_TLSGD16_HA
; break;
1479 case BFD_RELOC_PPC_GOT_TLSLD16
: r
= R_PPC_GOT_TLSLD16
; break;
1480 case BFD_RELOC_PPC_GOT_TLSLD16_LO
: r
= R_PPC_GOT_TLSLD16_LO
; break;
1481 case BFD_RELOC_PPC_GOT_TLSLD16_HI
: r
= R_PPC_GOT_TLSLD16_HI
; break;
1482 case BFD_RELOC_PPC_GOT_TLSLD16_HA
: r
= R_PPC_GOT_TLSLD16_HA
; break;
1483 case BFD_RELOC_PPC_GOT_TPREL16
: r
= R_PPC_GOT_TPREL16
; break;
1484 case BFD_RELOC_PPC_GOT_TPREL16_LO
: r
= R_PPC_GOT_TPREL16_LO
; break;
1485 case BFD_RELOC_PPC_GOT_TPREL16_HI
: r
= R_PPC_GOT_TPREL16_HI
; break;
1486 case BFD_RELOC_PPC_GOT_TPREL16_HA
: r
= R_PPC_GOT_TPREL16_HA
; break;
1487 case BFD_RELOC_PPC_GOT_DTPREL16
: r
= R_PPC_GOT_DTPREL16
; break;
1488 case BFD_RELOC_PPC_GOT_DTPREL16_LO
: r
= R_PPC_GOT_DTPREL16_LO
; break;
1489 case BFD_RELOC_PPC_GOT_DTPREL16_HI
: r
= R_PPC_GOT_DTPREL16_HI
; break;
1490 case BFD_RELOC_PPC_GOT_DTPREL16_HA
: r
= R_PPC_GOT_DTPREL16_HA
; break;
1491 case BFD_RELOC_PPC_EMB_NADDR32
: r
= R_PPC_EMB_NADDR32
; break;
1492 case BFD_RELOC_PPC_EMB_NADDR16
: r
= R_PPC_EMB_NADDR16
; break;
1493 case BFD_RELOC_PPC_EMB_NADDR16_LO
: r
= R_PPC_EMB_NADDR16_LO
; break;
1494 case BFD_RELOC_PPC_EMB_NADDR16_HI
: r
= R_PPC_EMB_NADDR16_HI
; break;
1495 case BFD_RELOC_PPC_EMB_NADDR16_HA
: r
= R_PPC_EMB_NADDR16_HA
; break;
1496 case BFD_RELOC_PPC_EMB_SDAI16
: r
= R_PPC_EMB_SDAI16
; break;
1497 case BFD_RELOC_PPC_EMB_SDA2I16
: r
= R_PPC_EMB_SDA2I16
; break;
1498 case BFD_RELOC_PPC_EMB_SDA2REL
: r
= R_PPC_EMB_SDA2REL
; break;
1499 case BFD_RELOC_PPC_EMB_SDA21
: r
= R_PPC_EMB_SDA21
; break;
1500 case BFD_RELOC_PPC_EMB_MRKREF
: r
= R_PPC_EMB_MRKREF
; break;
1501 case BFD_RELOC_PPC_EMB_RELSEC16
: r
= R_PPC_EMB_RELSEC16
; break;
1502 case BFD_RELOC_PPC_EMB_RELST_LO
: r
= R_PPC_EMB_RELST_LO
; break;
1503 case BFD_RELOC_PPC_EMB_RELST_HI
: r
= R_PPC_EMB_RELST_HI
; break;
1504 case BFD_RELOC_PPC_EMB_RELST_HA
: r
= R_PPC_EMB_RELST_HA
; break;
1505 case BFD_RELOC_PPC_EMB_BIT_FLD
: r
= R_PPC_EMB_BIT_FLD
; break;
1506 case BFD_RELOC_PPC_EMB_RELSDA
: r
= R_PPC_EMB_RELSDA
; break;
1507 case BFD_RELOC_16_PCREL
: r
= R_PPC_REL16
; break;
1508 case BFD_RELOC_LO16_PCREL
: r
= R_PPC_REL16_LO
; break;
1509 case BFD_RELOC_HI16_PCREL
: r
= R_PPC_REL16_HI
; break;
1510 case BFD_RELOC_HI16_S_PCREL
: r
= R_PPC_REL16_HA
; break;
1511 case BFD_RELOC_VTABLE_INHERIT
: r
= R_PPC_GNU_VTINHERIT
; break;
1512 case BFD_RELOC_VTABLE_ENTRY
: r
= R_PPC_GNU_VTENTRY
; break;
1515 return ppc_elf_howto_table
[r
];
1518 /* Set the howto pointer for a PowerPC ELF reloc. */
1521 ppc_elf_info_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
,
1523 Elf_Internal_Rela
*dst
)
1525 /* Initialize howto table if not already done. */
1526 if (!ppc_elf_howto_table
[R_PPC_ADDR32
])
1527 ppc_elf_howto_init ();
1529 BFD_ASSERT (ELF32_R_TYPE (dst
->r_info
) < (unsigned int) R_PPC_max
);
1530 cache_ptr
->howto
= ppc_elf_howto_table
[ELF32_R_TYPE (dst
->r_info
)];
1533 /* Handle the R_PPC_ADDR16_HA and R_PPC_REL16_HA relocs. */
1535 static bfd_reloc_status_type
1536 ppc_elf_addr16_ha_reloc (bfd
*abfd ATTRIBUTE_UNUSED
,
1537 arelent
*reloc_entry
,
1539 void *data ATTRIBUTE_UNUSED
,
1540 asection
*input_section
,
1542 char **error_message ATTRIBUTE_UNUSED
)
1546 if (output_bfd
!= NULL
)
1548 reloc_entry
->address
+= input_section
->output_offset
;
1549 return bfd_reloc_ok
;
1552 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
1553 return bfd_reloc_outofrange
;
1555 if (bfd_is_com_section (symbol
->section
))
1558 relocation
= symbol
->value
;
1560 relocation
+= symbol
->section
->output_section
->vma
;
1561 relocation
+= symbol
->section
->output_offset
;
1562 relocation
+= reloc_entry
->addend
;
1563 if (reloc_entry
->howto
->pc_relative
)
1564 relocation
-= reloc_entry
->address
;
1566 reloc_entry
->addend
+= (relocation
& 0x8000) << 1;
1568 return bfd_reloc_continue
;
1571 static bfd_reloc_status_type
1572 ppc_elf_unhandled_reloc (bfd
*abfd
,
1573 arelent
*reloc_entry
,
1576 asection
*input_section
,
1578 char **error_message
)
1580 /* If this is a relocatable link (output_bfd test tells us), just
1581 call the generic function. Any adjustment will be done at final
1583 if (output_bfd
!= NULL
)
1584 return bfd_elf_generic_reloc (abfd
, reloc_entry
, symbol
, data
,
1585 input_section
, output_bfd
, error_message
);
1587 if (error_message
!= NULL
)
1589 static char buf
[60];
1590 sprintf (buf
, _("generic linker can't handle %s"),
1591 reloc_entry
->howto
->name
);
1592 *error_message
= buf
;
1594 return bfd_reloc_dangerous
;
1597 /* Sections created by the linker. */
1599 typedef struct elf_linker_section
1601 /* Pointer to the bfd section. */
1605 /* Associated bss section name. */
1606 const char *bss_name
;
1607 /* Associated symbol name. */
1608 const char *sym_name
;
1609 /* Value of symbol. */
1611 } elf_linker_section_t
;
1613 /* Linked list of allocated pointer entries. This hangs off of the
1614 symbol lists, and provides allows us to return different pointers,
1615 based on different addend's. */
1617 typedef struct elf_linker_section_pointers
1619 /* next allocated pointer for this symbol */
1620 struct elf_linker_section_pointers
*next
;
1621 /* offset of pointer from beginning of section */
1625 /* which linker section this is */
1626 elf_linker_section_t
*lsect
;
1627 } elf_linker_section_pointers_t
;
1629 struct ppc_elf_obj_tdata
1631 struct elf_obj_tdata elf
;
1633 /* A mapping from local symbols to offsets into the various linker
1634 sections added. This is index by the symbol index. */
1635 elf_linker_section_pointers_t
**linker_section_pointers
;
1638 #define ppc_elf_tdata(bfd) \
1639 ((struct ppc_elf_obj_tdata *) (bfd)->tdata.any)
1641 #define elf_local_ptr_offsets(bfd) \
1642 (ppc_elf_tdata (bfd)->linker_section_pointers)
1644 /* Override the generic function because we store some extras. */
1647 ppc_elf_mkobject (bfd
*abfd
)
1649 bfd_size_type amt
= sizeof (struct ppc_elf_obj_tdata
);
1650 abfd
->tdata
.any
= bfd_zalloc (abfd
, amt
);
1651 if (abfd
->tdata
.any
== NULL
)
1656 /* Fix bad default arch selected for a 32 bit input bfd when the
1657 default is 64 bit. */
1660 ppc_elf_object_p (bfd
*abfd
)
1662 if (abfd
->arch_info
->the_default
&& abfd
->arch_info
->bits_per_word
== 64)
1664 Elf_Internal_Ehdr
*i_ehdr
= elf_elfheader (abfd
);
1666 if (i_ehdr
->e_ident
[EI_CLASS
] == ELFCLASS32
)
1668 /* Relies on arch after 64 bit default being 32 bit default. */
1669 abfd
->arch_info
= abfd
->arch_info
->next
;
1670 BFD_ASSERT (abfd
->arch_info
->bits_per_word
== 32);
1676 /* Function to set whether a module needs the -mrelocatable bit set. */
1679 ppc_elf_set_private_flags (bfd
*abfd
, flagword flags
)
1681 BFD_ASSERT (!elf_flags_init (abfd
)
1682 || elf_elfheader (abfd
)->e_flags
== flags
);
1684 elf_elfheader (abfd
)->e_flags
= flags
;
1685 elf_flags_init (abfd
) = TRUE
;
1689 /* Support for core dump NOTE sections. */
1692 ppc_elf_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
1697 switch (note
->descsz
)
1702 case 268: /* Linux/PPC. */
1704 elf_tdata (abfd
)->core_signal
= bfd_get_16 (abfd
, note
->descdata
+ 12);
1707 elf_tdata (abfd
)->core_pid
= bfd_get_32 (abfd
, note
->descdata
+ 24);
1716 /* Make a ".reg/999" section. */
1717 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
1718 size
, note
->descpos
+ offset
);
1722 ppc_elf_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
1724 switch (note
->descsz
)
1729 case 128: /* Linux/PPC elf_prpsinfo. */
1730 elf_tdata (abfd
)->core_program
1731 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 32, 16);
1732 elf_tdata (abfd
)->core_command
1733 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 48, 80);
1736 /* Note that for some reason, a spurious space is tacked
1737 onto the end of the args in some (at least one anyway)
1738 implementations, so strip it off if it exists. */
1741 char *command
= elf_tdata (abfd
)->core_command
;
1742 int n
= strlen (command
);
1744 if (0 < n
&& command
[n
- 1] == ' ')
1745 command
[n
- 1] = '\0';
1751 /* Return address for Ith PLT stub in section PLT, for relocation REL
1752 or (bfd_vma) -1 if it should not be included. */
1755 ppc_elf_plt_sym_val (bfd_vma i ATTRIBUTE_UNUSED
,
1756 const asection
*plt ATTRIBUTE_UNUSED
,
1759 return rel
->address
;
1762 /* Handle a PowerPC specific section when reading an object file. This
1763 is called when bfd_section_from_shdr finds a section with an unknown
1767 ppc_elf_section_from_shdr (bfd
*abfd
,
1768 Elf_Internal_Shdr
*hdr
,
1775 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
1778 newsect
= hdr
->bfd_section
;
1779 flags
= bfd_get_section_flags (abfd
, newsect
);
1780 if (hdr
->sh_flags
& SHF_EXCLUDE
)
1781 flags
|= SEC_EXCLUDE
;
1783 if (hdr
->sh_type
== SHT_ORDERED
)
1784 flags
|= SEC_SORT_ENTRIES
;
1786 bfd_set_section_flags (abfd
, newsect
, flags
);
1790 /* Set up any other section flags and such that may be necessary. */
1793 ppc_elf_fake_sections (bfd
*abfd ATTRIBUTE_UNUSED
,
1794 Elf_Internal_Shdr
*shdr
,
1797 if ((asect
->flags
& SEC_EXCLUDE
) != 0)
1798 shdr
->sh_flags
|= SHF_EXCLUDE
;
1800 if ((asect
->flags
& SEC_SORT_ENTRIES
) != 0)
1801 shdr
->sh_type
= SHT_ORDERED
;
1806 /* If we have .sbss2 or .PPC.EMB.sbss0 output sections, we
1807 need to bump up the number of section headers. */
1810 ppc_elf_additional_program_headers (bfd
*abfd
)
1815 s
= bfd_get_section_by_name (abfd
, ".sbss2");
1816 if (s
!= NULL
&& (s
->flags
& SEC_ALLOC
) != 0)
1819 s
= bfd_get_section_by_name (abfd
, ".PPC.EMB.sbss0");
1820 if (s
!= NULL
&& (s
->flags
& SEC_ALLOC
) != 0)
1826 /* Add extra PPC sections -- Note, for now, make .sbss2 and
1827 .PPC.EMB.sbss0 a normal section, and not a bss section so
1828 that the linker doesn't crater when trying to make more than
1831 static struct bfd_elf_special_section
const
1832 ppc_special_sections_p
[] =
1834 { ".plt", 4, 0, SHT_NOBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
1835 { NULL
, 0, 0, 0, 0 }
1838 static struct bfd_elf_special_section
const
1839 ppc_special_sections_s
[] =
1841 { ".sdata", 6, -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
1842 { ".sbss", 5, -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
1843 { ".sdata2", 7, -2, SHT_PROGBITS
, SHF_ALLOC
},
1844 { ".sbss2", 6, -2, SHT_PROGBITS
, SHF_ALLOC
},
1845 { NULL
, 0, 0, 0, 0 }
1848 static struct bfd_elf_special_section
const
1849 ppc_special_sections_t
[] =
1851 { ".tags", 5, 0, SHT_ORDERED
, SHF_ALLOC
},
1852 { NULL
, 0, 0, 0, 0 }
1855 static struct bfd_elf_special_section
const
1856 ppc_special_sections_other
[]=
1858 { ".PPC.EMB.apuinfo", 16, 0, SHT_NOTE
, 0 },
1859 { ".PPC.EMB.sdata0", 15, 0, SHT_PROGBITS
, SHF_ALLOC
},
1860 { ".PPC.EMB.sbss0", 14, 0, SHT_PROGBITS
, SHF_ALLOC
},
1861 { NULL
, 0, 0, 0, 0 }
1864 static struct bfd_elf_special_section
const *
1865 ppc_elf_special_sections
[27]=
1882 ppc_special_sections_p
, /* 'p' */
1885 ppc_special_sections_s
, /* 's' */
1886 ppc_special_sections_t
, /* 's' */
1893 ppc_special_sections_other
, /* other */
1896 /* Very simple linked list structure for recording apuinfo values. */
1897 typedef struct apuinfo_list
1899 struct apuinfo_list
*next
;
1900 unsigned long value
;
1904 static apuinfo_list
*head
;
1908 apuinfo_list_init (void)
1914 apuinfo_list_add (unsigned long value
)
1916 apuinfo_list
*entry
= head
;
1918 while (entry
!= NULL
)
1920 if (entry
->value
== value
)
1922 entry
= entry
->next
;
1925 entry
= bfd_malloc (sizeof (* entry
));
1929 entry
->value
= value
;
1935 apuinfo_list_length (void)
1937 apuinfo_list
*entry
;
1938 unsigned long count
;
1940 for (entry
= head
, count
= 0;
1942 entry
= entry
->next
)
1948 static inline unsigned long
1949 apuinfo_list_element (unsigned long number
)
1951 apuinfo_list
* entry
;
1955 entry
= entry
->next
)
1958 return entry
? entry
->value
: 0;
1962 apuinfo_list_finish (void)
1964 apuinfo_list
*entry
;
1966 for (entry
= head
; entry
;)
1968 apuinfo_list
*next
= entry
->next
;
1976 #define APUINFO_SECTION_NAME ".PPC.EMB.apuinfo"
1977 #define APUINFO_LABEL "APUinfo"
1979 /* Scan the input BFDs and create a linked list of
1980 the APUinfo values that will need to be emitted. */
1983 ppc_elf_begin_write_processing (bfd
*abfd
, struct bfd_link_info
*link_info
)
1988 unsigned num_input_sections
;
1989 bfd_size_type output_section_size
;
1991 unsigned num_entries
;
1992 unsigned long offset
;
1993 unsigned long length
;
1994 const char *error_message
= NULL
;
1996 if (link_info
== NULL
)
1999 /* Scan the input bfds, looking for apuinfo sections. */
2000 num_input_sections
= 0;
2001 output_section_size
= 0;
2003 for (ibfd
= link_info
->input_bfds
; ibfd
; ibfd
= ibfd
->link_next
)
2005 asec
= bfd_get_section_by_name (ibfd
, APUINFO_SECTION_NAME
);
2008 ++ num_input_sections
;
2009 output_section_size
+= asec
->size
;
2013 /* We need at least one input sections
2014 in order to make merging worthwhile. */
2015 if (num_input_sections
< 1)
2018 /* Just make sure that the output section exists as well. */
2019 asec
= bfd_get_section_by_name (abfd
, APUINFO_SECTION_NAME
);
2023 /* Allocate a buffer for the contents of the input sections. */
2024 buffer
= bfd_malloc (output_section_size
);
2029 apuinfo_list_init ();
2031 /* Read in the input sections contents. */
2032 for (ibfd
= link_info
->input_bfds
; ibfd
; ibfd
= ibfd
->link_next
)
2034 unsigned long datum
;
2037 asec
= bfd_get_section_by_name (ibfd
, APUINFO_SECTION_NAME
);
2041 length
= asec
->size
;
2044 error_message
= _("corrupt or empty %s section in %B");
2048 if (bfd_seek (ibfd
, asec
->filepos
, SEEK_SET
) != 0
2049 || (bfd_bread (buffer
+ offset
, length
, ibfd
) != length
))
2051 error_message
= _("unable to read in %s section from %B");
2055 /* Process the contents of the section. */
2056 ptr
= buffer
+ offset
;
2057 error_message
= _("corrupt %s section in %B");
2059 /* Verify the contents of the header. Note - we have to
2060 extract the values this way in order to allow for a
2061 host whose endian-ness is different from the target. */
2062 datum
= bfd_get_32 (ibfd
, ptr
);
2063 if (datum
!= sizeof APUINFO_LABEL
)
2066 datum
= bfd_get_32 (ibfd
, ptr
+ 8);
2070 if (strcmp (ptr
+ 12, APUINFO_LABEL
) != 0)
2073 /* Get the number of bytes used for apuinfo entries. */
2074 datum
= bfd_get_32 (ibfd
, ptr
+ 4);
2075 if (datum
+ 20 != length
)
2078 /* Make sure that we do not run off the end of the section. */
2079 if (offset
+ length
> output_section_size
)
2082 /* Scan the apuinfo section, building a list of apuinfo numbers. */
2083 for (i
= 0; i
< datum
; i
+= 4)
2084 apuinfo_list_add (bfd_get_32 (ibfd
, ptr
+ 20 + i
));
2086 /* Update the offset. */
2090 error_message
= NULL
;
2092 /* Compute the size of the output section. */
2093 num_entries
= apuinfo_list_length ();
2094 output_section_size
= 20 + num_entries
* 4;
2096 asec
= bfd_get_section_by_name (abfd
, APUINFO_SECTION_NAME
);
2098 if (! bfd_set_section_size (abfd
, asec
, output_section_size
))
2100 error_message
= _("warning: unable to set size of %s section in %B");
2106 (*_bfd_error_handler
) (error_message
, ibfd
, APUINFO_SECTION_NAME
);
2109 /* Prevent the output section from accumulating the input sections'
2110 contents. We have already stored this in our linked list structure. */
2113 ppc_elf_write_section (bfd
*abfd ATTRIBUTE_UNUSED
,
2115 bfd_byte
*contents ATTRIBUTE_UNUSED
)
2117 return (apuinfo_list_length ()
2118 && strcmp (asec
->name
, APUINFO_SECTION_NAME
) == 0);
2121 /* Finally we can generate the output section. */
2124 ppc_elf_final_write_processing (bfd
*abfd
, bfd_boolean linker ATTRIBUTE_UNUSED
)
2129 unsigned num_entries
;
2130 bfd_size_type length
;
2132 asec
= bfd_get_section_by_name (abfd
, APUINFO_SECTION_NAME
);
2136 if (apuinfo_list_length () == 0)
2139 length
= asec
->size
;
2143 buffer
= bfd_malloc (length
);
2146 (*_bfd_error_handler
)
2147 (_("failed to allocate space for new APUinfo section."));
2151 /* Create the apuinfo header. */
2152 num_entries
= apuinfo_list_length ();
2153 bfd_put_32 (abfd
, sizeof APUINFO_LABEL
, buffer
);
2154 bfd_put_32 (abfd
, num_entries
* 4, buffer
+ 4);
2155 bfd_put_32 (abfd
, 0x2, buffer
+ 8);
2156 strcpy ((char *) buffer
+ 12, APUINFO_LABEL
);
2159 for (i
= 0; i
< num_entries
; i
++)
2161 bfd_put_32 (abfd
, apuinfo_list_element (i
), buffer
+ length
);
2165 if (length
!= asec
->size
)
2166 (*_bfd_error_handler
) (_("failed to compute new APUinfo section."));
2168 if (! bfd_set_section_contents (abfd
, asec
, buffer
, (file_ptr
) 0, length
))
2169 (*_bfd_error_handler
) (_("failed to install new APUinfo section."));
2173 apuinfo_list_finish ();
2176 /* The following functions are specific to the ELF linker, while
2177 functions above are used generally. They appear in this file more
2178 or less in the order in which they are called. eg.
2179 ppc_elf_check_relocs is called early in the link process,
2180 ppc_elf_finish_dynamic_sections is one of the last functions
2183 /* The PPC linker needs to keep track of the number of relocs that it
2184 decides to copy as dynamic relocs in check_relocs for each symbol.
2185 This is so that it can later discard them if they are found to be
2186 unnecessary. We store the information in a field extending the
2187 regular ELF linker hash table. */
2189 struct ppc_elf_dyn_relocs
2191 struct ppc_elf_dyn_relocs
*next
;
2193 /* The input section of the reloc. */
2196 /* Total number of relocs copied for the input section. */
2197 bfd_size_type count
;
2199 /* Number of pc-relative relocs copied for the input section. */
2200 bfd_size_type pc_count
;
2203 /* Track PLT entries needed for a given symbol. We might need more
2204 than one glink entry per symbol. */
2207 struct plt_entry
*next
;
2209 /* -fPIC uses multiple GOT sections, one per file, called ".got2".
2210 This field stores the offset into .got2 used to initialise the
2211 GOT pointer reg. It will always be at least 32768 (and for
2212 current gcc this is the only offset used). */
2215 /* The .got2 section. */
2218 /* PLT refcount or offset. */
2221 bfd_signed_vma refcount
;
2225 /* .glink stub offset. */
2226 bfd_vma glink_offset
;
2229 /* Of those relocs that might be copied as dynamic relocs, this macro
2230 selects those that must be copied when linking a shared library,
2231 even when the symbol is local. */
2233 #define MUST_BE_DYN_RELOC(RTYPE) \
2234 ((RTYPE) != R_PPC_REL24 \
2235 && (RTYPE) != R_PPC_REL14 \
2236 && (RTYPE) != R_PPC_REL14_BRTAKEN \
2237 && (RTYPE) != R_PPC_REL14_BRNTAKEN \
2238 && (RTYPE) != R_PPC_REL32)
2240 /* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
2241 copying dynamic variables from a shared lib into an app's dynbss
2242 section, and instead use a dynamic relocation to point into the
2244 #define ELIMINATE_COPY_RELOCS 1
2246 /* PPC ELF linker hash entry. */
2248 struct ppc_elf_link_hash_entry
2250 struct elf_link_hash_entry elf
;
2252 /* If this symbol is used in the linker created sections, the processor
2253 specific backend uses this field to map the field into the offset
2254 from the beginning of the section. */
2255 elf_linker_section_pointers_t
*linker_section_pointer
;
2257 /* Track dynamic relocs copied for this symbol. */
2258 struct ppc_elf_dyn_relocs
*dyn_relocs
;
2260 /* Contexts in which symbol is used in the GOT (or TOC).
2261 TLS_GD .. TLS_TLS bits are or'd into the mask as the
2262 corresponding relocs are encountered during check_relocs.
2263 tls_optimize clears TLS_GD .. TLS_TPREL when optimizing to
2264 indicate the corresponding GOT entry type is not needed. */
2265 #define TLS_GD 1 /* GD reloc. */
2266 #define TLS_LD 2 /* LD reloc. */
2267 #define TLS_TPREL 4 /* TPREL reloc, => IE. */
2268 #define TLS_DTPREL 8 /* DTPREL reloc, => LD. */
2269 #define TLS_TLS 16 /* Any TLS reloc. */
2270 #define TLS_TPRELGD 32 /* TPREL reloc resulting from GD->IE. */
2273 /* Nonzero if we have seen a small data relocation referring to this
2275 unsigned char has_sda_refs
;
2278 #define ppc_elf_hash_entry(ent) ((struct ppc_elf_link_hash_entry *) (ent))
2280 /* PPC ELF linker hash table. */
2282 struct ppc_elf_link_hash_table
2284 struct elf_link_hash_table elf
;
2286 /* Short-cuts to get to dynamic linker sections. */
2296 elf_linker_section_t sdata
[2];
2299 /* Shortcut to .__tls_get_addr. */
2300 struct elf_link_hash_entry
*tls_get_addr
;
2302 /* TLS local dynamic got entry handling. */
2304 bfd_signed_vma refcount
;
2308 /* Offset of PltResolve function in glink. */
2309 bfd_vma glink_pltresolve
;
2311 /* Size of reserved GOT entries. */
2312 unsigned int got_header_size
;
2313 /* Non-zero if allocating the header left a gap. */
2314 unsigned int got_gap
;
2316 /* Whether to use new plt/got layout or not. */
2317 unsigned int new_plt
:1;
2318 unsigned int old_plt
:1;
2320 /* Small local sym to section mapping cache. */
2321 struct sym_sec_cache sym_sec
;
2324 /* Get the PPC ELF linker hash table from a link_info structure. */
2326 #define ppc_elf_hash_table(p) \
2327 ((struct ppc_elf_link_hash_table *) (p)->hash)
2329 /* Create an entry in a PPC ELF linker hash table. */
2331 static struct bfd_hash_entry
*
2332 ppc_elf_link_hash_newfunc (struct bfd_hash_entry
*entry
,
2333 struct bfd_hash_table
*table
,
2336 /* Allocate the structure if it has not already been allocated by a
2340 entry
= bfd_hash_allocate (table
,
2341 sizeof (struct ppc_elf_link_hash_entry
));
2346 /* Call the allocation method of the superclass. */
2347 entry
= _bfd_elf_link_hash_newfunc (entry
, table
, string
);
2350 ppc_elf_hash_entry (entry
)->linker_section_pointer
= NULL
;
2351 ppc_elf_hash_entry (entry
)->dyn_relocs
= NULL
;
2352 ppc_elf_hash_entry (entry
)->tls_mask
= 0;
2358 /* Create a PPC ELF linker hash table. */
2360 static struct bfd_link_hash_table
*
2361 ppc_elf_link_hash_table_create (bfd
*abfd
)
2363 struct ppc_elf_link_hash_table
*ret
;
2365 ret
= bfd_zmalloc (sizeof (struct ppc_elf_link_hash_table
));
2369 if (! _bfd_elf_link_hash_table_init (&ret
->elf
, abfd
,
2370 ppc_elf_link_hash_newfunc
))
2376 ret
->elf
.init_plt_refcount
.refcount
= 0;
2377 ret
->elf
.init_plt_refcount
.glist
= NULL
;
2378 ret
->elf
.init_plt_offset
.offset
= 0;
2379 ret
->elf
.init_plt_offset
.glist
= NULL
;
2381 ret
->sdata
[0].name
= ".sdata";
2382 ret
->sdata
[0].sym_name
= "_SDA_BASE_";
2383 ret
->sdata
[0].bss_name
= ".sbss";
2385 ret
->sdata
[1].name
= ".sdata2";
2386 ret
->sdata
[1].sym_name
= "_SDA2_BASE_";
2387 ret
->sdata
[1].bss_name
= ".sbss2";
2389 return &ret
->elf
.root
;
2392 /* The powerpc .got has a blrl instruction in it. Mark it executable. */
2395 ppc_elf_create_got (bfd
*abfd
, struct bfd_link_info
*info
)
2397 struct ppc_elf_link_hash_table
*htab
;
2401 if (!_bfd_elf_create_got_section (abfd
, info
))
2404 htab
= ppc_elf_hash_table (info
);
2405 htab
->got
= s
= bfd_get_section_by_name (abfd
, ".got");
2409 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_CODE
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
2410 | SEC_LINKER_CREATED
);
2411 if (!bfd_set_section_flags (abfd
, s
, flags
))
2414 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
2415 | SEC_LINKER_CREATED
| SEC_READONLY
);
2416 htab
->relgot
= bfd_make_section_with_flags (abfd
, ".rela.got", flags
);
2418 || ! bfd_set_section_alignment (abfd
, htab
->relgot
, 2))
2424 /* We have to create .dynsbss and .rela.sbss here so that they get mapped
2425 to output sections (just like _bfd_elf_create_dynamic_sections has
2426 to create .dynbss and .rela.bss). */
2429 ppc_elf_create_dynamic_sections (bfd
*abfd
, struct bfd_link_info
*info
)
2431 struct ppc_elf_link_hash_table
*htab
;
2435 htab
= ppc_elf_hash_table (info
);
2437 if (htab
->got
== NULL
2438 && !ppc_elf_create_got (abfd
, info
))
2441 if (!_bfd_elf_create_dynamic_sections (abfd
, info
))
2444 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
| SEC_HAS_CONTENTS
2445 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
);
2447 s
= bfd_make_section_anyway_with_flags (abfd
, ".glink", flags
| SEC_CODE
);
2450 || !bfd_set_section_alignment (abfd
, s
, 4))
2453 htab
->dynbss
= bfd_get_section_by_name (abfd
, ".dynbss");
2454 s
= bfd_make_section_with_flags (abfd
, ".dynsbss",
2455 SEC_ALLOC
| SEC_LINKER_CREATED
);
2462 htab
->relbss
= bfd_get_section_by_name (abfd
, ".rela.bss");
2463 s
= bfd_make_section_with_flags (abfd
, ".rela.sbss", flags
);
2466 || ! bfd_set_section_alignment (abfd
, s
, 2))
2470 htab
->relplt
= bfd_get_section_by_name (abfd
, ".rela.plt");
2471 htab
->plt
= s
= bfd_get_section_by_name (abfd
, ".plt");
2475 flags
= SEC_ALLOC
| SEC_CODE
| SEC_LINKER_CREATED
;
2476 return bfd_set_section_flags (abfd
, s
, flags
);
2479 /* Copy the extra info we tack onto an elf_link_hash_entry. */
2482 ppc_elf_copy_indirect_symbol (const struct elf_backend_data
*bed ATTRIBUTE_UNUSED
,
2483 struct elf_link_hash_entry
*dir
,
2484 struct elf_link_hash_entry
*ind
)
2486 struct ppc_elf_link_hash_entry
*edir
, *eind
;
2489 edir
= (struct ppc_elf_link_hash_entry
*) dir
;
2490 eind
= (struct ppc_elf_link_hash_entry
*) ind
;
2492 if (eind
->dyn_relocs
!= NULL
)
2494 if (edir
->dyn_relocs
!= NULL
)
2496 struct ppc_elf_dyn_relocs
**pp
;
2497 struct ppc_elf_dyn_relocs
*p
;
2499 if (ind
->root
.type
== bfd_link_hash_indirect
)
2502 /* Add reloc counts against the weak sym to the strong sym
2503 list. Merge any entries against the same section. */
2504 for (pp
= &eind
->dyn_relocs
; (p
= *pp
) != NULL
; )
2506 struct ppc_elf_dyn_relocs
*q
;
2508 for (q
= edir
->dyn_relocs
; q
!= NULL
; q
= q
->next
)
2509 if (q
->sec
== p
->sec
)
2511 q
->pc_count
+= p
->pc_count
;
2512 q
->count
+= p
->count
;
2519 *pp
= edir
->dyn_relocs
;
2522 edir
->dyn_relocs
= eind
->dyn_relocs
;
2523 eind
->dyn_relocs
= NULL
;
2526 edir
->tls_mask
|= eind
->tls_mask
;
2527 edir
->has_sda_refs
|= eind
->has_sda_refs
;
2529 /* If called to transfer flags for a weakdef during processing
2530 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
2531 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
2532 if (!(ELIMINATE_COPY_RELOCS
2533 && eind
->elf
.root
.type
!= bfd_link_hash_indirect
2534 && edir
->elf
.dynamic_adjusted
))
2535 edir
->elf
.non_got_ref
|= eind
->elf
.non_got_ref
;
2537 edir
->elf
.ref_dynamic
|= eind
->elf
.ref_dynamic
;
2538 edir
->elf
.ref_regular
|= eind
->elf
.ref_regular
;
2539 edir
->elf
.ref_regular_nonweak
|= eind
->elf
.ref_regular_nonweak
;
2540 edir
->elf
.needs_plt
|= eind
->elf
.needs_plt
;
2542 /* If we were called to copy over info for a weak sym, that's all. */
2543 if (eind
->elf
.root
.type
!= bfd_link_hash_indirect
)
2546 /* Copy over the GOT refcount entries that we may have already seen to
2547 the symbol which just became indirect. */
2548 tmp
= edir
->elf
.got
.refcount
;
2551 edir
->elf
.got
.refcount
= eind
->elf
.got
.refcount
;
2552 eind
->elf
.got
.refcount
= tmp
;
2555 BFD_ASSERT (eind
->elf
.got
.refcount
< 1);
2557 /* And plt entries. */
2558 if (eind
->elf
.plt
.plist
!= NULL
)
2560 if (edir
->elf
.plt
.plist
!= NULL
)
2562 struct plt_entry
**entp
;
2563 struct plt_entry
*ent
;
2565 for (entp
= &eind
->elf
.plt
.plist
; (ent
= *entp
) != NULL
; )
2567 struct plt_entry
*dent
;
2569 for (dent
= edir
->elf
.plt
.plist
; dent
!= NULL
; dent
= dent
->next
)
2570 if (dent
->sec
== ent
->sec
&& dent
->addend
== ent
->addend
)
2572 dent
->plt
.refcount
+= ent
->plt
.refcount
;
2579 *entp
= edir
->elf
.plt
.plist
;
2582 edir
->elf
.plt
.plist
= eind
->elf
.plt
.plist
;
2583 eind
->elf
.plt
.plist
= NULL
;
2586 if (edir
->elf
.dynindx
== -1)
2588 edir
->elf
.dynindx
= eind
->elf
.dynindx
;
2589 edir
->elf
.dynstr_index
= eind
->elf
.dynstr_index
;
2590 eind
->elf
.dynindx
= -1;
2591 eind
->elf
.dynstr_index
= 0;
2594 BFD_ASSERT (eind
->elf
.dynindx
== -1);
2597 /* Return 1 if target is one of ours. */
2600 is_ppc_elf_target (const struct bfd_target
*targ
)
2602 extern const bfd_target bfd_elf32_powerpc_vec
;
2603 extern const bfd_target bfd_elf32_powerpcle_vec
;
2605 return targ
== &bfd_elf32_powerpc_vec
|| targ
== &bfd_elf32_powerpcle_vec
;
2608 /* Hook called by the linker routine which adds symbols from an object
2609 file. We use it to put .comm items in .sbss, and not .bss. */
2612 ppc_elf_add_symbol_hook (bfd
*abfd
,
2613 struct bfd_link_info
*info
,
2614 Elf_Internal_Sym
*sym
,
2615 const char **namep ATTRIBUTE_UNUSED
,
2616 flagword
*flagsp ATTRIBUTE_UNUSED
,
2620 if (sym
->st_shndx
== SHN_COMMON
2621 && !info
->relocatable
2622 && sym
->st_size
<= elf_gp_size (abfd
)
2623 && is_ppc_elf_target (info
->hash
->creator
))
2625 /* Common symbols less than or equal to -G nn bytes are automatically
2627 struct ppc_elf_link_hash_table
*htab
;
2629 htab
= ppc_elf_hash_table (info
);
2630 if (htab
->sbss
== NULL
)
2632 flagword flags
= SEC_IS_COMMON
| SEC_LINKER_CREATED
;
2634 if (!htab
->elf
.dynobj
)
2635 htab
->elf
.dynobj
= abfd
;
2637 htab
->sbss
= bfd_make_section_anyway_with_flags (htab
->elf
.dynobj
,
2640 if (htab
->sbss
== NULL
)
2645 *valp
= sym
->st_size
;
2651 /* Create a special linker section. */
2654 ppc_elf_create_linker_section (bfd
*abfd
,
2655 struct bfd_link_info
*info
,
2657 elf_linker_section_t
*lsect
)
2659 struct ppc_elf_link_hash_table
*htab
= ppc_elf_hash_table (info
);
2662 flags
|= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
2663 | SEC_LINKER_CREATED
);
2665 /* Record the first bfd that needs the special sections. */
2666 if (!htab
->elf
.dynobj
)
2667 htab
->elf
.dynobj
= abfd
;
2669 s
= bfd_make_section_anyway_with_flags (htab
->elf
.dynobj
,
2673 || !bfd_set_section_alignment (htab
->elf
.dynobj
, s
, 2))
2680 /* Find a linker generated pointer with a given addend and type. */
2682 static elf_linker_section_pointers_t
*
2683 elf_find_pointer_linker_section
2684 (elf_linker_section_pointers_t
*linker_pointers
,
2686 elf_linker_section_t
*lsect
)
2688 for ( ; linker_pointers
!= NULL
; linker_pointers
= linker_pointers
->next
)
2689 if (lsect
== linker_pointers
->lsect
&& addend
== linker_pointers
->addend
)
2690 return linker_pointers
;
2695 /* Allocate a pointer to live in a linker created section. */
2698 elf_create_pointer_linker_section (bfd
*abfd
,
2699 elf_linker_section_t
*lsect
,
2700 struct elf_link_hash_entry
*h
,
2701 const Elf_Internal_Rela
*rel
)
2703 elf_linker_section_pointers_t
**ptr_linker_section_ptr
= NULL
;
2704 elf_linker_section_pointers_t
*linker_section_ptr
;
2705 unsigned long r_symndx
= ELF32_R_SYM (rel
->r_info
);
2708 BFD_ASSERT (lsect
!= NULL
);
2710 /* Is this a global symbol? */
2713 struct ppc_elf_link_hash_entry
*eh
;
2715 /* Has this symbol already been allocated? If so, our work is done. */
2716 eh
= (struct ppc_elf_link_hash_entry
*) h
;
2717 if (elf_find_pointer_linker_section (eh
->linker_section_pointer
,
2722 ptr_linker_section_ptr
= &eh
->linker_section_pointer
;
2726 /* Allocation of a pointer to a local symbol. */
2727 elf_linker_section_pointers_t
**ptr
= elf_local_ptr_offsets (abfd
);
2729 /* Allocate a table to hold the local symbols if first time. */
2732 unsigned int num_symbols
= elf_tdata (abfd
)->symtab_hdr
.sh_info
;
2735 amt
*= sizeof (elf_linker_section_pointers_t
*);
2736 ptr
= bfd_zalloc (abfd
, amt
);
2741 elf_local_ptr_offsets (abfd
) = ptr
;
2744 /* Has this symbol already been allocated? If so, our work is done. */
2745 if (elf_find_pointer_linker_section (ptr
[r_symndx
],
2750 ptr_linker_section_ptr
= &ptr
[r_symndx
];
2753 /* Allocate space for a pointer in the linker section, and allocate
2754 a new pointer record from internal memory. */
2755 BFD_ASSERT (ptr_linker_section_ptr
!= NULL
);
2756 amt
= sizeof (elf_linker_section_pointers_t
);
2757 linker_section_ptr
= bfd_alloc (abfd
, amt
);
2759 if (!linker_section_ptr
)
2762 linker_section_ptr
->next
= *ptr_linker_section_ptr
;
2763 linker_section_ptr
->addend
= rel
->r_addend
;
2764 linker_section_ptr
->lsect
= lsect
;
2765 *ptr_linker_section_ptr
= linker_section_ptr
;
2767 linker_section_ptr
->offset
= lsect
->section
->size
;
2768 lsect
->section
->size
+= 4;
2772 "Create pointer in linker section %s, offset = %ld, section size = %ld\n",
2773 lsect
->name
, (long) linker_section_ptr
->offset
,
2774 (long) lsect
->section
->size
);
2781 update_local_sym_info (bfd
*abfd
,
2782 Elf_Internal_Shdr
*symtab_hdr
,
2783 unsigned long r_symndx
,
2786 bfd_signed_vma
*local_got_refcounts
= elf_local_got_refcounts (abfd
);
2787 char *local_got_tls_masks
;
2789 if (local_got_refcounts
== NULL
)
2791 bfd_size_type size
= symtab_hdr
->sh_info
;
2793 size
*= sizeof (*local_got_refcounts
) + sizeof (*local_got_tls_masks
);
2794 local_got_refcounts
= bfd_zalloc (abfd
, size
);
2795 if (local_got_refcounts
== NULL
)
2797 elf_local_got_refcounts (abfd
) = local_got_refcounts
;
2800 local_got_refcounts
[r_symndx
] += 1;
2801 local_got_tls_masks
= (char *) (local_got_refcounts
+ symtab_hdr
->sh_info
);
2802 local_got_tls_masks
[r_symndx
] |= tls_type
;
2807 update_plt_info (bfd
*abfd
, struct elf_link_hash_entry
*h
,
2808 asection
*sec
, bfd_vma addend
)
2810 struct plt_entry
*ent
;
2814 for (ent
= h
->plt
.plist
; ent
!= NULL
; ent
= ent
->next
)
2815 if (ent
->sec
== sec
&& ent
->addend
== addend
)
2819 bfd_size_type amt
= sizeof (*ent
);
2820 ent
= bfd_alloc (abfd
, amt
);
2823 ent
->next
= h
->plt
.plist
;
2825 ent
->addend
= addend
;
2826 ent
->plt
.refcount
= 0;
2829 ent
->plt
.refcount
+= 1;
2833 static struct plt_entry
*
2834 find_plt_ent (struct elf_link_hash_entry
*h
, asection
*sec
, bfd_vma addend
)
2836 struct plt_entry
*ent
;
2840 for (ent
= h
->plt
.plist
; ent
!= NULL
; ent
= ent
->next
)
2841 if (ent
->sec
== sec
&& ent
->addend
== addend
)
2847 bad_shared_reloc (bfd
*abfd
, enum elf_ppc_reloc_type r_type
)
2849 (*_bfd_error_handler
)
2850 (_("%B: relocation %s cannot be used when making a shared object"),
2852 ppc_elf_howto_table
[r_type
]->name
);
2853 bfd_set_error (bfd_error_bad_value
);
2856 /* Look through the relocs for a section during the first phase, and
2857 allocate space in the global offset table or procedure linkage
2861 ppc_elf_check_relocs (bfd
*abfd
,
2862 struct bfd_link_info
*info
,
2864 const Elf_Internal_Rela
*relocs
)
2866 struct ppc_elf_link_hash_table
*htab
;
2867 Elf_Internal_Shdr
*symtab_hdr
;
2868 struct elf_link_hash_entry
**sym_hashes
;
2869 const Elf_Internal_Rela
*rel
;
2870 const Elf_Internal_Rela
*rel_end
;
2871 asection
*got2
, *sreloc
;
2873 if (info
->relocatable
)
2876 /* Don't do anything special with non-loaded, non-alloced sections.
2877 In particular, any relocs in such sections should not affect GOT
2878 and PLT reference counting (ie. we don't allow them to create GOT
2879 or PLT entries), there's no possibility or desire to optimize TLS
2880 relocs, and there's not much point in propagating relocs to shared
2881 libs that the dynamic linker won't relocate. */
2882 if ((sec
->flags
& SEC_ALLOC
) == 0)
2886 _bfd_error_handler ("ppc_elf_check_relocs called for section %A in %B",
2890 /* Initialize howto table if not already done. */
2891 if (!ppc_elf_howto_table
[R_PPC_ADDR32
])
2892 ppc_elf_howto_init ();
2894 htab
= ppc_elf_hash_table (info
);
2895 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2896 sym_hashes
= elf_sym_hashes (abfd
);
2897 got2
= bfd_get_section_by_name (abfd
, ".got2");
2900 rel_end
= relocs
+ sec
->reloc_count
;
2901 for (rel
= relocs
; rel
< rel_end
; rel
++)
2903 unsigned long r_symndx
;
2904 enum elf_ppc_reloc_type r_type
;
2905 struct elf_link_hash_entry
*h
;
2908 r_symndx
= ELF32_R_SYM (rel
->r_info
);
2909 if (r_symndx
< symtab_hdr
->sh_info
)
2913 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
2914 while (h
->root
.type
== bfd_link_hash_indirect
2915 || h
->root
.type
== bfd_link_hash_warning
)
2916 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2919 /* If a relocation refers to _GLOBAL_OFFSET_TABLE_, create the .got.
2920 This shows up in particular in an R_PPC_ADDR32 in the eabi
2923 && htab
->got
== NULL
2924 && strcmp (h
->root
.root
.string
, "_GLOBAL_OFFSET_TABLE_") == 0)
2926 if (htab
->elf
.dynobj
== NULL
)
2927 htab
->elf
.dynobj
= abfd
;
2928 if (!ppc_elf_create_got (htab
->elf
.dynobj
, info
))
2930 BFD_ASSERT (h
== htab
->elf
.hgot
);
2933 r_type
= ELF32_R_TYPE (rel
->r_info
);
2936 case R_PPC_GOT_TLSLD16
:
2937 case R_PPC_GOT_TLSLD16_LO
:
2938 case R_PPC_GOT_TLSLD16_HI
:
2939 case R_PPC_GOT_TLSLD16_HA
:
2940 htab
->tlsld_got
.refcount
+= 1;
2941 tls_type
= TLS_TLS
| TLS_LD
;
2944 case R_PPC_GOT_TLSGD16
:
2945 case R_PPC_GOT_TLSGD16_LO
:
2946 case R_PPC_GOT_TLSGD16_HI
:
2947 case R_PPC_GOT_TLSGD16_HA
:
2948 tls_type
= TLS_TLS
| TLS_GD
;
2951 case R_PPC_GOT_TPREL16
:
2952 case R_PPC_GOT_TPREL16_LO
:
2953 case R_PPC_GOT_TPREL16_HI
:
2954 case R_PPC_GOT_TPREL16_HA
:
2956 info
->flags
|= DF_STATIC_TLS
;
2957 tls_type
= TLS_TLS
| TLS_TPREL
;
2960 case R_PPC_GOT_DTPREL16
:
2961 case R_PPC_GOT_DTPREL16_LO
:
2962 case R_PPC_GOT_DTPREL16_HI
:
2963 case R_PPC_GOT_DTPREL16_HA
:
2964 tls_type
= TLS_TLS
| TLS_DTPREL
;
2966 sec
->has_tls_reloc
= 1;
2969 /* GOT16 relocations */
2971 case R_PPC_GOT16_LO
:
2972 case R_PPC_GOT16_HI
:
2973 case R_PPC_GOT16_HA
:
2974 /* This symbol requires a global offset table entry. */
2975 if (htab
->got
== NULL
)
2977 if (htab
->elf
.dynobj
== NULL
)
2978 htab
->elf
.dynobj
= abfd
;
2979 if (!ppc_elf_create_got (htab
->elf
.dynobj
, info
))
2984 h
->got
.refcount
+= 1;
2985 ppc_elf_hash_entry (h
)->tls_mask
|= tls_type
;
2988 /* This is a global offset table entry for a local symbol. */
2989 if (!update_local_sym_info (abfd
, symtab_hdr
, r_symndx
, tls_type
))
2993 /* Indirect .sdata relocation. */
2994 case R_PPC_EMB_SDAI16
:
2997 bad_shared_reloc (abfd
, r_type
);
3000 if (htab
->sdata
[0].section
== NULL
3001 && !ppc_elf_create_linker_section (abfd
, info
, 0,
3004 if (!elf_create_pointer_linker_section (abfd
, &htab
->sdata
[0],
3009 /* Indirect .sdata2 relocation. */
3010 case R_PPC_EMB_SDA2I16
:
3013 bad_shared_reloc (abfd
, r_type
);
3016 if (htab
->sdata
[1].section
== NULL
3017 && !ppc_elf_create_linker_section (abfd
, info
, SEC_READONLY
,
3020 if (!elf_create_pointer_linker_section (abfd
, &htab
->sdata
[1],
3025 case R_PPC_SDAREL16
:
3026 case R_PPC_EMB_SDA2REL
:
3027 case R_PPC_EMB_SDA21
:
3028 case R_PPC_EMB_RELSDA
:
3029 case R_PPC_EMB_NADDR32
:
3030 case R_PPC_EMB_NADDR16
:
3031 case R_PPC_EMB_NADDR16_LO
:
3032 case R_PPC_EMB_NADDR16_HI
:
3033 case R_PPC_EMB_NADDR16_HA
:
3036 bad_shared_reloc (abfd
, r_type
);
3041 ppc_elf_hash_entry (h
)->has_sda_refs
= TRUE
;
3042 /* We may need a copy reloc. */
3043 h
->non_got_ref
= TRUE
;
3048 case R_PPC_PLTREL24
:
3049 case R_PPC_PLTREL32
:
3050 case R_PPC_PLT16_LO
:
3051 case R_PPC_PLT16_HI
:
3052 case R_PPC_PLT16_HA
:
3054 fprintf (stderr
, "Reloc requires a PLT entry\n");
3056 /* This symbol requires a procedure linkage table entry. We
3057 actually build the entry in finish_dynamic_symbol,
3058 because this might be a case of linking PIC code without
3059 linking in any dynamic objects, in which case we don't
3060 need to generate a procedure linkage table after all. */
3064 /* It does not make sense to have a procedure linkage
3065 table entry for a local symbol. */
3066 (*_bfd_error_handler
) (_("%B(%A+0x%lx): %s reloc against "
3070 (long) rel
->r_offset
,
3071 ppc_elf_howto_table
[r_type
]->name
);
3072 bfd_set_error (bfd_error_bad_value
);
3077 bfd_vma addend
= r_type
== R_PPC_PLTREL24
? rel
->r_addend
: 0;
3080 if (!update_plt_info (abfd
, h
, got2
, addend
))
3085 /* The following relocations don't need to propagate the
3086 relocation if linking a shared object since they are
3087 section relative. */
3089 case R_PPC_SECTOFF_LO
:
3090 case R_PPC_SECTOFF_HI
:
3091 case R_PPC_SECTOFF_HA
:
3092 case R_PPC_DTPREL16
:
3093 case R_PPC_DTPREL16_LO
:
3094 case R_PPC_DTPREL16_HI
:
3095 case R_PPC_DTPREL16_HA
:
3100 case R_PPC_REL16_LO
:
3101 case R_PPC_REL16_HI
:
3102 case R_PPC_REL16_HA
:
3106 /* These are just markers. */
3108 case R_PPC_EMB_MRKREF
:
3113 /* These should only appear in dynamic objects. */
3115 case R_PPC_GLOB_DAT
:
3116 case R_PPC_JMP_SLOT
:
3117 case R_PPC_RELATIVE
:
3120 /* These aren't handled yet. We'll report an error later. */
3122 case R_PPC_EMB_RELSEC16
:
3123 case R_PPC_EMB_RELST_LO
:
3124 case R_PPC_EMB_RELST_HI
:
3125 case R_PPC_EMB_RELST_HA
:
3126 case R_PPC_EMB_BIT_FLD
:
3129 /* This refers only to functions defined in the shared library. */
3130 case R_PPC_LOCAL24PC
:
3131 if (h
&& h
== htab
->elf
.hgot
)
3135 /* This relocation describes the C++ object vtable hierarchy.
3136 Reconstruct it for later use during GC. */
3137 case R_PPC_GNU_VTINHERIT
:
3138 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
3142 /* This relocation describes which C++ vtable entries are actually
3143 used. Record for later use during GC. */
3144 case R_PPC_GNU_VTENTRY
:
3145 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
3149 /* We shouldn't really be seeing these. */
3152 info
->flags
|= DF_STATIC_TLS
;
3156 case R_PPC_DTPMOD32
:
3157 case R_PPC_DTPREL32
:
3161 case R_PPC_TPREL16_LO
:
3162 case R_PPC_TPREL16_HI
:
3163 case R_PPC_TPREL16_HA
:
3165 info
->flags
|= DF_STATIC_TLS
;
3171 && (sec
->flags
& SEC_CODE
) != 0
3172 && (info
->shared
|| info
->pie
)
3175 /* Old -fPIC gcc code has .long LCTOC1-LCFx just before
3176 the start of a function, which assembles to a REL32
3177 reference to .got2. If we detect one of these, then
3178 force the old PLT layout because the linker cannot
3179 reliably deduce the GOT pointer value needed for
3183 s
= bfd_section_from_r_symndx (abfd
, &htab
->sym_sec
, sec
,
3192 case R_PPC_REL14_BRTAKEN
:
3193 case R_PPC_REL14_BRNTAKEN
:
3196 if (h
== htab
->elf
.hgot
)
3206 case R_PPC_ADDR16_LO
:
3207 case R_PPC_ADDR16_HI
:
3208 case R_PPC_ADDR16_HA
:
3210 case R_PPC_ADDR14_BRTAKEN
:
3211 case R_PPC_ADDR14_BRNTAKEN
:
3214 if (h
!= NULL
&& !info
->shared
)
3216 /* We may need a plt entry if the symbol turns out to be
3217 a function defined in a dynamic object. */
3218 if (!update_plt_info (abfd
, h
, NULL
, 0))
3221 /* We may need a copy reloc too. */
3226 /* If we are creating a shared library, and this is a reloc
3227 against a global symbol, or a non PC relative reloc
3228 against a local symbol, then we need to copy the reloc
3229 into the shared library. However, if we are linking with
3230 -Bsymbolic, we do not need to copy a reloc against a
3231 global symbol which is defined in an object we are
3232 including in the link (i.e., DEF_REGULAR is set). At
3233 this point we have not seen all the input files, so it is
3234 possible that DEF_REGULAR is not set now but will be set
3235 later (it is never cleared). In case of a weak definition,
3236 DEF_REGULAR may be cleared later by a strong definition in
3237 a shared library. We account for that possibility below by
3238 storing information in the dyn_relocs field of the hash
3239 table entry. A similar situation occurs when creating
3240 shared libraries and symbol visibility changes render the
3243 If on the other hand, we are creating an executable, we
3244 may need to keep relocations for symbols satisfied by a
3245 dynamic library if we manage to avoid copy relocs for the
3248 && (MUST_BE_DYN_RELOC (r_type
)
3250 && (! info
->symbolic
3251 || h
->root
.type
== bfd_link_hash_defweak
3252 || !h
->def_regular
))))
3253 || (ELIMINATE_COPY_RELOCS
3256 && (h
->root
.type
== bfd_link_hash_defweak
3257 || !h
->def_regular
)))
3259 struct ppc_elf_dyn_relocs
*p
;
3260 struct ppc_elf_dyn_relocs
**head
;
3264 "ppc_elf_check_relocs needs to "
3265 "create relocation for %s\n",
3266 (h
&& h
->root
.root
.string
3267 ? h
->root
.root
.string
: "<unknown>"));
3273 name
= (bfd_elf_string_from_elf_section
3275 elf_elfheader (abfd
)->e_shstrndx
,
3276 elf_section_data (sec
)->rel_hdr
.sh_name
));
3280 BFD_ASSERT (strncmp (name
, ".rela", 5) == 0
3281 && strcmp (bfd_get_section_name (abfd
, sec
),
3284 if (htab
->elf
.dynobj
== NULL
)
3285 htab
->elf
.dynobj
= abfd
;
3286 sreloc
= bfd_get_section_by_name (htab
->elf
.dynobj
, name
);
3291 flags
= (SEC_HAS_CONTENTS
| SEC_READONLY
3292 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
3293 | SEC_ALLOC
| SEC_LOAD
);
3294 sreloc
= bfd_make_section_with_flags (htab
->elf
.dynobj
,
3298 || ! bfd_set_section_alignment (htab
->elf
.dynobj
,
3302 elf_section_data (sec
)->sreloc
= sreloc
;
3305 /* If this is a global symbol, we count the number of
3306 relocations we need for this symbol. */
3309 head
= &ppc_elf_hash_entry (h
)->dyn_relocs
;
3313 /* Track dynamic relocs needed for local syms too.
3314 We really need local syms available to do this
3318 s
= bfd_section_from_r_symndx (abfd
, &htab
->sym_sec
,
3323 head
= ((struct ppc_elf_dyn_relocs
**)
3324 &elf_section_data (s
)->local_dynrel
);
3328 if (p
== NULL
|| p
->sec
!= sec
)
3330 p
= bfd_alloc (htab
->elf
.dynobj
, sizeof *p
);
3341 if (!MUST_BE_DYN_RELOC (r_type
))
3352 /* Merge backend specific data from an object file to the output
3353 object file when linking. */
3356 ppc_elf_merge_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
3362 if (!is_ppc_elf_target (ibfd
->xvec
)
3363 || !is_ppc_elf_target (obfd
->xvec
))
3366 /* Check if we have the same endianess. */
3367 if (! _bfd_generic_verify_endian_match (ibfd
, obfd
))
3370 new_flags
= elf_elfheader (ibfd
)->e_flags
;
3371 old_flags
= elf_elfheader (obfd
)->e_flags
;
3372 if (!elf_flags_init (obfd
))
3374 /* First call, no flags set. */
3375 elf_flags_init (obfd
) = TRUE
;
3376 elf_elfheader (obfd
)->e_flags
= new_flags
;
3379 /* Compatible flags are ok. */
3380 else if (new_flags
== old_flags
)
3383 /* Incompatible flags. */
3386 /* Warn about -mrelocatable mismatch. Allow -mrelocatable-lib
3387 to be linked with either. */
3389 if ((new_flags
& EF_PPC_RELOCATABLE
) != 0
3390 && (old_flags
& (EF_PPC_RELOCATABLE
| EF_PPC_RELOCATABLE_LIB
)) == 0)
3393 (*_bfd_error_handler
)
3394 (_("%B: compiled with -mrelocatable and linked with "
3395 "modules compiled normally"), ibfd
);
3397 else if ((new_flags
& (EF_PPC_RELOCATABLE
| EF_PPC_RELOCATABLE_LIB
)) == 0
3398 && (old_flags
& EF_PPC_RELOCATABLE
) != 0)
3401 (*_bfd_error_handler
)
3402 (_("%B: compiled normally and linked with "
3403 "modules compiled with -mrelocatable"), ibfd
);
3406 /* The output is -mrelocatable-lib iff both the input files are. */
3407 if (! (new_flags
& EF_PPC_RELOCATABLE_LIB
))
3408 elf_elfheader (obfd
)->e_flags
&= ~EF_PPC_RELOCATABLE_LIB
;
3410 /* The output is -mrelocatable iff it can't be -mrelocatable-lib,
3411 but each input file is either -mrelocatable or -mrelocatable-lib. */
3412 if (! (elf_elfheader (obfd
)->e_flags
& EF_PPC_RELOCATABLE_LIB
)
3413 && (new_flags
& (EF_PPC_RELOCATABLE_LIB
| EF_PPC_RELOCATABLE
))
3414 && (old_flags
& (EF_PPC_RELOCATABLE_LIB
| EF_PPC_RELOCATABLE
)))
3415 elf_elfheader (obfd
)->e_flags
|= EF_PPC_RELOCATABLE
;
3417 /* Do not warn about eabi vs. V.4 mismatch, just or in the bit if
3418 any module uses it. */
3419 elf_elfheader (obfd
)->e_flags
|= (new_flags
& EF_PPC_EMB
);
3421 new_flags
&= ~(EF_PPC_RELOCATABLE
| EF_PPC_RELOCATABLE_LIB
| EF_PPC_EMB
);
3422 old_flags
&= ~(EF_PPC_RELOCATABLE
| EF_PPC_RELOCATABLE_LIB
| EF_PPC_EMB
);
3424 /* Warn about any other mismatches. */
3425 if (new_flags
!= old_flags
)
3428 (*_bfd_error_handler
)
3429 (_("%B: uses different e_flags (0x%lx) fields "
3430 "than previous modules (0x%lx)"),
3431 ibfd
, (long) new_flags
, (long) old_flags
);
3436 bfd_set_error (bfd_error_bad_value
);
3444 /* Choose which PLT scheme to use, and set .plt flags appropriately.
3445 Returns -1 on error, 0 for old PLT, 1 for new PLT. */
3447 ppc_elf_select_plt_layout (bfd
*output_bfd ATTRIBUTE_UNUSED
,
3448 struct bfd_link_info
*info
,
3451 struct ppc_elf_link_hash_table
*htab
;
3453 htab
= ppc_elf_hash_table (info
);
3454 if (force_old_plt
|| !htab
->new_plt
)
3459 flagword flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
3460 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
);
3462 /* The new PLT is a loaded section. */
3463 if (htab
->plt
!= NULL
3464 && !bfd_set_section_flags (htab
->elf
.dynobj
, htab
->plt
, flags
))
3467 /* The new GOT is not executable. */
3468 if (htab
->got
!= NULL
3469 && !bfd_set_section_flags (htab
->elf
.dynobj
, htab
->got
, flags
))
3474 /* Stop an unused .glink section from affecting .text alignment. */
3475 if (htab
->glink
!= NULL
3476 && !bfd_set_section_alignment (htab
->elf
.dynobj
, htab
->glink
, 0))
3479 return !htab
->old_plt
;
3482 /* Return the section that should be marked against GC for a given
3486 ppc_elf_gc_mark_hook (asection
*sec
,
3487 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
3488 Elf_Internal_Rela
*rel
,
3489 struct elf_link_hash_entry
*h
,
3490 Elf_Internal_Sym
*sym
)
3494 switch (ELF32_R_TYPE (rel
->r_info
))
3496 case R_PPC_GNU_VTINHERIT
:
3497 case R_PPC_GNU_VTENTRY
:
3501 switch (h
->root
.type
)
3503 case bfd_link_hash_defined
:
3504 case bfd_link_hash_defweak
:
3505 return h
->root
.u
.def
.section
;
3507 case bfd_link_hash_common
:
3508 return h
->root
.u
.c
.p
->section
;
3516 return bfd_section_from_elf_index (sec
->owner
, sym
->st_shndx
);
3521 /* Update the got, plt and dynamic reloc reference counts for the
3522 section being removed. */
3525 ppc_elf_gc_sweep_hook (bfd
*abfd
,
3526 struct bfd_link_info
*info
,
3528 const Elf_Internal_Rela
*relocs
)
3530 struct ppc_elf_link_hash_table
*htab
;
3531 Elf_Internal_Shdr
*symtab_hdr
;
3532 struct elf_link_hash_entry
**sym_hashes
;
3533 bfd_signed_vma
*local_got_refcounts
;
3534 const Elf_Internal_Rela
*rel
, *relend
;
3537 if ((sec
->flags
& SEC_ALLOC
) == 0)
3540 elf_section_data (sec
)->local_dynrel
= NULL
;
3542 htab
= ppc_elf_hash_table (info
);
3543 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
3544 sym_hashes
= elf_sym_hashes (abfd
);
3545 local_got_refcounts
= elf_local_got_refcounts (abfd
);
3546 got2
= bfd_get_section_by_name (abfd
, ".got2");
3548 relend
= relocs
+ sec
->reloc_count
;
3549 for (rel
= relocs
; rel
< relend
; rel
++)
3551 unsigned long r_symndx
;
3552 enum elf_ppc_reloc_type r_type
;
3553 struct elf_link_hash_entry
*h
= NULL
;
3555 r_symndx
= ELF32_R_SYM (rel
->r_info
);
3556 if (r_symndx
>= symtab_hdr
->sh_info
)
3558 struct ppc_elf_dyn_relocs
**pp
, *p
;
3559 struct ppc_elf_link_hash_entry
*eh
;
3561 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
3562 while (h
->root
.type
== bfd_link_hash_indirect
3563 || h
->root
.type
== bfd_link_hash_warning
)
3564 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
3565 eh
= (struct ppc_elf_link_hash_entry
*) h
;
3567 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; pp
= &p
->next
)
3570 /* Everything must go for SEC. */
3576 r_type
= ELF32_R_TYPE (rel
->r_info
);
3579 case R_PPC_GOT_TLSLD16
:
3580 case R_PPC_GOT_TLSLD16_LO
:
3581 case R_PPC_GOT_TLSLD16_HI
:
3582 case R_PPC_GOT_TLSLD16_HA
:
3583 htab
->tlsld_got
.refcount
-= 1;
3586 case R_PPC_GOT_TLSGD16
:
3587 case R_PPC_GOT_TLSGD16_LO
:
3588 case R_PPC_GOT_TLSGD16_HI
:
3589 case R_PPC_GOT_TLSGD16_HA
:
3590 case R_PPC_GOT_TPREL16
:
3591 case R_PPC_GOT_TPREL16_LO
:
3592 case R_PPC_GOT_TPREL16_HI
:
3593 case R_PPC_GOT_TPREL16_HA
:
3594 case R_PPC_GOT_DTPREL16
:
3595 case R_PPC_GOT_DTPREL16_LO
:
3596 case R_PPC_GOT_DTPREL16_HI
:
3597 case R_PPC_GOT_DTPREL16_HA
:
3599 case R_PPC_GOT16_LO
:
3600 case R_PPC_GOT16_HI
:
3601 case R_PPC_GOT16_HA
:
3604 if (h
->got
.refcount
> 0)
3607 else if (local_got_refcounts
!= NULL
)
3609 if (local_got_refcounts
[r_symndx
] > 0)
3610 local_got_refcounts
[r_symndx
]--;
3616 case R_PPC_REL14_BRTAKEN
:
3617 case R_PPC_REL14_BRNTAKEN
:
3619 if (h
== NULL
|| h
== htab
->elf
.hgot
)
3626 case R_PPC_ADDR16_LO
:
3627 case R_PPC_ADDR16_HI
:
3628 case R_PPC_ADDR16_HA
:
3630 case R_PPC_ADDR14_BRTAKEN
:
3631 case R_PPC_ADDR14_BRNTAKEN
:
3635 case R_PPC_PLTREL24
:
3636 case R_PPC_PLT16_LO
:
3637 case R_PPC_PLT16_HI
:
3638 case R_PPC_PLT16_HA
:
3641 bfd_vma addend
= r_type
== R_PPC_PLTREL24
? rel
->r_addend
: 0;
3642 struct plt_entry
*ent
= find_plt_ent (h
, got2
, addend
);
3643 if (ent
->plt
.refcount
> 0)
3644 ent
->plt
.refcount
-= 1;
3655 /* Set htab->tls_get_addr and call the generic ELF tls_setup function. */
3658 ppc_elf_tls_setup (bfd
*obfd
, struct bfd_link_info
*info
)
3660 struct ppc_elf_link_hash_table
*htab
;
3662 htab
= ppc_elf_hash_table (info
);
3664 && htab
->plt
!= NULL
3665 && htab
->plt
->output_section
!= NULL
)
3667 elf_section_type (htab
->plt
->output_section
) = SHT_PROGBITS
;
3668 elf_section_flags (htab
->plt
->output_section
) = SHF_ALLOC
+ SHF_WRITE
;
3671 htab
->tls_get_addr
= elf_link_hash_lookup (&htab
->elf
, "__tls_get_addr",
3672 FALSE
, FALSE
, TRUE
);
3673 return _bfd_elf_tls_setup (obfd
, info
);
3676 /* Run through all the TLS relocs looking for optimization
3680 ppc_elf_tls_optimize (bfd
*obfd ATTRIBUTE_UNUSED
,
3681 struct bfd_link_info
*info
)
3685 struct ppc_elf_link_hash_table
*htab
;
3687 if (info
->relocatable
|| info
->shared
)
3690 htab
= ppc_elf_hash_table (info
);
3691 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link_next
)
3693 Elf_Internal_Sym
*locsyms
= NULL
;
3694 Elf_Internal_Shdr
*symtab_hdr
= &elf_tdata (ibfd
)->symtab_hdr
;
3696 for (sec
= ibfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
3697 if (sec
->has_tls_reloc
&& !bfd_is_abs_section (sec
->output_section
))
3699 Elf_Internal_Rela
*relstart
, *rel
, *relend
;
3700 int expecting_tls_get_addr
;
3702 /* Read the relocations. */
3703 relstart
= _bfd_elf_link_read_relocs (ibfd
, sec
, NULL
, NULL
,
3705 if (relstart
== NULL
)
3708 expecting_tls_get_addr
= 0;
3709 relend
= relstart
+ sec
->reloc_count
;
3710 for (rel
= relstart
; rel
< relend
; rel
++)
3712 enum elf_ppc_reloc_type r_type
;
3713 unsigned long r_symndx
;
3714 struct elf_link_hash_entry
*h
= NULL
;
3716 char tls_set
, tls_clear
;
3717 bfd_boolean is_local
;
3719 r_symndx
= ELF32_R_SYM (rel
->r_info
);
3720 if (r_symndx
>= symtab_hdr
->sh_info
)
3722 struct elf_link_hash_entry
**sym_hashes
;
3724 sym_hashes
= elf_sym_hashes (ibfd
);
3725 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
3726 while (h
->root
.type
== bfd_link_hash_indirect
3727 || h
->root
.type
== bfd_link_hash_warning
)
3728 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
3736 r_type
= ELF32_R_TYPE (rel
->r_info
);
3739 case R_PPC_GOT_TLSLD16
:
3740 case R_PPC_GOT_TLSLD16_LO
:
3741 case R_PPC_GOT_TLSLD16_HI
:
3742 case R_PPC_GOT_TLSLD16_HA
:
3743 /* These relocs should never be against a symbol
3744 defined in a shared lib. Leave them alone if
3745 that turns out to be the case. */
3746 expecting_tls_get_addr
= 0;
3747 htab
->tlsld_got
.refcount
-= 1;
3754 expecting_tls_get_addr
= 1;
3757 case R_PPC_GOT_TLSGD16
:
3758 case R_PPC_GOT_TLSGD16_LO
:
3759 case R_PPC_GOT_TLSGD16_HI
:
3760 case R_PPC_GOT_TLSGD16_HA
:
3766 tls_set
= TLS_TLS
| TLS_TPRELGD
;
3768 expecting_tls_get_addr
= 1;
3771 case R_PPC_GOT_TPREL16
:
3772 case R_PPC_GOT_TPREL16_LO
:
3773 case R_PPC_GOT_TPREL16_HI
:
3774 case R_PPC_GOT_TPREL16_HA
:
3775 expecting_tls_get_addr
= 0;
3780 tls_clear
= TLS_TPREL
;
3787 case R_PPC_REL14_BRTAKEN
:
3788 case R_PPC_REL14_BRNTAKEN
:
3790 if (expecting_tls_get_addr
3792 && h
== htab
->tls_get_addr
)
3794 struct plt_entry
*ent
= find_plt_ent (h
, NULL
, 0);
3795 if (ent
!= NULL
&& ent
->plt
.refcount
> 0)
3796 ent
->plt
.refcount
-= 1;
3798 expecting_tls_get_addr
= 0;
3802 expecting_tls_get_addr
= 0;
3810 /* We managed to get rid of a got entry. */
3811 if (h
->got
.refcount
> 0)
3812 h
->got
.refcount
-= 1;
3814 tls_mask
= &ppc_elf_hash_entry (h
)->tls_mask
;
3818 Elf_Internal_Sym
*sym
;
3819 bfd_signed_vma
*lgot_refs
;
3822 if (locsyms
== NULL
)
3824 locsyms
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
3825 if (locsyms
== NULL
)
3826 locsyms
= bfd_elf_get_elf_syms (ibfd
, symtab_hdr
,
3827 symtab_hdr
->sh_info
,
3828 0, NULL
, NULL
, NULL
);
3829 if (locsyms
== NULL
)
3831 if (elf_section_data (sec
)->relocs
!= relstart
)
3836 sym
= locsyms
+ r_symndx
;
3837 lgot_refs
= elf_local_got_refcounts (ibfd
);
3838 if (lgot_refs
== NULL
)
3842 /* We managed to get rid of a got entry. */
3843 if (lgot_refs
[r_symndx
] > 0)
3844 lgot_refs
[r_symndx
] -= 1;
3846 lgot_masks
= (char *) (lgot_refs
+ symtab_hdr
->sh_info
);
3847 tls_mask
= &lgot_masks
[r_symndx
];
3850 *tls_mask
|= tls_set
;
3851 *tls_mask
&= ~tls_clear
;
3854 if (elf_section_data (sec
)->relocs
!= relstart
)
3859 && (symtab_hdr
->contents
!= (unsigned char *) locsyms
))
3861 if (!info
->keep_memory
)
3864 symtab_hdr
->contents
= (unsigned char *) locsyms
;
3870 /* Adjust a symbol defined by a dynamic object and referenced by a
3871 regular object. The current definition is in some section of the
3872 dynamic object, but we're not including those sections. We have to
3873 change the definition to something the rest of the link can
3877 ppc_elf_adjust_dynamic_symbol (struct bfd_link_info
*info
,
3878 struct elf_link_hash_entry
*h
)
3880 struct ppc_elf_link_hash_table
*htab
;
3882 unsigned int power_of_two
;
3885 fprintf (stderr
, "ppc_elf_adjust_dynamic_symbol called for %s\n",
3886 h
->root
.root
.string
);
3889 /* Make sure we know what is going on here. */
3890 htab
= ppc_elf_hash_table (info
);
3891 BFD_ASSERT (htab
->elf
.dynobj
!= NULL
3893 || h
->u
.weakdef
!= NULL
3896 && !h
->def_regular
)));
3898 /* Deal with function syms. */
3899 if (h
->type
== STT_FUNC
3902 /* Clear procedure linkage table information for any symbol that
3903 won't need a .plt entry. */
3904 struct plt_entry
*ent
;
3905 for (ent
= h
->plt
.plist
; ent
!= NULL
; ent
= ent
->next
)
3906 if (ent
->plt
.refcount
> 0)
3909 || SYMBOL_CALLS_LOCAL (info
, h
)
3910 || (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
3911 && h
->root
.type
== bfd_link_hash_undefweak
))
3913 /* A PLT entry is not required/allowed when:
3915 1. We are not using ld.so; because then the PLT entry
3916 can't be set up, so we can't use one. In this case,
3917 ppc_elf_adjust_dynamic_symbol won't even be called.
3919 2. GC has rendered the entry unused.
3921 3. We know for certain that a call to this symbol
3922 will go to this object, or will remain undefined. */
3923 h
->plt
.plist
= NULL
;
3929 h
->plt
.plist
= NULL
;
3931 /* If this is a weak symbol, and there is a real definition, the
3932 processor independent code will have arranged for us to see the
3933 real definition first, and we can just use the same value. */
3934 if (h
->u
.weakdef
!= NULL
)
3936 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
3937 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
3938 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
3939 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
3940 if (ELIMINATE_COPY_RELOCS
)
3941 h
->non_got_ref
= h
->u
.weakdef
->non_got_ref
;
3945 /* This is a reference to a symbol defined by a dynamic object which
3946 is not a function. */
3948 /* If we are creating a shared library, we must presume that the
3949 only references to the symbol are via the global offset table.
3950 For such cases we need not do anything here; the relocations will
3951 be handled correctly by relocate_section. */
3955 /* If there are no references to this symbol that do not use the
3956 GOT, we don't need to generate a copy reloc. */
3957 if (!h
->non_got_ref
)
3960 /* If we didn't find any dynamic relocs in read-only sections, then we'll
3961 be keeping the dynamic relocs and avoiding the copy reloc. We can't
3962 do this if there are any small data relocations. */
3963 if (ELIMINATE_COPY_RELOCS
3964 && !ppc_elf_hash_entry (h
)->has_sda_refs
)
3966 struct ppc_elf_dyn_relocs
*p
;
3967 for (p
= ppc_elf_hash_entry (h
)->dyn_relocs
; p
!= NULL
; p
= p
->next
)
3969 s
= p
->sec
->output_section
;
3970 if (s
!= NULL
&& (s
->flags
& SEC_READONLY
) != 0)
3981 /* We must allocate the symbol in our .dynbss section, which will
3982 become part of the .bss section of the executable. There will be
3983 an entry for this symbol in the .dynsym section. The dynamic
3984 object will contain position independent code, so all references
3985 from the dynamic object to this symbol will go through the global
3986 offset table. The dynamic linker will use the .dynsym entry to
3987 determine the address it must put in the global offset table, so
3988 both the dynamic object and the regular object will refer to the
3989 same memory location for the variable.
3991 Of course, if the symbol is referenced using SDAREL relocs, we
3992 must instead allocate it in .sbss. */
3994 if (ppc_elf_hash_entry (h
)->has_sda_refs
)
3998 BFD_ASSERT (s
!= NULL
);
4000 /* We must generate a R_PPC_COPY reloc to tell the dynamic linker to
4001 copy the initial value out of the dynamic object and into the
4002 runtime process image. We need to remember the offset into the
4003 .rela.bss section we are going to use. */
4004 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
4008 if (ppc_elf_hash_entry (h
)->has_sda_refs
)
4009 srel
= htab
->relsbss
;
4011 srel
= htab
->relbss
;
4012 BFD_ASSERT (srel
!= NULL
);
4013 srel
->size
+= sizeof (Elf32_External_Rela
);
4017 /* We need to figure out the alignment required for this symbol. I
4018 have no idea how ELF linkers handle this. */
4019 power_of_two
= bfd_log2 (h
->size
);
4020 if (power_of_two
> 4)
4023 /* Apply the required alignment. */
4024 s
->size
= BFD_ALIGN (s
->size
, (bfd_size_type
) (1 << power_of_two
));
4025 if (power_of_two
> bfd_get_section_alignment (htab
->elf
.dynobj
, s
))
4027 if (! bfd_set_section_alignment (htab
->elf
.dynobj
, s
, power_of_two
))
4031 /* Define the symbol as being at this point in the section. */
4032 h
->root
.u
.def
.section
= s
;
4033 h
->root
.u
.def
.value
= s
->size
;
4035 /* Increment the section size to make room for the symbol. */
4041 /* Allocate NEED contiguous space in .got, and return the offset.
4042 Handles allocation of the got header when crossing 32k. */
4045 allocate_got (struct ppc_elf_link_hash_table
*htab
, unsigned int need
)
4048 unsigned int max_before_header
= 32768;
4051 max_before_header
= 32764;
4053 if (need
<= htab
->got_gap
)
4055 where
= max_before_header
- htab
->got_gap
;
4056 htab
->got_gap
-= need
;
4060 if (htab
->got
->size
+ need
> max_before_header
4061 && htab
->got
->size
<= max_before_header
)
4063 htab
->got_gap
= max_before_header
- htab
->got
->size
;
4064 htab
->got
->size
= max_before_header
+ htab
->got_header_size
;
4066 where
= htab
->got
->size
;
4067 htab
->got
->size
+= need
;
4072 /* Allocate space in associated reloc sections for dynamic relocs. */
4075 allocate_dynrelocs (struct elf_link_hash_entry
*h
, void *inf
)
4077 struct bfd_link_info
*info
= inf
;
4078 struct ppc_elf_link_hash_entry
*eh
;
4079 struct ppc_elf_link_hash_table
*htab
;
4080 struct ppc_elf_dyn_relocs
*p
;
4082 if (h
->root
.type
== bfd_link_hash_indirect
)
4085 if (h
->root
.type
== bfd_link_hash_warning
)
4086 /* When warning symbols are created, they **replace** the "real"
4087 entry in the hash table, thus we never get to see the real
4088 symbol in a hash traversal. So look at it now. */
4089 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
4091 htab
= ppc_elf_hash_table (info
);
4092 if (htab
->elf
.dynamic_sections_created
)
4094 struct plt_entry
*ent
;
4095 bfd_boolean doneone
= FALSE
;
4096 bfd_vma plt_offset
= 0, glink_offset
= 0;
4098 for (ent
= h
->plt
.plist
; ent
!= NULL
; ent
= ent
->next
)
4099 if (ent
->plt
.refcount
> 0)
4101 /* Make sure this symbol is output as a dynamic symbol. */
4102 if (h
->dynindx
== -1
4103 && !h
->forced_local
)
4105 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
4110 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h
))
4112 asection
*s
= htab
->plt
;
4118 plt_offset
= s
->size
;
4121 ent
->plt
.offset
= plt_offset
;
4124 if (!doneone
|| info
->shared
|| info
->pie
)
4126 glink_offset
= s
->size
;
4127 s
->size
+= GLINK_ENTRY_SIZE
;
4133 h
->root
.u
.def
.section
= s
;
4134 h
->root
.u
.def
.value
= glink_offset
;
4136 ent
->glink_offset
= glink_offset
;
4142 /* If this is the first .plt entry, make room
4143 for the special first entry. */
4145 s
->size
+= PLT_INITIAL_ENTRY_SIZE
;
4147 /* The PowerPC PLT is actually composed of two
4148 parts, the first part is 2 words (for a load
4149 and a jump), and then there is a remaining
4150 word available at the end. */
4151 plt_offset
= (PLT_INITIAL_ENTRY_SIZE
4153 * ((s
->size
- PLT_INITIAL_ENTRY_SIZE
)
4154 / PLT_ENTRY_SIZE
)));
4156 /* If this symbol is not defined in a regular
4157 file, and we are not generating a shared
4158 library, then set the symbol to this location
4159 in the .plt. This is required to make
4160 function pointers compare as equal between
4161 the normal executable and the shared library. */
4165 h
->root
.u
.def
.section
= s
;
4166 h
->root
.u
.def
.value
= plt_offset
;
4169 /* Make room for this entry. After the 8192nd
4170 entry, room for two entries is allocated. */
4171 s
->size
+= PLT_ENTRY_SIZE
;
4172 if ((s
->size
- PLT_INITIAL_ENTRY_SIZE
) / PLT_ENTRY_SIZE
4173 > PLT_NUM_SINGLE_ENTRIES
)
4174 s
->size
+= PLT_ENTRY_SIZE
;
4176 ent
->plt
.offset
= plt_offset
;
4179 /* We also need to make an entry in the .rela.plt section. */
4182 htab
->relplt
->size
+= sizeof (Elf32_External_Rela
);
4187 ent
->plt
.offset
= (bfd_vma
) -1;
4191 h
->plt
.plist
= NULL
;
4198 h
->plt
.plist
= NULL
;
4202 eh
= (struct ppc_elf_link_hash_entry
*) h
;
4203 if (eh
->elf
.got
.refcount
> 0)
4205 /* Make sure this symbol is output as a dynamic symbol. */
4206 if (eh
->elf
.dynindx
== -1
4207 && !eh
->elf
.forced_local
)
4209 if (!bfd_elf_link_record_dynamic_symbol (info
, &eh
->elf
))
4213 if (eh
->tls_mask
== (TLS_TLS
| TLS_LD
)
4214 && !eh
->elf
.def_dynamic
)
4215 /* If just an LD reloc, we'll just use htab->tlsld_got.offset. */
4216 eh
->elf
.got
.offset
= (bfd_vma
) -1;
4220 unsigned int need
= 0;
4221 if ((eh
->tls_mask
& TLS_TLS
) != 0)
4223 if ((eh
->tls_mask
& TLS_LD
) != 0)
4225 if ((eh
->tls_mask
& TLS_GD
) != 0)
4227 if ((eh
->tls_mask
& (TLS_TPREL
| TLS_TPRELGD
)) != 0)
4229 if ((eh
->tls_mask
& TLS_DTPREL
) != 0)
4234 eh
->elf
.got
.offset
= allocate_got (htab
, need
);
4235 dyn
= htab
->elf
.dynamic_sections_created
;
4237 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, 0, &eh
->elf
))
4238 && (ELF_ST_VISIBILITY (eh
->elf
.other
) == STV_DEFAULT
4239 || eh
->elf
.root
.type
!= bfd_link_hash_undefweak
))
4241 /* All the entries we allocated need relocs.
4242 Except LD only needs one. */
4243 if ((eh
->tls_mask
& TLS_LD
) != 0)
4245 htab
->relgot
->size
+= need
* (sizeof (Elf32_External_Rela
) / 4);
4250 eh
->elf
.got
.offset
= (bfd_vma
) -1;
4252 if (eh
->dyn_relocs
== NULL
)
4255 /* In the shared -Bsymbolic case, discard space allocated for
4256 dynamic pc-relative relocs against symbols which turn out to be
4257 defined in regular objects. For the normal shared case, discard
4258 space for relocs that have become local due to symbol visibility
4263 /* Relocs that use pc_count are those that appear on a call insn,
4264 or certain REL relocs (see MUST_BE_DYN_RELOC) that can be
4265 generated via assembly. We want calls to protected symbols to
4266 resolve directly to the function rather than going via the plt.
4267 If people want function pointer comparisons to work as expected
4268 then they should avoid writing weird assembly. */
4269 if (SYMBOL_CALLS_LOCAL (info
, h
))
4271 struct ppc_elf_dyn_relocs
**pp
;
4273 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; )
4275 p
->count
-= p
->pc_count
;
4284 /* Also discard relocs on undefined weak syms with non-default
4286 if (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
4287 && h
->root
.type
== bfd_link_hash_undefweak
)
4288 eh
->dyn_relocs
= NULL
;
4290 /* Make sure undefined weak symbols are output as a dynamic symbol
4293 && eh
->dyn_relocs
!= NULL
4295 && h
->root
.type
== bfd_link_hash_undefweak
4296 && !h
->forced_local
)
4298 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
4302 else if (ELIMINATE_COPY_RELOCS
)
4304 /* For the non-shared case, discard space for relocs against
4305 symbols which turn out to need copy relocs or are not
4312 /* Make sure this symbol is output as a dynamic symbol.
4313 Undefined weak syms won't yet be marked as dynamic. */
4314 if (h
->dynindx
== -1
4315 && !h
->forced_local
)
4317 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
4321 /* If that succeeded, we know we'll be keeping all the
4323 if (h
->dynindx
!= -1)
4327 eh
->dyn_relocs
= NULL
;
4332 /* Finally, allocate space. */
4333 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
4335 asection
*sreloc
= elf_section_data (p
->sec
)->sreloc
;
4336 sreloc
->size
+= p
->count
* sizeof (Elf32_External_Rela
);
4342 /* Find any dynamic relocs that apply to read-only sections. */
4345 readonly_dynrelocs (struct elf_link_hash_entry
*h
, void *info
)
4347 struct ppc_elf_dyn_relocs
*p
;
4349 if (h
->root
.type
== bfd_link_hash_indirect
)
4352 if (h
->root
.type
== bfd_link_hash_warning
)
4353 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
4355 for (p
= ppc_elf_hash_entry (h
)->dyn_relocs
; p
!= NULL
; p
= p
->next
)
4357 asection
*s
= p
->sec
->output_section
;
4360 && ((s
->flags
& (SEC_READONLY
| SEC_ALLOC
))
4361 == (SEC_READONLY
| SEC_ALLOC
)))
4363 ((struct bfd_link_info
*) info
)->flags
|= DF_TEXTREL
;
4365 /* Not an error, just cut short the traversal. */
4372 /* Set the sizes of the dynamic sections. */
4375 ppc_elf_size_dynamic_sections (bfd
*output_bfd ATTRIBUTE_UNUSED
,
4376 struct bfd_link_info
*info
)
4378 struct ppc_elf_link_hash_table
*htab
;
4384 fprintf (stderr
, "ppc_elf_size_dynamic_sections called\n");
4387 htab
= ppc_elf_hash_table (info
);
4388 BFD_ASSERT (htab
->elf
.dynobj
!= NULL
);
4390 if (elf_hash_table (info
)->dynamic_sections_created
)
4392 /* Set the contents of the .interp section to the interpreter. */
4393 if (info
->executable
)
4395 s
= bfd_get_section_by_name (htab
->elf
.dynobj
, ".interp");
4396 BFD_ASSERT (s
!= NULL
);
4397 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
4398 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
4403 htab
->got_header_size
= 16;
4405 htab
->got_header_size
= 12;
4407 /* Set up .got offsets for local syms, and space for local dynamic
4409 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link_next
)
4411 bfd_signed_vma
*local_got
;
4412 bfd_signed_vma
*end_local_got
;
4414 bfd_size_type locsymcount
;
4415 Elf_Internal_Shdr
*symtab_hdr
;
4417 if (!is_ppc_elf_target (ibfd
->xvec
))
4420 for (s
= ibfd
->sections
; s
!= NULL
; s
= s
->next
)
4422 struct ppc_elf_dyn_relocs
*p
;
4424 for (p
= ((struct ppc_elf_dyn_relocs
*)
4425 elf_section_data (s
)->local_dynrel
);
4429 if (!bfd_is_abs_section (p
->sec
)
4430 && bfd_is_abs_section (p
->sec
->output_section
))
4432 /* Input section has been discarded, either because
4433 it is a copy of a linkonce section or due to
4434 linker script /DISCARD/, so we'll be discarding
4437 else if (p
->count
!= 0)
4439 elf_section_data (p
->sec
)->sreloc
->size
4440 += p
->count
* sizeof (Elf32_External_Rela
);
4441 if ((p
->sec
->output_section
->flags
4442 & (SEC_READONLY
| SEC_ALLOC
))
4443 == (SEC_READONLY
| SEC_ALLOC
))
4444 info
->flags
|= DF_TEXTREL
;
4449 local_got
= elf_local_got_refcounts (ibfd
);
4453 symtab_hdr
= &elf_tdata (ibfd
)->symtab_hdr
;
4454 locsymcount
= symtab_hdr
->sh_info
;
4455 end_local_got
= local_got
+ locsymcount
;
4456 lgot_masks
= (char *) end_local_got
;
4457 for (; local_got
< end_local_got
; ++local_got
, ++lgot_masks
)
4460 if (*lgot_masks
== (TLS_TLS
| TLS_LD
))
4462 /* If just an LD reloc, we'll just use
4463 htab->tlsld_got.offset. */
4464 htab
->tlsld_got
.refcount
+= 1;
4465 *local_got
= (bfd_vma
) -1;
4469 unsigned int need
= 0;
4470 if ((*lgot_masks
& TLS_TLS
) != 0)
4472 if ((*lgot_masks
& TLS_GD
) != 0)
4474 if ((*lgot_masks
& (TLS_TPREL
| TLS_TPRELGD
)) != 0)
4476 if ((*lgot_masks
& TLS_DTPREL
) != 0)
4481 *local_got
= allocate_got (htab
, need
);
4483 htab
->relgot
->size
+= (need
4484 * (sizeof (Elf32_External_Rela
) / 4));
4488 *local_got
= (bfd_vma
) -1;
4491 if (htab
->tlsld_got
.refcount
> 0)
4493 htab
->tlsld_got
.offset
= allocate_got (htab
, 8);
4495 htab
->relgot
->size
+= sizeof (Elf32_External_Rela
);
4498 htab
->tlsld_got
.offset
= (bfd_vma
) -1;
4500 /* Allocate space for global sym dynamic relocs. */
4501 elf_link_hash_traverse (elf_hash_table (info
), allocate_dynrelocs
, info
);
4503 if (htab
->got
!= NULL
)
4505 unsigned int g_o_t
= 32768;
4507 /* If we haven't allocated the header, do so now. */
4508 if (htab
->got
->size
<= 32768)
4510 g_o_t
= htab
->got
->size
;
4511 htab
->got
->size
+= htab
->got_header_size
;
4516 htab
->elf
.hgot
->root
.u
.def
.value
= g_o_t
;
4519 if (htab
->glink
!= NULL
&& htab
->glink
->size
!= 0)
4521 htab
->glink_pltresolve
= htab
->glink
->size
;
4522 /* Space for the branch table. */
4523 htab
->glink
->size
+= htab
->glink
->size
/ (GLINK_ENTRY_SIZE
/ 4) - 4;
4524 /* Pad out to align the start of PLTresolve. */
4525 htab
->glink
->size
+= -htab
->glink
->size
& 15;
4526 htab
->glink
->size
+= GLINK_PLTRESOLVE
;
4529 /* We've now determined the sizes of the various dynamic sections.
4530 Allocate memory for them. */
4532 for (s
= htab
->elf
.dynobj
->sections
; s
!= NULL
; s
= s
->next
)
4534 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
4542 /* Strip this section if we don't need it; see the
4545 else if (s
== htab
->sdata
[0].section
4546 || s
== htab
->sdata
[1].section
)
4548 /* Strip these too. */
4550 else if (strncmp (bfd_get_section_name (dynobj
, s
), ".rela", 5) == 0)
4554 /* If we don't need this section, strip it from the
4555 output file. This is mostly to handle .rela.bss and
4556 .rela.plt. We must create both sections in
4557 create_dynamic_sections, because they must be created
4558 before the linker maps input sections to output
4559 sections. The linker does that before
4560 adjust_dynamic_symbol is called, and it is that
4561 function which decides whether anything needs to go
4562 into these sections. */
4566 /* Remember whether there are any relocation sections. */
4569 /* We use the reloc_count field as a counter if we need
4570 to copy relocs into the output file. */
4576 /* It's not one of our sections, so don't allocate space. */
4582 s
->flags
|= SEC_EXCLUDE
;
4586 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
4589 /* Allocate memory for the section contents. */
4590 s
->contents
= bfd_zalloc (htab
->elf
.dynobj
, s
->size
);
4591 if (s
->contents
== NULL
)
4595 if (htab
->elf
.dynamic_sections_created
)
4597 /* Add some entries to the .dynamic section. We fill in the
4598 values later, in ppc_elf_finish_dynamic_sections, but we
4599 must add the entries now so that we get the correct size for
4600 the .dynamic section. The DT_DEBUG entry is filled in by the
4601 dynamic linker and used by the debugger. */
4602 #define add_dynamic_entry(TAG, VAL) \
4603 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
4605 if (info
->executable
)
4607 if (!add_dynamic_entry (DT_DEBUG
, 0))
4611 if (htab
->plt
!= NULL
&& htab
->plt
->size
!= 0)
4613 if (!add_dynamic_entry (DT_PLTGOT
, 0)
4614 || !add_dynamic_entry (DT_PLTRELSZ
, 0)
4615 || !add_dynamic_entry (DT_PLTREL
, DT_RELA
)
4616 || !add_dynamic_entry (DT_JMPREL
, 0))
4620 if (htab
->glink
!= NULL
&& htab
->glink
->size
!= 0)
4622 if (!add_dynamic_entry (DT_PPC_GOT
, 0))
4628 if (!add_dynamic_entry (DT_RELA
, 0)
4629 || !add_dynamic_entry (DT_RELASZ
, 0)
4630 || !add_dynamic_entry (DT_RELAENT
, sizeof (Elf32_External_Rela
)))
4634 /* If any dynamic relocs apply to a read-only section, then we
4635 need a DT_TEXTREL entry. */
4636 if ((info
->flags
& DF_TEXTREL
) == 0)
4637 elf_link_hash_traverse (elf_hash_table (info
), readonly_dynrelocs
,
4640 if ((info
->flags
& DF_TEXTREL
) != 0)
4642 if (!add_dynamic_entry (DT_TEXTREL
, 0))
4646 #undef add_dynamic_entry
4651 #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
4653 static const int shared_stub_entry
[] =
4655 0x7c0802a6, /* mflr 0 */
4656 0x429f0005, /* bcl 20, 31, .Lxxx */
4657 0x7d6802a6, /* mflr 11 */
4658 0x3d6b0000, /* addis 11, 11, (xxx-.Lxxx)@ha */
4659 0x396b0018, /* addi 11, 11, (xxx-.Lxxx)@l */
4660 0x7c0803a6, /* mtlr 0 */
4661 0x7d6903a6, /* mtctr 11 */
4662 0x4e800420, /* bctr */
4665 static const int stub_entry
[] =
4667 0x3d600000, /* lis 11,xxx@ha */
4668 0x396b0000, /* addi 11,11,xxx@l */
4669 0x7d6903a6, /* mtctr 11 */
4670 0x4e800420, /* bctr */
4674 ppc_elf_relax_section (bfd
*abfd
,
4676 struct bfd_link_info
*link_info
,
4681 struct one_fixup
*next
;
4687 Elf_Internal_Shdr
*symtab_hdr
;
4688 bfd_byte
*contents
= NULL
;
4689 Elf_Internal_Sym
*isymbuf
= NULL
;
4690 Elf_Internal_Rela
*internal_relocs
= NULL
;
4691 Elf_Internal_Rela
*irel
, *irelend
;
4692 struct one_fixup
*fixups
= NULL
;
4693 bfd_boolean changed
;
4694 struct ppc_elf_link_hash_table
*htab
;
4695 bfd_size_type trampoff
;
4700 /* Nothing to do if there are no relocations, and no need to do
4701 anything with non-alloc sections. */
4702 if ((isec
->flags
& SEC_ALLOC
) == 0
4703 || (isec
->flags
& SEC_RELOC
) == 0
4704 || isec
->reloc_count
== 0)
4707 trampoff
= (isec
->size
+ 3) & (bfd_vma
) -4;
4708 /* Space for a branch around any trampolines. */
4711 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
4713 /* Get a copy of the native relocations. */
4714 internal_relocs
= _bfd_elf_link_read_relocs (abfd
, isec
, NULL
, NULL
,
4715 link_info
->keep_memory
);
4716 if (internal_relocs
== NULL
)
4719 htab
= ppc_elf_hash_table (link_info
);
4720 got2
= bfd_get_section_by_name (abfd
, ".got2");
4722 irelend
= internal_relocs
+ isec
->reloc_count
;
4723 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
4725 unsigned long r_type
= ELF32_R_TYPE (irel
->r_info
);
4726 bfd_vma symaddr
, reladdr
, toff
, roff
;
4728 struct one_fixup
*f
;
4729 size_t insn_offset
= 0;
4730 bfd_vma max_branch_offset
, val
;
4733 unsigned char sym_type
;
4738 case R_PPC_LOCAL24PC
:
4739 case R_PPC_PLTREL24
:
4740 max_branch_offset
= 1 << 25;
4744 case R_PPC_REL14_BRTAKEN
:
4745 case R_PPC_REL14_BRNTAKEN
:
4746 max_branch_offset
= 1 << 15;
4753 /* Get the value of the symbol referred to by the reloc. */
4754 if (ELF32_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
4756 /* A local symbol. */
4757 Elf_Internal_Sym
*isym
;
4759 /* Read this BFD's local symbols. */
4760 if (isymbuf
== NULL
)
4762 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
4763 if (isymbuf
== NULL
)
4764 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
4765 symtab_hdr
->sh_info
, 0,
4770 isym
= isymbuf
+ ELF32_R_SYM (irel
->r_info
);
4771 if (isym
->st_shndx
== SHN_UNDEF
)
4772 continue; /* We can't do anything with undefined symbols. */
4773 else if (isym
->st_shndx
== SHN_ABS
)
4774 tsec
= bfd_abs_section_ptr
;
4775 else if (isym
->st_shndx
== SHN_COMMON
)
4776 tsec
= bfd_com_section_ptr
;
4778 tsec
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
4780 toff
= isym
->st_value
;
4781 sym_type
= ELF_ST_TYPE (isym
->st_info
);
4785 /* Global symbol handling. */
4787 struct elf_link_hash_entry
*h
;
4789 indx
= ELF32_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
4790 h
= elf_sym_hashes (abfd
)[indx
];
4792 while (h
->root
.type
== bfd_link_hash_indirect
4793 || h
->root
.type
== bfd_link_hash_warning
)
4794 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
4798 if (r_type
== R_PPC_PLTREL24
4799 && htab
->plt
!= NULL
)
4801 struct plt_entry
*ent
= find_plt_ent (h
, got2
, irel
->r_addend
);
4808 toff
= ent
->glink_offset
;
4813 toff
= ent
->plt
.offset
;
4819 else if (h
->root
.type
== bfd_link_hash_defined
4820 || h
->root
.type
== bfd_link_hash_defweak
)
4822 tsec
= h
->root
.u
.def
.section
;
4823 toff
= h
->root
.u
.def
.value
;
4831 /* If the branch and target are in the same section, you have
4832 no hope of adding stubs. We'll error out later should the
4837 /* There probably isn't any reason to handle symbols in
4838 SEC_MERGE sections; SEC_MERGE doesn't seem a likely
4839 attribute for a code section, and we are only looking at
4840 branches. However, implement it correctly here as a
4841 reference for other target relax_section functions. */
4842 if (0 && tsec
->sec_info_type
== ELF_INFO_TYPE_MERGE
)
4844 /* At this stage in linking, no SEC_MERGE symbol has been
4845 adjusted, so all references to such symbols need to be
4846 passed through _bfd_merged_section_offset. (Later, in
4847 relocate_section, all SEC_MERGE symbols *except* for
4848 section symbols have been adjusted.)
4850 gas may reduce relocations against symbols in SEC_MERGE
4851 sections to a relocation against the section symbol when
4852 the original addend was zero. When the reloc is against
4853 a section symbol we should include the addend in the
4854 offset passed to _bfd_merged_section_offset, since the
4855 location of interest is the original symbol. On the
4856 other hand, an access to "sym+addend" where "sym" is not
4857 a section symbol should not include the addend; Such an
4858 access is presumed to be an offset from "sym"; The
4859 location of interest is just "sym". */
4860 if (sym_type
== STT_SECTION
)
4861 toff
+= irel
->r_addend
;
4863 toff
= _bfd_merged_section_offset (abfd
, &tsec
,
4864 elf_section_data (tsec
)->sec_info
,
4867 if (sym_type
!= STT_SECTION
)
4868 toff
+= irel
->r_addend
;
4870 /* PLTREL24 addends are special. */
4871 else if (r_type
!= R_PPC_PLTREL24
)
4872 toff
+= irel
->r_addend
;
4874 symaddr
= tsec
->output_section
->vma
+ tsec
->output_offset
+ toff
;
4876 roff
= irel
->r_offset
;
4877 reladdr
= isec
->output_section
->vma
+ isec
->output_offset
+ roff
;
4879 /* If the branch is in range, no need to do anything. */
4880 if (symaddr
- reladdr
+ max_branch_offset
< 2 * max_branch_offset
)
4883 /* Look for an existing fixup to this address. */
4884 for (f
= fixups
; f
; f
= f
->next
)
4885 if (f
->tsec
== tsec
&& f
->toff
== toff
)
4891 unsigned long stub_rtype
;
4893 val
= trampoff
- roff
;
4894 if (val
>= max_branch_offset
)
4895 /* Oh dear, we can't reach a trampoline. Don't try to add
4896 one. We'll report an error later. */
4899 if (link_info
->shared
)
4901 size
= 4 * ARRAY_SIZE (shared_stub_entry
);
4903 stub_rtype
= R_PPC_RELAX32PC
;
4907 size
= 4 * ARRAY_SIZE (stub_entry
);
4909 stub_rtype
= R_PPC_RELAX32
;
4912 if (R_PPC_RELAX32_PLT
- R_PPC_RELAX32
4913 != R_PPC_RELAX32PC_PLT
- R_PPC_RELAX32PC
)
4915 if (tsec
== htab
->plt
4916 || tsec
== htab
->glink
)
4917 stub_rtype
+= R_PPC_RELAX32_PLT
- R_PPC_RELAX32
;
4919 /* Hijack the old relocation. Since we need two
4920 relocations for this use a "composite" reloc. */
4921 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
4923 irel
->r_offset
= trampoff
+ insn_offset
;
4925 /* Record the fixup so we don't do it again this section. */
4926 f
= bfd_malloc (sizeof (*f
));
4930 f
->trampoff
= trampoff
;
4937 val
= f
->trampoff
- roff
;
4938 if (val
>= max_branch_offset
)
4941 /* Nop out the reloc, since we're finalizing things here. */
4942 irel
->r_info
= ELF32_R_INFO (0, R_PPC_NONE
);
4945 /* Get the section contents. */
4946 if (contents
== NULL
)
4948 /* Get cached copy if it exists. */
4949 if (elf_section_data (isec
)->this_hdr
.contents
!= NULL
)
4950 contents
= elf_section_data (isec
)->this_hdr
.contents
;
4953 /* Go get them off disk. */
4954 if (!bfd_malloc_and_get_section (abfd
, isec
, &contents
))
4959 /* Fix up the existing branch to hit the trampoline. */
4960 hit_addr
= contents
+ roff
;
4964 case R_PPC_LOCAL24PC
:
4965 case R_PPC_PLTREL24
:
4966 t0
= bfd_get_32 (abfd
, hit_addr
);
4968 t0
|= val
& 0x3fffffc;
4969 bfd_put_32 (abfd
, t0
, hit_addr
);
4973 case R_PPC_REL14_BRTAKEN
:
4974 case R_PPC_REL14_BRNTAKEN
:
4975 t0
= bfd_get_32 (abfd
, hit_addr
);
4978 bfd_put_32 (abfd
, t0
, hit_addr
);
4983 /* Write out the trampolines. */
4984 changed
= fixups
!= NULL
;
4994 struct one_fixup
*f
= fixups
;
4995 fixups
= fixups
->next
;
5000 contents
= bfd_realloc (contents
, trampoff
);
5001 if (contents
== NULL
)
5004 isec
->size
= (isec
->size
+ 3) & (bfd_vma
) -4;
5005 /* Branch around the trampolines. */
5006 val
= trampoff
- isec
->size
+ 0x48000000;
5007 dest
= contents
+ isec
->size
;
5008 isec
->size
= trampoff
;
5009 bfd_put_32 (abfd
, val
, dest
);
5012 if (link_info
->shared
)
5014 stub
= shared_stub_entry
;
5015 size
= ARRAY_SIZE (shared_stub_entry
);
5020 size
= ARRAY_SIZE (stub_entry
);
5024 while (dest
< contents
+ trampoff
)
5026 bfd_put_32 (abfd
, stub
[i
], dest
);
5032 BFD_ASSERT (i
== 0);
5036 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
5038 if (! link_info
->keep_memory
)
5042 /* Cache the symbols for elf_link_input_bfd. */
5043 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
5047 if (contents
!= NULL
5048 && elf_section_data (isec
)->this_hdr
.contents
!= contents
)
5050 if (!changed
&& !link_info
->keep_memory
)
5054 /* Cache the section contents for elf_link_input_bfd. */
5055 elf_section_data (isec
)->this_hdr
.contents
= contents
;
5059 if (elf_section_data (isec
)->relocs
!= internal_relocs
)
5062 free (internal_relocs
);
5064 elf_section_data (isec
)->relocs
= internal_relocs
;
5071 if (isymbuf
!= NULL
&& (unsigned char *) isymbuf
!= symtab_hdr
->contents
)
5073 if (contents
!= NULL
5074 && elf_section_data (isec
)->this_hdr
.contents
!= contents
)
5076 if (internal_relocs
!= NULL
5077 && elf_section_data (isec
)->relocs
!= internal_relocs
)
5078 free (internal_relocs
);
5082 /* Set _SDA_BASE_, _SDA2_BASE, and sbss start and end syms. They are
5083 set here rather than via PROVIDE in the default linker script,
5084 because using PROVIDE inside an output section statement results in
5085 unnecessary output sections. Using PROVIDE outside an output section
5086 statement runs the risk of section alignment affecting where the
5090 ppc_elf_set_sdata_syms (bfd
*obfd
, struct bfd_link_info
*info
)
5092 struct ppc_elf_link_hash_table
*htab
;
5097 htab
= ppc_elf_hash_table (info
);
5099 for (i
= 0; i
< 2; i
++)
5101 elf_linker_section_t
*lsect
= &htab
->sdata
[i
];
5105 s
= s
->output_section
;
5107 s
= bfd_get_section_by_name (obfd
, lsect
->name
);
5109 s
= bfd_get_section_by_name (obfd
, lsect
->bss_name
);
5113 val
= s
->vma
+ 32768;
5114 lsect
->sym_val
= val
;
5116 _bfd_elf_provide_symbol (info
, lsect
->sym_name
, val
);
5119 s
= bfd_get_section_by_name (obfd
, ".sbss");
5123 _bfd_elf_provide_symbol (info
, "__sbss_start", val
);
5124 _bfd_elf_provide_symbol (info
, "___sbss_start", val
);
5127 _bfd_elf_provide_symbol (info
, "__sbss_end", val
);
5128 _bfd_elf_provide_symbol (info
, "___sbss_end", val
);
5132 /* Fill in the address for a pointer generated in a linker section. */
5135 elf_finish_pointer_linker_section (bfd
*input_bfd
,
5136 elf_linker_section_t
*lsect
,
5137 struct elf_link_hash_entry
*h
,
5139 const Elf_Internal_Rela
*rel
)
5141 elf_linker_section_pointers_t
*linker_section_ptr
;
5143 BFD_ASSERT (lsect
!= NULL
);
5147 /* Handle global symbol. */
5148 struct ppc_elf_link_hash_entry
*eh
;
5150 eh
= (struct ppc_elf_link_hash_entry
*) h
;
5151 BFD_ASSERT (eh
->elf
.def_regular
);
5152 linker_section_ptr
= eh
->linker_section_pointer
;
5156 /* Handle local symbol. */
5157 unsigned long r_symndx
= ELF32_R_SYM (rel
->r_info
);
5159 BFD_ASSERT (elf_local_ptr_offsets (input_bfd
) != NULL
);
5160 linker_section_ptr
= elf_local_ptr_offsets (input_bfd
)[r_symndx
];
5163 linker_section_ptr
= elf_find_pointer_linker_section (linker_section_ptr
,
5166 BFD_ASSERT (linker_section_ptr
!= NULL
);
5168 /* Offset will always be a multiple of four, so use the bottom bit
5169 as a "written" flag. */
5170 if ((linker_section_ptr
->offset
& 1) == 0)
5172 bfd_put_32 (lsect
->section
->owner
,
5173 relocation
+ linker_section_ptr
->addend
,
5174 lsect
->section
->contents
+ linker_section_ptr
->offset
);
5175 linker_section_ptr
->offset
+= 1;
5178 relocation
= (lsect
->section
->output_offset
5179 + linker_section_ptr
->offset
- 1
5184 "Finish pointer in linker section %s, offset = %ld (0x%lx)\n",
5185 lsect
->name
, (long) relocation
, (long) relocation
);
5188 /* Subtract out the addend, because it will get added back in by the normal
5190 return relocation
- linker_section_ptr
->addend
;
5193 /* The RELOCATE_SECTION function is called by the ELF backend linker
5194 to handle the relocations for a section.
5196 The relocs are always passed as Rela structures; if the section
5197 actually uses Rel structures, the r_addend field will always be
5200 This function is responsible for adjust the section contents as
5201 necessary, and (if using Rela relocs and generating a
5202 relocatable output file) adjusting the reloc addend as
5205 This function does not have to worry about setting the reloc
5206 address or the reloc symbol index.
5208 LOCAL_SYMS is a pointer to the swapped in local symbols.
5210 LOCAL_SECTIONS is an array giving the section in the input file
5211 corresponding to the st_shndx field of each local symbol.
5213 The global hash table entry for the global symbols can be found
5214 via elf_sym_hashes (input_bfd).
5216 When generating relocatable output, this function must handle
5217 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
5218 going to be the section symbol corresponding to the output
5219 section, which means that the addend must be adjusted
5223 ppc_elf_relocate_section (bfd
*output_bfd
,
5224 struct bfd_link_info
*info
,
5226 asection
*input_section
,
5228 Elf_Internal_Rela
*relocs
,
5229 Elf_Internal_Sym
*local_syms
,
5230 asection
**local_sections
)
5232 Elf_Internal_Shdr
*symtab_hdr
;
5233 struct elf_link_hash_entry
**sym_hashes
;
5234 struct ppc_elf_link_hash_table
*htab
;
5235 Elf_Internal_Rela
*rel
;
5236 Elf_Internal_Rela
*relend
;
5237 Elf_Internal_Rela outrel
;
5239 asection
*got2
, *sreloc
= NULL
;
5240 bfd_vma
*local_got_offsets
;
5241 bfd_boolean ret
= TRUE
;
5244 _bfd_error_handler ("ppc_elf_relocate_section called for %B section %A, "
5245 "%ld relocations%s",
5246 input_bfd
, input_section
,
5247 (long) input_section
->reloc_count
,
5248 (info
->relocatable
) ? " (relocatable)" : "");
5251 got2
= bfd_get_section_by_name (input_bfd
, ".got2");
5253 if (info
->relocatable
)
5259 relend
= relocs
+ input_section
->reloc_count
;
5260 for (; rel
< relend
; rel
++)
5262 enum elf_ppc_reloc_type r_type
;
5264 r_type
= ELF32_R_TYPE (rel
->r_info
);
5265 if (r_type
== R_PPC_PLTREL24
5266 && rel
->r_addend
>= 32768)
5268 /* R_PPC_PLTREL24 is rather special. If non-zero, the
5269 addend specifies the GOT pointer offset within .got2. */
5270 rel
->r_addend
+= got2
->output_offset
;
5276 /* Initialize howto table if not already done. */
5277 if (!ppc_elf_howto_table
[R_PPC_ADDR32
])
5278 ppc_elf_howto_init ();
5280 htab
= ppc_elf_hash_table (info
);
5281 local_got_offsets
= elf_local_got_offsets (input_bfd
);
5282 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
5283 sym_hashes
= elf_sym_hashes (input_bfd
);
5285 relend
= relocs
+ input_section
->reloc_count
;
5286 for (; rel
< relend
; rel
++)
5288 enum elf_ppc_reloc_type r_type
;
5290 bfd_reloc_status_type r
;
5291 Elf_Internal_Sym
*sym
;
5293 struct elf_link_hash_entry
*h
;
5294 const char *sym_name
;
5295 reloc_howto_type
*howto
;
5296 unsigned long r_symndx
;
5298 bfd_vma branch_bit
, insn
, from
;
5299 bfd_boolean unresolved_reloc
;
5301 unsigned int tls_type
, tls_mask
, tls_gd
;
5303 r_type
= ELF32_R_TYPE (rel
->r_info
);
5307 unresolved_reloc
= FALSE
;
5309 r_symndx
= ELF32_R_SYM (rel
->r_info
);
5311 if (r_symndx
< symtab_hdr
->sh_info
)
5313 sym
= local_syms
+ r_symndx
;
5314 sec
= local_sections
[r_symndx
];
5315 sym_name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
, sym
, sec
);
5317 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
5321 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
5322 r_symndx
, symtab_hdr
, sym_hashes
,
5324 unresolved_reloc
, warned
);
5326 sym_name
= h
->root
.root
.string
;
5329 /* TLS optimizations. Replace instruction sequences and relocs
5330 based on information we collected in tls_optimize. We edit
5331 RELOCS so that --emit-relocs will output something sensible
5332 for the final instruction stream. */
5335 if (IS_PPC_TLS_RELOC (r_type
))
5338 tls_mask
= ((struct ppc_elf_link_hash_entry
*) h
)->tls_mask
;
5339 else if (local_got_offsets
!= NULL
)
5342 lgot_masks
= (char *) (local_got_offsets
+ symtab_hdr
->sh_info
);
5343 tls_mask
= lgot_masks
[r_symndx
];
5347 /* Ensure reloc mapping code below stays sane. */
5348 if ((R_PPC_GOT_TLSLD16
& 3) != (R_PPC_GOT_TLSGD16
& 3)
5349 || (R_PPC_GOT_TLSLD16_LO
& 3) != (R_PPC_GOT_TLSGD16_LO
& 3)
5350 || (R_PPC_GOT_TLSLD16_HI
& 3) != (R_PPC_GOT_TLSGD16_HI
& 3)
5351 || (R_PPC_GOT_TLSLD16_HA
& 3) != (R_PPC_GOT_TLSGD16_HA
& 3)
5352 || (R_PPC_GOT_TLSLD16
& 3) != (R_PPC_GOT_TPREL16
& 3)
5353 || (R_PPC_GOT_TLSLD16_LO
& 3) != (R_PPC_GOT_TPREL16_LO
& 3)
5354 || (R_PPC_GOT_TLSLD16_HI
& 3) != (R_PPC_GOT_TPREL16_HI
& 3)
5355 || (R_PPC_GOT_TLSLD16_HA
& 3) != (R_PPC_GOT_TPREL16_HA
& 3))
5362 case R_PPC_GOT_TPREL16
:
5363 case R_PPC_GOT_TPREL16_LO
:
5365 && (tls_mask
& TLS_TPREL
) == 0)
5368 insn
= bfd_get_32 (output_bfd
, contents
+ rel
->r_offset
- 2);
5370 insn
|= 0x3c020000; /* addis 0,2,0 */
5371 bfd_put_32 (output_bfd
, insn
, contents
+ rel
->r_offset
- 2);
5372 r_type
= R_PPC_TPREL16_HA
;
5373 rel
->r_info
= ELF32_R_INFO (r_symndx
, r_type
);
5379 && (tls_mask
& TLS_TPREL
) == 0)
5382 insn
= bfd_get_32 (output_bfd
, contents
+ rel
->r_offset
);
5383 if ((insn
& ((31 << 26) | (31 << 11)))
5384 == ((31 << 26) | (2 << 11)))
5385 rtra
= insn
& ((1 << 26) - (1 << 16));
5386 else if ((insn
& ((31 << 26) | (31 << 16)))
5387 == ((31 << 26) | (2 << 16)))
5388 rtra
= (insn
& (31 << 21)) | ((insn
& (31 << 11)) << 5);
5391 if ((insn
& ((1 << 11) - (1 << 1))) == 266 << 1)
5394 else if ((insn
& (31 << 1)) == 23 << 1
5395 && ((insn
& (31 << 6)) < 14 << 6
5396 || ((insn
& (31 << 6)) >= 16 << 6
5397 && (insn
& (31 << 6)) < 24 << 6)))
5398 /* load and store indexed -> dform. */
5399 insn
= (32 | ((insn
>> 6) & 31)) << 26;
5400 else if ((insn
& (31 << 1)) == 21 << 1
5401 && (insn
& (0x1a << 6)) == 0)
5402 /* ldx, ldux, stdx, stdux -> ld, ldu, std, stdu. */
5403 insn
= (((58 | ((insn
>> 6) & 4)) << 26)
5404 | ((insn
>> 6) & 1));
5405 else if ((insn
& (31 << 1)) == 21 << 1
5406 && (insn
& ((1 << 11) - (1 << 1))) == 341 << 1)
5408 insn
= (58 << 26) | 2;
5412 bfd_put_32 (output_bfd
, insn
, contents
+ rel
->r_offset
);
5413 r_type
= R_PPC_TPREL16_LO
;
5414 rel
->r_info
= ELF32_R_INFO (r_symndx
, r_type
);
5415 /* Was PPC_TLS which sits on insn boundary, now
5416 PPC_TPREL16_LO which is at insn+2. */
5421 case R_PPC_GOT_TLSGD16_HI
:
5422 case R_PPC_GOT_TLSGD16_HA
:
5423 tls_gd
= TLS_TPRELGD
;
5424 if (tls_mask
!= 0 && (tls_mask
& TLS_GD
) == 0)
5428 case R_PPC_GOT_TLSLD16_HI
:
5429 case R_PPC_GOT_TLSLD16_HA
:
5430 if (tls_mask
!= 0 && (tls_mask
& TLS_LD
) == 0)
5433 if ((tls_mask
& tls_gd
) != 0)
5434 r_type
= (((r_type
- (R_PPC_GOT_TLSGD16
& 3)) & 3)
5435 + R_PPC_GOT_TPREL16
);
5438 bfd_put_32 (output_bfd
, NOP
, contents
+ rel
->r_offset
);
5440 r_type
= R_PPC_NONE
;
5442 rel
->r_info
= ELF32_R_INFO (r_symndx
, r_type
);
5446 case R_PPC_GOT_TLSGD16
:
5447 case R_PPC_GOT_TLSGD16_LO
:
5448 tls_gd
= TLS_TPRELGD
;
5449 if (tls_mask
!= 0 && (tls_mask
& TLS_GD
) == 0)
5450 goto tls_get_addr_check
;
5453 case R_PPC_GOT_TLSLD16
:
5454 case R_PPC_GOT_TLSLD16_LO
:
5455 if (tls_mask
!= 0 && (tls_mask
& TLS_LD
) == 0)
5458 if (rel
+ 1 < relend
)
5460 enum elf_ppc_reloc_type r_type2
;
5461 unsigned long r_symndx2
;
5462 struct elf_link_hash_entry
*h2
;
5463 bfd_vma insn1
, insn2
;
5466 /* The next instruction should be a call to
5467 __tls_get_addr. Peek at the reloc to be sure. */
5468 r_type2
= ELF32_R_TYPE (rel
[1].r_info
);
5469 r_symndx2
= ELF32_R_SYM (rel
[1].r_info
);
5470 if (r_symndx2
< symtab_hdr
->sh_info
5471 || (r_type2
!= R_PPC_REL14
5472 && r_type2
!= R_PPC_REL14_BRTAKEN
5473 && r_type2
!= R_PPC_REL14_BRNTAKEN
5474 && r_type2
!= R_PPC_REL24
5475 && r_type2
!= R_PPC_PLTREL24
))
5478 h2
= sym_hashes
[r_symndx2
- symtab_hdr
->sh_info
];
5479 while (h2
->root
.type
== bfd_link_hash_indirect
5480 || h2
->root
.type
== bfd_link_hash_warning
)
5481 h2
= (struct elf_link_hash_entry
*) h2
->root
.u
.i
.link
;
5482 if (h2
== NULL
|| h2
!= htab
->tls_get_addr
)
5485 /* OK, it checks out. Replace the call. */
5486 offset
= rel
[1].r_offset
;
5487 insn1
= bfd_get_32 (output_bfd
,
5488 contents
+ rel
->r_offset
- 2);
5489 if ((tls_mask
& tls_gd
) != 0)
5492 insn1
&= (1 << 26) - 1;
5493 insn1
|= 32 << 26; /* lwz */
5494 insn2
= 0x7c631214; /* add 3,3,2 */
5495 rel
[1].r_info
= ELF32_R_INFO (r_symndx2
, R_PPC_NONE
);
5496 r_type
= (((r_type
- (R_PPC_GOT_TLSGD16
& 3)) & 3)
5497 + R_PPC_GOT_TPREL16
);
5498 rel
->r_info
= ELF32_R_INFO (r_symndx
, r_type
);
5503 insn1
= 0x3c620000; /* addis 3,2,0 */
5504 insn2
= 0x38630000; /* addi 3,3,0 */
5507 /* Was an LD reloc. */
5509 rel
->r_addend
= htab
->elf
.tls_sec
->vma
+ DTP_OFFSET
;
5510 rel
[1].r_addend
= htab
->elf
.tls_sec
->vma
+ DTP_OFFSET
;
5512 r_type
= R_PPC_TPREL16_HA
;
5513 rel
->r_info
= ELF32_R_INFO (r_symndx
, r_type
);
5514 rel
[1].r_info
= ELF32_R_INFO (r_symndx
,
5516 rel
[1].r_offset
+= 2;
5518 bfd_put_32 (output_bfd
, insn1
, contents
+ rel
->r_offset
- 2);
5519 bfd_put_32 (output_bfd
, insn2
, contents
+ offset
);
5522 /* We changed the symbol on an LD reloc. Start over
5523 in order to get h, sym, sec etc. right. */
5532 /* Handle other relocations that tweak non-addend part of insn. */
5539 /* Branch taken prediction relocations. */
5540 case R_PPC_ADDR14_BRTAKEN
:
5541 case R_PPC_REL14_BRTAKEN
:
5542 branch_bit
= BRANCH_PREDICT_BIT
;
5545 /* Branch not taken prediction relocations. */
5546 case R_PPC_ADDR14_BRNTAKEN
:
5547 case R_PPC_REL14_BRNTAKEN
:
5548 insn
= bfd_get_32 (output_bfd
, contents
+ rel
->r_offset
);
5549 insn
&= ~BRANCH_PREDICT_BIT
;
5552 from
= (rel
->r_offset
5553 + input_section
->output_offset
5554 + input_section
->output_section
->vma
);
5556 /* Invert 'y' bit if not the default. */
5557 if ((bfd_signed_vma
) (relocation
+ rel
->r_addend
- from
) < 0)
5558 insn
^= BRANCH_PREDICT_BIT
;
5560 bfd_put_32 (output_bfd
, insn
, contents
+ rel
->r_offset
);
5564 addend
= rel
->r_addend
;
5567 if (r_type
< R_PPC_max
)
5568 howto
= ppc_elf_howto_table
[r_type
];
5572 (*_bfd_error_handler
)
5573 (_("%B: unknown relocation type %d for symbol %s"),
5574 input_bfd
, (int) r_type
, sym_name
);
5576 bfd_set_error (bfd_error_bad_value
);
5582 case R_PPC_EMB_MRKREF
:
5583 case R_PPC_GNU_VTINHERIT
:
5584 case R_PPC_GNU_VTENTRY
:
5587 /* GOT16 relocations. Like an ADDR16 using the symbol's
5588 address in the GOT as relocation value instead of the
5589 symbol's value itself. Also, create a GOT entry for the
5590 symbol and put the symbol value there. */
5591 case R_PPC_GOT_TLSGD16
:
5592 case R_PPC_GOT_TLSGD16_LO
:
5593 case R_PPC_GOT_TLSGD16_HI
:
5594 case R_PPC_GOT_TLSGD16_HA
:
5595 tls_type
= TLS_TLS
| TLS_GD
;
5598 case R_PPC_GOT_TLSLD16
:
5599 case R_PPC_GOT_TLSLD16_LO
:
5600 case R_PPC_GOT_TLSLD16_HI
:
5601 case R_PPC_GOT_TLSLD16_HA
:
5602 tls_type
= TLS_TLS
| TLS_LD
;
5605 case R_PPC_GOT_TPREL16
:
5606 case R_PPC_GOT_TPREL16_LO
:
5607 case R_PPC_GOT_TPREL16_HI
:
5608 case R_PPC_GOT_TPREL16_HA
:
5609 tls_type
= TLS_TLS
| TLS_TPREL
;
5612 case R_PPC_GOT_DTPREL16
:
5613 case R_PPC_GOT_DTPREL16_LO
:
5614 case R_PPC_GOT_DTPREL16_HI
:
5615 case R_PPC_GOT_DTPREL16_HA
:
5616 tls_type
= TLS_TLS
| TLS_DTPREL
;
5620 case R_PPC_GOT16_LO
:
5621 case R_PPC_GOT16_HI
:
5622 case R_PPC_GOT16_HA
:
5625 /* Relocation is to the entry for this symbol in the global
5631 if (htab
->got
== NULL
)
5635 if (tls_type
== (TLS_TLS
| TLS_LD
)
5637 || !h
->def_dynamic
))
5638 offp
= &htab
->tlsld_got
.offset
;
5642 dyn
= htab
->elf
.dynamic_sections_created
;
5643 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
)
5645 && SYMBOL_REFERENCES_LOCAL (info
, h
)))
5646 /* This is actually a static link, or it is a
5647 -Bsymbolic link and the symbol is defined
5648 locally, or the symbol was forced to be local
5649 because of a version file. */
5654 unresolved_reloc
= FALSE
;
5656 offp
= &h
->got
.offset
;
5660 if (local_got_offsets
== NULL
)
5662 offp
= &local_got_offsets
[r_symndx
];
5665 /* The offset must always be a multiple of 4. We use the
5666 least significant bit to record whether we have already
5667 processed this entry. */
5673 unsigned int tls_m
= (tls_mask
5674 & (TLS_LD
| TLS_GD
| TLS_DTPREL
5675 | TLS_TPREL
| TLS_TPRELGD
));
5677 if (offp
== &htab
->tlsld_got
.offset
)
5683 /* We might have multiple got entries for this sym.
5684 Initialize them all. */
5689 if ((tls_m
& TLS_LD
) != 0)
5691 tls_ty
= TLS_TLS
| TLS_LD
;
5694 else if ((tls_m
& TLS_GD
) != 0)
5696 tls_ty
= TLS_TLS
| TLS_GD
;
5699 else if ((tls_m
& TLS_DTPREL
) != 0)
5701 tls_ty
= TLS_TLS
| TLS_DTPREL
;
5702 tls_m
&= ~TLS_DTPREL
;
5704 else if ((tls_m
& (TLS_TPREL
| TLS_TPRELGD
)) != 0)
5706 tls_ty
= TLS_TLS
| TLS_TPREL
;
5710 /* Generate relocs for the dynamic linker. */
5711 if ((info
->shared
|| indx
!= 0)
5713 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
5714 || h
->root
.type
!= bfd_link_hash_undefweak
))
5716 outrel
.r_offset
= (htab
->got
->output_section
->vma
5717 + htab
->got
->output_offset
5719 outrel
.r_addend
= 0;
5720 if (tls_ty
& (TLS_LD
| TLS_GD
))
5722 outrel
.r_info
= ELF32_R_INFO (indx
, R_PPC_DTPMOD32
);
5723 if (tls_ty
== (TLS_TLS
| TLS_GD
))
5725 loc
= htab
->relgot
->contents
;
5726 loc
+= (htab
->relgot
->reloc_count
++
5727 * sizeof (Elf32_External_Rela
));
5728 bfd_elf32_swap_reloca_out (output_bfd
,
5730 outrel
.r_offset
+= 4;
5732 = ELF32_R_INFO (indx
, R_PPC_DTPREL32
);
5735 else if (tls_ty
== (TLS_TLS
| TLS_DTPREL
))
5736 outrel
.r_info
= ELF32_R_INFO (indx
, R_PPC_DTPREL32
);
5737 else if (tls_ty
== (TLS_TLS
| TLS_TPREL
))
5738 outrel
.r_info
= ELF32_R_INFO (indx
, R_PPC_TPREL32
);
5740 outrel
.r_info
= ELF32_R_INFO (indx
, R_PPC_RELATIVE
);
5742 outrel
.r_info
= ELF32_R_INFO (indx
, R_PPC_GLOB_DAT
);
5745 outrel
.r_addend
+= relocation
;
5746 if (tls_ty
& (TLS_GD
| TLS_DTPREL
| TLS_TPREL
))
5747 outrel
.r_addend
-= htab
->elf
.tls_sec
->vma
;
5749 loc
= htab
->relgot
->contents
;
5750 loc
+= (htab
->relgot
->reloc_count
++
5751 * sizeof (Elf32_External_Rela
));
5752 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
5755 /* Init the .got section contents if we're not
5756 emitting a reloc. */
5759 bfd_vma value
= relocation
;
5761 if (tls_ty
== (TLS_TLS
| TLS_LD
))
5763 else if (tls_ty
!= 0)
5765 value
-= htab
->elf
.tls_sec
->vma
+ DTP_OFFSET
;
5766 if (tls_ty
== (TLS_TLS
| TLS_TPREL
))
5767 value
+= DTP_OFFSET
- TP_OFFSET
;
5769 if (tls_ty
== (TLS_TLS
| TLS_GD
))
5771 bfd_put_32 (output_bfd
, value
,
5772 htab
->got
->contents
+ off
+ 4);
5776 bfd_put_32 (output_bfd
, value
,
5777 htab
->got
->contents
+ off
);
5781 if (tls_ty
& (TLS_LD
| TLS_GD
))
5790 if (off
>= (bfd_vma
) -2)
5793 if ((tls_type
& TLS_TLS
) != 0)
5795 if (tls_type
!= (TLS_TLS
| TLS_LD
))
5797 if ((tls_mask
& TLS_LD
) != 0
5799 || !h
->def_dynamic
))
5801 if (tls_type
!= (TLS_TLS
| TLS_GD
))
5803 if ((tls_mask
& TLS_GD
) != 0)
5805 if (tls_type
!= (TLS_TLS
| TLS_DTPREL
))
5807 if ((tls_mask
& TLS_DTPREL
) != 0)
5814 relocation
= htab
->got
->output_offset
+ off
;
5815 relocation
-= htab
->elf
.hgot
->root
.u
.def
.value
;
5817 /* Addends on got relocations don't make much sense.
5818 x+off@got is actually x@got+off, and since the got is
5819 generated by a hash table traversal, the value in the
5820 got at entry m+n bears little relation to the entry m. */
5822 (*_bfd_error_handler
)
5823 (_("%B(%A+0x%lx): non-zero addend on %s reloc against `%s'"),
5826 (long) rel
->r_offset
,
5832 /* Relocations that need no special processing. */
5833 case R_PPC_LOCAL24PC
:
5834 /* It makes no sense to point a local relocation
5835 at a symbol not in this object. */
5836 if (unresolved_reloc
)
5838 if (! (*info
->callbacks
->undefined_symbol
) (info
,
5839 h
->root
.root
.string
,
5849 case R_PPC_DTPREL16
:
5850 case R_PPC_DTPREL16_LO
:
5851 case R_PPC_DTPREL16_HI
:
5852 case R_PPC_DTPREL16_HA
:
5853 addend
-= htab
->elf
.tls_sec
->vma
+ DTP_OFFSET
;
5856 /* Relocations that may need to be propagated if this is a shared
5859 case R_PPC_TPREL16_LO
:
5860 case R_PPC_TPREL16_HI
:
5861 case R_PPC_TPREL16_HA
:
5862 addend
-= htab
->elf
.tls_sec
->vma
+ TP_OFFSET
;
5863 /* The TPREL16 relocs shouldn't really be used in shared
5864 libs as they will result in DT_TEXTREL being set, but
5865 support them anyway. */
5869 addend
-= htab
->elf
.tls_sec
->vma
+ TP_OFFSET
;
5872 case R_PPC_DTPREL32
:
5873 addend
-= htab
->elf
.tls_sec
->vma
+ DTP_OFFSET
;
5876 case R_PPC_DTPMOD32
:
5882 case R_PPC_REL16_LO
:
5883 case R_PPC_REL16_HI
:
5884 case R_PPC_REL16_HA
:
5890 case R_PPC_REL14_BRTAKEN
:
5891 case R_PPC_REL14_BRNTAKEN
:
5892 /* If these relocations are not to a named symbol, they can be
5893 handled right here, no need to bother the dynamic linker. */
5894 if (SYMBOL_REFERENCES_LOCAL (info
, h
)
5895 || h
== htab
->elf
.hgot
)
5899 /* Relocations that always need to be propagated if this is a shared
5904 case R_PPC_ADDR16_LO
:
5905 case R_PPC_ADDR16_HI
:
5906 case R_PPC_ADDR16_HA
:
5908 case R_PPC_ADDR14_BRTAKEN
:
5909 case R_PPC_ADDR14_BRNTAKEN
:
5912 /* r_symndx will be zero only for relocs against symbols
5913 from removed linkonce sections, or sections discarded by
5920 if ((input_section
->flags
& SEC_ALLOC
) == 0)
5926 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
5927 || h
->root
.type
!= bfd_link_hash_undefweak
)
5928 && (MUST_BE_DYN_RELOC (r_type
)
5929 || !SYMBOL_CALLS_LOCAL (info
, h
)))
5930 || (ELIMINATE_COPY_RELOCS
5936 && !h
->def_regular
))
5941 fprintf (stderr
, "ppc_elf_relocate_section needs to "
5942 "create relocation for %s\n",
5943 (h
&& h
->root
.root
.string
5944 ? h
->root
.root
.string
: "<unknown>"));
5947 /* When generating a shared object, these relocations
5948 are copied into the output file to be resolved at run
5954 name
= (bfd_elf_string_from_elf_section
5956 elf_elfheader (input_bfd
)->e_shstrndx
,
5957 elf_section_data (input_section
)->rel_hdr
.sh_name
));
5961 BFD_ASSERT (strncmp (name
, ".rela", 5) == 0
5962 && strcmp (bfd_get_section_name (input_bfd
,
5966 sreloc
= bfd_get_section_by_name (htab
->elf
.dynobj
, name
);
5967 BFD_ASSERT (sreloc
!= NULL
);
5973 _bfd_elf_section_offset (output_bfd
, info
, input_section
,
5975 if (outrel
.r_offset
== (bfd_vma
) -1
5976 || outrel
.r_offset
== (bfd_vma
) -2)
5977 skip
= (int) outrel
.r_offset
;
5978 outrel
.r_offset
+= (input_section
->output_section
->vma
5979 + input_section
->output_offset
);
5982 memset (&outrel
, 0, sizeof outrel
);
5983 else if (!SYMBOL_REFERENCES_LOCAL (info
, h
))
5985 unresolved_reloc
= FALSE
;
5986 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, r_type
);
5987 outrel
.r_addend
= rel
->r_addend
;
5991 outrel
.r_addend
= relocation
+ rel
->r_addend
;
5993 if (r_type
== R_PPC_ADDR32
)
5994 outrel
.r_info
= ELF32_R_INFO (0, R_PPC_RELATIVE
);
5999 if (bfd_is_abs_section (sec
))
6001 else if (sec
== NULL
|| sec
->owner
== NULL
)
6003 bfd_set_error (bfd_error_bad_value
);
6010 /* We are turning this relocation into one
6011 against a section symbol. It would be
6012 proper to subtract the symbol's value,
6013 osec->vma, from the emitted reloc addend,
6014 but ld.so expects buggy relocs. */
6015 osec
= sec
->output_section
;
6016 indx
= elf_section_data (osec
)->dynindx
;
6017 BFD_ASSERT (indx
> 0);
6020 printf ("indx=%d section=%s flags=%08x name=%s\n",
6021 indx
, osec
->name
, osec
->flags
,
6022 h
->root
.root
.string
);
6026 outrel
.r_info
= ELF32_R_INFO (indx
, r_type
);
6030 loc
= sreloc
->contents
;
6031 loc
+= sreloc
->reloc_count
++ * sizeof (Elf32_External_Rela
);
6032 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
6037 /* This reloc will be computed at runtime. We clear the memory
6038 so that it contains predictable value. */
6040 && ((input_section
->flags
& SEC_ALLOC
) != 0
6041 || ELF32_R_TYPE (outrel
.r_info
) != R_PPC_RELATIVE
))
6043 relocation
= howto
->pc_relative
? outrel
.r_offset
: 0;
6050 case R_PPC_RELAX32PC_PLT
:
6051 case R_PPC_RELAX32_PLT
:
6053 struct plt_entry
*ent
= find_plt_ent (h
, got2
, addend
);
6056 relocation
= (htab
->glink
->output_section
->vma
6057 + htab
->glink
->output_offset
6058 + ent
->glink_offset
);
6060 relocation
= (htab
->plt
->output_section
->vma
6061 + htab
->plt
->output_offset
6065 if (r_type
== R_PPC_RELAX32_PLT
)
6069 case R_PPC_RELAX32PC
:
6070 relocation
-= (input_section
->output_section
->vma
6071 + input_section
->output_offset
6072 + rel
->r_offset
- 4);
6081 t0
= bfd_get_32 (output_bfd
, contents
+ rel
->r_offset
);
6082 t1
= bfd_get_32 (output_bfd
, contents
+ rel
->r_offset
+ 4);
6084 /* We're clearing the bits for R_PPC_ADDR16_HA
6085 and R_PPC_ADDR16_LO here. */
6089 /* t0 is HA, t1 is LO */
6090 relocation
+= addend
;
6091 t0
|= ((relocation
+ 0x8000) >> 16) & 0xffff;
6092 t1
|= relocation
& 0xffff;
6094 bfd_put_32 (output_bfd
, t0
, contents
+ rel
->r_offset
);
6095 bfd_put_32 (output_bfd
, t1
, contents
+ rel
->r_offset
+ 4);
6099 /* Indirect .sdata relocation. */
6100 case R_PPC_EMB_SDAI16
:
6101 BFD_ASSERT (htab
->sdata
[0].section
!= NULL
);
6103 = elf_finish_pointer_linker_section (input_bfd
, &htab
->sdata
[0],
6104 h
, relocation
, rel
);
6107 /* Indirect .sdata2 relocation. */
6108 case R_PPC_EMB_SDA2I16
:
6109 BFD_ASSERT (htab
->sdata
[1].section
!= NULL
);
6111 = elf_finish_pointer_linker_section (input_bfd
, &htab
->sdata
[1],
6112 h
, relocation
, rel
);
6115 /* Handle the TOC16 reloc. We want to use the offset within the .got
6116 section, not the actual VMA. This is appropriate when generating
6117 an embedded ELF object, for which the .got section acts like the
6118 AIX .toc section. */
6119 case R_PPC_TOC16
: /* phony GOT16 relocations */
6120 BFD_ASSERT (sec
!= NULL
);
6121 BFD_ASSERT (bfd_is_und_section (sec
)
6122 || strcmp (bfd_get_section_name (abfd
, sec
), ".got") == 0
6123 || strcmp (bfd_get_section_name (abfd
, sec
), ".cgot") == 0);
6125 addend
-= sec
->output_section
->vma
+ sec
->output_offset
+ 0x8000;
6128 case R_PPC_PLTREL24
:
6129 /* Relocation is to the entry for this symbol in the
6130 procedure linkage table. */
6132 struct plt_entry
*ent
= find_plt_ent (h
, got2
, addend
);
6136 || htab
->plt
== NULL
)
6138 /* We didn't make a PLT entry for this symbol. This
6139 happens when statically linking PIC code, or when
6140 using -Bsymbolic. */
6144 unresolved_reloc
= FALSE
;
6146 relocation
= (htab
->glink
->output_section
->vma
6147 + htab
->glink
->output_offset
6148 + ent
->glink_offset
);
6150 relocation
= (htab
->plt
->output_section
->vma
6151 + htab
->plt
->output_offset
6156 /* Relocate against _SDA_BASE_. */
6157 case R_PPC_SDAREL16
:
6161 BFD_ASSERT (sec
!= NULL
);
6162 name
= bfd_get_section_name (abfd
, sec
->output_section
);
6163 if (! ((strncmp (name
, ".sdata", 6) == 0
6164 && (name
[6] == 0 || name
[6] == '.'))
6165 || (strncmp (name
, ".sbss", 5) == 0
6166 && (name
[5] == 0 || name
[5] == '.'))))
6168 (*_bfd_error_handler
)
6169 (_("%B: the target (%s) of a %s relocation is "
6170 "in the wrong output section (%s)"),
6176 addend
-= htab
->sdata
[0].sym_val
;
6180 /* Relocate against _SDA2_BASE_. */
6181 case R_PPC_EMB_SDA2REL
:
6185 BFD_ASSERT (sec
!= NULL
);
6186 name
= bfd_get_section_name (abfd
, sec
->output_section
);
6187 if (! (strncmp (name
, ".sdata2", 7) == 0
6188 || strncmp (name
, ".sbss2", 6) == 0))
6190 (*_bfd_error_handler
)
6191 (_("%B: the target (%s) of a %s relocation is "
6192 "in the wrong output section (%s)"),
6198 bfd_set_error (bfd_error_bad_value
);
6202 addend
-= htab
->sdata
[1].sym_val
;
6206 /* Relocate against either _SDA_BASE_, _SDA2_BASE_, or 0. */
6207 case R_PPC_EMB_SDA21
:
6208 case R_PPC_EMB_RELSDA
:
6213 BFD_ASSERT (sec
!= NULL
);
6214 name
= bfd_get_section_name (abfd
, sec
->output_section
);
6215 if (((strncmp (name
, ".sdata", 6) == 0
6216 && (name
[6] == 0 || name
[6] == '.'))
6217 || (strncmp (name
, ".sbss", 5) == 0
6218 && (name
[5] == 0 || name
[5] == '.'))))
6221 addend
-= htab
->sdata
[0].sym_val
;
6224 else if (strncmp (name
, ".sdata2", 7) == 0
6225 || strncmp (name
, ".sbss2", 6) == 0)
6228 addend
-= htab
->sdata
[1].sym_val
;
6231 else if (strcmp (name
, ".PPC.EMB.sdata0") == 0
6232 || strcmp (name
, ".PPC.EMB.sbss0") == 0)
6239 (*_bfd_error_handler
)
6240 (_("%B: the target (%s) of a %s relocation is "
6241 "in the wrong output section (%s)"),
6247 bfd_set_error (bfd_error_bad_value
);
6252 if (r_type
== R_PPC_EMB_SDA21
)
6253 { /* fill in register field */
6254 insn
= bfd_get_32 (output_bfd
, contents
+ rel
->r_offset
);
6255 insn
= (insn
& ~RA_REGISTER_MASK
) | (reg
<< RA_REGISTER_SHIFT
);
6256 bfd_put_32 (output_bfd
, insn
, contents
+ rel
->r_offset
);
6261 /* Relocate against the beginning of the section. */
6263 case R_PPC_SECTOFF_LO
:
6264 case R_PPC_SECTOFF_HI
:
6265 case R_PPC_SECTOFF_HA
:
6266 BFD_ASSERT (sec
!= NULL
);
6267 addend
-= sec
->output_section
->vma
;
6270 /* Negative relocations. */
6271 case R_PPC_EMB_NADDR32
:
6272 case R_PPC_EMB_NADDR16
:
6273 case R_PPC_EMB_NADDR16_LO
:
6274 case R_PPC_EMB_NADDR16_HI
:
6275 case R_PPC_EMB_NADDR16_HA
:
6276 addend
-= 2 * relocation
;
6280 case R_PPC_GLOB_DAT
:
6281 case R_PPC_JMP_SLOT
:
6282 case R_PPC_RELATIVE
:
6284 case R_PPC_PLTREL32
:
6285 case R_PPC_PLT16_LO
:
6286 case R_PPC_PLT16_HI
:
6287 case R_PPC_PLT16_HA
:
6289 case R_PPC_EMB_RELSEC16
:
6290 case R_PPC_EMB_RELST_LO
:
6291 case R_PPC_EMB_RELST_HI
:
6292 case R_PPC_EMB_RELST_HA
:
6293 case R_PPC_EMB_BIT_FLD
:
6294 (*_bfd_error_handler
)
6295 (_("%B: relocation %s is not yet supported for symbol %s."),
6300 bfd_set_error (bfd_error_invalid_operation
);
6305 /* Do any further special processing. */
6311 case R_PPC_ADDR16_HA
:
6312 case R_PPC_REL16_HA
:
6313 case R_PPC_GOT16_HA
:
6314 case R_PPC_PLT16_HA
:
6315 case R_PPC_SECTOFF_HA
:
6316 case R_PPC_TPREL16_HA
:
6317 case R_PPC_DTPREL16_HA
:
6318 case R_PPC_GOT_TLSGD16_HA
:
6319 case R_PPC_GOT_TLSLD16_HA
:
6320 case R_PPC_GOT_TPREL16_HA
:
6321 case R_PPC_GOT_DTPREL16_HA
:
6322 case R_PPC_EMB_NADDR16_HA
:
6323 case R_PPC_EMB_RELST_HA
:
6324 /* It's just possible that this symbol is a weak symbol
6325 that's not actually defined anywhere. In that case,
6326 'sec' would be NULL, and we should leave the symbol
6327 alone (it will be set to zero elsewhere in the link). */
6329 /* Add 0x10000 if sign bit in 0:15 is set.
6330 Bits 0:15 are not used. */
6336 fprintf (stderr
, "\ttype = %s (%d), name = %s, symbol index = %ld, "
6337 "offset = %ld, addend = %ld\n",
6342 (long) rel
->r_offset
,
6346 if (unresolved_reloc
6347 && !((input_section
->flags
& SEC_DEBUGGING
) != 0
6350 (*_bfd_error_handler
)
6351 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
6354 (long) rel
->r_offset
,
6360 r
= _bfd_final_link_relocate (howto
,
6368 if (r
!= bfd_reloc_ok
)
6370 if (r
== bfd_reloc_overflow
)
6375 && h
->root
.type
== bfd_link_hash_undefweak
6376 && howto
->pc_relative
)
6378 /* Assume this is a call protected by other code that
6379 detect the symbol is undefined. If this is the case,
6380 we can safely ignore the overflow. If not, the
6381 program is hosed anyway, and a little warning isn't
6387 if (! (*info
->callbacks
->reloc_overflow
) (info
,
6388 (h
? &h
->root
: NULL
),
6399 (*_bfd_error_handler
)
6400 (_("%B(%A+0x%lx): %s reloc against `%s': error %d"),
6401 input_bfd
, input_section
,
6402 (long) rel
->r_offset
, howto
->name
, sym_name
, (int) r
);
6409 fprintf (stderr
, "\n");
6415 #define PPC_LO(v) ((v) & 0xffff)
6416 #define PPC_HI(v) (((v) >> 16) & 0xffff)
6417 #define PPC_HA(v) PPC_HI ((v) + 0x8000)
6419 /* Finish up dynamic symbol handling. We set the contents of various
6420 dynamic sections here. */
6423 ppc_elf_finish_dynamic_symbol (bfd
*output_bfd
,
6424 struct bfd_link_info
*info
,
6425 struct elf_link_hash_entry
*h
,
6426 Elf_Internal_Sym
*sym
)
6428 struct ppc_elf_link_hash_table
*htab
;
6429 struct plt_entry
*ent
;
6430 bfd_boolean doneone
;
6433 fprintf (stderr
, "ppc_elf_finish_dynamic_symbol called for %s",
6434 h
->root
.root
.string
);
6437 htab
= ppc_elf_hash_table (info
);
6438 BFD_ASSERT (htab
->elf
.dynobj
!= NULL
);
6441 for (ent
= h
->plt
.plist
; ent
!= NULL
; ent
= ent
->next
)
6442 if (ent
->plt
.offset
!= (bfd_vma
) -1)
6446 Elf_Internal_Rela rela
;
6448 bfd_vma reloc_index
;
6450 /* This symbol has an entry in the procedure linkage table.
6454 /* We don't need to fill in the .plt. The ppc dynamic
6455 linker will fill it in. */
6459 bfd_vma val
= (htab
->glink_pltresolve
+ ent
->plt
.offset
6460 + htab
->glink
->output_section
->vma
6461 + htab
->glink
->output_offset
);
6462 bfd_put_32 (output_bfd
, val
,
6463 htab
->plt
->contents
+ ent
->plt
.offset
);
6466 /* Fill in the entry in the .rela.plt section. */
6467 rela
.r_offset
= (htab
->plt
->output_section
->vma
6468 + htab
->plt
->output_offset
6470 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_PPC_JMP_SLOT
);
6474 reloc_index
= ent
->plt
.offset
/ 4;
6477 reloc_index
= ((ent
->plt
.offset
- PLT_INITIAL_ENTRY_SIZE
)
6479 if (reloc_index
> PLT_NUM_SINGLE_ENTRIES
)
6480 reloc_index
-= (reloc_index
- PLT_NUM_SINGLE_ENTRIES
) / 2;
6482 loc
= (htab
->relplt
->contents
6483 + reloc_index
* sizeof (Elf32_External_Rela
));
6484 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
6486 if (!h
->def_regular
)
6488 /* Mark the symbol as undefined, rather than as defined in
6489 the .plt section. Leave the value alone. */
6490 sym
->st_shndx
= SHN_UNDEF
;
6491 /* If the symbol is weak, we do need to clear the value.
6492 Otherwise, the PLT entry would provide a definition for
6493 the symbol even if the symbol wasn't defined anywhere,
6494 and so the symbol would never be NULL. */
6495 if (!h
->ref_regular_nonweak
)
6506 plt
= (ent
->plt
.offset
6507 + htab
->plt
->output_section
->vma
6508 + htab
->plt
->output_offset
);
6509 p
= (unsigned char *) htab
->glink
->contents
+ ent
->glink_offset
;
6511 if (info
->shared
|| info
->pie
)
6515 if (ent
->addend
>= 32768)
6517 + ent
->sec
->output_section
->vma
6518 + ent
->sec
->output_offset
);
6519 else if (htab
->elf
.hgot
!= NULL
)
6520 got
= (htab
->elf
.hgot
->root
.u
.def
.value
6521 + htab
->elf
.hgot
->root
.u
.def
.section
->output_section
->vma
6522 + htab
->elf
.hgot
->root
.u
.def
.section
->output_offset
);
6526 if (plt
+ 0x8000 < 0x10000)
6528 bfd_put_32 (output_bfd
, LWZ_11_30
+ PPC_LO (plt
), p
);
6530 bfd_put_32 (output_bfd
, MTCTR_11
, p
);
6532 bfd_put_32 (output_bfd
, BCTR
, p
);
6534 bfd_put_32 (output_bfd
, NOP
, p
);
6539 bfd_put_32 (output_bfd
, ADDIS_11_30
+ PPC_HA (plt
), p
);
6541 bfd_put_32 (output_bfd
, LWZ_11_11
+ PPC_LO (plt
), p
);
6543 bfd_put_32 (output_bfd
, MTCTR_11
, p
);
6545 bfd_put_32 (output_bfd
, BCTR
, p
);
6551 bfd_put_32 (output_bfd
, LIS_11
+ PPC_HA (plt
), p
);
6553 bfd_put_32 (output_bfd
, LWZ_11_11
+ PPC_LO (plt
), p
);
6555 bfd_put_32 (output_bfd
, MTCTR_11
, p
);
6557 bfd_put_32 (output_bfd
, BCTR
, p
);
6560 /* We only need one non-PIC glink stub. */
6571 Elf_Internal_Rela rela
;
6574 /* This symbols needs a copy reloc. Set it up. */
6577 fprintf (stderr
, ", copy");
6580 BFD_ASSERT (h
->dynindx
!= -1);
6582 if (ppc_elf_hash_entry (h
)->has_sda_refs
)
6586 BFD_ASSERT (s
!= NULL
);
6588 rela
.r_offset
= (h
->root
.u
.def
.value
6589 + h
->root
.u
.def
.section
->output_section
->vma
6590 + h
->root
.u
.def
.section
->output_offset
);
6591 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_PPC_COPY
);
6593 loc
= s
->contents
+ s
->reloc_count
++ * sizeof (Elf32_External_Rela
);
6594 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
6598 fprintf (stderr
, "\n");
6601 /* Mark some specially defined symbols as absolute. */
6602 if (h
== htab
->elf
.hgot
6603 || strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
6604 || strcmp (h
->root
.root
.string
, "_PROCEDURE_LINKAGE_TABLE_") == 0)
6605 sym
->st_shndx
= SHN_ABS
;
6610 static enum elf_reloc_type_class
6611 ppc_elf_reloc_type_class (const Elf_Internal_Rela
*rela
)
6613 switch (ELF32_R_TYPE (rela
->r_info
))
6615 case R_PPC_RELATIVE
:
6616 return reloc_class_relative
;
6619 case R_PPC_JMP_SLOT
:
6620 return reloc_class_plt
;
6622 return reloc_class_copy
;
6624 return reloc_class_normal
;
6628 /* Finish up the dynamic sections. */
6631 ppc_elf_finish_dynamic_sections (bfd
*output_bfd
,
6632 struct bfd_link_info
*info
)
6635 struct ppc_elf_link_hash_table
*htab
;
6639 fprintf (stderr
, "ppc_elf_finish_dynamic_sections called\n");
6642 htab
= ppc_elf_hash_table (info
);
6643 sdyn
= bfd_get_section_by_name (htab
->elf
.dynobj
, ".dynamic");
6646 if (htab
->elf
.hgot
!= NULL
)
6647 got
= (htab
->elf
.hgot
->root
.u
.def
.value
6648 + htab
->elf
.hgot
->root
.u
.def
.section
->output_section
->vma
6649 + htab
->elf
.hgot
->root
.u
.def
.section
->output_offset
);
6651 if (htab
->elf
.dynamic_sections_created
)
6653 Elf32_External_Dyn
*dyncon
, *dynconend
;
6655 BFD_ASSERT (htab
->plt
!= NULL
&& sdyn
!= NULL
);
6657 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
6658 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
6659 for (; dyncon
< dynconend
; dyncon
++)
6661 Elf_Internal_Dyn dyn
;
6664 bfd_elf32_swap_dyn_in (htab
->elf
.dynobj
, dyncon
, &dyn
);
6670 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
6674 dyn
.d_un
.d_val
= htab
->relplt
->size
;
6679 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
6683 dyn
.d_un
.d_ptr
= got
;
6690 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
6694 /* Add a blrl instruction at _GLOBAL_OFFSET_TABLE_-4 so that a function can
6695 easily find the address of the _GLOBAL_OFFSET_TABLE_. */
6696 if (htab
->got
!= NULL
)
6698 unsigned char *p
= htab
->got
->contents
;
6701 p
+= elf_hash_table (info
)->hgot
->root
.u
.def
.value
;
6703 bfd_put_32 (output_bfd
, 0x4e800021 /* blrl */, p
- 4);
6707 val
= sdyn
->output_section
->vma
+ sdyn
->output_offset
;
6708 bfd_put_32 (output_bfd
, val
, p
);
6710 elf_section_data (htab
->got
->output_section
)->this_hdr
.sh_entsize
= 4;
6713 if (htab
->glink
!= NULL
&& htab
->glink
->contents
!= NULL
)
6716 unsigned char *endp
;
6721 * PIC glink code is the following:
6723 * # ith PLT code stub.
6724 * addis 11,30,(plt+(i-1)*4-got)@ha
6725 * lwz 11,(plt+(i-1)*4-got)@l(11)
6729 * # A table of branches, one for each plt entry.
6730 * # The idea is that the plt call stub loads ctr (and r11) with these
6731 * # addresses, so (r11 - res_0) gives the plt index * 4.
6732 * res_0: b PLTresolve
6733 * res_1: b PLTresolve
6735 * # Some number of entries towards the end can be nops
6741 * addis 11,11,(1f-res_0)@ha
6744 * 1: addi 11,11,(1b-res_0)@l
6747 * sub 11,11,12 # r11 = index * 4
6748 * addis 12,12,(got+4-1b)@ha
6749 * lwz 0,(got+4-1b)@l(12) # got[1] address of dl_runtime_resolve
6750 * lwz 12,(got+8-1b)@l(12) # got[2] contains the map address
6753 * add 11,0,11 # r11 = index * 12 = reloc offset.
6756 static const unsigned int pic_plt_resolve
[] =
6776 static const unsigned int plt_resolve
[] =
6796 if (ARRAY_SIZE (pic_plt_resolve
) != GLINK_PLTRESOLVE
/ 4)
6798 if (ARRAY_SIZE (plt_resolve
) != GLINK_PLTRESOLVE
/ 4)
6801 /* Build the branch table, one for each plt entry (less one),
6802 and perhaps some padding. */
6803 p
= htab
->glink
->contents
;
6804 p
+= htab
->glink_pltresolve
;
6805 endp
= htab
->glink
->contents
;
6806 endp
+= htab
->glink
->size
- GLINK_PLTRESOLVE
;
6807 while (p
< endp
- 8 * 4)
6809 bfd_put_32 (output_bfd
, B
+ endp
- p
, p
);
6814 bfd_put_32 (output_bfd
, NOP
, p
);
6818 res0
= (htab
->glink_pltresolve
6819 + htab
->glink
->output_section
->vma
6820 + htab
->glink
->output_offset
);
6822 /* Last comes the PLTresolve stub. */
6823 if (info
->shared
|| info
->pie
)
6827 for (i
= 0; i
< ARRAY_SIZE (pic_plt_resolve
); i
++)
6829 bfd_put_32 (output_bfd
, pic_plt_resolve
[i
], p
);
6832 p
-= 4 * ARRAY_SIZE (pic_plt_resolve
);
6834 bcl
= (htab
->glink
->size
- GLINK_PLTRESOLVE
+ 3*4
6835 + htab
->glink
->output_section
->vma
6836 + htab
->glink
->output_offset
);
6838 bfd_put_32 (output_bfd
,
6839 ADDIS_11_11
+ PPC_HA (bcl
- res0
), p
+ 0*4);
6840 bfd_put_32 (output_bfd
,
6841 ADDI_11_11
+ PPC_LO (bcl
- res0
), p
+ 3*4);
6842 bfd_put_32 (output_bfd
,
6843 ADDIS_12_12
+ PPC_HA (got
+ 4 - bcl
), p
+ 7*4);
6844 if (PPC_HA (got
+ 4 - bcl
) == PPC_HA (got
+ 8 - bcl
))
6846 bfd_put_32 (output_bfd
,
6847 LWZ_0_12
+ PPC_LO (got
+ 4 - bcl
), p
+ 8*4);
6848 bfd_put_32 (output_bfd
,
6849 LWZ_12_12
+ PPC_LO (got
+ 8 - bcl
), p
+ 9*4);
6853 bfd_put_32 (output_bfd
,
6854 LWZU_0_12
+ PPC_LO (got
+ 4 - bcl
), p
+ 8*4);
6855 bfd_put_32 (output_bfd
,
6856 LWZ_12_12
+ 4, p
+ 9*4);
6861 for (i
= 0; i
< ARRAY_SIZE (plt_resolve
); i
++)
6863 bfd_put_32 (output_bfd
, plt_resolve
[i
], p
);
6866 p
-= 4 * ARRAY_SIZE (plt_resolve
);
6868 bfd_put_32 (output_bfd
,
6869 LIS_12
+ PPC_HA (got
+ 4), p
+ 0*4);
6870 bfd_put_32 (output_bfd
,
6871 ADDIS_11_11
+ PPC_HA (-res0
), p
+ 1*4);
6872 bfd_put_32 (output_bfd
,
6873 ADDI_11_11
+ PPC_LO (-res0
), p
+ 3*4);
6874 if (PPC_HA (got
+ 4) == PPC_HA (got
+ 8))
6876 bfd_put_32 (output_bfd
,
6877 LWZ_0_12
+ PPC_LO (got
+ 4), p
+ 2*4);
6878 bfd_put_32 (output_bfd
,
6879 LWZ_12_12
+ PPC_LO (got
+ 8), p
+ 6*4);
6883 bfd_put_32 (output_bfd
,
6884 LWZU_0_12
+ PPC_LO (got
+ 4), p
+ 2*4);
6885 bfd_put_32 (output_bfd
,
6886 LWZ_12_12
+ 4, p
+ 6*4);
6894 #define TARGET_LITTLE_SYM bfd_elf32_powerpcle_vec
6895 #define TARGET_LITTLE_NAME "elf32-powerpcle"
6896 #define TARGET_BIG_SYM bfd_elf32_powerpc_vec
6897 #define TARGET_BIG_NAME "elf32-powerpc"
6898 #define ELF_ARCH bfd_arch_powerpc
6899 #define ELF_MACHINE_CODE EM_PPC
6900 #ifdef __QNXTARGET__
6901 #define ELF_MAXPAGESIZE 0x1000
6903 #define ELF_MAXPAGESIZE 0x10000
6905 #define ELF_MINPAGESIZE 0x1000
6906 #define elf_info_to_howto ppc_elf_info_to_howto
6908 #ifdef EM_CYGNUS_POWERPC
6909 #define ELF_MACHINE_ALT1 EM_CYGNUS_POWERPC
6913 #define ELF_MACHINE_ALT2 EM_PPC_OLD
6916 #define elf_backend_plt_not_loaded 1
6917 #define elf_backend_can_gc_sections 1
6918 #define elf_backend_can_refcount 1
6919 #define elf_backend_rela_normal 1
6921 #define bfd_elf32_mkobject ppc_elf_mkobject
6922 #define bfd_elf32_bfd_merge_private_bfd_data ppc_elf_merge_private_bfd_data
6923 #define bfd_elf32_bfd_relax_section ppc_elf_relax_section
6924 #define bfd_elf32_bfd_reloc_type_lookup ppc_elf_reloc_type_lookup
6925 #define bfd_elf32_bfd_set_private_flags ppc_elf_set_private_flags
6926 #define bfd_elf32_bfd_link_hash_table_create ppc_elf_link_hash_table_create
6928 #define elf_backend_object_p ppc_elf_object_p
6929 #define elf_backend_gc_mark_hook ppc_elf_gc_mark_hook
6930 #define elf_backend_gc_sweep_hook ppc_elf_gc_sweep_hook
6931 #define elf_backend_section_from_shdr ppc_elf_section_from_shdr
6932 #define elf_backend_relocate_section ppc_elf_relocate_section
6933 #define elf_backend_create_dynamic_sections ppc_elf_create_dynamic_sections
6934 #define elf_backend_check_relocs ppc_elf_check_relocs
6935 #define elf_backend_copy_indirect_symbol ppc_elf_copy_indirect_symbol
6936 #define elf_backend_adjust_dynamic_symbol ppc_elf_adjust_dynamic_symbol
6937 #define elf_backend_add_symbol_hook ppc_elf_add_symbol_hook
6938 #define elf_backend_size_dynamic_sections ppc_elf_size_dynamic_sections
6939 #define elf_backend_finish_dynamic_symbol ppc_elf_finish_dynamic_symbol
6940 #define elf_backend_finish_dynamic_sections ppc_elf_finish_dynamic_sections
6941 #define elf_backend_fake_sections ppc_elf_fake_sections
6942 #define elf_backend_additional_program_headers ppc_elf_additional_program_headers
6943 #define elf_backend_grok_prstatus ppc_elf_grok_prstatus
6944 #define elf_backend_grok_psinfo ppc_elf_grok_psinfo
6945 #define elf_backend_reloc_type_class ppc_elf_reloc_type_class
6946 #define elf_backend_begin_write_processing ppc_elf_begin_write_processing
6947 #define elf_backend_final_write_processing ppc_elf_final_write_processing
6948 #define elf_backend_write_section ppc_elf_write_section
6949 #define elf_backend_special_sections ppc_elf_special_sections
6950 #define elf_backend_plt_sym_val ppc_elf_plt_sym_val
6952 #include "elf32-target.h"