1 /* Or1k-specific support for 32-bit ELF.
2 Copyright (C) 2001-2017 Free Software Foundation, Inc.
3 Contributed for OR32 by Johan Rydberg, jrydberg@opencores.org
5 PIC parts added by Stefan Kristiansson, stefan.kristiansson@saunalahti.fi,
6 largely based on elf32-m32r.c and elf32-microblaze.c.
8 This file is part of BFD, the Binary File Descriptor library.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, see <http://www.gnu.org/licenses/>. */
28 #include "libiberty.h"
30 #define PLT_ENTRY_SIZE 20
32 #define PLT0_ENTRY_WORD0 0x19800000 /* l.movhi r12, 0 <- hi(.got+4) */
33 #define PLT0_ENTRY_WORD1 0xa98c0000 /* l.ori r12, r12, 0 <- lo(.got+4) */
34 #define PLT0_ENTRY_WORD2 0x85ec0004 /* l.lwz r15, 4(r12) <- *(.got+8)*/
35 #define PLT0_ENTRY_WORD3 0x44007800 /* l.jr r15 */
36 #define PLT0_ENTRY_WORD4 0x858c0000 /* l.lwz r12, 0(r12) */
38 #define PLT0_PIC_ENTRY_WORD0 0x85900004 /* l.lwz r12, 4(r16) */
39 #define PLT0_PIC_ENTRY_WORD1 0x85f00008 /* l.lwz r15, 8(r16) */
40 #define PLT0_PIC_ENTRY_WORD2 0x44007800 /* l.jr r15 */
41 #define PLT0_PIC_ENTRY_WORD3 0x15000000 /* l.nop */
42 #define PLT0_PIC_ENTRY_WORD4 0x15000000 /* l.nop */
44 #define PLT_ENTRY_WORD0 0x19800000 /* l.movhi r12, 0 <- hi(got idx addr) */
45 #define PLT_ENTRY_WORD1 0xa98c0000 /* l.ori r12, r12, 0 <- lo(got idx addr) */
46 #define PLT_ENTRY_WORD2 0x858c0000 /* l.lwz r12, 0(r12) */
47 #define PLT_ENTRY_WORD3 0x44006000 /* l.jr r12 */
48 #define PLT_ENTRY_WORD4 0xa9600000 /* l.ori r11, r0, 0 <- reloc offset */
50 #define PLT_PIC_ENTRY_WORD0 0x85900000 /* l.lwz r12, 0(r16) <- index in got */
51 #define PLT_PIC_ENTRY_WORD1 0xa9600000 /* l.ori r11, r0, 0 <- reloc offset */
52 #define PLT_PIC_ENTRY_WORD2 0x44006000 /* l.jr r12 */
53 #define PLT_PIC_ENTRY_WORD3 0x15000000 /* l.nop */
54 #define PLT_PIC_ENTRY_WORD4 0x15000000 /* l.nop */
56 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
58 static reloc_howto_type or1k_elf_howto_table[] =
60 /* This reloc does nothing. */
61 HOWTO (R_OR1K_NONE, /* type */
63 3, /* size (0 = byte, 1 = short, 2 = long) */
65 FALSE, /* pc_relative */
67 complain_overflow_dont, /* complain_on_overflow */
68 bfd_elf_generic_reloc, /* special_function */
69 "R_OR1K_NONE", /* name */
70 FALSE, /* partial_inplace */
73 FALSE), /* pcrel_offset */
77 2, /* size (0 = byte, 1 = short, 2 = long) */
79 FALSE, /* pc_relative */
81 complain_overflow_unsigned, /* complain_on_overflow */
82 bfd_elf_generic_reloc, /* special_function */
83 "R_OR1K_32", /* name */
84 FALSE, /* partial_inplace */
86 0xffffffff, /* dst_mask */
87 FALSE), /* pcrel_offset */
91 1, /* size (0 = byte, 1 = short, 2 = long) */
93 FALSE, /* pc_relative */
95 complain_overflow_unsigned, /* complain_on_overflow */
96 bfd_elf_generic_reloc, /* special_function */
97 "R_OR1K_16", /* name */
98 FALSE, /* partial_inplace */
100 0xffff, /* dst_mask */
101 FALSE), /* pcrel_offset */
105 0, /* size (0 = byte, 1 = short, 2 = long) */
107 FALSE, /* pc_relative */
109 complain_overflow_unsigned, /* complain_on_overflow */
110 bfd_elf_generic_reloc, /* special_function */
111 "R_OR1K_8", /* name */
112 FALSE, /* partial_inplace */
115 FALSE), /* pcrel_offset */
117 HOWTO (R_OR1K_LO_16_IN_INSN, /* type */
119 2, /* size (0 = byte, 1 = short, 2 = long) */
121 FALSE, /* pc_relative */
123 complain_overflow_dont, /* complain_on_overflow */
124 bfd_elf_generic_reloc, /* special_function */
125 "R_OR1K_LO_16_IN_INSN", /* name */
126 FALSE, /* partial_inplace */
128 0x0000ffff, /* dst_mask */
129 FALSE), /* pcrel_offset */
131 HOWTO (R_OR1K_HI_16_IN_INSN, /* type */
133 2, /* size (0 = byte, 1 = short, 2 = long) */
135 FALSE, /* pc_relative */
137 complain_overflow_dont, /* complain_on_overflow */
138 bfd_elf_generic_reloc, /* special_function */
139 "R_OR1K_HI_16_IN_INSN", /* name */
140 FALSE, /* partial_inplace */
142 0x0000ffff, /* dst_mask */
143 FALSE), /* pcrel_offset */
145 /* A PC relative 26 bit relocation, right shifted by 2. */
146 HOWTO (R_OR1K_INSN_REL_26, /* type */
148 2, /* size (0 = byte, 1 = short, 2 = long) */
150 TRUE, /* pc_relative */
152 complain_overflow_signed, /* complain_on_overflow */
153 bfd_elf_generic_reloc, /* special_function */
154 "R_OR1K_INSN_REL_26", /* name */
155 FALSE, /* partial_inplace */
157 0x03ffffff, /* dst_mask */
158 TRUE), /* pcrel_offset */
160 /* GNU extension to record C++ vtable hierarchy. */
161 HOWTO (R_OR1K_GNU_VTINHERIT, /* type */
163 2, /* size (0 = byte, 1 = short, 2 = long) */
165 FALSE, /* pc_relative */
167 complain_overflow_dont, /* complain_on_overflow */
168 NULL, /* special_function */
169 "R_OR1K_GNU_VTINHERIT", /* name */
170 FALSE, /* partial_inplace */
173 FALSE), /* pcrel_offset */
175 /* GNU extension to record C++ vtable member usage. */
176 HOWTO (R_OR1K_GNU_VTENTRY, /* type */
178 2, /* size (0 = byte, 1 = short, 2 = long) */
180 FALSE, /* pc_relative */
182 complain_overflow_dont, /* complain_on_overflow */
183 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
184 "R_OR1K_GNU_VTENTRY", /* name */
185 FALSE, /* partial_inplace */
188 FALSE), /* pcrel_offset */
190 HOWTO (R_OR1K_32_PCREL,
192 2, /* size (0 = byte, 1 = short, 2 = long) */
194 TRUE, /* pc_relative */
196 complain_overflow_signed, /* complain_on_overflow */
197 bfd_elf_generic_reloc, /* special_function */
198 "R_OR1K_32_PCREL", /* name */
199 FALSE, /* partial_inplace */
201 0xffffffff, /* dst_mask */
202 TRUE), /* pcrel_offset */
204 HOWTO (R_OR1K_16_PCREL,
206 1, /* size (0 = byte, 1 = short, 2 = long) */
208 TRUE, /* pc_relative */
210 complain_overflow_signed, /* complain_on_overflow */
211 bfd_elf_generic_reloc, /* special_function */
212 "R_OR1K_16_PCREL", /* name */
213 FALSE, /* partial_inplace */
215 0xffff, /* dst_mask */
216 TRUE), /* pcrel_offset */
218 HOWTO (R_OR1K_8_PCREL,
220 0, /* size (0 = byte, 1 = short, 2 = long) */
222 TRUE, /* pc_relative */
224 complain_overflow_signed, /* complain_on_overflow */
225 bfd_elf_generic_reloc, /* special_function */
226 "R_OR1K_8_PCREL", /* name */
227 FALSE, /* partial_inplace */
230 TRUE), /* pcrel_offset */
232 HOWTO (R_OR1K_GOTPC_HI16, /* Type. */
233 16, /* Rightshift. */
234 2, /* Size (0 = byte, 1 = short, 2 = long). */
236 TRUE, /* PC_relative. */
238 complain_overflow_dont, /* Complain on overflow. */
239 bfd_elf_generic_reloc, /* Special Function. */
240 "R_OR1K_GOTPC_HI16", /* Name. */
241 FALSE, /* Partial Inplace. */
242 0, /* Source Mask. */
243 0xffff, /* Dest Mask. */
244 TRUE), /* PC relative offset? */
246 HOWTO (R_OR1K_GOTPC_LO16, /* Type. */
248 2, /* Size (0 = byte, 1 = short, 2 = long). */
250 TRUE, /* PC_relative. */
252 complain_overflow_dont, /* Complain on overflow. */
253 bfd_elf_generic_reloc, /* Special Function. */
254 "R_OR1K_GOTPC_LO16", /* Name. */
255 FALSE, /* Partial Inplace. */
256 0, /* Source Mask. */
257 0xffff, /* Dest Mask. */
258 TRUE), /* PC relative offset? */
260 HOWTO (R_OR1K_GOT16, /* type */
262 2, /* size (0 = byte, 1 = short, 2 = long) */
264 FALSE, /* pc_relative */
266 complain_overflow_signed, /* complain_on_overflow */
267 bfd_elf_generic_reloc, /* special_function */
268 "R_OR1K_GOT16", /* name */
269 FALSE, /* partial_inplace */
271 0xffff, /* dst_mask */
272 FALSE), /* pcrel_offset */
274 /* A 26 bit PLT relocation. Shifted by 2. */
275 HOWTO (R_OR1K_PLT26, /* Type. */
277 2, /* Size (0 = byte, 1 = short, 2 = long). */
279 TRUE, /* PC_relative. */
281 complain_overflow_dont, /* Complain on overflow. */
282 bfd_elf_generic_reloc,/* Special Function. */
283 "R_OR1K_PLT26", /* Name. */
284 FALSE, /* Partial Inplace. */
285 0, /* Source Mask. */
286 0x03ffffff, /* Dest Mask. */
287 TRUE), /* PC relative offset? */
289 HOWTO (R_OR1K_GOTOFF_HI16, /* type */
291 2, /* size (0 = byte, 1 = short, 2 = long) */
293 FALSE, /* pc_relative */
295 complain_overflow_dont, /* complain_on_overflow */
296 bfd_elf_generic_reloc, /* special_function */
297 "R_OR1K_GOTOFF_HI16", /* name */
298 FALSE, /* partial_inplace */
300 0xffff, /* dst_mask */
301 FALSE), /* pcrel_offset */
303 HOWTO (R_OR1K_GOTOFF_LO16, /* type */
305 2, /* size (0 = byte, 1 = short, 2 = long) */
307 FALSE, /* pc_relative */
309 complain_overflow_dont, /* complain_on_overflow */
310 bfd_elf_generic_reloc, /* special_function */
311 "R_OR1K_GOTOFF_LO16", /* name */
312 FALSE, /* partial_inplace */
314 0xffff, /* dst_mask */
315 FALSE), /* pcrel_offset */
317 HOWTO (R_OR1K_COPY, /* type */
319 2, /* size (0 = byte, 1 = short, 2 = long) */
321 FALSE, /* pc_relative */
323 complain_overflow_bitfield, /* complain_on_overflow */
324 bfd_elf_generic_reloc, /* special_function */
325 "R_OR1K_COPY", /* name */
326 FALSE, /* partial_inplace */
327 0xffffffff, /* src_mask */
328 0xffffffff, /* dst_mask */
329 FALSE), /* pcrel_offset */
331 HOWTO (R_OR1K_GLOB_DAT, /* type */
333 2, /* size (0 = byte, 1 = short, 2 = long) */
335 FALSE, /* pc_relative */
337 complain_overflow_bitfield, /* complain_on_overflow */
338 bfd_elf_generic_reloc, /* special_function */
339 "R_OR1K_GLOB_DAT", /* name */
340 FALSE, /* partial_inplace */
341 0xffffffff, /* src_mask */
342 0xffffffff, /* dst_mask */
343 FALSE), /* pcrel_offset */
345 HOWTO (R_OR1K_JMP_SLOT, /* type */
347 2, /* size (0 = byte, 1 = short, 2 = long) */
349 FALSE, /* pc_relative */
351 complain_overflow_bitfield, /* complain_on_overflow */
352 bfd_elf_generic_reloc, /* special_function */
353 "R_OR1K_JMP_SLOT", /* name */
354 FALSE, /* partial_inplace */
355 0xffffffff, /* src_mask */
356 0xffffffff, /* dst_mask */
357 FALSE), /* pcrel_offset */
359 HOWTO (R_OR1K_RELATIVE, /* type */
361 2, /* size (0 = byte, 1 = short, 2 = long) */
363 FALSE, /* pc_relative */
365 complain_overflow_bitfield, /* complain_on_overflow */
366 bfd_elf_generic_reloc, /* special_function */
367 "R_OR1K_RELATIVE", /* name */
368 FALSE, /* partial_inplace */
369 0xffffffff, /* src_mask */
370 0xffffffff, /* dst_mask */
371 FALSE), /* pcrel_offset */
373 HOWTO (R_OR1K_TLS_GD_HI16, /* type */
375 2, /* size (0 = byte, 1 = short, 2 = long) */
377 FALSE, /* pc_relative */
379 complain_overflow_dont, /* complain_on_overflow */
380 bfd_elf_generic_reloc, /* special_function */
381 "R_OR1K_TLS_GD_HI16", /* name */
382 FALSE, /* partial_inplace */
384 0xffff, /* dst_mask */
385 FALSE), /* pcrel_offset */
387 HOWTO (R_OR1K_TLS_GD_LO16, /* type */
389 2, /* size (0 = byte, 1 = short, 2 = long) */
391 FALSE, /* pc_relative */
393 complain_overflow_dont, /* complain_on_overflow */
394 bfd_elf_generic_reloc, /* special_function */
395 "R_OR1K_TLS_GD_LO16", /* name */
396 FALSE, /* partial_inplace */
398 0xffff, /* dst_mask */
399 FALSE), /* pcrel_offset */
401 HOWTO (R_OR1K_TLS_LDM_HI16, /* type */
403 2, /* size (0 = byte, 1 = short, 2 = long) */
405 FALSE, /* pc_relative */
407 complain_overflow_dont, /* complain_on_overflow */
408 bfd_elf_generic_reloc, /* special_function */
409 "R_OR1K_TLS_LDM_HI16", /* name */
410 FALSE, /* partial_inplace */
412 0xffff, /* dst_mask */
413 FALSE), /* pcrel_offset */
415 HOWTO (R_OR1K_TLS_LDM_LO16, /* type */
417 2, /* size (0 = byte, 1 = short, 2 = long) */
419 FALSE, /* pc_relative */
421 complain_overflow_dont, /* complain_on_overflow */
422 bfd_elf_generic_reloc, /* special_function */
423 "R_OR1K_TLS_LDM_LO16", /* name */
424 FALSE, /* partial_inplace */
426 0xffff, /* dst_mask */
427 FALSE), /* pcrel_offset */
429 HOWTO (R_OR1K_TLS_LDO_HI16, /* type */
431 2, /* size (0 = byte, 1 = short, 2 = long) */
433 FALSE, /* pc_relative */
435 complain_overflow_dont, /* complain_on_overflow */
436 bfd_elf_generic_reloc, /* special_function */
437 "R_OR1K_TLS_LDO_HI16", /* name */
438 FALSE, /* partial_inplace */
440 0xffff, /* dst_mask */
441 FALSE), /* pcrel_offset */
443 HOWTO (R_OR1K_TLS_LDO_LO16, /* type */
445 2, /* size (0 = byte, 1 = short, 2 = long) */
447 FALSE, /* pc_relative */
449 complain_overflow_dont, /* complain_on_overflow */
450 bfd_elf_generic_reloc, /* special_function */
451 "R_OR1K_TLS_LDO_LO16", /* name */
452 FALSE, /* partial_inplace */
454 0xffff, /* dst_mask */
455 FALSE), /* pcrel_offset */
457 HOWTO (R_OR1K_TLS_IE_HI16, /* type */
459 2, /* size (0 = byte, 1 = short, 2 = long) */
461 FALSE, /* pc_relative */
463 complain_overflow_dont, /* complain_on_overflow */
464 bfd_elf_generic_reloc, /* special_function */
465 "R_OR1K_TLS_IE_HI16", /* name */
466 FALSE, /* partial_inplace */
468 0xffff, /* dst_mask */
469 FALSE), /* pcrel_offset */
471 HOWTO (R_OR1K_TLS_IE_LO16, /* type */
473 2, /* size (0 = byte, 1 = short, 2 = long) */
475 FALSE, /* pc_relative */
477 complain_overflow_dont, /* complain_on_overflow */
478 bfd_elf_generic_reloc, /* special_function */
479 "R_OR1K_TLS_IE_LO16", /* name */
480 FALSE, /* partial_inplace */
482 0xffff, /* dst_mask */
483 FALSE), /* pcrel_offset */
485 HOWTO (R_OR1K_TLS_LE_HI16, /* type */
487 2, /* size (0 = byte, 1 = short, 2 = long) */
489 FALSE, /* pc_relative */
491 complain_overflow_dont, /* complain_on_overflow */
492 bfd_elf_generic_reloc, /* special_function */
493 "R_OR1K_TLS_LE_HI16", /* name */
494 FALSE, /* partial_inplace */
496 0xffff, /* dst_mask */
497 FALSE), /* pcrel_offset */
499 HOWTO (R_OR1K_TLS_LE_LO16, /* type */
501 2, /* size (0 = byte, 1 = short, 2 = long) */
503 FALSE, /* pc_relative */
505 complain_overflow_dont, /* complain_on_overflow */
506 bfd_elf_generic_reloc, /* special_function */
507 "R_OR1K_TLS_LE_LO16", /* name */
508 FALSE, /* partial_inplace */
510 0xffff, /* dst_mask */
511 FALSE), /* pcrel_offset */
515 /* Map BFD reloc types to Or1k ELF reloc types. */
517 struct or1k_reloc_map
519 bfd_reloc_code_real_type bfd_reloc_val;
520 unsigned int or1k_reloc_val;
523 static const struct or1k_reloc_map or1k_reloc_map[] =
525 { BFD_RELOC_NONE, R_OR1K_NONE },
526 { BFD_RELOC_32, R_OR1K_32 },
527 { BFD_RELOC_16, R_OR1K_16 },
528 { BFD_RELOC_8, R_OR1K_8 },
529 { BFD_RELOC_LO16, R_OR1K_LO_16_IN_INSN },
530 { BFD_RELOC_HI16, R_OR1K_HI_16_IN_INSN },
531 { BFD_RELOC_OR1K_REL_26, R_OR1K_INSN_REL_26 },
532 { BFD_RELOC_VTABLE_ENTRY, R_OR1K_GNU_VTENTRY },
533 { BFD_RELOC_VTABLE_INHERIT, R_OR1K_GNU_VTINHERIT },
534 { BFD_RELOC_32_PCREL, R_OR1K_32_PCREL },
535 { BFD_RELOC_16_PCREL, R_OR1K_16_PCREL },
536 { BFD_RELOC_8_PCREL, R_OR1K_8_PCREL },
537 { BFD_RELOC_OR1K_GOTPC_HI16, R_OR1K_GOTPC_HI16 },
538 { BFD_RELOC_OR1K_GOTPC_LO16, R_OR1K_GOTPC_LO16 },
539 { BFD_RELOC_OR1K_GOT16, R_OR1K_GOT16 },
540 { BFD_RELOC_OR1K_PLT26, R_OR1K_PLT26 },
541 { BFD_RELOC_OR1K_GOTOFF_HI16, R_OR1K_GOTOFF_HI16 },
542 { BFD_RELOC_OR1K_GOTOFF_LO16, R_OR1K_GOTOFF_LO16 },
543 { BFD_RELOC_OR1K_GLOB_DAT, R_OR1K_GLOB_DAT },
544 { BFD_RELOC_OR1K_COPY, R_OR1K_COPY },
545 { BFD_RELOC_OR1K_JMP_SLOT, R_OR1K_JMP_SLOT },
546 { BFD_RELOC_OR1K_RELATIVE, R_OR1K_RELATIVE },
547 { BFD_RELOC_OR1K_TLS_GD_HI16, R_OR1K_TLS_GD_HI16 },
548 { BFD_RELOC_OR1K_TLS_GD_LO16, R_OR1K_TLS_GD_LO16 },
549 { BFD_RELOC_OR1K_TLS_LDM_HI16, R_OR1K_TLS_LDM_HI16 },
550 { BFD_RELOC_OR1K_TLS_LDM_LO16, R_OR1K_TLS_LDM_LO16 },
551 { BFD_RELOC_OR1K_TLS_LDO_HI16, R_OR1K_TLS_LDO_HI16 },
552 { BFD_RELOC_OR1K_TLS_LDO_LO16, R_OR1K_TLS_LDO_LO16 },
553 { BFD_RELOC_OR1K_TLS_IE_HI16, R_OR1K_TLS_IE_HI16 },
554 { BFD_RELOC_OR1K_TLS_IE_LO16, R_OR1K_TLS_IE_LO16 },
555 { BFD_RELOC_OR1K_TLS_LE_HI16, R_OR1K_TLS_LE_HI16 },
556 { BFD_RELOC_OR1K_TLS_LE_LO16, R_OR1K_TLS_LE_LO16 },
559 /* The linker needs to keep track of the number of relocs that it
560 decides to copy as dynamic relocs in check_relocs for each symbol.
561 This is so that it can later discard them if they are found to be
562 unnecessary. We store the information in a field extending the
563 regular ELF linker hash table. */
565 struct elf_or1k_dyn_relocs
567 struct elf_or1k_dyn_relocs *next;
569 /* The input section of the reloc. */
572 /* Total number of relocs copied for the input section. */
575 /* Number of pc-relative relocs copied for the input section. */
576 bfd_size_type pc_count;
579 #define TLS_UNKNOWN 0
586 /* ELF linker hash entry. */
587 struct elf_or1k_link_hash_entry
589 struct elf_link_hash_entry root;
591 /* Track dynamic relocs copied for this symbol. */
592 struct elf_or1k_dyn_relocs *dyn_relocs;
594 /* Track type of TLS access. */
595 unsigned char tls_type;
598 /* ELF object data. */
599 struct elf_or1k_obj_tdata
601 struct elf_obj_tdata root;
603 /* tls_type for each local got entry. */
604 unsigned char *local_tls_type;
607 #define elf_or1k_tdata(abfd) \
608 ((struct elf_or1k_obj_tdata *) (abfd)->tdata.any)
610 #define elf_or1k_local_tls_type(abfd) \
611 (elf_or1k_tdata (abfd)->local_tls_type)
613 /* ELF linker hash table. */
614 struct elf_or1k_link_hash_table
616 struct elf_link_hash_table root;
618 /* Small local sym to section mapping cache. */
619 struct sym_cache sym_sec;
622 /* Get the ELF linker hash table from a link_info structure. */
623 #define or1k_elf_hash_table(p) \
624 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
625 == OR1K_ELF_DATA ? ((struct elf_or1k_link_hash_table *) ((p)->hash)) : NULL)
628 elf_or1k_mkobject (bfd *abfd)
630 return bfd_elf_allocate_object (abfd, sizeof (struct elf_or1k_obj_tdata),
634 /* Create an entry in an or1k ELF linker hash table. */
636 static struct bfd_hash_entry *
637 or1k_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
638 struct bfd_hash_table *table,
641 struct elf_or1k_link_hash_entry *ret =
642 (struct elf_or1k_link_hash_entry *) entry;
644 /* Allocate the structure if it has not already been allocated by a
647 ret = bfd_hash_allocate (table,
648 sizeof (struct elf_or1k_link_hash_entry));
652 /* Call the allocation method of the superclass. */
653 ret = ((struct elf_or1k_link_hash_entry *)
654 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
658 struct elf_or1k_link_hash_entry *eh;
660 eh = (struct elf_or1k_link_hash_entry *) ret;
661 eh->dyn_relocs = NULL;
662 eh->tls_type = TLS_UNKNOWN;
665 return (struct bfd_hash_entry *) ret;
668 /* Create an or1k ELF linker hash table. */
670 static struct bfd_link_hash_table *
671 or1k_elf_link_hash_table_create (bfd *abfd)
673 struct elf_or1k_link_hash_table *ret;
674 bfd_size_type amt = sizeof (struct elf_or1k_link_hash_table);
676 ret = bfd_zmalloc (amt);
680 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
681 or1k_elf_link_hash_newfunc,
682 sizeof (struct elf_or1k_link_hash_entry),
689 return &ret->root.root;
692 static reloc_howto_type *
693 or1k_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED,
694 bfd_reloc_code_real_type code)
698 for (i = ARRAY_SIZE (or1k_reloc_map); i--;)
699 if (or1k_reloc_map[i].bfd_reloc_val == code)
700 return & or1k_elf_howto_table[or1k_reloc_map[i].or1k_reloc_val];
705 static reloc_howto_type *
706 or1k_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
712 i < (sizeof (or1k_elf_howto_table)
713 / sizeof (or1k_elf_howto_table[0]));
715 if (or1k_elf_howto_table[i].name != NULL
716 && strcasecmp (or1k_elf_howto_table[i].name, r_name) == 0)
717 return &or1k_elf_howto_table[i];
722 /* Set the howto pointer for an Or1k ELF reloc. */
725 or1k_info_to_howto_rela (bfd * abfd ATTRIBUTE_UNUSED,
727 Elf_Internal_Rela * dst)
731 r_type = ELF32_R_TYPE (dst->r_info);
732 if (r_type >= (unsigned int) R_OR1K_max)
734 /* xgettext:c-format */
735 _bfd_error_handler (_("%B: invalid OR1K reloc number: %d"), abfd, r_type);
738 cache_ptr->howto = & or1k_elf_howto_table[r_type];
742 /* Return the relocation value for @tpoff relocations.. */
744 tpoff (struct bfd_link_info *info, bfd_vma address)
746 /* If tls_sec is NULL, we should have signalled an error already. */
747 if (elf_hash_table (info)->tls_sec == NULL)
750 /* The thread pointer on or1k stores the address after the TCB where
751 the data is, just compute the difference. No need to compensate
752 for the size of TCB. */
753 return (address - elf_hash_table (info)->tls_sec->vma);
756 /* Relocate an Or1k ELF section.
758 The RELOCATE_SECTION function is called by the new ELF backend linker
759 to handle the relocations for a section.
761 The relocs are always passed as Rela structures; if the section
762 actually uses Rel structures, the r_addend field will always be
765 This function is responsible for adjusting the section contents as
766 necessary, and (if using Rela relocs and generating a relocatable
767 output file) adjusting the reloc addend as necessary.
769 This function does not have to worry about setting the reloc
770 address or the reloc symbol index.
772 LOCAL_SYMS is a pointer to the swapped in local symbols.
774 LOCAL_SECTIONS is an array giving the section in the input file
775 corresponding to the st_shndx field of each local symbol.
777 The global hash table entry for the global symbols can be found
778 via elf_sym_hashes (input_bfd).
780 When generating relocatable output, this function must handle
781 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
782 going to be the section symbol corresponding to the output
783 section, which means that the addend must be adjusted
787 or1k_elf_relocate_section (bfd *output_bfd,
788 struct bfd_link_info *info,
790 asection *input_section,
792 Elf_Internal_Rela *relocs,
793 Elf_Internal_Sym *local_syms,
794 asection **local_sections)
796 Elf_Internal_Shdr *symtab_hdr;
797 struct elf_link_hash_entry **sym_hashes;
798 Elf_Internal_Rela *rel;
799 Elf_Internal_Rela *relend;
800 struct elf_or1k_link_hash_table *htab = or1k_elf_hash_table (info);
803 bfd_vma *local_got_offsets;
809 dynobj = htab->root.dynobj;
810 local_got_offsets = elf_local_got_offsets (input_bfd);
812 sreloc = elf_section_data (input_section)->sreloc;
814 sgot = htab->root.sgot;
816 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
817 sym_hashes = elf_sym_hashes (input_bfd);
818 relend = relocs + input_section->reloc_count;
820 for (rel = relocs; rel < relend; rel++)
822 reloc_howto_type *howto;
823 unsigned long r_symndx;
824 Elf_Internal_Sym *sym;
826 struct elf_link_hash_entry *h;
828 bfd_reloc_status_type r;
829 const char *name = NULL;
832 r_type = ELF32_R_TYPE (rel->r_info);
833 r_symndx = ELF32_R_SYM (rel->r_info);
835 if (r_type == R_OR1K_GNU_VTINHERIT
836 || r_type == R_OR1K_GNU_VTENTRY)
839 if (r_type < 0 || r_type >= (int) R_OR1K_max)
841 bfd_set_error (bfd_error_bad_value);
845 howto = or1k_elf_howto_table + ELF32_R_TYPE (rel->r_info);
850 if (r_symndx < symtab_hdr->sh_info)
852 sym = local_syms + r_symndx;
853 sec = local_sections[r_symndx];
854 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
856 name = bfd_elf_string_from_elf_section
857 (input_bfd, symtab_hdr->sh_link, sym->st_name);
858 name = (name == NULL) ? bfd_section_name (input_bfd, sec) : name;
862 bfd_boolean unresolved_reloc, warned, ignored;
864 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
865 r_symndx, symtab_hdr, sym_hashes,
867 unresolved_reloc, warned, ignored);
870 if (sec != NULL && discarded_section (sec))
871 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
872 rel, 1, relend, howto, 0, contents);
874 if (bfd_link_relocatable (info))
881 if (htab->root.splt != NULL && h != NULL
882 && h->plt.offset != (bfd_vma) -1)
884 relocation = (htab->root.splt->output_section->vma
885 + htab->root.splt->output_offset
892 /* Relocation is to the entry for this symbol in the global
894 BFD_ASSERT (sgot != NULL);
901 BFD_ASSERT (off != (bfd_vma) -1);
903 dyn = htab->root.dynamic_sections_created;
904 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
907 || (bfd_link_pic (info)
908 && SYMBOL_REFERENCES_LOCAL (info, h)))
910 /* This is actually a static link, or it is a
911 -Bsymbolic link and the symbol is defined
912 locally, or the symbol was forced to be local
913 because of a version file. We must initialize
914 this entry in the global offset table. Since the
915 offset must always be a multiple of 4, we use the
916 least significant bit to record whether we have
917 initialized it already.
919 When doing a dynamic link, we create a .rela.got
920 relocation entry to initialize the value. This
921 is done in the finish_dynamic_symbol routine. */
926 /* Write entry in GOT. */
927 bfd_put_32 (output_bfd, relocation,
928 sgot->contents + off);
929 /* Mark GOT entry as having been written. */
934 relocation = sgot->output_offset + off;
941 BFD_ASSERT (local_got_offsets != NULL
942 && local_got_offsets[r_symndx] != (bfd_vma) -1);
944 /* Get offset into GOT table. */
945 off = local_got_offsets[r_symndx];
947 /* The offset must always be a multiple of 4. We use
948 the least significant bit to record whether we have
949 already processed this entry. */
954 /* Write entry in GOT. */
955 bfd_put_32 (output_bfd, relocation, sgot->contents + off);
956 if (bfd_link_pic (info))
959 Elf_Internal_Rela outrel;
961 /* We need to generate a R_OR1K_RELATIVE reloc
962 for the dynamic linker. */
963 srelgot = htab->root.srelgot;
964 BFD_ASSERT (srelgot != NULL);
966 outrel.r_offset = (sgot->output_section->vma
967 + sgot->output_offset
969 outrel.r_info = ELF32_R_INFO (0, R_OR1K_RELATIVE);
970 outrel.r_addend = relocation;
971 loc = srelgot->contents;
972 loc += srelgot->reloc_count * sizeof (Elf32_External_Rela);
973 bfd_elf32_swap_reloca_out (output_bfd, &outrel,loc);
974 ++srelgot->reloc_count;
977 local_got_offsets[r_symndx] |= 1;
979 relocation = sgot->output_offset + off;
982 /* Addend should be zero. */
983 if (rel->r_addend != 0)
985 (_("internal error: addend should be zero for R_OR1K_GOT16"));
989 case R_OR1K_GOTOFF_LO16:
990 case R_OR1K_GOTOFF_HI16:
991 /* Relocation is offset from GOT. */
992 BFD_ASSERT (sgot != NULL);
994 -= (htab->root.hgot->root.u.def.value
995 + htab->root.hgot->root.u.def.section->output_offset
996 + htab->root.hgot->root.u.def.section->output_section->vma);
999 case R_OR1K_INSN_REL_26:
1000 case R_OR1K_HI_16_IN_INSN:
1001 case R_OR1K_LO_16_IN_INSN:
1005 /* r_symndx will be STN_UNDEF (zero) only for relocs against symbols
1006 from removed linkonce sections, or sections discarded by
1008 if (r_symndx == STN_UNDEF
1009 || (input_section->flags & SEC_ALLOC) == 0)
1012 if ((bfd_link_pic (info)
1014 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
1015 || h->root.type != bfd_link_hash_undefweak)
1016 && (howto->type != R_OR1K_INSN_REL_26
1017 || !SYMBOL_CALLS_LOCAL (info, h)))
1018 || (!bfd_link_pic (info)
1024 || h->root.type == bfd_link_hash_undefweak
1025 || h->root.type == bfd_link_hash_undefined)))
1027 Elf_Internal_Rela outrel;
1031 /* When generating a shared object, these relocations
1032 are copied into the output file to be resolved at run
1035 BFD_ASSERT (sreloc != NULL);
1040 _bfd_elf_section_offset (output_bfd, info, input_section,
1042 if (outrel.r_offset == (bfd_vma) -1)
1044 else if (outrel.r_offset == (bfd_vma) -2)
1046 outrel.r_offset += (input_section->output_section->vma
1047 + input_section->output_offset);
1050 memset (&outrel, 0, sizeof outrel);
1051 /* h->dynindx may be -1 if the symbol was marked to
1054 && ((! info->symbolic && h->dynindx != -1)
1055 || !h->def_regular))
1057 BFD_ASSERT (h->dynindx != -1);
1058 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
1059 outrel.r_addend = rel->r_addend;
1063 if (r_type == R_OR1K_32)
1065 outrel.r_info = ELF32_R_INFO (0, R_OR1K_RELATIVE);
1066 outrel.r_addend = relocation + rel->r_addend;
1072 (_("%B: probably compiled without -fPIC?"),
1074 bfd_set_error (bfd_error_bad_value);
1079 loc = sreloc->contents;
1080 loc += sreloc->reloc_count++ * sizeof (Elf32_External_Rela);
1081 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
1087 case R_OR1K_TLS_LDM_HI16:
1088 case R_OR1K_TLS_LDM_LO16:
1089 case R_OR1K_TLS_LDO_HI16:
1090 case R_OR1K_TLS_LDO_LO16:
1091 /* TODO: implement support for local dynamic. */
1094 (_("%B: support for local dynamic not implemented"),
1096 bfd_set_error (bfd_error_bad_value);
1100 case R_OR1K_TLS_GD_HI16:
1101 case R_OR1K_TLS_GD_LO16:
1102 case R_OR1K_TLS_IE_HI16:
1103 case R_OR1K_TLS_IE_LO16:
1106 Elf_Internal_Rela rela;
1110 sreloc = bfd_get_section_by_name (dynobj, ".rela.got");
1112 /* Mark as TLS related GOT entry by setting
1113 bit 2 as well as bit 1. */
1116 gotoff = h->got.offset;
1121 gotoff = local_got_offsets[r_symndx];
1122 local_got_offsets[r_symndx] |= 3;
1125 /* Only process the relocation once. */
1128 relocation = sgot->output_offset + (gotoff & ~3);
1132 BFD_ASSERT (elf_hash_table (info)->hgot == NULL
1133 || elf_hash_table (info)->hgot->root.u.def.value == 0);
1135 /* Dynamic entries will require relocations. if we do not need
1136 them we will just use the default R_OR1K_NONE and
1137 not set anything. */
1138 dynamic = bfd_link_pic (info)
1139 || (sec && (sec->flags & SEC_ALLOC) != 0
1141 && (h->root.type == bfd_link_hash_defweak || !h->def_regular));
1144 if (dynamic && (howto->type == R_OR1K_TLS_GD_HI16
1145 || howto->type == R_OR1K_TLS_GD_LO16))
1149 /* Add DTPMOD and DTPOFF GOT and rela entries. */
1150 for (i = 0; i < 2; ++i)
1152 rela.r_offset = sgot->output_section->vma +
1153 sgot->output_offset + gotoff + i*4;
1154 if (h != NULL && h->dynindx != -1)
1156 rela.r_info = ELF32_R_INFO (h->dynindx,
1157 (i == 0 ? R_OR1K_TLS_DTPMOD : R_OR1K_TLS_DTPOFF));
1162 rela.r_info = ELF32_R_INFO (0,
1163 (i == 0 ? R_OR1K_TLS_DTPMOD : R_OR1K_TLS_DTPOFF));
1164 rela.r_addend = tpoff (info, relocation);
1167 loc = sreloc->contents;
1168 loc += sreloc->reloc_count++ *
1169 sizeof (Elf32_External_Rela);
1171 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1172 bfd_put_32 (output_bfd, 0, sgot->contents + gotoff + i*4);
1176 else if (howto->type == R_OR1K_TLS_GD_HI16
1177 || howto->type == R_OR1K_TLS_GD_LO16)
1179 bfd_put_32 (output_bfd, 1, sgot->contents + gotoff);
1180 bfd_put_32 (output_bfd, tpoff (info, relocation),
1181 sgot->contents + gotoff + 4);
1186 /* Add TPOFF GOT and rela entries. */
1187 rela.r_offset = sgot->output_section->vma +
1188 sgot->output_offset + gotoff;
1189 if (h != NULL && h->dynindx != -1)
1191 rela.r_info = ELF32_R_INFO (h->dynindx, R_OR1K_TLS_TPOFF);
1196 rela.r_info = ELF32_R_INFO (0, R_OR1K_TLS_TPOFF);
1197 rela.r_addend = tpoff (info, relocation);
1200 loc = sreloc->contents;
1201 loc += sreloc->reloc_count++ * sizeof (Elf32_External_Rela);
1203 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1204 bfd_put_32 (output_bfd, 0, sgot->contents + gotoff);
1209 bfd_put_32 (output_bfd, tpoff (info, relocation),
1210 sgot->contents + gotoff);
1212 relocation = sgot->output_offset + gotoff;
1215 case R_OR1K_TLS_LE_HI16:
1216 case R_OR1K_TLS_LE_LO16:
1218 /* Relocation is offset from TP. */
1219 relocation = tpoff (info, relocation);
1222 case R_OR1K_TLS_DTPMOD:
1223 case R_OR1K_TLS_DTPOFF:
1224 case R_OR1K_TLS_TPOFF:
1225 /* These are resolved dynamically on load and shouldn't
1226 be used as linker input. */
1229 (_("%B: will not resolve runtime TLS relocation"),
1231 bfd_set_error (bfd_error_bad_value);
1237 r = _bfd_final_link_relocate (howto, input_bfd, input_section, contents,
1238 rel->r_offset, relocation, rel->r_addend);
1240 if (r != bfd_reloc_ok)
1242 const char *msg = NULL;
1246 case bfd_reloc_overflow:
1247 (*info->callbacks->reloc_overflow)
1248 (info, (h ? &h->root : NULL), name, howto->name,
1249 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
1252 case bfd_reloc_undefined:
1253 (*info->callbacks->undefined_symbol)
1254 (info, name, input_bfd, input_section, rel->r_offset, TRUE);
1257 case bfd_reloc_outofrange:
1258 msg = _("internal error: out of range error");
1261 case bfd_reloc_notsupported:
1262 msg = _("internal error: unsupported relocation error");
1265 case bfd_reloc_dangerous:
1266 msg = _("internal error: dangerous relocation");
1270 msg = _("internal error: unknown error");
1275 (*info->callbacks->warning) (info, msg, name, input_bfd,
1276 input_section, rel->r_offset);
1283 /* Return the section that should be marked against GC for a given
1287 or1k_elf_gc_mark_hook (asection *sec,
1288 struct bfd_link_info *info,
1289 Elf_Internal_Rela *rel,
1290 struct elf_link_hash_entry *h,
1291 Elf_Internal_Sym *sym)
1294 switch (ELF32_R_TYPE (rel->r_info))
1296 case R_OR1K_GNU_VTINHERIT:
1297 case R_OR1K_GNU_VTENTRY:
1301 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
1304 /* Look through the relocs for a section during the first phase. */
1307 or1k_elf_check_relocs (bfd *abfd,
1308 struct bfd_link_info *info,
1310 const Elf_Internal_Rela *relocs)
1312 Elf_Internal_Shdr *symtab_hdr;
1313 struct elf_link_hash_entry **sym_hashes;
1314 const Elf_Internal_Rela *rel;
1316 const Elf_Internal_Rela *rel_end;
1317 struct elf_or1k_link_hash_table *htab;
1319 asection *sreloc = NULL;
1321 if (bfd_link_relocatable (info))
1324 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1325 sym_hashes = elf_sym_hashes (abfd);
1327 htab = or1k_elf_hash_table (info);
1331 dynobj = htab->root.dynobj;
1333 rel_end = relocs + sec->reloc_count;
1334 for (rel = relocs; rel < rel_end; rel++)
1336 struct elf_link_hash_entry *h;
1337 unsigned long r_symndx;
1338 unsigned char tls_type;
1340 r_symndx = ELF32_R_SYM (rel->r_info);
1341 if (r_symndx < symtab_hdr->sh_info)
1345 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1346 while (h->root.type == bfd_link_hash_indirect
1347 || h->root.type == bfd_link_hash_warning)
1348 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1350 /* PR15323, ref flags aren't set for references in the same
1352 h->root.non_ir_ref_regular = 1;
1355 switch (ELF32_R_TYPE (rel->r_info))
1357 case R_OR1K_TLS_GD_HI16:
1358 case R_OR1K_TLS_GD_LO16:
1361 case R_OR1K_TLS_LDM_HI16:
1362 case R_OR1K_TLS_LDM_LO16:
1363 case R_OR1K_TLS_LDO_HI16:
1364 case R_OR1K_TLS_LDO_LO16:
1367 case R_OR1K_TLS_IE_HI16:
1368 case R_OR1K_TLS_IE_LO16:
1371 case R_OR1K_TLS_LE_HI16:
1372 case R_OR1K_TLS_LE_LO16:
1376 tls_type = TLS_NONE;
1379 /* Record TLS type. */
1381 ((struct elf_or1k_link_hash_entry *) h)->tls_type = tls_type;
1384 unsigned char *local_tls_type;
1386 /* This is a TLS type record for a local symbol. */
1387 local_tls_type = (unsigned char *) elf_or1k_local_tls_type (abfd);
1388 if (local_tls_type == NULL)
1392 size = symtab_hdr->sh_info;
1393 local_tls_type = bfd_zalloc (abfd, size);
1394 if (local_tls_type == NULL)
1396 elf_or1k_local_tls_type (abfd) = local_tls_type;
1398 local_tls_type[r_symndx] = tls_type;
1401 switch (ELF32_R_TYPE (rel->r_info))
1403 /* This relocation describes the C++ object vtable hierarchy.
1404 Reconstruct it for later use during GC. */
1405 case R_OR1K_GNU_VTINHERIT:
1406 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
1410 /* This relocation describes which C++ vtable entries are actually
1411 used. Record for later use during GC. */
1412 case R_OR1K_GNU_VTENTRY:
1413 BFD_ASSERT (h != NULL);
1415 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
1419 /* This relocation requires .plt entry. */
1424 h->plt.refcount += 1;
1429 case R_OR1K_GOTOFF_HI16:
1430 case R_OR1K_GOTOFF_LO16:
1431 case R_OR1K_TLS_GD_HI16:
1432 case R_OR1K_TLS_GD_LO16:
1433 case R_OR1K_TLS_IE_HI16:
1434 case R_OR1K_TLS_IE_LO16:
1435 if (htab->root.sgot == NULL)
1438 htab->root.dynobj = dynobj = abfd;
1439 if (!_bfd_elf_create_got_section (dynobj, info))
1443 if (ELF32_R_TYPE (rel->r_info) != R_OR1K_GOTOFF_HI16 &&
1444 ELF32_R_TYPE (rel->r_info) != R_OR1K_GOTOFF_LO16)
1447 h->got.refcount += 1;
1450 bfd_signed_vma *local_got_refcounts;
1452 /* This is a global offset table entry for a local symbol. */
1453 local_got_refcounts = elf_local_got_refcounts (abfd);
1454 if (local_got_refcounts == NULL)
1458 size = symtab_hdr->sh_info;
1459 size *= sizeof (bfd_signed_vma);
1460 local_got_refcounts = bfd_zalloc (abfd, size);
1461 if (local_got_refcounts == NULL)
1463 elf_local_got_refcounts (abfd) = local_got_refcounts;
1465 local_got_refcounts[r_symndx] += 1;
1470 case R_OR1K_INSN_REL_26:
1471 case R_OR1K_HI_16_IN_INSN:
1472 case R_OR1K_LO_16_IN_INSN:
1476 if (h != NULL && !bfd_link_pic (info))
1478 /* We may need a copy reloc. */
1481 /* We may also need a .plt entry. */
1482 h->plt.refcount += 1;
1483 if (ELF32_R_TYPE (rel->r_info) != R_OR1K_INSN_REL_26)
1484 h->pointer_equality_needed = 1;
1487 /* If we are creating a shared library, and this is a reloc
1488 against a global symbol, or a non PC relative reloc
1489 against a local symbol, then we need to copy the reloc
1490 into the shared library. However, if we are linking with
1491 -Bsymbolic, we do not need to copy a reloc against a
1492 global symbol which is defined in an object we are
1493 including in the link (i.e., DEF_REGULAR is set). At
1494 this point we have not seen all the input files, so it is
1495 possible that DEF_REGULAR is not set now but will be set
1496 later (it is never cleared). In case of a weak definition,
1497 DEF_REGULAR may be cleared later by a strong definition in
1498 a shared library. We account for that possibility below by
1499 storing information in the relocs_copied field of the hash
1500 table entry. A similar situation occurs when creating
1501 shared libraries and symbol visibility changes render the
1504 If on the other hand, we are creating an executable, we
1505 may need to keep relocations for symbols satisfied by a
1506 dynamic library if we manage to avoid copy relocs for the
1509 if ((bfd_link_pic (info)
1510 && (sec->flags & SEC_ALLOC) != 0
1511 && (ELF32_R_TYPE (rel->r_info) != R_OR1K_INSN_REL_26
1513 && (!SYMBOLIC_BIND (info, h)
1514 || h->root.type == bfd_link_hash_defweak
1515 || !h->def_regular))))
1516 || (!bfd_link_pic (info)
1517 && (sec->flags & SEC_ALLOC) != 0
1519 && (h->root.type == bfd_link_hash_defweak
1520 || !h->def_regular)))
1522 struct elf_or1k_dyn_relocs *p;
1523 struct elf_or1k_dyn_relocs **head;
1525 /* When creating a shared object, we must copy these
1526 relocs into the output file. We create a reloc
1527 section in dynobj and make room for the reloc. */
1531 unsigned int strndx = elf_elfheader (abfd)->e_shstrndx;
1532 unsigned int shnam = _bfd_elf_single_rel_hdr (sec)->sh_name;
1534 name = bfd_elf_string_from_elf_section (abfd, strndx, shnam);
1538 if (strncmp (name, ".rela", 5) != 0
1539 || strcmp (bfd_get_section_name (abfd, sec),
1543 /* xgettext:c-format */
1544 (_("%B: bad relocation section name `%s\'"),
1548 if (htab->root.dynobj == NULL)
1549 htab->root.dynobj = abfd;
1550 dynobj = htab->root.dynobj;
1552 sreloc = bfd_get_section_by_name (dynobj, name);
1555 sreloc = _bfd_elf_make_dynamic_reloc_section
1556 (sec, dynobj, 2, abfd, /*rela?*/ TRUE);
1561 elf_section_data (sec)->sreloc = sreloc;
1564 /* If this is a global symbol, we count the number of
1565 relocations we need for this symbol. */
1567 head = &((struct elf_or1k_link_hash_entry *) h)->dyn_relocs;
1570 /* Track dynamic relocs needed for local syms too.
1571 We really need local syms available to do this
1575 Elf_Internal_Sym *isym;
1578 isym = bfd_sym_from_r_symndx (&htab->sym_sec,
1583 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
1587 vpp = &elf_section_data (s)->local_dynrel;
1588 head = (struct elf_or1k_dyn_relocs **) vpp;
1592 if (p == NULL || p->sec != sec)
1594 bfd_size_type amt = sizeof *p;
1595 p = ((struct elf_or1k_dyn_relocs *)
1596 bfd_alloc (htab->root.dynobj, amt));
1607 if (ELF32_R_TYPE (rel->r_info) == R_OR1K_INSN_REL_26)
1618 /* Finish up the dynamic sections. */
1621 or1k_elf_finish_dynamic_sections (bfd *output_bfd,
1622 struct bfd_link_info *info)
1625 asection *sdyn, *sgot;
1626 struct elf_or1k_link_hash_table *htab;
1628 htab = or1k_elf_hash_table (info);
1632 dynobj = htab->root.dynobj;
1634 sgot = htab->root.sgotplt;
1635 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
1637 if (htab->root.dynamic_sections_created)
1640 Elf32_External_Dyn *dyncon, *dynconend;
1642 BFD_ASSERT (sgot != NULL && sdyn != NULL);
1644 dyncon = (Elf32_External_Dyn *) sdyn->contents;
1645 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
1647 for (; dyncon < dynconend; dyncon++)
1649 Elf_Internal_Dyn dyn;
1652 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
1660 s = htab->root.sgotplt;
1661 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
1665 s = htab->root.srelplt;
1666 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
1670 s = htab->root.srelplt;
1671 dyn.d_un.d_val = s->size;
1674 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
1678 /* Fill in the first entry in the procedure linkage table. */
1679 splt = htab->root.splt;
1680 if (splt && splt->size > 0)
1682 if (bfd_link_pic (info))
1684 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD0,
1686 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD1,
1687 splt->contents + 4);
1688 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD2,
1689 splt->contents + 8);
1690 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD3,
1691 splt->contents + 12);
1692 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD4,
1693 splt->contents + 16);
1698 /* addr = .got + 4 */
1699 addr = sgot->output_section->vma + sgot->output_offset + 4;
1700 bfd_put_32 (output_bfd,
1701 PLT0_ENTRY_WORD0 | ((addr >> 16) & 0xffff),
1703 bfd_put_32 (output_bfd,
1704 PLT0_ENTRY_WORD1 | (addr & 0xffff),
1705 splt->contents + 4);
1706 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD2, splt->contents + 8);
1707 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD3, splt->contents + 12);
1708 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD4, splt->contents + 16);
1711 elf_section_data (splt->output_section)->this_hdr.sh_entsize = 4;
1715 /* Set the first entry in the global offset table to the address of
1716 the dynamic section. */
1717 if (sgot && sgot->size > 0)
1720 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
1722 bfd_put_32 (output_bfd,
1723 sdyn->output_section->vma + sdyn->output_offset,
1725 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
1728 if (htab->root.sgot && htab->root.sgot->size > 0)
1729 elf_section_data (htab->root.sgot->output_section)->this_hdr.sh_entsize = 4;
1734 /* Finish up dynamic symbol handling. We set the contents of various
1735 dynamic sections here. */
1738 or1k_elf_finish_dynamic_symbol (bfd *output_bfd,
1739 struct bfd_link_info *info,
1740 struct elf_link_hash_entry *h,
1741 Elf_Internal_Sym *sym)
1743 struct elf_or1k_link_hash_table *htab;
1746 htab = or1k_elf_hash_table (info);
1750 if (h->plt.offset != (bfd_vma) -1)
1759 Elf_Internal_Rela rela;
1761 /* This symbol has an entry in the procedure linkage table. Set
1763 BFD_ASSERT (h->dynindx != -1);
1765 splt = htab->root.splt;
1766 sgot = htab->root.sgotplt;
1767 srela = htab->root.srelplt;
1768 BFD_ASSERT (splt != NULL && sgot != NULL && srela != NULL);
1770 /* Get the index in the procedure linkage table which
1771 corresponds to this symbol. This is the index of this symbol
1772 in all the symbols for which we are making plt entries. The
1773 first entry in the procedure linkage table is reserved. */
1774 plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
1776 /* Get the offset into the .got table of the entry that
1777 corresponds to this function. Each .got entry is 4 bytes.
1778 The first three are reserved. */
1779 got_offset = (plt_index + 3) * 4;
1780 got_addr = got_offset;
1782 /* Fill in the entry in the procedure linkage table. */
1783 if (! bfd_link_pic (info))
1785 got_addr += htab->root.sgotplt->output_section->vma
1786 + htab->root.sgotplt->output_offset;
1787 bfd_put_32 (output_bfd, PLT_ENTRY_WORD0 | ((got_addr >> 16) & 0xffff),
1788 splt->contents + h->plt.offset);
1789 bfd_put_32 (output_bfd, PLT_ENTRY_WORD1 | (got_addr & 0xffff),
1790 splt->contents + h->plt.offset + 4);
1791 bfd_put_32 (output_bfd, (bfd_vma) PLT_ENTRY_WORD2,
1792 splt->contents + h->plt.offset + 8);
1793 bfd_put_32 (output_bfd, (bfd_vma) PLT_ENTRY_WORD3,
1794 splt->contents + h->plt.offset + 12);
1795 bfd_put_32 (output_bfd, PLT_ENTRY_WORD4
1796 | plt_index * sizeof (Elf32_External_Rela),
1797 splt->contents + h->plt.offset + 16);
1801 bfd_put_32 (output_bfd, PLT_PIC_ENTRY_WORD0 | (got_addr & 0xffff),
1802 splt->contents + h->plt.offset);
1803 bfd_put_32 (output_bfd, PLT_PIC_ENTRY_WORD1
1804 | plt_index * sizeof (Elf32_External_Rela),
1805 splt->contents + h->plt.offset + 4);
1806 bfd_put_32 (output_bfd, (bfd_vma) PLT_PIC_ENTRY_WORD2,
1807 splt->contents + h->plt.offset + 8);
1808 bfd_put_32 (output_bfd, (bfd_vma) PLT_PIC_ENTRY_WORD3,
1809 splt->contents + h->plt.offset + 12);
1810 bfd_put_32 (output_bfd, (bfd_vma) PLT_PIC_ENTRY_WORD4,
1811 splt->contents + h->plt.offset + 16);
1814 /* Fill in the entry in the global offset table. */
1815 bfd_put_32 (output_bfd,
1816 (splt->output_section->vma
1817 + splt->output_offset), /* Same offset. */
1818 sgot->contents + got_offset);
1820 /* Fill in the entry in the .rela.plt section. */
1821 rela.r_offset = (sgot->output_section->vma
1822 + sgot->output_offset
1824 rela.r_info = ELF32_R_INFO (h->dynindx, R_OR1K_JMP_SLOT);
1826 loc = srela->contents;
1827 loc += plt_index * sizeof (Elf32_External_Rela);
1828 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1830 if (!h->def_regular)
1832 /* Mark the symbol as undefined, rather than as defined in
1833 the .plt section. Leave the value alone. */
1834 sym->st_shndx = SHN_UNDEF;
1839 if (h->got.offset != (bfd_vma) -1
1840 && (h->got.offset & 2) == 0) /* Homemade TLS check. */
1844 Elf_Internal_Rela rela;
1846 /* This symbol has an entry in the global offset table. Set it
1848 sgot = htab->root.sgot;
1849 srela = htab->root.srelgot;
1850 BFD_ASSERT (sgot != NULL && srela != NULL);
1852 rela.r_offset = (sgot->output_section->vma
1853 + sgot->output_offset
1854 + (h->got.offset &~ 1));
1856 /* If this is a -Bsymbolic link, and the symbol is defined
1857 locally, we just want to emit a RELATIVE reloc. Likewise if
1858 the symbol was forced to be local because of a version file.
1859 The entry in the global offset table will already have been
1860 initialized in the relocate_section function. */
1861 if (bfd_link_pic (info) && SYMBOL_REFERENCES_LOCAL (info, h))
1863 rela.r_info = ELF32_R_INFO (0, R_OR1K_RELATIVE);
1864 rela.r_addend = (h->root.u.def.value
1865 + h->root.u.def.section->output_section->vma
1866 + h->root.u.def.section->output_offset);
1870 BFD_ASSERT ((h->got.offset & 1) == 0);
1871 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + h->got.offset);
1872 rela.r_info = ELF32_R_INFO (h->dynindx, R_OR1K_GLOB_DAT);
1876 loc = srela->contents;
1877 loc += srela->reloc_count * sizeof (Elf32_External_Rela);
1878 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1879 ++srela->reloc_count;
1885 Elf_Internal_Rela rela;
1887 /* This symbols needs a copy reloc. Set it up. */
1888 BFD_ASSERT (h->dynindx != -1
1889 && (h->root.type == bfd_link_hash_defined
1890 || h->root.type == bfd_link_hash_defweak));
1892 rela.r_offset = (h->root.u.def.value
1893 + h->root.u.def.section->output_section->vma
1894 + h->root.u.def.section->output_offset);
1895 rela.r_info = ELF32_R_INFO (h->dynindx, R_OR1K_COPY);
1897 if (h->root.u.def.section == htab->root.sdynrelro)
1898 s = htab->root.sreldynrelro;
1900 s = htab->root.srelbss;
1901 loc = s->contents + s->reloc_count * sizeof (Elf32_External_Rela);
1902 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1906 /* Mark some specially defined symbols as absolute. */
1907 if (strcmp (h->root.root.string, "_DYNAMIC") == 0
1908 || h == htab->root.hgot)
1909 sym->st_shndx = SHN_ABS;
1914 static enum elf_reloc_type_class
1915 or1k_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
1916 const asection *rel_sec ATTRIBUTE_UNUSED,
1917 const Elf_Internal_Rela *rela)
1919 switch ((int) ELF32_R_TYPE (rela->r_info))
1921 case R_OR1K_RELATIVE: return reloc_class_relative;
1922 case R_OR1K_JMP_SLOT: return reloc_class_plt;
1923 case R_OR1K_COPY: return reloc_class_copy;
1924 default: return reloc_class_normal;
1928 /* Adjust a symbol defined by a dynamic object and referenced by a
1929 regular object. The current definition is in some section of the
1930 dynamic object, but we're not including those sections. We have to
1931 change the definition to something the rest of the link can
1935 or1k_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
1936 struct elf_link_hash_entry *h)
1938 struct elf_or1k_link_hash_table *htab;
1939 struct elf_or1k_link_hash_entry *eh;
1940 struct elf_or1k_dyn_relocs *p;
1944 dynobj = elf_hash_table (info)->dynobj;
1946 /* Make sure we know what is going on here. */
1947 BFD_ASSERT (dynobj != NULL
1952 && !h->def_regular)));
1954 /* If this is a function, put it in the procedure linkage table. We
1955 will fill in the contents of the procedure linkage table later,
1956 when we know the address of the .got section. */
1957 if (h->type == STT_FUNC
1960 if (! bfd_link_pic (info)
1963 && h->root.type != bfd_link_hash_undefweak
1964 && h->root.type != bfd_link_hash_undefined)
1966 /* This case can occur if we saw a PLT reloc in an input
1967 file, but the symbol was never referred to by a dynamic
1968 object. In such a case, we don't actually need to build
1969 a procedure linkage table, and we can just do a PCREL
1971 h->plt.offset = (bfd_vma) -1;
1978 h->plt.offset = (bfd_vma) -1;
1980 /* If this is a weak symbol, and there is a real definition, the
1981 processor independent code will have arranged for us to see the
1982 real definition first, and we can just use the same value. */
1983 if (h->is_weakalias)
1985 struct elf_link_hash_entry *def = weakdef (h);
1986 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
1987 h->root.u.def.section = def->root.u.def.section;
1988 h->root.u.def.value = def->root.u.def.value;
1992 /* This is a reference to a symbol defined by a dynamic object which
1993 is not a function. */
1995 /* If we are creating a shared library, we must presume that the
1996 only references to the symbol are via the global offset table.
1997 For such cases we need not do anything here; the relocations will
1998 be handled correctly by relocate_section. */
1999 if (bfd_link_pic (info))
2002 /* If there are no references to this symbol that do not use the
2003 GOT, we don't need to generate a copy reloc. */
2004 if (!h->non_got_ref)
2007 /* If -z nocopyreloc was given, we won't generate them either. */
2008 if (info->nocopyreloc)
2014 eh = (struct elf_or1k_link_hash_entry *) h;
2015 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2017 s = p->sec->output_section;
2018 if (s != NULL && (s->flags & (SEC_READONLY | SEC_HAS_CONTENTS)) != 0)
2022 /* If we didn't find any dynamic relocs in sections which needs the
2023 copy reloc, then we'll be keeping the dynamic relocs and avoiding
2031 /* We must allocate the symbol in our .dynbss section, which will
2032 become part of the .bss section of the executable. There will be
2033 an entry for this symbol in the .dynsym section. The dynamic
2034 object will contain position independent code, so all references
2035 from the dynamic object to this symbol will go through the global
2036 offset table. The dynamic linker will use the .dynsym entry to
2037 determine the address it must put in the global offset table, so
2038 both the dynamic object and the regular object will refer to the
2039 same memory location for the variable. */
2041 htab = or1k_elf_hash_table (info);
2045 /* We must generate a R_OR1K_COPY reloc to tell the dynamic linker
2046 to copy the initial value out of the dynamic object and into the
2047 runtime process image. We need to remember the offset into the
2048 .rela.bss section we are going to use. */
2049 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
2051 s = htab->root.sdynrelro;
2052 srel = htab->root.sreldynrelro;
2056 s = htab->root.sdynbss;
2057 srel = htab->root.srelbss;
2059 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
2061 srel->size += sizeof (Elf32_External_Rela);
2065 return _bfd_elf_adjust_dynamic_copy (info, h, s);
2068 /* Allocate space in .plt, .got and associated reloc sections for
2072 allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
2074 struct bfd_link_info *info;
2075 struct elf_or1k_link_hash_table *htab;
2076 struct elf_or1k_link_hash_entry *eh;
2077 struct elf_or1k_dyn_relocs *p;
2079 if (h->root.type == bfd_link_hash_indirect)
2082 info = (struct bfd_link_info *) inf;
2083 htab = or1k_elf_hash_table (info);
2087 eh = (struct elf_or1k_link_hash_entry *) h;
2089 if (htab->root.dynamic_sections_created
2090 && h->plt.refcount > 0)
2092 /* Make sure this symbol is output as a dynamic symbol.
2093 Undefined weak syms won't yet be marked as dynamic. */
2094 if (h->dynindx == -1
2095 && !h->forced_local)
2097 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2101 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, bfd_link_pic (info), h))
2103 asection *s = htab->root.splt;
2105 /* If this is the first .plt entry, make room for the special
2108 s->size = PLT_ENTRY_SIZE;
2110 h->plt.offset = s->size;
2112 /* If this symbol is not defined in a regular file, and we are
2113 not generating a shared library, then set the symbol to this
2114 location in the .plt. This is required to make function
2115 pointers compare as equal between the normal executable and
2116 the shared library. */
2117 if (! bfd_link_pic (info)
2120 h->root.u.def.section = s;
2121 h->root.u.def.value = h->plt.offset;
2124 /* Make room for this entry. */
2125 s->size += PLT_ENTRY_SIZE;
2127 /* We also need to make an entry in the .got.plt section, which
2128 will be placed in the .got section by the linker script. */
2129 htab->root.sgotplt->size += 4;
2131 /* We also need to make an entry in the .rel.plt section. */
2132 htab->root.srelplt->size += sizeof (Elf32_External_Rela);
2136 h->plt.offset = (bfd_vma) -1;
2142 h->plt.offset = (bfd_vma) -1;
2146 if (h->got.refcount > 0)
2150 unsigned char tls_type;
2152 /* Make sure this symbol is output as a dynamic symbol.
2153 Undefined weak syms won't yet be marked as dynamic. */
2154 if (h->dynindx == -1
2155 && !h->forced_local)
2157 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2161 s = htab->root.sgot;
2163 h->got.offset = s->size;
2165 tls_type = ((struct elf_or1k_link_hash_entry *) h)->tls_type;
2167 /* TLS GD requires two GOT and two relocs. */
2168 if (tls_type == TLS_GD)
2172 dyn = htab->root.dynamic_sections_created;
2173 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info), h))
2175 if (tls_type == TLS_GD)
2176 htab->root.srelgot->size += 2 * sizeof (Elf32_External_Rela);
2178 htab->root.srelgot->size += sizeof (Elf32_External_Rela);
2182 h->got.offset = (bfd_vma) -1;
2184 if (eh->dyn_relocs == NULL)
2187 /* In the shared -Bsymbolic case, discard space allocated for
2188 dynamic pc-relative relocs against symbols which turn out to be
2189 defined in regular objects. For the normal shared case, discard
2190 space for pc-relative relocs that have become local due to symbol
2191 visibility changes. */
2193 if (bfd_link_pic (info))
2195 if (SYMBOL_CALLS_LOCAL (info, h))
2197 struct elf_or1k_dyn_relocs **pp;
2199 for (pp = &eh->dyn_relocs; (p = *pp) != NULL;)
2201 p->count -= p->pc_count;
2210 /* Also discard relocs on undefined weak syms with non-default
2212 if (eh->dyn_relocs != NULL
2213 && h->root.type == bfd_link_hash_undefweak)
2215 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2216 eh->dyn_relocs = NULL;
2218 /* Make sure undefined weak symbols are output as a dynamic
2220 else if (h->dynindx == -1
2221 && !h->forced_local)
2223 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2230 /* For the non-shared case, discard space for relocs against
2231 symbols which turn out to need copy relocs or are not
2237 || (htab->root.dynamic_sections_created
2238 && (h->root.type == bfd_link_hash_undefweak
2239 || h->root.type == bfd_link_hash_undefined))))
2241 /* Make sure this symbol is output as a dynamic symbol.
2242 Undefined weak syms won't yet be marked as dynamic. */
2243 if (h->dynindx == -1
2244 && !h->forced_local)
2246 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2250 /* If that succeeded, we know we'll be keeping all the
2252 if (h->dynindx != -1)
2256 eh->dyn_relocs = NULL;
2261 /* Finally, allocate space. */
2262 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2264 asection *sreloc = elf_section_data (p->sec)->sreloc;
2265 sreloc->size += p->count * sizeof (Elf32_External_Rela);
2271 /* Find any dynamic relocs that apply to read-only sections. */
2274 readonly_dynrelocs (struct elf_link_hash_entry *h, void * inf)
2276 struct elf_or1k_link_hash_entry *eh;
2277 struct elf_or1k_dyn_relocs *p;
2279 eh = (struct elf_or1k_link_hash_entry *) h;
2280 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2282 asection *s = p->sec->output_section;
2284 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2286 struct bfd_link_info *info = (struct bfd_link_info *) inf;
2288 info->flags |= DF_TEXTREL;
2290 /* Not an error, just cut short the traversal. */
2297 /* Set the sizes of the dynamic sections. */
2300 or1k_elf_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
2301 struct bfd_link_info *info)
2303 struct elf_or1k_link_hash_table *htab;
2309 htab = or1k_elf_hash_table (info);
2313 dynobj = htab->root.dynobj;
2314 BFD_ASSERT (dynobj != NULL);
2316 if (htab->root.dynamic_sections_created)
2318 /* Set the contents of the .interp section to the interpreter. */
2319 if (bfd_link_executable (info) && !info->nointerp)
2321 s = bfd_get_section_by_name (dynobj, ".interp");
2322 BFD_ASSERT (s != NULL);
2323 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
2324 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
2328 /* Set up .got offsets for local syms, and space for local dynamic
2330 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
2332 bfd_signed_vma *local_got;
2333 bfd_signed_vma *end_local_got;
2334 bfd_size_type locsymcount;
2335 Elf_Internal_Shdr *symtab_hdr;
2336 unsigned char *local_tls_type;
2339 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
2342 for (s = ibfd->sections; s != NULL; s = s->next)
2344 struct elf_or1k_dyn_relocs *p;
2346 for (p = ((struct elf_or1k_dyn_relocs *)
2347 elf_section_data (s)->local_dynrel);
2351 if (! bfd_is_abs_section (p->sec)
2352 && bfd_is_abs_section (p->sec->output_section))
2354 /* Input section has been discarded, either because
2355 it is a copy of a linkonce section or due to
2356 linker script /DISCARD/, so we'll be discarding
2359 else if (p->count != 0)
2361 srel = elf_section_data (p->sec)->sreloc;
2362 srel->size += p->count * sizeof (Elf32_External_Rela);
2363 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
2364 info->flags |= DF_TEXTREL;
2369 local_got = elf_local_got_refcounts (ibfd);
2373 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
2374 locsymcount = symtab_hdr->sh_info;
2375 end_local_got = local_got + locsymcount;
2376 s = htab->root.sgot;
2377 srel = htab->root.srelgot;
2378 local_tls_type = (unsigned char *) elf_or1k_local_tls_type (ibfd);
2379 for (; local_got < end_local_got; ++local_got)
2383 *local_got = s->size;
2385 /* TLS GD requires two GOT and two relocs. */
2386 if (local_tls_type != NULL && *local_tls_type == TLS_GD)
2390 if (bfd_link_pic (info))
2392 if (local_tls_type != NULL && *local_tls_type == TLS_GD)
2393 srel->size += 2 * sizeof (Elf32_External_Rela);
2395 srel->size += sizeof (Elf32_External_Rela);
2400 *local_got = (bfd_vma) -1;
2407 /* Allocate global sym .plt and .got entries, and space for global
2408 sym dynamic relocs. */
2409 elf_link_hash_traverse (&htab->root, allocate_dynrelocs, info);
2411 /* We now have determined the sizes of the various dynamic sections.
2412 Allocate memory for them. */
2414 for (s = dynobj->sections; s != NULL; s = s->next)
2416 if ((s->flags & SEC_LINKER_CREATED) == 0)
2419 if (s == htab->root.splt
2420 || s == htab->root.sgot
2421 || s == htab->root.sgotplt
2422 || s == htab->root.sdynbss
2423 || s == htab->root.sdynrelro)
2425 /* Strip this section if we don't need it; see the
2428 else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rela"))
2430 if (s->size != 0 && s != htab->root.srelplt)
2433 /* We use the reloc_count field as a counter if we need
2434 to copy relocs into the output file. */
2438 /* It's not one of our sections, so don't allocate space. */
2443 /* If we don't need this section, strip it from the
2444 output file. This is mostly to handle .rela.bss and
2445 .rela.plt. We must create both sections in
2446 create_dynamic_sections, because they must be created
2447 before the linker maps input sections to output
2448 sections. The linker does that before
2449 adjust_dynamic_symbol is called, and it is that
2450 function which decides whether anything needs to go
2451 into these sections. */
2452 s->flags |= SEC_EXCLUDE;
2456 if ((s->flags & SEC_HAS_CONTENTS) == 0)
2459 /* Allocate memory for the section contents. We use bfd_zalloc
2460 here in case unused entries are not reclaimed before the
2461 section's contents are written out. This should not happen,
2462 but this way if it does, we get a R_OR1K_NONE reloc instead
2464 s->contents = bfd_zalloc (dynobj, s->size);
2466 if (s->contents == NULL)
2470 if (htab->root.dynamic_sections_created)
2472 /* Add some entries to the .dynamic section. We fill in the
2473 values later, in or1k_elf_finish_dynamic_sections, but we
2474 must add the entries now so that we get the correct size for
2475 the .dynamic section. The DT_DEBUG entry is filled in by the
2476 dynamic linker and used by the debugger. */
2477 #define add_dynamic_entry(TAG, VAL) \
2478 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
2480 if (bfd_link_executable (info))
2482 if (! add_dynamic_entry (DT_DEBUG, 0))
2486 if (htab->root.splt->size != 0)
2488 if (! add_dynamic_entry (DT_PLTGOT, 0)
2489 || ! add_dynamic_entry (DT_PLTRELSZ, 0)
2490 || ! add_dynamic_entry (DT_PLTREL, DT_RELA)
2491 || ! add_dynamic_entry (DT_JMPREL, 0))
2497 if (! add_dynamic_entry (DT_RELA, 0)
2498 || ! add_dynamic_entry (DT_RELASZ, 0)
2499 || ! add_dynamic_entry (DT_RELAENT,
2500 sizeof (Elf32_External_Rela)))
2503 /* If any dynamic relocs apply to a read-only section,
2504 then we need a DT_TEXTREL entry. */
2505 if ((info->flags & DF_TEXTREL) == 0)
2506 elf_link_hash_traverse (&htab->root, readonly_dynrelocs,
2509 if ((info->flags & DF_TEXTREL) != 0)
2511 if (! add_dynamic_entry (DT_TEXTREL, 0))
2517 #undef add_dynamic_entry
2521 /* Copy the extra info we tack onto an elf_link_hash_entry. */
2524 or1k_elf_copy_indirect_symbol (struct bfd_link_info *info,
2525 struct elf_link_hash_entry *dir,
2526 struct elf_link_hash_entry *ind)
2528 struct elf_or1k_link_hash_entry * edir;
2529 struct elf_or1k_link_hash_entry * eind;
2531 edir = (struct elf_or1k_link_hash_entry *) dir;
2532 eind = (struct elf_or1k_link_hash_entry *) ind;
2534 if (eind->dyn_relocs != NULL)
2536 if (edir->dyn_relocs != NULL)
2538 struct elf_or1k_dyn_relocs **pp;
2539 struct elf_or1k_dyn_relocs *p;
2541 /* Add reloc counts against the indirect sym to the direct sym
2542 list. Merge any entries against the same section. */
2543 for (pp = &eind->dyn_relocs; (p = *pp) != NULL;)
2545 struct elf_or1k_dyn_relocs *q;
2547 for (q = edir->dyn_relocs; q != NULL; q = q->next)
2548 if (q->sec == p->sec)
2550 q->pc_count += p->pc_count;
2551 q->count += p->count;
2558 *pp = edir->dyn_relocs;
2561 edir->dyn_relocs = eind->dyn_relocs;
2562 eind->dyn_relocs = NULL;
2565 if (ind->root.type == bfd_link_hash_indirect)
2567 if (dir->got.refcount <= 0)
2569 edir->tls_type = eind->tls_type;
2570 eind->tls_type = TLS_UNKNOWN;
2574 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
2577 /* Set the right machine number. */
2580 or1k_elf_object_p (bfd *abfd)
2582 unsigned long mach = bfd_mach_or1k;
2584 if (elf_elfheader (abfd)->e_flags & EF_OR1K_NODELAY)
2585 mach = bfd_mach_or1knd;
2587 return bfd_default_set_arch_mach (abfd, bfd_arch_or1k, mach);
2590 /* Store the machine number in the flags field. */
2593 or1k_elf_final_write_processing (bfd *abfd,
2594 bfd_boolean linker ATTRIBUTE_UNUSED)
2596 switch (bfd_get_mach (abfd))
2601 case bfd_mach_or1knd:
2602 elf_elfheader (abfd)->e_flags |= EF_OR1K_NODELAY;
2608 or1k_elf_set_private_flags (bfd *abfd, flagword flags)
2610 BFD_ASSERT (!elf_flags_init (abfd)
2611 || elf_elfheader (abfd)->e_flags == flags);
2613 elf_elfheader (abfd)->e_flags = flags;
2614 elf_flags_init (abfd) = TRUE;
2618 /* Make sure all input files are consistent with respect to
2619 EF_OR1K_NODELAY flag setting. */
2622 elf32_or1k_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
2624 bfd *obfd = info->output_bfd;
2628 in_flags = elf_elfheader (ibfd)->e_flags;
2629 out_flags = elf_elfheader (obfd)->e_flags;
2631 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2632 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
2635 if (!elf_flags_init (obfd))
2637 elf_flags_init (obfd) = TRUE;
2638 elf_elfheader (obfd)->e_flags = in_flags;
2643 if (in_flags == out_flags)
2646 if ((in_flags & EF_OR1K_NODELAY) != (out_flags & EF_OR1K_NODELAY))
2649 (_("%B: EF_OR1K_NODELAY flag mismatch with previous modules"), ibfd);
2651 bfd_set_error (bfd_error_bad_value);
2659 #define ELF_ARCH bfd_arch_or1k
2660 #define ELF_MACHINE_CODE EM_OR1K
2661 #define ELF_TARGET_ID OR1K_ELF_DATA
2662 #define ELF_MAXPAGESIZE 0x2000
2664 #define TARGET_BIG_SYM or1k_elf32_vec
2665 #define TARGET_BIG_NAME "elf32-or1k"
2667 #define elf_info_to_howto_rel NULL
2668 #define elf_info_to_howto or1k_info_to_howto_rela
2669 #define elf_backend_relocate_section or1k_elf_relocate_section
2670 #define elf_backend_gc_mark_hook or1k_elf_gc_mark_hook
2671 #define elf_backend_check_relocs or1k_elf_check_relocs
2672 #define elf_backend_reloc_type_class or1k_elf_reloc_type_class
2673 #define elf_backend_can_gc_sections 1
2674 #define elf_backend_rela_normal 1
2676 #define bfd_elf32_mkobject elf_or1k_mkobject
2678 #define bfd_elf32_bfd_merge_private_bfd_data elf32_or1k_merge_private_bfd_data
2679 #define bfd_elf32_bfd_set_private_flags or1k_elf_set_private_flags
2680 #define bfd_elf32_bfd_reloc_type_lookup or1k_reloc_type_lookup
2681 #define bfd_elf32_bfd_reloc_name_lookup or1k_reloc_name_lookup
2683 #define elf_backend_object_p or1k_elf_object_p
2684 #define elf_backend_final_write_processing or1k_elf_final_write_processing
2685 #define elf_backend_can_refcount 1
2687 #define elf_backend_plt_readonly 1
2688 #define elf_backend_want_got_plt 1
2689 #define elf_backend_want_plt_sym 0
2690 #define elf_backend_got_header_size 12
2691 #define elf_backend_dtrel_excludes_plt 1
2692 #define elf_backend_want_dynrelro 1
2694 #define bfd_elf32_bfd_link_hash_table_create or1k_elf_link_hash_table_create
2695 #define elf_backend_copy_indirect_symbol or1k_elf_copy_indirect_symbol
2696 #define elf_backend_create_dynamic_sections _bfd_elf_create_dynamic_sections
2697 #define elf_backend_finish_dynamic_sections or1k_elf_finish_dynamic_sections
2698 #define elf_backend_size_dynamic_sections or1k_elf_size_dynamic_sections
2699 #define elf_backend_adjust_dynamic_symbol or1k_elf_adjust_dynamic_symbol
2700 #define elf_backend_finish_dynamic_symbol or1k_elf_finish_dynamic_symbol
2702 #include "elf32-target.h"