2007-05-15 Markus Deuling <deuling@de.ibm.com>
[deliverable/binutils-gdb.git] / bfd / elf32-ppc.c
CommitLineData
252b5132 1/* PowerPC-specific support for 32-bit ELF
051d5130 2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
ab96bf03 3 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
252b5132
RH
4 Written by Ian Lance Taylor, Cygnus Support.
5
ae9a127f 6 This file is part of BFD, the Binary File Descriptor library.
252b5132 7
ae9a127f
NC
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.
252b5132 12
ae9a127f
NC
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.
252b5132 17
ae9a127f 18 You should have received a copy of the GNU General Public License
fc0bffd6 19 along with this program; if not, write to the
3e110533 20 Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
53e09e0a 21 Boston, MA 02110-1301, USA. */
252b5132
RH
22
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. */
27
3db64b00 28#include "sysdep.h"
183e98be 29#include <stdarg.h>
252b5132 30#include "bfd.h"
252b5132
RH
31#include "bfdlink.h"
32#include "libbfd.h"
33#include "elf-bfd.h"
34#include "elf/ppc.h"
7619e7c7 35#include "elf32-ppc.h"
9d8504b1 36#include "elf-vxworks.h"
252b5132 37
f0fe0e16 38/* RELA relocations are used here. */
252b5132 39
252b5132 40static bfd_reloc_status_type ppc_elf_addr16_ha_reloc
55fd94b0 41 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
7619e7c7 42static bfd_reloc_status_type ppc_elf_unhandled_reloc
55fd94b0 43 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
252b5132 44
70bccea4
AM
45/* Branch prediction bit for branch taken relocs. */
46#define BRANCH_PREDICT_BIT 0x200000
47/* Mask to set RA in memory instructions. */
48#define RA_REGISTER_MASK 0x001f0000
49/* Value to shift register by to insert RA. */
50#define RA_REGISTER_SHIFT 16
252b5132
RH
51
52/* The name of the dynamic interpreter. This is put in the .interp
53 section. */
252b5132
RH
54#define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
55
d7128ce4 56/* For old-style PLT. */
252b5132
RH
57/* The number of single-slot PLT entries (the rest use two slots). */
58#define PLT_NUM_SINGLE_ENTRIES 8192
59
d7128ce4 60/* For new-style .glink and .plt. */
a6aa5195 61#define GLINK_PLTRESOLVE 16*4
d7128ce4
AM
62#define GLINK_ENTRY_SIZE 4*4
63
9d8504b1
PB
64/* VxWorks uses its own plt layout, filled in by the static linker. */
65
66/* The standard VxWorks PLT entry. */
67#define VXWORKS_PLT_ENTRY_SIZE 32
68static const bfd_vma ppc_elf_vxworks_plt_entry
69 [VXWORKS_PLT_ENTRY_SIZE / 4] =
70 {
71 0x3d800000, /* lis r12,0 */
72 0x818c0000, /* lwz r12,0(r12) */
73 0x7d8903a6, /* mtctr r12 */
74 0x4e800420, /* bctr */
75 0x39600000, /* li r11,0 */
76 0x48000000, /* b 14 <.PLT0resolve+0x4> */
77 0x60000000, /* nop */
78 0x60000000, /* nop */
79 };
80static const bfd_vma ppc_elf_vxworks_pic_plt_entry
81 [VXWORKS_PLT_ENTRY_SIZE / 4] =
82 {
83 0x3d9e0000, /* addis r12,r30,0 */
84 0x818c0000, /* lwz r12,0(r12) */
85 0x7d8903a6, /* mtctr r12 */
86 0x4e800420, /* bctr */
87 0x39600000, /* li r11,0 */
88 0x48000000, /* b 14 <.PLT0resolve+0x4> 14: R_PPC_REL24 .PLTresolve */
89 0x60000000, /* nop */
90 0x60000000, /* nop */
91 };
92
93/* The initial VxWorks PLT entry. */
94#define VXWORKS_PLT_INITIAL_ENTRY_SIZE 32
95static const bfd_vma ppc_elf_vxworks_plt0_entry
96 [VXWORKS_PLT_INITIAL_ENTRY_SIZE / 4] =
97 {
98 0x3d800000, /* lis r12,0 */
99 0x398c0000, /* addi r12,r12,0 */
100 0x800c0008, /* lwz r0,8(r12) */
101 0x7c0903a6, /* mtctr r0 */
102 0x818c0004, /* lwz r12,4(r12) */
103 0x4e800420, /* bctr */
104 0x60000000, /* nop */
105 0x60000000, /* nop */
106 };
107static const bfd_vma ppc_elf_vxworks_pic_plt0_entry
108 [VXWORKS_PLT_INITIAL_ENTRY_SIZE / 4] =
109 {
110 0x819e0008, /* lwz r12,8(r30) */
111 0x7d8903a6, /* mtctr r12 */
112 0x819e0004, /* lwz r12,4(r30) */
113 0x4e800420, /* bctr */
114 0x60000000, /* nop */
115 0x60000000, /* nop */
116 0x60000000, /* nop */
117 0x60000000, /* nop */
118 };
119
120/* For executables, we have some additional relocations in
121 .rela.plt.unloaded, for the kernel loader. */
122
123/* The number of non-JMP_SLOT relocations per PLT0 slot. */
124#define VXWORKS_PLT_NON_JMP_SLOT_RELOCS 3
125/* The number of relocations in the PLTResolve slot. */
126#define VXWORKS_PLTRESOLVE_RELOCS 2
127/* The number of relocations in the PLTResolve slot when when creating
128 a shared library. */
129#define VXWORKS_PLTRESOLVE_RELOCS_SHLIB 0
130
d7128ce4 131/* Some instructions. */
d7128ce4 132#define ADDIS_11_11 0x3d6b0000
a6aa5195
AM
133#define ADDIS_11_30 0x3d7e0000
134#define ADDIS_12_12 0x3d8c0000
d7128ce4 135#define ADDI_11_11 0x396b0000
d7128ce4
AM
136#define ADD_0_11_11 0x7c0b5a14
137#define ADD_11_0_11 0x7d605a14
a6aa5195
AM
138#define B 0x48000000
139#define BCL_20_31 0x429f0005
d7128ce4 140#define BCTR 0x4e800420
7e8aeb9a
AM
141#define LIS_11 0x3d600000
142#define LIS_12 0x3d800000
a6aa5195
AM
143#define LWZU_0_12 0x840c0000
144#define LWZ_0_12 0x800c0000
145#define LWZ_11_11 0x816b0000
146#define LWZ_11_30 0x817e0000
147#define LWZ_12_12 0x818c0000
148#define MFLR_0 0x7c0802a6
149#define MFLR_12 0x7d8802a6
150#define MTCTR_0 0x7c0903a6
151#define MTCTR_11 0x7d6903a6
152#define MTLR_0 0x7c0803a6
153#define NOP 0x60000000
154#define SUB_11_11_12 0x7d6c5850
7619e7c7
AM
155
156/* Offset of tp and dtp pointers from start of TLS block. */
157#define TP_OFFSET 0x7000
158#define DTP_OFFSET 0x8000
7fce784e 159\f
e47cd125 160static reloc_howto_type *ppc_elf_howto_table[R_PPC_max];
252b5132 161
8da6118f 162static reloc_howto_type ppc_elf_howto_raw[] = {
252b5132
RH
163 /* This reloc does nothing. */
164 HOWTO (R_PPC_NONE, /* type */
165 0, /* rightshift */
166 2, /* size (0 = byte, 1 = short, 2 = long) */
167 32, /* bitsize */
b34976b6 168 FALSE, /* pc_relative */
252b5132
RH
169 0, /* bitpos */
170 complain_overflow_bitfield, /* complain_on_overflow */
171 bfd_elf_generic_reloc, /* special_function */
172 "R_PPC_NONE", /* name */
b34976b6 173 FALSE, /* partial_inplace */
252b5132
RH
174 0, /* src_mask */
175 0, /* dst_mask */
b34976b6 176 FALSE), /* pcrel_offset */
252b5132
RH
177
178 /* A standard 32 bit relocation. */
179 HOWTO (R_PPC_ADDR32, /* type */
180 0, /* rightshift */
181 2, /* size (0 = byte, 1 = short, 2 = long) */
182 32, /* bitsize */
b34976b6 183 FALSE, /* pc_relative */
252b5132
RH
184 0, /* bitpos */
185 complain_overflow_bitfield, /* complain_on_overflow */
186 bfd_elf_generic_reloc, /* special_function */
187 "R_PPC_ADDR32", /* name */
b34976b6 188 FALSE, /* partial_inplace */
252b5132
RH
189 0, /* src_mask */
190 0xffffffff, /* dst_mask */
b34976b6 191 FALSE), /* pcrel_offset */
252b5132
RH
192
193 /* An absolute 26 bit branch; the lower two bits must be zero.
194 FIXME: we don't check that, we just clear them. */
195 HOWTO (R_PPC_ADDR24, /* type */
196 0, /* rightshift */
197 2, /* size (0 = byte, 1 = short, 2 = long) */
198 26, /* bitsize */
b34976b6 199 FALSE, /* pc_relative */
252b5132
RH
200 0, /* bitpos */
201 complain_overflow_bitfield, /* complain_on_overflow */
202 bfd_elf_generic_reloc, /* special_function */
203 "R_PPC_ADDR24", /* name */
b34976b6 204 FALSE, /* partial_inplace */
252b5132
RH
205 0, /* src_mask */
206 0x3fffffc, /* dst_mask */
b34976b6 207 FALSE), /* pcrel_offset */
252b5132
RH
208
209 /* A standard 16 bit relocation. */
210 HOWTO (R_PPC_ADDR16, /* type */
211 0, /* rightshift */
212 1, /* size (0 = byte, 1 = short, 2 = long) */
213 16, /* bitsize */
b34976b6 214 FALSE, /* pc_relative */
252b5132
RH
215 0, /* bitpos */
216 complain_overflow_bitfield, /* complain_on_overflow */
217 bfd_elf_generic_reloc, /* special_function */
218 "R_PPC_ADDR16", /* name */
b34976b6 219 FALSE, /* partial_inplace */
252b5132
RH
220 0, /* src_mask */
221 0xffff, /* dst_mask */
b34976b6 222 FALSE), /* pcrel_offset */
252b5132
RH
223
224 /* A 16 bit relocation without overflow. */
225 HOWTO (R_PPC_ADDR16_LO, /* type */
226 0, /* rightshift */
227 1, /* size (0 = byte, 1 = short, 2 = long) */
228 16, /* bitsize */
b34976b6 229 FALSE, /* pc_relative */
252b5132
RH
230 0, /* bitpos */
231 complain_overflow_dont,/* complain_on_overflow */
232 bfd_elf_generic_reloc, /* special_function */
233 "R_PPC_ADDR16_LO", /* name */
b34976b6 234 FALSE, /* partial_inplace */
252b5132
RH
235 0, /* src_mask */
236 0xffff, /* dst_mask */
b34976b6 237 FALSE), /* pcrel_offset */
252b5132
RH
238
239 /* The high order 16 bits of an address. */
240 HOWTO (R_PPC_ADDR16_HI, /* type */
241 16, /* rightshift */
242 1, /* size (0 = byte, 1 = short, 2 = long) */
243 16, /* bitsize */
b34976b6 244 FALSE, /* pc_relative */
252b5132
RH
245 0, /* bitpos */
246 complain_overflow_dont, /* complain_on_overflow */
247 bfd_elf_generic_reloc, /* special_function */
248 "R_PPC_ADDR16_HI", /* name */
b34976b6 249 FALSE, /* partial_inplace */
252b5132
RH
250 0, /* src_mask */
251 0xffff, /* dst_mask */
b34976b6 252 FALSE), /* pcrel_offset */
252b5132
RH
253
254 /* The high order 16 bits of an address, plus 1 if the contents of
8da6118f 255 the low 16 bits, treated as a signed number, is negative. */
252b5132
RH
256 HOWTO (R_PPC_ADDR16_HA, /* type */
257 16, /* rightshift */
258 1, /* size (0 = byte, 1 = short, 2 = long) */
259 16, /* bitsize */
b34976b6 260 FALSE, /* pc_relative */
252b5132
RH
261 0, /* bitpos */
262 complain_overflow_dont, /* complain_on_overflow */
263 ppc_elf_addr16_ha_reloc, /* special_function */
264 "R_PPC_ADDR16_HA", /* name */
b34976b6 265 FALSE, /* partial_inplace */
252b5132
RH
266 0, /* src_mask */
267 0xffff, /* dst_mask */
b34976b6 268 FALSE), /* pcrel_offset */
252b5132
RH
269
270 /* An absolute 16 bit branch; the lower two bits must be zero.
271 FIXME: we don't check that, we just clear them. */
272 HOWTO (R_PPC_ADDR14, /* type */
273 0, /* rightshift */
274 2, /* size (0 = byte, 1 = short, 2 = long) */
275 16, /* bitsize */
b34976b6 276 FALSE, /* pc_relative */
252b5132
RH
277 0, /* bitpos */
278 complain_overflow_bitfield, /* complain_on_overflow */
279 bfd_elf_generic_reloc, /* special_function */
280 "R_PPC_ADDR14", /* name */
b34976b6 281 FALSE, /* partial_inplace */
252b5132
RH
282 0, /* src_mask */
283 0xfffc, /* dst_mask */
b34976b6 284 FALSE), /* pcrel_offset */
252b5132
RH
285
286 /* An absolute 16 bit branch, for which bit 10 should be set to
287 indicate that the branch is expected to be taken. The lower two
8da6118f 288 bits must be zero. */
252b5132
RH
289 HOWTO (R_PPC_ADDR14_BRTAKEN, /* type */
290 0, /* rightshift */
291 2, /* size (0 = byte, 1 = short, 2 = long) */
292 16, /* bitsize */
b34976b6 293 FALSE, /* pc_relative */
252b5132
RH
294 0, /* bitpos */
295 complain_overflow_bitfield, /* complain_on_overflow */
296 bfd_elf_generic_reloc, /* special_function */
297 "R_PPC_ADDR14_BRTAKEN",/* name */
b34976b6 298 FALSE, /* partial_inplace */
252b5132
RH
299 0, /* src_mask */
300 0xfffc, /* dst_mask */
b34976b6 301 FALSE), /* pcrel_offset */
252b5132
RH
302
303 /* An absolute 16 bit branch, for which bit 10 should be set to
304 indicate that the branch is not expected to be taken. The lower
305 two bits must be zero. */
306 HOWTO (R_PPC_ADDR14_BRNTAKEN, /* type */
307 0, /* rightshift */
308 2, /* size (0 = byte, 1 = short, 2 = long) */
309 16, /* bitsize */
b34976b6 310 FALSE, /* pc_relative */
252b5132
RH
311 0, /* bitpos */
312 complain_overflow_bitfield, /* complain_on_overflow */
313 bfd_elf_generic_reloc, /* special_function */
314 "R_PPC_ADDR14_BRNTAKEN",/* name */
b34976b6 315 FALSE, /* partial_inplace */
252b5132
RH
316 0, /* src_mask */
317 0xfffc, /* dst_mask */
b34976b6 318 FALSE), /* pcrel_offset */
252b5132 319
8da6118f 320 /* A relative 26 bit branch; the lower two bits must be zero. */
252b5132
RH
321 HOWTO (R_PPC_REL24, /* type */
322 0, /* rightshift */
323 2, /* size (0 = byte, 1 = short, 2 = long) */
324 26, /* bitsize */
b34976b6 325 TRUE, /* pc_relative */
252b5132
RH
326 0, /* bitpos */
327 complain_overflow_signed, /* complain_on_overflow */
328 bfd_elf_generic_reloc, /* special_function */
329 "R_PPC_REL24", /* name */
b34976b6 330 FALSE, /* partial_inplace */
252b5132
RH
331 0, /* src_mask */
332 0x3fffffc, /* dst_mask */
b34976b6 333 TRUE), /* pcrel_offset */
252b5132 334
8da6118f 335 /* A relative 16 bit branch; the lower two bits must be zero. */
252b5132
RH
336 HOWTO (R_PPC_REL14, /* type */
337 0, /* rightshift */
338 2, /* size (0 = byte, 1 = short, 2 = long) */
339 16, /* bitsize */
b34976b6 340 TRUE, /* pc_relative */
252b5132
RH
341 0, /* bitpos */
342 complain_overflow_signed, /* complain_on_overflow */
343 bfd_elf_generic_reloc, /* special_function */
344 "R_PPC_REL14", /* name */
b34976b6 345 FALSE, /* partial_inplace */
252b5132
RH
346 0, /* src_mask */
347 0xfffc, /* dst_mask */
b34976b6 348 TRUE), /* pcrel_offset */
252b5132 349
8da6118f 350 /* A relative 16 bit branch. Bit 10 should be set to indicate that
252b5132
RH
351 the branch is expected to be taken. The lower two bits must be
352 zero. */
353 HOWTO (R_PPC_REL14_BRTAKEN, /* type */
354 0, /* rightshift */
355 2, /* size (0 = byte, 1 = short, 2 = long) */
356 16, /* bitsize */
b34976b6 357 TRUE, /* pc_relative */
252b5132
RH
358 0, /* bitpos */
359 complain_overflow_signed, /* complain_on_overflow */
360 bfd_elf_generic_reloc, /* special_function */
361 "R_PPC_REL14_BRTAKEN", /* name */
b34976b6 362 FALSE, /* partial_inplace */
252b5132
RH
363 0, /* src_mask */
364 0xfffc, /* dst_mask */
b34976b6 365 TRUE), /* pcrel_offset */
252b5132 366
8da6118f 367 /* A relative 16 bit branch. Bit 10 should be set to indicate that
252b5132
RH
368 the branch is not expected to be taken. The lower two bits must
369 be zero. */
370 HOWTO (R_PPC_REL14_BRNTAKEN, /* type */
371 0, /* rightshift */
372 2, /* size (0 = byte, 1 = short, 2 = long) */
373 16, /* bitsize */
b34976b6 374 TRUE, /* pc_relative */
252b5132
RH
375 0, /* bitpos */
376 complain_overflow_signed, /* complain_on_overflow */
377 bfd_elf_generic_reloc, /* special_function */
378 "R_PPC_REL14_BRNTAKEN",/* name */
b34976b6 379 FALSE, /* partial_inplace */
252b5132
RH
380 0, /* src_mask */
381 0xfffc, /* dst_mask */
b34976b6 382 TRUE), /* pcrel_offset */
252b5132
RH
383
384 /* Like R_PPC_ADDR16, but referring to the GOT table entry for the
385 symbol. */
386 HOWTO (R_PPC_GOT16, /* type */
387 0, /* rightshift */
388 1, /* size (0 = byte, 1 = short, 2 = long) */
389 16, /* bitsize */
b34976b6 390 FALSE, /* pc_relative */
252b5132
RH
391 0, /* bitpos */
392 complain_overflow_signed, /* complain_on_overflow */
393 bfd_elf_generic_reloc, /* special_function */
394 "R_PPC_GOT16", /* name */
b34976b6 395 FALSE, /* partial_inplace */
252b5132
RH
396 0, /* src_mask */
397 0xffff, /* dst_mask */
b34976b6 398 FALSE), /* pcrel_offset */
252b5132
RH
399
400 /* Like R_PPC_ADDR16_LO, but referring to the GOT table entry for
401 the symbol. */
402 HOWTO (R_PPC_GOT16_LO, /* type */
403 0, /* rightshift */
404 1, /* size (0 = byte, 1 = short, 2 = long) */
405 16, /* bitsize */
b34976b6 406 FALSE, /* pc_relative */
252b5132
RH
407 0, /* bitpos */
408 complain_overflow_dont, /* complain_on_overflow */
409 bfd_elf_generic_reloc, /* special_function */
410 "R_PPC_GOT16_LO", /* name */
b34976b6 411 FALSE, /* partial_inplace */
252b5132
RH
412 0, /* src_mask */
413 0xffff, /* dst_mask */
b34976b6 414 FALSE), /* pcrel_offset */
252b5132
RH
415
416 /* Like R_PPC_ADDR16_HI, but referring to the GOT table entry for
417 the symbol. */
418 HOWTO (R_PPC_GOT16_HI, /* type */
419 16, /* rightshift */
420 1, /* size (0 = byte, 1 = short, 2 = long) */
421 16, /* bitsize */
b34976b6 422 FALSE, /* pc_relative */
252b5132
RH
423 0, /* bitpos */
424 complain_overflow_bitfield, /* complain_on_overflow */
425 bfd_elf_generic_reloc, /* special_function */
426 "R_PPC_GOT16_HI", /* name */
b34976b6 427 FALSE, /* partial_inplace */
252b5132
RH
428 0, /* src_mask */
429 0xffff, /* dst_mask */
b34976b6 430 FALSE), /* pcrel_offset */
252b5132
RH
431
432 /* Like R_PPC_ADDR16_HA, but referring to the GOT table entry for
433 the symbol. */
434 HOWTO (R_PPC_GOT16_HA, /* type */
435 16, /* rightshift */
436 1, /* size (0 = byte, 1 = short, 2 = long) */
437 16, /* bitsize */
b34976b6 438 FALSE, /* pc_relative */
252b5132
RH
439 0, /* bitpos */
440 complain_overflow_bitfield, /* complain_on_overflow */
441 ppc_elf_addr16_ha_reloc, /* special_function */
442 "R_PPC_GOT16_HA", /* name */
b34976b6 443 FALSE, /* partial_inplace */
252b5132
RH
444 0, /* src_mask */
445 0xffff, /* dst_mask */
b34976b6 446 FALSE), /* pcrel_offset */
252b5132
RH
447
448 /* Like R_PPC_REL24, but referring to the procedure linkage table
449 entry for the symbol. */
450 HOWTO (R_PPC_PLTREL24, /* type */
451 0, /* rightshift */
452 2, /* size (0 = byte, 1 = short, 2 = long) */
453 26, /* bitsize */
b34976b6 454 TRUE, /* pc_relative */
252b5132
RH
455 0, /* bitpos */
456 complain_overflow_signed, /* complain_on_overflow */
457 bfd_elf_generic_reloc, /* special_function */
458 "R_PPC_PLTREL24", /* name */
b34976b6 459 FALSE, /* partial_inplace */
252b5132
RH
460 0, /* src_mask */
461 0x3fffffc, /* dst_mask */
b34976b6 462 TRUE), /* pcrel_offset */
252b5132
RH
463
464 /* This is used only by the dynamic linker. The symbol should exist
465 both in the object being run and in some shared library. The
466 dynamic linker copies the data addressed by the symbol from the
467 shared library into the object, because the object being
468 run has to have the data at some particular address. */
469 HOWTO (R_PPC_COPY, /* type */
470 0, /* rightshift */
471 2, /* size (0 = byte, 1 = short, 2 = long) */
472 32, /* bitsize */
b34976b6 473 FALSE, /* pc_relative */
252b5132
RH
474 0, /* bitpos */
475 complain_overflow_bitfield, /* complain_on_overflow */
476 bfd_elf_generic_reloc, /* special_function */
477 "R_PPC_COPY", /* name */
b34976b6 478 FALSE, /* partial_inplace */
252b5132
RH
479 0, /* src_mask */
480 0, /* dst_mask */
b34976b6 481 FALSE), /* pcrel_offset */
252b5132
RH
482
483 /* Like R_PPC_ADDR32, but used when setting global offset table
484 entries. */
485 HOWTO (R_PPC_GLOB_DAT, /* type */
486 0, /* rightshift */
487 2, /* size (0 = byte, 1 = short, 2 = long) */
488 32, /* bitsize */
b34976b6 489 FALSE, /* pc_relative */
252b5132
RH
490 0, /* bitpos */
491 complain_overflow_bitfield, /* complain_on_overflow */
492 bfd_elf_generic_reloc, /* special_function */
493 "R_PPC_GLOB_DAT", /* name */
b34976b6 494 FALSE, /* partial_inplace */
252b5132
RH
495 0, /* src_mask */
496 0xffffffff, /* dst_mask */
b34976b6 497 FALSE), /* pcrel_offset */
252b5132
RH
498
499 /* Marks a procedure linkage table entry for a symbol. */
500 HOWTO (R_PPC_JMP_SLOT, /* type */
501 0, /* rightshift */
502 2, /* size (0 = byte, 1 = short, 2 = long) */
503 32, /* bitsize */
b34976b6 504 FALSE, /* pc_relative */
252b5132
RH
505 0, /* bitpos */
506 complain_overflow_bitfield, /* complain_on_overflow */
507 bfd_elf_generic_reloc, /* special_function */
508 "R_PPC_JMP_SLOT", /* name */
b34976b6 509 FALSE, /* partial_inplace */
252b5132
RH
510 0, /* src_mask */
511 0, /* dst_mask */
b34976b6 512 FALSE), /* pcrel_offset */
252b5132
RH
513
514 /* Used only by the dynamic linker. When the object is run, this
515 longword is set to the load address of the object, plus the
516 addend. */
517 HOWTO (R_PPC_RELATIVE, /* type */
518 0, /* rightshift */
519 2, /* size (0 = byte, 1 = short, 2 = long) */
520 32, /* bitsize */
b34976b6 521 FALSE, /* pc_relative */
252b5132
RH
522 0, /* bitpos */
523 complain_overflow_bitfield, /* complain_on_overflow */
524 bfd_elf_generic_reloc, /* special_function */
525 "R_PPC_RELATIVE", /* name */
b34976b6 526 FALSE, /* partial_inplace */
252b5132
RH
527 0, /* src_mask */
528 0xffffffff, /* dst_mask */
b34976b6 529 FALSE), /* pcrel_offset */
252b5132
RH
530
531 /* Like R_PPC_REL24, but uses the value of the symbol within the
532 object rather than the final value. Normally used for
533 _GLOBAL_OFFSET_TABLE_. */
534 HOWTO (R_PPC_LOCAL24PC, /* type */
535 0, /* rightshift */
536 2, /* size (0 = byte, 1 = short, 2 = long) */
537 26, /* bitsize */
b34976b6 538 TRUE, /* pc_relative */
252b5132
RH
539 0, /* bitpos */
540 complain_overflow_signed, /* complain_on_overflow */
541 bfd_elf_generic_reloc, /* special_function */
542 "R_PPC_LOCAL24PC", /* name */
b34976b6 543 FALSE, /* partial_inplace */
252b5132
RH
544 0, /* src_mask */
545 0x3fffffc, /* dst_mask */
b34976b6 546 TRUE), /* pcrel_offset */
252b5132
RH
547
548 /* Like R_PPC_ADDR32, but may be unaligned. */
549 HOWTO (R_PPC_UADDR32, /* type */
550 0, /* rightshift */
551 2, /* size (0 = byte, 1 = short, 2 = long) */
552 32, /* bitsize */
b34976b6 553 FALSE, /* pc_relative */
252b5132
RH
554 0, /* bitpos */
555 complain_overflow_bitfield, /* complain_on_overflow */
556 bfd_elf_generic_reloc, /* special_function */
557 "R_PPC_UADDR32", /* name */
b34976b6 558 FALSE, /* partial_inplace */
252b5132
RH
559 0, /* src_mask */
560 0xffffffff, /* dst_mask */
b34976b6 561 FALSE), /* pcrel_offset */
252b5132
RH
562
563 /* Like R_PPC_ADDR16, but may be unaligned. */
564 HOWTO (R_PPC_UADDR16, /* type */
565 0, /* rightshift */
566 1, /* size (0 = byte, 1 = short, 2 = long) */
567 16, /* bitsize */
b34976b6 568 FALSE, /* pc_relative */
252b5132
RH
569 0, /* bitpos */
570 complain_overflow_bitfield, /* complain_on_overflow */
571 bfd_elf_generic_reloc, /* special_function */
572 "R_PPC_UADDR16", /* name */
b34976b6 573 FALSE, /* partial_inplace */
252b5132
RH
574 0, /* src_mask */
575 0xffff, /* dst_mask */
b34976b6 576 FALSE), /* pcrel_offset */
252b5132
RH
577
578 /* 32-bit PC relative */
579 HOWTO (R_PPC_REL32, /* type */
580 0, /* rightshift */
581 2, /* size (0 = byte, 1 = short, 2 = long) */
582 32, /* bitsize */
b34976b6 583 TRUE, /* pc_relative */
252b5132
RH
584 0, /* bitpos */
585 complain_overflow_bitfield, /* complain_on_overflow */
586 bfd_elf_generic_reloc, /* special_function */
587 "R_PPC_REL32", /* name */
b34976b6 588 FALSE, /* partial_inplace */
252b5132
RH
589 0, /* src_mask */
590 0xffffffff, /* dst_mask */
b34976b6 591 TRUE), /* pcrel_offset */
252b5132
RH
592
593 /* 32-bit relocation to the symbol's procedure linkage table.
c3668558 594 FIXME: not supported. */
252b5132
RH
595 HOWTO (R_PPC_PLT32, /* type */
596 0, /* rightshift */
597 2, /* size (0 = byte, 1 = short, 2 = long) */
598 32, /* bitsize */
b34976b6 599 FALSE, /* pc_relative */
252b5132
RH
600 0, /* bitpos */
601 complain_overflow_bitfield, /* complain_on_overflow */
602 bfd_elf_generic_reloc, /* special_function */
603 "R_PPC_PLT32", /* name */
b34976b6 604 FALSE, /* partial_inplace */
252b5132
RH
605 0, /* src_mask */
606 0, /* dst_mask */
b34976b6 607 FALSE), /* pcrel_offset */
252b5132
RH
608
609 /* 32-bit PC relative relocation to the symbol's procedure linkage table.
c3668558 610 FIXME: not supported. */
252b5132
RH
611 HOWTO (R_PPC_PLTREL32, /* type */
612 0, /* rightshift */
613 2, /* size (0 = byte, 1 = short, 2 = long) */
614 32, /* bitsize */
b34976b6 615 TRUE, /* pc_relative */
252b5132
RH
616 0, /* bitpos */
617 complain_overflow_bitfield, /* complain_on_overflow */
618 bfd_elf_generic_reloc, /* special_function */
619 "R_PPC_PLTREL32", /* name */
b34976b6 620 FALSE, /* partial_inplace */
252b5132
RH
621 0, /* src_mask */
622 0, /* dst_mask */
b34976b6 623 TRUE), /* pcrel_offset */
252b5132
RH
624
625 /* Like R_PPC_ADDR16_LO, but referring to the PLT table entry for
626 the symbol. */
627 HOWTO (R_PPC_PLT16_LO, /* type */
628 0, /* rightshift */
629 1, /* size (0 = byte, 1 = short, 2 = long) */
630 16, /* bitsize */
b34976b6 631 FALSE, /* pc_relative */
252b5132
RH
632 0, /* bitpos */
633 complain_overflow_dont, /* complain_on_overflow */
634 bfd_elf_generic_reloc, /* special_function */
635 "R_PPC_PLT16_LO", /* name */
b34976b6 636 FALSE, /* partial_inplace */
252b5132
RH
637 0, /* src_mask */
638 0xffff, /* dst_mask */
b34976b6 639 FALSE), /* pcrel_offset */
252b5132
RH
640
641 /* Like R_PPC_ADDR16_HI, but referring to the PLT table entry for
642 the symbol. */
643 HOWTO (R_PPC_PLT16_HI, /* type */
644 16, /* rightshift */
645 1, /* size (0 = byte, 1 = short, 2 = long) */
646 16, /* bitsize */
b34976b6 647 FALSE, /* pc_relative */
252b5132
RH
648 0, /* bitpos */
649 complain_overflow_bitfield, /* complain_on_overflow */
650 bfd_elf_generic_reloc, /* special_function */
651 "R_PPC_PLT16_HI", /* name */
b34976b6 652 FALSE, /* partial_inplace */
252b5132
RH
653 0, /* src_mask */
654 0xffff, /* dst_mask */
b34976b6 655 FALSE), /* pcrel_offset */
252b5132
RH
656
657 /* Like R_PPC_ADDR16_HA, but referring to the PLT table entry for
658 the symbol. */
659 HOWTO (R_PPC_PLT16_HA, /* type */
660 16, /* rightshift */
661 1, /* size (0 = byte, 1 = short, 2 = long) */
662 16, /* bitsize */
b34976b6 663 FALSE, /* pc_relative */
252b5132
RH
664 0, /* bitpos */
665 complain_overflow_bitfield, /* complain_on_overflow */
666 ppc_elf_addr16_ha_reloc, /* special_function */
667 "R_PPC_PLT16_HA", /* name */
b34976b6 668 FALSE, /* partial_inplace */
252b5132
RH
669 0, /* src_mask */
670 0xffff, /* dst_mask */
b34976b6 671 FALSE), /* pcrel_offset */
252b5132
RH
672
673 /* A sign-extended 16 bit value relative to _SDA_BASE_, for use with
674 small data items. */
675 HOWTO (R_PPC_SDAREL16, /* type */
676 0, /* rightshift */
677 1, /* size (0 = byte, 1 = short, 2 = long) */
678 16, /* bitsize */
b34976b6 679 FALSE, /* pc_relative */
252b5132
RH
680 0, /* bitpos */
681 complain_overflow_signed, /* complain_on_overflow */
682 bfd_elf_generic_reloc, /* special_function */
683 "R_PPC_SDAREL16", /* name */
b34976b6 684 FALSE, /* partial_inplace */
252b5132
RH
685 0, /* src_mask */
686 0xffff, /* dst_mask */
b34976b6 687 FALSE), /* pcrel_offset */
252b5132 688
c061c2d8 689 /* 16-bit section relative relocation. */
252b5132
RH
690 HOWTO (R_PPC_SECTOFF, /* type */
691 0, /* rightshift */
c061c2d8
AM
692 1, /* size (0 = byte, 1 = short, 2 = long) */
693 16, /* bitsize */
b34976b6 694 FALSE, /* pc_relative */
252b5132
RH
695 0, /* bitpos */
696 complain_overflow_bitfield, /* complain_on_overflow */
697 bfd_elf_generic_reloc, /* special_function */
698 "R_PPC_SECTOFF", /* name */
b34976b6 699 FALSE, /* partial_inplace */
252b5132 700 0, /* src_mask */
c061c2d8 701 0xffff, /* dst_mask */
b34976b6 702 FALSE), /* pcrel_offset */
252b5132 703
c3668558 704 /* 16-bit lower half section relative relocation. */
252b5132
RH
705 HOWTO (R_PPC_SECTOFF_LO, /* type */
706 0, /* rightshift */
707 1, /* size (0 = byte, 1 = short, 2 = long) */
708 16, /* bitsize */
b34976b6 709 FALSE, /* pc_relative */
252b5132
RH
710 0, /* bitpos */
711 complain_overflow_dont, /* complain_on_overflow */
712 bfd_elf_generic_reloc, /* special_function */
713 "R_PPC_SECTOFF_LO", /* name */
b34976b6 714 FALSE, /* partial_inplace */
252b5132
RH
715 0, /* src_mask */
716 0xffff, /* dst_mask */
b34976b6 717 FALSE), /* pcrel_offset */
252b5132 718
c3668558 719 /* 16-bit upper half section relative relocation. */
252b5132
RH
720 HOWTO (R_PPC_SECTOFF_HI, /* type */
721 16, /* rightshift */
722 1, /* size (0 = byte, 1 = short, 2 = long) */
723 16, /* bitsize */
b34976b6 724 FALSE, /* pc_relative */
252b5132
RH
725 0, /* bitpos */
726 complain_overflow_bitfield, /* complain_on_overflow */
727 bfd_elf_generic_reloc, /* special_function */
728 "R_PPC_SECTOFF_HI", /* name */
b34976b6 729 FALSE, /* partial_inplace */
252b5132
RH
730 0, /* src_mask */
731 0xffff, /* dst_mask */
b34976b6 732 FALSE), /* pcrel_offset */
252b5132 733
c3668558 734 /* 16-bit upper half adjusted section relative relocation. */
252b5132
RH
735 HOWTO (R_PPC_SECTOFF_HA, /* type */
736 16, /* rightshift */
737 1, /* size (0 = byte, 1 = short, 2 = long) */
738 16, /* bitsize */
b34976b6 739 FALSE, /* pc_relative */
252b5132
RH
740 0, /* bitpos */
741 complain_overflow_bitfield, /* complain_on_overflow */
742 ppc_elf_addr16_ha_reloc, /* special_function */
743 "R_PPC_SECTOFF_HA", /* name */
b34976b6 744 FALSE, /* partial_inplace */
252b5132
RH
745 0, /* src_mask */
746 0xffff, /* dst_mask */
b34976b6 747 FALSE), /* pcrel_offset */
252b5132 748
7619e7c7
AM
749 /* Marker reloc for TLS. */
750 HOWTO (R_PPC_TLS,
252b5132
RH
751 0, /* rightshift */
752 2, /* size (0 = byte, 1 = short, 2 = long) */
753 32, /* bitsize */
b34976b6 754 FALSE, /* pc_relative */
252b5132 755 0, /* bitpos */
7619e7c7 756 complain_overflow_dont, /* complain_on_overflow */
252b5132 757 bfd_elf_generic_reloc, /* special_function */
7619e7c7
AM
758 "R_PPC_TLS", /* name */
759 FALSE, /* partial_inplace */
760 0, /* src_mask */
761 0, /* dst_mask */
762 FALSE), /* pcrel_offset */
763
764 /* Computes the load module index of the load module that contains the
765 definition of its TLS sym. */
766 HOWTO (R_PPC_DTPMOD32,
767 0, /* rightshift */
768 2, /* size (0 = byte, 1 = short, 2 = long) */
769 32, /* bitsize */
770 FALSE, /* pc_relative */
771 0, /* bitpos */
772 complain_overflow_dont, /* complain_on_overflow */
773 ppc_elf_unhandled_reloc, /* special_function */
774 "R_PPC_DTPMOD32", /* name */
b34976b6 775 FALSE, /* partial_inplace */
252b5132
RH
776 0, /* src_mask */
777 0xffffffff, /* dst_mask */
b34976b6 778 FALSE), /* pcrel_offset */
252b5132 779
7619e7c7
AM
780 /* Computes a dtv-relative displacement, the difference between the value
781 of sym+add and the base address of the thread-local storage block that
782 contains the definition of sym, minus 0x8000. */
783 HOWTO (R_PPC_DTPREL32,
784 0, /* rightshift */
785 2, /* size (0 = byte, 1 = short, 2 = long) */
786 32, /* bitsize */
787 FALSE, /* pc_relative */
788 0, /* bitpos */
789 complain_overflow_dont, /* complain_on_overflow */
790 ppc_elf_unhandled_reloc, /* special_function */
791 "R_PPC_DTPREL32", /* name */
792 FALSE, /* partial_inplace */
793 0, /* src_mask */
794 0xffffffff, /* dst_mask */
795 FALSE), /* pcrel_offset */
796
797 /* A 16 bit dtprel reloc. */
798 HOWTO (R_PPC_DTPREL16,
252b5132
RH
799 0, /* rightshift */
800 1, /* size (0 = byte, 1 = short, 2 = long) */
801 16, /* bitsize */
b34976b6 802 FALSE, /* pc_relative */
252b5132 803 0, /* bitpos */
7619e7c7
AM
804 complain_overflow_signed, /* complain_on_overflow */
805 ppc_elf_unhandled_reloc, /* special_function */
806 "R_PPC_DTPREL16", /* name */
b34976b6 807 FALSE, /* partial_inplace */
252b5132
RH
808 0, /* src_mask */
809 0xffff, /* dst_mask */
b34976b6 810 FALSE), /* pcrel_offset */
252b5132 811
7619e7c7
AM
812 /* Like DTPREL16, but no overflow. */
813 HOWTO (R_PPC_DTPREL16_LO,
252b5132
RH
814 0, /* rightshift */
815 1, /* size (0 = byte, 1 = short, 2 = long) */
816 16, /* bitsize */
b34976b6 817 FALSE, /* pc_relative */
252b5132 818 0, /* bitpos */
7619e7c7
AM
819 complain_overflow_dont, /* complain_on_overflow */
820 ppc_elf_unhandled_reloc, /* special_function */
821 "R_PPC_DTPREL16_LO", /* name */
b34976b6 822 FALSE, /* partial_inplace */
252b5132
RH
823 0, /* src_mask */
824 0xffff, /* dst_mask */
b34976b6 825 FALSE), /* pcrel_offset */
252b5132 826
7619e7c7
AM
827 /* Like DTPREL16_LO, but next higher group of 16 bits. */
828 HOWTO (R_PPC_DTPREL16_HI,
252b5132
RH
829 16, /* rightshift */
830 1, /* size (0 = byte, 1 = short, 2 = long) */
831 16, /* bitsize */
b34976b6 832 FALSE, /* pc_relative */
252b5132
RH
833 0, /* bitpos */
834 complain_overflow_dont, /* complain_on_overflow */
7619e7c7
AM
835 ppc_elf_unhandled_reloc, /* special_function */
836 "R_PPC_DTPREL16_HI", /* name */
b34976b6 837 FALSE, /* partial_inplace */
252b5132
RH
838 0, /* src_mask */
839 0xffff, /* dst_mask */
b34976b6 840 FALSE), /* pcrel_offset */
252b5132 841
7619e7c7
AM
842 /* Like DTPREL16_HI, but adjust for low 16 bits. */
843 HOWTO (R_PPC_DTPREL16_HA,
252b5132
RH
844 16, /* rightshift */
845 1, /* size (0 = byte, 1 = short, 2 = long) */
846 16, /* bitsize */
b34976b6 847 FALSE, /* pc_relative */
252b5132
RH
848 0, /* bitpos */
849 complain_overflow_dont, /* complain_on_overflow */
7619e7c7
AM
850 ppc_elf_unhandled_reloc, /* special_function */
851 "R_PPC_DTPREL16_HA", /* name */
b34976b6 852 FALSE, /* partial_inplace */
252b5132
RH
853 0, /* src_mask */
854 0xffff, /* dst_mask */
b34976b6 855 FALSE), /* pcrel_offset */
252b5132 856
7619e7c7
AM
857 /* Computes a tp-relative displacement, the difference between the value of
858 sym+add and the value of the thread pointer (r13). */
859 HOWTO (R_PPC_TPREL32,
860 0, /* rightshift */
861 2, /* size (0 = byte, 1 = short, 2 = long) */
862 32, /* bitsize */
863 FALSE, /* pc_relative */
864 0, /* bitpos */
865 complain_overflow_dont, /* complain_on_overflow */
866 ppc_elf_unhandled_reloc, /* special_function */
867 "R_PPC_TPREL32", /* name */
868 FALSE, /* partial_inplace */
869 0, /* src_mask */
870 0xffffffff, /* dst_mask */
871 FALSE), /* pcrel_offset */
872
873 /* A 16 bit tprel reloc. */
874 HOWTO (R_PPC_TPREL16,
252b5132
RH
875 0, /* rightshift */
876 1, /* size (0 = byte, 1 = short, 2 = long) */
877 16, /* bitsize */
b34976b6 878 FALSE, /* pc_relative */
252b5132 879 0, /* bitpos */
7619e7c7
AM
880 complain_overflow_signed, /* complain_on_overflow */
881 ppc_elf_unhandled_reloc, /* special_function */
882 "R_PPC_TPREL16", /* name */
b34976b6 883 FALSE, /* partial_inplace */
252b5132
RH
884 0, /* src_mask */
885 0xffff, /* dst_mask */
b34976b6 886 FALSE), /* pcrel_offset */
252b5132 887
7619e7c7
AM
888 /* Like TPREL16, but no overflow. */
889 HOWTO (R_PPC_TPREL16_LO,
252b5132
RH
890 0, /* rightshift */
891 1, /* size (0 = byte, 1 = short, 2 = long) */
892 16, /* bitsize */
b34976b6 893 FALSE, /* pc_relative */
252b5132 894 0, /* bitpos */
7619e7c7
AM
895 complain_overflow_dont, /* complain_on_overflow */
896 ppc_elf_unhandled_reloc, /* special_function */
897 "R_PPC_TPREL16_LO", /* name */
b34976b6 898 FALSE, /* partial_inplace */
252b5132
RH
899 0, /* src_mask */
900 0xffff, /* dst_mask */
b34976b6 901 FALSE), /* pcrel_offset */
252b5132 902
7619e7c7
AM
903 /* Like TPREL16_LO, but next higher group of 16 bits. */
904 HOWTO (R_PPC_TPREL16_HI,
905 16, /* rightshift */
906 1, /* size (0 = byte, 1 = short, 2 = long) */
907 16, /* bitsize */
908 FALSE, /* pc_relative */
909 0, /* bitpos */
910 complain_overflow_dont, /* complain_on_overflow */
911 ppc_elf_unhandled_reloc, /* special_function */
912 "R_PPC_TPREL16_HI", /* name */
913 FALSE, /* partial_inplace */
914 0, /* src_mask */
915 0xffff, /* dst_mask */
916 FALSE), /* pcrel_offset */
917
918 /* Like TPREL16_HI, but adjust for low 16 bits. */
919 HOWTO (R_PPC_TPREL16_HA,
920 16, /* rightshift */
921 1, /* size (0 = byte, 1 = short, 2 = long) */
922 16, /* bitsize */
923 FALSE, /* pc_relative */
924 0, /* bitpos */
925 complain_overflow_dont, /* complain_on_overflow */
926 ppc_elf_unhandled_reloc, /* special_function */
927 "R_PPC_TPREL16_HA", /* name */
928 FALSE, /* partial_inplace */
929 0, /* src_mask */
930 0xffff, /* dst_mask */
931 FALSE), /* pcrel_offset */
932
933 /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
934 with values (sym+add)@dtpmod and (sym+add)@dtprel, and computes the offset
935 to the first entry. */
936 HOWTO (R_PPC_GOT_TLSGD16,
252b5132
RH
937 0, /* rightshift */
938 1, /* size (0 = byte, 1 = short, 2 = long) */
939 16, /* bitsize */
b34976b6 940 FALSE, /* pc_relative */
252b5132
RH
941 0, /* bitpos */
942 complain_overflow_signed, /* complain_on_overflow */
7619e7c7
AM
943 ppc_elf_unhandled_reloc, /* special_function */
944 "R_PPC_GOT_TLSGD16", /* name */
b34976b6 945 FALSE, /* partial_inplace */
252b5132
RH
946 0, /* src_mask */
947 0xffff, /* dst_mask */
b34976b6 948 FALSE), /* pcrel_offset */
252b5132 949
7619e7c7
AM
950 /* Like GOT_TLSGD16, but no overflow. */
951 HOWTO (R_PPC_GOT_TLSGD16_LO,
252b5132 952 0, /* rightshift */
7619e7c7 953 1, /* size (0 = byte, 1 = short, 2 = long) */
252b5132 954 16, /* bitsize */
b34976b6 955 FALSE, /* pc_relative */
252b5132 956 0, /* bitpos */
7619e7c7
AM
957 complain_overflow_dont, /* complain_on_overflow */
958 ppc_elf_unhandled_reloc, /* special_function */
959 "R_PPC_GOT_TLSGD16_LO", /* name */
b34976b6 960 FALSE, /* partial_inplace */
252b5132
RH
961 0, /* src_mask */
962 0xffff, /* dst_mask */
b34976b6 963 FALSE), /* pcrel_offset */
252b5132 964
7619e7c7
AM
965 /* Like GOT_TLSGD16_LO, but next higher group of 16 bits. */
966 HOWTO (R_PPC_GOT_TLSGD16_HI,
967 16, /* rightshift */
968 1, /* size (0 = byte, 1 = short, 2 = long) */
969 16, /* bitsize */
970 FALSE, /* pc_relative */
971 0, /* bitpos */
972 complain_overflow_dont, /* complain_on_overflow */
973 ppc_elf_unhandled_reloc, /* special_function */
974 "R_PPC_GOT_TLSGD16_HI", /* name */
975 FALSE, /* partial_inplace */
976 0, /* src_mask */
977 0xffff, /* dst_mask */
978 FALSE), /* pcrel_offset */
252b5132 979
7619e7c7
AM
980 /* Like GOT_TLSGD16_HI, but adjust for low 16 bits. */
981 HOWTO (R_PPC_GOT_TLSGD16_HA,
982 16, /* rightshift */
983 1, /* size (0 = byte, 1 = short, 2 = long) */
984 16, /* bitsize */
985 FALSE, /* pc_relative */
986 0, /* bitpos */
987 complain_overflow_dont, /* complain_on_overflow */
988 ppc_elf_unhandled_reloc, /* special_function */
989 "R_PPC_GOT_TLSGD16_HA", /* name */
990 FALSE, /* partial_inplace */
991 0, /* src_mask */
992 0xffff, /* dst_mask */
993 FALSE), /* pcrel_offset */
994
995 /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
996 with values (sym+add)@dtpmod and zero, and computes the offset to the
997 first entry. */
998 HOWTO (R_PPC_GOT_TLSLD16,
252b5132
RH
999 0, /* rightshift */
1000 1, /* size (0 = byte, 1 = short, 2 = long) */
1001 16, /* bitsize */
7619e7c7 1002 FALSE, /* pc_relative */
252b5132
RH
1003 0, /* bitpos */
1004 complain_overflow_signed, /* complain_on_overflow */
7619e7c7
AM
1005 ppc_elf_unhandled_reloc, /* special_function */
1006 "R_PPC_GOT_TLSLD16", /* name */
b34976b6 1007 FALSE, /* partial_inplace */
252b5132
RH
1008 0, /* src_mask */
1009 0xffff, /* dst_mask */
b34976b6 1010 FALSE), /* pcrel_offset */
252b5132 1011
7619e7c7
AM
1012 /* Like GOT_TLSLD16, but no overflow. */
1013 HOWTO (R_PPC_GOT_TLSLD16_LO,
252b5132 1014 0, /* rightshift */
7619e7c7
AM
1015 1, /* size (0 = byte, 1 = short, 2 = long) */
1016 16, /* bitsize */
b34976b6 1017 FALSE, /* pc_relative */
252b5132
RH
1018 0, /* bitpos */
1019 complain_overflow_dont, /* complain_on_overflow */
7619e7c7
AM
1020 ppc_elf_unhandled_reloc, /* special_function */
1021 "R_PPC_GOT_TLSLD16_LO", /* name */
b34976b6 1022 FALSE, /* partial_inplace */
252b5132 1023 0, /* src_mask */
7619e7c7 1024 0xffff, /* dst_mask */
b34976b6 1025 FALSE), /* pcrel_offset */
252b5132 1026
7619e7c7
AM
1027 /* Like GOT_TLSLD16_LO, but next higher group of 16 bits. */
1028 HOWTO (R_PPC_GOT_TLSLD16_HI,
1029 16, /* rightshift */
1030 1, /* size (0 = byte, 1 = short, 2 = long) */
1031 16, /* bitsize */
b34976b6 1032 FALSE, /* pc_relative */
252b5132
RH
1033 0, /* bitpos */
1034 complain_overflow_dont, /* complain_on_overflow */
7619e7c7
AM
1035 ppc_elf_unhandled_reloc, /* special_function */
1036 "R_PPC_GOT_TLSLD16_HI", /* name */
b34976b6 1037 FALSE, /* partial_inplace */
252b5132 1038 0, /* src_mask */
7619e7c7 1039 0xffff, /* dst_mask */
b34976b6 1040 FALSE), /* pcrel_offset */
252b5132 1041
7619e7c7
AM
1042 /* Like GOT_TLSLD16_HI, but adjust for low 16 bits. */
1043 HOWTO (R_PPC_GOT_TLSLD16_HA,
1044 16, /* rightshift */
1045 1, /* size (0 = byte, 1 = short, 2 = long) */
1046 16, /* bitsize */
1047 FALSE, /* pc_relative */
1048 0, /* bitpos */
1049 complain_overflow_dont, /* complain_on_overflow */
1050 ppc_elf_unhandled_reloc, /* special_function */
1051 "R_PPC_GOT_TLSLD16_HA", /* name */
1052 FALSE, /* partial_inplace */
1053 0, /* src_mask */
1054 0xffff, /* dst_mask */
1055 FALSE), /* pcrel_offset */
1056
1057 /* Allocates an entry in the GOT with value (sym+add)@dtprel, and computes
1058 the offset to the entry. */
1059 HOWTO (R_PPC_GOT_DTPREL16,
252b5132
RH
1060 0, /* rightshift */
1061 1, /* size (0 = byte, 1 = short, 2 = long) */
1062 16, /* bitsize */
b34976b6 1063 FALSE, /* pc_relative */
252b5132
RH
1064 0, /* bitpos */
1065 complain_overflow_signed, /* complain_on_overflow */
7619e7c7
AM
1066 ppc_elf_unhandled_reloc, /* special_function */
1067 "R_PPC_GOT_DTPREL16", /* name */
b34976b6 1068 FALSE, /* partial_inplace */
252b5132
RH
1069 0, /* src_mask */
1070 0xffff, /* dst_mask */
b34976b6 1071 FALSE), /* pcrel_offset */
252b5132 1072
7619e7c7
AM
1073 /* Like GOT_DTPREL16, but no overflow. */
1074 HOWTO (R_PPC_GOT_DTPREL16_LO,
1075 0, /* rightshift */
1076 1, /* size (0 = byte, 1 = short, 2 = long) */
1077 16, /* bitsize */
1078 FALSE, /* pc_relative */
1079 0, /* bitpos */
1080 complain_overflow_dont, /* complain_on_overflow */
1081 ppc_elf_unhandled_reloc, /* special_function */
1082 "R_PPC_GOT_DTPREL16_LO", /* name */
1083 FALSE, /* partial_inplace */
1084 0, /* src_mask */
1085 0xffff, /* dst_mask */
1086 FALSE), /* pcrel_offset */
252b5132 1087
7619e7c7
AM
1088 /* Like GOT_DTPREL16_LO, but next higher group of 16 bits. */
1089 HOWTO (R_PPC_GOT_DTPREL16_HI,
1090 16, /* rightshift */
1091 1, /* size (0 = byte, 1 = short, 2 = long) */
1092 16, /* bitsize */
1093 FALSE, /* pc_relative */
1094 0, /* bitpos */
1095 complain_overflow_dont, /* complain_on_overflow */
1096 ppc_elf_unhandled_reloc, /* special_function */
1097 "R_PPC_GOT_DTPREL16_HI", /* name */
1098 FALSE, /* partial_inplace */
1099 0, /* src_mask */
1100 0xffff, /* dst_mask */
1101 FALSE), /* pcrel_offset */
252b5132 1102
7619e7c7
AM
1103 /* Like GOT_DTPREL16_HI, but adjust for low 16 bits. */
1104 HOWTO (R_PPC_GOT_DTPREL16_HA,
1105 16, /* rightshift */
1106 1, /* size (0 = byte, 1 = short, 2 = long) */
1107 16, /* bitsize */
1108 FALSE, /* pc_relative */
1109 0, /* bitpos */
1110 complain_overflow_dont, /* complain_on_overflow */
1111 ppc_elf_unhandled_reloc, /* special_function */
1112 "R_PPC_GOT_DTPREL16_HA", /* name */
1113 FALSE, /* partial_inplace */
1114 0, /* src_mask */
1115 0xffff, /* dst_mask */
1116 FALSE), /* pcrel_offset */
c3668558 1117
7619e7c7
AM
1118 /* Allocates an entry in the GOT with value (sym+add)@tprel, and computes the
1119 offset to the entry. */
1120 HOWTO (R_PPC_GOT_TPREL16,
1121 0, /* rightshift */
1122 1, /* size (0 = byte, 1 = short, 2 = long) */
1123 16, /* bitsize */
1124 FALSE, /* pc_relative */
1125 0, /* bitpos */
1126 complain_overflow_signed, /* complain_on_overflow */
1127 ppc_elf_unhandled_reloc, /* special_function */
1128 "R_PPC_GOT_TPREL16", /* name */
1129 FALSE, /* partial_inplace */
1130 0, /* src_mask */
1131 0xffff, /* dst_mask */
1132 FALSE), /* pcrel_offset */
1133
1134 /* Like GOT_TPREL16, but no overflow. */
1135 HOWTO (R_PPC_GOT_TPREL16_LO,
1136 0, /* rightshift */
1137 1, /* size (0 = byte, 1 = short, 2 = long) */
1138 16, /* bitsize */
1139 FALSE, /* pc_relative */
1140 0, /* bitpos */
1141 complain_overflow_dont, /* complain_on_overflow */
1142 ppc_elf_unhandled_reloc, /* special_function */
1143 "R_PPC_GOT_TPREL16_LO", /* name */
1144 FALSE, /* partial_inplace */
1145 0, /* src_mask */
1146 0xffff, /* dst_mask */
1147 FALSE), /* pcrel_offset */
1148
1149 /* Like GOT_TPREL16_LO, but next higher group of 16 bits. */
1150 HOWTO (R_PPC_GOT_TPREL16_HI,
1151 16, /* rightshift */
1152 1, /* size (0 = byte, 1 = short, 2 = long) */
1153 16, /* bitsize */
1154 FALSE, /* pc_relative */
1155 0, /* bitpos */
1156 complain_overflow_dont, /* complain_on_overflow */
1157 ppc_elf_unhandled_reloc, /* special_function */
1158 "R_PPC_GOT_TPREL16_HI", /* name */
1159 FALSE, /* partial_inplace */
1160 0, /* src_mask */
1161 0xffff, /* dst_mask */
1162 FALSE), /* pcrel_offset */
1163
1164 /* Like GOT_TPREL16_HI, but adjust for low 16 bits. */
1165 HOWTO (R_PPC_GOT_TPREL16_HA,
1166 16, /* rightshift */
1167 1, /* size (0 = byte, 1 = short, 2 = long) */
1168 16, /* bitsize */
1169 FALSE, /* pc_relative */
1170 0, /* bitpos */
1171 complain_overflow_dont, /* complain_on_overflow */
1172 ppc_elf_unhandled_reloc, /* special_function */
1173 "R_PPC_GOT_TPREL16_HA", /* name */
1174 FALSE, /* partial_inplace */
1175 0, /* src_mask */
1176 0xffff, /* dst_mask */
1177 FALSE), /* pcrel_offset */
1178
1179 /* The remaining relocs are from the Embedded ELF ABI, and are not
1180 in the SVR4 ELF ABI. */
1181
1182 /* 32 bit value resulting from the addend minus the symbol. */
1183 HOWTO (R_PPC_EMB_NADDR32, /* type */
1184 0, /* rightshift */
1185 2, /* size (0 = byte, 1 = short, 2 = long) */
1186 32, /* bitsize */
1187 FALSE, /* pc_relative */
1188 0, /* bitpos */
1189 complain_overflow_bitfield, /* complain_on_overflow */
1190 bfd_elf_generic_reloc, /* special_function */
1191 "R_PPC_EMB_NADDR32", /* name */
1192 FALSE, /* partial_inplace */
1193 0, /* src_mask */
1194 0xffffffff, /* dst_mask */
1195 FALSE), /* pcrel_offset */
1196
1197 /* 16 bit value resulting from the addend minus the symbol. */
1198 HOWTO (R_PPC_EMB_NADDR16, /* type */
1199 0, /* rightshift */
1200 1, /* size (0 = byte, 1 = short, 2 = long) */
1201 16, /* bitsize */
1202 FALSE, /* pc_relative */
1203 0, /* bitpos */
1204 complain_overflow_bitfield, /* complain_on_overflow */
1205 bfd_elf_generic_reloc, /* special_function */
1206 "R_PPC_EMB_NADDR16", /* name */
1207 FALSE, /* partial_inplace */
1208 0, /* src_mask */
1209 0xffff, /* dst_mask */
1210 FALSE), /* pcrel_offset */
1211
1212 /* 16 bit value resulting from the addend minus the symbol. */
1213 HOWTO (R_PPC_EMB_NADDR16_LO, /* type */
1214 0, /* rightshift */
1215 1, /* size (0 = byte, 1 = short, 2 = long) */
1216 16, /* bitsize */
1217 FALSE, /* pc_relative */
1218 0, /* bitpos */
1219 complain_overflow_dont,/* complain_on_overflow */
1220 bfd_elf_generic_reloc, /* special_function */
1221 "R_PPC_EMB_ADDR16_LO", /* name */
1222 FALSE, /* partial_inplace */
1223 0, /* src_mask */
1224 0xffff, /* dst_mask */
1225 FALSE), /* pcrel_offset */
1226
1227 /* The high order 16 bits of the addend minus the symbol. */
1228 HOWTO (R_PPC_EMB_NADDR16_HI, /* type */
1229 16, /* rightshift */
1230 1, /* size (0 = byte, 1 = short, 2 = long) */
1231 16, /* bitsize */
1232 FALSE, /* pc_relative */
1233 0, /* bitpos */
1234 complain_overflow_dont, /* complain_on_overflow */
1235 bfd_elf_generic_reloc, /* special_function */
1236 "R_PPC_EMB_NADDR16_HI", /* name */
1237 FALSE, /* partial_inplace */
1238 0, /* src_mask */
1239 0xffff, /* dst_mask */
1240 FALSE), /* pcrel_offset */
1241
1242 /* The high order 16 bits of the result of the addend minus the address,
1243 plus 1 if the contents of the low 16 bits, treated as a signed number,
1244 is negative. */
1245 HOWTO (R_PPC_EMB_NADDR16_HA, /* type */
1246 16, /* rightshift */
1247 1, /* size (0 = byte, 1 = short, 2 = long) */
1248 16, /* bitsize */
1249 FALSE, /* pc_relative */
1250 0, /* bitpos */
1251 complain_overflow_dont, /* complain_on_overflow */
25dbc73a
AM
1252 ppc_elf_addr16_ha_reloc, /* special_function */
1253 "R_PPC_EMB_NADDR16_HA", /* name */
1254 FALSE, /* partial_inplace */
1255 0, /* src_mask */
1256 0xffff, /* dst_mask */
1257 FALSE), /* pcrel_offset */
1258
1259 /* 16 bit value resulting from allocating a 4 byte word to hold an
1260 address in the .sdata section, and returning the offset from
1261 _SDA_BASE_ for that relocation. */
1262 HOWTO (R_PPC_EMB_SDAI16, /* type */
1263 0, /* rightshift */
1264 1, /* size (0 = byte, 1 = short, 2 = long) */
1265 16, /* bitsize */
1266 FALSE, /* pc_relative */
1267 0, /* bitpos */
1268 complain_overflow_bitfield, /* complain_on_overflow */
1269 bfd_elf_generic_reloc, /* special_function */
1270 "R_PPC_EMB_SDAI16", /* name */
1271 FALSE, /* partial_inplace */
1272 0, /* src_mask */
1273 0xffff, /* dst_mask */
1274 FALSE), /* pcrel_offset */
1275
1276 /* 16 bit value resulting from allocating a 4 byte word to hold an
1277 address in the .sdata2 section, and returning the offset from
1278 _SDA2_BASE_ for that relocation. */
1279 HOWTO (R_PPC_EMB_SDA2I16, /* type */
1280 0, /* rightshift */
1281 1, /* size (0 = byte, 1 = short, 2 = long) */
1282 16, /* bitsize */
1283 FALSE, /* pc_relative */
1284 0, /* bitpos */
1285 complain_overflow_bitfield, /* complain_on_overflow */
1286 bfd_elf_generic_reloc, /* special_function */
1287 "R_PPC_EMB_SDA2I16", /* name */
1288 FALSE, /* partial_inplace */
1289 0, /* src_mask */
1290 0xffff, /* dst_mask */
1291 FALSE), /* pcrel_offset */
1292
1293 /* A sign-extended 16 bit value relative to _SDA2_BASE_, for use with
1294 small data items. */
1295 HOWTO (R_PPC_EMB_SDA2REL, /* type */
1296 0, /* rightshift */
1297 1, /* size (0 = byte, 1 = short, 2 = long) */
1298 16, /* bitsize */
1299 FALSE, /* pc_relative */
1300 0, /* bitpos */
1301 complain_overflow_signed, /* complain_on_overflow */
1302 bfd_elf_generic_reloc, /* special_function */
1303 "R_PPC_EMB_SDA2REL", /* name */
1304 FALSE, /* partial_inplace */
1305 0, /* src_mask */
1306 0xffff, /* dst_mask */
1307 FALSE), /* pcrel_offset */
1308
1309 /* Relocate against either _SDA_BASE_ or _SDA2_BASE_, filling in the 16 bit
1310 signed offset from the appropriate base, and filling in the register
1311 field with the appropriate register (0, 2, or 13). */
1312 HOWTO (R_PPC_EMB_SDA21, /* type */
1313 0, /* rightshift */
1314 2, /* size (0 = byte, 1 = short, 2 = long) */
1315 16, /* bitsize */
1316 FALSE, /* pc_relative */
1317 0, /* bitpos */
1318 complain_overflow_signed, /* complain_on_overflow */
1319 bfd_elf_generic_reloc, /* special_function */
1320 "R_PPC_EMB_SDA21", /* name */
1321 FALSE, /* partial_inplace */
1322 0, /* src_mask */
1323 0xffff, /* dst_mask */
1324 FALSE), /* pcrel_offset */
1325
1326 /* Relocation not handled: R_PPC_EMB_MRKREF */
1327 /* Relocation not handled: R_PPC_EMB_RELSEC16 */
1328 /* Relocation not handled: R_PPC_EMB_RELST_LO */
1329 /* Relocation not handled: R_PPC_EMB_RELST_HI */
1330 /* Relocation not handled: R_PPC_EMB_RELST_HA */
1331 /* Relocation not handled: R_PPC_EMB_BIT_FLD */
1332
1333 /* PC relative relocation against either _SDA_BASE_ or _SDA2_BASE_, filling
1334 in the 16 bit signed offset from the appropriate base, and filling in the
1335 register field with the appropriate register (0, 2, or 13). */
1336 HOWTO (R_PPC_EMB_RELSDA, /* type */
1337 0, /* rightshift */
1338 1, /* size (0 = byte, 1 = short, 2 = long) */
1339 16, /* bitsize */
1340 TRUE, /* pc_relative */
1341 0, /* bitpos */
1342 complain_overflow_signed, /* complain_on_overflow */
1343 bfd_elf_generic_reloc, /* special_function */
1344 "R_PPC_EMB_RELSDA", /* name */
1345 FALSE, /* partial_inplace */
1346 0, /* src_mask */
1347 0xffff, /* dst_mask */
1348 FALSE), /* pcrel_offset */
1349
d7128ce4
AM
1350 /* A 16 bit relative relocation. */
1351 HOWTO (R_PPC_REL16, /* type */
1352 0, /* rightshift */
1353 1, /* size (0 = byte, 1 = short, 2 = long) */
1354 16, /* bitsize */
1355 TRUE, /* pc_relative */
1356 0, /* bitpos */
1357 complain_overflow_bitfield, /* complain_on_overflow */
1358 bfd_elf_generic_reloc, /* special_function */
1359 "R_PPC_REL16", /* name */
1360 FALSE, /* partial_inplace */
1361 0, /* src_mask */
1362 0xffff, /* dst_mask */
1363 TRUE), /* pcrel_offset */
1364
1365 /* A 16 bit relative relocation without overflow. */
1366 HOWTO (R_PPC_REL16_LO, /* type */
1367 0, /* rightshift */
1368 1, /* size (0 = byte, 1 = short, 2 = long) */
1369 16, /* bitsize */
1370 TRUE, /* pc_relative */
1371 0, /* bitpos */
1372 complain_overflow_dont,/* complain_on_overflow */
1373 bfd_elf_generic_reloc, /* special_function */
1374 "R_PPC_REL16_LO", /* name */
1375 FALSE, /* partial_inplace */
1376 0, /* src_mask */
1377 0xffff, /* dst_mask */
1378 TRUE), /* pcrel_offset */
1379
1380 /* The high order 16 bits of a relative address. */
1381 HOWTO (R_PPC_REL16_HI, /* type */
1382 16, /* rightshift */
1383 1, /* size (0 = byte, 1 = short, 2 = long) */
1384 16, /* bitsize */
1385 TRUE, /* pc_relative */
1386 0, /* bitpos */
1387 complain_overflow_dont, /* complain_on_overflow */
1388 bfd_elf_generic_reloc, /* special_function */
1389 "R_PPC_REL16_HI", /* name */
1390 FALSE, /* partial_inplace */
1391 0, /* src_mask */
1392 0xffff, /* dst_mask */
1393 TRUE), /* pcrel_offset */
1394
1395 /* The high order 16 bits of a relative address, plus 1 if the contents of
1396 the low 16 bits, treated as a signed number, is negative. */
1397 HOWTO (R_PPC_REL16_HA, /* type */
1398 16, /* rightshift */
1399 1, /* size (0 = byte, 1 = short, 2 = long) */
1400 16, /* bitsize */
1401 TRUE, /* pc_relative */
1402 0, /* bitpos */
1403 complain_overflow_dont, /* complain_on_overflow */
1404 ppc_elf_addr16_ha_reloc, /* special_function */
1405 "R_PPC_REL16_HA", /* name */
1406 FALSE, /* partial_inplace */
1407 0, /* src_mask */
1408 0xffff, /* dst_mask */
1409 TRUE), /* pcrel_offset */
1410
25dbc73a
AM
1411 /* GNU extension to record C++ vtable hierarchy. */
1412 HOWTO (R_PPC_GNU_VTINHERIT, /* type */
1413 0, /* rightshift */
1414 0, /* size (0 = byte, 1 = short, 2 = long) */
1415 0, /* bitsize */
1416 FALSE, /* pc_relative */
1417 0, /* bitpos */
1418 complain_overflow_dont, /* complain_on_overflow */
1419 NULL, /* special_function */
1420 "R_PPC_GNU_VTINHERIT", /* name */
1421 FALSE, /* partial_inplace */
1422 0, /* src_mask */
1423 0, /* dst_mask */
1424 FALSE), /* pcrel_offset */
1425
1426 /* GNU extension to record C++ vtable member usage. */
1427 HOWTO (R_PPC_GNU_VTENTRY, /* type */
1428 0, /* rightshift */
1429 0, /* size (0 = byte, 1 = short, 2 = long) */
1430 0, /* bitsize */
1431 FALSE, /* pc_relative */
1432 0, /* bitpos */
1433 complain_overflow_dont, /* complain_on_overflow */
1434 NULL, /* special_function */
1435 "R_PPC_GNU_VTENTRY", /* name */
7619e7c7
AM
1436 FALSE, /* partial_inplace */
1437 0, /* src_mask */
25dbc73a 1438 0, /* dst_mask */
7619e7c7
AM
1439 FALSE), /* pcrel_offset */
1440
25dbc73a
AM
1441 /* Phony reloc to handle AIX style TOC entries. */
1442 HOWTO (R_PPC_TOC16, /* type */
7619e7c7
AM
1443 0, /* rightshift */
1444 1, /* size (0 = byte, 1 = short, 2 = long) */
1445 16, /* bitsize */
1446 FALSE, /* pc_relative */
1447 0, /* bitpos */
25dbc73a 1448 complain_overflow_signed, /* complain_on_overflow */
7619e7c7 1449 bfd_elf_generic_reloc, /* special_function */
25dbc73a 1450 "R_PPC_TOC16", /* name */
7619e7c7
AM
1451 FALSE, /* partial_inplace */
1452 0, /* src_mask */
1453 0xffff, /* dst_mask */
1454 FALSE), /* pcrel_offset */
25dbc73a
AM
1455};
1456\f
1457/* Initialize the ppc_elf_howto_table, so that linear accesses can be done. */
1458
1459static void
1460ppc_elf_howto_init (void)
1461{
1462 unsigned int i, type;
1463
1464 for (i = 0;
1465 i < sizeof (ppc_elf_howto_raw) / sizeof (ppc_elf_howto_raw[0]);
1466 i++)
1467 {
1468 type = ppc_elf_howto_raw[i].type;
1469 if (type >= (sizeof (ppc_elf_howto_table)
1470 / sizeof (ppc_elf_howto_table[0])))
1471 abort ();
1472 ppc_elf_howto_table[type] = &ppc_elf_howto_raw[i];
1473 }
1474}
1475
1476static reloc_howto_type *
1477ppc_elf_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1478 bfd_reloc_code_real_type code)
1479{
1480 enum elf_ppc_reloc_type r;
1481
1482 /* Initialize howto table if not already done. */
1483 if (!ppc_elf_howto_table[R_PPC_ADDR32])
1484 ppc_elf_howto_init ();
1485
1486 switch (code)
1487 {
1488 default:
1489 return NULL;
1490
1491 case BFD_RELOC_NONE: r = R_PPC_NONE; break;
1492 case BFD_RELOC_32: r = R_PPC_ADDR32; break;
1493 case BFD_RELOC_PPC_BA26: r = R_PPC_ADDR24; break;
1494 case BFD_RELOC_16: r = R_PPC_ADDR16; break;
1495 case BFD_RELOC_LO16: r = R_PPC_ADDR16_LO; break;
1496 case BFD_RELOC_HI16: r = R_PPC_ADDR16_HI; break;
1497 case BFD_RELOC_HI16_S: r = R_PPC_ADDR16_HA; break;
1498 case BFD_RELOC_PPC_BA16: r = R_PPC_ADDR14; break;
1499 case BFD_RELOC_PPC_BA16_BRTAKEN: r = R_PPC_ADDR14_BRTAKEN; break;
1500 case BFD_RELOC_PPC_BA16_BRNTAKEN: r = R_PPC_ADDR14_BRNTAKEN; break;
1501 case BFD_RELOC_PPC_B26: r = R_PPC_REL24; break;
1502 case BFD_RELOC_PPC_B16: r = R_PPC_REL14; break;
1503 case BFD_RELOC_PPC_B16_BRTAKEN: r = R_PPC_REL14_BRTAKEN; break;
1504 case BFD_RELOC_PPC_B16_BRNTAKEN: r = R_PPC_REL14_BRNTAKEN; break;
1505 case BFD_RELOC_16_GOTOFF: r = R_PPC_GOT16; break;
1506 case BFD_RELOC_LO16_GOTOFF: r = R_PPC_GOT16_LO; break;
1507 case BFD_RELOC_HI16_GOTOFF: r = R_PPC_GOT16_HI; break;
1508 case BFD_RELOC_HI16_S_GOTOFF: r = R_PPC_GOT16_HA; break;
1509 case BFD_RELOC_24_PLT_PCREL: r = R_PPC_PLTREL24; break;
1510 case BFD_RELOC_PPC_COPY: r = R_PPC_COPY; break;
1511 case BFD_RELOC_PPC_GLOB_DAT: r = R_PPC_GLOB_DAT; break;
1512 case BFD_RELOC_PPC_LOCAL24PC: r = R_PPC_LOCAL24PC; break;
1513 case BFD_RELOC_32_PCREL: r = R_PPC_REL32; break;
1514 case BFD_RELOC_32_PLTOFF: r = R_PPC_PLT32; break;
1515 case BFD_RELOC_32_PLT_PCREL: r = R_PPC_PLTREL32; break;
1516 case BFD_RELOC_LO16_PLTOFF: r = R_PPC_PLT16_LO; break;
1517 case BFD_RELOC_HI16_PLTOFF: r = R_PPC_PLT16_HI; break;
1518 case BFD_RELOC_HI16_S_PLTOFF: r = R_PPC_PLT16_HA; break;
1519 case BFD_RELOC_GPREL16: r = R_PPC_SDAREL16; break;
1520 case BFD_RELOC_16_BASEREL: r = R_PPC_SECTOFF; break;
1521 case BFD_RELOC_LO16_BASEREL: r = R_PPC_SECTOFF_LO; break;
1522 case BFD_RELOC_HI16_BASEREL: r = R_PPC_SECTOFF_HI; break;
1523 case BFD_RELOC_HI16_S_BASEREL: r = R_PPC_SECTOFF_HA; break;
1524 case BFD_RELOC_CTOR: r = R_PPC_ADDR32; break;
1525 case BFD_RELOC_PPC_TOC16: r = R_PPC_TOC16; break;
1526 case BFD_RELOC_PPC_TLS: r = R_PPC_TLS; break;
1527 case BFD_RELOC_PPC_DTPMOD: r = R_PPC_DTPMOD32; break;
1528 case BFD_RELOC_PPC_TPREL16: r = R_PPC_TPREL16; break;
1529 case BFD_RELOC_PPC_TPREL16_LO: r = R_PPC_TPREL16_LO; break;
1530 case BFD_RELOC_PPC_TPREL16_HI: r = R_PPC_TPREL16_HI; break;
1531 case BFD_RELOC_PPC_TPREL16_HA: r = R_PPC_TPREL16_HA; break;
1532 case BFD_RELOC_PPC_TPREL: r = R_PPC_TPREL32; break;
1533 case BFD_RELOC_PPC_DTPREL16: r = R_PPC_DTPREL16; break;
1534 case BFD_RELOC_PPC_DTPREL16_LO: r = R_PPC_DTPREL16_LO; break;
1535 case BFD_RELOC_PPC_DTPREL16_HI: r = R_PPC_DTPREL16_HI; break;
1536 case BFD_RELOC_PPC_DTPREL16_HA: r = R_PPC_DTPREL16_HA; break;
1537 case BFD_RELOC_PPC_DTPREL: r = R_PPC_DTPREL32; break;
1538 case BFD_RELOC_PPC_GOT_TLSGD16: r = R_PPC_GOT_TLSGD16; break;
1539 case BFD_RELOC_PPC_GOT_TLSGD16_LO: r = R_PPC_GOT_TLSGD16_LO; break;
1540 case BFD_RELOC_PPC_GOT_TLSGD16_HI: r = R_PPC_GOT_TLSGD16_HI; break;
1541 case BFD_RELOC_PPC_GOT_TLSGD16_HA: r = R_PPC_GOT_TLSGD16_HA; break;
1542 case BFD_RELOC_PPC_GOT_TLSLD16: r = R_PPC_GOT_TLSLD16; break;
1543 case BFD_RELOC_PPC_GOT_TLSLD16_LO: r = R_PPC_GOT_TLSLD16_LO; break;
1544 case BFD_RELOC_PPC_GOT_TLSLD16_HI: r = R_PPC_GOT_TLSLD16_HI; break;
1545 case BFD_RELOC_PPC_GOT_TLSLD16_HA: r = R_PPC_GOT_TLSLD16_HA; break;
1546 case BFD_RELOC_PPC_GOT_TPREL16: r = R_PPC_GOT_TPREL16; break;
1547 case BFD_RELOC_PPC_GOT_TPREL16_LO: r = R_PPC_GOT_TPREL16_LO; break;
1548 case BFD_RELOC_PPC_GOT_TPREL16_HI: r = R_PPC_GOT_TPREL16_HI; break;
1549 case BFD_RELOC_PPC_GOT_TPREL16_HA: r = R_PPC_GOT_TPREL16_HA; break;
1550 case BFD_RELOC_PPC_GOT_DTPREL16: r = R_PPC_GOT_DTPREL16; break;
1551 case BFD_RELOC_PPC_GOT_DTPREL16_LO: r = R_PPC_GOT_DTPREL16_LO; break;
1552 case BFD_RELOC_PPC_GOT_DTPREL16_HI: r = R_PPC_GOT_DTPREL16_HI; break;
1553 case BFD_RELOC_PPC_GOT_DTPREL16_HA: r = R_PPC_GOT_DTPREL16_HA; break;
1554 case BFD_RELOC_PPC_EMB_NADDR32: r = R_PPC_EMB_NADDR32; break;
1555 case BFD_RELOC_PPC_EMB_NADDR16: r = R_PPC_EMB_NADDR16; break;
1556 case BFD_RELOC_PPC_EMB_NADDR16_LO: r = R_PPC_EMB_NADDR16_LO; break;
1557 case BFD_RELOC_PPC_EMB_NADDR16_HI: r = R_PPC_EMB_NADDR16_HI; break;
1558 case BFD_RELOC_PPC_EMB_NADDR16_HA: r = R_PPC_EMB_NADDR16_HA; break;
1559 case BFD_RELOC_PPC_EMB_SDAI16: r = R_PPC_EMB_SDAI16; break;
1560 case BFD_RELOC_PPC_EMB_SDA2I16: r = R_PPC_EMB_SDA2I16; break;
1561 case BFD_RELOC_PPC_EMB_SDA2REL: r = R_PPC_EMB_SDA2REL; break;
1562 case BFD_RELOC_PPC_EMB_SDA21: r = R_PPC_EMB_SDA21; break;
1563 case BFD_RELOC_PPC_EMB_MRKREF: r = R_PPC_EMB_MRKREF; break;
1564 case BFD_RELOC_PPC_EMB_RELSEC16: r = R_PPC_EMB_RELSEC16; break;
1565 case BFD_RELOC_PPC_EMB_RELST_LO: r = R_PPC_EMB_RELST_LO; break;
1566 case BFD_RELOC_PPC_EMB_RELST_HI: r = R_PPC_EMB_RELST_HI; break;
1567 case BFD_RELOC_PPC_EMB_RELST_HA: r = R_PPC_EMB_RELST_HA; break;
1568 case BFD_RELOC_PPC_EMB_BIT_FLD: r = R_PPC_EMB_BIT_FLD; break;
1569 case BFD_RELOC_PPC_EMB_RELSDA: r = R_PPC_EMB_RELSDA; break;
d7128ce4
AM
1570 case BFD_RELOC_16_PCREL: r = R_PPC_REL16; break;
1571 case BFD_RELOC_LO16_PCREL: r = R_PPC_REL16_LO; break;
1572 case BFD_RELOC_HI16_PCREL: r = R_PPC_REL16_HI; break;
1573 case BFD_RELOC_HI16_S_PCREL: r = R_PPC_REL16_HA; break;
25dbc73a
AM
1574 case BFD_RELOC_VTABLE_INHERIT: r = R_PPC_GNU_VTINHERIT; break;
1575 case BFD_RELOC_VTABLE_ENTRY: r = R_PPC_GNU_VTENTRY; break;
1576 }
1577
1578 return ppc_elf_howto_table[r];
1579};
1580
157090f7
AM
1581static reloc_howto_type *
1582ppc_elf_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1583 const char *r_name)
1584{
1585 unsigned int i;
1586
1587 for (i = 0;
1588 i < sizeof (ppc_elf_howto_raw) / sizeof (ppc_elf_howto_raw[0]);
1589 i++)
1590 if (ppc_elf_howto_raw[i].name != NULL
1591 && strcasecmp (ppc_elf_howto_raw[i].name, r_name) == 0)
1592 return &ppc_elf_howto_raw[i];
1593
1594 return NULL;
1595}
1596
25dbc73a
AM
1597/* Set the howto pointer for a PowerPC ELF reloc. */
1598
1599static void
1600ppc_elf_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
1601 arelent *cache_ptr,
1602 Elf_Internal_Rela *dst)
1603{
1604 /* Initialize howto table if not already done. */
1605 if (!ppc_elf_howto_table[R_PPC_ADDR32])
1606 ppc_elf_howto_init ();
1607
1608 BFD_ASSERT (ELF32_R_TYPE (dst->r_info) < (unsigned int) R_PPC_max);
1609 cache_ptr->howto = ppc_elf_howto_table[ELF32_R_TYPE (dst->r_info)];
1610}
1611
d7128ce4 1612/* Handle the R_PPC_ADDR16_HA and R_PPC_REL16_HA relocs. */
25dbc73a
AM
1613
1614static bfd_reloc_status_type
1615ppc_elf_addr16_ha_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1616 arelent *reloc_entry,
1617 asymbol *symbol,
1618 void *data ATTRIBUTE_UNUSED,
1619 asection *input_section,
1620 bfd *output_bfd,
1621 char **error_message ATTRIBUTE_UNUSED)
1622{
1623 bfd_vma relocation;
1624
1625 if (output_bfd != NULL)
1626 {
1627 reloc_entry->address += input_section->output_offset;
1628 return bfd_reloc_ok;
1629 }
1630
1631 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
1632 return bfd_reloc_outofrange;
1633
1634 if (bfd_is_com_section (symbol->section))
1635 relocation = 0;
1636 else
1637 relocation = symbol->value;
1638
1639 relocation += symbol->section->output_section->vma;
1640 relocation += symbol->section->output_offset;
1641 relocation += reloc_entry->addend;
d7128ce4
AM
1642 if (reloc_entry->howto->pc_relative)
1643 relocation -= reloc_entry->address;
25dbc73a
AM
1644
1645 reloc_entry->addend += (relocation & 0x8000) << 1;
1646
1647 return bfd_reloc_continue;
1648}
1649
1650static bfd_reloc_status_type
1651ppc_elf_unhandled_reloc (bfd *abfd,
1652 arelent *reloc_entry,
1653 asymbol *symbol,
1654 void *data,
1655 asection *input_section,
1656 bfd *output_bfd,
1657 char **error_message)
1658{
1659 /* If this is a relocatable link (output_bfd test tells us), just
1660 call the generic function. Any adjustment will be done at final
1661 link time. */
1662 if (output_bfd != NULL)
1663 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1664 input_section, output_bfd, error_message);
1665
1666 if (error_message != NULL)
1667 {
1668 static char buf[60];
1669 sprintf (buf, _("generic linker can't handle %s"),
1670 reloc_entry->howto->name);
1671 *error_message = buf;
1672 }
1673 return bfd_reloc_dangerous;
1674}
1675\f
1676/* Sections created by the linker. */
1677
1678typedef struct elf_linker_section
1679{
c9a2f333 1680 /* Pointer to the bfd section. */
25dbc73a 1681 asection *section;
c9a2f333
AM
1682 /* Section name. */
1683 const char *name;
1684 /* Associated bss section name. */
1685 const char *bss_name;
1686 /* Associated symbol name. */
1687 const char *sym_name;
046183de
AM
1688 /* Associated symbol. */
1689 struct elf_link_hash_entry *sym;
25dbc73a
AM
1690} elf_linker_section_t;
1691
1692/* Linked list of allocated pointer entries. This hangs off of the
1693 symbol lists, and provides allows us to return different pointers,
1694 based on different addend's. */
1695
1696typedef struct elf_linker_section_pointers
1697{
1698 /* next allocated pointer for this symbol */
1699 struct elf_linker_section_pointers *next;
1700 /* offset of pointer from beginning of section */
1701 bfd_vma offset;
1702 /* addend used */
1703 bfd_vma addend;
1704 /* which linker section this is */
1705 elf_linker_section_t *lsect;
25dbc73a
AM
1706} elf_linker_section_pointers_t;
1707
1708struct ppc_elf_obj_tdata
1709{
1710 struct elf_obj_tdata elf;
1711
1712 /* A mapping from local symbols to offsets into the various linker
1713 sections added. This is index by the symbol index. */
1714 elf_linker_section_pointers_t **linker_section_pointers;
016687f8
AM
1715
1716 /* Flags used to auto-detect plt type. */
1717 unsigned int makes_plt_call : 1;
1718 unsigned int has_rel16 : 1;
25dbc73a
AM
1719};
1720
1721#define ppc_elf_tdata(bfd) \
1722 ((struct ppc_elf_obj_tdata *) (bfd)->tdata.any)
7619e7c7 1723
25dbc73a
AM
1724#define elf_local_ptr_offsets(bfd) \
1725 (ppc_elf_tdata (bfd)->linker_section_pointers)
7619e7c7 1726
25dbc73a 1727/* Override the generic function because we store some extras. */
7619e7c7 1728
25dbc73a
AM
1729static bfd_boolean
1730ppc_elf_mkobject (bfd *abfd)
1731{
25dbc73a 1732 if (abfd->tdata.any == NULL)
62d7a5f6
AM
1733 {
1734 bfd_size_type amt = sizeof (struct ppc_elf_obj_tdata);
1735 abfd->tdata.any = bfd_zalloc (abfd, amt);
1736 if (abfd->tdata.any == NULL)
1737 return FALSE;
1738 }
1739 return bfd_elf_mkobject (abfd);
25dbc73a 1740}
7619e7c7 1741
25dbc73a
AM
1742/* Fix bad default arch selected for a 32 bit input bfd when the
1743 default is 64 bit. */
7619e7c7 1744
25dbc73a
AM
1745static bfd_boolean
1746ppc_elf_object_p (bfd *abfd)
1747{
1748 if (abfd->arch_info->the_default && abfd->arch_info->bits_per_word == 64)
1749 {
1750 Elf_Internal_Ehdr *i_ehdr = elf_elfheader (abfd);
7619e7c7 1751
25dbc73a
AM
1752 if (i_ehdr->e_ident[EI_CLASS] == ELFCLASS32)
1753 {
1754 /* Relies on arch after 64 bit default being 32 bit default. */
1755 abfd->arch_info = abfd->arch_info->next;
1756 BFD_ASSERT (abfd->arch_info->bits_per_word == 32);
1757 }
1758 }
1759 return TRUE;
1760}
7619e7c7 1761
25dbc73a 1762/* Function to set whether a module needs the -mrelocatable bit set. */
7619e7c7 1763
25dbc73a
AM
1764static bfd_boolean
1765ppc_elf_set_private_flags (bfd *abfd, flagword flags)
1766{
1767 BFD_ASSERT (!elf_flags_init (abfd)
1768 || elf_elfheader (abfd)->e_flags == flags);
7619e7c7 1769
25dbc73a
AM
1770 elf_elfheader (abfd)->e_flags = flags;
1771 elf_flags_init (abfd) = TRUE;
1772 return TRUE;
1773}
1774
25dbc73a 1775/* Support for core dump NOTE sections. */
deaaf2f3 1776
b34976b6 1777static bfd_boolean
25dbc73a 1778ppc_elf_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 1779{
25dbc73a
AM
1780 int offset;
1781 unsigned int size;
252b5132 1782
25dbc73a
AM
1783 switch (note->descsz)
1784 {
1785 default:
1786 return FALSE;
252b5132 1787
25dbc73a
AM
1788 case 268: /* Linux/PPC. */
1789 /* pr_cursig */
1790 elf_tdata (abfd)->core_signal = bfd_get_16 (abfd, note->descdata + 12);
deaaf2f3 1791
25dbc73a
AM
1792 /* pr_pid */
1793 elf_tdata (abfd)->core_pid = bfd_get_32 (abfd, note->descdata + 24);
9abc968f 1794
25dbc73a
AM
1795 /* pr_reg */
1796 offset = 72;
1797 size = 192;
deaaf2f3 1798
25dbc73a
AM
1799 break;
1800 }
deaaf2f3 1801
25dbc73a
AM
1802 /* Make a ".reg/999" section. */
1803 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
1804 size, note->descpos + offset);
1805}
252b5132 1806
25dbc73a
AM
1807static bfd_boolean
1808ppc_elf_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
1809{
1810 switch (note->descsz)
deaaf2f3 1811 {
25dbc73a
AM
1812 default:
1813 return FALSE;
deaaf2f3 1814
25dbc73a
AM
1815 case 128: /* Linux/PPC elf_prpsinfo. */
1816 elf_tdata (abfd)->core_program
1817 = _bfd_elfcore_strndup (abfd, note->descdata + 32, 16);
1818 elf_tdata (abfd)->core_command
1819 = _bfd_elfcore_strndup (abfd, note->descdata + 48, 80);
1820 }
9abc968f 1821
25dbc73a
AM
1822 /* Note that for some reason, a spurious space is tacked
1823 onto the end of the args in some (at least one anyway)
1824 implementations, so strip it off if it exists. */
70bccea4 1825
25dbc73a
AM
1826 {
1827 char *command = elf_tdata (abfd)->core_command;
1828 int n = strlen (command);
70bccea4 1829
25dbc73a
AM
1830 if (0 < n && command[n - 1] == ' ')
1831 command[n - 1] = '\0';
1832 }
deaaf2f3 1833
25dbc73a
AM
1834 return TRUE;
1835}
deaaf2f3 1836
183e98be
AM
1837static char *
1838ppc_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type, ...)
1839{
1840 switch (note_type)
1841 {
1842 default:
1843 return NULL;
1844
1845 case NT_PRPSINFO:
1846 {
1847 char data[128];
1848 va_list ap;
1849
1850 va_start (ap, note_type);
1851 memset (data, 0, 32);
1852 strncpy (data + 32, va_arg (ap, const char *), 16);
1853 strncpy (data + 48, va_arg (ap, const char *), 80);
1854 va_end (ap);
1855 return elfcore_write_note (abfd, buf, bufsiz,
1856 "CORE", note_type, data, sizeof (data));
1857 }
1858
1859 case NT_PRSTATUS:
1860 {
1861 char data[268];
1862 va_list ap;
1863 long pid;
1864 int cursig;
1865 const void *greg;
1866
1867 va_start (ap, note_type);
1868 memset (data, 0, 72);
1869 pid = va_arg (ap, long);
1870 bfd_put_32 (abfd, pid, data + 24);
1871 cursig = va_arg (ap, int);
1872 bfd_put_16 (abfd, cursig, data + 12);
1873 greg = va_arg (ap, const void *);
1874 memcpy (data + 72, greg, 192);
1875 memset (data + 264, 0, 4);
1876 va_end (ap);
1877 return elfcore_write_note (abfd, buf, bufsiz,
1878 "CORE", note_type, data, sizeof (data));
1879 }
1880 }
1881}
1882
25dbc73a
AM
1883/* Return address for Ith PLT stub in section PLT, for relocation REL
1884 or (bfd_vma) -1 if it should not be included. */
deaaf2f3 1885
25dbc73a
AM
1886static bfd_vma
1887ppc_elf_plt_sym_val (bfd_vma i ATTRIBUTE_UNUSED,
1888 const asection *plt ATTRIBUTE_UNUSED,
1889 const arelent *rel)
1890{
1891 return rel->address;
1892}
deaaf2f3 1893
25dbc73a 1894/* Handle a PowerPC specific section when reading an object file. This
6dc132d9
L
1895 is called when bfd_section_from_shdr finds a section with an unknown
1896 type. */
deaaf2f3 1897
25dbc73a 1898static bfd_boolean
6dc132d9
L
1899ppc_elf_section_from_shdr (bfd *abfd,
1900 Elf_Internal_Shdr *hdr,
1901 const char *name,
1902 int shindex)
25dbc73a
AM
1903{
1904 asection *newsect;
1905 flagword flags;
d1c6de6f 1906
6dc132d9 1907 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
25dbc73a 1908 return FALSE;
deaaf2f3 1909
25dbc73a
AM
1910 newsect = hdr->bfd_section;
1911 flags = bfd_get_section_flags (abfd, newsect);
1912 if (hdr->sh_flags & SHF_EXCLUDE)
1913 flags |= SEC_EXCLUDE;
9abc968f 1914
25dbc73a
AM
1915 if (hdr->sh_type == SHT_ORDERED)
1916 flags |= SEC_SORT_ENTRIES;
d1c6de6f 1917
25dbc73a
AM
1918 bfd_set_section_flags (abfd, newsect, flags);
1919 return TRUE;
1920}
1921
1922/* Set up any other section flags and such that may be necessary. */
1923
1924static bfd_boolean
1925ppc_elf_fake_sections (bfd *abfd ATTRIBUTE_UNUSED,
1926 Elf_Internal_Shdr *shdr,
1927 asection *asect)
1928{
d30e8e7c 1929 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
25dbc73a
AM
1930 shdr->sh_flags |= SHF_EXCLUDE;
1931
1932 if ((asect->flags & SEC_SORT_ENTRIES) != 0)
1933 shdr->sh_type = SHT_ORDERED;
1934
1935 return TRUE;
1936}
1937
1938/* If we have .sbss2 or .PPC.EMB.sbss0 output sections, we
1939 need to bump up the number of section headers. */
1940
1941static int
a6b96beb
AM
1942ppc_elf_additional_program_headers (bfd *abfd,
1943 struct bfd_link_info *info ATTRIBUTE_UNUSED)
25dbc73a
AM
1944{
1945 asection *s;
1946 int ret = 0;
d1c6de6f 1947
25dbc73a
AM
1948 s = bfd_get_section_by_name (abfd, ".sbss2");
1949 if (s != NULL && (s->flags & SEC_ALLOC) != 0)
1950 ++ret;
d1c6de6f 1951
25dbc73a
AM
1952 s = bfd_get_section_by_name (abfd, ".PPC.EMB.sbss0");
1953 if (s != NULL && (s->flags & SEC_ALLOC) != 0)
1954 ++ret;
deaaf2f3 1955
25dbc73a
AM
1956 return ret;
1957}
deaaf2f3 1958
25dbc73a
AM
1959/* Add extra PPC sections -- Note, for now, make .sbss2 and
1960 .PPC.EMB.sbss0 a normal section, and not a bss section so
1961 that the linker doesn't crater when trying to make more than
1962 2 sections. */
e656e369 1963
b35d266b 1964static const struct bfd_elf_special_section ppc_elf_special_sections[] =
7f4d3958 1965{
0112cd26
NC
1966 { STRING_COMMA_LEN (".plt"), 0, SHT_NOBITS, SHF_ALLOC + SHF_EXECINSTR },
1967 { STRING_COMMA_LEN (".sbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
1968 { STRING_COMMA_LEN (".sbss2"), -2, SHT_PROGBITS, SHF_ALLOC },
1969 { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
1970 { STRING_COMMA_LEN (".sdata2"), -2, SHT_PROGBITS, SHF_ALLOC },
1971 { STRING_COMMA_LEN (".tags"), 0, SHT_ORDERED, SHF_ALLOC },
1972 { STRING_COMMA_LEN (".PPC.EMB.apuinfo"), 0, SHT_NOTE, 0 },
1973 { STRING_COMMA_LEN (".PPC.EMB.sbss0"), 0, SHT_PROGBITS, SHF_ALLOC },
1974 { STRING_COMMA_LEN (".PPC.EMB.sdata0"), 0, SHT_PROGBITS, SHF_ALLOC },
1975 { NULL, 0, 0, 0, 0 }
7f4d3958
L
1976};
1977
551b43fd
AM
1978/* This is what we want for new plt/got. */
1979static struct bfd_elf_special_section ppc_alt_plt =
0112cd26 1980 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC };
551b43fd
AM
1981
1982static const struct bfd_elf_special_section *
1983ppc_elf_get_sec_type_attr (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
7f4d3958 1984{
b35d266b 1985 const struct bfd_elf_special_section *ssect;
551b43fd
AM
1986
1987 /* See if this is one of the special sections. */
1988 if (sec->name == NULL)
1989 return NULL;
1990
1991 ssect = _bfd_elf_get_special_section (sec->name, ppc_elf_special_sections,
1992 sec->use_rela_p);
1993 if (ssect != NULL)
1994 {
1995 if (ssect == ppc_elf_special_sections && (sec->flags & SEC_LOAD) != 0)
1996 ssect = &ppc_alt_plt;
1997 return ssect;
1998 }
1999
2000 return _bfd_elf_get_sec_type_attr (abfd, sec);
2001}
25dbc73a
AM
2002\f
2003/* Very simple linked list structure for recording apuinfo values. */
2004typedef struct apuinfo_list
2005{
2006 struct apuinfo_list *next;
2007 unsigned long value;
2008}
2009apuinfo_list;
e656e369 2010
25dbc73a 2011static apuinfo_list *head;
deaaf2f3 2012
deaaf2f3 2013
25dbc73a
AM
2014static void
2015apuinfo_list_init (void)
2016{
2017 head = NULL;
2018}
9abc968f 2019
25dbc73a
AM
2020static void
2021apuinfo_list_add (unsigned long value)
2022{
2023 apuinfo_list *entry = head;
deaaf2f3 2024
25dbc73a
AM
2025 while (entry != NULL)
2026 {
2027 if (entry->value == value)
2028 return;
2029 entry = entry->next;
2030 }
b4a38de6 2031
25dbc73a
AM
2032 entry = bfd_malloc (sizeof (* entry));
2033 if (entry == NULL)
2034 return;
e656e369 2035
25dbc73a
AM
2036 entry->value = value;
2037 entry->next = head;
2038 head = entry;
2039}
9abc968f 2040
25dbc73a
AM
2041static unsigned
2042apuinfo_list_length (void)
2043{
2044 apuinfo_list *entry;
2045 unsigned long count;
9abc968f 2046
25dbc73a
AM
2047 for (entry = head, count = 0;
2048 entry;
2049 entry = entry->next)
2050 ++ count;
e656e369 2051
25dbc73a
AM
2052 return count;
2053}
eea6121a 2054
25dbc73a
AM
2055static inline unsigned long
2056apuinfo_list_element (unsigned long number)
2057{
2058 apuinfo_list * entry;
e656e369 2059
25dbc73a
AM
2060 for (entry = head;
2061 entry && number --;
2062 entry = entry->next)
2063 ;
252b5132 2064
25dbc73a
AM
2065 return entry ? entry->value : 0;
2066}
2067
2068static void
2069apuinfo_list_finish (void)
2070{
2071 apuinfo_list *entry;
2072
2073 for (entry = head; entry;)
252b5132 2074 {
25dbc73a
AM
2075 apuinfo_list *next = entry->next;
2076 free (entry);
2077 entry = next;
2078 }
9abc968f 2079
25dbc73a
AM
2080 head = NULL;
2081}
9abc968f 2082
25dbc73a
AM
2083#define APUINFO_SECTION_NAME ".PPC.EMB.apuinfo"
2084#define APUINFO_LABEL "APUinfo"
9abc968f 2085
25dbc73a
AM
2086/* Scan the input BFDs and create a linked list of
2087 the APUinfo values that will need to be emitted. */
9abc968f 2088
25dbc73a
AM
2089static void
2090ppc_elf_begin_write_processing (bfd *abfd, struct bfd_link_info *link_info)
2091{
2092 bfd *ibfd;
2093 asection *asec;
2094 char *buffer;
2095 unsigned num_input_sections;
2096 bfd_size_type output_section_size;
2097 unsigned i;
2098 unsigned num_entries;
2099 unsigned long offset;
2100 unsigned long length;
2101 const char *error_message = NULL;
9abc968f 2102
25dbc73a
AM
2103 if (link_info == NULL)
2104 return;
9abc968f 2105
25dbc73a
AM
2106 /* Scan the input bfds, looking for apuinfo sections. */
2107 num_input_sections = 0;
2108 output_section_size = 0;
252b5132 2109
25dbc73a 2110 for (ibfd = link_info->input_bfds; ibfd; ibfd = ibfd->link_next)
252b5132 2111 {
25dbc73a
AM
2112 asec = bfd_get_section_by_name (ibfd, APUINFO_SECTION_NAME);
2113 if (asec)
252b5132 2114 {
25dbc73a
AM
2115 ++ num_input_sections;
2116 output_section_size += asec->size;
252b5132 2117 }
252b5132
RH
2118 }
2119
25dbc73a
AM
2120 /* We need at least one input sections
2121 in order to make merging worthwhile. */
2122 if (num_input_sections < 1)
2123 return;
deaaf2f3 2124
25dbc73a
AM
2125 /* Just make sure that the output section exists as well. */
2126 asec = bfd_get_section_by_name (abfd, APUINFO_SECTION_NAME);
2127 if (asec == NULL)
2128 return;
252b5132 2129
25dbc73a
AM
2130 /* Allocate a buffer for the contents of the input sections. */
2131 buffer = bfd_malloc (output_section_size);
2132 if (buffer == NULL)
2133 return;
252b5132 2134
25dbc73a
AM
2135 offset = 0;
2136 apuinfo_list_init ();
252b5132 2137
25dbc73a
AM
2138 /* Read in the input sections contents. */
2139 for (ibfd = link_info->input_bfds; ibfd; ibfd = ibfd->link_next)
252b5132 2140 {
25dbc73a
AM
2141 unsigned long datum;
2142 char *ptr;
252b5132 2143
25dbc73a
AM
2144 asec = bfd_get_section_by_name (ibfd, APUINFO_SECTION_NAME);
2145 if (asec == NULL)
2146 continue;
252b5132 2147
25dbc73a
AM
2148 length = asec->size;
2149 if (length < 24)
2150 {
2151 error_message = _("corrupt or empty %s section in %B");
2152 goto fail;
2153 }
252b5132 2154
25dbc73a
AM
2155 if (bfd_seek (ibfd, asec->filepos, SEEK_SET) != 0
2156 || (bfd_bread (buffer + offset, length, ibfd) != length))
2157 {
2158 error_message = _("unable to read in %s section from %B");
2159 goto fail;
2160 }
252b5132 2161
25dbc73a
AM
2162 /* Process the contents of the section. */
2163 ptr = buffer + offset;
2164 error_message = _("corrupt %s section in %B");
252b5132 2165
25dbc73a
AM
2166 /* Verify the contents of the header. Note - we have to
2167 extract the values this way in order to allow for a
2168 host whose endian-ness is different from the target. */
2169 datum = bfd_get_32 (ibfd, ptr);
2170 if (datum != sizeof APUINFO_LABEL)
2171 goto fail;
252b5132 2172
25dbc73a
AM
2173 datum = bfd_get_32 (ibfd, ptr + 8);
2174 if (datum != 0x2)
2175 goto fail;
252b5132 2176
25dbc73a
AM
2177 if (strcmp (ptr + 12, APUINFO_LABEL) != 0)
2178 goto fail;
252b5132 2179
25dbc73a
AM
2180 /* Get the number of bytes used for apuinfo entries. */
2181 datum = bfd_get_32 (ibfd, ptr + 4);
2182 if (datum + 20 != length)
2183 goto fail;
2184
2185 /* Make sure that we do not run off the end of the section. */
2186 if (offset + length > output_section_size)
2187 goto fail;
2188
2189 /* Scan the apuinfo section, building a list of apuinfo numbers. */
2190 for (i = 0; i < datum; i += 4)
2191 apuinfo_list_add (bfd_get_32 (ibfd, ptr + 20 + i));
2192
2193 /* Update the offset. */
2194 offset += length;
252b5132
RH
2195 }
2196
25dbc73a 2197 error_message = NULL;
252b5132 2198
25dbc73a
AM
2199 /* Compute the size of the output section. */
2200 num_entries = apuinfo_list_length ();
2201 output_section_size = 20 + num_entries * 4;
252b5132 2202
25dbc73a
AM
2203 asec = bfd_get_section_by_name (abfd, APUINFO_SECTION_NAME);
2204
2205 if (! bfd_set_section_size (abfd, asec, output_section_size))
2206 ibfd = abfd,
2207 error_message = _("warning: unable to set size of %s section in %B");
2208
2209 fail:
2210 free (buffer);
2211
2212 if (error_message)
2213 (*_bfd_error_handler) (error_message, ibfd, APUINFO_SECTION_NAME);
2214}
252b5132 2215
25dbc73a
AM
2216/* Prevent the output section from accumulating the input sections'
2217 contents. We have already stored this in our linked list structure. */
252b5132 2218
25dbc73a
AM
2219static bfd_boolean
2220ppc_elf_write_section (bfd *abfd ATTRIBUTE_UNUSED,
c7b8f16e 2221 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
25dbc73a
AM
2222 asection *asec,
2223 bfd_byte *contents ATTRIBUTE_UNUSED)
2224{
2225 return (apuinfo_list_length ()
2226 && strcmp (asec->name, APUINFO_SECTION_NAME) == 0);
252b5132
RH
2227}
2228
25dbc73a
AM
2229/* Finally we can generate the output section. */
2230
2231static void
2232ppc_elf_final_write_processing (bfd *abfd, bfd_boolean linker ATTRIBUTE_UNUSED)
7619e7c7 2233{
25dbc73a
AM
2234 bfd_byte *buffer;
2235 asection *asec;
2236 unsigned i;
2237 unsigned num_entries;
2238 bfd_size_type length;
7619e7c7 2239
25dbc73a
AM
2240 asec = bfd_get_section_by_name (abfd, APUINFO_SECTION_NAME);
2241 if (asec == NULL)
2242 return;
2243
2244 if (apuinfo_list_length () == 0)
2245 return;
2246
2247 length = asec->size;
2248 if (length < 20)
2249 return;
2250
2251 buffer = bfd_malloc (length);
2252 if (buffer == NULL)
7619e7c7 2253 {
25dbc73a
AM
2254 (*_bfd_error_handler)
2255 (_("failed to allocate space for new APUinfo section."));
2256 return;
7619e7c7 2257 }
7619e7c7 2258
25dbc73a
AM
2259 /* Create the apuinfo header. */
2260 num_entries = apuinfo_list_length ();
2261 bfd_put_32 (abfd, sizeof APUINFO_LABEL, buffer);
2262 bfd_put_32 (abfd, num_entries * 4, buffer + 4);
2263 bfd_put_32 (abfd, 0x2, buffer + 8);
2264 strcpy ((char *) buffer + 12, APUINFO_LABEL);
feee612b 2265
25dbc73a
AM
2266 length = 20;
2267 for (i = 0; i < num_entries; i++)
feee612b 2268 {
25dbc73a
AM
2269 bfd_put_32 (abfd, apuinfo_list_element (i), buffer + length);
2270 length += 4;
feee612b 2271 }
feee612b 2272
25dbc73a
AM
2273 if (length != asec->size)
2274 (*_bfd_error_handler) (_("failed to compute new APUinfo section."));
252b5132 2275
25dbc73a
AM
2276 if (! bfd_set_section_contents (abfd, asec, buffer, (file_ptr) 0, length))
2277 (*_bfd_error_handler) (_("failed to install new APUinfo section."));
252b5132 2278
25dbc73a
AM
2279 free (buffer);
2280
2281 apuinfo_list_finish ();
252b5132 2282}
25dbc73a
AM
2283\f
2284/* The following functions are specific to the ELF linker, while
2285 functions above are used generally. They appear in this file more
2286 or less in the order in which they are called. eg.
2287 ppc_elf_check_relocs is called early in the link process,
2288 ppc_elf_finish_dynamic_sections is one of the last functions
2289 called. */
252b5132 2290
25dbc73a
AM
2291/* The PPC linker needs to keep track of the number of relocs that it
2292 decides to copy as dynamic relocs in check_relocs for each symbol.
2293 This is so that it can later discard them if they are found to be
2294 unnecessary. We store the information in a field extending the
2295 regular ELF linker hash table. */
ae9a127f 2296
25dbc73a 2297struct ppc_elf_dyn_relocs
252b5132 2298{
25dbc73a 2299 struct ppc_elf_dyn_relocs *next;
252b5132 2300
25dbc73a
AM
2301 /* The input section of the reloc. */
2302 asection *sec;
252b5132 2303
25dbc73a
AM
2304 /* Total number of relocs copied for the input section. */
2305 bfd_size_type count;
252b5132 2306
25dbc73a
AM
2307 /* Number of pc-relative relocs copied for the input section. */
2308 bfd_size_type pc_count;
2309};
252b5132 2310
a6aa5195
AM
2311/* Track PLT entries needed for a given symbol. We might need more
2312 than one glink entry per symbol. */
2313struct plt_entry
2314{
2315 struct plt_entry *next;
2316
2317 /* -fPIC uses multiple GOT sections, one per file, called ".got2".
2318 This field stores the offset into .got2 used to initialise the
2319 GOT pointer reg. It will always be at least 32768 (and for
2320 current gcc this is the only offset used). */
2321 bfd_vma addend;
2322
2323 /* The .got2 section. */
2324 asection *sec;
2325
2326 /* PLT refcount or offset. */
2327 union
2328 {
2329 bfd_signed_vma refcount;
2330 bfd_vma offset;
2331 } plt;
2332
2333 /* .glink stub offset. */
2334 bfd_vma glink_offset;
2335};
2336
25dbc73a
AM
2337/* Of those relocs that might be copied as dynamic relocs, this macro
2338 selects those that must be copied when linking a shared library,
2339 even when the symbol is local. */
252b5132 2340
25dbc73a
AM
2341#define MUST_BE_DYN_RELOC(RTYPE) \
2342 ((RTYPE) != R_PPC_REL24 \
2343 && (RTYPE) != R_PPC_REL14 \
2344 && (RTYPE) != R_PPC_REL14_BRTAKEN \
2345 && (RTYPE) != R_PPC_REL14_BRNTAKEN \
2346 && (RTYPE) != R_PPC_REL32)
252b5132 2347
25dbc73a
AM
2348/* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
2349 copying dynamic variables from a shared lib into an app's dynbss
2350 section, and instead use a dynamic relocation to point into the
2351 shared lib. */
2352#define ELIMINATE_COPY_RELOCS 1
252b5132 2353
25dbc73a 2354/* PPC ELF linker hash entry. */
252b5132 2355
25dbc73a
AM
2356struct ppc_elf_link_hash_entry
2357{
2358 struct elf_link_hash_entry elf;
252b5132 2359
25dbc73a
AM
2360 /* If this symbol is used in the linker created sections, the processor
2361 specific backend uses this field to map the field into the offset
2362 from the beginning of the section. */
2363 elf_linker_section_pointers_t *linker_section_pointer;
252b5132 2364
25dbc73a
AM
2365 /* Track dynamic relocs copied for this symbol. */
2366 struct ppc_elf_dyn_relocs *dyn_relocs;
252b5132 2367
25dbc73a
AM
2368 /* Contexts in which symbol is used in the GOT (or TOC).
2369 TLS_GD .. TLS_TLS bits are or'd into the mask as the
2370 corresponding relocs are encountered during check_relocs.
2371 tls_optimize clears TLS_GD .. TLS_TPREL when optimizing to
2372 indicate the corresponding GOT entry type is not needed. */
2373#define TLS_GD 1 /* GD reloc. */
2374#define TLS_LD 2 /* LD reloc. */
2375#define TLS_TPREL 4 /* TPREL reloc, => IE. */
2376#define TLS_DTPREL 8 /* DTPREL reloc, => LD. */
2377#define TLS_TLS 16 /* Any TLS reloc. */
2378#define TLS_TPRELGD 32 /* TPREL reloc resulting from GD->IE. */
2379 char tls_mask;
4dc4a9a5
DJ
2380
2381 /* Nonzero if we have seen a small data relocation referring to this
2382 symbol. */
2383 unsigned char has_sda_refs;
25dbc73a 2384};
252b5132 2385
25dbc73a
AM
2386#define ppc_elf_hash_entry(ent) ((struct ppc_elf_link_hash_entry *) (ent))
2387
2388/* PPC ELF linker hash table. */
2389
2390struct ppc_elf_link_hash_table
2391{
2392 struct elf_link_hash_table elf;
2393
2394 /* Short-cuts to get to dynamic linker sections. */
2395 asection *got;
2396 asection *relgot;
d7128ce4 2397 asection *glink;
25dbc73a
AM
2398 asection *plt;
2399 asection *relplt;
2400 asection *dynbss;
2401 asection *relbss;
2402 asection *dynsbss;
2403 asection *relsbss;
c9a2f333 2404 elf_linker_section_t sdata[2];
25dbc73a
AM
2405 asection *sbss;
2406
016687f8
AM
2407 /* The (unloaded but important) .rela.plt.unloaded on VxWorks. */
2408 asection *srelplt2;
2409
2410 /* The .got.plt section (VxWorks only)*/
2411 asection *sgotplt;
2412
25dbc73a
AM
2413 /* Shortcut to .__tls_get_addr. */
2414 struct elf_link_hash_entry *tls_get_addr;
252b5132 2415
016687f8
AM
2416 /* The bfd that forced an old-style PLT. */
2417 bfd *old_bfd;
2418
25dbc73a
AM
2419 /* TLS local dynamic got entry handling. */
2420 union {
2421 bfd_signed_vma refcount;
2422 bfd_vma offset;
2423 } tlsld_got;
252b5132 2424
d7128ce4
AM
2425 /* Offset of PltResolve function in glink. */
2426 bfd_vma glink_pltresolve;
2427
3b36f7e6
AM
2428 /* Size of reserved GOT entries. */
2429 unsigned int got_header_size;
2430 /* Non-zero if allocating the header left a gap. */
2431 unsigned int got_gap;
2432
4a3dc543
RS
2433 /* The type of PLT we have chosen to use. */
2434 enum ppc_elf_plt_type plt_type;
2435
0ba07910
AM
2436 /* Set if we should emit symbols for stubs. */
2437 unsigned int emit_stub_syms:1;
2438
9d8504b1 2439 /* True if the target system is VxWorks. */
016687f8 2440 unsigned int is_vxworks:1;
9d8504b1
PB
2441
2442 /* The size of PLT entries. */
2443 int plt_entry_size;
2444 /* The distance between adjacent PLT slots. */
2445 int plt_slot_size;
2446 /* The size of the first PLT entry. */
2447 int plt_initial_entry_size;
016687f8
AM
2448
2449 /* Small local sym to section mapping cache. */
2450 struct sym_sec_cache sym_sec;
25dbc73a 2451};
252b5132 2452
25dbc73a 2453/* Get the PPC ELF linker hash table from a link_info structure. */
252b5132 2454
25dbc73a
AM
2455#define ppc_elf_hash_table(p) \
2456 ((struct ppc_elf_link_hash_table *) (p)->hash)
252b5132 2457
25dbc73a 2458/* Create an entry in a PPC ELF linker hash table. */
252b5132 2459
25dbc73a
AM
2460static struct bfd_hash_entry *
2461ppc_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
2462 struct bfd_hash_table *table,
2463 const char *string)
252b5132 2464{
25dbc73a
AM
2465 /* Allocate the structure if it has not already been allocated by a
2466 subclass. */
2467 if (entry == NULL)
2468 {
2469 entry = bfd_hash_allocate (table,
2470 sizeof (struct ppc_elf_link_hash_entry));
2471 if (entry == NULL)
2472 return entry;
2473 }
252b5132 2474
25dbc73a
AM
2475 /* Call the allocation method of the superclass. */
2476 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
2477 if (entry != NULL)
2478 {
2479 ppc_elf_hash_entry (entry)->linker_section_pointer = NULL;
2480 ppc_elf_hash_entry (entry)->dyn_relocs = NULL;
2481 ppc_elf_hash_entry (entry)->tls_mask = 0;
2482 }
252b5132 2483
25dbc73a 2484 return entry;
252b5132 2485}
3dab13f6 2486
25dbc73a 2487/* Create a PPC ELF linker hash table. */
3dab13f6 2488
25dbc73a
AM
2489static struct bfd_link_hash_table *
2490ppc_elf_link_hash_table_create (bfd *abfd)
3dab13f6 2491{
25dbc73a 2492 struct ppc_elf_link_hash_table *ret;
3dab13f6 2493
25dbc73a
AM
2494 ret = bfd_zmalloc (sizeof (struct ppc_elf_link_hash_table));
2495 if (ret == NULL)
2496 return NULL;
3dab13f6 2497
66eb6687
AM
2498 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
2499 ppc_elf_link_hash_newfunc,
2500 sizeof (struct ppc_elf_link_hash_entry)))
3dab13f6 2501 {
25dbc73a
AM
2502 free (ret);
2503 return NULL;
2504 }
58111eb7 2505
a6aa5195
AM
2506 ret->elf.init_plt_refcount.refcount = 0;
2507 ret->elf.init_plt_refcount.glist = NULL;
2508 ret->elf.init_plt_offset.offset = 0;
2509 ret->elf.init_plt_offset.glist = NULL;
2510
c9a2f333
AM
2511 ret->sdata[0].name = ".sdata";
2512 ret->sdata[0].sym_name = "_SDA_BASE_";
2513 ret->sdata[0].bss_name = ".sbss";
2514
2515 ret->sdata[1].name = ".sdata2";
2516 ret->sdata[1].sym_name = "_SDA2_BASE_";
2517 ret->sdata[1].bss_name = ".sbss2";
2518
9d8504b1
PB
2519 ret->plt_entry_size = 12;
2520 ret->plt_slot_size = 8;
2521 ret->plt_initial_entry_size = 72;
9d8504b1 2522
25dbc73a
AM
2523 return &ret->elf.root;
2524}
3dab13f6 2525
9d8504b1 2526/* Create .got and the related sections. */
3dab13f6 2527
25dbc73a
AM
2528static bfd_boolean
2529ppc_elf_create_got (bfd *abfd, struct bfd_link_info *info)
2530{
2531 struct ppc_elf_link_hash_table *htab;
2532 asection *s;
2533 flagword flags;
3dab13f6 2534
25dbc73a
AM
2535 if (!_bfd_elf_create_got_section (abfd, info))
2536 return FALSE;
3dab13f6 2537
25dbc73a
AM
2538 htab = ppc_elf_hash_table (info);
2539 htab->got = s = bfd_get_section_by_name (abfd, ".got");
2540 if (s == NULL)
2541 abort ();
3dab13f6 2542
9d8504b1
PB
2543 if (htab->is_vxworks)
2544 {
2545 htab->sgotplt = bfd_get_section_by_name (abfd, ".got.plt");
2546 if (!htab->sgotplt)
2547 abort ();
2548 }
2549 else
2550 {
2551 /* The powerpc .got has a blrl instruction in it. Mark it
2552 executable. */
2553 flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS
2554 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2555 if (!bfd_set_section_flags (abfd, s, flags))
2556 return FALSE;
2557 }
3dab13f6 2558
3b36f7e6
AM
2559 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
2560 | SEC_LINKER_CREATED | SEC_READONLY);
2561 htab->relgot = bfd_make_section_with_flags (abfd, ".rela.got", flags);
25dbc73a 2562 if (!htab->relgot
25dbc73a
AM
2563 || ! bfd_set_section_alignment (abfd, htab->relgot, 2))
2564 return FALSE;
3dab13f6 2565
25dbc73a
AM
2566 return TRUE;
2567}
3dab13f6 2568
25dbc73a
AM
2569/* We have to create .dynsbss and .rela.sbss here so that they get mapped
2570 to output sections (just like _bfd_elf_create_dynamic_sections has
2571 to create .dynbss and .rela.bss). */
3dab13f6 2572
25dbc73a
AM
2573static bfd_boolean
2574ppc_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
2575{
2576 struct ppc_elf_link_hash_table *htab;
2577 asection *s;
2578 flagword flags;
3dab13f6 2579
25dbc73a 2580 htab = ppc_elf_hash_table (info);
3dab13f6 2581
25dbc73a
AM
2582 if (htab->got == NULL
2583 && !ppc_elf_create_got (abfd, info))
3dab13f6
AM
2584 return FALSE;
2585
25dbc73a
AM
2586 if (!_bfd_elf_create_dynamic_sections (abfd, info))
2587 return FALSE;
3dab13f6 2588
d7128ce4
AM
2589 flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
2590 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2591
2592 s = bfd_make_section_anyway_with_flags (abfd, ".glink", flags | SEC_CODE);
2593 htab->glink = s;
2594 if (s == NULL
2595 || !bfd_set_section_alignment (abfd, s, 4))
2596 return FALSE;
3dab13f6 2597
25dbc73a 2598 htab->dynbss = bfd_get_section_by_name (abfd, ".dynbss");
3b36f7e6
AM
2599 s = bfd_make_section_with_flags (abfd, ".dynsbss",
2600 SEC_ALLOC | SEC_LINKER_CREATED);
2601 htab->dynsbss = s;
3496cb2a 2602 if (s == NULL)
25dbc73a 2603 return FALSE;
3dab13f6 2604
25dbc73a
AM
2605 if (! info->shared)
2606 {
2607 htab->relbss = bfd_get_section_by_name (abfd, ".rela.bss");
d7128ce4 2608 s = bfd_make_section_with_flags (abfd, ".rela.sbss", flags);
3b36f7e6 2609 htab->relsbss = s;
25dbc73a 2610 if (s == NULL
25dbc73a
AM
2611 || ! bfd_set_section_alignment (abfd, s, 2))
2612 return FALSE;
2613 }
3dab13f6 2614
711de32c
RS
2615 if (htab->is_vxworks
2616 && !elf_vxworks_create_dynamic_sections (abfd, info, &htab->srelplt2))
2617 return FALSE;
9d8504b1 2618
25dbc73a
AM
2619 htab->relplt = bfd_get_section_by_name (abfd, ".rela.plt");
2620 htab->plt = s = bfd_get_section_by_name (abfd, ".plt");
2621 if (s == NULL)
2622 abort ();
3dab13f6 2623
3b36f7e6 2624 flags = SEC_ALLOC | SEC_CODE | SEC_LINKER_CREATED;
4a3dc543
RS
2625 if (htab->plt_type == PLT_VXWORKS)
2626 /* The VxWorks PLT is a loaded section with contents. */
2627 flags |= SEC_HAS_CONTENTS | SEC_LOAD | SEC_READONLY;
25dbc73a
AM
2628 return bfd_set_section_flags (abfd, s, flags);
2629}
3dab13f6 2630
25dbc73a 2631/* Copy the extra info we tack onto an elf_link_hash_entry. */
58111eb7 2632
25dbc73a 2633static void
fcfa13d2 2634ppc_elf_copy_indirect_symbol (struct bfd_link_info *info,
25dbc73a
AM
2635 struct elf_link_hash_entry *dir,
2636 struct elf_link_hash_entry *ind)
2637{
2638 struct ppc_elf_link_hash_entry *edir, *eind;
3dab13f6 2639
25dbc73a
AM
2640 edir = (struct ppc_elf_link_hash_entry *) dir;
2641 eind = (struct ppc_elf_link_hash_entry *) ind;
3dab13f6 2642
25dbc73a
AM
2643 if (eind->dyn_relocs != NULL)
2644 {
2645 if (edir->dyn_relocs != NULL)
3dab13f6 2646 {
25dbc73a
AM
2647 struct ppc_elf_dyn_relocs **pp;
2648 struct ppc_elf_dyn_relocs *p;
3dab13f6 2649
fcfa13d2 2650 /* Add reloc counts against the indirect sym to the direct sym
25dbc73a
AM
2651 list. Merge any entries against the same section. */
2652 for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
3dab13f6 2653 {
25dbc73a
AM
2654 struct ppc_elf_dyn_relocs *q;
2655
2656 for (q = edir->dyn_relocs; q != NULL; q = q->next)
2657 if (q->sec == p->sec)
2658 {
2659 q->pc_count += p->pc_count;
2660 q->count += p->count;
2661 *pp = p->next;
2662 break;
2663 }
2664 if (q == NULL)
2665 pp = &p->next;
3dab13f6 2666 }
25dbc73a 2667 *pp = edir->dyn_relocs;
3dab13f6 2668 }
25dbc73a
AM
2669
2670 edir->dyn_relocs = eind->dyn_relocs;
2671 eind->dyn_relocs = NULL;
3dab13f6 2672 }
3dab13f6 2673
25dbc73a 2674 edir->tls_mask |= eind->tls_mask;
4dc4a9a5 2675 edir->has_sda_refs |= eind->has_sda_refs;
3dab13f6 2676
a6aa5195
AM
2677 /* If called to transfer flags for a weakdef during processing
2678 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
2679 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
2680 if (!(ELIMINATE_COPY_RELOCS
2681 && eind->elf.root.type != bfd_link_hash_indirect
2682 && edir->elf.dynamic_adjusted))
2683 edir->elf.non_got_ref |= eind->elf.non_got_ref;
2684
2685 edir->elf.ref_dynamic |= eind->elf.ref_dynamic;
2686 edir->elf.ref_regular |= eind->elf.ref_regular;
2687 edir->elf.ref_regular_nonweak |= eind->elf.ref_regular_nonweak;
2688 edir->elf.needs_plt |= eind->elf.needs_plt;
2689
2690 /* If we were called to copy over info for a weak sym, that's all. */
2691 if (eind->elf.root.type != bfd_link_hash_indirect)
2692 return;
2693
2694 /* Copy over the GOT refcount entries that we may have already seen to
2695 the symbol which just became indirect. */
fcfa13d2
AM
2696 edir->elf.got.refcount += eind->elf.got.refcount;
2697 eind->elf.got.refcount = 0;
a6aa5195
AM
2698
2699 /* And plt entries. */
2700 if (eind->elf.plt.plist != NULL)
2701 {
2702 if (edir->elf.plt.plist != NULL)
2703 {
2704 struct plt_entry **entp;
2705 struct plt_entry *ent;
2706
2707 for (entp = &eind->elf.plt.plist; (ent = *entp) != NULL; )
2708 {
2709 struct plt_entry *dent;
2710
2711 for (dent = edir->elf.plt.plist; dent != NULL; dent = dent->next)
2712 if (dent->sec == ent->sec && dent->addend == ent->addend)
2713 {
2714 dent->plt.refcount += ent->plt.refcount;
2715 *entp = ent->next;
2716 break;
2717 }
2718 if (dent == NULL)
2719 entp = &ent->next;
2720 }
2721 *entp = edir->elf.plt.plist;
2722 }
2723
2724 edir->elf.plt.plist = eind->elf.plt.plist;
2725 eind->elf.plt.plist = NULL;
2726 }
2727
fcfa13d2 2728 if (eind->elf.dynindx != -1)
25dbc73a 2729 {
fcfa13d2
AM
2730 if (edir->elf.dynindx != -1)
2731 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
2732 edir->elf.dynstr_index);
a6aa5195
AM
2733 edir->elf.dynindx = eind->elf.dynindx;
2734 edir->elf.dynstr_index = eind->elf.dynstr_index;
2735 eind->elf.dynindx = -1;
2736 eind->elf.dynstr_index = 0;
25dbc73a 2737 }
25dbc73a 2738}
3dab13f6 2739
8853c3d3
AM
2740/* Return 1 if target is one of ours. */
2741
2742static bfd_boolean
2743is_ppc_elf_target (const struct bfd_target *targ)
2744{
2745 extern const bfd_target bfd_elf32_powerpc_vec;
7c492719 2746 extern const bfd_target bfd_elf32_powerpc_vxworks_vec;
8853c3d3
AM
2747 extern const bfd_target bfd_elf32_powerpcle_vec;
2748
7c492719
RS
2749 return (targ == &bfd_elf32_powerpc_vec
2750 || targ == &bfd_elf32_powerpc_vxworks_vec
2751 || targ == &bfd_elf32_powerpcle_vec);
8853c3d3
AM
2752}
2753
25dbc73a
AM
2754/* Hook called by the linker routine which adds symbols from an object
2755 file. We use it to put .comm items in .sbss, and not .bss. */
58111eb7 2756
25dbc73a
AM
2757static bfd_boolean
2758ppc_elf_add_symbol_hook (bfd *abfd,
2759 struct bfd_link_info *info,
2760 Elf_Internal_Sym *sym,
2761 const char **namep ATTRIBUTE_UNUSED,
2762 flagword *flagsp ATTRIBUTE_UNUSED,
2763 asection **secp,
2764 bfd_vma *valp)
2765{
2766 if (sym->st_shndx == SHN_COMMON
2767 && !info->relocatable
2768 && sym->st_size <= elf_gp_size (abfd)
d2663f46 2769 && is_ppc_elf_target (info->hash->creator))
25dbc73a
AM
2770 {
2771 /* Common symbols less than or equal to -G nn bytes are automatically
2772 put into .sbss. */
2773 struct ppc_elf_link_hash_table *htab;
3dab13f6 2774
25dbc73a
AM
2775 htab = ppc_elf_hash_table (info);
2776 if (htab->sbss == NULL)
2777 {
644285ef 2778 flagword flags = SEC_IS_COMMON | SEC_LINKER_CREATED;
3dab13f6 2779
644285ef
AM
2780 if (!htab->elf.dynobj)
2781 htab->elf.dynobj = abfd;
2782
3496cb2a
L
2783 htab->sbss = bfd_make_section_anyway_with_flags (htab->elf.dynobj,
2784 ".sbss",
2785 flags);
2786 if (htab->sbss == NULL)
25dbc73a 2787 return FALSE;
3dab13f6 2788 }
3dab13f6 2789
25dbc73a
AM
2790 *secp = htab->sbss;
2791 *valp = sym->st_size;
2792 }
3dab13f6 2793
25dbc73a 2794 return TRUE;
3dab13f6
AM
2795}
2796\f
046183de
AM
2797static bfd_boolean
2798create_sdata_sym (struct ppc_elf_link_hash_table *htab,
2799 elf_linker_section_t *lsect)
2800{
2801 lsect->sym = elf_link_hash_lookup (&htab->elf, lsect->sym_name,
2802 TRUE, FALSE, TRUE);
2803 if (lsect->sym == NULL)
2804 return FALSE;
2805 if (lsect->sym->root.type == bfd_link_hash_new)
2806 lsect->sym->non_elf = 0;
2807 lsect->sym->ref_regular = 1;
2808 return TRUE;
2809}
2810
c9a2f333 2811/* Create a special linker section. */
25dbc73a 2812
c9a2f333 2813static bfd_boolean
55fd94b0
AM
2814ppc_elf_create_linker_section (bfd *abfd,
2815 struct bfd_link_info *info,
c9a2f333
AM
2816 flagword flags,
2817 elf_linker_section_t *lsect)
252b5132 2818{
58111eb7 2819 struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
c9a2f333 2820 asection *s;
58111eb7 2821
c9a2f333
AM
2822 flags |= (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
2823 | SEC_LINKER_CREATED);
58111eb7
AM
2824
2825 /* Record the first bfd that needs the special sections. */
2826 if (!htab->elf.dynobj)
2827 htab->elf.dynobj = abfd;
2828
3496cb2a
L
2829 s = bfd_make_section_anyway_with_flags (htab->elf.dynobj,
2830 lsect->name,
2831 flags);
76750a2f 2832 if (s == NULL
76750a2f 2833 || !bfd_set_section_alignment (htab->elf.dynobj, s, 2))
c9a2f333 2834 return FALSE;
76750a2f 2835 lsect->section = s;
58111eb7 2836
046183de 2837 return create_sdata_sym (htab, lsect);
252b5132 2838}
252b5132 2839
25dbc73a
AM
2840/* Find a linker generated pointer with a given addend and type. */
2841
2842static elf_linker_section_pointers_t *
2843elf_find_pointer_linker_section
2844 (elf_linker_section_pointers_t *linker_pointers,
2845 bfd_vma addend,
2846 elf_linker_section_t *lsect)
252b5132 2847{
25dbc73a
AM
2848 for ( ; linker_pointers != NULL; linker_pointers = linker_pointers->next)
2849 if (lsect == linker_pointers->lsect && addend == linker_pointers->addend)
2850 return linker_pointers;
252b5132 2851
25dbc73a
AM
2852 return NULL;
2853}
2854
2855/* Allocate a pointer to live in a linker created section. */
2856
2857static bfd_boolean
2858elf_create_pointer_linker_section (bfd *abfd,
25dbc73a
AM
2859 elf_linker_section_t *lsect,
2860 struct elf_link_hash_entry *h,
2861 const Elf_Internal_Rela *rel)
2862{
2863 elf_linker_section_pointers_t **ptr_linker_section_ptr = NULL;
2864 elf_linker_section_pointers_t *linker_section_ptr;
2865 unsigned long r_symndx = ELF32_R_SYM (rel->r_info);
2866 bfd_size_type amt;
2867
2868 BFD_ASSERT (lsect != NULL);
2869
2870 /* Is this a global symbol? */
2871 if (h != NULL)
2872 {
2873 struct ppc_elf_link_hash_entry *eh;
2874
2875 /* Has this symbol already been allocated? If so, our work is done. */
2876 eh = (struct ppc_elf_link_hash_entry *) h;
2877 if (elf_find_pointer_linker_section (eh->linker_section_pointer,
2878 rel->r_addend,
2879 lsect))
2880 return TRUE;
2881
2882 ptr_linker_section_ptr = &eh->linker_section_pointer;
25dbc73a
AM
2883 }
2884 else
2885 {
2886 /* Allocation of a pointer to a local symbol. */
2887 elf_linker_section_pointers_t **ptr = elf_local_ptr_offsets (abfd);
2888
2889 /* Allocate a table to hold the local symbols if first time. */
2890 if (!ptr)
2891 {
2892 unsigned int num_symbols = elf_tdata (abfd)->symtab_hdr.sh_info;
2893
2894 amt = num_symbols;
2895 amt *= sizeof (elf_linker_section_pointers_t *);
2896 ptr = bfd_zalloc (abfd, amt);
2897
2898 if (!ptr)
2899 return FALSE;
2900
2901 elf_local_ptr_offsets (abfd) = ptr;
2902 }
2903
2904 /* Has this symbol already been allocated? If so, our work is done. */
2905 if (elf_find_pointer_linker_section (ptr[r_symndx],
2906 rel->r_addend,
2907 lsect))
2908 return TRUE;
252b5132 2909
25dbc73a 2910 ptr_linker_section_ptr = &ptr[r_symndx];
25dbc73a 2911 }
41fcb14e 2912
25dbc73a
AM
2913 /* Allocate space for a pointer in the linker section, and allocate
2914 a new pointer record from internal memory. */
2915 BFD_ASSERT (ptr_linker_section_ptr != NULL);
2916 amt = sizeof (elf_linker_section_pointers_t);
2917 linker_section_ptr = bfd_alloc (abfd, amt);
41fcb14e 2918
25dbc73a 2919 if (!linker_section_ptr)
7619e7c7 2920 return FALSE;
41fcb14e 2921
25dbc73a
AM
2922 linker_section_ptr->next = *ptr_linker_section_ptr;
2923 linker_section_ptr->addend = rel->r_addend;
2924 linker_section_ptr->lsect = lsect;
25dbc73a 2925 *ptr_linker_section_ptr = linker_section_ptr;
41fcb14e 2926
25dbc73a
AM
2927 linker_section_ptr->offset = lsect->section->size;
2928 lsect->section->size += 4;
7619e7c7 2929
25dbc73a
AM
2930#ifdef DEBUG
2931 fprintf (stderr,
2932 "Create pointer in linker section %s, offset = %ld, section size = %ld\n",
2933 lsect->name, (long) linker_section_ptr->offset,
2934 (long) lsect->section->size);
2935#endif
7619e7c7
AM
2936
2937 return TRUE;
41fcb14e
AM
2938}
2939
b34976b6 2940static bfd_boolean
25dbc73a
AM
2941update_local_sym_info (bfd *abfd,
2942 Elf_Internal_Shdr *symtab_hdr,
2943 unsigned long r_symndx,
2944 int tls_type)
252b5132 2945{
25dbc73a
AM
2946 bfd_signed_vma *local_got_refcounts = elf_local_got_refcounts (abfd);
2947 char *local_got_tls_masks;
252b5132 2948
25dbc73a 2949 if (local_got_refcounts == NULL)
252b5132 2950 {
25dbc73a
AM
2951 bfd_size_type size = symtab_hdr->sh_info;
2952
2953 size *= sizeof (*local_got_refcounts) + sizeof (*local_got_tls_masks);
2954 local_got_refcounts = bfd_zalloc (abfd, size);
2955 if (local_got_refcounts == NULL)
b34976b6 2956 return FALSE;
25dbc73a 2957 elf_local_got_refcounts (abfd) = local_got_refcounts;
252b5132 2958 }
41fcb14e 2959
25dbc73a
AM
2960 local_got_refcounts[r_symndx] += 1;
2961 local_got_tls_masks = (char *) (local_got_refcounts + symtab_hdr->sh_info);
2962 local_got_tls_masks[r_symndx] |= tls_type;
2963 return TRUE;
2964}
41fcb14e 2965
a6aa5195
AM
2966static bfd_boolean
2967update_plt_info (bfd *abfd, struct elf_link_hash_entry *h,
2968 asection *sec, bfd_vma addend)
2969{
2970 struct plt_entry *ent;
2971
2972 if (addend < 32768)
2973 sec = NULL;
2974 for (ent = h->plt.plist; ent != NULL; ent = ent->next)
2975 if (ent->sec == sec && ent->addend == addend)
2976 break;
2977 if (ent == NULL)
2978 {
2979 bfd_size_type amt = sizeof (*ent);
2980 ent = bfd_alloc (abfd, amt);
2981 if (ent == NULL)
2982 return FALSE;
2983 ent->next = h->plt.plist;
2984 ent->sec = sec;
2985 ent->addend = addend;
2986 ent->plt.refcount = 0;
2987 h->plt.plist = ent;
2988 }
2989 ent->plt.refcount += 1;
2990 return TRUE;
2991}
2992
2993static struct plt_entry *
2994find_plt_ent (struct elf_link_hash_entry *h, asection *sec, bfd_vma addend)
2995{
2996 struct plt_entry *ent;
2997
2998 if (addend < 32768)
2999 sec = NULL;
3000 for (ent = h->plt.plist; ent != NULL; ent = ent->next)
3001 if (ent->sec == sec && ent->addend == addend)
3002 break;
3003 return ent;
3004}
3005
25dbc73a
AM
3006static void
3007bad_shared_reloc (bfd *abfd, enum elf_ppc_reloc_type r_type)
3008{
3009 (*_bfd_error_handler)
3010 (_("%B: relocation %s cannot be used when making a shared object"),
3011 abfd,
3012 ppc_elf_howto_table[r_type]->name);
3013 bfd_set_error (bfd_error_bad_value);
252b5132
RH
3014}
3015
25dbc73a
AM
3016/* Look through the relocs for a section during the first phase, and
3017 allocate space in the global offset table or procedure linkage
3018 table. */
252b5132 3019
b34976b6 3020static bfd_boolean
25dbc73a
AM
3021ppc_elf_check_relocs (bfd *abfd,
3022 struct bfd_link_info *info,
3023 asection *sec,
3024 const Elf_Internal_Rela *relocs)
252b5132 3025{
7619e7c7 3026 struct ppc_elf_link_hash_table *htab;
25dbc73a
AM
3027 Elf_Internal_Shdr *symtab_hdr;
3028 struct elf_link_hash_entry **sym_hashes;
3029 const Elf_Internal_Rela *rel;
3030 const Elf_Internal_Rela *rel_end;
a6aa5195 3031 asection *got2, *sreloc;
25dbc73a
AM
3032
3033 if (info->relocatable)
3034 return TRUE;
252b5132 3035
c87b5a93
AM
3036 /* Don't do anything special with non-loaded, non-alloced sections.
3037 In particular, any relocs in such sections should not affect GOT
3038 and PLT reference counting (ie. we don't allow them to create GOT
3039 or PLT entries), there's no possibility or desire to optimize TLS
3040 relocs, and there's not much point in propagating relocs to shared
3041 libs that the dynamic linker won't relocate. */
3042 if ((sec->flags & SEC_ALLOC) == 0)
3043 return TRUE;
3044
252b5132 3045#ifdef DEBUG
25dbc73a
AM
3046 _bfd_error_handler ("ppc_elf_check_relocs called for section %A in %B",
3047 sec, abfd);
252b5132
RH
3048#endif
3049
25dbc73a
AM
3050 /* Initialize howto table if not already done. */
3051 if (!ppc_elf_howto_table[R_PPC_ADDR32])
3052 ppc_elf_howto_init ();
3053
7619e7c7 3054 htab = ppc_elf_hash_table (info);
25dbc73a
AM
3055 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
3056 sym_hashes = elf_sym_hashes (abfd);
a6aa5195 3057 got2 = bfd_get_section_by_name (abfd, ".got2");
25dbc73a
AM
3058 sreloc = NULL;
3059
3060 rel_end = relocs + sec->reloc_count;
3061 for (rel = relocs; rel < rel_end; rel++)
3062 {
3063 unsigned long r_symndx;
3064 enum elf_ppc_reloc_type r_type;
3065 struct elf_link_hash_entry *h;
3066 int tls_type = 0;
3067
3068 r_symndx = ELF32_R_SYM (rel->r_info);
3069 if (r_symndx < symtab_hdr->sh_info)
3070 h = NULL;
3071 else
973a3492
L
3072 {
3073 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3074 while (h->root.type == bfd_link_hash_indirect
3075 || h->root.type == bfd_link_hash_warning)
3076 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3077 }
25dbc73a
AM
3078
3079 /* If a relocation refers to _GLOBAL_OFFSET_TABLE_, create the .got.
3080 This shows up in particular in an R_PPC_ADDR32 in the eabi
3081 startup code. */
3b36f7e6
AM
3082 if (h != NULL
3083 && htab->got == NULL
3084 && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
252b5132 3085 {
3b36f7e6
AM
3086 if (htab->elf.dynobj == NULL)
3087 htab->elf.dynobj = abfd;
3088 if (!ppc_elf_create_got (htab->elf.dynobj, info))
3089 return FALSE;
3090 BFD_ASSERT (h == htab->elf.hgot);
25dbc73a 3091 }
252b5132 3092
25dbc73a
AM
3093 r_type = ELF32_R_TYPE (rel->r_info);
3094 switch (r_type)
3095 {
3096 case R_PPC_GOT_TLSLD16:
3097 case R_PPC_GOT_TLSLD16_LO:
3098 case R_PPC_GOT_TLSLD16_HI:
3099 case R_PPC_GOT_TLSLD16_HA:
3100 htab->tlsld_got.refcount += 1;
3101 tls_type = TLS_TLS | TLS_LD;
3102 goto dogottls;
252b5132 3103
25dbc73a
AM
3104 case R_PPC_GOT_TLSGD16:
3105 case R_PPC_GOT_TLSGD16_LO:
3106 case R_PPC_GOT_TLSGD16_HI:
3107 case R_PPC_GOT_TLSGD16_HA:
3108 tls_type = TLS_TLS | TLS_GD;
3109 goto dogottls;
3110
3111 case R_PPC_GOT_TPREL16:
3112 case R_PPC_GOT_TPREL16_LO:
3113 case R_PPC_GOT_TPREL16_HI:
3114 case R_PPC_GOT_TPREL16_HA:
3115 if (info->shared)
3116 info->flags |= DF_STATIC_TLS;
3117 tls_type = TLS_TLS | TLS_TPREL;
3118 goto dogottls;
3119
3120 case R_PPC_GOT_DTPREL16:
3121 case R_PPC_GOT_DTPREL16_LO:
3122 case R_PPC_GOT_DTPREL16_HI:
3123 case R_PPC_GOT_DTPREL16_HA:
3124 tls_type = TLS_TLS | TLS_DTPREL;
3125 dogottls:
3126 sec->has_tls_reloc = 1;
3127 /* Fall thru */
252b5132 3128
25dbc73a
AM
3129 /* GOT16 relocations */
3130 case R_PPC_GOT16:
3131 case R_PPC_GOT16_LO:
3132 case R_PPC_GOT16_HI:
3133 case R_PPC_GOT16_HA:
3134 /* This symbol requires a global offset table entry. */
3135 if (htab->got == NULL)
3136 {
3137 if (htab->elf.dynobj == NULL)
3138 htab->elf.dynobj = abfd;
3139 if (!ppc_elf_create_got (htab->elf.dynobj, info))
3140 return FALSE;
3141 }
3142 if (h != NULL)
3143 {
3144 h->got.refcount += 1;
3145 ppc_elf_hash_entry (h)->tls_mask |= tls_type;
3146 }
3147 else
3148 /* This is a global offset table entry for a local symbol. */
3149 if (!update_local_sym_info (abfd, symtab_hdr, r_symndx, tls_type))
3150 return FALSE;
3151 break;
252b5132 3152
25dbc73a
AM
3153 /* Indirect .sdata relocation. */
3154 case R_PPC_EMB_SDAI16:
3155 if (info->shared)
3156 {
3157 bad_shared_reloc (abfd, r_type);
3158 return FALSE;
3159 }
c9a2f333
AM
3160 if (htab->sdata[0].section == NULL
3161 && !ppc_elf_create_linker_section (abfd, info, 0,
3162 &htab->sdata[0]))
3163 return FALSE;
76750a2f
AM
3164 if (!elf_create_pointer_linker_section (abfd, &htab->sdata[0],
3165 h, rel))
25dbc73a 3166 return FALSE;
046183de
AM
3167 if (h != NULL)
3168 {
3169 ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
3170 h->non_got_ref = TRUE;
3171 }
25dbc73a 3172 break;
252b5132 3173
25dbc73a
AM
3174 /* Indirect .sdata2 relocation. */
3175 case R_PPC_EMB_SDA2I16:
3176 if (info->shared)
3177 {
3178 bad_shared_reloc (abfd, r_type);
3179 return FALSE;
3180 }
c9a2f333
AM
3181 if (htab->sdata[1].section == NULL
3182 && !ppc_elf_create_linker_section (abfd, info, SEC_READONLY,
3183 &htab->sdata[1]))
3184 return FALSE;
76750a2f
AM
3185 if (!elf_create_pointer_linker_section (abfd, &htab->sdata[1],
3186 h, rel))
25dbc73a 3187 return FALSE;
046183de
AM
3188 if (h != NULL)
3189 {
3190 ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
3191 h->non_got_ref = TRUE;
3192 }
25dbc73a 3193 break;
252b5132 3194
25dbc73a 3195 case R_PPC_SDAREL16:
046183de
AM
3196 if (info->shared)
3197 {
3198 bad_shared_reloc (abfd, r_type);
3199 return FALSE;
3200 }
3201 if (htab->sdata[0].sym == NULL
3202 && !create_sdata_sym (htab, &htab->sdata[0]))
3203 return FALSE;
3204 if (h != NULL)
3205 {
3206 ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
3207 h->non_got_ref = TRUE;
3208 }
3209 break;
3210
25dbc73a 3211 case R_PPC_EMB_SDA2REL:
046183de
AM
3212 if (info->shared)
3213 {
3214 bad_shared_reloc (abfd, r_type);
3215 return FALSE;
3216 }
3217 if (htab->sdata[1].sym == NULL
3218 && !create_sdata_sym (htab, &htab->sdata[1]))
3219 return FALSE;
3220 if (h != NULL)
3221 {
3222 ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
3223 h->non_got_ref = TRUE;
3224 }
3225 break;
3226
25dbc73a
AM
3227 case R_PPC_EMB_SDA21:
3228 case R_PPC_EMB_RELSDA:
046183de
AM
3229 if (info->shared)
3230 {
3231 bad_shared_reloc (abfd, r_type);
3232 return FALSE;
3233 }
3234 if (htab->sdata[0].sym == NULL
3235 && !create_sdata_sym (htab, &htab->sdata[0]))
3236 return FALSE;
3237 if (htab->sdata[1].sym == NULL
3238 && !create_sdata_sym (htab, &htab->sdata[1]))
3239 return FALSE;
3240 if (h != NULL)
3241 {
3242 ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
3243 h->non_got_ref = TRUE;
3244 }
3245 break;
3246
25dbc73a
AM
3247 case R_PPC_EMB_NADDR32:
3248 case R_PPC_EMB_NADDR16:
3249 case R_PPC_EMB_NADDR16_LO:
3250 case R_PPC_EMB_NADDR16_HI:
3251 case R_PPC_EMB_NADDR16_HA:
3252 if (info->shared)
3253 {
3254 bad_shared_reloc (abfd, r_type);
3255 return FALSE;
3256 }
4dc4a9a5 3257 if (h != NULL)
046183de 3258 h->non_got_ref = TRUE;
25dbc73a 3259 break;
252b5132 3260
25dbc73a
AM
3261 case R_PPC_PLT32:
3262 case R_PPC_PLTREL24:
3263 case R_PPC_PLTREL32:
3264 case R_PPC_PLT16_LO:
3265 case R_PPC_PLT16_HI:
3266 case R_PPC_PLT16_HA:
3267#ifdef DEBUG
3268 fprintf (stderr, "Reloc requires a PLT entry\n");
3269#endif
3270 /* This symbol requires a procedure linkage table entry. We
3271 actually build the entry in finish_dynamic_symbol,
3272 because this might be a case of linking PIC code without
3273 linking in any dynamic objects, in which case we don't
3274 need to generate a procedure linkage table after all. */
7619e7c7 3275
25dbc73a
AM
3276 if (h == NULL)
3277 {
3278 /* It does not make sense to have a procedure linkage
3279 table entry for a local symbol. */
3280 (*_bfd_error_handler) (_("%B(%A+0x%lx): %s reloc against "
3281 "local symbol"),
3282 abfd,
3283 sec,
3284 (long) rel->r_offset,
3285 ppc_elf_howto_table[r_type]->name);
3286 bfd_set_error (bfd_error_bad_value);
3287 return FALSE;
3288 }
a6aa5195
AM
3289 else
3290 {
016687f8 3291 bfd_vma addend = 0;
ee05f2fe 3292
016687f8
AM
3293 if (r_type == R_PPC_PLTREL24)
3294 {
3295 ppc_elf_tdata (abfd)->makes_plt_call = 1;
3296 addend = rel->r_addend;
3297 }
a6aa5195
AM
3298 h->needs_plt = 1;
3299 if (!update_plt_info (abfd, h, got2, addend))
3300 return FALSE;
3301 }
25dbc73a 3302 break;
ee05f2fe 3303
25dbc73a
AM
3304 /* The following relocations don't need to propagate the
3305 relocation if linking a shared object since they are
3306 section relative. */
3307 case R_PPC_SECTOFF:
3308 case R_PPC_SECTOFF_LO:
3309 case R_PPC_SECTOFF_HI:
3310 case R_PPC_SECTOFF_HA:
3311 case R_PPC_DTPREL16:
3312 case R_PPC_DTPREL16_LO:
3313 case R_PPC_DTPREL16_HI:
3314 case R_PPC_DTPREL16_HA:
3315 case R_PPC_TOC16:
3316 break;
252b5132 3317
d7128ce4
AM
3318 case R_PPC_REL16:
3319 case R_PPC_REL16_LO:
3320 case R_PPC_REL16_HI:
3321 case R_PPC_REL16_HA:
016687f8 3322 ppc_elf_tdata (abfd)->has_rel16 = 1;
d7128ce4
AM
3323 break;
3324
a6aa5195 3325 /* These are just markers. */
25dbc73a
AM
3326 case R_PPC_TLS:
3327 case R_PPC_EMB_MRKREF:
3328 case R_PPC_NONE:
3329 case R_PPC_max:
3330 break;
252b5132 3331
25dbc73a
AM
3332 /* These should only appear in dynamic objects. */
3333 case R_PPC_COPY:
3334 case R_PPC_GLOB_DAT:
3335 case R_PPC_JMP_SLOT:
3336 case R_PPC_RELATIVE:
3337 break;
252b5132 3338
25dbc73a
AM
3339 /* These aren't handled yet. We'll report an error later. */
3340 case R_PPC_ADDR30:
3341 case R_PPC_EMB_RELSEC16:
3342 case R_PPC_EMB_RELST_LO:
3343 case R_PPC_EMB_RELST_HI:
3344 case R_PPC_EMB_RELST_HA:
3345 case R_PPC_EMB_BIT_FLD:
3346 break;
252b5132 3347
25dbc73a
AM
3348 /* This refers only to functions defined in the shared library. */
3349 case R_PPC_LOCAL24PC:
4a3dc543 3350 if (h && h == htab->elf.hgot && htab->plt_type == PLT_UNSET)
016687f8
AM
3351 {
3352 htab->plt_type = PLT_OLD;
3353 htab->old_bfd = abfd;
3354 }
25dbc73a 3355 break;
252b5132 3356
25dbc73a
AM
3357 /* This relocation describes the C++ object vtable hierarchy.
3358 Reconstruct it for later use during GC. */
3359 case R_PPC_GNU_VTINHERIT:
3360 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
3361 return FALSE;
3362 break;
252b5132 3363
25dbc73a
AM
3364 /* This relocation describes which C++ vtable entries are actually
3365 used. Record for later use during GC. */
3366 case R_PPC_GNU_VTENTRY:
3367 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
3368 return FALSE;
3369 break;
252b5132 3370
25dbc73a
AM
3371 /* We shouldn't really be seeing these. */
3372 case R_PPC_TPREL32:
3373 if (info->shared)
3374 info->flags |= DF_STATIC_TLS;
3375 goto dodyn;
252b5132 3376
25dbc73a
AM
3377 /* Nor these. */
3378 case R_PPC_DTPMOD32:
3379 case R_PPC_DTPREL32:
3380 goto dodyn;
252b5132 3381
25dbc73a
AM
3382 case R_PPC_TPREL16:
3383 case R_PPC_TPREL16_LO:
3384 case R_PPC_TPREL16_HI:
3385 case R_PPC_TPREL16_HA:
3386 if (info->shared)
3387 info->flags |= DF_STATIC_TLS;
3388 goto dodyn;
ee05f2fe 3389
9edfd1af
AM
3390 case R_PPC_REL32:
3391 if (h == NULL
3392 && got2 != NULL
3393 && (sec->flags & SEC_CODE) != 0
3394 && (info->shared || info->pie)
4a3dc543 3395 && htab->plt_type == PLT_UNSET)
9edfd1af
AM
3396 {
3397 /* Old -fPIC gcc code has .long LCTOC1-LCFx just before
3398 the start of a function, which assembles to a REL32
3399 reference to .got2. If we detect one of these, then
3400 force the old PLT layout because the linker cannot
3401 reliably deduce the GOT pointer value needed for
3402 PLT call stubs. */
3403 asection *s;
3404
3405 s = bfd_section_from_r_symndx (abfd, &htab->sym_sec, sec,
3406 r_symndx);
3407 if (s == got2)
016687f8
AM
3408 {
3409 htab->plt_type = PLT_OLD;
3410 htab->old_bfd = abfd;
3411 }
9edfd1af 3412 }
7123df0e 3413 if (h == NULL || h == htab->elf.hgot)
fd38b44c 3414 break;
7123df0e 3415 goto dodyn1;
9edfd1af 3416
25dbc73a
AM
3417 case R_PPC_REL24:
3418 case R_PPC_REL14:
3419 case R_PPC_REL14_BRTAKEN:
3420 case R_PPC_REL14_BRNTAKEN:
d7128ce4 3421 if (h == NULL)
25dbc73a 3422 break;
7123df0e 3423 if (h == htab->elf.hgot)
d7128ce4 3424 {
7123df0e 3425 if (htab->plt_type == PLT_UNSET)
016687f8
AM
3426 {
3427 htab->plt_type = PLT_OLD;
3428 htab->old_bfd = abfd;
3429 }
d7128ce4
AM
3430 break;
3431 }
25dbc73a 3432 /* fall through */
ee05f2fe 3433
25dbc73a
AM
3434 case R_PPC_ADDR32:
3435 case R_PPC_ADDR24:
3436 case R_PPC_ADDR16:
3437 case R_PPC_ADDR16_LO:
3438 case R_PPC_ADDR16_HI:
3439 case R_PPC_ADDR16_HA:
3440 case R_PPC_ADDR14:
3441 case R_PPC_ADDR14_BRTAKEN:
3442 case R_PPC_ADDR14_BRNTAKEN:
3443 case R_PPC_UADDR32:
3444 case R_PPC_UADDR16:
7123df0e 3445 dodyn1:
25dbc73a
AM
3446 if (h != NULL && !info->shared)
3447 {
3448 /* We may need a plt entry if the symbol turns out to be
3449 a function defined in a dynamic object. */
a6aa5195
AM
3450 if (!update_plt_info (abfd, h, NULL, 0))
3451 return FALSE;
7fce784e 3452
25dbc73a
AM
3453 /* We may need a copy reloc too. */
3454 h->non_got_ref = 1;
3455 }
7619e7c7 3456
25dbc73a
AM
3457 dodyn:
3458 /* If we are creating a shared library, and this is a reloc
3459 against a global symbol, or a non PC relative reloc
3460 against a local symbol, then we need to copy the reloc
3461 into the shared library. However, if we are linking with
3462 -Bsymbolic, we do not need to copy a reloc against a
3463 global symbol which is defined in an object we are
3464 including in the link (i.e., DEF_REGULAR is set). At
3465 this point we have not seen all the input files, so it is
3466 possible that DEF_REGULAR is not set now but will be set
3467 later (it is never cleared). In case of a weak definition,
3468 DEF_REGULAR may be cleared later by a strong definition in
3469 a shared library. We account for that possibility below by
3470 storing information in the dyn_relocs field of the hash
3471 table entry. A similar situation occurs when creating
3472 shared libraries and symbol visibility changes render the
3473 symbol local.
7619e7c7 3474
25dbc73a
AM
3475 If on the other hand, we are creating an executable, we
3476 may need to keep relocations for symbols satisfied by a
3477 dynamic library if we manage to avoid copy relocs for the
3478 symbol. */
3479 if ((info->shared
3480 && (MUST_BE_DYN_RELOC (r_type)
3481 || (h != NULL
3482 && (! info->symbolic
3483 || h->root.type == bfd_link_hash_defweak
3484 || !h->def_regular))))
3485 || (ELIMINATE_COPY_RELOCS
3486 && !info->shared
25dbc73a
AM
3487 && h != NULL
3488 && (h->root.type == bfd_link_hash_defweak
3489 || !h->def_regular)))
3490 {
3491 struct ppc_elf_dyn_relocs *p;
3492 struct ppc_elf_dyn_relocs **head;
7619e7c7 3493
25dbc73a
AM
3494#ifdef DEBUG
3495 fprintf (stderr,
3496 "ppc_elf_check_relocs needs to "
3497 "create relocation for %s\n",
3498 (h && h->root.root.string
3499 ? h->root.root.string : "<unknown>"));
3500#endif
3501 if (sreloc == NULL)
3502 {
3503 const char *name;
7619e7c7 3504
25dbc73a
AM
3505 name = (bfd_elf_string_from_elf_section
3506 (abfd,
3507 elf_elfheader (abfd)->e_shstrndx,
3508 elf_section_data (sec)->rel_hdr.sh_name));
3509 if (name == NULL)
3510 return FALSE;
7619e7c7 3511
0112cd26 3512 BFD_ASSERT (CONST_STRNEQ (name, ".rela")
25dbc73a
AM
3513 && strcmp (bfd_get_section_name (abfd, sec),
3514 name + 5) == 0);
7619e7c7 3515
c9a2f333
AM
3516 if (htab->elf.dynobj == NULL)
3517 htab->elf.dynobj = abfd;
25dbc73a
AM
3518 sreloc = bfd_get_section_by_name (htab->elf.dynobj, name);
3519 if (sreloc == NULL)
3520 {
3521 flagword flags;
7619e7c7 3522
25dbc73a 3523 flags = (SEC_HAS_CONTENTS | SEC_READONLY
c87b5a93
AM
3524 | SEC_IN_MEMORY | SEC_LINKER_CREATED
3525 | SEC_ALLOC | SEC_LOAD);
3496cb2a
L
3526 sreloc = bfd_make_section_with_flags (htab->elf.dynobj,
3527 name,
3528 flags);
25dbc73a 3529 if (sreloc == NULL
25dbc73a
AM
3530 || ! bfd_set_section_alignment (htab->elf.dynobj,
3531 sreloc, 2))
3532 return FALSE;
3533 }
3534 elf_section_data (sec)->sreloc = sreloc;
3535 }
7619e7c7 3536
25dbc73a
AM
3537 /* If this is a global symbol, we count the number of
3538 relocations we need for this symbol. */
3539 if (h != NULL)
3540 {
3541 head = &ppc_elf_hash_entry (h)->dyn_relocs;
3542 }
3543 else
3544 {
3545 /* Track dynamic relocs needed for local syms too.
3546 We really need local syms available to do this
3547 easily. Oh well. */
7619e7c7 3548
25dbc73a 3549 asection *s;
6edfbbad
DJ
3550 void *vpp;
3551
25dbc73a
AM
3552 s = bfd_section_from_r_symndx (abfd, &htab->sym_sec,
3553 sec, r_symndx);
3554 if (s == NULL)
3555 return FALSE;
7fce784e 3556
6edfbbad
DJ
3557 vpp = &elf_section_data (s)->local_dynrel;
3558 head = (struct ppc_elf_dyn_relocs **) vpp;
25dbc73a 3559 }
7fce784e 3560
25dbc73a
AM
3561 p = *head;
3562 if (p == NULL || p->sec != sec)
3563 {
3564 p = bfd_alloc (htab->elf.dynobj, sizeof *p);
3565 if (p == NULL)
3566 return FALSE;
3567 p->next = *head;
3568 *head = p;
3569 p->sec = sec;
3570 p->count = 0;
3571 p->pc_count = 0;
3572 }
3573
3574 p->count += 1;
3575 if (!MUST_BE_DYN_RELOC (r_type))
3576 p->pc_count += 1;
7619e7c7 3577 }
25dbc73a
AM
3578
3579 break;
7619e7c7
AM
3580 }
3581 }
ee05f2fe 3582
25dbc73a
AM
3583 return TRUE;
3584}
3585\f
8853c3d3
AM
3586/* Merge backend specific data from an object file to the output
3587 object file when linking. */
3588
3589static bfd_boolean
3590ppc_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
3591{
3592 flagword old_flags;
3593 flagword new_flags;
3594 bfd_boolean error;
3595
3596 if (!is_ppc_elf_target (ibfd->xvec)
3597 || !is_ppc_elf_target (obfd->xvec))
3598 return TRUE;
3599
3600 /* Check if we have the same endianess. */
3601 if (! _bfd_generic_verify_endian_match (ibfd, obfd))
3602 return FALSE;
3603
3604 new_flags = elf_elfheader (ibfd)->e_flags;
3605 old_flags = elf_elfheader (obfd)->e_flags;
3606 if (!elf_flags_init (obfd))
3607 {
3608 /* First call, no flags set. */
3609 elf_flags_init (obfd) = TRUE;
3610 elf_elfheader (obfd)->e_flags = new_flags;
3611 }
3612
3613 /* Compatible flags are ok. */
3614 else if (new_flags == old_flags)
3615 ;
3616
3617 /* Incompatible flags. */
3618 else
3619 {
3620 /* Warn about -mrelocatable mismatch. Allow -mrelocatable-lib
3621 to be linked with either. */
3622 error = FALSE;
3623 if ((new_flags & EF_PPC_RELOCATABLE) != 0
3624 && (old_flags & (EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB)) == 0)
3625 {
3626 error = TRUE;
3627 (*_bfd_error_handler)
3628 (_("%B: compiled with -mrelocatable and linked with "
3629 "modules compiled normally"), ibfd);
3630 }
3631 else if ((new_flags & (EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB)) == 0
3632 && (old_flags & EF_PPC_RELOCATABLE) != 0)
3633 {
3634 error = TRUE;
3635 (*_bfd_error_handler)
3636 (_("%B: compiled normally and linked with "
3637 "modules compiled with -mrelocatable"), ibfd);
3638 }
3639
3640 /* The output is -mrelocatable-lib iff both the input files are. */
3641 if (! (new_flags & EF_PPC_RELOCATABLE_LIB))
3642 elf_elfheader (obfd)->e_flags &= ~EF_PPC_RELOCATABLE_LIB;
3643
3644 /* The output is -mrelocatable iff it can't be -mrelocatable-lib,
3645 but each input file is either -mrelocatable or -mrelocatable-lib. */
3646 if (! (elf_elfheader (obfd)->e_flags & EF_PPC_RELOCATABLE_LIB)
3647 && (new_flags & (EF_PPC_RELOCATABLE_LIB | EF_PPC_RELOCATABLE))
3648 && (old_flags & (EF_PPC_RELOCATABLE_LIB | EF_PPC_RELOCATABLE)))
3649 elf_elfheader (obfd)->e_flags |= EF_PPC_RELOCATABLE;
3650
3651 /* Do not warn about eabi vs. V.4 mismatch, just or in the bit if
3652 any module uses it. */
3653 elf_elfheader (obfd)->e_flags |= (new_flags & EF_PPC_EMB);
3654
3655 new_flags &= ~(EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB | EF_PPC_EMB);
3656 old_flags &= ~(EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB | EF_PPC_EMB);
3657
3658 /* Warn about any other mismatches. */
3659 if (new_flags != old_flags)
3660 {
3661 error = TRUE;
3662 (*_bfd_error_handler)
3663 (_("%B: uses different e_flags (0x%lx) fields "
3664 "than previous modules (0x%lx)"),
3665 ibfd, (long) new_flags, (long) old_flags);
3666 }
3667
3668 if (error)
3669 {
3670 bfd_set_error (bfd_error_bad_value);
3671 return FALSE;
3672 }
3673 }
3674
3675 return TRUE;
3676}
3677\f
d7128ce4
AM
3678/* Choose which PLT scheme to use, and set .plt flags appropriately.
3679 Returns -1 on error, 0 for old PLT, 1 for new PLT. */
3680int
3681ppc_elf_select_plt_layout (bfd *output_bfd ATTRIBUTE_UNUSED,
3682 struct bfd_link_info *info,
016687f8 3683 enum ppc_elf_plt_type plt_style,
0ba07910 3684 int emit_stub_syms)
d7128ce4
AM
3685{
3686 struct ppc_elf_link_hash_table *htab;
9d8504b1 3687 flagword flags;
d7128ce4
AM
3688
3689 htab = ppc_elf_hash_table (info);
4a3dc543
RS
3690
3691 if (htab->plt_type == PLT_UNSET)
016687f8
AM
3692 {
3693 if (plt_style == PLT_OLD)
3694 htab->plt_type = PLT_OLD;
3695 else
3696 {
3697 bfd *ibfd;
3698 enum ppc_elf_plt_type plt_type = plt_style;
3699
3700 /* Look through the reloc flags left by ppc_elf_check_relocs.
3701 Use the old style bss plt if a file makes plt calls
3702 without using the new relocs, and if ld isn't given
3703 --secure-plt and we never see REL16 relocs. */
3704 if (plt_type == PLT_UNSET)
3705 plt_type = PLT_OLD;
3706 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->next)
3707 if (is_ppc_elf_target (ibfd->xvec))
3708 {
3709 if (ppc_elf_tdata (ibfd)->has_rel16)
3710 plt_type = PLT_NEW;
3711 else if (ppc_elf_tdata (ibfd)->makes_plt_call)
3712 {
3713 plt_type = PLT_OLD;
3714 htab->old_bfd = ibfd;
3715 break;
3716 }
3717 }
3718 htab->plt_type = plt_type;
3719 }
3720 }
3721 if (htab->plt_type == PLT_OLD && plt_style == PLT_NEW)
3722 info->callbacks->info (_("Using bss-plt due to %B"), htab->old_bfd);
d7128ce4 3723
0ba07910
AM
3724 htab->emit_stub_syms = emit_stub_syms;
3725
4a3dc543 3726 BFD_ASSERT (htab->plt_type != PLT_VXWORKS);
9d8504b1 3727
4a3dc543 3728 if (htab->plt_type == PLT_NEW)
9d8504b1
PB
3729 {
3730 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
3731 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
86b9da88
AM
3732
3733 /* The new PLT is a loaded section. */
3734 if (htab->plt != NULL
3735 && !bfd_set_section_flags (htab->elf.dynobj, htab->plt, flags))
3736 return -1;
3737
3738 /* The new GOT is not executable. */
3739 if (htab->got != NULL
3740 && !bfd_set_section_flags (htab->elf.dynobj, htab->got, flags))
3741 return -1;
d7128ce4
AM
3742 }
3743 else
3744 {
3745 /* Stop an unused .glink section from affecting .text alignment. */
86b9da88
AM
3746 if (htab->glink != NULL
3747 && !bfd_set_section_alignment (htab->elf.dynobj, htab->glink, 0))
3748 return -1;
d7128ce4 3749 }
4a3dc543 3750 return htab->plt_type == PLT_NEW;
d7128ce4
AM
3751}
3752\f
25dbc73a
AM
3753/* Return the section that should be marked against GC for a given
3754 relocation. */
586119b3 3755
25dbc73a
AM
3756static asection *
3757ppc_elf_gc_mark_hook (asection *sec,
07adf181 3758 struct bfd_link_info *info,
25dbc73a
AM
3759 Elf_Internal_Rela *rel,
3760 struct elf_link_hash_entry *h,
3761 Elf_Internal_Sym *sym)
3762{
3763 if (h != NULL)
07adf181
AM
3764 switch (ELF32_R_TYPE (rel->r_info))
3765 {
3766 case R_PPC_GNU_VTINHERIT:
3767 case R_PPC_GNU_VTENTRY:
3768 return NULL;
3769 }
3770
3771 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
25dbc73a 3772}
a876ecf9 3773
25dbc73a
AM
3774/* Update the got, plt and dynamic reloc reference counts for the
3775 section being removed. */
3776
3777static bfd_boolean
3778ppc_elf_gc_sweep_hook (bfd *abfd,
3779 struct bfd_link_info *info,
3780 asection *sec,
3781 const Elf_Internal_Rela *relocs)
3782{
3783 struct ppc_elf_link_hash_table *htab;
3784 Elf_Internal_Shdr *symtab_hdr;
3785 struct elf_link_hash_entry **sym_hashes;
3786 bfd_signed_vma *local_got_refcounts;
3787 const Elf_Internal_Rela *rel, *relend;
a6aa5195 3788 asection *got2;
25dbc73a 3789
c87b5a93
AM
3790 if ((sec->flags & SEC_ALLOC) == 0)
3791 return TRUE;
3792
25dbc73a
AM
3793 elf_section_data (sec)->local_dynrel = NULL;
3794
3795 htab = ppc_elf_hash_table (info);
3796 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
3797 sym_hashes = elf_sym_hashes (abfd);
3798 local_got_refcounts = elf_local_got_refcounts (abfd);
a6aa5195 3799 got2 = bfd_get_section_by_name (abfd, ".got2");
25dbc73a
AM
3800
3801 relend = relocs + sec->reloc_count;
3802 for (rel = relocs; rel < relend; rel++)
3803 {
3804 unsigned long r_symndx;
3805 enum elf_ppc_reloc_type r_type;
3806 struct elf_link_hash_entry *h = NULL;
3807
3808 r_symndx = ELF32_R_SYM (rel->r_info);
3809 if (r_symndx >= symtab_hdr->sh_info)
a876ecf9 3810 {
25dbc73a
AM
3811 struct ppc_elf_dyn_relocs **pp, *p;
3812 struct ppc_elf_link_hash_entry *eh;
3813
3814 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3815 while (h->root.type == bfd_link_hash_indirect
3816 || h->root.type == bfd_link_hash_warning)
3817 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3818 eh = (struct ppc_elf_link_hash_entry *) h;
3819
3820 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
3821 if (p->sec == sec)
3822 {
3823 /* Everything must go for SEC. */
3824 *pp = p->next;
3825 break;
3826 }
a876ecf9 3827 }
ee05f2fe 3828
25dbc73a
AM
3829 r_type = ELF32_R_TYPE (rel->r_info);
3830 switch (r_type)
ee05f2fe 3831 {
25dbc73a
AM
3832 case R_PPC_GOT_TLSLD16:
3833 case R_PPC_GOT_TLSLD16_LO:
3834 case R_PPC_GOT_TLSLD16_HI:
3835 case R_PPC_GOT_TLSLD16_HA:
3836 htab->tlsld_got.refcount -= 1;
3837 /* Fall thru */
3838
3839 case R_PPC_GOT_TLSGD16:
3840 case R_PPC_GOT_TLSGD16_LO:
3841 case R_PPC_GOT_TLSGD16_HI:
3842 case R_PPC_GOT_TLSGD16_HA:
3843 case R_PPC_GOT_TPREL16:
3844 case R_PPC_GOT_TPREL16_LO:
3845 case R_PPC_GOT_TPREL16_HI:
3846 case R_PPC_GOT_TPREL16_HA:
3847 case R_PPC_GOT_DTPREL16:
3848 case R_PPC_GOT_DTPREL16_LO:
3849 case R_PPC_GOT_DTPREL16_HI:
3850 case R_PPC_GOT_DTPREL16_HA:
3851 case R_PPC_GOT16:
3852 case R_PPC_GOT16_LO:
3853 case R_PPC_GOT16_HI:
3854 case R_PPC_GOT16_HA:
3855 if (h != NULL)
ee05f2fe 3856 {
25dbc73a
AM
3857 if (h->got.refcount > 0)
3858 h->got.refcount--;
ee05f2fe 3859 }
25dbc73a
AM
3860 else if (local_got_refcounts != NULL)
3861 {
3862 if (local_got_refcounts[r_symndx] > 0)
3863 local_got_refcounts[r_symndx]--;
3864 }
3865 break;
ee05f2fe 3866
25dbc73a
AM
3867 case R_PPC_REL24:
3868 case R_PPC_REL14:
3869 case R_PPC_REL14_BRTAKEN:
3870 case R_PPC_REL14_BRNTAKEN:
3871 case R_PPC_REL32:
3b36f7e6 3872 if (h == NULL || h == htab->elf.hgot)
25dbc73a
AM
3873 break;
3874 /* Fall thru */
ee05f2fe 3875
25dbc73a
AM
3876 case R_PPC_ADDR32:
3877 case R_PPC_ADDR24:
3878 case R_PPC_ADDR16:
3879 case R_PPC_ADDR16_LO:
3880 case R_PPC_ADDR16_HI:
3881 case R_PPC_ADDR16_HA:
3882 case R_PPC_ADDR14:
3883 case R_PPC_ADDR14_BRTAKEN:
3884 case R_PPC_ADDR14_BRNTAKEN:
3885 case R_PPC_UADDR32:
3886 case R_PPC_UADDR16:
87538722
AM
3887 if (info->shared)
3888 break;
3889
25dbc73a
AM
3890 case R_PPC_PLT32:
3891 case R_PPC_PLTREL24:
87538722 3892 case R_PPC_PLTREL32:
25dbc73a
AM
3893 case R_PPC_PLT16_LO:
3894 case R_PPC_PLT16_HI:
3895 case R_PPC_PLT16_HA:
3896 if (h != NULL)
3897 {
a6aa5195
AM
3898 bfd_vma addend = r_type == R_PPC_PLTREL24 ? rel->r_addend : 0;
3899 struct plt_entry *ent = find_plt_ent (h, got2, addend);
3900 if (ent->plt.refcount > 0)
3901 ent->plt.refcount -= 1;
25dbc73a
AM
3902 }
3903 break;
ee05f2fe 3904
25dbc73a
AM
3905 default:
3906 break;
3907 }
7fce784e 3908 }
7fce784e
AS
3909 return TRUE;
3910}
25dbc73a
AM
3911\f
3912/* Set htab->tls_get_addr and call the generic ELF tls_setup function. */
7fce784e 3913
25dbc73a
AM
3914asection *
3915ppc_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
7fce784e 3916{
25dbc73a 3917 struct ppc_elf_link_hash_table *htab;
7fce784e 3918
25dbc73a 3919 htab = ppc_elf_hash_table (info);
4a3dc543 3920 if (htab->plt_type == PLT_NEW
d7128ce4
AM
3921 && htab->plt != NULL
3922 && htab->plt->output_section != NULL)
3923 {
3924 elf_section_type (htab->plt->output_section) = SHT_PROGBITS;
3925 elf_section_flags (htab->plt->output_section) = SHF_ALLOC + SHF_WRITE;
3926 }
3927
25dbc73a
AM
3928 htab->tls_get_addr = elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
3929 FALSE, FALSE, TRUE);
25dbc73a 3930 return _bfd_elf_tls_setup (obfd, info);
7fce784e
AS
3931}
3932
25dbc73a
AM
3933/* Run through all the TLS relocs looking for optimization
3934 opportunities. */
252b5132 3935
25dbc73a
AM
3936bfd_boolean
3937ppc_elf_tls_optimize (bfd *obfd ATTRIBUTE_UNUSED,
3938 struct bfd_link_info *info)
252b5132 3939{
7fce784e 3940 bfd *ibfd;
25dbc73a
AM
3941 asection *sec;
3942 struct ppc_elf_link_hash_table *htab;
252b5132 3943
25dbc73a
AM
3944 if (info->relocatable || info->shared)
3945 return TRUE;
252b5132 3946
7619e7c7 3947 htab = ppc_elf_hash_table (info);
25dbc73a 3948 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
252b5132 3949 {
25dbc73a
AM
3950 Elf_Internal_Sym *locsyms = NULL;
3951 Elf_Internal_Shdr *symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
7619e7c7 3952
25dbc73a
AM
3953 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
3954 if (sec->has_tls_reloc && !bfd_is_abs_section (sec->output_section))
3955 {
3956 Elf_Internal_Rela *relstart, *rel, *relend;
3957 int expecting_tls_get_addr;
252b5132 3958
25dbc73a
AM
3959 /* Read the relocations. */
3960 relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
3961 info->keep_memory);
3962 if (relstart == NULL)
3963 return FALSE;
7619e7c7 3964
25dbc73a
AM
3965 expecting_tls_get_addr = 0;
3966 relend = relstart + sec->reloc_count;
3967 for (rel = relstart; rel < relend; rel++)
3968 {
3969 enum elf_ppc_reloc_type r_type;
3970 unsigned long r_symndx;
3971 struct elf_link_hash_entry *h = NULL;
3972 char *tls_mask;
3973 char tls_set, tls_clear;
3974 bfd_boolean is_local;
7fce784e 3975
25dbc73a
AM
3976 r_symndx = ELF32_R_SYM (rel->r_info);
3977 if (r_symndx >= symtab_hdr->sh_info)
3978 {
3979 struct elf_link_hash_entry **sym_hashes;
7fce784e 3980
25dbc73a
AM
3981 sym_hashes = elf_sym_hashes (ibfd);
3982 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3983 while (h->root.type == bfd_link_hash_indirect
3984 || h->root.type == bfd_link_hash_warning)
3985 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3986 }
7619e7c7 3987
25dbc73a
AM
3988 is_local = FALSE;
3989 if (h == NULL
3990 || !h->def_dynamic)
3991 is_local = TRUE;
7619e7c7 3992
25dbc73a
AM
3993 r_type = ELF32_R_TYPE (rel->r_info);
3994 switch (r_type)
7619e7c7 3995 {
25dbc73a
AM
3996 case R_PPC_GOT_TLSLD16:
3997 case R_PPC_GOT_TLSLD16_LO:
3998 case R_PPC_GOT_TLSLD16_HI:
3999 case R_PPC_GOT_TLSLD16_HA:
4000 /* These relocs should never be against a symbol
4001 defined in a shared lib. Leave them alone if
4002 that turns out to be the case. */
4003 expecting_tls_get_addr = 0;
4004 htab->tlsld_got.refcount -= 1;
4005 if (!is_local)
4006 continue;
4007
4008 /* LD -> LE */
4009 tls_set = 0;
4010 tls_clear = TLS_LD;
4011 expecting_tls_get_addr = 1;
4012 break;
4013
4014 case R_PPC_GOT_TLSGD16:
4015 case R_PPC_GOT_TLSGD16_LO:
4016 case R_PPC_GOT_TLSGD16_HI:
4017 case R_PPC_GOT_TLSGD16_HA:
4018 if (is_local)
4019 /* GD -> LE */
4020 tls_set = 0;
4021 else
4022 /* GD -> IE */
4023 tls_set = TLS_TLS | TLS_TPRELGD;
4024 tls_clear = TLS_GD;
4025 expecting_tls_get_addr = 1;
4026 break;
4027
4028 case R_PPC_GOT_TPREL16:
4029 case R_PPC_GOT_TPREL16_LO:
4030 case R_PPC_GOT_TPREL16_HI:
4031 case R_PPC_GOT_TPREL16_HA:
4032 expecting_tls_get_addr = 0;
4033 if (is_local)
4034 {
4035 /* IE -> LE */
4036 tls_set = 0;
4037 tls_clear = TLS_TPREL;
4038 break;
4039 }
4040 else
4041 continue;
4042
4043 case R_PPC_REL14:
4044 case R_PPC_REL14_BRTAKEN:
4045 case R_PPC_REL14_BRNTAKEN:
4046 case R_PPC_REL24:
4047 if (expecting_tls_get_addr
4048 && h != NULL
4049 && h == htab->tls_get_addr)
4050 {
a6aa5195
AM
4051 struct plt_entry *ent = find_plt_ent (h, NULL, 0);
4052 if (ent != NULL && ent->plt.refcount > 0)
4053 ent->plt.refcount -= 1;
25dbc73a
AM
4054 }
4055 expecting_tls_get_addr = 0;
4056 continue;
4057
4058 default:
4059 expecting_tls_get_addr = 0;
4060 continue;
7619e7c7 4061 }
25dbc73a
AM
4062
4063 if (h != NULL)
7619e7c7 4064 {
25dbc73a
AM
4065 if (tls_set == 0)
4066 {
4067 /* We managed to get rid of a got entry. */
4068 if (h->got.refcount > 0)
4069 h->got.refcount -= 1;
4070 }
4071 tls_mask = &ppc_elf_hash_entry (h)->tls_mask;
4072 }
4073 else
4074 {
4075 Elf_Internal_Sym *sym;
4076 bfd_signed_vma *lgot_refs;
4077 char *lgot_masks;
4078
4079 if (locsyms == NULL)
4080 {
4081 locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
4082 if (locsyms == NULL)
4083 locsyms = bfd_elf_get_elf_syms (ibfd, symtab_hdr,
4084 symtab_hdr->sh_info,
4085 0, NULL, NULL, NULL);
4086 if (locsyms == NULL)
4087 {
4088 if (elf_section_data (sec)->relocs != relstart)
4089 free (relstart);
4090 return FALSE;
4091 }
4092 }
4093 sym = locsyms + r_symndx;
4094 lgot_refs = elf_local_got_refcounts (ibfd);
4095 if (lgot_refs == NULL)
4096 abort ();
4097 if (tls_set == 0)
4098 {
4099 /* We managed to get rid of a got entry. */
4100 if (lgot_refs[r_symndx] > 0)
4101 lgot_refs[r_symndx] -= 1;
4102 }
4103 lgot_masks = (char *) (lgot_refs + symtab_hdr->sh_info);
4104 tls_mask = &lgot_masks[r_symndx];
7619e7c7 4105 }
25dbc73a
AM
4106
4107 *tls_mask |= tls_set;
4108 *tls_mask &= ~tls_clear;
7619e7c7 4109 }
25dbc73a
AM
4110
4111 if (elf_section_data (sec)->relocs != relstart)
4112 free (relstart);
7619e7c7 4113 }
25dbc73a
AM
4114
4115 if (locsyms != NULL
4116 && (symtab_hdr->contents != (unsigned char *) locsyms))
4117 {
4118 if (!info->keep_memory)
4119 free (locsyms);
4120 else
4121 symtab_hdr->contents = (unsigned char *) locsyms;
4122 }
7fce784e 4123 }
25dbc73a
AM
4124 return TRUE;
4125}
4126\f
4127/* Adjust a symbol defined by a dynamic object and referenced by a
4128 regular object. The current definition is in some section of the
4129 dynamic object, but we're not including those sections. We have to
4130 change the definition to something the rest of the link can
4131 understand. */
7fce784e 4132
25dbc73a
AM
4133static bfd_boolean
4134ppc_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
4135 struct elf_link_hash_entry *h)
4136{
4137 struct ppc_elf_link_hash_table *htab;
4138 asection *s;
4139 unsigned int power_of_two;
7fce784e 4140
25dbc73a
AM
4141#ifdef DEBUG
4142 fprintf (stderr, "ppc_elf_adjust_dynamic_symbol called for %s\n",
4143 h->root.root.string);
4144#endif
252b5132 4145
25dbc73a
AM
4146 /* Make sure we know what is going on here. */
4147 htab = ppc_elf_hash_table (info);
4148 BFD_ASSERT (htab->elf.dynobj != NULL
4149 && (h->needs_plt
4150 || h->u.weakdef != NULL
4151 || (h->def_dynamic
4152 && h->ref_regular
4153 && !h->def_regular)));
252b5132 4154
25dbc73a
AM
4155 /* Deal with function syms. */
4156 if (h->type == STT_FUNC
4157 || h->needs_plt)
4158 {
4159 /* Clear procedure linkage table information for any symbol that
4160 won't need a .plt entry. */
a6aa5195
AM
4161 struct plt_entry *ent;
4162 for (ent = h->plt.plist; ent != NULL; ent = ent->next)
4163 if (ent->plt.refcount > 0)
4164 break;
4165 if (ent == NULL
25dbc73a
AM
4166 || SYMBOL_CALLS_LOCAL (info, h)
4167 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
4168 && h->root.type == bfd_link_hash_undefweak))
252b5132 4169 {
25dbc73a 4170 /* A PLT entry is not required/allowed when:
252b5132 4171
25dbc73a
AM
4172 1. We are not using ld.so; because then the PLT entry
4173 can't be set up, so we can't use one. In this case,
4174 ppc_elf_adjust_dynamic_symbol won't even be called.
252b5132 4175
25dbc73a
AM
4176 2. GC has rendered the entry unused.
4177
4178 3. We know for certain that a call to this symbol
4179 will go to this object, or will remain undefined. */
a6aa5195 4180 h->plt.plist = NULL;
25dbc73a
AM
4181 h->needs_plt = 0;
4182 }
4183 return TRUE;
252b5132 4184 }
25dbc73a 4185 else
a6aa5195 4186 h->plt.plist = NULL;
252b5132 4187
25dbc73a
AM
4188 /* If this is a weak symbol, and there is a real definition, the
4189 processor independent code will have arranged for us to see the
4190 real definition first, and we can just use the same value. */
4191 if (h->u.weakdef != NULL)
252b5132 4192 {
25dbc73a
AM
4193 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
4194 || h->u.weakdef->root.type == bfd_link_hash_defweak);
4195 h->root.u.def.section = h->u.weakdef->root.u.def.section;
4196 h->root.u.def.value = h->u.weakdef->root.u.def.value;
4197 if (ELIMINATE_COPY_RELOCS)
4198 h->non_got_ref = h->u.weakdef->non_got_ref;
4199 return TRUE;
4200 }
dc810e39 4201
25dbc73a
AM
4202 /* This is a reference to a symbol defined by a dynamic object which
4203 is not a function. */
252b5132 4204
25dbc73a
AM
4205 /* If we are creating a shared library, we must presume that the
4206 only references to the symbol are via the global offset table.
4207 For such cases we need not do anything here; the relocations will
4208 be handled correctly by relocate_section. */
4209 if (info->shared)
4210 return TRUE;
252b5132 4211
25dbc73a
AM
4212 /* If there are no references to this symbol that do not use the
4213 GOT, we don't need to generate a copy reloc. */
4214 if (!h->non_got_ref)
4215 return TRUE;
4216
4dc4a9a5
DJ
4217 /* If we didn't find any dynamic relocs in read-only sections, then we'll
4218 be keeping the dynamic relocs and avoiding the copy reloc. We can't
4219 do this if there are any small data relocations. */
4220 if (ELIMINATE_COPY_RELOCS
4221 && !ppc_elf_hash_entry (h)->has_sda_refs)
25dbc73a
AM
4222 {
4223 struct ppc_elf_dyn_relocs *p;
4224 for (p = ppc_elf_hash_entry (h)->dyn_relocs; p != NULL; p = p->next)
252b5132 4225 {
25dbc73a
AM
4226 s = p->sec->output_section;
4227 if (s != NULL && (s->flags & SEC_READONLY) != 0)
4228 break;
252b5132
RH
4229 }
4230
25dbc73a 4231 if (p == NULL)
252b5132 4232 {
25dbc73a
AM
4233 h->non_got_ref = 0;
4234 return TRUE;
252b5132
RH
4235 }
4236 }
4237
909272ee
AM
4238 if (h->size == 0)
4239 {
4240 (*_bfd_error_handler) (_("dynamic variable `%s' is zero size"),
4241 h->root.root.string);
4242 return TRUE;
4243 }
4244
25dbc73a
AM
4245 /* We must allocate the symbol in our .dynbss section, which will
4246 become part of the .bss section of the executable. There will be
4247 an entry for this symbol in the .dynsym section. The dynamic
4248 object will contain position independent code, so all references
4249 from the dynamic object to this symbol will go through the global
4250 offset table. The dynamic linker will use the .dynsym entry to
4251 determine the address it must put in the global offset table, so
4252 both the dynamic object and the regular object will refer to the
4253 same memory location for the variable.
4254
4dc4a9a5
DJ
4255 Of course, if the symbol is referenced using SDAREL relocs, we
4256 must instead allocate it in .sbss. */
25dbc73a 4257
4dc4a9a5 4258 if (ppc_elf_hash_entry (h)->has_sda_refs)
25dbc73a
AM
4259 s = htab->dynsbss;
4260 else
4261 s = htab->dynbss;
4262 BFD_ASSERT (s != NULL);
4263
4264 /* We must generate a R_PPC_COPY reloc to tell the dynamic linker to
4265 copy the initial value out of the dynamic object and into the
4266 runtime process image. We need to remember the offset into the
4267 .rela.bss section we are going to use. */
4268 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
4269 {
4270 asection *srel;
4271
4dc4a9a5 4272 if (ppc_elf_hash_entry (h)->has_sda_refs)
25dbc73a
AM
4273 srel = htab->relsbss;
4274 else
4275 srel = htab->relbss;
4276 BFD_ASSERT (srel != NULL);
4277 srel->size += sizeof (Elf32_External_Rela);
4278 h->needs_copy = 1;
4279 }
7619e7c7 4280
25dbc73a
AM
4281 /* We need to figure out the alignment required for this symbol. I
4282 have no idea how ELF linkers handle this. */
4283 power_of_two = bfd_log2 (h->size);
4284 if (power_of_two > 4)
4285 power_of_two = 4;
7619e7c7 4286
25dbc73a
AM
4287 /* Apply the required alignment. */
4288 s->size = BFD_ALIGN (s->size, (bfd_size_type) (1 << power_of_two));
4289 if (power_of_two > bfd_get_section_alignment (htab->elf.dynobj, s))
4290 {
4291 if (! bfd_set_section_alignment (htab->elf.dynobj, s, power_of_two))
7619e7c7 4292 return FALSE;
7619e7c7
AM
4293 }
4294
25dbc73a
AM
4295 /* Define the symbol as being at this point in the section. */
4296 h->root.u.def.section = s;
4297 h->root.u.def.value = s->size;
7619e7c7 4298
25dbc73a
AM
4299 /* Increment the section size to make room for the symbol. */
4300 s->size += h->size;
7619e7c7 4301
25dbc73a
AM
4302 return TRUE;
4303}
4304\f
ac39eb42
AM
4305/* Generate a symbol to mark plt call stubs. For non-PIC code the sym is
4306 xxxxxxxx.plt_call32.<callee> where xxxxxxxx is a hex number, usually 0,
4307 specifying the addend on the plt relocation. For -fpic code, the sym
4308 is xxxxxxxx.plt_pic32.<callee>, and for -fPIC
4309 xxxxxxxx.got2.plt_pic32.<callee>. */
0ba07910
AM
4310
4311static bfd_boolean
4312add_stub_sym (struct plt_entry *ent,
4313 struct elf_link_hash_entry *h,
ac39eb42 4314 struct bfd_link_info *info)
0ba07910
AM
4315{
4316 struct elf_link_hash_entry *sh;
4317 size_t len1, len2, len3;
4318 char *name;
ac39eb42
AM
4319 const char *stub;
4320 struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
4321
4322 if (info->shared || info->pie)
4323 stub = ".plt_pic32.";
4324 else
4325 stub = ".plt_call32.";
0ba07910
AM
4326
4327 len1 = strlen (h->root.root.string);
ac39eb42 4328 len2 = strlen (stub);
0ba07910
AM
4329 len3 = 0;
4330 if (ent->sec)
4331 len3 = strlen (ent->sec->name);
ac39eb42 4332 name = bfd_malloc (len1 + len2 + len3 + 9);
0ba07910
AM
4333 if (name == NULL)
4334 return FALSE;
4335 sprintf (name, "%08x", (unsigned) ent->addend & 0xffffffff);
4336 if (ent->sec)
4337 memcpy (name + 8, ent->sec->name, len3);
ac39eb42
AM
4338 memcpy (name + 8 + len3, stub, len2);
4339 memcpy (name + 8 + len3 + len2, h->root.root.string, len1 + 1);
0ba07910
AM
4340 sh = elf_link_hash_lookup (&htab->elf, name, TRUE, FALSE, FALSE);
4341 if (sh == NULL)
4342 return FALSE;
4343 if (sh->root.type == bfd_link_hash_new)
4344 {
4345 sh->root.type = bfd_link_hash_defined;
4346 sh->root.u.def.section = htab->glink;
4347 sh->root.u.def.value = ent->glink_offset;
4348 sh->ref_regular = 1;
4349 sh->def_regular = 1;
4350 sh->ref_regular_nonweak = 1;
4351 sh->forced_local = 1;
4352 sh->non_elf = 0;
4353 }
4354 return TRUE;
4355}
4356
3b36f7e6
AM
4357/* Allocate NEED contiguous space in .got, and return the offset.
4358 Handles allocation of the got header when crossing 32k. */
4359
4360static bfd_vma
4361allocate_got (struct ppc_elf_link_hash_table *htab, unsigned int need)
4362{
4363 bfd_vma where;
4a3dc543 4364 unsigned int max_before_header;
3b36f7e6 4365
4a3dc543 4366 if (htab->plt_type == PLT_VXWORKS)
9d8504b1
PB
4367 {
4368 where = htab->got->size;
4369 htab->got->size += need;
4370 }
3b36f7e6
AM
4371 else
4372 {
4a3dc543
RS
4373 max_before_header = htab->plt_type == PLT_NEW ? 32768 : 32764;
4374 if (need <= htab->got_gap)
3b36f7e6 4375 {
4a3dc543
RS
4376 where = max_before_header - htab->got_gap;
4377 htab->got_gap -= need;
4378 }
4379 else
4380 {
4381 if (htab->got->size + need > max_before_header
4382 && htab->got->size <= max_before_header)
4383 {
4384 htab->got_gap = max_before_header - htab->got->size;
4385 htab->got->size = max_before_header + htab->got_header_size;
4386 }
4387 where = htab->got->size;
4388 htab->got->size += need;
3b36f7e6 4389 }
3b36f7e6
AM
4390 }
4391 return where;
4392}
4393
25dbc73a 4394/* Allocate space in associated reloc sections for dynamic relocs. */
252b5132 4395
b34976b6 4396static bfd_boolean
25dbc73a 4397allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
252b5132 4398{
25dbc73a
AM
4399 struct bfd_link_info *info = inf;
4400 struct ppc_elf_link_hash_entry *eh;
7619e7c7 4401 struct ppc_elf_link_hash_table *htab;
25dbc73a 4402 struct ppc_elf_dyn_relocs *p;
252b5132 4403
25dbc73a 4404 if (h->root.type == bfd_link_hash_indirect)
b34976b6 4405 return TRUE;
252b5132 4406
25dbc73a
AM
4407 if (h->root.type == bfd_link_hash_warning)
4408 /* When warning symbols are created, they **replace** the "real"
4409 entry in the hash table, thus we never get to see the real
4410 symbol in a hash traversal. So look at it now. */
4411 h = (struct elf_link_hash_entry *) h->root.u.i.link;
e47cd125 4412
7619e7c7 4413 htab = ppc_elf_hash_table (info);
a6aa5195 4414 if (htab->elf.dynamic_sections_created)
252b5132 4415 {
a6aa5195
AM
4416 struct plt_entry *ent;
4417 bfd_boolean doneone = FALSE;
28e99bb6
AM
4418 bfd_vma plt_offset = 0, glink_offset = 0;
4419
a6aa5195
AM
4420 for (ent = h->plt.plist; ent != NULL; ent = ent->next)
4421 if (ent->plt.refcount > 0)
4422 {
4423 /* Make sure this symbol is output as a dynamic symbol. */
4424 if (h->dynindx == -1
4425 && !h->forced_local)
4426 {
4427 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4428 return FALSE;
4429 }
252b5132 4430
a6aa5195
AM
4431 if (info->shared
4432 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
4433 {
4434 asection *s = htab->plt;
7619e7c7 4435
4a3dc543 4436 if (htab->plt_type == PLT_NEW)
a6aa5195 4437 {
a6aa5195 4438 if (!doneone)
28e99bb6
AM
4439 {
4440 plt_offset = s->size;
4441 s->size += 4;
4442 }
4443 ent->plt.offset = plt_offset;
d7128ce4 4444
a6aa5195 4445 s = htab->glink;
28e99bb6
AM
4446 if (!doneone || info->shared || info->pie)
4447 {
4448 glink_offset = s->size;
4449 s->size += GLINK_ENTRY_SIZE;
4450 }
4451 if (!doneone
4452 && !info->shared
a6aa5195
AM
4453 && !h->def_regular)
4454 {
4455 h->root.u.def.section = s;
28e99bb6 4456 h->root.u.def.value = glink_offset;
a6aa5195 4457 }
28e99bb6 4458 ent->glink_offset = glink_offset;
0ba07910
AM
4459
4460 if (htab->emit_stub_syms
ac39eb42 4461 && !add_stub_sym (ent, h, info))
0ba07910 4462 return FALSE;
a6aa5195
AM
4463 }
4464 else
4465 {
a6aa5195
AM
4466 if (!doneone)
4467 {
28e99bb6
AM
4468 /* If this is the first .plt entry, make room
4469 for the special first entry. */
4470 if (s->size == 0)
9d8504b1 4471 s->size += htab->plt_initial_entry_size;
28e99bb6
AM
4472
4473 /* The PowerPC PLT is actually composed of two
4474 parts, the first part is 2 words (for a load
4475 and a jump), and then there is a remaining
4476 word available at the end. */
9d8504b1
PB
4477 plt_offset = (htab->plt_initial_entry_size
4478 + (htab->plt_slot_size
4479 * ((s->size
4480 - htab->plt_initial_entry_size)
4481 / htab->plt_entry_size)));
28e99bb6
AM
4482
4483 /* If this symbol is not defined in a regular
4484 file, and we are not generating a shared
4485 library, then set the symbol to this location
4486 in the .plt. This is required to make
4487 function pointers compare as equal between
4488 the normal executable and the shared library. */
4489 if (! info->shared
4490 && !h->def_regular)
4491 {
4492 h->root.u.def.section = s;
4493 h->root.u.def.value = plt_offset;
4494 }
4495
9d8504b1
PB
4496 /* Make room for this entry. */
4497 s->size += htab->plt_entry_size;
4498 /* After the 8192nd entry, room for two entries
4499 is allocated. */
4a3dc543 4500 if (htab->plt_type == PLT_OLD
9d8504b1
PB
4501 && (s->size - htab->plt_initial_entry_size)
4502 / htab->plt_entry_size
4503 > PLT_NUM_SINGLE_ENTRIES)
4504 s->size += htab->plt_entry_size;
a6aa5195 4505 }
28e99bb6 4506 ent->plt.offset = plt_offset;
a6aa5195 4507 }
25dbc73a 4508
a6aa5195
AM
4509 /* We also need to make an entry in the .rela.plt section. */
4510 if (!doneone)
4511 {
4512 htab->relplt->size += sizeof (Elf32_External_Rela);
9d8504b1 4513
4a3dc543 4514 if (htab->plt_type == PLT_VXWORKS)
9d8504b1
PB
4515 {
4516 /* Allocate space for the unloaded relocations. */
4517 if (!info->shared)
4518 {
4519 if (ent->plt.offset
4520 == (bfd_vma) htab->plt_initial_entry_size)
4521 {
4522 htab->srelplt2->size
4523 += sizeof (Elf32_External_Rela)
4524 * VXWORKS_PLTRESOLVE_RELOCS;
4525 }
4526
4527 htab->srelplt2->size
4528 += sizeof (Elf32_External_Rela)
4529 * VXWORKS_PLT_NON_JMP_SLOT_RELOCS;
4530 }
4531
4532 /* Every PLT entry has an associated GOT entry in
4533 .got.plt. */
4534 htab->sgotplt->size += 4;
4535 }
a6aa5195
AM
4536 doneone = TRUE;
4537 }
4538 }
4539 else
4540 ent->plt.offset = (bfd_vma) -1;
a6aa5195 4541 }
2ce859a1
AM
4542 else
4543 ent->plt.offset = (bfd_vma) -1;
4544
4545 if (!doneone)
4546 {
4547 h->plt.plist = NULL;
4548 h->needs_plt = 0;
4549 }
25dbc73a
AM
4550 }
4551 else
4552 {
a6aa5195 4553 h->plt.plist = NULL;
25dbc73a
AM
4554 h->needs_plt = 0;
4555 }
4556
4557 eh = (struct ppc_elf_link_hash_entry *) h;
4558 if (eh->elf.got.refcount > 0)
4559 {
4560 /* Make sure this symbol is output as a dynamic symbol. */
4561 if (eh->elf.dynindx == -1
4562 && !eh->elf.forced_local)
4563 {
4564 if (!bfd_elf_link_record_dynamic_symbol (info, &eh->elf))
b34976b6 4565 return FALSE;
25dbc73a 4566 }
252b5132 4567
25dbc73a
AM
4568 if (eh->tls_mask == (TLS_TLS | TLS_LD)
4569 && !eh->elf.def_dynamic)
4570 /* If just an LD reloc, we'll just use htab->tlsld_got.offset. */
4571 eh->elf.got.offset = (bfd_vma) -1;
4572 else
4573 {
4574 bfd_boolean dyn;
3b36f7e6 4575 unsigned int need = 0;
25dbc73a 4576 if ((eh->tls_mask & TLS_TLS) != 0)
252b5132 4577 {
25dbc73a 4578 if ((eh->tls_mask & TLS_LD) != 0)
3b36f7e6 4579 need += 8;
25dbc73a 4580 if ((eh->tls_mask & TLS_GD) != 0)
3b36f7e6 4581 need += 8;
25dbc73a 4582 if ((eh->tls_mask & (TLS_TPREL | TLS_TPRELGD)) != 0)
3b36f7e6 4583 need += 4;
25dbc73a 4584 if ((eh->tls_mask & TLS_DTPREL) != 0)
3b36f7e6 4585 need += 4;
252b5132 4586 }
25dbc73a 4587 else
3b36f7e6
AM
4588 need += 4;
4589 eh->elf.got.offset = allocate_got (htab, need);
25dbc73a
AM
4590 dyn = htab->elf.dynamic_sections_created;
4591 if ((info->shared
4592 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, &eh->elf))
4593 && (ELF_ST_VISIBILITY (eh->elf.other) == STV_DEFAULT
4594 || eh->elf.root.type != bfd_link_hash_undefweak))
252b5132 4595 {
3b36f7e6
AM
4596 /* All the entries we allocated need relocs.
4597 Except LD only needs one. */
25dbc73a 4598 if ((eh->tls_mask & TLS_LD) != 0)
3b36f7e6
AM
4599 need -= 4;
4600 htab->relgot->size += need * (sizeof (Elf32_External_Rela) / 4);
252b5132 4601 }
25dbc73a
AM
4602 }
4603 }
4604 else
4605 eh->elf.got.offset = (bfd_vma) -1;
252b5132 4606
25dbc73a
AM
4607 if (eh->dyn_relocs == NULL)
4608 return TRUE;
252b5132 4609
25dbc73a
AM
4610 /* In the shared -Bsymbolic case, discard space allocated for
4611 dynamic pc-relative relocs against symbols which turn out to be
4612 defined in regular objects. For the normal shared case, discard
4613 space for relocs that have become local due to symbol visibility
4614 changes. */
4615
4616 if (info->shared)
4617 {
4618 /* Relocs that use pc_count are those that appear on a call insn,
4619 or certain REL relocs (see MUST_BE_DYN_RELOC) that can be
4620 generated via assembly. We want calls to protected symbols to
4621 resolve directly to the function rather than going via the plt.
4622 If people want function pointer comparisons to work as expected
4623 then they should avoid writing weird assembly. */
4624 if (SYMBOL_CALLS_LOCAL (info, h))
4625 {
4626 struct ppc_elf_dyn_relocs **pp;
4627
4628 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
252b5132 4629 {
25dbc73a
AM
4630 p->count -= p->pc_count;
4631 p->pc_count = 0;
4632 if (p->count == 0)
4633 *pp = p->next;
4634 else
4635 pp = &p->next;
252b5132 4636 }
25dbc73a 4637 }
252b5132 4638
25dbc73a
AM
4639 /* Also discard relocs on undefined weak syms with non-default
4640 visibility. */
cab87ef9
AM
4641 if (eh->dyn_relocs != NULL
4642 && h->root.type == bfd_link_hash_undefweak)
25dbc73a 4643 {
dfbb6ac9
AM
4644 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
4645 eh->dyn_relocs = NULL;
4646
4647 /* Make sure undefined weak symbols are output as a dynamic
4648 symbol in PIEs. */
4649 else if (h->dynindx == -1
4650 && !h->forced_local)
4651 {
4652 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4653 return FALSE;
4654 }
25dbc73a
AM
4655 }
4656 }
4657 else if (ELIMINATE_COPY_RELOCS)
4658 {
4659 /* For the non-shared case, discard space for relocs against
4660 symbols which turn out to need copy relocs or are not
4661 dynamic. */
7619e7c7 4662
25dbc73a
AM
4663 if (!h->non_got_ref
4664 && h->def_dynamic
4665 && !h->def_regular)
4666 {
4667 /* Make sure this symbol is output as a dynamic symbol.
4668 Undefined weak syms won't yet be marked as dynamic. */
4669 if (h->dynindx == -1
4670 && !h->forced_local)
4671 {
4672 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4673 return FALSE;
4674 }
7619e7c7 4675
25dbc73a
AM
4676 /* If that succeeded, we know we'll be keeping all the
4677 relocs. */
4678 if (h->dynindx != -1)
4679 goto keep;
4680 }
252b5132 4681
25dbc73a 4682 eh->dyn_relocs = NULL;
252b5132 4683
25dbc73a
AM
4684 keep: ;
4685 }
252b5132 4686
25dbc73a
AM
4687 /* Finally, allocate space. */
4688 for (p = eh->dyn_relocs; p != NULL; p = p->next)
4689 {
4690 asection *sreloc = elf_section_data (p->sec)->sreloc;
4691 sreloc->size += p->count * sizeof (Elf32_External_Rela);
4692 }
252b5132 4693
25dbc73a
AM
4694 return TRUE;
4695}
7619e7c7 4696
25dbc73a 4697/* Find any dynamic relocs that apply to read-only sections. */
7619e7c7 4698
25dbc73a
AM
4699static bfd_boolean
4700readonly_dynrelocs (struct elf_link_hash_entry *h, void *info)
4701{
4702 struct ppc_elf_dyn_relocs *p;
7619e7c7 4703
25dbc73a
AM
4704 if (h->root.type == bfd_link_hash_indirect)
4705 return TRUE;
252b5132 4706
25dbc73a
AM
4707 if (h->root.type == bfd_link_hash_warning)
4708 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7619e7c7 4709
25dbc73a
AM
4710 for (p = ppc_elf_hash_entry (h)->dyn_relocs; p != NULL; p = p->next)
4711 {
4712 asection *s = p->sec->output_section;
ee05f2fe 4713
25dbc73a
AM
4714 if (s != NULL
4715 && ((s->flags & (SEC_READONLY | SEC_ALLOC))
4716 == (SEC_READONLY | SEC_ALLOC)))
4717 {
4718 ((struct bfd_link_info *) info)->flags |= DF_TEXTREL;
ee05f2fe 4719
25dbc73a
AM
4720 /* Not an error, just cut short the traversal. */
4721 return FALSE;
4722 }
4723 }
4724 return TRUE;
4725}
4726
4727/* Set the sizes of the dynamic sections. */
4728
4729static bfd_boolean
4730ppc_elf_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
4731 struct bfd_link_info *info)
4732{
4733 struct ppc_elf_link_hash_table *htab;
4734 asection *s;
4735 bfd_boolean relocs;
4736 bfd *ibfd;
7fce784e 4737
252b5132 4738#ifdef DEBUG
25dbc73a 4739 fprintf (stderr, "ppc_elf_size_dynamic_sections called\n");
252b5132 4740#endif
252b5132 4741
25dbc73a
AM
4742 htab = ppc_elf_hash_table (info);
4743 BFD_ASSERT (htab->elf.dynobj != NULL);
252b5132 4744
25dbc73a
AM
4745 if (elf_hash_table (info)->dynamic_sections_created)
4746 {
4747 /* Set the contents of the .interp section to the interpreter. */
4748 if (info->executable)
4749 {
4750 s = bfd_get_section_by_name (htab->elf.dynobj, ".interp");
4751 BFD_ASSERT (s != NULL);
4752 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
4753 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
4754 }
4755 }
252b5132 4756
4a3dc543 4757 if (htab->plt_type == PLT_OLD)
d7128ce4 4758 htab->got_header_size = 16;
4a3dc543 4759 else if (htab->plt_type == PLT_NEW)
d7128ce4 4760 htab->got_header_size = 12;
252b5132 4761
25dbc73a
AM
4762 /* Set up .got offsets for local syms, and space for local dynamic
4763 relocs. */
4764 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
4765 {
4766 bfd_signed_vma *local_got;
4767 bfd_signed_vma *end_local_got;
4768 char *lgot_masks;
4769 bfd_size_type locsymcount;
4770 Elf_Internal_Shdr *symtab_hdr;
7fce784e 4771
d2663f46 4772 if (!is_ppc_elf_target (ibfd->xvec))
25dbc73a 4773 continue;
7fce784e 4774
25dbc73a
AM
4775 for (s = ibfd->sections; s != NULL; s = s->next)
4776 {
4777 struct ppc_elf_dyn_relocs *p;
252b5132 4778
25dbc73a
AM
4779 for (p = ((struct ppc_elf_dyn_relocs *)
4780 elf_section_data (s)->local_dynrel);
4781 p != NULL;
4782 p = p->next)
4783 {
4784 if (!bfd_is_abs_section (p->sec)
4785 && bfd_is_abs_section (p->sec->output_section))
4786 {
4787 /* Input section has been discarded, either because
4788 it is a copy of a linkonce section or due to
4789 linker script /DISCARD/, so we'll be discarding
4790 the relocs too. */
7fce784e 4791 }
25dbc73a 4792 else if (p->count != 0)
7fce784e 4793 {
25dbc73a
AM
4794 elf_section_data (p->sec)->sreloc->size
4795 += p->count * sizeof (Elf32_External_Rela);
4796 if ((p->sec->output_section->flags
4797 & (SEC_READONLY | SEC_ALLOC))
4798 == (SEC_READONLY | SEC_ALLOC))
4799 info->flags |= DF_TEXTREL;
7fce784e 4800 }
252b5132 4801 }
252b5132 4802 }
252b5132 4803
25dbc73a
AM
4804 local_got = elf_local_got_refcounts (ibfd);
4805 if (!local_got)
4806 continue;
252b5132 4807
25dbc73a
AM
4808 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
4809 locsymcount = symtab_hdr->sh_info;
4810 end_local_got = local_got + locsymcount;
4811 lgot_masks = (char *) end_local_got;
25dbc73a
AM
4812 for (; local_got < end_local_got; ++local_got, ++lgot_masks)
4813 if (*local_got > 0)
4814 {
4815 if (*lgot_masks == (TLS_TLS | TLS_LD))
4816 {
4817 /* If just an LD reloc, we'll just use
4818 htab->tlsld_got.offset. */
3b36f7e6 4819 htab->tlsld_got.refcount += 1;
25dbc73a
AM
4820 *local_got = (bfd_vma) -1;
4821 }
4822 else
4823 {
3b36f7e6 4824 unsigned int need = 0;
25dbc73a
AM
4825 if ((*lgot_masks & TLS_TLS) != 0)
4826 {
4827 if ((*lgot_masks & TLS_GD) != 0)
3b36f7e6 4828 need += 8;
25dbc73a 4829 if ((*lgot_masks & (TLS_TPREL | TLS_TPRELGD)) != 0)
3b36f7e6 4830 need += 4;
25dbc73a 4831 if ((*lgot_masks & TLS_DTPREL) != 0)
3b36f7e6 4832 need += 4;
25dbc73a
AM
4833 }
4834 else
3b36f7e6
AM
4835 need += 4;
4836 *local_got = allocate_got (htab, need);
25dbc73a 4837 if (info->shared)
3b36f7e6
AM
4838 htab->relgot->size += (need
4839 * (sizeof (Elf32_External_Rela) / 4));
25dbc73a
AM
4840 }
4841 }
4842 else
4843 *local_got = (bfd_vma) -1;
4844 }
252b5132 4845
3b36f7e6
AM
4846 if (htab->tlsld_got.refcount > 0)
4847 {
4848 htab->tlsld_got.offset = allocate_got (htab, 8);
4849 if (info->shared)
4850 htab->relgot->size += sizeof (Elf32_External_Rela);
4851 }
4852 else
4853 htab->tlsld_got.offset = (bfd_vma) -1;
4854
25dbc73a
AM
4855 /* Allocate space for global sym dynamic relocs. */
4856 elf_link_hash_traverse (elf_hash_table (info), allocate_dynrelocs, info);
4857
4a3dc543 4858 if (htab->got != NULL && htab->plt_type != PLT_VXWORKS)
3b36f7e6
AM
4859 {
4860 unsigned int g_o_t = 32768;
4861
4d962050
AM
4862 /* If we haven't allocated the header, do so now. When we get here,
4863 for old plt/got the got size will be 0 to 32764 (not allocated),
4864 or 32780 to 65536 (header allocated). For new plt/got, the
4865 corresponding ranges are 0 to 32768 and 32780 to 65536. */
3b36f7e6
AM
4866 if (htab->got->size <= 32768)
4867 {
4868 g_o_t = htab->got->size;
4a3dc543 4869 if (htab->plt_type == PLT_OLD)
4d962050 4870 g_o_t += 4;
3b36f7e6
AM
4871 htab->got->size += htab->got_header_size;
4872 }
3b36f7e6
AM
4873
4874 htab->elf.hgot->root.u.def.value = g_o_t;
4875 }
4876
d7128ce4
AM
4877 if (htab->glink != NULL && htab->glink->size != 0)
4878 {
4879 htab->glink_pltresolve = htab->glink->size;
86b9da88
AM
4880 /* Space for the branch table. */
4881 htab->glink->size += htab->glink->size / (GLINK_ENTRY_SIZE / 4) - 4;
4882 /* Pad out to align the start of PLTresolve. */
4883 htab->glink->size += -htab->glink->size & 15;
d7128ce4 4884 htab->glink->size += GLINK_PLTRESOLVE;
0ba07910
AM
4885
4886 if (htab->emit_stub_syms)
4887 {
4888 struct elf_link_hash_entry *sh;
4889 sh = elf_link_hash_lookup (&htab->elf, "__glink",
4890 TRUE, FALSE, FALSE);
4891 if (sh == NULL)
4892 return FALSE;
4893 if (sh->root.type == bfd_link_hash_new)
4894 {
4895 sh->root.type = bfd_link_hash_defined;
4896 sh->root.u.def.section = htab->glink;
4897 sh->root.u.def.value = htab->glink_pltresolve;
4898 sh->ref_regular = 1;
4899 sh->def_regular = 1;
4900 sh->ref_regular_nonweak = 1;
4901 sh->forced_local = 1;
4902 sh->non_elf = 0;
4903 }
4904 sh = elf_link_hash_lookup (&htab->elf, "__glink_PLTresolve",
4905 TRUE, FALSE, FALSE);
4906 if (sh == NULL)
4907 return FALSE;
4908 if (sh->root.type == bfd_link_hash_new)
4909 {
4910 sh->root.type = bfd_link_hash_defined;
4911 sh->root.u.def.section = htab->glink;
4912 sh->root.u.def.value = htab->glink->size - GLINK_PLTRESOLVE;
4913 sh->ref_regular = 1;
4914 sh->def_regular = 1;
4915 sh->ref_regular_nonweak = 1;
4916 sh->forced_local = 1;
4917 sh->non_elf = 0;
4918 }
4919 }
d7128ce4
AM
4920 }
4921
25dbc73a
AM
4922 /* We've now determined the sizes of the various dynamic sections.
4923 Allocate memory for them. */
4924 relocs = FALSE;
4925 for (s = htab->elf.dynobj->sections; s != NULL; s = s->next)
252b5132 4926 {
9d8504b1
PB
4927 bfd_boolean strip_section = TRUE;
4928
25dbc73a
AM
4929 if ((s->flags & SEC_LINKER_CREATED) == 0)
4930 continue;
252b5132 4931
25dbc73a 4932 if (s == htab->plt
d7128ce4 4933 || s == htab->glink
644285ef 4934 || s == htab->got
9d8504b1 4935 || s == htab->sgotplt
c456f082
AM
4936 || s == htab->sbss
4937 || s == htab->dynbss
4938 || s == htab->dynsbss)
25dbc73a 4939 {
9d8504b1
PB
4940 /* We'd like to strip these sections if they aren't needed, but if
4941 we've exported dynamic symbols from them we must leave them.
4942 It's too late to tell BFD to get rid of the symbols. */
7325306f 4943 if ((s == htab->plt || s == htab->got) && htab->elf.hplt != NULL)
9d8504b1 4944 strip_section = FALSE;
25dbc73a
AM
4945 /* Strip this section if we don't need it; see the
4946 comment below. */
4947 }
c9a2f333
AM
4948 else if (s == htab->sdata[0].section
4949 || s == htab->sdata[1].section)
25dbc73a 4950 {
c9a2f333 4951 /* Strip these too. */
25dbc73a 4952 }
0112cd26 4953 else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rela"))
25dbc73a 4954 {
c456f082 4955 if (s->size != 0)
25dbc73a
AM
4956 {
4957 /* Remember whether there are any relocation sections. */
4958 relocs = TRUE;
252b5132 4959
25dbc73a
AM
4960 /* We use the reloc_count field as a counter if we need
4961 to copy relocs into the output file. */
4962 s->reloc_count = 0;
252b5132
RH
4963 }
4964 }
25dbc73a
AM
4965 else
4966 {
4967 /* It's not one of our sections, so don't allocate space. */
4968 continue;
4969 }
252b5132 4970
9d8504b1 4971 if (s->size == 0 && strip_section)
25dbc73a 4972 {
c456f082
AM
4973 /* If we don't need this section, strip it from the
4974 output file. This is mostly to handle .rela.bss and
4975 .rela.plt. We must create both sections in
4976 create_dynamic_sections, because they must be created
4977 before the linker maps input sections to output
4978 sections. The linker does that before
4979 adjust_dynamic_symbol is called, and it is that
4980 function which decides whether anything needs to go
4981 into these sections. */
8423293d 4982 s->flags |= SEC_EXCLUDE;
25dbc73a
AM
4983 continue;
4984 }
7fce784e 4985
d7128ce4 4986 if ((s->flags & SEC_HAS_CONTENTS) == 0)
644285ef
AM
4987 continue;
4988
25dbc73a
AM
4989 /* Allocate memory for the section contents. */
4990 s->contents = bfd_zalloc (htab->elf.dynobj, s->size);
4991 if (s->contents == NULL)
4992 return FALSE;
4993 }
252b5132 4994
25dbc73a 4995 if (htab->elf.dynamic_sections_created)
7619e7c7 4996 {
25dbc73a
AM
4997 /* Add some entries to the .dynamic section. We fill in the
4998 values later, in ppc_elf_finish_dynamic_sections, but we
4999 must add the entries now so that we get the correct size for
5000 the .dynamic section. The DT_DEBUG entry is filled in by the
5001 dynamic linker and used by the debugger. */
5002#define add_dynamic_entry(TAG, VAL) \
5003 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
252b5132 5004
25dbc73a 5005 if (info->executable)
7619e7c7 5006 {
25dbc73a
AM
5007 if (!add_dynamic_entry (DT_DEBUG, 0))
5008 return FALSE;
7619e7c7
AM
5009 }
5010
25dbc73a 5011 if (htab->plt != NULL && htab->plt->size != 0)
7619e7c7 5012 {
25dbc73a
AM
5013 if (!add_dynamic_entry (DT_PLTGOT, 0)
5014 || !add_dynamic_entry (DT_PLTRELSZ, 0)
5015 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
5016 || !add_dynamic_entry (DT_JMPREL, 0))
5017 return FALSE;
5018 }
7619e7c7 5019
d7128ce4
AM
5020 if (htab->glink != NULL && htab->glink->size != 0)
5021 {
1fe44d79 5022 if (!add_dynamic_entry (DT_PPC_GOT, 0))
d7128ce4
AM
5023 return FALSE;
5024 }
5025
25dbc73a
AM
5026 if (relocs)
5027 {
5028 if (!add_dynamic_entry (DT_RELA, 0)
5029 || !add_dynamic_entry (DT_RELASZ, 0)
5030 || !add_dynamic_entry (DT_RELAENT, sizeof (Elf32_External_Rela)))
5031 return FALSE;
5032 }
7619e7c7 5033
25dbc73a
AM
5034 /* If any dynamic relocs apply to a read-only section, then we
5035 need a DT_TEXTREL entry. */
5036 if ((info->flags & DF_TEXTREL) == 0)
5037 elf_link_hash_traverse (elf_hash_table (info), readonly_dynrelocs,
5038 info);
7619e7c7 5039
25dbc73a
AM
5040 if ((info->flags & DF_TEXTREL) != 0)
5041 {
5042 if (!add_dynamic_entry (DT_TEXTREL, 0))
5043 return FALSE;
7619e7c7
AM
5044 }
5045 }
25dbc73a
AM
5046#undef add_dynamic_entry
5047
7619e7c7
AM
5048 return TRUE;
5049}
25dbc73a
AM
5050\f
5051#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
5052
5053static const int shared_stub_entry[] =
5054 {
5055 0x7c0802a6, /* mflr 0 */
5056 0x429f0005, /* bcl 20, 31, .Lxxx */
5057 0x7d6802a6, /* mflr 11 */
5058 0x3d6b0000, /* addis 11, 11, (xxx-.Lxxx)@ha */
5059 0x396b0018, /* addi 11, 11, (xxx-.Lxxx)@l */
5060 0x7c0803a6, /* mtlr 0 */
5061 0x7d6903a6, /* mtctr 11 */
5062 0x4e800420, /* bctr */
5063 };
5064
5065static const int stub_entry[] =
5066 {
5067 0x3d600000, /* lis 11,xxx@ha */
5068 0x396b0000, /* addi 11,11,xxx@l */
5069 0x7d6903a6, /* mtctr 11 */
5070 0x4e800420, /* bctr */
5071 };
5072
5073static bfd_boolean
5074ppc_elf_relax_section (bfd *abfd,
5075 asection *isec,
5076 struct bfd_link_info *link_info,
5077 bfd_boolean *again)
5078{
5079 struct one_fixup
5080 {
5081 struct one_fixup *next;
5082 asection *tsec;
5083 bfd_vma toff;
5084 bfd_vma trampoff;
5085 };
7619e7c7 5086
25dbc73a
AM
5087 Elf_Internal_Shdr *symtab_hdr;
5088 bfd_byte *contents = NULL;
5089 Elf_Internal_Sym *isymbuf = NULL;
5090 Elf_Internal_Rela *internal_relocs = NULL;
5091 Elf_Internal_Rela *irel, *irelend;
5092 struct one_fixup *fixups = NULL;
5093 bfd_boolean changed;
d7128ce4 5094 struct ppc_elf_link_hash_table *htab;
25dbc73a 5095 bfd_size_type trampoff;
a6aa5195 5096 asection *got2;
7619e7c7 5097
25dbc73a 5098 *again = FALSE;
7619e7c7 5099
c87b5a93
AM
5100 /* Nothing to do if there are no relocations, and no need to do
5101 anything with non-alloc sections. */
5102 if ((isec->flags & SEC_ALLOC) == 0
5103 || (isec->flags & SEC_RELOC) == 0
5104 || isec->reloc_count == 0)
25dbc73a 5105 return TRUE;
7619e7c7 5106
25dbc73a
AM
5107 trampoff = (isec->size + 3) & (bfd_vma) -4;
5108 /* Space for a branch around any trampolines. */
5109 trampoff += 4;
7619e7c7 5110
25dbc73a 5111 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
7619e7c7 5112
25dbc73a
AM
5113 /* Get a copy of the native relocations. */
5114 internal_relocs = _bfd_elf_link_read_relocs (abfd, isec, NULL, NULL,
5115 link_info->keep_memory);
5116 if (internal_relocs == NULL)
5117 goto error_return;
7619e7c7 5118
d7128ce4 5119 htab = ppc_elf_hash_table (link_info);
a6aa5195 5120 got2 = bfd_get_section_by_name (abfd, ".got2");
7619e7c7 5121
a6aa5195 5122 irelend = internal_relocs + isec->reloc_count;
25dbc73a 5123 for (irel = internal_relocs; irel < irelend; irel++)
7619e7c7 5124 {
25dbc73a
AM
5125 unsigned long r_type = ELF32_R_TYPE (irel->r_info);
5126 bfd_vma symaddr, reladdr, toff, roff;
5127 asection *tsec;
5128 struct one_fixup *f;
5129 size_t insn_offset = 0;
5130 bfd_vma max_branch_offset, val;
5131 bfd_byte *hit_addr;
5132 unsigned long t0;
5133 unsigned char sym_type;
7619e7c7 5134
25dbc73a
AM
5135 switch (r_type)
5136 {
5137 case R_PPC_REL24:
5138 case R_PPC_LOCAL24PC:
5139 case R_PPC_PLTREL24:
5140 max_branch_offset = 1 << 25;
5141 break;
7619e7c7 5142
25dbc73a
AM
5143 case R_PPC_REL14:
5144 case R_PPC_REL14_BRTAKEN:
5145 case R_PPC_REL14_BRNTAKEN:
5146 max_branch_offset = 1 << 15;
5147 break;
7619e7c7 5148
25dbc73a
AM
5149 default:
5150 continue;
5151 }
7619e7c7 5152
25dbc73a
AM
5153 /* Get the value of the symbol referred to by the reloc. */
5154 if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
5155 {
5156 /* A local symbol. */
5157 Elf_Internal_Sym *isym;
7fce784e 5158
25dbc73a
AM
5159 /* Read this BFD's local symbols. */
5160 if (isymbuf == NULL)
5161 {
5162 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
5163 if (isymbuf == NULL)
5164 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
5165 symtab_hdr->sh_info, 0,
5166 NULL, NULL, NULL);
5167 if (isymbuf == 0)
5168 goto error_return;
5169 }
5170 isym = isymbuf + ELF32_R_SYM (irel->r_info);
5171 if (isym->st_shndx == SHN_UNDEF)
5172 continue; /* We can't do anything with undefined symbols. */
5173 else if (isym->st_shndx == SHN_ABS)
5174 tsec = bfd_abs_section_ptr;
5175 else if (isym->st_shndx == SHN_COMMON)
5176 tsec = bfd_com_section_ptr;
5177 else
5178 tsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
7fce784e 5179
25dbc73a
AM
5180 toff = isym->st_value;
5181 sym_type = ELF_ST_TYPE (isym->st_info);
5182 }
5183 else
5184 {
5185 /* Global symbol handling. */
5186 unsigned long indx;
5187 struct elf_link_hash_entry *h;
7619e7c7 5188
25dbc73a
AM
5189 indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
5190 h = elf_sym_hashes (abfd)[indx];
7619e7c7 5191
25dbc73a
AM
5192 while (h->root.type == bfd_link_hash_indirect
5193 || h->root.type == bfd_link_hash_warning)
5194 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7619e7c7 5195
a6aa5195
AM
5196 tsec = NULL;
5197 toff = 0;
25dbc73a 5198 if (r_type == R_PPC_PLTREL24
a6aa5195 5199 && htab->plt != NULL)
25dbc73a 5200 {
a6aa5195
AM
5201 struct plt_entry *ent = find_plt_ent (h, got2, irel->r_addend);
5202
5203 if (ent != NULL)
d7128ce4 5204 {
4a3dc543 5205 if (htab->plt_type == PLT_NEW)
a6aa5195
AM
5206 {
5207 tsec = htab->glink;
5208 toff = ent->glink_offset;
5209 }
5210 else
5211 {
5212 tsec = htab->plt;
5213 toff = ent->plt.offset;
5214 }
d7128ce4 5215 }
25dbc73a 5216 }
a6aa5195
AM
5217 if (tsec != NULL)
5218 ;
25dbc73a
AM
5219 else if (h->root.type == bfd_link_hash_defined
5220 || h->root.type == bfd_link_hash_defweak)
5221 {
5222 tsec = h->root.u.def.section;
5223 toff = h->root.u.def.value;
5224 }
5225 else
5226 continue;
7619e7c7 5227
25dbc73a
AM
5228 sym_type = h->type;
5229 }
7619e7c7 5230
25dbc73a
AM
5231 /* If the branch and target are in the same section, you have
5232 no hope of adding stubs. We'll error out later should the
5233 branch overflow. */
5234 if (tsec == isec)
5235 continue;
5236
5237 /* There probably isn't any reason to handle symbols in
5238 SEC_MERGE sections; SEC_MERGE doesn't seem a likely
5239 attribute for a code section, and we are only looking at
5240 branches. However, implement it correctly here as a
5241 reference for other target relax_section functions. */
5242 if (0 && tsec->sec_info_type == ELF_INFO_TYPE_MERGE)
5243 {
5244 /* At this stage in linking, no SEC_MERGE symbol has been
5245 adjusted, so all references to such symbols need to be
5246 passed through _bfd_merged_section_offset. (Later, in
5247 relocate_section, all SEC_MERGE symbols *except* for
5248 section symbols have been adjusted.)
5249
5250 gas may reduce relocations against symbols in SEC_MERGE
5251 sections to a relocation against the section symbol when
5252 the original addend was zero. When the reloc is against
5253 a section symbol we should include the addend in the
5254 offset passed to _bfd_merged_section_offset, since the
5255 location of interest is the original symbol. On the
5256 other hand, an access to "sym+addend" where "sym" is not
5257 a section symbol should not include the addend; Such an
5258 access is presumed to be an offset from "sym"; The
5259 location of interest is just "sym". */
5260 if (sym_type == STT_SECTION)
5261 toff += irel->r_addend;
7619e7c7 5262
25dbc73a
AM
5263 toff = _bfd_merged_section_offset (abfd, &tsec,
5264 elf_section_data (tsec)->sec_info,
5265 toff);
7619e7c7 5266
25dbc73a
AM
5267 if (sym_type != STT_SECTION)
5268 toff += irel->r_addend;
5269 }
a6aa5195
AM
5270 /* PLTREL24 addends are special. */
5271 else if (r_type != R_PPC_PLTREL24)
25dbc73a 5272 toff += irel->r_addend;
7619e7c7 5273
7de713b9
AM
5274 /* Attempted -shared link of non-pic code loses. */
5275 if (tsec->output_section == NULL)
5276 continue;
5277
25dbc73a 5278 symaddr = tsec->output_section->vma + tsec->output_offset + toff;
7619e7c7 5279
25dbc73a
AM
5280 roff = irel->r_offset;
5281 reladdr = isec->output_section->vma + isec->output_offset + roff;
7619e7c7 5282
25dbc73a
AM
5283 /* If the branch is in range, no need to do anything. */
5284 if (symaddr - reladdr + max_branch_offset < 2 * max_branch_offset)
5285 continue;
252b5132 5286
25dbc73a
AM
5287 /* Look for an existing fixup to this address. */
5288 for (f = fixups; f ; f = f->next)
5289 if (f->tsec == tsec && f->toff == toff)
5290 break;
5291
5292 if (f == NULL)
7619e7c7 5293 {
25dbc73a
AM
5294 size_t size;
5295 unsigned long stub_rtype;
252b5132 5296
25dbc73a
AM
5297 val = trampoff - roff;
5298 if (val >= max_branch_offset)
5299 /* Oh dear, we can't reach a trampoline. Don't try to add
5300 one. We'll report an error later. */
5301 continue;
252b5132 5302
25dbc73a
AM
5303 if (link_info->shared)
5304 {
5305 size = 4 * ARRAY_SIZE (shared_stub_entry);
5306 insn_offset = 12;
5307 stub_rtype = R_PPC_RELAX32PC;
5308 }
5309 else
5310 {
5311 size = 4 * ARRAY_SIZE (stub_entry);
5312 insn_offset = 0;
5313 stub_rtype = R_PPC_RELAX32;
5314 }
dc810e39 5315
25dbc73a
AM
5316 if (R_PPC_RELAX32_PLT - R_PPC_RELAX32
5317 != R_PPC_RELAX32PC_PLT - R_PPC_RELAX32PC)
5318 abort ();
d7128ce4
AM
5319 if (tsec == htab->plt
5320 || tsec == htab->glink)
25dbc73a 5321 stub_rtype += R_PPC_RELAX32_PLT - R_PPC_RELAX32;
252b5132 5322
25dbc73a
AM
5323 /* Hijack the old relocation. Since we need two
5324 relocations for this use a "composite" reloc. */
5325 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
5326 stub_rtype);
5327 irel->r_offset = trampoff + insn_offset;
252b5132 5328
25dbc73a
AM
5329 /* Record the fixup so we don't do it again this section. */
5330 f = bfd_malloc (sizeof (*f));
5331 f->next = fixups;
5332 f->tsec = tsec;
5333 f->toff = toff;
5334 f->trampoff = trampoff;
5335 fixups = f;
252b5132 5336
25dbc73a
AM
5337 trampoff += size;
5338 }
5339 else
5340 {
5341 val = f->trampoff - roff;
5342 if (val >= max_branch_offset)
5343 continue;
252b5132 5344
25dbc73a
AM
5345 /* Nop out the reloc, since we're finalizing things here. */
5346 irel->r_info = ELF32_R_INFO (0, R_PPC_NONE);
5347 }
252b5132 5348
25dbc73a
AM
5349 /* Get the section contents. */
5350 if (contents == NULL)
5351 {
5352 /* Get cached copy if it exists. */
5353 if (elf_section_data (isec)->this_hdr.contents != NULL)
5354 contents = elf_section_data (isec)->this_hdr.contents;
5355 else
5356 {
5357 /* Go get them off disk. */
5358 if (!bfd_malloc_and_get_section (abfd, isec, &contents))
5359 goto error_return;
5360 }
5361 }
252b5132 5362
25dbc73a
AM
5363 /* Fix up the existing branch to hit the trampoline. */
5364 hit_addr = contents + roff;
5365 switch (r_type)
5366 {
5367 case R_PPC_REL24:
5368 case R_PPC_LOCAL24PC:
5369 case R_PPC_PLTREL24:
5370 t0 = bfd_get_32 (abfd, hit_addr);
5371 t0 &= ~0x3fffffc;
5372 t0 |= val & 0x3fffffc;
5373 bfd_put_32 (abfd, t0, hit_addr);
5374 break;
252b5132 5375
25dbc73a
AM
5376 case R_PPC_REL14:
5377 case R_PPC_REL14_BRTAKEN:
5378 case R_PPC_REL14_BRNTAKEN:
5379 t0 = bfd_get_32 (abfd, hit_addr);
5380 t0 &= ~0xfffc;
5381 t0 |= val & 0xfffc;
5382 bfd_put_32 (abfd, t0, hit_addr);
5383 break;
5384 }
5385 }
252b5132 5386
25dbc73a
AM
5387 /* Write out the trampolines. */
5388 changed = fixups != NULL;
5389 if (fixups != NULL)
5390 {
5391 const int *stub;
5392 bfd_byte *dest;
5393 bfd_vma val;
5394 int i, size;
252b5132 5395
25dbc73a
AM
5396 do
5397 {
5398 struct one_fixup *f = fixups;
5399 fixups = fixups->next;
5400 free (f);
5401 }
5402 while (fixups);
252b5132 5403
25dbc73a
AM
5404 contents = bfd_realloc (contents, trampoff);
5405 if (contents == NULL)
5406 goto error_return;
252b5132 5407
25dbc73a
AM
5408 isec->size = (isec->size + 3) & (bfd_vma) -4;
5409 /* Branch around the trampolines. */
5410 val = trampoff - isec->size + 0x48000000;
5411 dest = contents + isec->size;
5412 isec->size = trampoff;
5413 bfd_put_32 (abfd, val, dest);
5414 dest += 4;
252b5132 5415
25dbc73a
AM
5416 if (link_info->shared)
5417 {
5418 stub = shared_stub_entry;
5419 size = ARRAY_SIZE (shared_stub_entry);
5420 }
5421 else
5422 {
5423 stub = stub_entry;
5424 size = ARRAY_SIZE (stub_entry);
5425 }
252b5132 5426
25dbc73a
AM
5427 i = 0;
5428 while (dest < contents + trampoff)
252b5132 5429 {
25dbc73a
AM
5430 bfd_put_32 (abfd, stub[i], dest);
5431 i++;
5432 if (i == size)
5433 i = 0;
5434 dest += 4;
252b5132 5435 }
25dbc73a 5436 BFD_ASSERT (i == 0);
252b5132
RH
5437 }
5438
25dbc73a
AM
5439 if (isymbuf != NULL
5440 && symtab_hdr->contents != (unsigned char *) isymbuf)
252b5132 5441 {
25dbc73a
AM
5442 if (! link_info->keep_memory)
5443 free (isymbuf);
252b5132 5444 else
25dbc73a
AM
5445 {
5446 /* Cache the symbols for elf_link_input_bfd. */
5447 symtab_hdr->contents = (unsigned char *) isymbuf;
5448 }
252b5132
RH
5449 }
5450
25dbc73a
AM
5451 if (contents != NULL
5452 && elf_section_data (isec)->this_hdr.contents != contents)
5453 {
5454 if (!changed && !link_info->keep_memory)
5455 free (contents);
5456 else
5457 {
5458 /* Cache the section contents for elf_link_input_bfd. */
5459 elf_section_data (isec)->this_hdr.contents = contents;
5460 }
5461 }
252b5132 5462
25dbc73a
AM
5463 if (elf_section_data (isec)->relocs != internal_relocs)
5464 {
5465 if (!changed)
5466 free (internal_relocs);
5467 else
5468 elf_section_data (isec)->relocs = internal_relocs;
5469 }
252b5132 5470
25dbc73a 5471 *again = changed;
b34976b6 5472 return TRUE;
25dbc73a
AM
5473
5474 error_return:
5475 if (isymbuf != NULL && (unsigned char *) isymbuf != symtab_hdr->contents)
5476 free (isymbuf);
5477 if (contents != NULL
5478 && elf_section_data (isec)->this_hdr.contents != contents)
5479 free (contents);
5480 if (internal_relocs != NULL
5481 && elf_section_data (isec)->relocs != internal_relocs)
5482 free (internal_relocs);
5483 return FALSE;
252b5132 5484}
252b5132 5485\f
8a696751
AM
5486/* What to do when ld finds relocations against symbols defined in
5487 discarded sections. */
5488
5489static unsigned int
5490ppc_elf_action_discarded (asection *sec)
5491{
5492 if (strcmp (".fixup", sec->name) == 0)
5493 return 0;
5494
5495 if (strcmp (".got2", sec->name) == 0)
5496 return 0;
5497
5498 return _bfd_elf_default_action_discarded (sec);
5499}
c9a2f333 5500\f
25dbc73a 5501/* Fill in the address for a pointer generated in a linker section. */
252b5132 5502
25dbc73a 5503static bfd_vma
76750a2f 5504elf_finish_pointer_linker_section (bfd *input_bfd,
25dbc73a
AM
5505 elf_linker_section_t *lsect,
5506 struct elf_link_hash_entry *h,
5507 bfd_vma relocation,
2bb04cf2 5508 const Elf_Internal_Rela *rel)
25dbc73a
AM
5509{
5510 elf_linker_section_pointers_t *linker_section_ptr;
252b5132 5511
25dbc73a 5512 BFD_ASSERT (lsect != NULL);
252b5132 5513
25dbc73a 5514 if (h != NULL)
252b5132 5515 {
25dbc73a
AM
5516 /* Handle global symbol. */
5517 struct ppc_elf_link_hash_entry *eh;
252b5132 5518
25dbc73a 5519 eh = (struct ppc_elf_link_hash_entry *) h;
76750a2f
AM
5520 BFD_ASSERT (eh->elf.def_regular);
5521 linker_section_ptr = eh->linker_section_pointer;
25dbc73a
AM
5522 }
5523 else
5524 {
5525 /* Handle local symbol. */
5526 unsigned long r_symndx = ELF32_R_SYM (rel->r_info);
76750a2f 5527
25dbc73a 5528 BFD_ASSERT (elf_local_ptr_offsets (input_bfd) != NULL);
76750a2f
AM
5529 linker_section_ptr = elf_local_ptr_offsets (input_bfd)[r_symndx];
5530 }
252b5132 5531
76750a2f
AM
5532 linker_section_ptr = elf_find_pointer_linker_section (linker_section_ptr,
5533 rel->r_addend,
5534 lsect);
5535 BFD_ASSERT (linker_section_ptr != NULL);
25dbc73a 5536
76750a2f
AM
5537 /* Offset will always be a multiple of four, so use the bottom bit
5538 as a "written" flag. */
5539 if ((linker_section_ptr->offset & 1) == 0)
5540 {
5541 bfd_put_32 (lsect->section->owner,
5542 relocation + linker_section_ptr->addend,
5543 lsect->section->contents + linker_section_ptr->offset);
5544 linker_section_ptr->offset += 1;
252b5132
RH
5545 }
5546
25dbc73a 5547 relocation = (lsect->section->output_offset
76750a2f 5548 + linker_section_ptr->offset - 1
c9a2f333 5549 - 0x8000);
252b5132 5550
25dbc73a
AM
5551#ifdef DEBUG
5552 fprintf (stderr,
5553 "Finish pointer in linker section %s, offset = %ld (0x%lx)\n",
5554 lsect->name, (long) relocation, (long) relocation);
5555#endif
252b5132 5556
25dbc73a
AM
5557 /* Subtract out the addend, because it will get added back in by the normal
5558 processing. */
5559 return relocation - linker_section_ptr->addend;
252b5132 5560}
25dbc73a 5561
252b5132
RH
5562/* The RELOCATE_SECTION function is called by the ELF backend linker
5563 to handle the relocations for a section.
5564
5565 The relocs are always passed as Rela structures; if the section
5566 actually uses Rel structures, the r_addend field will always be
5567 zero.
5568
5569 This function is responsible for adjust the section contents as
5570 necessary, and (if using Rela relocs and generating a
1049f94e 5571 relocatable output file) adjusting the reloc addend as
252b5132
RH
5572 necessary.
5573
5574 This function does not have to worry about setting the reloc
5575 address or the reloc symbol index.
5576
5577 LOCAL_SYMS is a pointer to the swapped in local symbols.
5578
5579 LOCAL_SECTIONS is an array giving the section in the input file
5580 corresponding to the st_shndx field of each local symbol.
5581
5582 The global hash table entry for the global symbols can be found
5583 via elf_sym_hashes (input_bfd).
5584
1049f94e 5585 When generating relocatable output, this function must handle
252b5132
RH
5586 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
5587 going to be the section symbol corresponding to the output
5588 section, which means that the addend must be adjusted
5589 accordingly. */
5590
b34976b6 5591static bfd_boolean
55fd94b0
AM
5592ppc_elf_relocate_section (bfd *output_bfd,
5593 struct bfd_link_info *info,
5594 bfd *input_bfd,
5595 asection *input_section,
5596 bfd_byte *contents,
5597 Elf_Internal_Rela *relocs,
5598 Elf_Internal_Sym *local_syms,
5599 asection **local_sections)
252b5132 5600{
7619e7c7
AM
5601 Elf_Internal_Shdr *symtab_hdr;
5602 struct elf_link_hash_entry **sym_hashes;
5603 struct ppc_elf_link_hash_table *htab;
5604 Elf_Internal_Rela *rel;
5605 Elf_Internal_Rela *relend;
5606 Elf_Internal_Rela outrel;
5607 bfd_byte *loc;
a6aa5195 5608 asection *got2, *sreloc = NULL;
252b5132 5609 bfd_vma *local_got_offsets;
b34976b6 5610 bfd_boolean ret = TRUE;
4fe5ca5b 5611 bfd_vma d_offset = (bfd_big_endian (output_bfd) ? 2 : 0);
b34976b6 5612
252b5132 5613#ifdef DEBUG
d003868e
AM
5614 _bfd_error_handler ("ppc_elf_relocate_section called for %B section %A, "
5615 "%ld relocations%s",
5616 input_bfd, input_section,
5617 (long) input_section->reloc_count,
5618 (info->relocatable) ? " (relocatable)" : "");
252b5132
RH
5619#endif
5620
a6aa5195
AM
5621 got2 = bfd_get_section_by_name (input_bfd, ".got2");
5622
e47cd125 5623 /* Initialize howto table if not already done. */
8da6118f 5624 if (!ppc_elf_howto_table[R_PPC_ADDR32])
252b5132
RH
5625 ppc_elf_howto_init ();
5626
7619e7c7 5627 htab = ppc_elf_hash_table (info);
252b5132 5628 local_got_offsets = elf_local_got_offsets (input_bfd);
7619e7c7
AM
5629 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5630 sym_hashes = elf_sym_hashes (input_bfd);
5631 rel = relocs;
5632 relend = relocs + input_section->reloc_count;
252b5132
RH
5633 for (; rel < relend; rel++)
5634 {
7619e7c7
AM
5635 enum elf_ppc_reloc_type r_type;
5636 bfd_vma addend;
5637 bfd_reloc_status_type r;
5638 Elf_Internal_Sym *sym;
5639 asection *sec;
5640 struct elf_link_hash_entry *h;
5641 const char *sym_name;
252b5132
RH
5642 reloc_howto_type *howto;
5643 unsigned long r_symndx;
5644 bfd_vma relocation;
7619e7c7 5645 bfd_vma branch_bit, insn, from;
7619e7c7
AM
5646 bfd_boolean unresolved_reloc;
5647 bfd_boolean warned;
5648 unsigned int tls_type, tls_mask, tls_gd;
5649
55fd94b0
AM
5650 r_type = ELF32_R_TYPE (rel->r_info);
5651 sym = NULL;
5652 sec = NULL;
5653 h = NULL;
7619e7c7
AM
5654 unresolved_reloc = FALSE;
5655 warned = FALSE;
252b5132 5656 r_symndx = ELF32_R_SYM (rel->r_info);
560e09e9 5657
252b5132
RH
5658 if (r_symndx < symtab_hdr->sh_info)
5659 {
5660 sym = local_syms + r_symndx;
5661 sec = local_sections[r_symndx];
26c61ae5 5662 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym, sec);
252b5132 5663
8517fae7 5664 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
252b5132
RH
5665 }
5666 else
5667 {
b2a8e766
AM
5668 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
5669 r_symndx, symtab_hdr, sym_hashes,
5670 h, sec, relocation,
5671 unresolved_reloc, warned);
9abc968f 5672
252b5132 5673 sym_name = h->root.root.string;
7619e7c7
AM
5674 }
5675
ab96bf03
AM
5676 if (sec != NULL && elf_discarded_section (sec))
5677 {
5678 /* For relocs against symbols from removed linkonce sections,
5679 or sections discarded by a linker script, we just want the
5680 section contents zeroed. Avoid any special processing. */
5681 howto = NULL;
5682 if (r_type < R_PPC_max)
5683 howto = ppc_elf_howto_table[r_type];
5684 _bfd_clear_contents (howto, input_bfd, contents + rel->r_offset);
5685 rel->r_info = 0;
5686 rel->r_addend = 0;
5687 continue;
5688 }
5689
5690 if (info->relocatable)
5691 {
5692 if (got2 != NULL
5693 && r_type == R_PPC_PLTREL24
5694 && rel->r_addend >= 32768)
5695 {
5696 /* R_PPC_PLTREL24 is rather special. If non-zero, the
5697 addend specifies the GOT pointer offset within .got2. */
5698 rel->r_addend += got2->output_offset;
5699 }
5700 continue;
5701 }
5702
7619e7c7
AM
5703 /* TLS optimizations. Replace instruction sequences and relocs
5704 based on information we collected in tls_optimize. We edit
5705 RELOCS so that --emit-relocs will output something sensible
5706 for the final instruction stream. */
5707 tls_mask = 0;
5708 tls_gd = 0;
5709 if (IS_PPC_TLS_RELOC (r_type))
5710 {
5711 if (h != NULL)
5712 tls_mask = ((struct ppc_elf_link_hash_entry *) h)->tls_mask;
5713 else if (local_got_offsets != NULL)
5714 {
5715 char *lgot_masks;
5716 lgot_masks = (char *) (local_got_offsets + symtab_hdr->sh_info);
5717 tls_mask = lgot_masks[r_symndx];
5718 }
5719 }
5720
5721 /* Ensure reloc mapping code below stays sane. */
5722 if ((R_PPC_GOT_TLSLD16 & 3) != (R_PPC_GOT_TLSGD16 & 3)
5723 || (R_PPC_GOT_TLSLD16_LO & 3) != (R_PPC_GOT_TLSGD16_LO & 3)
5724 || (R_PPC_GOT_TLSLD16_HI & 3) != (R_PPC_GOT_TLSGD16_HI & 3)
5725 || (R_PPC_GOT_TLSLD16_HA & 3) != (R_PPC_GOT_TLSGD16_HA & 3)
5726 || (R_PPC_GOT_TLSLD16 & 3) != (R_PPC_GOT_TPREL16 & 3)
5727 || (R_PPC_GOT_TLSLD16_LO & 3) != (R_PPC_GOT_TPREL16_LO & 3)
5728 || (R_PPC_GOT_TLSLD16_HI & 3) != (R_PPC_GOT_TPREL16_HI & 3)
5729 || (R_PPC_GOT_TLSLD16_HA & 3) != (R_PPC_GOT_TPREL16_HA & 3))
5730 abort ();
5731 switch (r_type)
5732 {
5733 default:
5734 break;
5735
5736 case R_PPC_GOT_TPREL16:
5737 case R_PPC_GOT_TPREL16_LO:
5738 if (tls_mask != 0
5739 && (tls_mask & TLS_TPREL) == 0)
5740 {
5741 bfd_vma insn;
4fe5ca5b 5742 insn = bfd_get_32 (output_bfd, contents + rel->r_offset - d_offset);
7619e7c7
AM
5743 insn &= 31 << 21;
5744 insn |= 0x3c020000; /* addis 0,2,0 */
4fe5ca5b 5745 bfd_put_32 (output_bfd, insn, contents + rel->r_offset - d_offset);
7619e7c7
AM
5746 r_type = R_PPC_TPREL16_HA;
5747 rel->r_info = ELF32_R_INFO (r_symndx, r_type);
5748 }
5749 break;
5750
5751 case R_PPC_TLS:
5752 if (tls_mask != 0
5753 && (tls_mask & TLS_TPREL) == 0)
5754 {
5755 bfd_vma insn, rtra;
5756 insn = bfd_get_32 (output_bfd, contents + rel->r_offset);
5757 if ((insn & ((31 << 26) | (31 << 11)))
5758 == ((31 << 26) | (2 << 11)))
5759 rtra = insn & ((1 << 26) - (1 << 16));
5760 else if ((insn & ((31 << 26) | (31 << 16)))
5761 == ((31 << 26) | (2 << 16)))
5762 rtra = (insn & (31 << 21)) | ((insn & (31 << 11)) << 5);
5763 else
5764 abort ();
5765 if ((insn & ((1 << 11) - (1 << 1))) == 266 << 1)
5766 /* add -> addi. */
5767 insn = 14 << 26;
5768 else if ((insn & (31 << 1)) == 23 << 1
5769 && ((insn & (31 << 6)) < 14 << 6
5770 || ((insn & (31 << 6)) >= 16 << 6
5771 && (insn & (31 << 6)) < 24 << 6)))
5772 /* load and store indexed -> dform. */
5773 insn = (32 | ((insn >> 6) & 31)) << 26;
5774 else if ((insn & (31 << 1)) == 21 << 1
5775 && (insn & (0x1a << 6)) == 0)
5776 /* ldx, ldux, stdx, stdux -> ld, ldu, std, stdu. */
5777 insn = (((58 | ((insn >> 6) & 4)) << 26)
5778 | ((insn >> 6) & 1));
5779 else if ((insn & (31 << 1)) == 21 << 1
5780 && (insn & ((1 << 11) - (1 << 1))) == 341 << 1)
5781 /* lwax -> lwa. */
5782 insn = (58 << 26) | 2;
5783 else
5784 abort ();
5785 insn |= rtra;
5786 bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
5787 r_type = R_PPC_TPREL16_LO;
5788 rel->r_info = ELF32_R_INFO (r_symndx, r_type);
4fe5ca5b 5789
7619e7c7 5790 /* Was PPC_TLS which sits on insn boundary, now
4fe5ca5b
GM
5791 PPC_TPREL16_LO which is at low-order half-word. */
5792 rel->r_offset += d_offset;
7619e7c7
AM
5793 }
5794 break;
5795
5796 case R_PPC_GOT_TLSGD16_HI:
5797 case R_PPC_GOT_TLSGD16_HA:
5798 tls_gd = TLS_TPRELGD;
5799 if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
5800 goto tls_gdld_hi;
5801 break;
5802
5803 case R_PPC_GOT_TLSLD16_HI:
5804 case R_PPC_GOT_TLSLD16_HA:
5805 if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
5806 {
5807 tls_gdld_hi:
5808 if ((tls_mask & tls_gd) != 0)
5809 r_type = (((r_type - (R_PPC_GOT_TLSGD16 & 3)) & 3)
5810 + R_PPC_GOT_TPREL16);
5811 else
5812 {
5813 bfd_put_32 (output_bfd, NOP, contents + rel->r_offset);
4fe5ca5b 5814 rel->r_offset -= d_offset;
7619e7c7
AM
5815 r_type = R_PPC_NONE;
5816 }
5817 rel->r_info = ELF32_R_INFO (r_symndx, r_type);
5818 }
5819 break;
5820
5821 case R_PPC_GOT_TLSGD16:
5822 case R_PPC_GOT_TLSGD16_LO:
5823 tls_gd = TLS_TPRELGD;
5824 if (tls_mask != 0 && (tls_mask & TLS_GD) == 0)
5825 goto tls_get_addr_check;
5826 break;
5827
5828 case R_PPC_GOT_TLSLD16:
5829 case R_PPC_GOT_TLSLD16_LO:
5830 if (tls_mask != 0 && (tls_mask & TLS_LD) == 0)
5831 {
5832 tls_get_addr_check:
5833 if (rel + 1 < relend)
5834 {
5835 enum elf_ppc_reloc_type r_type2;
5836 unsigned long r_symndx2;
5837 struct elf_link_hash_entry *h2;
87d243f1 5838 bfd_vma insn1, insn2;
7619e7c7
AM
5839 bfd_vma offset;
5840
5841 /* The next instruction should be a call to
5842 __tls_get_addr. Peek at the reloc to be sure. */
55fd94b0 5843 r_type2 = ELF32_R_TYPE (rel[1].r_info);
7619e7c7
AM
5844 r_symndx2 = ELF32_R_SYM (rel[1].r_info);
5845 if (r_symndx2 < symtab_hdr->sh_info
5846 || (r_type2 != R_PPC_REL14
5847 && r_type2 != R_PPC_REL14_BRTAKEN
5848 && r_type2 != R_PPC_REL14_BRNTAKEN
5849 && r_type2 != R_PPC_REL24
5850 && r_type2 != R_PPC_PLTREL24))
5851 break;
5852
5853 h2 = sym_hashes[r_symndx2 - symtab_hdr->sh_info];
5854 while (h2->root.type == bfd_link_hash_indirect
5855 || h2->root.type == bfd_link_hash_warning)
5856 h2 = (struct elf_link_hash_entry *) h2->root.u.i.link;
5857 if (h2 == NULL || h2 != htab->tls_get_addr)
5858 break;
5859
5860 /* OK, it checks out. Replace the call. */
5861 offset = rel[1].r_offset;
5862 insn1 = bfd_get_32 (output_bfd,
4fe5ca5b 5863 contents + rel->r_offset - d_offset);
7619e7c7
AM
5864 if ((tls_mask & tls_gd) != 0)
5865 {
5866 /* IE */
5867 insn1 &= (1 << 26) - 1;
5868 insn1 |= 32 << 26; /* lwz */
5869 insn2 = 0x7c631214; /* add 3,3,2 */
5870 rel[1].r_info = ELF32_R_INFO (r_symndx2, R_PPC_NONE);
e1710606 5871 rel[1].r_addend = 0;
7619e7c7
AM
5872 r_type = (((r_type - (R_PPC_GOT_TLSGD16 & 3)) & 3)
5873 + R_PPC_GOT_TPREL16);
5874 rel->r_info = ELF32_R_INFO (r_symndx, r_type);
5875 }
5876 else
5877 {
5878 /* LE */
5879 insn1 = 0x3c620000; /* addis 3,2,0 */
5880 insn2 = 0x38630000; /* addi 3,3,0 */
5881 if (tls_gd == 0)
5882 {
5883 /* Was an LD reloc. */
5884 r_symndx = 0;
e1918d23 5885 rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
7619e7c7
AM
5886 }
5887 r_type = R_PPC_TPREL16_HA;
5888 rel->r_info = ELF32_R_INFO (r_symndx, r_type);
5889 rel[1].r_info = ELF32_R_INFO (r_symndx,
5890 R_PPC_TPREL16_LO);
4fe5ca5b 5891 rel[1].r_offset += d_offset;
e1710606 5892 rel[1].r_addend = rel->r_addend;
7619e7c7 5893 }
4fe5ca5b 5894 bfd_put_32 (output_bfd, insn1, contents + rel->r_offset - d_offset);
7619e7c7 5895 bfd_put_32 (output_bfd, insn2, contents + offset);
7619e7c7
AM
5896 if (tls_gd == 0)
5897 {
5898 /* We changed the symbol on an LD reloc. Start over
70bccea4 5899 in order to get h, sym, sec etc. right. */
7619e7c7
AM
5900 rel--;
5901 continue;
5902 }
5903 }
252b5132 5904 }
7619e7c7
AM
5905 break;
5906 }
5907
5908 /* Handle other relocations that tweak non-addend part of insn. */
5909 branch_bit = 0;
5910 switch (r_type)
5911 {
5912 default:
5913 break;
5914
5915 /* Branch taken prediction relocations. */
5916 case R_PPC_ADDR14_BRTAKEN:
5917 case R_PPC_REL14_BRTAKEN:
5918 branch_bit = BRANCH_PREDICT_BIT;
5919 /* Fall thru */
5920
4cc11e76 5921 /* Branch not taken prediction relocations. */
7619e7c7
AM
5922 case R_PPC_ADDR14_BRNTAKEN:
5923 case R_PPC_REL14_BRNTAKEN:
5924 insn = bfd_get_32 (output_bfd, contents + rel->r_offset);
5925 insn &= ~BRANCH_PREDICT_BIT;
5926 insn |= branch_bit;
5927
5928 from = (rel->r_offset
5929 + input_section->output_offset
5930 + input_section->output_section->vma);
5931
5932 /* Invert 'y' bit if not the default. */
5933 if ((bfd_signed_vma) (relocation + rel->r_addend - from) < 0)
5934 insn ^= BRANCH_PREDICT_BIT;
5935
5936 bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
5937 break;
252b5132
RH
5938 }
5939
7619e7c7
AM
5940 addend = rel->r_addend;
5941 tls_type = 0;
5942 howto = NULL;
55fd94b0
AM
5943 if (r_type < R_PPC_max)
5944 howto = ppc_elf_howto_table[r_type];
7619e7c7 5945 switch (r_type)
252b5132
RH
5946 {
5947 default:
7619e7c7 5948 (*_bfd_error_handler)
d003868e
AM
5949 (_("%B: unknown relocation type %d for symbol %s"),
5950 input_bfd, (int) r_type, sym_name);
252b5132
RH
5951
5952 bfd_set_error (bfd_error_bad_value);
b34976b6 5953 ret = FALSE;
252b5132
RH
5954 continue;
5955
7619e7c7
AM
5956 case R_PPC_NONE:
5957 case R_PPC_TLS:
5958 case R_PPC_EMB_MRKREF:
5959 case R_PPC_GNU_VTINHERIT:
5960 case R_PPC_GNU_VTENTRY:
7595d193
L
5961 continue;
5962
7619e7c7
AM
5963 /* GOT16 relocations. Like an ADDR16 using the symbol's
5964 address in the GOT as relocation value instead of the
5965 symbol's value itself. Also, create a GOT entry for the
5966 symbol and put the symbol value there. */
5967 case R_PPC_GOT_TLSGD16:
5968 case R_PPC_GOT_TLSGD16_LO:
5969 case R_PPC_GOT_TLSGD16_HI:
5970 case R_PPC_GOT_TLSGD16_HA:
5971 tls_type = TLS_TLS | TLS_GD;
5972 goto dogot;
5973
5974 case R_PPC_GOT_TLSLD16:
5975 case R_PPC_GOT_TLSLD16_LO:
5976 case R_PPC_GOT_TLSLD16_HI:
5977 case R_PPC_GOT_TLSLD16_HA:
5978 tls_type = TLS_TLS | TLS_LD;
5979 goto dogot;
5980
5981 case R_PPC_GOT_TPREL16:
5982 case R_PPC_GOT_TPREL16_LO:
5983 case R_PPC_GOT_TPREL16_HI:
5984 case R_PPC_GOT_TPREL16_HA:
5985 tls_type = TLS_TLS | TLS_TPREL;
5986 goto dogot;
5987
5988 case R_PPC_GOT_DTPREL16:
5989 case R_PPC_GOT_DTPREL16_LO:
5990 case R_PPC_GOT_DTPREL16_HI:
5991 case R_PPC_GOT_DTPREL16_HA:
5992 tls_type = TLS_TLS | TLS_DTPREL;
5993 goto dogot;
5994
5995 case R_PPC_GOT16:
5996 case R_PPC_GOT16_LO:
5997 case R_PPC_GOT16_HI:
5998 case R_PPC_GOT16_HA:
5999 dogot:
6000 {
6001 /* Relocation is to the entry for this symbol in the global
6002 offset table. */
6003 bfd_vma off;
6004 bfd_vma *offp;
6005 unsigned long indx;
6006
6007 if (htab->got == NULL)
6008 abort ();
6009
6010 indx = 0;
6011 if (tls_type == (TLS_TLS | TLS_LD)
d881513a 6012 && (h == NULL
f5385ebf 6013 || !h->def_dynamic))
7619e7c7
AM
6014 offp = &htab->tlsld_got.offset;
6015 else if (h != NULL)
6016 {
6017 bfd_boolean dyn;
6018 dyn = htab->elf.dynamic_sections_created;
ee05f2fe 6019 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
7619e7c7
AM
6020 || (info->shared
6021 && SYMBOL_REFERENCES_LOCAL (info, h)))
6022 /* This is actually a static link, or it is a
6023 -Bsymbolic link and the symbol is defined
6024 locally, or the symbol was forced to be local
6025 because of a version file. */
6026 ;
6027 else
6028 {
6029 indx = h->dynindx;
6030 unresolved_reloc = FALSE;
6031 }
6032 offp = &h->got.offset;
6033 }
6034 else
6035 {
6036 if (local_got_offsets == NULL)
6037 abort ();
6038 offp = &local_got_offsets[r_symndx];
6039 }
6040
6041 /* The offset must always be a multiple of 4. We use the
6042 least significant bit to record whether we have already
6043 processed this entry. */
6044 off = *offp;
6045 if ((off & 1) != 0)
6046 off &= ~1;
6047 else
6048 {
70bccea4
AM
6049 unsigned int tls_m = (tls_mask
6050 & (TLS_LD | TLS_GD | TLS_DTPREL
6051 | TLS_TPREL | TLS_TPRELGD));
6052
6053 if (offp == &htab->tlsld_got.offset)
6054 tls_m = TLS_LD;
6055 else if (h == NULL
f5385ebf 6056 || !h->def_dynamic)
70bccea4
AM
6057 tls_m &= ~TLS_LD;
6058
6059 /* We might have multiple got entries for this sym.
6060 Initialize them all. */
6061 do
7619e7c7 6062 {
70bccea4
AM
6063 int tls_ty = 0;
6064
6065 if ((tls_m & TLS_LD) != 0)
7619e7c7 6066 {
70bccea4
AM
6067 tls_ty = TLS_TLS | TLS_LD;
6068 tls_m &= ~TLS_LD;
6069 }
6070 else if ((tls_m & TLS_GD) != 0)
6071 {
6072 tls_ty = TLS_TLS | TLS_GD;
6073 tls_m &= ~TLS_GD;
6074 }
6075 else if ((tls_m & TLS_DTPREL) != 0)
6076 {
6077 tls_ty = TLS_TLS | TLS_DTPREL;
6078 tls_m &= ~TLS_DTPREL;
6079 }
6080 else if ((tls_m & (TLS_TPREL | TLS_TPRELGD)) != 0)
6081 {
6082 tls_ty = TLS_TLS | TLS_TPREL;
6083 tls_m = 0;
7619e7c7 6084 }
7619e7c7 6085
70bccea4 6086 /* Generate relocs for the dynamic linker. */
4e795f50
AM
6087 if ((info->shared || indx != 0)
6088 && (h == NULL
6089 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
6090 || h->root.type != bfd_link_hash_undefweak))
7619e7c7 6091 {
70bccea4
AM
6092 outrel.r_offset = (htab->got->output_section->vma
6093 + htab->got->output_offset
6094 + off);
e515b051 6095 outrel.r_addend = 0;
70bccea4
AM
6096 if (tls_ty & (TLS_LD | TLS_GD))
6097 {
6098 outrel.r_info = ELF32_R_INFO (indx, R_PPC_DTPMOD32);
70bccea4
AM
6099 if (tls_ty == (TLS_TLS | TLS_GD))
6100 {
6101 loc = htab->relgot->contents;
6102 loc += (htab->relgot->reloc_count++
6103 * sizeof (Elf32_External_Rela));
6104 bfd_elf32_swap_reloca_out (output_bfd,
6105 &outrel, loc);
e515b051 6106 outrel.r_offset += 4;
70bccea4
AM
6107 outrel.r_info
6108 = ELF32_R_INFO (indx, R_PPC_DTPREL32);
70bccea4
AM
6109 }
6110 }
6111 else if (tls_ty == (TLS_TLS | TLS_DTPREL))
6112 outrel.r_info = ELF32_R_INFO (indx, R_PPC_DTPREL32);
6113 else if (tls_ty == (TLS_TLS | TLS_TPREL))
6114 outrel.r_info = ELF32_R_INFO (indx, R_PPC_TPREL32);
6115 else if (indx == 0)
6116 outrel.r_info = ELF32_R_INFO (indx, R_PPC_RELATIVE);
6117 else
6118 outrel.r_info = ELF32_R_INFO (indx, R_PPC_GLOB_DAT);
70bccea4 6119 if (indx == 0)
e515b051
AM
6120 {
6121 outrel.r_addend += relocation;
6122 if (tls_ty & (TLS_GD | TLS_DTPREL | TLS_TPREL))
e1918d23 6123 outrel.r_addend -= htab->elf.tls_sec->vma;
e515b051 6124 }
70bccea4
AM
6125 loc = htab->relgot->contents;
6126 loc += (htab->relgot->reloc_count++
6127 * sizeof (Elf32_External_Rela));
6128 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
7619e7c7
AM
6129 }
6130
70bccea4
AM
6131 /* Init the .got section contents if we're not
6132 emitting a reloc. */
6133 else
7619e7c7 6134 {
70bccea4
AM
6135 bfd_vma value = relocation;
6136
7b609f53
AM
6137 if (tls_ty == (TLS_TLS | TLS_LD))
6138 value = 1;
6139 else if (tls_ty != 0)
70bccea4 6140 {
e1918d23 6141 value -= htab->elf.tls_sec->vma + DTP_OFFSET;
7b609f53 6142 if (tls_ty == (TLS_TLS | TLS_TPREL))
70bccea4 6143 value += DTP_OFFSET - TP_OFFSET;
70bccea4 6144
7b609f53
AM
6145 if (tls_ty == (TLS_TLS | TLS_GD))
6146 {
6147 bfd_put_32 (output_bfd, value,
6148 htab->got->contents + off + 4);
6149 value = 1;
6150 }
70bccea4 6151 }
70bccea4
AM
6152 bfd_put_32 (output_bfd, value,
6153 htab->got->contents + off);
7619e7c7 6154 }
70bccea4
AM
6155
6156 off += 4;
6157 if (tls_ty & (TLS_LD | TLS_GD))
6158 off += 4;
7619e7c7 6159 }
70bccea4
AM
6160 while (tls_m != 0);
6161
6162 off = *offp;
6163 *offp = off | 1;
7619e7c7
AM
6164 }
6165
6166 if (off >= (bfd_vma) -2)
6167 abort ();
6168
70bccea4
AM
6169 if ((tls_type & TLS_TLS) != 0)
6170 {
6171 if (tls_type != (TLS_TLS | TLS_LD))
6172 {
6173 if ((tls_mask & TLS_LD) != 0
6174 && !(h == NULL
f5385ebf 6175 || !h->def_dynamic))
70bccea4
AM
6176 off += 8;
6177 if (tls_type != (TLS_TLS | TLS_GD))
6178 {
6179 if ((tls_mask & TLS_GD) != 0)
6180 off += 8;
6181 if (tls_type != (TLS_TLS | TLS_DTPREL))
6182 {
6183 if ((tls_mask & TLS_DTPREL) != 0)
6184 off += 4;
6185 }
6186 }
6187 }
6188 }
6189
3b36f7e6
AM
6190 relocation = htab->got->output_offset + off;
6191 relocation -= htab->elf.hgot->root.u.def.value;
7619e7c7
AM
6192
6193 /* Addends on got relocations don't make much sense.
6194 x+off@got is actually x@got+off, and since the got is
6195 generated by a hash table traversal, the value in the
6196 got at entry m+n bears little relation to the entry m. */
6197 if (addend != 0)
6198 (*_bfd_error_handler)
d003868e
AM
6199 (_("%B(%A+0x%lx): non-zero addend on %s reloc against `%s'"),
6200 input_bfd,
6201 input_section,
7619e7c7 6202 (long) rel->r_offset,
7b609f53 6203 howto->name,
7619e7c7
AM
6204 sym_name);
6205 }
70bccea4 6206 break;
7619e7c7 6207
252b5132 6208 /* Relocations that need no special processing. */
7619e7c7 6209 case R_PPC_LOCAL24PC:
252b5132
RH
6210 /* It makes no sense to point a local relocation
6211 at a symbol not in this object. */
7b609f53 6212 if (unresolved_reloc)
252b5132 6213 {
464e1740
ILT
6214 if (! (*info->callbacks->undefined_symbol) (info,
6215 h->root.root.string,
6216 input_bfd,
6217 input_section,
5cc7c785 6218 rel->r_offset,
b34976b6
AM
6219 TRUE))
6220 return FALSE;
252b5132
RH
6221 continue;
6222 }
6223 break;
6224
7619e7c7
AM
6225 case R_PPC_DTPREL16:
6226 case R_PPC_DTPREL16_LO:
6227 case R_PPC_DTPREL16_HI:
6228 case R_PPC_DTPREL16_HA:
e1918d23 6229 addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
7619e7c7
AM
6230 break;
6231
70bccea4
AM
6232 /* Relocations that may need to be propagated if this is a shared
6233 object. */
7619e7c7
AM
6234 case R_PPC_TPREL16:
6235 case R_PPC_TPREL16_LO:
6236 case R_PPC_TPREL16_HI:
6237 case R_PPC_TPREL16_HA:
e1918d23 6238 addend -= htab->elf.tls_sec->vma + TP_OFFSET;
7619e7c7
AM
6239 /* The TPREL16 relocs shouldn't really be used in shared
6240 libs as they will result in DT_TEXTREL being set, but
6241 support them anyway. */
6242 goto dodyn;
6243
6244 case R_PPC_TPREL32:
e1918d23 6245 addend -= htab->elf.tls_sec->vma + TP_OFFSET;
7619e7c7
AM
6246 goto dodyn;
6247
6248 case R_PPC_DTPREL32:
e1918d23 6249 addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
7619e7c7
AM
6250 goto dodyn;
6251
e515b051
AM
6252 case R_PPC_DTPMOD32:
6253 relocation = 1;
6254 addend = 0;
6255 goto dodyn;
6256
d7128ce4
AM
6257 case R_PPC_REL16:
6258 case R_PPC_REL16_LO:
6259 case R_PPC_REL16_HI:
6260 case R_PPC_REL16_HA:
6261 break;
6262
7619e7c7
AM
6263 case R_PPC_REL24:
6264 case R_PPC_REL32:
6265 case R_PPC_REL14:
6266 case R_PPC_REL14_BRTAKEN:
6267 case R_PPC_REL14_BRNTAKEN:
252b5132
RH
6268 /* If these relocations are not to a named symbol, they can be
6269 handled right here, no need to bother the dynamic linker. */
f6c52c13 6270 if (SYMBOL_REFERENCES_LOCAL (info, h)
3b36f7e6 6271 || h == htab->elf.hgot)
252b5132 6272 break;
70bccea4 6273 /* fall through */
252b5132 6274
70bccea4
AM
6275 /* Relocations that always need to be propagated if this is a shared
6276 object. */
7619e7c7
AM
6277 case R_PPC_ADDR32:
6278 case R_PPC_ADDR24:
6279 case R_PPC_ADDR16:
6280 case R_PPC_ADDR16_LO:
6281 case R_PPC_ADDR16_HI:
6282 case R_PPC_ADDR16_HA:
6283 case R_PPC_ADDR14:
6284 case R_PPC_ADDR14_BRTAKEN:
6285 case R_PPC_ADDR14_BRNTAKEN:
6286 case R_PPC_UADDR32:
6287 case R_PPC_UADDR16:
7619e7c7 6288 dodyn:
c87b5a93
AM
6289 if ((input_section->flags & SEC_ALLOC) == 0)
6290 break;
6291 /* Fall thru. */
6292
ee05f2fe 6293 if ((info->shared
4e795f50
AM
6294 && (h == NULL
6295 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
6296 || h->root.type != bfd_link_hash_undefweak)
ee05f2fe 6297 && (MUST_BE_DYN_RELOC (r_type)
f6c52c13 6298 || !SYMBOL_CALLS_LOCAL (info, h)))
ee05f2fe
AM
6299 || (ELIMINATE_COPY_RELOCS
6300 && !info->shared
ee05f2fe
AM
6301 && h != NULL
6302 && h->dynindx != -1
f5385ebf
AM
6303 && !h->non_got_ref
6304 && h->def_dynamic
6305 && !h->def_regular))
252b5132 6306 {
0bb2d96a 6307 int skip;
252b5132
RH
6308
6309#ifdef DEBUG
55fd94b0
AM
6310 fprintf (stderr, "ppc_elf_relocate_section needs to "
6311 "create relocation for %s\n",
70bccea4
AM
6312 (h && h->root.root.string
6313 ? h->root.root.string : "<unknown>"));
252b5132
RH
6314#endif
6315
6316 /* When generating a shared object, these relocations
70bccea4
AM
6317 are copied into the output file to be resolved at run
6318 time. */
252b5132
RH
6319 if (sreloc == NULL)
6320 {
6321 const char *name;
6322
6323 name = (bfd_elf_string_from_elf_section
6324 (input_bfd,
6325 elf_elfheader (input_bfd)->e_shstrndx,
6326 elf_section_data (input_section)->rel_hdr.sh_name));
6327 if (name == NULL)
b34976b6 6328 return FALSE;
252b5132 6329
0112cd26 6330 BFD_ASSERT (CONST_STRNEQ (name, ".rela")
252b5132
RH
6331 && strcmp (bfd_get_section_name (input_bfd,
6332 input_section),
6333 name + 5) == 0);
6334
7619e7c7 6335 sreloc = bfd_get_section_by_name (htab->elf.dynobj, name);
252b5132
RH
6336 BFD_ASSERT (sreloc != NULL);
6337 }
6338
0bb2d96a 6339 skip = 0;
252b5132 6340
c629eae0
JJ
6341 outrel.r_offset =
6342 _bfd_elf_section_offset (output_bfd, info, input_section,
6343 rel->r_offset);
0bb2d96a
JJ
6344 if (outrel.r_offset == (bfd_vma) -1
6345 || outrel.r_offset == (bfd_vma) -2)
6346 skip = (int) outrel.r_offset;
252b5132
RH
6347 outrel.r_offset += (input_section->output_section->vma
6348 + input_section->output_offset);
6349
6350 if (skip)
6351 memset (&outrel, 0, sizeof outrel);
f6c52c13 6352 else if (!SYMBOL_REFERENCES_LOCAL (info, h))
252b5132 6353 {
7619e7c7 6354 unresolved_reloc = FALSE;
252b5132
RH
6355 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
6356 outrel.r_addend = rel->r_addend;
6357 }
6358 else
6359 {
47388f4c
AM
6360 outrel.r_addend = relocation + rel->r_addend;
6361
252b5132 6362 if (r_type == R_PPC_ADDR32)
47388f4c 6363 outrel.r_info = ELF32_R_INFO (0, R_PPC_RELATIVE);
252b5132
RH
6364 else
6365 {
6366 long indx;
6367
47388f4c 6368 if (bfd_is_abs_section (sec))
252b5132
RH
6369 indx = 0;
6370 else if (sec == NULL || sec->owner == NULL)
6371 {
6372 bfd_set_error (bfd_error_bad_value);
b34976b6 6373 return FALSE;
252b5132
RH
6374 }
6375 else
6376 {
6377 asection *osec;
6378
47388f4c
AM
6379 /* We are turning this relocation into one
6380 against a section symbol. It would be
6381 proper to subtract the symbol's value,
6382 osec->vma, from the emitted reloc addend,
6383 but ld.so expects buggy relocs. */
252b5132
RH
6384 osec = sec->output_section;
6385 indx = elf_section_data (osec)->dynindx;
74541ad4
AM
6386 if (indx == 0)
6387 {
6388 osec = htab->elf.text_index_section;
6389 indx = elf_section_data (osec)->dynindx;
6390 }
6391 BFD_ASSERT (indx != 0);
252b5132 6392#ifdef DEBUG
74541ad4 6393 if (indx == 0)
e460dd0d 6394 printf ("indx=%ld section=%s flags=%08x name=%s\n",
55fd94b0
AM
6395 indx, osec->name, osec->flags,
6396 h->root.root.string);
252b5132
RH
6397#endif
6398 }
6399
6400 outrel.r_info = ELF32_R_INFO (indx, r_type);
252b5132
RH
6401 }
6402 }
6403
947216bf
AM
6404 loc = sreloc->contents;
6405 loc += sreloc->reloc_count++ * sizeof (Elf32_External_Rela);
6406 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
252b5132 6407
2243deae 6408 if (skip == -1)
252b5132 6409 continue;
2243deae
L
6410
6411 /* This reloc will be computed at runtime. We clear the memory
6412 so that it contains predictable value. */
6413 if (! skip
6414 && ((input_section->flags & SEC_ALLOC) != 0
6415 || ELF32_R_TYPE (outrel.r_info) != R_PPC_RELATIVE))
6416 {
6417 relocation = howto->pc_relative ? outrel.r_offset : 0;
6418 addend = 0;
6419 break;
6420 }
252b5132 6421 }
252b5132
RH
6422 break;
6423
b4a38de6
AM
6424 case R_PPC_RELAX32PC_PLT:
6425 case R_PPC_RELAX32_PLT:
a6aa5195
AM
6426 {
6427 struct plt_entry *ent = find_plt_ent (h, got2, addend);
6428
4a3dc543 6429 if (htab->plt_type == PLT_NEW)
a6aa5195
AM
6430 relocation = (htab->glink->output_section->vma
6431 + htab->glink->output_offset
6432 + ent->glink_offset);
6433 else
6434 relocation = (htab->plt->output_section->vma
6435 + htab->plt->output_offset
6436 + ent->plt.offset);
6437 addend = 0;
6438 }
b4a38de6
AM
6439 if (r_type == R_PPC_RELAX32_PLT)
6440 goto relax32;
6441 /* Fall thru */
6442
f31a141e
AM
6443 case R_PPC_RELAX32PC:
6444 relocation -= (input_section->output_section->vma
6445 + input_section->output_offset
6446 + rel->r_offset - 4);
6447 /* Fall thru */
b4a38de6 6448
deaaf2f3 6449 case R_PPC_RELAX32:
b4a38de6 6450 relax32:
9abc968f
AM
6451 {
6452 unsigned long t0;
6453 unsigned long t1;
6454
6455 t0 = bfd_get_32 (output_bfd, contents + rel->r_offset);
6456 t1 = bfd_get_32 (output_bfd, contents + rel->r_offset + 4);
6457
6458 /* We're clearing the bits for R_PPC_ADDR16_HA
6459 and R_PPC_ADDR16_LO here. */
6460 t0 &= ~0xffff;
6461 t1 &= ~0xffff;
6462
6463 /* t0 is HA, t1 is LO */
6464 relocation += addend;
6465 t0 |= ((relocation + 0x8000) >> 16) & 0xffff;
6466 t1 |= relocation & 0xffff;
6467
6468 bfd_put_32 (output_bfd, t0, contents + rel->r_offset);
6469 bfd_put_32 (output_bfd, t1, contents + rel->r_offset + 4);
6470 }
8517fae7 6471 continue;
deaaf2f3 6472
70bccea4 6473 /* Indirect .sdata relocation. */
7619e7c7 6474 case R_PPC_EMB_SDAI16:
c9a2f333 6475 BFD_ASSERT (htab->sdata[0].section != NULL);
7619e7c7 6476 relocation
76750a2f
AM
6477 = elf_finish_pointer_linker_section (input_bfd, &htab->sdata[0],
6478 h, relocation, rel);
252b5132
RH
6479 break;
6480
70bccea4 6481 /* Indirect .sdata2 relocation. */
7619e7c7 6482 case R_PPC_EMB_SDA2I16:
c9a2f333 6483 BFD_ASSERT (htab->sdata[1].section != NULL);
7619e7c7 6484 relocation
76750a2f
AM
6485 = elf_finish_pointer_linker_section (input_bfd, &htab->sdata[1],
6486 h, relocation, rel);
252b5132
RH
6487 break;
6488
70bccea4
AM
6489 /* Handle the TOC16 reloc. We want to use the offset within the .got
6490 section, not the actual VMA. This is appropriate when generating
6491 an embedded ELF object, for which the .got section acts like the
6492 AIX .toc section. */
7619e7c7 6493 case R_PPC_TOC16: /* phony GOT16 relocations */
55fd94b0 6494 BFD_ASSERT (sec != NULL);
252b5132
RH
6495 BFD_ASSERT (bfd_is_und_section (sec)
6496 || strcmp (bfd_get_section_name (abfd, sec), ".got") == 0
f12123c0 6497 || strcmp (bfd_get_section_name (abfd, sec), ".cgot") == 0);
252b5132 6498
70bccea4 6499 addend -= sec->output_section->vma + sec->output_offset + 0x8000;
252b5132
RH
6500 break;
6501
7619e7c7 6502 case R_PPC_PLTREL24:
252b5132 6503 /* Relocation is to the entry for this symbol in the
70bccea4 6504 procedure linkage table. */
a6aa5195
AM
6505 {
6506 struct plt_entry *ent = find_plt_ent (h, got2, addend);
252b5132 6507
a6aa5195
AM
6508 addend = 0;
6509 if (ent == NULL
6510 || htab->plt == NULL)
6511 {
6512 /* We didn't make a PLT entry for this symbol. This
6513 happens when statically linking PIC code, or when
6514 using -Bsymbolic. */
6515 break;
6516 }
252b5132 6517
a6aa5195 6518 unresolved_reloc = FALSE;
4a3dc543 6519 if (htab->plt_type == PLT_NEW)
a6aa5195
AM
6520 relocation = (htab->glink->output_section->vma
6521 + htab->glink->output_offset
6522 + ent->glink_offset);
6523 else
6524 relocation = (htab->plt->output_section->vma
6525 + htab->plt->output_offset
6526 + ent->plt.offset);
6527 }
8da6118f 6528 break;
252b5132 6529
70bccea4 6530 /* Relocate against _SDA_BASE_. */
7619e7c7 6531 case R_PPC_SDAREL16:
252b5132
RH
6532 {
6533 const char *name;
046183de 6534 struct elf_link_hash_entry *sh;
252b5132 6535
55fd94b0 6536 BFD_ASSERT (sec != NULL);
252b5132 6537 name = bfd_get_section_name (abfd, sec->output_section);
0112cd26 6538 if (! ((CONST_STRNEQ (name, ".sdata")
5f819128 6539 && (name[6] == 0 || name[6] == '.'))
0112cd26 6540 || (CONST_STRNEQ (name, ".sbss")
5f819128 6541 && (name[5] == 0 || name[5] == '.'))))
252b5132 6542 {
55fd94b0 6543 (*_bfd_error_handler)
d003868e 6544 (_("%B: the target (%s) of a %s relocation is "
55fd94b0 6545 "in the wrong output section (%s)"),
d003868e 6546 input_bfd,
55fd94b0
AM
6547 sym_name,
6548 howto->name,
6549 name);
252b5132 6550 }
046183de
AM
6551 sh = htab->sdata[0].sym;
6552 addend -= (sh->root.u.def.value
6553 + sh->root.u.def.section->output_offset
6554 + sh->root.u.def.section->output_section->vma);
252b5132
RH
6555 }
6556 break;
6557
70bccea4 6558 /* Relocate against _SDA2_BASE_. */
7619e7c7 6559 case R_PPC_EMB_SDA2REL:
252b5132
RH
6560 {
6561 const char *name;
046183de 6562 struct elf_link_hash_entry *sh;
252b5132 6563
55fd94b0 6564 BFD_ASSERT (sec != NULL);
252b5132 6565 name = bfd_get_section_name (abfd, sec->output_section);
0112cd26
NC
6566 if (! (CONST_STRNEQ (name, ".sdata2")
6567 || CONST_STRNEQ (name, ".sbss2")))
252b5132 6568 {
55fd94b0 6569 (*_bfd_error_handler)
d003868e 6570 (_("%B: the target (%s) of a %s relocation is "
55fd94b0 6571 "in the wrong output section (%s)"),
d003868e 6572 input_bfd,
55fd94b0
AM
6573 sym_name,
6574 howto->name,
6575 name);
c3668558 6576
252b5132 6577 bfd_set_error (bfd_error_bad_value);
b34976b6 6578 ret = FALSE;
252b5132
RH
6579 continue;
6580 }
046183de
AM
6581 sh = htab->sdata[1].sym;
6582 addend -= (sh->root.u.def.value
6583 + sh->root.u.def.section->output_offset
6584 + sh->root.u.def.section->output_section->vma);
252b5132
RH
6585 }
6586 break;
6587
70bccea4 6588 /* Relocate against either _SDA_BASE_, _SDA2_BASE_, or 0. */
7619e7c7
AM
6589 case R_PPC_EMB_SDA21:
6590 case R_PPC_EMB_RELSDA:
252b5132
RH
6591 {
6592 const char *name;
6593 int reg;
046183de 6594 struct elf_link_hash_entry *sh;
252b5132 6595
55fd94b0 6596 BFD_ASSERT (sec != NULL);
252b5132 6597 name = bfd_get_section_name (abfd, sec->output_section);
0112cd26 6598 if (((CONST_STRNEQ (name, ".sdata")
5f819128 6599 && (name[6] == 0 || name[6] == '.'))
0112cd26 6600 || (CONST_STRNEQ (name, ".sbss")
5f819128 6601 && (name[5] == 0 || name[5] == '.'))))
252b5132
RH
6602 {
6603 reg = 13;
046183de
AM
6604 sh = htab->sdata[0].sym;
6605 addend -= (sh->root.u.def.value
6606 + sh->root.u.def.section->output_offset
6607 + sh->root.u.def.section->output_section->vma);
252b5132
RH
6608 }
6609
0112cd26
NC
6610 else if (CONST_STRNEQ (name, ".sdata2")
6611 || CONST_STRNEQ (name, ".sbss2"))
252b5132
RH
6612 {
6613 reg = 2;
046183de
AM
6614 sh = htab->sdata[1].sym;
6615 addend -= (sh->root.u.def.value
6616 + sh->root.u.def.section->output_offset
6617 + sh->root.u.def.section->output_section->vma);
252b5132
RH
6618 }
6619
8da6118f
KH
6620 else if (strcmp (name, ".PPC.EMB.sdata0") == 0
6621 || strcmp (name, ".PPC.EMB.sbss0") == 0)
252b5132
RH
6622 {
6623 reg = 0;
6624 }
6625
6626 else
6627 {
55fd94b0 6628 (*_bfd_error_handler)
d003868e 6629 (_("%B: the target (%s) of a %s relocation is "
55fd94b0 6630 "in the wrong output section (%s)"),
d003868e 6631 input_bfd,
55fd94b0
AM
6632 sym_name,
6633 howto->name,
6634 name);
252b5132
RH
6635
6636 bfd_set_error (bfd_error_bad_value);
b34976b6 6637 ret = FALSE;
252b5132
RH
6638 continue;
6639 }
6640
6641 if (r_type == R_PPC_EMB_SDA21)
6642 { /* fill in register field */
7619e7c7 6643 insn = bfd_get_32 (output_bfd, contents + rel->r_offset);
252b5132 6644 insn = (insn & ~RA_REGISTER_MASK) | (reg << RA_REGISTER_SHIFT);
7619e7c7 6645 bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
252b5132
RH
6646 }
6647 }
6648 break;
6649
70bccea4 6650 /* Relocate against the beginning of the section. */
7619e7c7
AM
6651 case R_PPC_SECTOFF:
6652 case R_PPC_SECTOFF_LO:
6653 case R_PPC_SECTOFF_HI:
6654 case R_PPC_SECTOFF_HA:
55fd94b0 6655 BFD_ASSERT (sec != NULL);
252b5132 6656 addend -= sec->output_section->vma;
252b5132
RH
6657 break;
6658
70bccea4 6659 /* Negative relocations. */
7619e7c7
AM
6660 case R_PPC_EMB_NADDR32:
6661 case R_PPC_EMB_NADDR16:
6662 case R_PPC_EMB_NADDR16_LO:
6663 case R_PPC_EMB_NADDR16_HI:
6664 case R_PPC_EMB_NADDR16_HA:
8da6118f 6665 addend -= 2 * relocation;
252b5132
RH
6666 break;
6667
7619e7c7
AM
6668 case R_PPC_COPY:
6669 case R_PPC_GLOB_DAT:
6670 case R_PPC_JMP_SLOT:
6671 case R_PPC_RELATIVE:
6672 case R_PPC_PLT32:
6673 case R_PPC_PLTREL32:
6674 case R_PPC_PLT16_LO:
6675 case R_PPC_PLT16_HI:
6676 case R_PPC_PLT16_HA:
6677 case R_PPC_ADDR30:
6678 case R_PPC_EMB_RELSEC16:
6679 case R_PPC_EMB_RELST_LO:
6680 case R_PPC_EMB_RELST_HI:
6681 case R_PPC_EMB_RELST_HA:
6682 case R_PPC_EMB_BIT_FLD:
6683 (*_bfd_error_handler)
d003868e
AM
6684 (_("%B: relocation %s is not yet supported for symbol %s."),
6685 input_bfd,
7619e7c7
AM
6686 howto->name,
6687 sym_name);
252b5132
RH
6688
6689 bfd_set_error (bfd_error_invalid_operation);
b34976b6 6690 ret = FALSE;
252b5132 6691 continue;
7619e7c7 6692 }
252b5132 6693
7619e7c7
AM
6694 /* Do any further special processing. */
6695 switch (r_type)
6696 {
6697 default:
6698 break;
6699
6700 case R_PPC_ADDR16_HA:
d7128ce4 6701 case R_PPC_REL16_HA:
7619e7c7
AM
6702 case R_PPC_SECTOFF_HA:
6703 case R_PPC_TPREL16_HA:
6704 case R_PPC_DTPREL16_HA:
7619e7c7
AM
6705 case R_PPC_EMB_NADDR16_HA:
6706 case R_PPC_EMB_RELST_HA:
6707 /* It's just possible that this symbol is a weak symbol
7b609f53 6708 that's not actually defined anywhere. In that case,
7619e7c7
AM
6709 'sec' would be NULL, and we should leave the symbol
6710 alone (it will be set to zero elsewhere in the link). */
5c5f6e17
AM
6711 if (sec == NULL)
6712 break;
6713 /* Fall thru */
6714
6715 case R_PPC_PLT16_HA:
6716 case R_PPC_GOT16_HA:
6717 case R_PPC_GOT_TLSGD16_HA:
6718 case R_PPC_GOT_TLSLD16_HA:
6719 case R_PPC_GOT_TPREL16_HA:
6720 case R_PPC_GOT_DTPREL16_HA:
6721 /* Add 0x10000 if sign bit in 0:15 is set.
6722 Bits 0:15 are not used. */
6723 addend += 0x8000;
7619e7c7 6724 break;
252b5132
RH
6725 }
6726
252b5132 6727#ifdef DEBUG
55fd94b0
AM
6728 fprintf (stderr, "\ttype = %s (%d), name = %s, symbol index = %ld, "
6729 "offset = %ld, addend = %ld\n",
252b5132 6730 howto->name,
8da6118f 6731 (int) r_type,
252b5132
RH
6732 sym_name,
6733 r_symndx,
7619e7c7 6734 (long) rel->r_offset,
8da6118f 6735 (long) addend);
252b5132
RH
6736#endif
6737
7619e7c7
AM
6738 if (unresolved_reloc
6739 && !((input_section->flags & SEC_DEBUGGING) != 0
f5385ebf 6740 && h->def_dynamic))
7619e7c7
AM
6741 {
6742 (*_bfd_error_handler)
d003868e
AM
6743 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
6744 input_bfd,
6745 input_section,
7619e7c7 6746 (long) rel->r_offset,
7b609f53 6747 howto->name,
7619e7c7
AM
6748 sym_name);
6749 ret = FALSE;
6750 }
6751
252b5132
RH
6752 r = _bfd_final_link_relocate (howto,
6753 input_bfd,
6754 input_section,
6755 contents,
7619e7c7 6756 rel->r_offset,
252b5132
RH
6757 relocation,
6758 addend);
6759
7619e7c7 6760 if (r != bfd_reloc_ok)
252b5132 6761 {
7619e7c7 6762 if (r == bfd_reloc_overflow)
252b5132 6763 {
7619e7c7
AM
6764 if (warned)
6765 continue;
6766 if (h != NULL
6767 && h->root.type == bfd_link_hash_undefweak
dc1bc0c9
RH
6768 && howto->pc_relative)
6769 {
6770 /* Assume this is a call protected by other code that
6771 detect the symbol is undefined. If this is the case,
6772 we can safely ignore the overflow. If not, the
6773 program is hosed anyway, and a little warning isn't
6774 going to help. */
252b5132 6775
dc1bc0c9
RH
6776 continue;
6777 }
252b5132 6778
7619e7c7 6779 if (! (*info->callbacks->reloc_overflow) (info,
dfeffb9f 6780 (h ? &h->root : NULL),
7619e7c7
AM
6781 sym_name,
6782 howto->name,
6783 rel->r_addend,
6784 input_bfd,
6785 input_section,
6786 rel->r_offset))
6787 return FALSE;
dc1bc0c9
RH
6788 }
6789 else
6790 {
7619e7c7 6791 (*_bfd_error_handler)
d003868e
AM
6792 (_("%B(%A+0x%lx): %s reloc against `%s': error %d"),
6793 input_bfd, input_section,
7b609f53 6794 (long) rel->r_offset, howto->name, sym_name, (int) r);
7619e7c7 6795 ret = FALSE;
252b5132
RH
6796 }
6797 }
6798 }
6799
252b5132
RH
6800#ifdef DEBUG
6801 fprintf (stderr, "\n");
6802#endif
6803
6804 return ret;
6805}
252b5132 6806\f
a6aa5195
AM
6807#define PPC_LO(v) ((v) & 0xffff)
6808#define PPC_HI(v) (((v) >> 16) & 0xffff)
6809#define PPC_HA(v) PPC_HI ((v) + 0x8000)
6810
25dbc73a
AM
6811/* Finish up dynamic symbol handling. We set the contents of various
6812 dynamic sections here. */
c5fccbec 6813
b34976b6 6814static bfd_boolean
25dbc73a
AM
6815ppc_elf_finish_dynamic_symbol (bfd *output_bfd,
6816 struct bfd_link_info *info,
6817 struct elf_link_hash_entry *h,
6818 Elf_Internal_Sym *sym)
e1a9cb8e 6819{
25dbc73a 6820 struct ppc_elf_link_hash_table *htab;
a6aa5195
AM
6821 struct plt_entry *ent;
6822 bfd_boolean doneone;
e1a9cb8e 6823
25dbc73a
AM
6824#ifdef DEBUG
6825 fprintf (stderr, "ppc_elf_finish_dynamic_symbol called for %s",
6826 h->root.root.string);
6827#endif
e1a9cb8e 6828
25dbc73a
AM
6829 htab = ppc_elf_hash_table (info);
6830 BFD_ASSERT (htab->elf.dynobj != NULL);
e1a9cb8e 6831
a6aa5195
AM
6832 doneone = FALSE;
6833 for (ent = h->plt.plist; ent != NULL; ent = ent->next)
6834 if (ent->plt.offset != (bfd_vma) -1)
6835 {
6836 if (!doneone)
6837 {
6838 Elf_Internal_Rela rela;
6839 bfd_byte *loc;
6840 bfd_vma reloc_index;
e1a9cb8e 6841
4a3dc543 6842 if (htab->plt_type == PLT_NEW)
9d8504b1
PB
6843 reloc_index = ent->plt.offset / 4;
6844 else
6845 {
6846 reloc_index = ((ent->plt.offset - htab->plt_initial_entry_size)
6847 / htab->plt_slot_size);
6848 if (reloc_index > PLT_NUM_SINGLE_ENTRIES
4a3dc543 6849 && htab->plt_type == PLT_OLD)
9d8504b1
PB
6850 reloc_index -= (reloc_index - PLT_NUM_SINGLE_ENTRIES) / 2;
6851 }
6852
a6aa5195
AM
6853 /* This symbol has an entry in the procedure linkage table.
6854 Set it up. */
4a3dc543 6855 if (htab->plt_type == PLT_VXWORKS)
a6aa5195 6856 {
9d8504b1
PB
6857 bfd_vma got_offset;
6858 const bfd_vma *plt_entry;
6859
6860 /* The first three entries in .got.plt are reserved. */
6861 got_offset = (reloc_index + 3) * 4;
6862
6863 /* Use the right PLT. */
6864 plt_entry = info->shared ? ppc_elf_vxworks_pic_plt_entry
6865 : ppc_elf_vxworks_plt_entry;
6866
6867 /* Fill in the .plt on VxWorks. */
6868 if (info->shared)
6869 {
6870 bfd_vma got_offset_hi = (got_offset >> 16)
6871 + ((got_offset & 0x8000) >> 15);
6872
6873 bfd_put_32 (output_bfd,
6874 plt_entry[0] | (got_offset_hi & 0xffff),
6875 htab->plt->contents + ent->plt.offset + 0);
6876 bfd_put_32 (output_bfd,
6877 plt_entry[1] | (got_offset & 0xffff),
6878 htab->plt->contents + ent->plt.offset + 4);
6879 }
6880 else
6881 {
636ce3f5
AM
6882 bfd_vma got_loc
6883 = (got_offset
6884 + htab->elf.hgot->root.u.def.value
6885 + htab->elf.hgot->root.u.def.section->output_offset
6886 + htab->elf.hgot->root.u.def.section->output_section->vma);
9d8504b1
PB
6887 bfd_vma got_loc_hi = (got_loc >> 16)
6888 + ((got_loc & 0x8000) >> 15);
6889
6890 bfd_put_32 (output_bfd,
6891 plt_entry[0] | (got_loc_hi & 0xffff),
6892 htab->plt->contents + ent->plt.offset + 0);
6893 bfd_put_32 (output_bfd,
6894 plt_entry[1] | (got_loc & 0xffff),
6895 htab->plt->contents + ent->plt.offset + 4);
6896 }
6897
6898 bfd_put_32 (output_bfd, plt_entry[2],
6899 htab->plt->contents + ent->plt.offset + 8);
6900 bfd_put_32 (output_bfd, plt_entry[3],
6901 htab->plt->contents + ent->plt.offset + 12);
6902
6903 /* This instruction is an immediate load. The value loaded is
6904 the byte offset of the R_PPC_JMP_SLOT relocation from the
6905 start of the .rela.plt section. The value is stored in the
6906 low-order 16 bits of the load instruction. */
6907 /* NOTE: It appears that this is now an index rather than a
6908 prescaled offset. */
6909 bfd_put_32 (output_bfd,
6910 plt_entry[4] | reloc_index,
6911 htab->plt->contents + ent->plt.offset + 16);
6912 /* This instruction is a PC-relative branch whose target is
6913 the start of the PLT section. The address of this branch
6914 instruction is 20 bytes beyond the start of this PLT entry.
6915 The address is encoded in bits 6-29, inclusive. The value
6916 stored is right-shifted by two bits, permitting a 26-bit
6917 offset. */
6918 bfd_put_32 (output_bfd,
6919 (plt_entry[5]
6920 | (-(ent->plt.offset + 20) & 0x03fffffc)),
6921 htab->plt->contents + ent->plt.offset + 20);
6922 bfd_put_32 (output_bfd, plt_entry[6],
6923 htab->plt->contents + ent->plt.offset + 24);
6924 bfd_put_32 (output_bfd, plt_entry[7],
6925 htab->plt->contents + ent->plt.offset + 28);
6926
6927 /* Fill in the GOT entry corresponding to this PLT slot with
6928 the address immediately after the the "bctr" instruction
6929 in this PLT entry. */
6930 bfd_put_32 (output_bfd, (htab->plt->output_section->vma
6931 + htab->plt->output_offset
6932 + ent->plt.offset + 16),
6933 htab->sgotplt->contents + got_offset);
6934
6935 if (!info->shared)
6936 {
6937 /* Fill in a couple of entries in .rela.plt.unloaded. */
6938 loc = htab->srelplt2->contents
6939 + ((VXWORKS_PLTRESOLVE_RELOCS + reloc_index
6940 * VXWORKS_PLT_NON_JMP_SLOT_RELOCS)
6941 * sizeof (Elf32_External_Rela));
6942
6943 /* Provide the @ha relocation for the first instruction. */
6944 rela.r_offset = (htab->plt->output_section->vma
6945 + htab->plt->output_offset
6946 + ent->plt.offset + 2);
636ce3f5 6947 rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx,
9d8504b1
PB
6948 R_PPC_ADDR16_HA);
6949 rela.r_addend = got_offset;
6950 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
6951 loc += sizeof (Elf32_External_Rela);
6952
6953 /* Provide the @l relocation for the second instruction. */
6954 rela.r_offset = (htab->plt->output_section->vma
6955 + htab->plt->output_offset
6956 + ent->plt.offset + 6);
636ce3f5 6957 rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx,
9d8504b1
PB
6958 R_PPC_ADDR16_LO);
6959 rela.r_addend = got_offset;
6960 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
6961 loc += sizeof (Elf32_External_Rela);
6962
6963 /* Provide a relocation for the GOT entry corresponding to this
6964 PLT slot. Point it at the middle of the .plt entry. */
6965 rela.r_offset = (htab->sgotplt->output_section->vma
6966 + htab->sgotplt->output_offset
6967 + got_offset);
7325306f 6968 rela.r_info = ELF32_R_INFO (htab->elf.hplt->indx,
9d8504b1
PB
6969 R_PPC_ADDR32);
6970 rela.r_addend = ent->plt.offset + 16;
6971 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
6972 }
6973
6974 /* VxWorks uses non-standard semantics for R_PPC_JMP_SLOT.
6975 In particular, the offset for the relocation is not the
6976 address of the PLT entry for this function, as specified
6977 by the ABI. Instead, the offset is set to the address of
6978 the GOT slot for this function. See EABI 4.4.4.1. */
6979 rela.r_offset = (htab->sgotplt->output_section->vma
6980 + htab->sgotplt->output_offset
6981 + got_offset);
6982
a6aa5195
AM
6983 }
6984 else
6985 {
9d8504b1
PB
6986 rela.r_offset = (htab->plt->output_section->vma
6987 + htab->plt->output_offset
6988 + ent->plt.offset);
4a3dc543 6989 if (htab->plt_type == PLT_OLD)
9d8504b1
PB
6990 {
6991 /* We don't need to fill in the .plt. The ppc dynamic
6992 linker will fill it in. */
6993 }
6994 else
6995 {
6996 bfd_vma val = (htab->glink_pltresolve + ent->plt.offset
6997 + htab->glink->output_section->vma
6998 + htab->glink->output_offset);
6999 bfd_put_32 (output_bfd, val,
7000 htab->plt->contents + ent->plt.offset);
7001 }
a6aa5195 7002 }
e1a9cb8e 7003
a6aa5195 7004 /* Fill in the entry in the .rela.plt section. */
a6aa5195
AM
7005 rela.r_info = ELF32_R_INFO (h->dynindx, R_PPC_JMP_SLOT);
7006 rela.r_addend = 0;
e1a9cb8e 7007
a6aa5195
AM
7008 loc = (htab->relplt->contents
7009 + reloc_index * sizeof (Elf32_External_Rela));
7010 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
e1a9cb8e 7011
a6aa5195
AM
7012 if (!h->def_regular)
7013 {
7014 /* Mark the symbol as undefined, rather than as defined in
7015 the .plt section. Leave the value alone. */
7016 sym->st_shndx = SHN_UNDEF;
7017 /* If the symbol is weak, we do need to clear the value.
7018 Otherwise, the PLT entry would provide a definition for
7019 the symbol even if the symbol wasn't defined anywhere,
7020 and so the symbol would never be NULL. */
7021 if (!h->ref_regular_nonweak)
7022 sym->st_value = 0;
7023 }
7024 doneone = TRUE;
7025 }
e1a9cb8e 7026
4a3dc543 7027 if (htab->plt_type == PLT_NEW)
a6aa5195
AM
7028 {
7029 bfd_vma plt;
7030 unsigned char *p;
e1a9cb8e 7031
a6aa5195
AM
7032 plt = (ent->plt.offset
7033 + htab->plt->output_section->vma
7034 + htab->plt->output_offset);
7035 p = (unsigned char *) htab->glink->contents + ent->glink_offset;
e1a9cb8e 7036
a6aa5195
AM
7037 if (info->shared || info->pie)
7038 {
7039 bfd_vma got = 0;
7040
7041 if (ent->addend >= 32768)
7042 got = (ent->addend
7043 + ent->sec->output_section->vma
7044 + ent->sec->output_offset);
7045 else if (htab->elf.hgot != NULL)
7046 got = (htab->elf.hgot->root.u.def.value
7047 + htab->elf.hgot->root.u.def.section->output_section->vma
7048 + htab->elf.hgot->root.u.def.section->output_offset);
7049
7050 plt -= got;
7051
7052 if (plt + 0x8000 < 0x10000)
7053 {
7054 bfd_put_32 (output_bfd, LWZ_11_30 + PPC_LO (plt), p);
7055 p += 4;
7056 bfd_put_32 (output_bfd, MTCTR_11, p);
7057 p += 4;
7058 bfd_put_32 (output_bfd, BCTR, p);
7059 p += 4;
7060 bfd_put_32 (output_bfd, NOP, p);
7061 p += 4;
7062 }
7063 else
7064 {
7065 bfd_put_32 (output_bfd, ADDIS_11_30 + PPC_HA (plt), p);
7066 p += 4;
7067 bfd_put_32 (output_bfd, LWZ_11_11 + PPC_LO (plt), p);
7068 p += 4;
7069 bfd_put_32 (output_bfd, MTCTR_11, p);
7070 p += 4;
7071 bfd_put_32 (output_bfd, BCTR, p);
7072 p += 4;
7073 }
7074 }
7075 else
7076 {
7077 bfd_put_32 (output_bfd, LIS_11 + PPC_HA (plt), p);
7078 p += 4;
7079 bfd_put_32 (output_bfd, LWZ_11_11 + PPC_LO (plt), p);
7080 p += 4;
7081 bfd_put_32 (output_bfd, MTCTR_11, p);
7082 p += 4;
7083 bfd_put_32 (output_bfd, BCTR, p);
7084 p += 4;
28e99bb6
AM
7085
7086 /* We only need one non-PIC glink stub. */
7087 break;
a6aa5195
AM
7088 }
7089 }
7090 else
7091 break;
7092 }
e1a9cb8e 7093
25dbc73a
AM
7094 if (h->needs_copy)
7095 {
7096 asection *s;
7097 Elf_Internal_Rela rela;
7098 bfd_byte *loc;
e1a9cb8e 7099
25dbc73a 7100 /* This symbols needs a copy reloc. Set it up. */
e1a9cb8e 7101
25dbc73a
AM
7102#ifdef DEBUG
7103 fprintf (stderr, ", copy");
7104#endif
e1a9cb8e 7105
25dbc73a 7106 BFD_ASSERT (h->dynindx != -1);
86bbe32f 7107
4dc4a9a5 7108 if (ppc_elf_hash_entry (h)->has_sda_refs)
25dbc73a
AM
7109 s = htab->relsbss;
7110 else
7111 s = htab->relbss;
7112 BFD_ASSERT (s != NULL);
e1a9cb8e 7113
25dbc73a
AM
7114 rela.r_offset = (h->root.u.def.value
7115 + h->root.u.def.section->output_section->vma
7116 + h->root.u.def.section->output_offset);
7117 rela.r_info = ELF32_R_INFO (h->dynindx, R_PPC_COPY);
7118 rela.r_addend = 0;
7119 loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rela);
7120 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
7121 }
e1a9cb8e 7122
25dbc73a
AM
7123#ifdef DEBUG
7124 fprintf (stderr, "\n");
7125#endif
e1a9cb8e 7126
25dbc73a 7127 /* Mark some specially defined symbols as absolute. */
9d8504b1
PB
7128 if (strcmp (h->root.root.string, "_DYNAMIC") == 0
7129 || (!htab->is_vxworks
7130 && (h == htab->elf.hgot
7131 || strcmp (h->root.root.string,
7132 "_PROCEDURE_LINKAGE_TABLE_") == 0)))
25dbc73a 7133 sym->st_shndx = SHN_ABS;
e1a9cb8e 7134
25dbc73a
AM
7135 return TRUE;
7136}
7137\f
7138static enum elf_reloc_type_class
7139ppc_elf_reloc_type_class (const Elf_Internal_Rela *rela)
e1a9cb8e 7140{
25dbc73a
AM
7141 switch (ELF32_R_TYPE (rela->r_info))
7142 {
7143 case R_PPC_RELATIVE:
7144 return reloc_class_relative;
7145 case R_PPC_REL24:
7146 case R_PPC_ADDR24:
7147 case R_PPC_JMP_SLOT:
7148 return reloc_class_plt;
7149 case R_PPC_COPY:
7150 return reloc_class_copy;
7151 default:
7152 return reloc_class_normal;
7153 }
e1a9cb8e 7154}
25dbc73a
AM
7155\f
7156/* Finish up the dynamic sections. */
e1a9cb8e 7157
25dbc73a
AM
7158static bfd_boolean
7159ppc_elf_finish_dynamic_sections (bfd *output_bfd,
7160 struct bfd_link_info *info)
e1a9cb8e 7161{
25dbc73a 7162 asection *sdyn;
9d8504b1 7163 asection *splt;
25dbc73a 7164 struct ppc_elf_link_hash_table *htab;
1fe44d79 7165 bfd_vma got;
9d8504b1 7166 bfd * dynobj;
e1a9cb8e 7167
25dbc73a
AM
7168#ifdef DEBUG
7169 fprintf (stderr, "ppc_elf_finish_dynamic_sections called\n");
7170#endif
6b0817e5 7171
25dbc73a 7172 htab = ppc_elf_hash_table (info);
9d8504b1
PB
7173 dynobj = elf_hash_table (info)->dynobj;
7174 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
7175 if (htab->is_vxworks)
7176 splt = bfd_get_section_by_name (dynobj, ".plt");
7177 else
7178 splt = NULL;
e1a9cb8e 7179
1fe44d79
AM
7180 got = 0;
7181 if (htab->elf.hgot != NULL)
7182 got = (htab->elf.hgot->root.u.def.value
7183 + htab->elf.hgot->root.u.def.section->output_section->vma
7184 + htab->elf.hgot->root.u.def.section->output_offset);
7185
25dbc73a 7186 if (htab->elf.dynamic_sections_created)
e1a9cb8e 7187 {
25dbc73a 7188 Elf32_External_Dyn *dyncon, *dynconend;
e1a9cb8e 7189
25dbc73a 7190 BFD_ASSERT (htab->plt != NULL && sdyn != NULL);
86bbe32f 7191
25dbc73a
AM
7192 dyncon = (Elf32_External_Dyn *) sdyn->contents;
7193 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
7194 for (; dyncon < dynconend; dyncon++)
7195 {
7196 Elf_Internal_Dyn dyn;
7197 asection *s;
e1a9cb8e 7198
9d8504b1 7199 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
86bbe32f 7200
25dbc73a
AM
7201 switch (dyn.d_tag)
7202 {
7203 case DT_PLTGOT:
9d8504b1
PB
7204 if (htab->is_vxworks)
7205 s = htab->sgotplt;
7206 else
7207 s = htab->plt;
25dbc73a
AM
7208 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
7209 break;
86bbe32f 7210
25dbc73a
AM
7211 case DT_PLTRELSZ:
7212 dyn.d_un.d_val = htab->relplt->size;
7213 break;
e1a9cb8e 7214
25dbc73a
AM
7215 case DT_JMPREL:
7216 s = htab->relplt;
7217 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
7218 break;
2f89ff8d 7219
1fe44d79
AM
7220 case DT_PPC_GOT:
7221 dyn.d_un.d_ptr = got;
d7128ce4
AM
7222 break;
7223
9d8504b1
PB
7224 case DT_RELASZ:
7225 if (htab->is_vxworks)
7226 {
7227 if (htab->relplt)
7228 dyn.d_un.d_ptr -= htab->relplt->size;
7229 break;
7230 }
7231 continue;
7232
25dbc73a
AM
7233 default:
7234 continue;
7235 }
4c45e5c9 7236
25dbc73a
AM
7237 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
7238 }
7239 }
4c45e5c9 7240
25dbc73a
AM
7241 /* Add a blrl instruction at _GLOBAL_OFFSET_TABLE_-4 so that a function can
7242 easily find the address of the _GLOBAL_OFFSET_TABLE_. */
3b36f7e6 7243 if (htab->got != NULL)
25dbc73a 7244 {
3b36f7e6
AM
7245 unsigned char *p = htab->got->contents;
7246 bfd_vma val;
2f89ff8d 7247
636ce3f5 7248 p += htab->elf.hgot->root.u.def.value;
4a3dc543 7249 if (htab->plt_type == PLT_OLD)
d7128ce4 7250 bfd_put_32 (output_bfd, 0x4e800021 /* blrl */, p - 4);
3b36f7e6
AM
7251
7252 val = 0;
7253 if (sdyn != NULL)
7254 val = sdyn->output_section->vma + sdyn->output_offset;
7255 bfd_put_32 (output_bfd, val, p);
25dbc73a
AM
7256
7257 elf_section_data (htab->got->output_section)->this_hdr.sh_entsize = 4;
7258 }
7259
9d8504b1
PB
7260 /* Fill in the first entry in the VxWorks procedure linkage table. */
7261 if (splt && splt->size > 0)
7262 {
7263 /* Use the right PLT. */
7264 static const bfd_vma *plt_entry = NULL;
7265 plt_entry = info->shared ?
7266 ppc_elf_vxworks_pic_plt0_entry : ppc_elf_vxworks_plt0_entry;
7267
7268 if (!info->shared)
7269 {
7270 bfd_vma got_value =
636ce3f5
AM
7271 (htab->elf.hgot->root.u.def.section->output_section->vma
7272 + htab->elf.hgot->root.u.def.section->output_offset
7273 + htab->elf.hgot->root.u.def.value);
9d8504b1
PB
7274 bfd_vma got_hi = (got_value >> 16) + ((got_value & 0x8000) >> 15);
7275
7276 bfd_put_32 (output_bfd, plt_entry[0] | (got_hi & 0xffff),
7277 splt->contents + 0);
7278 bfd_put_32 (output_bfd, plt_entry[1] | (got_value & 0xffff),
7279 splt->contents + 4);
7280 }
7281 else
7282 {
7283 bfd_put_32 (output_bfd, plt_entry[0], splt->contents + 0);
7284 bfd_put_32 (output_bfd, plt_entry[1], splt->contents + 4);
7285 }
7286 bfd_put_32 (output_bfd, plt_entry[2], splt->contents + 8);
7287 bfd_put_32 (output_bfd, plt_entry[3], splt->contents + 12);
7288 bfd_put_32 (output_bfd, plt_entry[4], splt->contents + 16);
7289 bfd_put_32 (output_bfd, plt_entry[5], splt->contents + 20);
7290 bfd_put_32 (output_bfd, plt_entry[6], splt->contents + 24);
7291 bfd_put_32 (output_bfd, plt_entry[7], splt->contents + 28);
7292
7293 if (! info->shared)
7294 {
7295 Elf_Internal_Rela rela;
7296 bfd_byte *loc;
7297
7298 loc = htab->srelplt2->contents;
7299
7300 /* Output the @ha relocation for the first instruction. */
7301 rela.r_offset = (htab->plt->output_section->vma
7302 + htab->plt->output_offset
7303 + 2);
636ce3f5 7304 rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_HA);
9d8504b1
PB
7305 rela.r_addend = 0;
7306 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
7307 loc += sizeof (Elf32_External_Rela);
7308
7309 /* Output the @l relocation for the second instruction. */
7310 rela.r_offset = (htab->plt->output_section->vma
7311 + htab->plt->output_offset
7312 + 6);
636ce3f5 7313 rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_LO);
9d8504b1
PB
7314 rela.r_addend = 0;
7315 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
7316 loc += sizeof (Elf32_External_Rela);
7317
7318 /* Fix up the remaining relocations. They may have the wrong
7319 symbol index for _G_O_T_ or _P_L_T_ depending on the order
7320 in which symbols were output. */
7321 while (loc < htab->srelplt2->contents + htab->srelplt2->size)
7322 {
7323 Elf_Internal_Rela rel;
7324
7325 bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
636ce3f5 7326 rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_HA);
9d8504b1
PB
7327 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
7328 loc += sizeof (Elf32_External_Rela);
7329
7330 bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
636ce3f5 7331 rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_LO);
9d8504b1
PB
7332 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
7333 loc += sizeof (Elf32_External_Rela);
7334
7335 bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
7325306f 7336 rel.r_info = ELF32_R_INFO (htab->elf.hplt->indx, R_PPC_ADDR32);
9d8504b1
PB
7337 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
7338 loc += sizeof (Elf32_External_Rela);
7339 }
7340 }
7341 }
7342
d7128ce4
AM
7343 if (htab->glink != NULL && htab->glink->contents != NULL)
7344 {
7345 unsigned char *p;
7346 unsigned char *endp;
a6aa5195 7347 bfd_vma res0;
d7128ce4 7348 unsigned int i;
a6aa5195
AM
7349
7350 /*
7351 * PIC glink code is the following:
7352 *
7353 * # ith PLT code stub.
7354 * addis 11,30,(plt+(i-1)*4-got)@ha
7355 * lwz 11,(plt+(i-1)*4-got)@l(11)
7356 * mtctr 11
7357 * bctr
7358 *
7359 * # A table of branches, one for each plt entry.
7360 * # The idea is that the plt call stub loads ctr (and r11) with these
7361 * # addresses, so (r11 - res_0) gives the plt index * 4.
7362 * res_0: b PLTresolve
7363 * res_1: b PLTresolve
7364 * .
7365 * # Some number of entries towards the end can be nops
7366 * res_n_m3: nop
7367 * res_n_m2: nop
7368 * res_n_m1:
7369 *
7370 * PLTresolve:
7371 * addis 11,11,(1f-res_0)@ha
7372 * mflr 0
7373 * bcl 20,31,1f
7374 * 1: addi 11,11,(1b-res_0)@l
7375 * mflr 12
7376 * mtlr 0
7377 * sub 11,11,12 # r11 = index * 4
7378 * addis 12,12,(got+4-1b)@ha
7379 * lwz 0,(got+4-1b)@l(12) # got[1] address of dl_runtime_resolve
7380 * lwz 12,(got+8-1b)@l(12) # got[2] contains the map address
7381 * mtctr 0
7382 * add 0,11,11
7383 * add 11,0,11 # r11 = index * 12 = reloc offset.
7384 * bctr
7385 */
7386 static const unsigned int pic_plt_resolve[] =
7387 {
7388 ADDIS_11_11,
7389 MFLR_0,
7390 BCL_20_31,
7391 ADDI_11_11,
7392 MFLR_12,
7393 MTLR_0,
7394 SUB_11_11_12,
7395 ADDIS_12_12,
7396 LWZ_0_12,
7397 LWZ_12_12,
7398 MTCTR_0,
7399 ADD_0_11_11,
7400 ADD_11_0_11,
7401 BCTR,
7402 NOP,
7403 NOP
7404 };
7405
d7128ce4
AM
7406 static const unsigned int plt_resolve[] =
7407 {
a6aa5195
AM
7408 LIS_12,
7409 ADDIS_11_11,
7410 LWZ_0_12,
7411 ADDI_11_11,
d7128ce4 7412 MTCTR_0,
7e8aeb9a 7413 ADD_0_11_11,
a6aa5195 7414 LWZ_12_12,
7e8aeb9a 7415 ADD_11_0_11,
d7128ce4
AM
7416 BCTR,
7417 NOP,
7418 NOP,
a6aa5195
AM
7419 NOP,
7420 NOP,
7421 NOP,
7422 NOP,
d7128ce4
AM
7423 NOP
7424 };
7425
a6aa5195
AM
7426 if (ARRAY_SIZE (pic_plt_resolve) != GLINK_PLTRESOLVE / 4)
7427 abort ();
7428 if (ARRAY_SIZE (plt_resolve) != GLINK_PLTRESOLVE / 4)
7e8aeb9a
AM
7429 abort ();
7430
a6aa5195 7431 /* Build the branch table, one for each plt entry (less one),
86b9da88 7432 and perhaps some padding. */
a6aa5195
AM
7433 p = htab->glink->contents;
7434 p += htab->glink_pltresolve;
86b9da88
AM
7435 endp = htab->glink->contents;
7436 endp += htab->glink->size - GLINK_PLTRESOLVE;
7437 while (p < endp - 8 * 4)
7438 {
7439 bfd_put_32 (output_bfd, B + endp - p, p);
7440 p += 4;
7441 }
7442 while (p < endp)
7443 {
7444 bfd_put_32 (output_bfd, NOP, p);
7445 p += 4;
7446 }
7447
7e8aeb9a 7448 res0 = (htab->glink_pltresolve
86b9da88
AM
7449 + htab->glink->output_section->vma
7450 + htab->glink->output_offset);
7451
7452 /* Last comes the PLTresolve stub. */
7e8aeb9a
AM
7453 if (info->shared || info->pie)
7454 {
a6aa5195 7455 bfd_vma bcl;
d7128ce4 7456
a6aa5195 7457 for (i = 0; i < ARRAY_SIZE (pic_plt_resolve); i++)
7e8aeb9a 7458 {
a6aa5195 7459 bfd_put_32 (output_bfd, pic_plt_resolve[i], p);
7e8aeb9a
AM
7460 p += 4;
7461 }
a6aa5195
AM
7462 p -= 4 * ARRAY_SIZE (pic_plt_resolve);
7463
7464 bcl = (htab->glink->size - GLINK_PLTRESOLVE + 3*4
7465 + htab->glink->output_section->vma
7466 + htab->glink->output_offset);
7467
7468 bfd_put_32 (output_bfd,
7469 ADDIS_11_11 + PPC_HA (bcl - res0), p + 0*4);
7470 bfd_put_32 (output_bfd,
7471 ADDI_11_11 + PPC_LO (bcl - res0), p + 3*4);
7472 bfd_put_32 (output_bfd,
7473 ADDIS_12_12 + PPC_HA (got + 4 - bcl), p + 7*4);
7474 if (PPC_HA (got + 4 - bcl) == PPC_HA (got + 8 - bcl))
7475 {
7476 bfd_put_32 (output_bfd,
7477 LWZ_0_12 + PPC_LO (got + 4 - bcl), p + 8*4);
7478 bfd_put_32 (output_bfd,
7479 LWZ_12_12 + PPC_LO (got + 8 - bcl), p + 9*4);
7480 }
7481 else
7482 {
7483 bfd_put_32 (output_bfd,
7484 LWZU_0_12 + PPC_LO (got + 4 - bcl), p + 8*4);
7485 bfd_put_32 (output_bfd,
7486 LWZ_12_12 + 4, p + 9*4);
7487 }
7e8aeb9a
AM
7488 }
7489 else
d7128ce4 7490 {
a6aa5195 7491 for (i = 0; i < ARRAY_SIZE (plt_resolve); i++)
7e8aeb9a
AM
7492 {
7493 bfd_put_32 (output_bfd, plt_resolve[i], p);
7494 p += 4;
7495 }
a6aa5195
AM
7496 p -= 4 * ARRAY_SIZE (plt_resolve);
7497
7498 bfd_put_32 (output_bfd,
7499 LIS_12 + PPC_HA (got + 4), p + 0*4);
7500 bfd_put_32 (output_bfd,
7501 ADDIS_11_11 + PPC_HA (-res0), p + 1*4);
7502 bfd_put_32 (output_bfd,
7503 ADDI_11_11 + PPC_LO (-res0), p + 3*4);
7504 if (PPC_HA (got + 4) == PPC_HA (got + 8))
7505 {
7506 bfd_put_32 (output_bfd,
7507 LWZ_0_12 + PPC_LO (got + 4), p + 2*4);
7508 bfd_put_32 (output_bfd,
7509 LWZ_12_12 + PPC_LO (got + 8), p + 6*4);
7510 }
7511 else
7512 {
7513 bfd_put_32 (output_bfd,
7514 LWZU_0_12 + PPC_LO (got + 4), p + 2*4);
7515 bfd_put_32 (output_bfd,
7516 LWZ_12_12 + 4, p + 6*4);
7517 }
d7128ce4 7518 }
d7128ce4
AM
7519 }
7520
25dbc73a
AM
7521 return TRUE;
7522}
e1a9cb8e 7523\f
252b5132
RH
7524#define TARGET_LITTLE_SYM bfd_elf32_powerpcle_vec
7525#define TARGET_LITTLE_NAME "elf32-powerpcle"
7526#define TARGET_BIG_SYM bfd_elf32_powerpc_vec
7527#define TARGET_BIG_NAME "elf32-powerpc"
7528#define ELF_ARCH bfd_arch_powerpc
7529#define ELF_MACHINE_CODE EM_PPC
d0facd1b
NC
7530#ifdef __QNXTARGET__
7531#define ELF_MAXPAGESIZE 0x1000
7532#else
252b5132 7533#define ELF_MAXPAGESIZE 0x10000
d0facd1b 7534#endif
b1342370 7535#define ELF_MINPAGESIZE 0x1000
24718e3b 7536#define ELF_COMMONPAGESIZE 0x1000
252b5132
RH
7537#define elf_info_to_howto ppc_elf_info_to_howto
7538
7539#ifdef EM_CYGNUS_POWERPC
7540#define ELF_MACHINE_ALT1 EM_CYGNUS_POWERPC
7541#endif
7542
7543#ifdef EM_PPC_OLD
7544#define ELF_MACHINE_ALT2 EM_PPC_OLD
7545#endif
7546
7547#define elf_backend_plt_not_loaded 1
252b5132 7548#define elf_backend_can_gc_sections 1
51b64d56 7549#define elf_backend_can_refcount 1
b491616a 7550#define elf_backend_rela_normal 1
252b5132 7551
43c40ab2 7552#define bfd_elf32_mkobject ppc_elf_mkobject
252b5132 7553#define bfd_elf32_bfd_merge_private_bfd_data ppc_elf_merge_private_bfd_data
70bccea4 7554#define bfd_elf32_bfd_relax_section ppc_elf_relax_section
252b5132 7555#define bfd_elf32_bfd_reloc_type_lookup ppc_elf_reloc_type_lookup
157090f7 7556#define bfd_elf32_bfd_reloc_name_lookup ppc_elf_reloc_name_lookup
252b5132 7557#define bfd_elf32_bfd_set_private_flags ppc_elf_set_private_flags
70bccea4 7558#define bfd_elf32_bfd_link_hash_table_create ppc_elf_link_hash_table_create
252b5132 7559
feee612b 7560#define elf_backend_object_p ppc_elf_object_p
252b5132
RH
7561#define elf_backend_gc_mark_hook ppc_elf_gc_mark_hook
7562#define elf_backend_gc_sweep_hook ppc_elf_gc_sweep_hook
7563#define elf_backend_section_from_shdr ppc_elf_section_from_shdr
7564#define elf_backend_relocate_section ppc_elf_relocate_section
7565#define elf_backend_create_dynamic_sections ppc_elf_create_dynamic_sections
7566#define elf_backend_check_relocs ppc_elf_check_relocs
7fce784e 7567#define elf_backend_copy_indirect_symbol ppc_elf_copy_indirect_symbol
252b5132
RH
7568#define elf_backend_adjust_dynamic_symbol ppc_elf_adjust_dynamic_symbol
7569#define elf_backend_add_symbol_hook ppc_elf_add_symbol_hook
7570#define elf_backend_size_dynamic_sections ppc_elf_size_dynamic_sections
7571#define elf_backend_finish_dynamic_symbol ppc_elf_finish_dynamic_symbol
7572#define elf_backend_finish_dynamic_sections ppc_elf_finish_dynamic_sections
7573#define elf_backend_fake_sections ppc_elf_fake_sections
7574#define elf_backend_additional_program_headers ppc_elf_additional_program_headers
c5fccbec
DJ
7575#define elf_backend_grok_prstatus ppc_elf_grok_prstatus
7576#define elf_backend_grok_psinfo ppc_elf_grok_psinfo
183e98be 7577#define elf_backend_write_core_note ppc_elf_write_core_note
29c2fb7c 7578#define elf_backend_reloc_type_class ppc_elf_reloc_type_class
70bccea4
AM
7579#define elf_backend_begin_write_processing ppc_elf_begin_write_processing
7580#define elf_backend_final_write_processing ppc_elf_final_write_processing
7581#define elf_backend_write_section ppc_elf_write_section
551b43fd 7582#define elf_backend_get_sec_type_attr ppc_elf_get_sec_type_attr
4c45e5c9 7583#define elf_backend_plt_sym_val ppc_elf_plt_sym_val
8a696751 7584#define elf_backend_action_discarded ppc_elf_action_discarded
74541ad4 7585#define elf_backend_init_index_section _bfd_elf_init_1_index_section
252b5132
RH
7586
7587#include "elf32-target.h"
9d8504b1
PB
7588
7589/* VxWorks Target */
7590
7591#undef TARGET_LITTLE_SYM
7592#undef TARGET_LITTLE_NAME
7593
7594#undef TARGET_BIG_SYM
7595#define TARGET_BIG_SYM bfd_elf32_powerpc_vxworks_vec
7596#undef TARGET_BIG_NAME
7597#define TARGET_BIG_NAME "elf32-powerpc-vxworks"
7598
d5e3d971
PB
7599/* VxWorks uses the elf default section flags for .plt. */
7600static const struct bfd_elf_special_section *
7601ppc_elf_vxworks_get_sec_type_attr (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
9d8504b1 7602{
d5e3d971
PB
7603 if (sec->name == NULL)
7604 return NULL;
7605
7606 if (strcmp (sec->name, ".plt") == 0)
7607 return _bfd_elf_get_sec_type_attr (abfd, sec);
7608
7609 return ppc_elf_get_sec_type_attr (abfd, sec);
7610}
9d8504b1
PB
7611
7612/* Like ppc_elf_link_hash_table_create, but overrides
7613 appropriately for VxWorks. */
7614static struct bfd_link_hash_table *
7615ppc_elf_vxworks_link_hash_table_create (bfd *abfd)
7616{
7617 struct bfd_link_hash_table *ret;
7618
7619 ret = ppc_elf_link_hash_table_create (abfd);
7620 if (ret)
7621 {
7622 struct ppc_elf_link_hash_table *htab
7623 = (struct ppc_elf_link_hash_table *)ret;
7624 htab->is_vxworks = 1;
4a3dc543 7625 htab->plt_type = PLT_VXWORKS;
9d8504b1
PB
7626 htab->plt_entry_size = VXWORKS_PLT_ENTRY_SIZE;
7627 htab->plt_slot_size = VXWORKS_PLT_ENTRY_SIZE;
7628 htab->plt_initial_entry_size = VXWORKS_PLT_INITIAL_ENTRY_SIZE;
7629 }
7630 return ret;
7631}
7632
7633/* Tweak magic VxWorks symbols as they are loaded. */
7634static bfd_boolean
7635ppc_elf_vxworks_add_symbol_hook (bfd *abfd,
7636 struct bfd_link_info *info,
7637 Elf_Internal_Sym *sym,
7638 const char **namep ATTRIBUTE_UNUSED,
7639 flagword *flagsp ATTRIBUTE_UNUSED,
7640 asection **secp,
7641 bfd_vma *valp)
7642{
7643 if (!elf_vxworks_add_symbol_hook(abfd, info, sym,namep, flagsp, secp,
7644 valp))
7645 return FALSE;
7646
7647 return ppc_elf_add_symbol_hook(abfd, info, sym,namep, flagsp, secp, valp);
7648}
7649
9d8504b1
PB
7650static void
7651ppc_elf_vxworks_final_write_processing (bfd *abfd, bfd_boolean linker)
7652{
7653 ppc_elf_final_write_processing(abfd, linker);
7654 elf_vxworks_final_write_processing(abfd, linker);
7655}
7656
7657/* On VxWorks, we emit relocations against _PROCEDURE_LINKAGE_TABLE_, so
7658 define it. */
7659#undef elf_backend_want_plt_sym
7660#define elf_backend_want_plt_sym 1
7661#undef elf_backend_want_got_plt
7662#define elf_backend_want_got_plt 1
7663#undef elf_backend_got_symbol_offset
7664#define elf_backend_got_symbol_offset 0
7665#undef elf_backend_plt_not_loaded
7666#define elf_backend_plt_not_loaded 0
7667#undef elf_backend_plt_readonly
7668#define elf_backend_plt_readonly 1
7669#undef elf_backend_got_header_size
7670#define elf_backend_got_header_size 12
7671
7672#undef bfd_elf32_bfd_link_hash_table_create
7673#define bfd_elf32_bfd_link_hash_table_create \
7674 ppc_elf_vxworks_link_hash_table_create
9d8504b1
PB
7675#undef elf_backend_add_symbol_hook
7676#define elf_backend_add_symbol_hook \
7677 ppc_elf_vxworks_add_symbol_hook
7678#undef elf_backend_link_output_symbol_hook
7679#define elf_backend_link_output_symbol_hook \
9c72ff84 7680 elf_vxworks_link_output_symbol_hook
9d8504b1
PB
7681#undef elf_backend_final_write_processing
7682#define elf_backend_final_write_processing \
7683 ppc_elf_vxworks_final_write_processing
d5e3d971
PB
7684#undef elf_backend_get_sec_type_attr
7685#define elf_backend_get_sec_type_attr \
7686 ppc_elf_vxworks_get_sec_type_attr
9d8504b1
PB
7687#undef elf_backend_emit_relocs
7688#define elf_backend_emit_relocs \
7689 elf_vxworks_emit_relocs
7690
7691#undef elf32_bed
7692#define elf32_bed ppc_elf_vxworks_bed
7693
7694#include "elf32-target.h"
This page took 0.889256 seconds and 4 git commands to generate.