1 /* Or1k-specific support for 32-bit ELF.
2 Copyright (C) 2001-2021 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 N_ONES(X) (((bfd_vma)2 << (X)) - 1)
32 #define PLT_ENTRY_SIZE 16
33 #define PLT_ENTRY_SIZE_LARGE (6*4)
34 #define PLT_MAX_INSN_COUNT 6
36 #define OR1K_MOVHI(D) (0x18000000 | (D << 21))
37 #define OR1K_ADRP(D) (0x08000000 | (D << 21))
38 #define OR1K_LWZ(D,A) (0x84000000 | (D << 21) | (A << 16))
39 #define OR1K_ADD(D,A,B) (0xE0000000 | (D << 21) | (A << 16) | (B << 11))
40 #define OR1K_ORI(D,A) (0xA8000000 | (D << 21) | (A << 16))
41 #define OR1K_ORI0(D) (0xA8000000 | (D << 21))
42 #define OR1K_JR(B) (0x44000000 | (B << 11))
43 #define OR1K_NOP 0x15000000
45 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
47 static reloc_howto_type or1k_elf_howto_table
[] =
49 /* This reloc does nothing. */
50 HOWTO (R_OR1K_NONE
, /* type */
52 3, /* size (0 = byte, 1 = short, 2 = long) */
54 false, /* pc_relative */
56 complain_overflow_dont
, /* complain_on_overflow */
57 bfd_elf_generic_reloc
, /* special_function */
58 "R_OR1K_NONE", /* name */
59 false, /* partial_inplace */
62 false), /* pcrel_offset */
66 2, /* size (0 = byte, 1 = short, 2 = long) */
68 false, /* pc_relative */
70 complain_overflow_unsigned
, /* complain_on_overflow */
71 bfd_elf_generic_reloc
, /* special_function */
72 "R_OR1K_32", /* name */
73 false, /* partial_inplace */
75 0xffffffff, /* dst_mask */
76 false), /* pcrel_offset */
80 1, /* size (0 = byte, 1 = short, 2 = long) */
82 false, /* pc_relative */
84 complain_overflow_unsigned
, /* complain_on_overflow */
85 bfd_elf_generic_reloc
, /* special_function */
86 "R_OR1K_16", /* name */
87 false, /* partial_inplace */
89 0xffff, /* dst_mask */
90 false), /* pcrel_offset */
94 0, /* size (0 = byte, 1 = short, 2 = long) */
96 false, /* pc_relative */
98 complain_overflow_unsigned
, /* complain_on_overflow */
99 bfd_elf_generic_reloc
, /* special_function */
100 "R_OR1K_8", /* name */
101 false, /* partial_inplace */
104 false), /* pcrel_offset */
106 HOWTO (R_OR1K_LO_16_IN_INSN
, /* type */
108 2, /* size (0 = byte, 1 = short, 2 = long) */
110 false, /* pc_relative */
112 complain_overflow_dont
, /* complain_on_overflow */
113 bfd_elf_generic_reloc
, /* special_function */
114 "R_OR1K_LO_16_IN_INSN", /* name */
115 false, /* partial_inplace */
117 0x0000ffff, /* dst_mask */
118 false), /* pcrel_offset */
120 HOWTO (R_OR1K_HI_16_IN_INSN
, /* type */
122 2, /* size (0 = byte, 1 = short, 2 = long) */
124 false, /* pc_relative */
126 complain_overflow_dont
, /* complain_on_overflow */
127 bfd_elf_generic_reloc
, /* special_function */
128 "R_OR1K_HI_16_IN_INSN", /* name */
129 false, /* partial_inplace */
131 0x0000ffff, /* dst_mask */
132 false), /* pcrel_offset */
134 /* A PC relative 26 bit relocation, right shifted by 2. */
135 HOWTO (R_OR1K_INSN_REL_26
, /* type */
137 2, /* size (0 = byte, 1 = short, 2 = long) */
139 true, /* pc_relative */
141 complain_overflow_signed
, /* complain_on_overflow */
142 bfd_elf_generic_reloc
, /* special_function */
143 "R_OR1K_INSN_REL_26", /* name */
144 false, /* partial_inplace */
146 0x03ffffff, /* dst_mask */
147 true), /* pcrel_offset */
149 /* GNU extension to record C++ vtable hierarchy. */
150 HOWTO (R_OR1K_GNU_VTINHERIT
, /* type */
152 2, /* size (0 = byte, 1 = short, 2 = long) */
154 false, /* pc_relative */
156 complain_overflow_dont
, /* complain_on_overflow */
157 NULL
, /* special_function */
158 "R_OR1K_GNU_VTINHERIT", /* name */
159 false, /* partial_inplace */
162 false), /* pcrel_offset */
164 /* GNU extension to record C++ vtable member usage. */
165 HOWTO (R_OR1K_GNU_VTENTRY
, /* type */
167 2, /* size (0 = byte, 1 = short, 2 = long) */
169 false, /* pc_relative */
171 complain_overflow_dont
, /* complain_on_overflow */
172 _bfd_elf_rel_vtable_reloc_fn
, /* special_function */
173 "R_OR1K_GNU_VTENTRY", /* name */
174 false, /* partial_inplace */
177 false), /* pcrel_offset */
179 HOWTO (R_OR1K_32_PCREL
,
181 2, /* size (0 = byte, 1 = short, 2 = long) */
183 true, /* pc_relative */
185 complain_overflow_signed
, /* complain_on_overflow */
186 bfd_elf_generic_reloc
, /* special_function */
187 "R_OR1K_32_PCREL", /* name */
188 false, /* partial_inplace */
190 0xffffffff, /* dst_mask */
191 true), /* pcrel_offset */
193 HOWTO (R_OR1K_16_PCREL
,
195 1, /* size (0 = byte, 1 = short, 2 = long) */
197 true, /* pc_relative */
199 complain_overflow_signed
, /* complain_on_overflow */
200 bfd_elf_generic_reloc
, /* special_function */
201 "R_OR1K_16_PCREL", /* name */
202 false, /* partial_inplace */
204 0xffff, /* dst_mask */
205 true), /* pcrel_offset */
207 HOWTO (R_OR1K_8_PCREL
,
209 0, /* size (0 = byte, 1 = short, 2 = long) */
211 true, /* pc_relative */
213 complain_overflow_signed
, /* complain_on_overflow */
214 bfd_elf_generic_reloc
, /* special_function */
215 "R_OR1K_8_PCREL", /* name */
216 false, /* partial_inplace */
219 true), /* pcrel_offset */
221 HOWTO (R_OR1K_GOTPC_HI16
, /* Type. */
222 16, /* Rightshift. */
223 2, /* Size (0 = byte, 1 = short, 2 = long). */
225 true, /* PC_relative. */
227 complain_overflow_dont
, /* Complain on overflow. */
228 bfd_elf_generic_reloc
, /* Special Function. */
229 "R_OR1K_GOTPC_HI16", /* Name. */
230 false, /* Partial Inplace. */
231 0, /* Source Mask. */
232 0xffff, /* Dest Mask. */
233 true), /* PC relative offset? */
235 HOWTO (R_OR1K_GOTPC_LO16
, /* Type. */
237 2, /* Size (0 = byte, 1 = short, 2 = long). */
239 true, /* PC_relative. */
241 complain_overflow_dont
, /* Complain on overflow. */
242 bfd_elf_generic_reloc
, /* Special Function. */
243 "R_OR1K_GOTPC_LO16", /* Name. */
244 false, /* Partial Inplace. */
245 0, /* Source Mask. */
246 0xffff, /* Dest Mask. */
247 true), /* PC relative offset? */
249 HOWTO (R_OR1K_GOT16
, /* type */
251 2, /* size (0 = byte, 1 = short, 2 = long) */
253 false, /* pc_relative */
255 complain_overflow_signed
, /* complain_on_overflow */
256 bfd_elf_generic_reloc
, /* special_function */
257 "R_OR1K_GOT16", /* name */
258 false, /* partial_inplace */
260 0xffff, /* dst_mask */
261 false), /* pcrel_offset */
263 /* A 26 bit PLT relocation. Shifted by 2. */
264 HOWTO (R_OR1K_PLT26
, /* Type. */
266 2, /* Size (0 = byte, 1 = short, 2 = long). */
268 true, /* pc_relative. */
270 complain_overflow_signed
, /* Complain on overflow. */
271 bfd_elf_generic_reloc
, /* Special Function. */
272 "R_OR1K_PLT26", /* Name. */
273 false, /* Partial Inplace. */
274 0, /* Source Mask. */
275 0x03ffffff, /* Dest Mask. */
276 true), /* PC relative offset? */
278 HOWTO (R_OR1K_GOTOFF_HI16
, /* type */
280 2, /* size (0 = byte, 1 = short, 2 = long) */
282 false, /* pc_relative */
284 complain_overflow_dont
, /* complain_on_overflow */
285 bfd_elf_generic_reloc
, /* special_function */
286 "R_OR1K_GOTOFF_HI16", /* name */
287 false, /* partial_inplace */
289 0xffff, /* dst_mask */
290 false), /* pcrel_offset */
292 HOWTO (R_OR1K_GOTOFF_LO16
, /* type */
294 2, /* size (0 = byte, 1 = short, 2 = long) */
296 false, /* pc_relative */
298 complain_overflow_dont
, /* complain_on_overflow */
299 bfd_elf_generic_reloc
, /* special_function */
300 "R_OR1K_GOTOFF_LO16", /* name */
301 false, /* partial_inplace */
303 0xffff, /* dst_mask */
304 false), /* pcrel_offset */
306 HOWTO (R_OR1K_COPY
, /* type */
308 2, /* size (0 = byte, 1 = short, 2 = long) */
310 false, /* pc_relative */
312 complain_overflow_bitfield
, /* complain_on_overflow */
313 bfd_elf_generic_reloc
, /* special_function */
314 "R_OR1K_COPY", /* name */
315 false, /* partial_inplace */
316 0xffffffff, /* src_mask */
317 0xffffffff, /* dst_mask */
318 false), /* pcrel_offset */
320 HOWTO (R_OR1K_GLOB_DAT
, /* type */
322 2, /* size (0 = byte, 1 = short, 2 = long) */
324 false, /* pc_relative */
326 complain_overflow_bitfield
, /* complain_on_overflow */
327 bfd_elf_generic_reloc
, /* special_function */
328 "R_OR1K_GLOB_DAT", /* name */
329 false, /* partial_inplace */
330 0xffffffff, /* src_mask */
331 0xffffffff, /* dst_mask */
332 false), /* pcrel_offset */
334 HOWTO (R_OR1K_JMP_SLOT
, /* type */
336 2, /* size (0 = byte, 1 = short, 2 = long) */
338 false, /* pc_relative */
340 complain_overflow_bitfield
, /* complain_on_overflow */
341 bfd_elf_generic_reloc
, /* special_function */
342 "R_OR1K_JMP_SLOT", /* name */
343 false, /* partial_inplace */
344 0xffffffff, /* src_mask */
345 0xffffffff, /* dst_mask */
346 false), /* pcrel_offset */
348 HOWTO (R_OR1K_RELATIVE
, /* type */
350 2, /* size (0 = byte, 1 = short, 2 = long) */
352 false, /* pc_relative */
354 complain_overflow_bitfield
, /* complain_on_overflow */
355 bfd_elf_generic_reloc
, /* special_function */
356 "R_OR1K_RELATIVE", /* name */
357 false, /* partial_inplace */
358 0xffffffff, /* src_mask */
359 0xffffffff, /* dst_mask */
360 false), /* pcrel_offset */
362 HOWTO (R_OR1K_TLS_GD_HI16
, /* type */
364 2, /* size (0 = byte, 1 = short, 2 = long) */
366 false, /* pc_relative */
368 complain_overflow_dont
, /* complain_on_overflow */
369 bfd_elf_generic_reloc
, /* special_function */
370 "R_OR1K_TLS_GD_HI16", /* name */
371 false, /* partial_inplace */
373 0xffff, /* dst_mask */
374 false), /* pcrel_offset */
376 HOWTO (R_OR1K_TLS_GD_LO16
, /* type */
378 2, /* size (0 = byte, 1 = short, 2 = long) */
380 false, /* pc_relative */
382 complain_overflow_dont
, /* complain_on_overflow */
383 bfd_elf_generic_reloc
, /* special_function */
384 "R_OR1K_TLS_GD_LO16", /* name */
385 false, /* partial_inplace */
387 0xffff, /* dst_mask */
388 false), /* pcrel_offset */
390 HOWTO (R_OR1K_TLS_LDM_HI16
, /* type */
392 2, /* size (0 = byte, 1 = short, 2 = long) */
394 false, /* pc_relative */
396 complain_overflow_dont
, /* complain_on_overflow */
397 bfd_elf_generic_reloc
, /* special_function */
398 "R_OR1K_TLS_LDM_HI16", /* name */
399 false, /* partial_inplace */
401 0xffff, /* dst_mask */
402 false), /* pcrel_offset */
404 HOWTO (R_OR1K_TLS_LDM_LO16
, /* type */
406 2, /* size (0 = byte, 1 = short, 2 = long) */
408 false, /* pc_relative */
410 complain_overflow_dont
, /* complain_on_overflow */
411 bfd_elf_generic_reloc
, /* special_function */
412 "R_OR1K_TLS_LDM_LO16", /* name */
413 false, /* partial_inplace */
415 0xffff, /* dst_mask */
416 false), /* pcrel_offset */
418 HOWTO (R_OR1K_TLS_LDO_HI16
, /* type */
420 2, /* size (0 = byte, 1 = short, 2 = long) */
422 false, /* pc_relative */
424 complain_overflow_dont
, /* complain_on_overflow */
425 bfd_elf_generic_reloc
, /* special_function */
426 "R_OR1K_TLS_LDO_HI16", /* name */
427 false, /* partial_inplace */
429 0xffff, /* dst_mask */
430 false), /* pcrel_offset */
432 HOWTO (R_OR1K_TLS_LDO_LO16
, /* type */
434 2, /* size (0 = byte, 1 = short, 2 = long) */
436 false, /* pc_relative */
438 complain_overflow_dont
, /* complain_on_overflow */
439 bfd_elf_generic_reloc
, /* special_function */
440 "R_OR1K_TLS_LDO_LO16", /* name */
441 false, /* partial_inplace */
443 0xffff, /* dst_mask */
444 false), /* pcrel_offset */
446 HOWTO (R_OR1K_TLS_IE_HI16
, /* type */
448 2, /* size (0 = byte, 1 = short, 2 = long) */
450 false, /* pc_relative */
452 complain_overflow_dont
, /* complain_on_overflow */
453 bfd_elf_generic_reloc
, /* special_function */
454 "R_OR1K_TLS_IE_HI16", /* name */
455 false, /* partial_inplace */
457 0xffff, /* dst_mask */
458 false), /* pcrel_offset */
460 HOWTO (R_OR1K_TLS_IE_LO16
, /* type */
462 2, /* size (0 = byte, 1 = short, 2 = long) */
464 false, /* pc_relative */
466 complain_overflow_dont
, /* complain_on_overflow */
467 bfd_elf_generic_reloc
, /* special_function */
468 "R_OR1K_TLS_IE_LO16", /* name */
469 false, /* partial_inplace */
471 0xffff, /* dst_mask */
472 false), /* pcrel_offset */
474 HOWTO (R_OR1K_TLS_LE_HI16
, /* type */
476 2, /* size (0 = byte, 1 = short, 2 = long) */
478 false, /* pc_relative */
480 complain_overflow_dont
, /* complain_on_overflow */
481 bfd_elf_generic_reloc
, /* special_function */
482 "R_OR1K_TLS_LE_HI16", /* name */
483 false, /* partial_inplace */
485 0xffff, /* dst_mask */
486 false), /* pcrel_offset */
488 HOWTO (R_OR1K_TLS_LE_LO16
, /* type */
490 2, /* size (0 = byte, 1 = short, 2 = long) */
492 false, /* pc_relative */
494 complain_overflow_dont
, /* complain_on_overflow */
495 bfd_elf_generic_reloc
, /* special_function */
496 "R_OR1K_TLS_LE_LO16", /* name */
497 false, /* partial_inplace */
499 0xffff, /* dst_mask */
500 false), /* pcrel_offset */
502 HOWTO (R_OR1K_TLS_TPOFF
, /* type */
504 2, /* size (0 = byte, 1 = short, 2 = long) */
506 false, /* pc_relative */
508 complain_overflow_bitfield
, /* complain_on_overflow */
509 bfd_elf_generic_reloc
, /* special_function */
510 "R_OR1K_TLS_TPOFF", /* name */
511 false, /* partial_inplace */
512 0xffffffff, /* src_mask */
513 0xffffffff, /* dst_mask */
514 false), /* pcrel_offset */
516 HOWTO (R_OR1K_TLS_DTPOFF
, /* type */
518 2, /* size (0 = byte, 1 = short, 2 = long) */
520 false, /* pc_relative */
522 complain_overflow_bitfield
, /* complain_on_overflow */
523 bfd_elf_generic_reloc
, /* special_function */
524 "R_OR1K_TLS_DTPOFF", /* name */
525 false, /* partial_inplace */
526 0xffffffff, /* src_mask */
527 0xffffffff, /* dst_mask */
528 false), /* pcrel_offset */
530 HOWTO (R_OR1K_TLS_DTPMOD
, /* type */
532 2, /* size (0 = byte, 1 = short, 2 = long) */
534 false, /* pc_relative */
536 complain_overflow_bitfield
, /* complain_on_overflow */
537 bfd_elf_generic_reloc
, /* special_function */
538 "R_OR1K_TLS_DTPMOD", /* name */
539 false, /* partial_inplace */
540 0xffffffff, /* src_mask */
541 0xffffffff, /* dst_mask */
542 false), /* pcrel_offset */
544 HOWTO (R_OR1K_AHI16
, /* type */
546 2, /* size (0 = byte, 1 = short, 2 = long) */
548 false, /* pc_relative */
550 complain_overflow_dont
, /* complain_on_overflow */
551 bfd_elf_generic_reloc
, /* special_function */
552 "R_OR1K_AHI16", /* name */
553 false, /* partial_inplace */
555 0xffff, /* dst_mask */
556 false), /* pcrel_offset */
558 HOWTO (R_OR1K_GOTOFF_AHI16
, /* type */
560 2, /* size (0 = byte, 1 = short, 2 = long) */
562 false, /* pc_relative */
564 complain_overflow_dont
, /* complain_on_overflow */
565 bfd_elf_generic_reloc
, /* special_function */
566 "R_OR1K_GOTOFF_AHI16", /* name */
567 false, /* partial_inplace */
569 0xffff, /* dst_mask */
570 false), /* pcrel_offset */
572 HOWTO (R_OR1K_TLS_IE_AHI16
, /* type */
574 2, /* size (0 = byte, 1 = short, 2 = long) */
576 false, /* pc_relative */
578 complain_overflow_dont
, /* complain_on_overflow */
579 bfd_elf_generic_reloc
, /* special_function */
580 "R_OR1K_TLS_IE_AHI16", /* name */
581 false, /* partial_inplace */
583 0xffff, /* dst_mask */
584 false), /* pcrel_offset */
586 HOWTO (R_OR1K_TLS_LE_AHI16
, /* type */
588 2, /* size (0 = byte, 1 = short, 2 = long) */
590 false, /* pc_relative */
592 complain_overflow_dont
, /* complain_on_overflow */
593 bfd_elf_generic_reloc
, /* special_function */
594 "R_OR1K_TLS_LE_AHI16", /* name */
595 false, /* partial_inplace */
597 0xffff, /* dst_mask */
598 false), /* pcrel_offset */
600 HOWTO (R_OR1K_SLO16
, /* type */
602 2, /* size (0 = byte, 1 = short, 2 = long) */
604 false, /* pc_relative */
606 complain_overflow_dont
, /* complain_on_overflow */
607 bfd_elf_generic_reloc
, /* special_function */
608 "R_OR1K_SLO16", /* name */
609 false, /* partial_inplace */
611 0xffff, /* dst_mask */
612 false), /* pcrel_offset */
614 HOWTO (R_OR1K_GOTOFF_SLO16
, /* type */
616 2, /* size (0 = byte, 1 = short, 2 = long) */
618 false, /* pc_relative */
620 complain_overflow_dont
, /* complain_on_overflow */
621 bfd_elf_generic_reloc
, /* special_function */
622 "R_OR1K_GOTOFF_SLO16", /* name */
623 false, /* partial_inplace */
625 0xffff, /* dst_mask */
626 false), /* pcrel_offset */
628 HOWTO (R_OR1K_TLS_LE_SLO16
, /* type */
630 2, /* size (0 = byte, 1 = short, 2 = long) */
632 false, /* pc_relative */
634 complain_overflow_dont
, /* complain_on_overflow */
635 bfd_elf_generic_reloc
, /* special_function */
636 "R_OR1K_TLS_LE_SLO16", /* name */
637 false, /* partial_inplace */
639 0xffff, /* dst_mask */
640 false), /* pcrel_offset */
642 /* A page relative 21 bit relocation, right shifted by 13, aligned.
643 Note that this is *page* relative, not pc relative. The idea is
644 similar, but normally the section alignment is not such that the
645 assembler can infer a final value, which it attempts to do with
646 pc-relative relocations to local symbols. */
647 HOWTO (R_OR1K_PCREL_PG21
, /* type */
649 2, /* size (0 = byte, 1 = short, 2 = long) */
651 false, /* pc_relative */
653 complain_overflow_signed
, /* complain_on_overflow */
654 bfd_elf_generic_reloc
, /* special_function */
655 "R_OR1K_PCREL_PG21", /* name */
656 false, /* partial_inplace */
658 0x001fffff, /* dst_mask */
659 true), /* pcrel_offset */
661 HOWTO (R_OR1K_GOT_PG21
, /* type */
663 2, /* size (0 = byte, 1 = short, 2 = long) */
665 false, /* pc_relative */
667 complain_overflow_signed
, /* complain_on_overflow */
668 bfd_elf_generic_reloc
, /* special_function */
669 "R_OR1K_GOT_PG21", /* name */
670 false, /* partial_inplace */
672 0x001fffff, /* dst_mask */
673 true), /* pcrel_offset */
675 HOWTO (R_OR1K_TLS_GD_PG21
, /* type */
677 2, /* size (0 = byte, 1 = short, 2 = long) */
679 false, /* pc_relative */
681 complain_overflow_signed
, /* complain_on_overflow */
682 bfd_elf_generic_reloc
, /* special_function */
683 "R_OR1K_TLS_GD_PG21", /* name */
684 false, /* partial_inplace */
686 0x001fffff, /* dst_mask */
687 true), /* pcrel_offset */
689 HOWTO (R_OR1K_TLS_LDM_PG21
, /* type */
691 2, /* size (0 = byte, 1 = short, 2 = long) */
693 false, /* pc_relative */
695 complain_overflow_signed
, /* complain_on_overflow */
696 bfd_elf_generic_reloc
, /* special_function */
697 "R_OR1K_TLS_LDM_PG21", /* name */
698 false, /* partial_inplace */
700 0x001fffff, /* dst_mask */
701 true), /* pcrel_offset */
703 HOWTO (R_OR1K_TLS_IE_PG21
, /* type */
705 2, /* size (0 = byte, 1 = short, 2 = long) */
707 false, /* pc_relative */
709 complain_overflow_signed
, /* complain_on_overflow */
710 bfd_elf_generic_reloc
, /* special_function */
711 "R_OR1K_TLS_IE_PG21", /* name */
712 false, /* partial_inplace */
714 0x001fffff, /* dst_mask */
715 true), /* pcrel_offset */
717 HOWTO (R_OR1K_LO13
, /* type */
719 2, /* size (0 = byte, 1 = short, 2 = long) */
721 false, /* pc_relative */
723 complain_overflow_dont
, /* complain_on_overflow */
724 bfd_elf_generic_reloc
, /* special_function */
725 "R_OR1K_LO13", /* name */
726 false, /* partial_inplace */
728 0xffff, /* dst_mask */
729 false), /* pcrel_offset */
731 HOWTO (R_OR1K_GOT_LO13
, /* type */
733 2, /* size (0 = byte, 1 = short, 2 = long) */
735 false, /* pc_relative */
737 complain_overflow_dont
, /* complain_on_overflow */
738 bfd_elf_generic_reloc
, /* special_function */
739 "R_OR1K_GOT_LO13", /* name */
740 false, /* partial_inplace */
742 0xffff, /* dst_mask */
743 false), /* pcrel_offset */
745 HOWTO (R_OR1K_TLS_GD_LO13
, /* type */
747 2, /* size (0 = byte, 1 = short, 2 = long) */
749 false, /* pc_relative */
751 complain_overflow_dont
, /* complain_on_overflow */
752 bfd_elf_generic_reloc
, /* special_function */
753 "R_OR1K_TLS_GD_LO13", /* name */
754 false, /* partial_inplace */
756 0xffff, /* dst_mask */
757 false), /* pcrel_offset */
759 HOWTO (R_OR1K_TLS_LDM_LO13
, /* type */
761 2, /* size (0 = byte, 1 = short, 2 = long) */
763 false, /* pc_relative */
765 complain_overflow_dont
, /* complain_on_overflow */
766 bfd_elf_generic_reloc
, /* special_function */
767 "R_OR1K_TLD_LDM_LO13", /* name */
768 false, /* partial_inplace */
770 0xffff, /* dst_mask */
771 false), /* pcrel_offset */
773 HOWTO (R_OR1K_TLS_IE_LO13
, /* type */
775 2, /* size (0 = byte, 1 = short, 2 = long) */
777 false, /* pc_relative */
779 complain_overflow_dont
, /* complain_on_overflow */
780 bfd_elf_generic_reloc
, /* special_function */
781 "R_OR1K_TLS_IE_LO13", /* name */
782 false, /* partial_inplace */
784 0xffff, /* dst_mask */
785 false), /* pcrel_offset */
787 HOWTO (R_OR1K_SLO13
, /* type */
789 2, /* size (0 = byte, 1 = short, 2 = long) */
791 false, /* pc_relative */
793 complain_overflow_dont
, /* complain_on_overflow */
794 bfd_elf_generic_reloc
, /* special_function */
795 "R_OR1K_SLO13", /* name */
796 false, /* partial_inplace */
798 0xffff, /* dst_mask */
799 false), /* pcrel_offset */
801 /* A 26 bit PLT relocation, using ADRP. Shifted by 2. */
802 HOWTO (R_OR1K_PLTA26
, /* Type. */
804 2, /* Size (0 = byte, 1 = short, 2 = long). */
806 true, /* pc_relative. */
808 complain_overflow_signed
, /* Complain on overflow. */
809 bfd_elf_generic_reloc
, /* Special Function. */
810 "R_OR1K_PLTA26", /* Name. */
811 false, /* Partial Inplace. */
812 0, /* Source Mask. */
813 0x03ffffff, /* Dest Mask. */
814 true), /* PC relative offset? */
816 HOWTO (R_OR1K_GOT_AHI16
, /* type */
818 2, /* size (0 = byte, 1 = short, 2 = long) */
820 false, /* pc_relative */
822 complain_overflow_signed
, /* complain_on_overflow */
823 bfd_elf_generic_reloc
, /* special_function */
824 "R_OR1K_GOT_AHI16", /* name */
825 false, /* partial_inplace */
827 0xffff, /* dst_mask */
828 false), /* pcrel_offset */
831 /* Map BFD reloc types to Or1k ELF reloc types. */
833 struct or1k_reloc_map
835 bfd_reloc_code_real_type bfd_reloc_val
;
836 unsigned int or1k_reloc_val
;
839 static const struct or1k_reloc_map or1k_reloc_map
[] =
841 { BFD_RELOC_NONE
, R_OR1K_NONE
},
842 { BFD_RELOC_32
, R_OR1K_32
},
843 { BFD_RELOC_16
, R_OR1K_16
},
844 { BFD_RELOC_8
, R_OR1K_8
},
845 { BFD_RELOC_LO16
, R_OR1K_LO_16_IN_INSN
},
846 { BFD_RELOC_HI16
, R_OR1K_HI_16_IN_INSN
},
847 { BFD_RELOC_HI16_S
, R_OR1K_AHI16
},
848 { BFD_RELOC_OR1K_REL_26
, R_OR1K_INSN_REL_26
},
849 { BFD_RELOC_VTABLE_ENTRY
, R_OR1K_GNU_VTENTRY
},
850 { BFD_RELOC_VTABLE_INHERIT
, R_OR1K_GNU_VTINHERIT
},
851 { BFD_RELOC_32_PCREL
, R_OR1K_32_PCREL
},
852 { BFD_RELOC_16_PCREL
, R_OR1K_16_PCREL
},
853 { BFD_RELOC_8_PCREL
, R_OR1K_8_PCREL
},
854 { BFD_RELOC_LO16_GOTOFF
, R_OR1K_GOTOFF_LO16
},
855 { BFD_RELOC_HI16_GOTOFF
, R_OR1K_GOTOFF_HI16
},
856 { BFD_RELOC_HI16_S_GOTOFF
, R_OR1K_GOTOFF_AHI16
},
857 { BFD_RELOC_OR1K_GOTPC_HI16
, R_OR1K_GOTPC_HI16
},
858 { BFD_RELOC_OR1K_GOTPC_LO16
, R_OR1K_GOTPC_LO16
},
859 { BFD_RELOC_OR1K_GOT16
, R_OR1K_GOT16
},
860 { BFD_RELOC_OR1K_PLT26
, R_OR1K_PLT26
},
861 { BFD_RELOC_OR1K_GLOB_DAT
, R_OR1K_GLOB_DAT
},
862 { BFD_RELOC_OR1K_COPY
, R_OR1K_COPY
},
863 { BFD_RELOC_OR1K_JMP_SLOT
, R_OR1K_JMP_SLOT
},
864 { BFD_RELOC_OR1K_RELATIVE
, R_OR1K_RELATIVE
},
865 { BFD_RELOC_OR1K_TLS_GD_HI16
, R_OR1K_TLS_GD_HI16
},
866 { BFD_RELOC_OR1K_TLS_GD_LO16
, R_OR1K_TLS_GD_LO16
},
867 { BFD_RELOC_OR1K_TLS_LDM_HI16
, R_OR1K_TLS_LDM_HI16
},
868 { BFD_RELOC_OR1K_TLS_LDM_LO16
, R_OR1K_TLS_LDM_LO16
},
869 { BFD_RELOC_OR1K_TLS_LDO_HI16
, R_OR1K_TLS_LDO_HI16
},
870 { BFD_RELOC_OR1K_TLS_LDO_LO16
, R_OR1K_TLS_LDO_LO16
},
871 { BFD_RELOC_OR1K_TLS_IE_HI16
, R_OR1K_TLS_IE_HI16
},
872 { BFD_RELOC_OR1K_TLS_IE_LO16
, R_OR1K_TLS_IE_LO16
},
873 { BFD_RELOC_OR1K_TLS_IE_AHI16
, R_OR1K_TLS_IE_AHI16
},
874 { BFD_RELOC_OR1K_TLS_LE_HI16
, R_OR1K_TLS_LE_HI16
},
875 { BFD_RELOC_OR1K_TLS_LE_LO16
, R_OR1K_TLS_LE_LO16
},
876 { BFD_RELOC_OR1K_TLS_LE_AHI16
, R_OR1K_TLS_LE_AHI16
},
877 { BFD_RELOC_OR1K_SLO16
, R_OR1K_SLO16
},
878 { BFD_RELOC_OR1K_GOTOFF_SLO16
, R_OR1K_GOTOFF_SLO16
},
879 { BFD_RELOC_OR1K_TLS_LE_SLO16
, R_OR1K_TLS_LE_SLO16
},
880 { BFD_RELOC_OR1K_PCREL_PG21
, R_OR1K_PCREL_PG21
},
881 { BFD_RELOC_OR1K_GOT_PG21
, R_OR1K_GOT_PG21
},
882 { BFD_RELOC_OR1K_TLS_GD_PG21
, R_OR1K_TLS_GD_PG21
},
883 { BFD_RELOC_OR1K_TLS_LDM_PG21
, R_OR1K_TLS_LDM_PG21
},
884 { BFD_RELOC_OR1K_TLS_IE_PG21
, R_OR1K_TLS_IE_PG21
},
885 { BFD_RELOC_OR1K_LO13
, R_OR1K_LO13
},
886 { BFD_RELOC_OR1K_GOT_LO13
, R_OR1K_GOT_LO13
},
887 { BFD_RELOC_OR1K_TLS_GD_LO13
, R_OR1K_TLS_GD_LO13
},
888 { BFD_RELOC_OR1K_TLS_LDM_LO13
, R_OR1K_TLS_LDM_LO13
},
889 { BFD_RELOC_OR1K_TLS_IE_LO13
, R_OR1K_TLS_IE_LO13
},
890 { BFD_RELOC_OR1K_SLO13
, R_OR1K_SLO13
},
891 { BFD_RELOC_OR1K_PLTA26
, R_OR1K_PLTA26
},
892 { BFD_RELOC_OR1K_GOT_AHI16
, R_OR1K_GOT_AHI16
},
895 /* tls_type is a mask used to track how each symbol is accessed,
896 it may be accessed via multiple types of TLS access methods.
897 We track this for sizing (allocating got + relocation section space) and
898 for how to process relocations. */
899 #define TLS_UNKNOWN 0
906 /* The size of the TLS thread control block, used to offset LE access. */
909 /* ELF linker hash entry. */
910 struct elf_or1k_link_hash_entry
912 struct elf_link_hash_entry root
;
914 /* For calculating PLT size. */
916 /* Track type of TLS access. */
917 unsigned char tls_type
;
920 /* ELF object data. */
921 struct elf_or1k_obj_tdata
923 struct elf_obj_tdata root
;
925 /* tls_type for each local got entry. */
926 unsigned char *local_tls_type
;
929 #define elf_or1k_tdata(abfd) \
930 ((struct elf_or1k_obj_tdata *) (abfd)->tdata.any)
932 #define elf_or1k_local_tls_type(abfd) \
933 (elf_or1k_tdata (abfd)->local_tls_type)
935 /* ELF linker hash table. */
936 struct elf_or1k_link_hash_table
938 struct elf_link_hash_table root
;
945 elf_or1k_plt_entry_size (bfd_vma plt_index
)
949 plt_reloc
= plt_index
* sizeof (Elf32_External_Rela
);
951 return (plt_reloc
> 0xffff) ? PLT_ENTRY_SIZE_LARGE
: PLT_ENTRY_SIZE
;
954 /* Get the ELF linker hash table from a link_info structure. */
955 #define or1k_elf_hash_table(p) \
956 ((is_elf_hash_table ((p)->hash) \
957 && elf_hash_table_id (elf_hash_table (p)) == OR1K_ELF_DATA) \
958 ? (struct elf_or1k_link_hash_table *) (p)->hash : NULL)
961 elf_or1k_mkobject (bfd
*abfd
)
963 return bfd_elf_allocate_object (abfd
, sizeof (struct elf_or1k_obj_tdata
),
967 /* Create an entry in an or1k ELF linker hash table. */
969 static struct bfd_hash_entry
*
970 or1k_elf_link_hash_newfunc (struct bfd_hash_entry
*entry
,
971 struct bfd_hash_table
*table
,
974 struct elf_or1k_link_hash_entry
*ret
=
975 (struct elf_or1k_link_hash_entry
*) entry
;
977 /* Allocate the structure if it has not already been allocated by a
980 ret
= bfd_hash_allocate (table
,
981 sizeof (struct elf_or1k_link_hash_entry
));
985 /* Call the allocation method of the superclass. */
986 ret
= ((struct elf_or1k_link_hash_entry
*)
987 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
991 struct elf_or1k_link_hash_entry
*eh
;
993 eh
= (struct elf_or1k_link_hash_entry
*) ret
;
994 eh
->tls_type
= TLS_UNKNOWN
;
997 return (struct bfd_hash_entry
*) ret
;
1000 /* Create an or1k ELF linker hash table. */
1002 static struct bfd_link_hash_table
*
1003 or1k_elf_link_hash_table_create (bfd
*abfd
)
1005 struct elf_or1k_link_hash_table
*ret
;
1006 size_t amt
= sizeof (struct elf_or1k_link_hash_table
);
1008 ret
= bfd_zmalloc (amt
);
1012 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
1013 or1k_elf_link_hash_newfunc
,
1014 sizeof (struct elf_or1k_link_hash_entry
),
1021 return &ret
->root
.root
;
1024 static reloc_howto_type
*
1025 or1k_reloc_type_lookup (bfd
* abfd ATTRIBUTE_UNUSED
,
1026 bfd_reloc_code_real_type bcode
)
1030 for (i
= 0; i
< ARRAY_SIZE (or1k_reloc_map
); i
++)
1031 if (or1k_reloc_map
[i
].bfd_reloc_val
== bcode
)
1033 unsigned int ocode
= or1k_reloc_map
[i
].or1k_reloc_val
;
1034 if (ocode
< (unsigned int) R_OR1K_max
)
1035 return &or1k_elf_howto_table
[ocode
];
1043 static reloc_howto_type
*
1044 or1k_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
1049 for (i
= 0; i
< R_OR1K_max
; i
++)
1050 if (or1k_elf_howto_table
[i
].name
!= NULL
1051 && strcasecmp (or1k_elf_howto_table
[i
].name
, r_name
) == 0)
1052 return &or1k_elf_howto_table
[i
];
1057 /* Set the howto pointer for an Or1k ELF reloc. */
1060 or1k_info_to_howto_rela (bfd
* abfd
,
1061 arelent
* cache_ptr
,
1062 Elf_Internal_Rela
* dst
)
1064 unsigned int r_type
;
1066 r_type
= ELF32_R_TYPE (dst
->r_info
);
1067 if (r_type
>= (unsigned int) R_OR1K_max
)
1069 /* xgettext:c-format */
1070 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
1072 bfd_set_error (bfd_error_bad_value
);
1075 cache_ptr
->howto
= & or1k_elf_howto_table
[r_type
];
1079 /* Return the relocation value for @tpoff relocations.. */
1081 tpoff (struct bfd_link_info
*info
, bfd_vma address
, bool dynamic
)
1083 struct elf_link_hash_table
*htab
= elf_hash_table (info
);
1086 /* If tls_sec is NULL, we should have signalled an error already. */
1087 if (htab
->tls_sec
== NULL
)
1091 return address
- htab
->tls_sec
->vma
;
1094 /* On or1k, the tp points to just after the tcb, if we have an alignment
1095 greater than the tcb size we need to offset by the alignment difference. */
1096 base
= align_power ((bfd_vma
) TCB_SIZE
, htab
->tls_sec
->alignment_power
)
1099 /* The thread pointer on or1k stores the address after the TCB where
1100 the data is, just compute the difference. No need to compensate
1101 for the size of TCB. */
1102 return address
- htab
->tls_sec
->vma
+ base
;
1106 /* If we have both IE and GD accesses to a symbol the IE relocations should be
1107 offset by 8 bytes because the got contains both GD and IE entries. */
1109 or1k_initial_exec_offset (reloc_howto_type
*howto
, unsigned char tls_type_mask
)
1111 switch (howto
->type
)
1113 case R_OR1K_TLS_IE_HI16
:
1114 case R_OR1K_TLS_IE_LO16
:
1115 case R_OR1K_TLS_IE_PG21
:
1116 case R_OR1K_TLS_IE_LO13
:
1117 case R_OR1K_TLS_IE_AHI16
:
1118 return (tls_type_mask
& TLS_GD
) != 0 ? 8 : 0;
1124 /* Like _bfd_final_link_relocate, but handles non-contiguous fields. */
1126 static bfd_reloc_status_type
1127 or1k_final_link_relocate (reloc_howto_type
*howto
, bfd
*input_bfd
,
1128 asection
*input_section
, bfd_byte
*contents
,
1129 bfd_vma offset
, bfd_vma value
)
1131 bfd_reloc_status_type status
= bfd_reloc_ok
;
1132 int size
= bfd_get_reloc_size (howto
);
1135 /* Sanity check the address. */
1136 if (offset
+ size
> bfd_get_section_limit_octets (input_bfd
, input_section
))
1137 return bfd_reloc_outofrange
;
1139 place
= (input_section
->output_section
->vma
1140 + input_section
->output_offset
1141 + (howto
->pcrel_offset
? offset
: 0));
1143 switch (howto
->type
)
1146 case R_OR1K_GOT_AHI16
:
1147 case R_OR1K_GOTOFF_AHI16
:
1148 case R_OR1K_TLS_IE_AHI16
:
1149 case R_OR1K_TLS_LE_AHI16
:
1150 /* Adjust the operand to match with a signed LO16. */
1154 case R_OR1K_INSN_REL_26
:
1156 /* Diagnose mis-aligned branch targets. */
1158 status
= bfd_reloc_dangerous
;
1161 case R_OR1K_PCREL_PG21
:
1162 case R_OR1K_GOT_PG21
:
1163 case R_OR1K_TLS_GD_PG21
:
1164 case R_OR1K_TLS_LDM_PG21
:
1165 case R_OR1K_TLS_IE_PG21
:
1166 value
= (value
& -8192) - (place
& -8192);
1170 case R_OR1K_GOT_LO13
:
1171 case R_OR1K_TLS_GD_LO13
:
1172 case R_OR1K_TLS_LDM_LO13
:
1173 case R_OR1K_TLS_IE_LO13
:
1179 if (howto
->pc_relative
)
1184 status
= bfd_check_overflow (howto
->complain_on_overflow
,
1187 bfd_arch_bits_per_address (input_bfd
),
1189 value
>>= howto
->rightshift
;
1191 /* If we're overwriting the entire destination,
1192 then no need to read the current contents. */
1193 if (size
== 0 || howto
->dst_mask
== N_ONES (size
))
1197 BFD_ASSERT (size
== 4);
1198 x
= bfd_get_32 (input_bfd
, contents
+ offset
);
1201 switch (howto
->type
)
1204 case R_OR1K_GOTOFF_SLO16
:
1205 case R_OR1K_TLS_LE_SLO16
:
1207 /* The split imm16 field used for stores. */
1208 x
= (x
& ~0x3e007ff) | ((value
& 0xf800) << 10) | (value
& 0x7ff);
1213 bfd_vma fieldmask
= howto
->dst_mask
;
1214 value
<<= howto
->bitpos
;
1215 x
= (x
& ~fieldmask
) | (value
& fieldmask
);
1220 /* Put the relocated value back in the object file. */
1226 bfd_put_8 (input_bfd
, x
, contents
+ offset
);
1229 bfd_put_16 (input_bfd
, x
, contents
+ offset
);
1232 bfd_put_32 (input_bfd
, x
, contents
+ offset
);
1236 bfd_put_64 (input_bfd
, x
, contents
+ offset
);
1241 (_("%pB: Cannot handle relocation value size of %d"),
1248 /* Relocate an Or1k ELF section.
1250 The RELOCATE_SECTION function is called by the new ELF backend linker
1251 to handle the relocations for a section.
1253 The relocs are always passed as Rela structures; if the section
1254 actually uses Rel structures, the r_addend field will always be
1257 This function is responsible for adjusting the section contents as
1258 necessary, and (if using Rela relocs and generating a relocatable
1259 output file) adjusting the reloc addend as necessary.
1261 This function does not have to worry about setting the reloc
1262 address or the reloc symbol index.
1264 LOCAL_SYMS is a pointer to the swapped in local symbols.
1266 LOCAL_SECTIONS is an array giving the section in the input file
1267 corresponding to the st_shndx field of each local symbol.
1269 The global hash table entry for the global symbols can be found
1270 via elf_sym_hashes (input_bfd).
1272 When generating relocatable output, this function must handle
1273 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
1274 going to be the section symbol corresponding to the output
1275 section, which means that the addend must be adjusted
1279 or1k_elf_relocate_section (bfd
*output_bfd
,
1280 struct bfd_link_info
*info
,
1282 asection
*input_section
,
1284 Elf_Internal_Rela
*relocs
,
1285 Elf_Internal_Sym
*local_syms
,
1286 asection
**local_sections
)
1288 Elf_Internal_Shdr
*symtab_hdr
;
1289 struct elf_link_hash_entry
**sym_hashes
;
1290 Elf_Internal_Rela
*rel
;
1291 Elf_Internal_Rela
*relend
;
1292 struct elf_or1k_link_hash_table
*htab
= or1k_elf_hash_table (info
);
1294 bfd_vma
*local_got_offsets
;
1295 asection
*sgot
, *splt
;
1296 bfd_vma plt_base
, got_base
, got_sym_value
;
1297 bool ret_val
= true;
1298 bool saw_gotha
= false;
1303 local_got_offsets
= elf_local_got_offsets (input_bfd
);
1305 sreloc
= elf_section_data (input_section
)->sreloc
;
1307 splt
= htab
->root
.splt
;
1310 plt_base
= splt
->output_section
->vma
+ splt
->output_offset
;
1312 sgot
= htab
->root
.sgot
;
1313 got_sym_value
= got_base
= 0;
1316 struct elf_link_hash_entry
*hgot
= htab
->root
.hgot
;
1317 got_sym_value
= (hgot
->root
.u
.def
.value
1318 + hgot
->root
.u
.def
.section
->output_section
->vma
1319 + hgot
->root
.u
.def
.section
->output_offset
);
1320 got_base
= sgot
->output_section
->vma
+ sgot
->output_offset
;
1323 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1324 sym_hashes
= elf_sym_hashes (input_bfd
);
1325 relend
= relocs
+ input_section
->reloc_count
;
1327 for (rel
= relocs
; rel
< relend
; rel
++)
1329 reloc_howto_type
*howto
;
1330 unsigned long r_symndx
;
1331 Elf_Internal_Sym
*sym
;
1333 struct elf_link_hash_entry
*h
;
1335 bfd_reloc_status_type r
;
1336 const char *name
= NULL
;
1339 r_type
= ELF32_R_TYPE (rel
->r_info
);
1340 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1342 if (r_type
== R_OR1K_GNU_VTINHERIT
1343 || r_type
== R_OR1K_GNU_VTENTRY
)
1346 if (r_type
< 0 || r_type
>= (int) R_OR1K_max
)
1349 (_("%pB: unknown relocation type %d"),
1350 input_bfd
, (int) r_type
);
1351 bfd_set_error (bfd_error_bad_value
);
1356 howto
= or1k_elf_howto_table
+ ELF32_R_TYPE (rel
->r_info
);
1361 if (r_symndx
< symtab_hdr
->sh_info
)
1363 sym
= local_syms
+ r_symndx
;
1364 sec
= local_sections
[r_symndx
];
1365 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
1367 name
= bfd_elf_string_from_elf_section
1368 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
);
1369 name
= name
== NULL
? bfd_section_name (sec
) : name
;
1373 bool unresolved_reloc
, warned
, ignored
;
1375 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
1376 r_symndx
, symtab_hdr
, sym_hashes
,
1378 unresolved_reloc
, warned
, ignored
);
1379 name
= h
->root
.root
.string
;
1382 if (sec
!= NULL
&& discarded_section (sec
))
1383 RELOC_AGAINST_DISCARDED_SECTION (info
, input_bfd
, input_section
,
1384 rel
, 1, relend
, howto
, 0, contents
);
1386 if (bfd_link_relocatable (info
))
1389 switch (howto
->type
)
1393 /* If the call is not local, redirect the branch to the PLT.
1394 Otherwise do nothing to send the branch to the symbol direct. */
1395 if (!SYMBOL_CALLS_LOCAL (info
, h
)
1396 && h
->plt
.offset
!= (bfd_vma
) -1)
1397 relocation
= plt_base
+ h
->plt
.offset
;
1399 /* Addend should be zero. */
1400 if (rel
->r_addend
!= 0)
1403 (_("%pB: addend should be zero for plt relocations"),
1405 bfd_set_error (bfd_error_bad_value
);
1410 case R_OR1K_GOT_AHI16
:
1412 case R_OR1K_GOT_PG21
:
1413 case R_OR1K_GOT_LO13
:
1417 /* Relocation is to the entry for this symbol
1418 in the global offset table. */
1419 BFD_ASSERT (sgot
!= NULL
);
1424 off
= h
->got
.offset
;
1425 BFD_ASSERT (off
!= (bfd_vma
) -1);
1427 dyn
= htab
->root
.dynamic_sections_created
;
1428 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
,
1429 bfd_link_pic (info
),
1431 || (bfd_link_pic (info
)
1432 && SYMBOL_REFERENCES_LOCAL (info
, h
)))
1434 /* This is actually a static link, or it is a -Bsymbolic
1435 link and the symbol is defined locally, or the symbol
1436 was forced to be local because of a version file.
1437 We must initialize this entry in the GOT. Since the
1438 offset must always be a multiple of 4, we use the least
1439 significant bit to record whether we have initialized
1442 When doing a dynamic link, we create a .rela.got
1443 relocation entry to initialize the value. This
1444 is done in the finish_dynamic_symbol routine. */
1449 /* Write entry in GOT. */
1450 bfd_put_32 (output_bfd
, relocation
,
1451 sgot
->contents
+ off
);
1452 /* Mark GOT entry as having been written. */
1461 BFD_ASSERT (local_got_offsets
!= NULL
1462 && local_got_offsets
[r_symndx
] != (bfd_vma
) -1);
1464 /* Get offset into GOT table. */
1465 off
= local_got_offsets
[r_symndx
];
1467 /* The offset must always be a multiple of 4. We use
1468 the least significant bit to record whether we have
1469 already processed this entry. */
1474 /* Write entry in GOT. */
1475 bfd_put_32 (output_bfd
, relocation
, sgot
->contents
+ off
);
1476 if (bfd_link_pic (info
))
1479 Elf_Internal_Rela outrel
;
1481 /* We need to generate a R_OR1K_RELATIVE reloc
1482 for the dynamic linker. */
1483 srelgot
= htab
->root
.srelgot
;
1484 BFD_ASSERT (srelgot
!= NULL
);
1486 outrel
.r_offset
= got_base
+ off
;
1487 outrel
.r_info
= ELF32_R_INFO (0, R_OR1K_RELATIVE
);
1488 outrel
.r_addend
= relocation
;
1489 loc
= srelgot
->contents
;
1490 loc
+= (srelgot
->reloc_count
1491 * sizeof (Elf32_External_Rela
));
1492 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
1493 ++srelgot
->reloc_count
;
1495 local_got_offsets
[r_symndx
] |= 1;
1499 /* The GOT_PG21 and GOT_LO13 relocs are pc-relative,
1500 while the GOT16 reloc is GOT relative. */
1501 relocation
= got_base
+ off
;
1502 if (r_type
== R_OR1K_GOT16
1503 || r_type
== R_OR1K_GOT_AHI16
)
1504 relocation
-= got_sym_value
;
1506 if (r_type
== R_OR1K_GOT_AHI16
)
1509 /* If we have a R_OR1K_GOT16 followed by a R_OR1K_GOT_AHI16
1510 relocation we assume the code is doing the right thing to avoid
1511 overflows. Here we mask the lower 16-bit of the relocation to
1512 avoid overflow validation failures. */
1513 if (r_type
== R_OR1K_GOT16
&& saw_gotha
)
1514 relocation
&= 0xffff;
1516 /* Addend should be zero. */
1517 if (rel
->r_addend
!= 0)
1520 (_("%pB: addend should be zero for got relocations"),
1522 bfd_set_error (bfd_error_bad_value
);
1528 case R_OR1K_GOTOFF_LO16
:
1529 case R_OR1K_GOTOFF_HI16
:
1530 case R_OR1K_GOTOFF_AHI16
:
1531 case R_OR1K_GOTOFF_SLO16
:
1532 /* Relocation is offset from GOT. */
1533 BFD_ASSERT (sgot
!= NULL
);
1534 if (!SYMBOL_REFERENCES_LOCAL (info
, h
))
1537 (_("%pB: gotoff relocation against dynamic symbol %s"),
1538 input_bfd
, h
->root
.root
.string
);
1540 bfd_set_error (bfd_error_bad_value
);
1542 relocation
-= got_sym_value
;
1545 case R_OR1K_INSN_REL_26
:
1546 /* For a non-shared link, these will reference plt or call the
1547 version of actual object. */
1548 if (bfd_link_pic (info
) && !SYMBOL_CALLS_LOCAL (info
, h
))
1551 (_("%pB: pc-relative relocation against dynamic symbol %s"),
1554 bfd_set_error (bfd_error_bad_value
);
1558 case R_OR1K_PCREL_PG21
:
1561 /* For a non-shared link, these will reference either the plt
1562 or a .dynbss copy of the symbol. */
1563 if (bfd_link_pic (info
) && !SYMBOL_REFERENCES_LOCAL (info
, h
))
1566 (_("%pB: pc-relative relocation against dynamic symbol %s"),
1569 bfd_set_error (bfd_error_bad_value
);
1573 case R_OR1K_HI_16_IN_INSN
:
1574 case R_OR1K_LO_16_IN_INSN
:
1577 if (bfd_link_pic (info
))
1580 (_("%pB: non-pic relocation against symbol %s"),
1583 bfd_set_error (bfd_error_bad_value
);
1590 /* r_symndx will be STN_UNDEF (zero) only for relocs against symbols
1591 from removed linkonce sections, or sections discarded by
1593 if (r_symndx
== STN_UNDEF
1594 || (input_section
->flags
& SEC_ALLOC
) == 0)
1597 /* Emit a direct relocation if the symbol is dynamic,
1598 or a RELATIVE reloc for shared objects. We can omit
1599 RELATIVE relocs to local undefweak symbols. */
1600 if (bfd_link_pic (info
)
1602 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
1603 || h
->root
.type
!= bfd_link_hash_undefweak
)
1607 && ((h
->def_dynamic
&& !h
->def_regular
)
1608 || h
->root
.type
== bfd_link_hash_undefweak
1609 || h
->root
.type
== bfd_link_hash_undefined
)))
1611 Elf_Internal_Rela outrel
;
1615 /* When generating a shared object, these relocations
1616 are copied into the output file to be resolved at run
1619 BFD_ASSERT (sreloc
!= NULL
);
1624 _bfd_elf_section_offset (output_bfd
, info
, input_section
,
1626 if (outrel
.r_offset
== (bfd_vma
) -1)
1628 else if (outrel
.r_offset
== (bfd_vma
) -2)
1630 outrel
.r_offset
+= (input_section
->output_section
->vma
1631 + input_section
->output_offset
);
1634 memset (&outrel
, 0, sizeof outrel
);
1635 else if (SYMBOL_REFERENCES_LOCAL (info
, h
))
1637 outrel
.r_info
= ELF32_R_INFO (0, R_OR1K_RELATIVE
);
1638 outrel
.r_addend
= relocation
+ rel
->r_addend
;
1642 BFD_ASSERT (h
->dynindx
!= -1);
1643 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, r_type
);
1644 outrel
.r_addend
= rel
->r_addend
;
1647 loc
= sreloc
->contents
;
1648 loc
+= sreloc
->reloc_count
++ * sizeof (Elf32_External_Rela
);
1649 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
1655 case R_OR1K_TLS_LDM_HI16
:
1656 case R_OR1K_TLS_LDM_LO16
:
1657 case R_OR1K_TLS_LDM_PG21
:
1658 case R_OR1K_TLS_LDM_LO13
:
1659 case R_OR1K_TLS_LDO_HI16
:
1660 case R_OR1K_TLS_LDO_LO16
:
1661 /* TODO: implement support for local dynamic. */
1664 (_("%pB: support for local dynamic not implemented"),
1666 bfd_set_error (bfd_error_bad_value
);
1669 case R_OR1K_TLS_GD_HI16
:
1670 case R_OR1K_TLS_GD_LO16
:
1671 case R_OR1K_TLS_GD_PG21
:
1672 case R_OR1K_TLS_GD_LO13
:
1673 case R_OR1K_TLS_IE_HI16
:
1674 case R_OR1K_TLS_IE_LO16
:
1675 case R_OR1K_TLS_IE_PG21
:
1676 case R_OR1K_TLS_IE_LO13
:
1677 case R_OR1K_TLS_IE_AHI16
:
1680 Elf_Internal_Rela rela
;
1685 unsigned char tls_type
;
1687 srelgot
= htab
->root
.srelgot
;
1689 /* Mark as TLS related GOT entry by setting
1690 bit 2 to indcate TLS and bit 1 to indicate GOT. */
1693 gotoff
= h
->got
.offset
;
1694 tls_type
= ((struct elf_or1k_link_hash_entry
*) h
)->tls_type
;
1699 unsigned char *local_tls_type
;
1701 gotoff
= local_got_offsets
[r_symndx
];
1702 local_tls_type
= (unsigned char *) elf_or1k_local_tls_type (input_bfd
);
1703 tls_type
= local_tls_type
== NULL
? TLS_NONE
1704 : local_tls_type
[r_symndx
];
1705 local_got_offsets
[r_symndx
] |= 3;
1708 /* Only process the relocation once. */
1709 if ((gotoff
& 1) != 0)
1711 gotoff
+= or1k_initial_exec_offset (howto
, tls_type
);
1713 /* The PG21 and LO13 relocs are pc-relative, while the
1714 rest are GOT relative. */
1715 relocation
= got_base
+ (gotoff
& ~3);
1716 if (!(r_type
== R_OR1K_TLS_GD_PG21
1717 || r_type
== R_OR1K_TLS_GD_LO13
1718 || r_type
== R_OR1K_TLS_IE_PG21
1719 || r_type
== R_OR1K_TLS_IE_LO13
))
1720 relocation
-= got_sym_value
;
1724 BFD_ASSERT (elf_hash_table (info
)->hgot
== NULL
1725 || elf_hash_table (info
)->hgot
->root
.u
.def
.value
== 0);
1729 bool dyn
= htab
->root
.dynamic_sections_created
;
1730 bool pic
= bfd_link_pic (info
);
1732 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, pic
, h
)
1733 && (!pic
|| !SYMBOL_REFERENCES_LOCAL (info
, h
)))
1737 /* Dynamic entries will require relocations. If we do not need
1738 them we will just use the default R_OR1K_NONE and
1739 not set anything. */
1740 dynamic
= (bfd_link_pic (info
) || indx
!= 0)
1742 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
1743 || h
->root
.type
!= bfd_link_hash_undefweak
);
1746 if (dynamic
&& ((tls_type
& TLS_GD
) != 0))
1750 /* Add DTPMOD and DTPOFF GOT and rela entries. */
1751 for (i
= 0; i
< 2; ++i
)
1753 BFD_ASSERT (srelgot
->contents
!= NULL
);
1755 rela
.r_offset
= got_base
+ gotoff
+ i
*4;
1756 if (h
!= NULL
&& h
->dynindx
!= -1)
1758 rela
.r_info
= ELF32_R_INFO (h
->dynindx
,
1759 (i
== 0 ? R_OR1K_TLS_DTPMOD
: R_OR1K_TLS_DTPOFF
));
1764 rela
.r_info
= ELF32_R_INFO (0,
1765 (i
== 0 ? R_OR1K_TLS_DTPMOD
: R_OR1K_TLS_DTPOFF
));
1767 (i
== 0 ? 0 : tpoff (info
, relocation
, dynamic
));
1770 loc
= srelgot
->contents
;
1771 loc
+= (srelgot
->reloc_count
++
1772 * sizeof (Elf32_External_Rela
));
1774 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
1775 bfd_put_32 (output_bfd
, 0, sgot
->contents
+ gotoff
+ i
*4);
1779 else if ((tls_type
& TLS_GD
) != 0)
1781 bfd_put_32 (output_bfd
, 1, sgot
->contents
+ gotoff
);
1782 bfd_put_32 (output_bfd
, tpoff (info
, relocation
, dynamic
),
1783 sgot
->contents
+ gotoff
+ 4);
1786 gotoff
+= or1k_initial_exec_offset (howto
, tls_type
);
1789 if (dynamic
&& ((tls_type
& TLS_IE
) != 0))
1791 BFD_ASSERT (srelgot
->contents
!= NULL
);
1793 /* Add TPOFF GOT and rela entries. */
1794 rela
.r_offset
= got_base
+ gotoff
;
1795 if (h
!= NULL
&& h
->dynindx
!= -1)
1797 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_OR1K_TLS_TPOFF
);
1802 rela
.r_info
= ELF32_R_INFO (0, R_OR1K_TLS_TPOFF
);
1803 rela
.r_addend
= tpoff (info
, relocation
, dynamic
);
1806 loc
= srelgot
->contents
;
1807 loc
+= srelgot
->reloc_count
++ * sizeof (Elf32_External_Rela
);
1809 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
1810 bfd_put_32 (output_bfd
, 0, sgot
->contents
+ gotoff
);
1813 else if ((tls_type
& TLS_IE
) != 0)
1814 bfd_put_32 (output_bfd
, tpoff (info
, relocation
, dynamic
),
1815 sgot
->contents
+ gotoff
);
1817 /* The PG21 and LO13 relocs are pc-relative, while the
1818 rest are GOT relative. */
1819 relocation
= got_base
+ gotoff
;
1820 if (!(r_type
== R_OR1K_TLS_GD_PG21
1821 || r_type
== R_OR1K_TLS_GD_LO13
1822 || r_type
== R_OR1K_TLS_IE_PG21
1823 || r_type
== R_OR1K_TLS_IE_LO13
))
1824 relocation
-= got_sym_value
;
1828 case R_OR1K_TLS_LE_HI16
:
1829 case R_OR1K_TLS_LE_LO16
:
1830 case R_OR1K_TLS_LE_AHI16
:
1831 case R_OR1K_TLS_LE_SLO16
:
1832 /* Relocation is offset from TP. */
1833 relocation
= tpoff (info
, relocation
, 0);
1836 case R_OR1K_TLS_DTPMOD
:
1837 case R_OR1K_TLS_DTPOFF
:
1838 case R_OR1K_TLS_TPOFF
:
1839 /* These are resolved dynamically on load and shouldn't
1840 be used as linker input. */
1843 (_("%pB: will not resolve runtime TLS relocation"),
1845 bfd_set_error (bfd_error_bad_value
);
1852 r
= or1k_final_link_relocate (howto
, input_bfd
, input_section
, contents
,
1853 rel
->r_offset
, relocation
+ rel
->r_addend
);
1855 if (r
!= bfd_reloc_ok
)
1857 const char *msg
= NULL
;
1861 case bfd_reloc_overflow
:
1862 (*info
->callbacks
->reloc_overflow
)
1863 (info
, (h
? &h
->root
: NULL
), name
, howto
->name
,
1864 (bfd_vma
) 0, input_bfd
, input_section
, rel
->r_offset
);
1867 case bfd_reloc_undefined
:
1868 (*info
->callbacks
->undefined_symbol
)
1869 (info
, name
, input_bfd
, input_section
, rel
->r_offset
, true);
1872 case bfd_reloc_outofrange
:
1873 msg
= _("internal error: out of range error");
1876 case bfd_reloc_notsupported
:
1877 msg
= _("internal error: unsupported relocation error");
1880 case bfd_reloc_dangerous
:
1881 msg
= _("internal error: dangerous relocation");
1885 msg
= _("internal error: unknown error");
1890 (*info
->callbacks
->warning
) (info
, msg
, name
, input_bfd
,
1891 input_section
, rel
->r_offset
);
1898 /* Return the section that should be marked against GC for a given
1902 or1k_elf_gc_mark_hook (asection
*sec
,
1903 struct bfd_link_info
*info
,
1904 Elf_Internal_Rela
*rel
,
1905 struct elf_link_hash_entry
*h
,
1906 Elf_Internal_Sym
*sym
)
1909 switch (ELF32_R_TYPE (rel
->r_info
))
1911 case R_OR1K_GNU_VTINHERIT
:
1912 case R_OR1K_GNU_VTENTRY
:
1916 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
1919 /* Look through the relocs for a section during the first phase. */
1922 or1k_elf_check_relocs (bfd
*abfd
,
1923 struct bfd_link_info
*info
,
1925 const Elf_Internal_Rela
*relocs
)
1927 Elf_Internal_Shdr
*symtab_hdr
;
1928 struct elf_link_hash_entry
**sym_hashes
;
1929 const Elf_Internal_Rela
*rel
;
1931 const Elf_Internal_Rela
*rel_end
;
1932 struct elf_or1k_link_hash_table
*htab
;
1934 asection
*sreloc
= NULL
;
1936 if (bfd_link_relocatable (info
))
1939 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1940 sym_hashes
= elf_sym_hashes (abfd
);
1942 htab
= or1k_elf_hash_table (info
);
1946 dynobj
= htab
->root
.dynobj
;
1948 rel_end
= relocs
+ sec
->reloc_count
;
1949 for (rel
= relocs
; rel
< rel_end
; rel
++)
1951 struct elf_link_hash_entry
*h
;
1952 unsigned long r_symndx
;
1953 unsigned char tls_type
;
1956 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1957 if (r_symndx
< symtab_hdr
->sh_info
)
1961 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
1962 while (h
->root
.type
== bfd_link_hash_indirect
1963 || h
->root
.type
== bfd_link_hash_warning
)
1964 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1967 r_type
= ELF32_R_TYPE (rel
->r_info
);
1970 case R_OR1K_TLS_GD_HI16
:
1971 case R_OR1K_TLS_GD_LO16
:
1972 case R_OR1K_TLS_GD_PG21
:
1973 case R_OR1K_TLS_GD_LO13
:
1976 case R_OR1K_TLS_LDM_HI16
:
1977 case R_OR1K_TLS_LDM_LO16
:
1978 case R_OR1K_TLS_LDM_PG21
:
1979 case R_OR1K_TLS_LDM_LO13
:
1980 case R_OR1K_TLS_LDO_HI16
:
1981 case R_OR1K_TLS_LDO_LO16
:
1984 case R_OR1K_TLS_IE_HI16
:
1985 case R_OR1K_TLS_IE_LO16
:
1986 case R_OR1K_TLS_IE_PG21
:
1987 case R_OR1K_TLS_IE_LO13
:
1988 case R_OR1K_TLS_IE_AHI16
:
1991 case R_OR1K_TLS_LE_HI16
:
1992 case R_OR1K_TLS_LE_LO16
:
1993 case R_OR1K_TLS_LE_AHI16
:
1994 case R_OR1K_TLS_LE_SLO16
:
1998 tls_type
= TLS_NONE
;
2001 /* Record TLS type. */
2003 ((struct elf_or1k_link_hash_entry
*) h
)->tls_type
|= tls_type
;
2006 unsigned char *local_tls_type
;
2008 /* This is a TLS type record for a local symbol. */
2009 local_tls_type
= (unsigned char *) elf_or1k_local_tls_type (abfd
);
2010 if (local_tls_type
== NULL
)
2014 size
= symtab_hdr
->sh_info
;
2015 local_tls_type
= bfd_zalloc (abfd
, size
);
2016 if (local_tls_type
== NULL
)
2018 elf_or1k_local_tls_type (abfd
) = local_tls_type
;
2020 local_tls_type
[r_symndx
] |= tls_type
;
2025 /* This relocation describes the C++ object vtable hierarchy.
2026 Reconstruct it for later use during GC. */
2027 case R_OR1K_GNU_VTINHERIT
:
2028 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
2032 /* This relocation describes which C++ vtable entries are actually
2033 used. Record for later use during GC. */
2034 case R_OR1K_GNU_VTENTRY
:
2035 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
2039 /* This relocation requires .plt entry. */
2041 htab
->saw_plta
= true;
2047 h
->plt
.refcount
+= 1;
2051 case R_OR1K_GOT_AHI16
:
2053 case R_OR1K_GOT_PG21
:
2054 case R_OR1K_GOT_LO13
:
2055 case R_OR1K_TLS_GD_HI16
:
2056 case R_OR1K_TLS_GD_LO16
:
2057 case R_OR1K_TLS_GD_PG21
:
2058 case R_OR1K_TLS_GD_LO13
:
2059 case R_OR1K_TLS_IE_HI16
:
2060 case R_OR1K_TLS_IE_LO16
:
2061 case R_OR1K_TLS_IE_PG21
:
2062 case R_OR1K_TLS_IE_LO13
:
2063 case R_OR1K_TLS_IE_AHI16
:
2065 h
->got
.refcount
+= 1;
2068 bfd_signed_vma
*local_got_refcounts
;
2070 /* This is a global offset table entry for a local symbol. */
2071 local_got_refcounts
= elf_local_got_refcounts (abfd
);
2072 if (local_got_refcounts
== NULL
)
2076 size
= symtab_hdr
->sh_info
;
2077 size
*= sizeof (bfd_signed_vma
);
2078 local_got_refcounts
= bfd_zalloc (abfd
, size
);
2079 if (local_got_refcounts
== NULL
)
2081 elf_local_got_refcounts (abfd
) = local_got_refcounts
;
2083 local_got_refcounts
[r_symndx
] += 1;
2087 case R_OR1K_GOTOFF_HI16
:
2088 case R_OR1K_GOTOFF_LO16
:
2089 case R_OR1K_GOTOFF_AHI16
:
2090 case R_OR1K_GOTOFF_SLO16
:
2091 if (htab
->root
.sgot
== NULL
)
2094 htab
->root
.dynobj
= dynobj
= abfd
;
2095 if (!_bfd_elf_create_got_section (dynobj
, info
))
2100 case R_OR1K_INSN_REL_26
:
2101 case R_OR1K_HI_16_IN_INSN
:
2102 case R_OR1K_LO_16_IN_INSN
:
2106 case R_OR1K_PCREL_PG21
:
2110 if (h
!= NULL
&& !bfd_link_pic (info
))
2112 /* We may need a copy reloc. */
2115 /* We may also need a .plt entry. */
2116 h
->plt
.refcount
+= 1;
2117 if (r_type
!= R_OR1K_INSN_REL_26
)
2118 h
->pointer_equality_needed
= 1;
2121 /* If we are creating a shared library, and this is a reloc
2122 against a global symbol, or a non PC relative reloc
2123 against a local symbol, then we need to copy the reloc
2124 into the shared library. However, if we are linking with
2125 -Bsymbolic, we do not need to copy a reloc against a
2126 global symbol which is defined in an object we are
2127 including in the link (i.e., DEF_REGULAR is set). At
2128 this point we have not seen all the input files, so it is
2129 possible that DEF_REGULAR is not set now but will be set
2130 later (it is never cleared). In case of a weak definition,
2131 DEF_REGULAR may be cleared later by a strong definition in
2132 a shared library. We account for that possibility below by
2133 storing information in the relocs_copied field of the hash
2134 table entry. A similar situation occurs when creating
2135 shared libraries and symbol visibility changes render the
2138 If on the other hand, we are creating an executable, we
2139 may need to keep relocations for symbols satisfied by a
2140 dynamic library if we manage to avoid copy relocs for the
2143 if ((bfd_link_pic (info
)
2144 && (sec
->flags
& SEC_ALLOC
) != 0
2145 && (r_type
!= R_OR1K_INSN_REL_26
2147 && (!SYMBOLIC_BIND (info
, h
)
2148 || h
->root
.type
== bfd_link_hash_defweak
2149 || !h
->def_regular
))))
2150 || (!bfd_link_pic (info
)
2151 && (sec
->flags
& SEC_ALLOC
) != 0
2153 && (h
->root
.type
== bfd_link_hash_defweak
2154 || !h
->def_regular
)))
2156 struct elf_dyn_relocs
*sec_relocs
;
2157 struct elf_dyn_relocs
**head
;
2159 /* When creating a shared object, we must copy these
2160 relocs into the output file. We create a reloc
2161 section in dynobj and make room for the reloc. */
2165 unsigned int strndx
= elf_elfheader (abfd
)->e_shstrndx
;
2166 unsigned int shnam
= _bfd_elf_single_rel_hdr (sec
)->sh_name
;
2168 name
= bfd_elf_string_from_elf_section (abfd
, strndx
, shnam
);
2172 if (!startswith (name
, ".rela")
2173 || strcmp (bfd_section_name (sec
), name
+ 5) != 0)
2176 /* xgettext:c-format */
2177 (_("%pB: bad relocation section name `%s\'"),
2181 if (htab
->root
.dynobj
== NULL
)
2182 htab
->root
.dynobj
= abfd
;
2183 dynobj
= htab
->root
.dynobj
;
2185 sreloc
= bfd_get_section_by_name (dynobj
, name
);
2188 sreloc
= _bfd_elf_make_dynamic_reloc_section
2189 (sec
, dynobj
, 2, abfd
, /*rela?*/ true);
2194 elf_section_data (sec
)->sreloc
= sreloc
;
2197 /* If this is a global symbol, we count the number of
2198 relocations we need for this symbol. */
2200 head
= &h
->dyn_relocs
;
2203 /* Track dynamic relocs needed for local syms too.
2204 We really need local syms available to do this
2208 Elf_Internal_Sym
*isym
;
2211 isym
= bfd_sym_from_r_symndx (&htab
->root
.sym_cache
,
2216 s
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
2220 vpp
= &elf_section_data (s
)->local_dynrel
;
2221 head
= (struct elf_dyn_relocs
**) vpp
;
2225 /* Allocate this sections dynamic reolcations structure if this
2226 is a new section. */
2227 if (sec_relocs
== NULL
|| sec_relocs
->sec
!= sec
)
2229 size_t amt
= sizeof *sec_relocs
;
2230 sec_relocs
= ((struct elf_dyn_relocs
*)
2231 bfd_alloc (htab
->root
.dynobj
, amt
));
2232 if (sec_relocs
== NULL
)
2234 sec_relocs
->next
= *head
;
2236 sec_relocs
->sec
= sec
;
2237 sec_relocs
->count
= 0;
2238 sec_relocs
->pc_count
= 0;
2241 sec_relocs
->count
+= 1;
2242 if (r_type
== R_OR1K_INSN_REL_26
)
2243 sec_relocs
->pc_count
+= 1;
2254 or1k_write_plt_entry (bfd
*output_bfd
, bfd_byte
*contents
, unsigned insnj
,
2255 unsigned insns
[], size_t insn_count
)
2257 unsigned nodelay
= elf_elfheader (output_bfd
)->e_flags
& EF_OR1K_NODELAY
;
2258 unsigned output_insns
[PLT_MAX_INSN_COUNT
];
2260 /* Copy instructions into the output buffer. */
2261 for (size_t i
= 0; i
< insn_count
; i
++)
2262 output_insns
[i
] = insns
[i
];
2264 /* Honor the no-delay-slot setting. */
2265 if (insns
[insn_count
-1] == OR1K_NOP
)
2267 unsigned slot1
, slot2
;
2270 slot1
= insns
[insn_count
-2], slot2
= insnj
;
2272 slot1
= insnj
, slot2
= insns
[insn_count
-2];
2274 output_insns
[insn_count
-2] = slot1
;
2275 output_insns
[insn_count
-1] = slot2
;
2276 output_insns
[insn_count
] = OR1K_NOP
;
2280 unsigned slot1
, slot2
;
2283 slot1
= insns
[insn_count
-1], slot2
= insnj
;
2285 slot1
= insnj
, slot2
= insns
[insn_count
-1];
2287 output_insns
[insn_count
-1] = slot1
;
2288 output_insns
[insn_count
] = slot2
;
2291 /* Write out the output buffer. */
2292 for (size_t i
= 0; i
< (insn_count
+1); i
++)
2293 bfd_put_32 (output_bfd
, output_insns
[i
], contents
+ (i
*4));
2296 /* Finish up the dynamic sections. */
2299 or1k_elf_finish_dynamic_sections (bfd
*output_bfd
,
2300 struct bfd_link_info
*info
)
2303 asection
*sdyn
, *sgot
;
2304 struct elf_or1k_link_hash_table
*htab
;
2306 htab
= or1k_elf_hash_table (info
);
2310 dynobj
= htab
->root
.dynobj
;
2312 sgot
= htab
->root
.sgotplt
;
2313 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
2315 if (htab
->root
.dynamic_sections_created
)
2318 Elf32_External_Dyn
*dyncon
, *dynconend
;
2320 BFD_ASSERT (sgot
!= NULL
&& sdyn
!= NULL
);
2322 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
2323 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
2325 for (; dyncon
< dynconend
; dyncon
++)
2327 Elf_Internal_Dyn dyn
;
2330 bfd_elf32_swap_dyn_in (dynobj
, dyncon
, &dyn
);
2338 s
= htab
->root
.sgotplt
;
2339 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
2343 s
= htab
->root
.srelplt
;
2344 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
2348 s
= htab
->root
.srelplt
;
2349 dyn
.d_un
.d_val
= s
->size
;
2352 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
2356 /* Fill in the first entry in the procedure linkage table. */
2357 splt
= htab
->root
.splt
;
2358 if (splt
&& splt
->size
> 0)
2360 unsigned plt
[PLT_MAX_INSN_COUNT
];
2361 size_t plt_insn_count
= 3;
2362 bfd_vma got_addr
= sgot
->output_section
->vma
+ sgot
->output_offset
;
2364 /* Note we force 16 byte alignment on the .got, so that
2365 the movhi/adrp can be shared between the two loads. */
2369 bfd_vma pc
= splt
->output_section
->vma
+ splt
->output_offset
;
2370 unsigned pa
= ((got_addr
>> 13) - (pc
>> 13)) & 0x1fffff;
2371 unsigned po
= got_addr
& 0x1fff;
2372 plt
[0] = OR1K_ADRP(12) | pa
;
2373 plt
[1] = OR1K_LWZ(15,12) | (po
+ 8);
2374 plt
[2] = OR1K_LWZ(12,12) | (po
+ 4);
2376 else if (bfd_link_pic (info
))
2378 plt
[0] = OR1K_LWZ(15, 16) | 8; /* .got+8 */
2379 plt
[1] = OR1K_LWZ(12, 16) | 4; /* .got+4 */
2384 unsigned ha
= ((got_addr
+ 0x8000) >> 16) & 0xffff;
2385 unsigned lo
= got_addr
& 0xffff;
2386 plt
[0] = OR1K_MOVHI(12) | ha
;
2387 plt
[1] = OR1K_LWZ(15,12) | (lo
+ 8);
2388 plt
[2] = OR1K_LWZ(12,12) | (lo
+ 4);
2391 or1k_write_plt_entry (output_bfd
, splt
->contents
, OR1K_JR(15),
2392 plt
, plt_insn_count
);
2394 elf_section_data (splt
->output_section
)->this_hdr
.sh_entsize
= 4;
2398 /* Set the first entry in the global offset table to the address of
2399 the dynamic section. */
2400 if (sgot
&& sgot
->size
> 0)
2403 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
2405 bfd_put_32 (output_bfd
,
2406 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
2408 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
= 4;
2411 if (htab
->root
.sgot
&& htab
->root
.sgot
->size
> 0)
2412 elf_section_data (htab
->root
.sgot
->output_section
)->this_hdr
.sh_entsize
= 4;
2417 /* Finish up dynamic symbol handling. We set the contents of various
2418 dynamic sections here. */
2421 or1k_elf_finish_dynamic_symbol (bfd
*output_bfd
,
2422 struct bfd_link_info
*info
,
2423 struct elf_link_hash_entry
*h
,
2424 Elf_Internal_Sym
*sym
)
2426 struct elf_or1k_link_hash_table
*htab
;
2429 htab
= or1k_elf_hash_table (info
);
2433 if (h
->plt
.offset
!= (bfd_vma
) -1)
2435 unsigned int plt
[PLT_MAX_INSN_COUNT
];
2436 size_t plt_insn_count
= 3;
2440 bfd_vma plt_base_addr
;
2444 bfd_vma got_base_addr
;
2447 Elf_Internal_Rela rela
;
2448 bool large_plt_entry
;
2450 /* This symbol has an entry in the procedure linkage table. Set
2452 BFD_ASSERT (h
->dynindx
!= -1);
2454 splt
= htab
->root
.splt
;
2455 sgot
= htab
->root
.sgotplt
;
2456 srela
= htab
->root
.srelplt
;
2457 BFD_ASSERT (splt
!= NULL
&& sgot
!= NULL
&& srela
!= NULL
);
2459 plt_base_addr
= splt
->output_section
->vma
+ splt
->output_offset
;
2460 got_base_addr
= sgot
->output_section
->vma
+ sgot
->output_offset
;
2462 /* Get the index in the procedure linkage table which
2463 corresponds to this symbol. This is the index of this symbol
2464 in all the symbols for which we are making plt entries. The
2465 first entry in the procedure linkage table is reserved. */
2466 plt_index
= ((struct elf_or1k_link_hash_entry
*) h
)->plt_index
;
2467 plt_addr
= plt_base_addr
+ h
->plt
.offset
;
2468 plt_reloc
= plt_index
* sizeof (Elf32_External_Rela
);
2470 large_plt_entry
= (elf_or1k_plt_entry_size (plt_index
)
2471 == PLT_ENTRY_SIZE_LARGE
);
2473 /* Get the offset into the .got table of the entry that
2474 corresponds to this function. Each .got entry is 4 bytes.
2475 The first three are reserved. */
2476 got_offset
= (plt_index
+ 3) * 4;
2477 got_addr
= got_base_addr
+ got_offset
;
2479 /* Fill in the entry in the procedure linkage table. */
2482 unsigned pa
= ((got_addr
>> 13) - (plt_addr
>> 13)) & 0x1fffff;
2483 unsigned po
= (got_addr
& 0x1fff);
2484 plt
[0] = OR1K_ADRP(12) | pa
;
2485 plt
[1] = OR1K_LWZ(12,12) | po
;
2486 plt
[2] = OR1K_ORI0(11) | plt_reloc
;
2488 else if (bfd_link_pic (info
))
2490 if (large_plt_entry
)
2492 unsigned gotha
= ((got_offset
+ 0x8000) >> 16) & 0xffff;
2493 unsigned got
= got_offset
& 0xffff;
2494 unsigned pltrelhi
= (plt_reloc
>> 16) & 0xffff;
2495 unsigned pltrello
= plt_reloc
& 0xffff;
2497 plt
[0] = OR1K_MOVHI(12) | gotha
;
2498 plt
[1] = OR1K_ADD(12,12,16);
2499 plt
[2] = OR1K_LWZ(12,12) | got
;
2500 plt
[3] = OR1K_MOVHI(11) | pltrelhi
;
2501 plt
[4] = OR1K_ORI(11,11) | pltrello
;
2506 plt
[0] = OR1K_LWZ(12,16) | got_offset
;
2507 plt
[1] = OR1K_ORI0(11) | plt_reloc
;
2513 unsigned ha
= ((got_addr
+ 0x8000) >> 16) & 0xffff;
2514 unsigned lo
= got_addr
& 0xffff;
2515 plt
[0] = OR1K_MOVHI(12) | ha
;
2516 plt
[1] = OR1K_LWZ(12,12) | lo
;
2517 plt
[2] = OR1K_ORI0(11) | plt_reloc
;
2520 /* For large code model we fixup the non-PIC PLT relocation instructions
2522 if (large_plt_entry
&& !bfd_link_pic (info
))
2524 unsigned pltrelhi
= (plt_reloc
>> 16) & 0xffff;
2525 unsigned pltrello
= plt_reloc
& 0xffff;
2527 plt
[2] = OR1K_MOVHI(11) | pltrelhi
;
2528 plt
[3] = OR1K_ORI(11,11) | pltrello
;
2533 or1k_write_plt_entry (output_bfd
, splt
->contents
+ h
->plt
.offset
,
2534 OR1K_JR(12), plt
, plt_insn_count
);
2536 /* Fill in the entry in the global offset table. We initialize it to
2537 point to the top of the plt. This is done to lazy lookup the actual
2538 symbol as the first plt entry will be setup by libc to call the
2539 runtime dynamic linker. */
2540 bfd_put_32 (output_bfd
, plt_base_addr
, sgot
->contents
+ got_offset
);
2542 /* Fill in the entry in the .rela.plt section. */
2543 rela
.r_offset
= got_addr
;
2544 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_OR1K_JMP_SLOT
);
2546 loc
= srela
->contents
;
2547 loc
+= plt_index
* sizeof (Elf32_External_Rela
);
2548 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
2550 if (!h
->def_regular
)
2552 /* Mark the symbol as undefined, rather than as defined in
2553 the .plt section. Leave the value alone. */
2554 sym
->st_shndx
= SHN_UNDEF
;
2558 if (h
->got
.offset
!= (bfd_vma
) -1
2559 && (h
->got
.offset
& 2) == 0) /* Homemade TLS check. */
2563 Elf_Internal_Rela rela
;
2565 /* This symbol has an entry in the global offset table. Set it
2567 sgot
= htab
->root
.sgot
;
2568 srelgot
= htab
->root
.srelgot
;
2569 BFD_ASSERT (sgot
!= NULL
&& srelgot
!= NULL
);
2571 rela
.r_offset
= (sgot
->output_section
->vma
2572 + sgot
->output_offset
2573 + (h
->got
.offset
&~ 1));
2575 /* If this is a -Bsymbolic link, and the symbol is defined
2576 locally, we just want to emit a RELATIVE reloc. Likewise if
2577 the symbol was forced to be local because of a version file.
2578 The entry in the global offset table will already have been
2579 initialized in the relocate_section function. */
2580 if (bfd_link_pic (info
) && SYMBOL_REFERENCES_LOCAL (info
, h
))
2582 rela
.r_info
= ELF32_R_INFO (0, R_OR1K_RELATIVE
);
2583 rela
.r_addend
= (h
->root
.u
.def
.value
2584 + h
->root
.u
.def
.section
->output_section
->vma
2585 + h
->root
.u
.def
.section
->output_offset
);
2589 BFD_ASSERT ((h
->got
.offset
& 1) == 0);
2590 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ h
->got
.offset
);
2591 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_OR1K_GLOB_DAT
);
2595 loc
= srelgot
->contents
;
2596 loc
+= srelgot
->reloc_count
* sizeof (Elf32_External_Rela
);
2597 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
2598 ++srelgot
->reloc_count
;
2604 Elf_Internal_Rela rela
;
2606 /* This symbols needs a copy reloc. Set it up. */
2607 BFD_ASSERT (h
->dynindx
!= -1
2608 && (h
->root
.type
== bfd_link_hash_defined
2609 || h
->root
.type
== bfd_link_hash_defweak
));
2611 rela
.r_offset
= (h
->root
.u
.def
.value
2612 + h
->root
.u
.def
.section
->output_section
->vma
2613 + h
->root
.u
.def
.section
->output_offset
);
2614 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_OR1K_COPY
);
2616 if (h
->root
.u
.def
.section
== htab
->root
.sdynrelro
)
2617 s
= htab
->root
.sreldynrelro
;
2619 s
= htab
->root
.srelbss
;
2620 loc
= s
->contents
+ s
->reloc_count
* sizeof (Elf32_External_Rela
);
2621 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
2625 /* Mark some specially defined symbols as absolute. */
2626 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
2627 || h
== htab
->root
.hgot
)
2628 sym
->st_shndx
= SHN_ABS
;
2633 static enum elf_reloc_type_class
2634 or1k_elf_reloc_type_class (const struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
2635 const asection
*rel_sec ATTRIBUTE_UNUSED
,
2636 const Elf_Internal_Rela
*rela
)
2638 switch ((int) ELF32_R_TYPE (rela
->r_info
))
2640 case R_OR1K_RELATIVE
: return reloc_class_relative
;
2641 case R_OR1K_JMP_SLOT
: return reloc_class_plt
;
2642 case R_OR1K_COPY
: return reloc_class_copy
;
2643 default: return reloc_class_normal
;
2647 /* Adjust a symbol defined by a dynamic object and referenced by a
2648 regular object. The current definition is in some section of the
2649 dynamic object, but we're not including those sections. We have to
2650 change the definition to something the rest of the link can
2654 or1k_elf_adjust_dynamic_symbol (struct bfd_link_info
*info
,
2655 struct elf_link_hash_entry
*h
)
2657 struct elf_or1k_link_hash_table
*htab
;
2661 dynobj
= elf_hash_table (info
)->dynobj
;
2663 /* Make sure we know what is going on here. */
2664 BFD_ASSERT (dynobj
!= NULL
2669 && !h
->def_regular
)));
2671 /* If this is a function, put it in the procedure linkage table. We
2672 will fill in the contents of the procedure linkage table later,
2673 when we know the address of the .got section. */
2674 if (h
->type
== STT_FUNC
2677 if (h
->plt
.refcount
<= 0
2678 || (SYMBOL_CALLS_LOCAL (info
, h
)
2679 || (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
2680 && h
->root
.type
== bfd_link_hash_undefweak
)))
2682 /* This case can occur if we saw a PLT reloc in an input
2683 file, but the symbol was never referred to by a dynamic
2684 object. In such a case, we don't actually need to build
2685 a procedure linkage table, and we can just do a PCREL
2687 h
->plt
.offset
= (bfd_vma
) -1;
2694 h
->plt
.offset
= (bfd_vma
) -1;
2696 /* If this is a weak symbol, and there is a real definition, the
2697 processor independent code will have arranged for us to see the
2698 real definition first, and we can just use the same value. */
2699 if (h
->is_weakalias
)
2701 struct elf_link_hash_entry
*def
= weakdef (h
);
2702 BFD_ASSERT (def
->root
.type
== bfd_link_hash_defined
);
2703 h
->root
.u
.def
.section
= def
->root
.u
.def
.section
;
2704 h
->root
.u
.def
.value
= def
->root
.u
.def
.value
;
2708 /* This is a reference to a symbol defined by a dynamic object which
2709 is not a function. */
2711 /* If we are creating a shared library, we must presume that the
2712 only references to the symbol are via the global offset table.
2713 For such cases we need not do anything here; the relocations will
2714 be handled correctly by relocate_section. */
2715 if (bfd_link_pic (info
))
2718 /* If there are no references to this symbol that do not use the
2719 GOT, we don't need to generate a copy reloc. */
2720 if (!h
->non_got_ref
)
2723 /* If -z nocopyreloc was given, we won't generate them either. */
2724 if (info
->nocopyreloc
)
2730 /* If we don't find any dynamic relocs in read-only sections, then
2731 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
2732 if (!_bfd_elf_readonly_dynrelocs (h
))
2738 /* We must allocate the symbol in our .dynbss section, which will
2739 become part of the .bss section of the executable. There will be
2740 an entry for this symbol in the .dynsym section. The dynamic
2741 object will contain position independent code, so all references
2742 from the dynamic object to this symbol will go through the global
2743 offset table. The dynamic linker will use the .dynsym entry to
2744 determine the address it must put in the global offset table, so
2745 both the dynamic object and the regular object will refer to the
2746 same memory location for the variable. */
2748 htab
= or1k_elf_hash_table (info
);
2752 /* We must generate a R_OR1K_COPY reloc to tell the dynamic linker
2753 to copy the initial value out of the dynamic object and into the
2754 runtime process image. We need to remember the offset into the
2755 .rela.bss section we are going to use. */
2756 if ((h
->root
.u
.def
.section
->flags
& SEC_READONLY
) != 0)
2758 s
= htab
->root
.sdynrelro
;
2759 srel
= htab
->root
.sreldynrelro
;
2763 s
= htab
->root
.sdynbss
;
2764 srel
= htab
->root
.srelbss
;
2766 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0 && h
->size
!= 0)
2768 srel
->size
+= sizeof (Elf32_External_Rela
);
2772 return _bfd_elf_adjust_dynamic_copy (info
, h
, s
);
2775 /* Caclulate an update the sizes required for a symbol in the GOT and
2776 RELA relocation section based on the TLS_TYPE and whether or not the symbol
2779 Symbols with TLS_GD access require 8 bytes in the GOT and, if dynamic,
2780 require two relocation entries. Symbols with TLS_IE access require 4 bytes
2781 in the GOT and, if dynamic, require one relocation entry. Symbols may have
2782 both TLS_GD and TLS_IE access to be accounted for.
2784 Other symbols require 4 bytes in the GOT table and, if dynamic, require one
2785 relocation entry. */
2788 or1k_set_got_and_rela_sizes (const unsigned char tls_type
,
2793 bool is_tls_entry
= false;
2795 /* TLS GD requires two GOT entries and two relocs. */
2796 if ((tls_type
& TLS_GD
) != 0)
2799 is_tls_entry
= true;
2802 if ((tls_type
& TLS_IE
) != 0)
2805 is_tls_entry
= true;
2813 if ((tls_type
& TLS_GD
) != 0)
2814 *rela_size
+= 2 * sizeof (Elf32_External_Rela
);
2816 if ((tls_type
& TLS_IE
) != 0)
2817 *rela_size
+= sizeof (Elf32_External_Rela
);
2820 *rela_size
+= sizeof (Elf32_External_Rela
);
2825 /* Allocate space in .plt, .got and associated reloc sections for
2829 allocate_dynrelocs (struct elf_link_hash_entry
*h
, void * inf
)
2831 struct bfd_link_info
*info
;
2832 struct elf_or1k_link_hash_table
*htab
;
2833 struct elf_dyn_relocs
*sec_relocs
;
2835 if (h
->root
.type
== bfd_link_hash_indirect
)
2838 info
= (struct bfd_link_info
*) inf
;
2839 htab
= or1k_elf_hash_table (info
);
2843 if (htab
->root
.dynamic_sections_created
2844 && h
->plt
.refcount
> 0)
2846 /* Make sure this symbol is output as a dynamic symbol.
2847 Undefined weak syms won't yet be marked as dynamic. */
2848 if (h
->dynindx
== -1
2849 && !h
->forced_local
)
2851 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2855 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, bfd_link_pic (info
), h
))
2857 asection
*splt
= htab
->root
.splt
;
2860 /* Track the index of our plt entry for use in calculating size. */
2861 plt_index
= htab
->plt_count
++;
2862 ((struct elf_or1k_link_hash_entry
*) h
)->plt_index
= plt_index
;
2864 /* If this is the first .plt entry, make room for the special
2866 if (splt
->size
== 0)
2867 splt
->size
= elf_or1k_plt_entry_size (plt_index
);
2869 h
->plt
.offset
= splt
->size
;
2871 /* If this symbol is not defined in a regular file, and we are
2872 not generating a shared library, then set the symbol to this
2873 location in the .plt. This is required to make function
2874 pointers compare as equal between the normal executable and
2875 the shared library. */
2876 if (! bfd_link_pic (info
)
2879 h
->root
.u
.def
.section
= splt
;
2880 h
->root
.u
.def
.value
= h
->plt
.offset
;
2883 /* Make room for this entry. */
2884 splt
->size
+= elf_or1k_plt_entry_size (plt_index
);
2886 /* We also need to make an entry in the .got.plt section, which
2887 will be placed in the .got section by the linker script. */
2888 htab
->root
.sgotplt
->size
+= 4;
2890 /* We also need to make an entry in the .rel.plt section. */
2891 htab
->root
.srelplt
->size
+= sizeof (Elf32_External_Rela
);
2895 h
->plt
.offset
= (bfd_vma
) -1;
2901 h
->plt
.offset
= (bfd_vma
) -1;
2905 if (h
->got
.refcount
> 0)
2909 unsigned char tls_type
;
2911 /* Make sure this symbol is output as a dynamic symbol.
2912 Undefined weak syms won't yet be marked as dynamic. */
2913 if (h
->dynindx
== -1
2914 && !h
->forced_local
)
2916 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2920 sgot
= htab
->root
.sgot
;
2922 h
->got
.offset
= sgot
->size
;
2924 tls_type
= ((struct elf_or1k_link_hash_entry
*) h
)->tls_type
;
2926 dyn
= htab
->root
.dynamic_sections_created
;
2927 dyn
= WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, bfd_link_pic (info
), h
);
2928 or1k_set_got_and_rela_sizes (tls_type
, dyn
,
2929 &sgot
->size
, &htab
->root
.srelgot
->size
);
2932 h
->got
.offset
= (bfd_vma
) -1;
2934 if (h
->dyn_relocs
== NULL
)
2937 /* In the shared -Bsymbolic case, discard space allocated for
2938 dynamic pc-relative relocs against symbols which turn out to be
2939 defined in regular objects. For the normal shared case, discard
2940 space for pc-relative relocs that have become local due to symbol
2941 visibility changes. */
2943 if (bfd_link_pic (info
))
2945 if (SYMBOL_CALLS_LOCAL (info
, h
))
2947 struct elf_dyn_relocs
**pp
;
2949 for (pp
= &h
->dyn_relocs
; (sec_relocs
= *pp
) != NULL
;)
2951 sec_relocs
->count
-= sec_relocs
->pc_count
;
2952 sec_relocs
->pc_count
= 0;
2953 if (sec_relocs
->count
== 0)
2954 *pp
= sec_relocs
->next
;
2956 pp
= &sec_relocs
->next
;
2960 /* Also discard relocs on undefined weak syms with non-default
2962 if (h
->dyn_relocs
!= NULL
2963 && h
->root
.type
== bfd_link_hash_undefweak
)
2965 if (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
)
2966 h
->dyn_relocs
= NULL
;
2968 /* Make sure undefined weak symbols are output as a dynamic
2970 else if (h
->dynindx
== -1
2971 && !h
->forced_local
)
2973 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2980 /* For the non-shared case, discard space for relocs against
2981 symbols which turn out to need copy relocs or are not
2987 || (htab
->root
.dynamic_sections_created
2988 && (h
->root
.type
== bfd_link_hash_undefweak
2989 || h
->root
.type
== bfd_link_hash_undefined
))))
2991 /* Make sure this symbol is output as a dynamic symbol.
2992 Undefined weak syms won't yet be marked as dynamic. */
2993 if (h
->dynindx
== -1
2994 && !h
->forced_local
)
2996 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
3000 /* If that succeeded, we know we'll be keeping all the
3002 if (h
->dynindx
!= -1)
3006 h
->dyn_relocs
= NULL
;
3011 /* Finally, allocate space. */
3012 for (sec_relocs
= h
->dyn_relocs
;
3014 sec_relocs
= sec_relocs
->next
)
3016 asection
*sreloc
= elf_section_data (sec_relocs
->sec
)->sreloc
;
3017 sreloc
->size
+= sec_relocs
->count
* sizeof (Elf32_External_Rela
);
3023 /* Set the sizes of the dynamic sections. */
3026 or1k_elf_size_dynamic_sections (bfd
*output_bfd ATTRIBUTE_UNUSED
,
3027 struct bfd_link_info
*info
)
3029 struct elf_or1k_link_hash_table
*htab
;
3035 htab
= or1k_elf_hash_table (info
);
3039 dynobj
= htab
->root
.dynobj
;
3040 BFD_ASSERT (dynobj
!= NULL
);
3042 if (htab
->root
.dynamic_sections_created
)
3044 /* Set the contents of the .interp section to the interpreter. */
3045 if (bfd_link_executable (info
) && !info
->nointerp
)
3047 s
= bfd_get_section_by_name (dynobj
, ".interp");
3048 BFD_ASSERT (s
!= NULL
);
3049 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
3050 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
3054 /* Set up .got offsets for local syms, and space for local dynamic
3056 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link
.next
)
3058 bfd_signed_vma
*local_got
;
3059 bfd_signed_vma
*end_local_got
;
3060 bfd_size_type locsymcount
;
3061 Elf_Internal_Shdr
*symtab_hdr
;
3062 unsigned char *local_tls_type
;
3065 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
)
3068 for (s
= ibfd
->sections
; s
!= NULL
; s
= s
->next
)
3070 struct elf_dyn_relocs
*sec_relocs
;
3072 for (sec_relocs
= ((struct elf_dyn_relocs
*)
3073 elf_section_data (s
)->local_dynrel
);
3075 sec_relocs
= sec_relocs
->next
)
3077 if (! bfd_is_abs_section (sec_relocs
->sec
)
3078 && bfd_is_abs_section (sec_relocs
->sec
->output_section
))
3080 /* Input section has been discarded, either because
3081 it is a copy of a linkonce section or due to
3082 linker script /DISCARD/, so we'll be discarding
3085 else if (sec_relocs
->count
!= 0)
3087 srel
= elf_section_data (sec_relocs
->sec
)->sreloc
;
3088 srel
->size
+= sec_relocs
->count
3089 * sizeof (Elf32_External_Rela
);
3090 if ((sec_relocs
->sec
->output_section
->flags
& SEC_READONLY
)
3092 info
->flags
|= DF_TEXTREL
;
3097 local_got
= elf_local_got_refcounts (ibfd
);
3101 symtab_hdr
= &elf_tdata (ibfd
)->symtab_hdr
;
3102 locsymcount
= symtab_hdr
->sh_info
;
3103 end_local_got
= local_got
+ locsymcount
;
3104 s
= htab
->root
.sgot
;
3105 srel
= htab
->root
.srelgot
;
3106 local_tls_type
= (unsigned char *) elf_or1k_local_tls_type (ibfd
);
3107 for (; local_got
< end_local_got
; ++local_got
)
3111 unsigned char tls_type
= (local_tls_type
== NULL
)
3115 *local_got
= s
->size
;
3116 or1k_set_got_and_rela_sizes (tls_type
, bfd_link_pic (info
),
3117 &s
->size
, &srel
->size
);
3121 *local_got
= (bfd_vma
) -1;
3128 /* Allocate global sym .plt and .got entries, and space for global
3129 sym dynamic relocs. */
3130 elf_link_hash_traverse (&htab
->root
, allocate_dynrelocs
, info
);
3132 /* We now have determined the sizes of the various dynamic sections.
3133 Allocate memory for them. */
3135 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
3137 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
3140 if (s
== htab
->root
.splt
3141 || s
== htab
->root
.sgot
3142 || s
== htab
->root
.sgotplt
3143 || s
== htab
->root
.sdynbss
3144 || s
== htab
->root
.sdynrelro
)
3146 /* Strip this section if we don't need it; see the
3149 else if (startswith (bfd_section_name (s
), ".rela"))
3151 if (s
->size
!= 0 && s
!= htab
->root
.srelplt
)
3154 /* We use the reloc_count field as a counter if we need
3155 to copy relocs into the output file. */
3159 /* It's not one of our sections, so don't allocate space. */
3164 /* If we don't need this section, strip it from the
3165 output file. This is mostly to handle .rela.bss and
3166 .rela.plt. We must create both sections in
3167 create_dynamic_sections, because they must be created
3168 before the linker maps input sections to output
3169 sections. The linker does that before
3170 adjust_dynamic_symbol is called, and it is that
3171 function which decides whether anything needs to go
3172 into these sections. */
3173 s
->flags
|= SEC_EXCLUDE
;
3177 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
3180 /* Allocate memory for the section contents. We use bfd_zalloc
3181 here in case unused entries are not reclaimed before the
3182 section's contents are written out. This should not happen,
3183 but this way if it does, we get a R_OR1K_NONE reloc instead
3185 s
->contents
= bfd_zalloc (dynobj
, s
->size
);
3187 if (s
->contents
== NULL
)
3191 return _bfd_elf_add_dynamic_tags (output_bfd
, info
, relocs
);
3194 /* Copy the extra info we tack onto an elf_link_hash_entry. */
3197 or1k_elf_copy_indirect_symbol (struct bfd_link_info
*info
,
3198 struct elf_link_hash_entry
*dir
,
3199 struct elf_link_hash_entry
*ind
)
3201 struct elf_or1k_link_hash_entry
* edir
;
3202 struct elf_or1k_link_hash_entry
* eind
;
3204 edir
= (struct elf_or1k_link_hash_entry
*) dir
;
3205 eind
= (struct elf_or1k_link_hash_entry
*) ind
;
3207 if (ind
->root
.type
== bfd_link_hash_indirect
)
3209 if (dir
->got
.refcount
<= 0)
3211 edir
->tls_type
= eind
->tls_type
;
3212 eind
->tls_type
= TLS_UNKNOWN
;
3216 _bfd_elf_link_hash_copy_indirect (info
, dir
, ind
);
3219 /* Set the right machine number. */
3222 or1k_elf_object_p (bfd
*abfd
)
3224 unsigned long mach
= bfd_mach_or1k
;
3226 if (elf_elfheader (abfd
)->e_flags
& EF_OR1K_NODELAY
)
3227 mach
= bfd_mach_or1knd
;
3229 return bfd_default_set_arch_mach (abfd
, bfd_arch_or1k
, mach
);
3232 /* Store the machine number in the flags field. */
3235 or1k_elf_final_write_processing (bfd
*abfd
)
3237 switch (bfd_get_mach (abfd
))
3242 case bfd_mach_or1knd
:
3243 elf_elfheader (abfd
)->e_flags
|= EF_OR1K_NODELAY
;
3246 return _bfd_elf_final_write_processing (abfd
);
3250 or1k_elf_set_private_flags (bfd
*abfd
, flagword flags
)
3252 BFD_ASSERT (!elf_flags_init (abfd
)
3253 || elf_elfheader (abfd
)->e_flags
== flags
);
3255 elf_elfheader (abfd
)->e_flags
= flags
;
3256 elf_flags_init (abfd
) = true;
3260 /* Make sure all input files are consistent with respect to
3261 EF_OR1K_NODELAY flag setting. */
3264 elf32_or1k_merge_private_bfd_data (bfd
*ibfd
, struct bfd_link_info
*info
)
3266 bfd
*obfd
= info
->output_bfd
;
3270 in_flags
= elf_elfheader (ibfd
)->e_flags
;
3271 out_flags
= elf_elfheader (obfd
)->e_flags
;
3273 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
3274 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
3277 if (!elf_flags_init (obfd
))
3279 elf_flags_init (obfd
) = true;
3280 elf_elfheader (obfd
)->e_flags
= in_flags
;
3285 if (in_flags
== out_flags
)
3288 if ((in_flags
& EF_OR1K_NODELAY
) != (out_flags
& EF_OR1K_NODELAY
))
3291 (_("%pB: %s flag mismatch with previous modules"),
3292 ibfd
, "EF_OR1K_NODELAY");
3294 bfd_set_error (bfd_error_bad_value
);
3302 /* Implement elf_backend_grok_prstatus:
3303 Support for core dump NOTE sections. */
3305 or1k_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
3310 switch (note
->descsz
)
3315 case 212: /* Linux/OpenRISC */
3317 elf_tdata (abfd
)->core
->signal
= bfd_get_16 (abfd
, note
->descdata
+ 12);
3320 elf_tdata (abfd
)->core
->pid
= bfd_get_32 (abfd
, note
->descdata
+ 24);
3329 /* Make a ".reg/999" section. */
3330 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
3331 size
, note
->descpos
+ offset
);
3334 /* Implement elf_backend_grok_psinfo. */
3336 or1k_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
3338 switch (note
->descsz
)
3343 case 128: /* Linux/OpenRISC elf_prpsinfo */
3344 elf_tdata (abfd
)->core
->program
3345 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 32, 16);
3346 elf_tdata (abfd
)->core
->command
3347 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 48, 80);
3354 #define ELF_ARCH bfd_arch_or1k
3355 #define ELF_MACHINE_CODE EM_OR1K
3356 #define ELF_TARGET_ID OR1K_ELF_DATA
3357 #define ELF_MAXPAGESIZE 0x2000
3359 #define TARGET_BIG_SYM or1k_elf32_vec
3360 #define TARGET_BIG_NAME "elf32-or1k"
3362 #define elf_info_to_howto_rel NULL
3363 #define elf_info_to_howto or1k_info_to_howto_rela
3364 #define elf_backend_relocate_section or1k_elf_relocate_section
3365 #define elf_backend_gc_mark_hook or1k_elf_gc_mark_hook
3366 #define elf_backend_check_relocs or1k_elf_check_relocs
3367 #define elf_backend_reloc_type_class or1k_elf_reloc_type_class
3368 #define elf_backend_can_gc_sections 1
3369 #define elf_backend_rela_normal 1
3371 #define bfd_elf32_mkobject elf_or1k_mkobject
3373 #define bfd_elf32_bfd_merge_private_bfd_data elf32_or1k_merge_private_bfd_data
3374 #define bfd_elf32_bfd_set_private_flags or1k_elf_set_private_flags
3375 #define bfd_elf32_bfd_reloc_type_lookup or1k_reloc_type_lookup
3376 #define bfd_elf32_bfd_reloc_name_lookup or1k_reloc_name_lookup
3378 #define elf_backend_object_p or1k_elf_object_p
3379 #define elf_backend_final_write_processing or1k_elf_final_write_processing
3380 #define elf_backend_can_refcount 1
3382 #define elf_backend_plt_readonly 1
3383 #define elf_backend_want_got_plt 1
3384 #define elf_backend_want_plt_sym 0
3385 #define elf_backend_got_header_size 12
3386 #define elf_backend_dtrel_excludes_plt 1
3387 #define elf_backend_want_dynrelro 1
3389 #define bfd_elf32_bfd_link_hash_table_create or1k_elf_link_hash_table_create
3390 #define elf_backend_copy_indirect_symbol or1k_elf_copy_indirect_symbol
3391 #define elf_backend_create_dynamic_sections _bfd_elf_create_dynamic_sections
3392 #define elf_backend_finish_dynamic_sections or1k_elf_finish_dynamic_sections
3393 #define elf_backend_size_dynamic_sections or1k_elf_size_dynamic_sections
3394 #define elf_backend_adjust_dynamic_symbol or1k_elf_adjust_dynamic_symbol
3395 #define elf_backend_finish_dynamic_symbol or1k_elf_finish_dynamic_symbol
3397 #define elf_backend_grok_prstatus or1k_grok_prstatus
3398 #define elf_backend_grok_psinfo or1k_grok_psinfo
3400 #include "elf32-target.h"