1 /* Renesas / SuperH SH specific support for 32-bit ELF
2 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007 Free Software Foundation, Inc.
4 Contributed by Ian Lance Taylor, Cygnus Support.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
27 #include "elf-vxworks.h"
29 #include "libiberty.h"
30 #include "../opcodes/sh-opc.h"
32 static bfd_reloc_status_type sh_elf_reloc
33 (bfd
*, arelent
*, asymbol
*, void *, asection
*, bfd
*, char **);
34 static bfd_reloc_status_type sh_elf_ignore_reloc
35 (bfd
*, arelent
*, asymbol
*, void *, asection
*, bfd
*, char **);
36 static bfd_boolean sh_elf_relax_delete_bytes
37 (bfd
*, asection
*, bfd_vma
, int);
38 static bfd_boolean sh_elf_align_loads
39 (bfd
*, asection
*, Elf_Internal_Rela
*, bfd_byte
*, bfd_boolean
*);
41 static bfd_boolean sh_elf_swap_insns
42 (bfd
*, asection
*, void *, bfd_byte
*, bfd_vma
);
44 static int sh_elf_optimized_tls_reloc
45 (struct bfd_link_info
*, int, int);
46 static bfd_vma dtpoff_base
47 (struct bfd_link_info
*);
49 (struct bfd_link_info
*, bfd_vma
);
51 /* The name of the dynamic interpreter. This is put in the .interp
54 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
56 #define MINUS_ONE ((bfd_vma) 0 - 1)
58 #define SH_PARTIAL32 TRUE
59 #define SH_SRC_MASK32 0xffffffff
60 #define SH_ELF_RELOC sh_elf_reloc
61 static reloc_howto_type sh_elf_howto_table
[] =
63 #include "elf32-sh-relocs.h"
66 #define SH_PARTIAL32 FALSE
67 #define SH_SRC_MASK32 0
68 #define SH_ELF_RELOC bfd_elf_generic_reloc
69 static reloc_howto_type sh_vxworks_howto_table
[] =
71 #include "elf32-sh-relocs.h"
74 /* Return true if OUTPUT_BFD is a VxWorks object. */
77 vxworks_object_p (bfd
*abfd ATTRIBUTE_UNUSED
)
79 #if !defined INCLUDE_SHMEDIA && !defined SH_TARGET_ALREADY_DEFINED
80 extern const bfd_target bfd_elf32_shlvxworks_vec
;
81 extern const bfd_target bfd_elf32_shvxworks_vec
;
83 return (abfd
->xvec
== &bfd_elf32_shlvxworks_vec
84 || abfd
->xvec
== &bfd_elf32_shvxworks_vec
);
90 /* Return the howto table for ABFD. */
92 static reloc_howto_type
*
93 get_howto_table (bfd
*abfd
)
95 if (vxworks_object_p (abfd
))
96 return sh_vxworks_howto_table
;
97 return sh_elf_howto_table
;
100 static bfd_reloc_status_type
101 sh_elf_reloc_loop (int r_type ATTRIBUTE_UNUSED
, bfd
*input_bfd
,
102 asection
*input_section
, bfd_byte
*contents
,
103 bfd_vma addr
, asection
*symbol_section
,
104 bfd_vma start
, bfd_vma end
)
106 static bfd_vma last_addr
;
107 static asection
*last_symbol_section
;
108 bfd_byte
*start_ptr
, *ptr
, *last_ptr
;
113 /* Sanity check the address. */
114 if (addr
> bfd_get_section_limit (input_bfd
, input_section
))
115 return bfd_reloc_outofrange
;
117 /* We require the start and end relocations to be processed consecutively -
118 although we allow then to be processed forwards or backwards. */
122 last_symbol_section
= symbol_section
;
125 if (last_addr
!= addr
)
129 if (! symbol_section
|| last_symbol_section
!= symbol_section
|| end
< start
)
130 return bfd_reloc_outofrange
;
132 /* Get the symbol_section contents. */
133 if (symbol_section
!= input_section
)
135 if (elf_section_data (symbol_section
)->this_hdr
.contents
!= NULL
)
136 contents
= elf_section_data (symbol_section
)->this_hdr
.contents
;
139 if (!bfd_malloc_and_get_section (input_bfd
, symbol_section
,
142 if (contents
!= NULL
)
144 return bfd_reloc_outofrange
;
148 #define IS_PPI(PTR) ((bfd_get_16 (input_bfd, (PTR)) & 0xfc00) == 0xf800)
149 start_ptr
= contents
+ start
;
150 for (cum_diff
= -6, ptr
= contents
+ end
; cum_diff
< 0 && ptr
> start_ptr
;)
152 for (last_ptr
= ptr
, ptr
-= 4; ptr
>= start_ptr
&& IS_PPI (ptr
);)
155 diff
= (last_ptr
- ptr
) >> 1;
156 cum_diff
+= diff
& 1;
159 /* Calculate the start / end values to load into rs / re minus four -
160 so that will cancel out the four we would otherwise have to add to
161 addr to get the value to subtract in order to get relative addressing. */
165 end
= (ptr
+ cum_diff
* 2) - contents
;
169 bfd_vma start0
= start
- 4;
171 while (start0
&& IS_PPI (contents
+ start0
))
173 start0
= start
- 2 - ((start
- start0
) & 2);
174 start
= start0
- cum_diff
- 2;
179 && elf_section_data (symbol_section
)->this_hdr
.contents
!= contents
)
182 insn
= bfd_get_16 (input_bfd
, contents
+ addr
);
184 x
= (insn
& 0x200 ? end
: start
) - addr
;
185 if (input_section
!= symbol_section
)
186 x
+= ((symbol_section
->output_section
->vma
+ symbol_section
->output_offset
)
187 - (input_section
->output_section
->vma
188 + input_section
->output_offset
));
190 if (x
< -128 || x
> 127)
191 return bfd_reloc_overflow
;
193 x
= (insn
& ~0xff) | (x
& 0xff);
194 bfd_put_16 (input_bfd
, (bfd_vma
) x
, contents
+ addr
);
199 /* This function is used for normal relocs. This used to be like the COFF
200 function, and is almost certainly incorrect for other ELF targets. */
202 static bfd_reloc_status_type
203 sh_elf_reloc (bfd
*abfd
, arelent
*reloc_entry
, asymbol
*symbol_in
,
204 void *data
, asection
*input_section
, bfd
*output_bfd
,
205 char **error_message ATTRIBUTE_UNUSED
)
209 enum elf_sh_reloc_type r_type
;
210 bfd_vma addr
= reloc_entry
->address
;
211 bfd_byte
*hit_data
= addr
+ (bfd_byte
*) data
;
213 r_type
= (enum elf_sh_reloc_type
) reloc_entry
->howto
->type
;
215 if (output_bfd
!= NULL
)
217 /* Partial linking--do nothing. */
218 reloc_entry
->address
+= input_section
->output_offset
;
222 /* Almost all relocs have to do with relaxing. If any work must be
223 done for them, it has been done in sh_relax_section. */
224 if (r_type
== R_SH_IND12W
&& (symbol_in
->flags
& BSF_LOCAL
) != 0)
227 if (symbol_in
!= NULL
228 && bfd_is_und_section (symbol_in
->section
))
229 return bfd_reloc_undefined
;
231 if (bfd_is_com_section (symbol_in
->section
))
234 sym_value
= (symbol_in
->value
+
235 symbol_in
->section
->output_section
->vma
+
236 symbol_in
->section
->output_offset
);
241 insn
= bfd_get_32 (abfd
, hit_data
);
242 insn
+= sym_value
+ reloc_entry
->addend
;
243 bfd_put_32 (abfd
, (bfd_vma
) insn
, hit_data
);
246 insn
= bfd_get_16 (abfd
, hit_data
);
247 sym_value
+= reloc_entry
->addend
;
248 sym_value
-= (input_section
->output_section
->vma
249 + input_section
->output_offset
252 sym_value
+= (insn
& 0xfff) << 1;
255 insn
= (insn
& 0xf000) | (sym_value
& 0xfff);
256 bfd_put_16 (abfd
, (bfd_vma
) insn
, hit_data
);
257 if (sym_value
< (bfd_vma
) -0x1000 || sym_value
>= 0x1000)
258 return bfd_reloc_overflow
;
268 /* This function is used for relocs which are only used for relaxing,
269 which the linker should otherwise ignore. */
271 static bfd_reloc_status_type
272 sh_elf_ignore_reloc (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*reloc_entry
,
273 asymbol
*symbol ATTRIBUTE_UNUSED
,
274 void *data ATTRIBUTE_UNUSED
, asection
*input_section
,
276 char **error_message ATTRIBUTE_UNUSED
)
278 if (output_bfd
!= NULL
)
279 reloc_entry
->address
+= input_section
->output_offset
;
283 /* This structure is used to map BFD reloc codes to SH ELF relocs. */
287 bfd_reloc_code_real_type bfd_reloc_val
;
288 unsigned char elf_reloc_val
;
291 /* An array mapping BFD reloc codes to SH ELF relocs. */
293 static const struct elf_reloc_map sh_reloc_map
[] =
295 { BFD_RELOC_NONE
, R_SH_NONE
},
296 { BFD_RELOC_32
, R_SH_DIR32
},
297 { BFD_RELOC_16
, R_SH_DIR16
},
298 { BFD_RELOC_8
, R_SH_DIR8
},
299 { BFD_RELOC_CTOR
, R_SH_DIR32
},
300 { BFD_RELOC_32_PCREL
, R_SH_REL32
},
301 { BFD_RELOC_SH_PCDISP8BY2
, R_SH_DIR8WPN
},
302 { BFD_RELOC_SH_PCDISP12BY2
, R_SH_IND12W
},
303 { BFD_RELOC_SH_PCRELIMM8BY2
, R_SH_DIR8WPZ
},
304 { BFD_RELOC_SH_PCRELIMM8BY4
, R_SH_DIR8WPL
},
305 { BFD_RELOC_8_PCREL
, R_SH_SWITCH8
},
306 { BFD_RELOC_SH_SWITCH16
, R_SH_SWITCH16
},
307 { BFD_RELOC_SH_SWITCH32
, R_SH_SWITCH32
},
308 { BFD_RELOC_SH_USES
, R_SH_USES
},
309 { BFD_RELOC_SH_COUNT
, R_SH_COUNT
},
310 { BFD_RELOC_SH_ALIGN
, R_SH_ALIGN
},
311 { BFD_RELOC_SH_CODE
, R_SH_CODE
},
312 { BFD_RELOC_SH_DATA
, R_SH_DATA
},
313 { BFD_RELOC_SH_LABEL
, R_SH_LABEL
},
314 { BFD_RELOC_VTABLE_INHERIT
, R_SH_GNU_VTINHERIT
},
315 { BFD_RELOC_VTABLE_ENTRY
, R_SH_GNU_VTENTRY
},
316 { BFD_RELOC_SH_LOOP_START
, R_SH_LOOP_START
},
317 { BFD_RELOC_SH_LOOP_END
, R_SH_LOOP_END
},
318 { BFD_RELOC_SH_TLS_GD_32
, R_SH_TLS_GD_32
},
319 { BFD_RELOC_SH_TLS_LD_32
, R_SH_TLS_LD_32
},
320 { BFD_RELOC_SH_TLS_LDO_32
, R_SH_TLS_LDO_32
},
321 { BFD_RELOC_SH_TLS_IE_32
, R_SH_TLS_IE_32
},
322 { BFD_RELOC_SH_TLS_LE_32
, R_SH_TLS_LE_32
},
323 { BFD_RELOC_SH_TLS_DTPMOD32
, R_SH_TLS_DTPMOD32
},
324 { BFD_RELOC_SH_TLS_DTPOFF32
, R_SH_TLS_DTPOFF32
},
325 { BFD_RELOC_SH_TLS_TPOFF32
, R_SH_TLS_TPOFF32
},
326 { BFD_RELOC_32_GOT_PCREL
, R_SH_GOT32
},
327 { BFD_RELOC_32_PLT_PCREL
, R_SH_PLT32
},
328 { BFD_RELOC_SH_COPY
, R_SH_COPY
},
329 { BFD_RELOC_SH_GLOB_DAT
, R_SH_GLOB_DAT
},
330 { BFD_RELOC_SH_JMP_SLOT
, R_SH_JMP_SLOT
},
331 { BFD_RELOC_SH_RELATIVE
, R_SH_RELATIVE
},
332 { BFD_RELOC_32_GOTOFF
, R_SH_GOTOFF
},
333 { BFD_RELOC_SH_GOTPC
, R_SH_GOTPC
},
334 { BFD_RELOC_SH_GOTPLT32
, R_SH_GOTPLT32
},
335 #ifdef INCLUDE_SHMEDIA
336 { BFD_RELOC_SH_GOT_LOW16
, R_SH_GOT_LOW16
},
337 { BFD_RELOC_SH_GOT_MEDLOW16
, R_SH_GOT_MEDLOW16
},
338 { BFD_RELOC_SH_GOT_MEDHI16
, R_SH_GOT_MEDHI16
},
339 { BFD_RELOC_SH_GOT_HI16
, R_SH_GOT_HI16
},
340 { BFD_RELOC_SH_GOTPLT_LOW16
, R_SH_GOTPLT_LOW16
},
341 { BFD_RELOC_SH_GOTPLT_MEDLOW16
, R_SH_GOTPLT_MEDLOW16
},
342 { BFD_RELOC_SH_GOTPLT_MEDHI16
, R_SH_GOTPLT_MEDHI16
},
343 { BFD_RELOC_SH_GOTPLT_HI16
, R_SH_GOTPLT_HI16
},
344 { BFD_RELOC_SH_PLT_LOW16
, R_SH_PLT_LOW16
},
345 { BFD_RELOC_SH_PLT_MEDLOW16
, R_SH_PLT_MEDLOW16
},
346 { BFD_RELOC_SH_PLT_MEDHI16
, R_SH_PLT_MEDHI16
},
347 { BFD_RELOC_SH_PLT_HI16
, R_SH_PLT_HI16
},
348 { BFD_RELOC_SH_GOTOFF_LOW16
, R_SH_GOTOFF_LOW16
},
349 { BFD_RELOC_SH_GOTOFF_MEDLOW16
, R_SH_GOTOFF_MEDLOW16
},
350 { BFD_RELOC_SH_GOTOFF_MEDHI16
, R_SH_GOTOFF_MEDHI16
},
351 { BFD_RELOC_SH_GOTOFF_HI16
, R_SH_GOTOFF_HI16
},
352 { BFD_RELOC_SH_GOTPC_LOW16
, R_SH_GOTPC_LOW16
},
353 { BFD_RELOC_SH_GOTPC_MEDLOW16
, R_SH_GOTPC_MEDLOW16
},
354 { BFD_RELOC_SH_GOTPC_MEDHI16
, R_SH_GOTPC_MEDHI16
},
355 { BFD_RELOC_SH_GOTPC_HI16
, R_SH_GOTPC_HI16
},
356 { BFD_RELOC_SH_COPY64
, R_SH_COPY64
},
357 { BFD_RELOC_SH_GLOB_DAT64
, R_SH_GLOB_DAT64
},
358 { BFD_RELOC_SH_JMP_SLOT64
, R_SH_JMP_SLOT64
},
359 { BFD_RELOC_SH_RELATIVE64
, R_SH_RELATIVE64
},
360 { BFD_RELOC_SH_GOT10BY4
, R_SH_GOT10BY4
},
361 { BFD_RELOC_SH_GOT10BY8
, R_SH_GOT10BY8
},
362 { BFD_RELOC_SH_GOTPLT10BY4
, R_SH_GOTPLT10BY4
},
363 { BFD_RELOC_SH_GOTPLT10BY8
, R_SH_GOTPLT10BY8
},
364 { BFD_RELOC_SH_PT_16
, R_SH_PT_16
},
365 { BFD_RELOC_SH_SHMEDIA_CODE
, R_SH_SHMEDIA_CODE
},
366 { BFD_RELOC_SH_IMMU5
, R_SH_DIR5U
},
367 { BFD_RELOC_SH_IMMS6
, R_SH_DIR6S
},
368 { BFD_RELOC_SH_IMMU6
, R_SH_DIR6U
},
369 { BFD_RELOC_SH_IMMS10
, R_SH_DIR10S
},
370 { BFD_RELOC_SH_IMMS10BY2
, R_SH_DIR10SW
},
371 { BFD_RELOC_SH_IMMS10BY4
, R_SH_DIR10SL
},
372 { BFD_RELOC_SH_IMMS10BY8
, R_SH_DIR10SQ
},
373 { BFD_RELOC_SH_IMMS16
, R_SH_IMMS16
},
374 { BFD_RELOC_SH_IMMU16
, R_SH_IMMU16
},
375 { BFD_RELOC_SH_IMM_LOW16
, R_SH_IMM_LOW16
},
376 { BFD_RELOC_SH_IMM_LOW16_PCREL
, R_SH_IMM_LOW16_PCREL
},
377 { BFD_RELOC_SH_IMM_MEDLOW16
, R_SH_IMM_MEDLOW16
},
378 { BFD_RELOC_SH_IMM_MEDLOW16_PCREL
, R_SH_IMM_MEDLOW16_PCREL
},
379 { BFD_RELOC_SH_IMM_MEDHI16
, R_SH_IMM_MEDHI16
},
380 { BFD_RELOC_SH_IMM_MEDHI16_PCREL
, R_SH_IMM_MEDHI16_PCREL
},
381 { BFD_RELOC_SH_IMM_HI16
, R_SH_IMM_HI16
},
382 { BFD_RELOC_SH_IMM_HI16_PCREL
, R_SH_IMM_HI16_PCREL
},
383 { BFD_RELOC_64
, R_SH_64
},
384 { BFD_RELOC_64_PCREL
, R_SH_64_PCREL
},
385 #endif /* not INCLUDE_SHMEDIA */
388 /* Given a BFD reloc code, return the howto structure for the
389 corresponding SH ELF reloc. */
391 static reloc_howto_type
*
392 sh_elf_reloc_type_lookup (bfd
*abfd
, bfd_reloc_code_real_type code
)
396 for (i
= 0; i
< sizeof (sh_reloc_map
) / sizeof (struct elf_reloc_map
); i
++)
398 if (sh_reloc_map
[i
].bfd_reloc_val
== code
)
399 return get_howto_table (abfd
) + (int) sh_reloc_map
[i
].elf_reloc_val
;
405 static reloc_howto_type
*
406 sh_elf_reloc_name_lookup (bfd
*abfd
, const char *r_name
)
410 if (vxworks_object_p (abfd
))
413 i
< (sizeof (sh_vxworks_howto_table
)
414 / sizeof (sh_vxworks_howto_table
[0]));
416 if (sh_vxworks_howto_table
[i
].name
!= NULL
417 && strcasecmp (sh_vxworks_howto_table
[i
].name
, r_name
) == 0)
418 return &sh_vxworks_howto_table
[i
];
423 i
< (sizeof (sh_elf_howto_table
)
424 / sizeof (sh_elf_howto_table
[0]));
426 if (sh_elf_howto_table
[i
].name
!= NULL
427 && strcasecmp (sh_elf_howto_table
[i
].name
, r_name
) == 0)
428 return &sh_elf_howto_table
[i
];
434 /* Given an ELF reloc, fill in the howto field of a relent. */
437 sh_elf_info_to_howto (bfd
*abfd
, arelent
*cache_ptr
, Elf_Internal_Rela
*dst
)
441 r
= ELF32_R_TYPE (dst
->r_info
);
443 BFD_ASSERT (r
< (unsigned int) R_SH_max
);
444 BFD_ASSERT (r
< R_SH_FIRST_INVALID_RELOC
|| r
> R_SH_LAST_INVALID_RELOC
);
445 BFD_ASSERT (r
< R_SH_FIRST_INVALID_RELOC_2
|| r
> R_SH_LAST_INVALID_RELOC_2
);
446 BFD_ASSERT (r
< R_SH_FIRST_INVALID_RELOC_3
|| r
> R_SH_LAST_INVALID_RELOC_3
);
447 BFD_ASSERT (r
< R_SH_FIRST_INVALID_RELOC_4
|| r
> R_SH_LAST_INVALID_RELOC_4
);
448 BFD_ASSERT (r
< R_SH_FIRST_INVALID_RELOC_5
|| r
> R_SH_LAST_INVALID_RELOC_5
);
450 cache_ptr
->howto
= get_howto_table (abfd
) + r
;
453 /* This function handles relaxing for SH ELF. See the corresponding
454 function in coff-sh.c for a description of what this does. FIXME:
455 There is a lot of duplication here between this code and the COFF
456 specific code. The format of relocs and symbols is wound deeply
457 into this code, but it would still be better if the duplication
458 could be eliminated somehow. Note in particular that although both
459 functions use symbols like R_SH_CODE, those symbols have different
460 values; in coff-sh.c they come from include/coff/sh.h, whereas here
461 they come from enum elf_sh_reloc_type in include/elf/sh.h. */
464 sh_elf_relax_section (bfd
*abfd
, asection
*sec
,
465 struct bfd_link_info
*link_info
, bfd_boolean
*again
)
467 Elf_Internal_Shdr
*symtab_hdr
;
468 Elf_Internal_Rela
*internal_relocs
;
469 bfd_boolean have_code
;
470 Elf_Internal_Rela
*irel
, *irelend
;
471 bfd_byte
*contents
= NULL
;
472 Elf_Internal_Sym
*isymbuf
= NULL
;
476 if (link_info
->relocatable
477 || (sec
->flags
& SEC_RELOC
) == 0
478 || sec
->reloc_count
== 0)
481 #ifdef INCLUDE_SHMEDIA
482 if (elf_section_data (sec
)->this_hdr
.sh_flags
483 & (SHF_SH5_ISA32
| SHF_SH5_ISA32_MIXED
))
489 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
491 internal_relocs
= (_bfd_elf_link_read_relocs
492 (abfd
, sec
, NULL
, (Elf_Internal_Rela
*) NULL
,
493 link_info
->keep_memory
));
494 if (internal_relocs
== NULL
)
499 irelend
= internal_relocs
+ sec
->reloc_count
;
500 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
502 bfd_vma laddr
, paddr
, symval
;
504 Elf_Internal_Rela
*irelfn
, *irelscan
, *irelcount
;
507 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_SH_CODE
)
510 if (ELF32_R_TYPE (irel
->r_info
) != (int) R_SH_USES
)
513 /* Get the section contents. */
514 if (contents
== NULL
)
516 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
517 contents
= elf_section_data (sec
)->this_hdr
.contents
;
520 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
525 /* The r_addend field of the R_SH_USES reloc will point us to
526 the register load. The 4 is because the r_addend field is
527 computed as though it were a jump offset, which are based
528 from 4 bytes after the jump instruction. */
529 laddr
= irel
->r_offset
+ 4 + irel
->r_addend
;
530 if (laddr
>= sec
->size
)
532 (*_bfd_error_handler
) (_("%B: 0x%lx: warning: bad R_SH_USES offset"),
534 (unsigned long) irel
->r_offset
);
537 insn
= bfd_get_16 (abfd
, contents
+ laddr
);
539 /* If the instruction is not mov.l NN,rN, we don't know what to
541 if ((insn
& 0xf000) != 0xd000)
543 ((*_bfd_error_handler
)
544 (_("%B: 0x%lx: warning: R_SH_USES points to unrecognized insn 0x%x"),
545 abfd
, (unsigned long) irel
->r_offset
, insn
));
549 /* Get the address from which the register is being loaded. The
550 displacement in the mov.l instruction is quadrupled. It is a
551 displacement from four bytes after the movl instruction, but,
552 before adding in the PC address, two least significant bits
553 of the PC are cleared. We assume that the section is aligned
554 on a four byte boundary. */
557 paddr
+= (laddr
+ 4) &~ (bfd_vma
) 3;
558 if (paddr
>= sec
->size
)
560 ((*_bfd_error_handler
)
561 (_("%B: 0x%lx: warning: bad R_SH_USES load offset"),
562 abfd
, (unsigned long) irel
->r_offset
));
566 /* Get the reloc for the address from which the register is
567 being loaded. This reloc will tell us which function is
568 actually being called. */
569 for (irelfn
= internal_relocs
; irelfn
< irelend
; irelfn
++)
570 if (irelfn
->r_offset
== paddr
571 && ELF32_R_TYPE (irelfn
->r_info
) == (int) R_SH_DIR32
)
573 if (irelfn
>= irelend
)
575 ((*_bfd_error_handler
)
576 (_("%B: 0x%lx: warning: could not find expected reloc"),
577 abfd
, (unsigned long) paddr
));
581 /* Read this BFD's symbols if we haven't done so already. */
582 if (isymbuf
== NULL
&& symtab_hdr
->sh_info
!= 0)
584 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
586 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
587 symtab_hdr
->sh_info
, 0,
593 /* Get the value of the symbol referred to by the reloc. */
594 if (ELF32_R_SYM (irelfn
->r_info
) < symtab_hdr
->sh_info
)
596 /* A local symbol. */
597 Elf_Internal_Sym
*isym
;
599 isym
= isymbuf
+ ELF32_R_SYM (irelfn
->r_info
);
601 != (unsigned int) _bfd_elf_section_from_bfd_section (abfd
, sec
))
603 ((*_bfd_error_handler
)
604 (_("%B: 0x%lx: warning: symbol in unexpected section"),
605 abfd
, (unsigned long) paddr
));
609 symval
= (isym
->st_value
610 + sec
->output_section
->vma
611 + sec
->output_offset
);
616 struct elf_link_hash_entry
*h
;
618 indx
= ELF32_R_SYM (irelfn
->r_info
) - symtab_hdr
->sh_info
;
619 h
= elf_sym_hashes (abfd
)[indx
];
620 BFD_ASSERT (h
!= NULL
);
621 if (h
->root
.type
!= bfd_link_hash_defined
622 && h
->root
.type
!= bfd_link_hash_defweak
)
624 /* This appears to be a reference to an undefined
625 symbol. Just ignore it--it will be caught by the
626 regular reloc processing. */
630 symval
= (h
->root
.u
.def
.value
631 + h
->root
.u
.def
.section
->output_section
->vma
632 + h
->root
.u
.def
.section
->output_offset
);
635 if (get_howto_table (abfd
)[R_SH_DIR32
].partial_inplace
)
636 symval
+= bfd_get_32 (abfd
, contents
+ paddr
);
638 symval
+= irelfn
->r_addend
;
640 /* See if this function call can be shortened. */
643 + sec
->output_section
->vma
646 /* A branch to an address beyond ours might be increased by an
647 .align that doesn't move when bytes behind us are deleted.
648 So, we add some slop in this calculation to allow for
650 if (foff
< -0x1000 || foff
>= 0x1000 - 8)
652 /* After all that work, we can't shorten this function call. */
656 /* Shorten the function call. */
658 /* For simplicity of coding, we are going to modify the section
659 contents, the section relocs, and the BFD symbol table. We
660 must tell the rest of the code not to free up this
661 information. It would be possible to instead create a table
662 of changes which have to be made, as is done in coff-mips.c;
663 that would be more work, but would require less memory when
664 the linker is run. */
666 elf_section_data (sec
)->relocs
= internal_relocs
;
667 elf_section_data (sec
)->this_hdr
.contents
= contents
;
668 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
670 /* Replace the jsr with a bsr. */
672 /* Change the R_SH_USES reloc into an R_SH_IND12W reloc, and
673 replace the jsr with a bsr. */
674 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irelfn
->r_info
), R_SH_IND12W
);
675 /* We used to test (ELF32_R_SYM (irelfn->r_info) < symtab_hdr->sh_info)
676 here, but that only checks if the symbol is an external symbol,
677 not if the symbol is in a different section. Besides, we need
678 a consistent meaning for the relocation, so we just assume here that
679 the value of the symbol is not available. */
681 /* We can't fully resolve this yet, because the external
682 symbol value may be changed by future relaxing. We let
683 the final link phase handle it. */
684 bfd_put_16 (abfd
, (bfd_vma
) 0xb000, contents
+ irel
->r_offset
);
688 /* When we calculated the symbol "value" we had an offset in the
689 DIR32's word in memory (we read and add it above). However,
690 the jsr we create does NOT have this offset encoded, so we
691 have to add it to the addend to preserve it. */
692 irel
->r_addend
+= bfd_get_32 (abfd
, contents
+ paddr
);
694 /* See if there is another R_SH_USES reloc referring to the same
696 for (irelscan
= internal_relocs
; irelscan
< irelend
; irelscan
++)
697 if (ELF32_R_TYPE (irelscan
->r_info
) == (int) R_SH_USES
698 && laddr
== irelscan
->r_offset
+ 4 + irelscan
->r_addend
)
700 if (irelscan
< irelend
)
702 /* Some other function call depends upon this register load,
703 and we have not yet converted that function call.
704 Indeed, we may never be able to convert it. There is
705 nothing else we can do at this point. */
709 /* Look for a R_SH_COUNT reloc on the location where the
710 function address is stored. Do this before deleting any
711 bytes, to avoid confusion about the address. */
712 for (irelcount
= internal_relocs
; irelcount
< irelend
; irelcount
++)
713 if (irelcount
->r_offset
== paddr
714 && ELF32_R_TYPE (irelcount
->r_info
) == (int) R_SH_COUNT
)
717 /* Delete the register load. */
718 if (! sh_elf_relax_delete_bytes (abfd
, sec
, laddr
, 2))
721 /* That will change things, so, just in case it permits some
722 other function call to come within range, we should relax
723 again. Note that this is not required, and it may be slow. */
726 /* Now check whether we got a COUNT reloc. */
727 if (irelcount
>= irelend
)
729 ((*_bfd_error_handler
)
730 (_("%B: 0x%lx: warning: could not find expected COUNT reloc"),
731 abfd
, (unsigned long) paddr
));
735 /* The number of uses is stored in the r_addend field. We've
737 if (irelcount
->r_addend
== 0)
739 ((*_bfd_error_handler
) (_("%B: 0x%lx: warning: bad count"),
741 (unsigned long) paddr
));
745 --irelcount
->r_addend
;
747 /* If there are no more uses, we can delete the address. Reload
748 the address from irelfn, in case it was changed by the
749 previous call to sh_elf_relax_delete_bytes. */
750 if (irelcount
->r_addend
== 0)
752 if (! sh_elf_relax_delete_bytes (abfd
, sec
, irelfn
->r_offset
, 4))
756 /* We've done all we can with that function call. */
759 /* Look for load and store instructions that we can align on four
761 if ((elf_elfheader (abfd
)->e_flags
& EF_SH_MACH_MASK
) != EF_SH4
766 /* Get the section contents. */
767 if (contents
== NULL
)
769 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
770 contents
= elf_section_data (sec
)->this_hdr
.contents
;
773 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
778 if (! sh_elf_align_loads (abfd
, sec
, internal_relocs
, contents
,
784 elf_section_data (sec
)->relocs
= internal_relocs
;
785 elf_section_data (sec
)->this_hdr
.contents
= contents
;
786 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
791 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
793 if (! link_info
->keep_memory
)
797 /* Cache the symbols for elf_link_input_bfd. */
798 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
803 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
805 if (! link_info
->keep_memory
)
809 /* Cache the section contents for elf_link_input_bfd. */
810 elf_section_data (sec
)->this_hdr
.contents
= contents
;
814 if (internal_relocs
!= NULL
815 && elf_section_data (sec
)->relocs
!= internal_relocs
)
816 free (internal_relocs
);
822 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
825 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
827 if (internal_relocs
!= NULL
828 && elf_section_data (sec
)->relocs
!= internal_relocs
)
829 free (internal_relocs
);
834 /* Delete some bytes from a section while relaxing. FIXME: There is a
835 lot of duplication between this function and sh_relax_delete_bytes
839 sh_elf_relax_delete_bytes (bfd
*abfd
, asection
*sec
, bfd_vma addr
,
842 Elf_Internal_Shdr
*symtab_hdr
;
843 unsigned int sec_shndx
;
845 Elf_Internal_Rela
*irel
, *irelend
;
846 Elf_Internal_Rela
*irelalign
;
848 Elf_Internal_Sym
*isymbuf
, *isym
, *isymend
;
849 struct elf_link_hash_entry
**sym_hashes
;
850 struct elf_link_hash_entry
**end_hashes
;
851 unsigned int symcount
;
854 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
855 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
857 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
859 contents
= elf_section_data (sec
)->this_hdr
.contents
;
861 /* The deletion must stop at the next ALIGN reloc for an aligment
862 power larger than the number of bytes we are deleting. */
867 irel
= elf_section_data (sec
)->relocs
;
868 irelend
= irel
+ sec
->reloc_count
;
869 for (; irel
< irelend
; irel
++)
871 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_SH_ALIGN
872 && irel
->r_offset
> addr
873 && count
< (1 << irel
->r_addend
))
876 toaddr
= irel
->r_offset
;
881 /* Actually delete the bytes. */
882 memmove (contents
+ addr
, contents
+ addr
+ count
,
883 (size_t) (toaddr
- addr
- count
));
884 if (irelalign
== NULL
)
890 #define NOP_OPCODE (0x0009)
892 BFD_ASSERT ((count
& 1) == 0);
893 for (i
= 0; i
< count
; i
+= 2)
894 bfd_put_16 (abfd
, (bfd_vma
) NOP_OPCODE
, contents
+ toaddr
- count
+ i
);
897 /* Adjust all the relocs. */
898 for (irel
= elf_section_data (sec
)->relocs
; irel
< irelend
; irel
++)
900 bfd_vma nraddr
, stop
;
903 int off
, adjust
, oinsn
;
904 bfd_signed_vma voff
= 0;
905 bfd_boolean overflow
;
907 /* Get the new reloc address. */
908 nraddr
= irel
->r_offset
;
909 if ((irel
->r_offset
> addr
910 && irel
->r_offset
< toaddr
)
911 || (ELF32_R_TYPE (irel
->r_info
) == (int) R_SH_ALIGN
912 && irel
->r_offset
== toaddr
))
915 /* See if this reloc was for the bytes we have deleted, in which
916 case we no longer care about it. Don't delete relocs which
917 represent addresses, though. */
918 if (irel
->r_offset
>= addr
919 && irel
->r_offset
< addr
+ count
920 && ELF32_R_TYPE (irel
->r_info
) != (int) R_SH_ALIGN
921 && ELF32_R_TYPE (irel
->r_info
) != (int) R_SH_CODE
922 && ELF32_R_TYPE (irel
->r_info
) != (int) R_SH_DATA
923 && ELF32_R_TYPE (irel
->r_info
) != (int) R_SH_LABEL
)
924 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
927 /* If this is a PC relative reloc, see if the range it covers
928 includes the bytes we have deleted. */
929 switch ((enum elf_sh_reloc_type
) ELF32_R_TYPE (irel
->r_info
))
938 start
= irel
->r_offset
;
939 insn
= bfd_get_16 (abfd
, contents
+ nraddr
);
943 switch ((enum elf_sh_reloc_type
) ELF32_R_TYPE (irel
->r_info
))
950 /* If this reloc is against a symbol defined in this
951 section, and the symbol will not be adjusted below, we
952 must check the addend to see it will put the value in
953 range to be adjusted, and hence must be changed. */
954 if (ELF32_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
956 isym
= isymbuf
+ ELF32_R_SYM (irel
->r_info
);
957 if (isym
->st_shndx
== sec_shndx
958 && (isym
->st_value
<= addr
959 || isym
->st_value
>= toaddr
))
963 if (get_howto_table (abfd
)[R_SH_DIR32
].partial_inplace
)
965 val
= bfd_get_32 (abfd
, contents
+ nraddr
);
966 val
+= isym
->st_value
;
967 if (val
> addr
&& val
< toaddr
)
968 bfd_put_32 (abfd
, val
- count
, contents
+ nraddr
);
972 val
= isym
->st_value
+ irel
->r_addend
;
973 if (val
> addr
&& val
< toaddr
)
974 irel
->r_addend
-= count
;
985 stop
= (bfd_vma
) ((bfd_signed_vma
) start
+ 4 + off
* 2);
992 /* This has been made by previous relaxation. Since the
993 relocation will be against an external symbol, the
994 final relocation will just do the right thing. */
1001 stop
= (bfd_vma
) ((bfd_signed_vma
) start
+ 4 + off
* 2);
1003 /* The addend will be against the section symbol, thus
1004 for adjusting the addend, the relevant start is the
1005 start of the section.
1006 N.B. If we want to abandon in-place changes here and
1007 test directly using symbol + addend, we have to take into
1008 account that the addend has already been adjusted by -4. */
1009 if (stop
> addr
&& stop
< toaddr
)
1010 irel
->r_addend
-= count
;
1016 stop
= start
+ 4 + off
* 2;
1021 stop
= (start
& ~(bfd_vma
) 3) + 4 + off
* 4;
1027 /* These relocs types represent
1029 The r_addend field holds the difference between the reloc
1030 address and L1. That is the start of the reloc, and
1031 adding in the contents gives us the top. We must adjust
1032 both the r_offset field and the section contents.
1033 N.B. in gas / coff bfd, the elf bfd r_addend is called r_offset,
1034 and the elf bfd r_offset is called r_vaddr. */
1036 stop
= irel
->r_offset
;
1037 start
= (bfd_vma
) ((bfd_signed_vma
) stop
- (long) irel
->r_addend
);
1041 && (stop
<= addr
|| stop
>= toaddr
))
1042 irel
->r_addend
+= count
;
1043 else if (stop
> addr
1045 && (start
<= addr
|| start
>= toaddr
))
1046 irel
->r_addend
-= count
;
1048 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_SH_SWITCH16
)
1049 voff
= bfd_get_signed_16 (abfd
, contents
+ nraddr
);
1050 else if (ELF32_R_TYPE (irel
->r_info
) == (int) R_SH_SWITCH8
)
1051 voff
= bfd_get_8 (abfd
, contents
+ nraddr
);
1053 voff
= bfd_get_signed_32 (abfd
, contents
+ nraddr
);
1054 stop
= (bfd_vma
) ((bfd_signed_vma
) start
+ voff
);
1059 start
= irel
->r_offset
;
1060 stop
= (bfd_vma
) ((bfd_signed_vma
) start
1061 + (long) irel
->r_addend
1068 && (stop
<= addr
|| stop
>= toaddr
))
1070 else if (stop
> addr
1072 && (start
<= addr
|| start
>= toaddr
))
1081 switch ((enum elf_sh_reloc_type
) ELF32_R_TYPE (irel
->r_info
))
1090 if ((oinsn
& 0xff00) != (insn
& 0xff00))
1092 bfd_put_16 (abfd
, (bfd_vma
) insn
, contents
+ nraddr
);
1097 if ((oinsn
& 0xf000) != (insn
& 0xf000))
1099 bfd_put_16 (abfd
, (bfd_vma
) insn
, contents
+ nraddr
);
1103 BFD_ASSERT (adjust
== count
|| count
>= 4);
1108 if ((irel
->r_offset
& 3) == 0)
1111 if ((oinsn
& 0xff00) != (insn
& 0xff00))
1113 bfd_put_16 (abfd
, (bfd_vma
) insn
, contents
+ nraddr
);
1118 if (voff
< 0 || voff
>= 0xff)
1120 bfd_put_8 (abfd
, voff
, contents
+ nraddr
);
1125 if (voff
< - 0x8000 || voff
>= 0x8000)
1127 bfd_put_signed_16 (abfd
, (bfd_vma
) voff
, contents
+ nraddr
);
1132 bfd_put_signed_32 (abfd
, (bfd_vma
) voff
, contents
+ nraddr
);
1136 irel
->r_addend
+= adjust
;
1142 ((*_bfd_error_handler
)
1143 (_("%B: 0x%lx: fatal: reloc overflow while relaxing"),
1144 abfd
, (unsigned long) irel
->r_offset
));
1145 bfd_set_error (bfd_error_bad_value
);
1150 irel
->r_offset
= nraddr
;
1153 /* Look through all the other sections. If there contain any IMM32
1154 relocs against internal symbols which we are not going to adjust
1155 below, we may need to adjust the addends. */
1156 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
1158 Elf_Internal_Rela
*internal_relocs
;
1159 Elf_Internal_Rela
*irelscan
, *irelscanend
;
1160 bfd_byte
*ocontents
;
1163 || (o
->flags
& SEC_RELOC
) == 0
1164 || o
->reloc_count
== 0)
1167 /* We always cache the relocs. Perhaps, if info->keep_memory is
1168 FALSE, we should free them, if we are permitted to, when we
1169 leave sh_coff_relax_section. */
1170 internal_relocs
= (_bfd_elf_link_read_relocs
1171 (abfd
, o
, NULL
, (Elf_Internal_Rela
*) NULL
, TRUE
));
1172 if (internal_relocs
== NULL
)
1176 irelscanend
= internal_relocs
+ o
->reloc_count
;
1177 for (irelscan
= internal_relocs
; irelscan
< irelscanend
; irelscan
++)
1179 /* Dwarf line numbers use R_SH_SWITCH32 relocs. */
1180 if (ELF32_R_TYPE (irelscan
->r_info
) == (int) R_SH_SWITCH32
)
1182 bfd_vma start
, stop
;
1183 bfd_signed_vma voff
;
1185 if (ocontents
== NULL
)
1187 if (elf_section_data (o
)->this_hdr
.contents
!= NULL
)
1188 ocontents
= elf_section_data (o
)->this_hdr
.contents
;
1191 /* We always cache the section contents.
1192 Perhaps, if info->keep_memory is FALSE, we
1193 should free them, if we are permitted to,
1194 when we leave sh_coff_relax_section. */
1195 if (!bfd_malloc_and_get_section (abfd
, o
, &ocontents
))
1197 if (ocontents
!= NULL
)
1202 elf_section_data (o
)->this_hdr
.contents
= ocontents
;
1206 stop
= irelscan
->r_offset
;
1208 = (bfd_vma
) ((bfd_signed_vma
) stop
- (long) irelscan
->r_addend
);
1210 /* STOP is in a different section, so it won't change. */
1211 if (start
> addr
&& start
< toaddr
)
1212 irelscan
->r_addend
+= count
;
1214 voff
= bfd_get_signed_32 (abfd
, ocontents
+ irelscan
->r_offset
);
1215 stop
= (bfd_vma
) ((bfd_signed_vma
) start
+ voff
);
1219 && (stop
<= addr
|| stop
>= toaddr
))
1220 bfd_put_signed_32 (abfd
, (bfd_vma
) voff
+ count
,
1221 ocontents
+ irelscan
->r_offset
);
1222 else if (stop
> addr
1224 && (start
<= addr
|| start
>= toaddr
))
1225 bfd_put_signed_32 (abfd
, (bfd_vma
) voff
- count
,
1226 ocontents
+ irelscan
->r_offset
);
1229 if (ELF32_R_TYPE (irelscan
->r_info
) != (int) R_SH_DIR32
)
1232 if (ELF32_R_SYM (irelscan
->r_info
) >= symtab_hdr
->sh_info
)
1236 isym
= isymbuf
+ ELF32_R_SYM (irelscan
->r_info
);
1237 if (isym
->st_shndx
== sec_shndx
1238 && (isym
->st_value
<= addr
1239 || isym
->st_value
>= toaddr
))
1243 if (ocontents
== NULL
)
1245 if (elf_section_data (o
)->this_hdr
.contents
!= NULL
)
1246 ocontents
= elf_section_data (o
)->this_hdr
.contents
;
1249 /* We always cache the section contents.
1250 Perhaps, if info->keep_memory is FALSE, we
1251 should free them, if we are permitted to,
1252 when we leave sh_coff_relax_section. */
1253 if (!bfd_malloc_and_get_section (abfd
, o
, &ocontents
))
1255 if (ocontents
!= NULL
)
1260 elf_section_data (o
)->this_hdr
.contents
= ocontents
;
1264 val
= bfd_get_32 (abfd
, ocontents
+ irelscan
->r_offset
);
1265 val
+= isym
->st_value
;
1266 if (val
> addr
&& val
< toaddr
)
1267 bfd_put_32 (abfd
, val
- count
,
1268 ocontents
+ irelscan
->r_offset
);
1273 /* Adjust the local symbols defined in this section. */
1274 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
1275 for (isym
= isymbuf
; isym
< isymend
; isym
++)
1277 if (isym
->st_shndx
== sec_shndx
1278 && isym
->st_value
> addr
1279 && isym
->st_value
< toaddr
)
1280 isym
->st_value
-= count
;
1283 /* Now adjust the global symbols defined in this section. */
1284 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
1285 - symtab_hdr
->sh_info
);
1286 sym_hashes
= elf_sym_hashes (abfd
);
1287 end_hashes
= sym_hashes
+ symcount
;
1288 for (; sym_hashes
< end_hashes
; sym_hashes
++)
1290 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
1291 if ((sym_hash
->root
.type
== bfd_link_hash_defined
1292 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
1293 && sym_hash
->root
.u
.def
.section
== sec
1294 && sym_hash
->root
.u
.def
.value
> addr
1295 && sym_hash
->root
.u
.def
.value
< toaddr
)
1297 sym_hash
->root
.u
.def
.value
-= count
;
1301 /* See if we can move the ALIGN reloc forward. We have adjusted
1302 r_offset for it already. */
1303 if (irelalign
!= NULL
)
1305 bfd_vma alignto
, alignaddr
;
1307 alignto
= BFD_ALIGN (toaddr
, 1 << irelalign
->r_addend
);
1308 alignaddr
= BFD_ALIGN (irelalign
->r_offset
,
1309 1 << irelalign
->r_addend
);
1310 if (alignto
!= alignaddr
)
1312 /* Tail recursion. */
1313 return sh_elf_relax_delete_bytes (abfd
, sec
, alignaddr
,
1314 (int) (alignto
- alignaddr
));
1321 /* Look for loads and stores which we can align to four byte
1322 boundaries. This is like sh_align_loads in coff-sh.c. */
1325 sh_elf_align_loads (bfd
*abfd ATTRIBUTE_UNUSED
, asection
*sec
,
1326 Elf_Internal_Rela
*internal_relocs
,
1327 bfd_byte
*contents ATTRIBUTE_UNUSED
,
1328 bfd_boolean
*pswapped
)
1330 Elf_Internal_Rela
*irel
, *irelend
;
1331 bfd_vma
*labels
= NULL
;
1332 bfd_vma
*label
, *label_end
;
1337 irelend
= internal_relocs
+ sec
->reloc_count
;
1339 /* Get all the addresses with labels on them. */
1340 amt
= sec
->reloc_count
;
1341 amt
*= sizeof (bfd_vma
);
1342 labels
= (bfd_vma
*) bfd_malloc (amt
);
1346 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
1348 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_SH_LABEL
)
1350 *label_end
= irel
->r_offset
;
1355 /* Note that the assembler currently always outputs relocs in
1356 address order. If that ever changes, this code will need to sort
1357 the label values and the relocs. */
1361 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
1363 bfd_vma start
, stop
;
1365 if (ELF32_R_TYPE (irel
->r_info
) != (int) R_SH_CODE
)
1368 start
= irel
->r_offset
;
1370 for (irel
++; irel
< irelend
; irel
++)
1371 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_SH_DATA
)
1374 stop
= irel
->r_offset
;
1378 if (! _bfd_sh_align_load_span (abfd
, sec
, contents
, sh_elf_swap_insns
,
1379 internal_relocs
, &label
,
1380 label_end
, start
, stop
, pswapped
))
1395 /* Swap two SH instructions. This is like sh_swap_insns in coff-sh.c. */
1398 sh_elf_swap_insns (bfd
*abfd
, asection
*sec
, void *relocs
,
1399 bfd_byte
*contents
, bfd_vma addr
)
1401 Elf_Internal_Rela
*internal_relocs
= (Elf_Internal_Rela
*) relocs
;
1402 unsigned short i1
, i2
;
1403 Elf_Internal_Rela
*irel
, *irelend
;
1405 /* Swap the instructions themselves. */
1406 i1
= bfd_get_16 (abfd
, contents
+ addr
);
1407 i2
= bfd_get_16 (abfd
, contents
+ addr
+ 2);
1408 bfd_put_16 (abfd
, (bfd_vma
) i2
, contents
+ addr
);
1409 bfd_put_16 (abfd
, (bfd_vma
) i1
, contents
+ addr
+ 2);
1411 /* Adjust all reloc addresses. */
1412 irelend
= internal_relocs
+ sec
->reloc_count
;
1413 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
1415 enum elf_sh_reloc_type type
;
1418 /* There are a few special types of relocs that we don't want to
1419 adjust. These relocs do not apply to the instruction itself,
1420 but are only associated with the address. */
1421 type
= (enum elf_sh_reloc_type
) ELF32_R_TYPE (irel
->r_info
);
1422 if (type
== R_SH_ALIGN
1423 || type
== R_SH_CODE
1424 || type
== R_SH_DATA
1425 || type
== R_SH_LABEL
)
1428 /* If an R_SH_USES reloc points to one of the addresses being
1429 swapped, we must adjust it. It would be incorrect to do this
1430 for a jump, though, since we want to execute both
1431 instructions after the jump. (We have avoided swapping
1432 around a label, so the jump will not wind up executing an
1433 instruction it shouldn't). */
1434 if (type
== R_SH_USES
)
1438 off
= irel
->r_offset
+ 4 + irel
->r_addend
;
1440 irel
->r_offset
+= 2;
1441 else if (off
== addr
+ 2)
1442 irel
->r_offset
-= 2;
1445 if (irel
->r_offset
== addr
)
1447 irel
->r_offset
+= 2;
1450 else if (irel
->r_offset
== addr
+ 2)
1452 irel
->r_offset
-= 2;
1461 unsigned short insn
, oinsn
;
1462 bfd_boolean overflow
;
1464 loc
= contents
+ irel
->r_offset
;
1473 insn
= bfd_get_16 (abfd
, loc
);
1476 if ((oinsn
& 0xff00) != (insn
& 0xff00))
1478 bfd_put_16 (abfd
, (bfd_vma
) insn
, loc
);
1482 insn
= bfd_get_16 (abfd
, loc
);
1485 if ((oinsn
& 0xf000) != (insn
& 0xf000))
1487 bfd_put_16 (abfd
, (bfd_vma
) insn
, loc
);
1491 /* This reloc ignores the least significant 3 bits of
1492 the program counter before adding in the offset.
1493 This means that if ADDR is at an even address, the
1494 swap will not affect the offset. If ADDR is an at an
1495 odd address, then the instruction will be crossing a
1496 four byte boundary, and must be adjusted. */
1497 if ((addr
& 3) != 0)
1499 insn
= bfd_get_16 (abfd
, loc
);
1502 if ((oinsn
& 0xff00) != (insn
& 0xff00))
1504 bfd_put_16 (abfd
, (bfd_vma
) insn
, loc
);
1512 ((*_bfd_error_handler
)
1513 (_("%B: 0x%lx: fatal: reloc overflow while relaxing"),
1514 abfd
, (unsigned long) irel
->r_offset
));
1515 bfd_set_error (bfd_error_bad_value
);
1523 #endif /* defined SH64_ELF */
1525 /* Describes one of the various PLT styles. */
1527 struct elf_sh_plt_info
1529 /* The template for the first PLT entry, or NULL if there is no special
1531 const bfd_byte
*plt0_entry
;
1533 /* The size of PLT0_ENTRY in bytes, or 0 if PLT0_ENTRY is NULL. */
1534 bfd_vma plt0_entry_size
;
1536 /* Index I is the offset into PLT0_ENTRY of a pointer to
1537 _GLOBAL_OFFSET_TABLE_ + I * 4. The value is MINUS_ONE
1538 if there is no such pointer. */
1539 bfd_vma plt0_got_fields
[3];
1541 /* The template for a symbol's PLT entry. */
1542 const bfd_byte
*symbol_entry
;
1544 /* The size of SYMBOL_ENTRY in bytes. */
1545 bfd_vma symbol_entry_size
;
1547 /* Byte offsets of fields in SYMBOL_ENTRY. Not all fields are used
1548 on all targets. The comments by each member indicate the value
1549 that the field must hold. */
1551 bfd_vma got_entry
; /* the address of the symbol's .got.plt entry */
1552 bfd_vma plt
; /* .plt (or a branch to .plt on VxWorks) */
1553 bfd_vma reloc_offset
; /* the offset of the symbol's JMP_SLOT reloc */
1556 /* The offset of the resolver stub from the start of SYMBOL_ENTRY. */
1557 bfd_vma symbol_resolve_offset
;
1560 #ifdef INCLUDE_SHMEDIA
1562 /* The size in bytes of an entry in the procedure linkage table. */
1564 #define ELF_PLT_ENTRY_SIZE 64
1566 /* First entry in an absolute procedure linkage table look like this. */
1568 static const bfd_byte elf_sh_plt0_entry_be
[ELF_PLT_ENTRY_SIZE
] =
1570 0xcc, 0x00, 0x01, 0x10, /* movi .got.plt >> 16, r17 */
1571 0xc8, 0x00, 0x01, 0x10, /* shori .got.plt & 65535, r17 */
1572 0x89, 0x10, 0x09, 0x90, /* ld.l r17, 8, r25 */
1573 0x6b, 0xf1, 0x66, 0x00, /* ptabs r25, tr0 */
1574 0x89, 0x10, 0x05, 0x10, /* ld.l r17, 4, r17 */
1575 0x44, 0x01, 0xff, 0xf0, /* blink tr0, r63 */
1576 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1577 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1578 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1579 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1580 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1581 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1582 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1583 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1584 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1585 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1588 static const bfd_byte elf_sh_plt0_entry_le
[ELF_PLT_ENTRY_SIZE
] =
1590 0x10, 0x01, 0x00, 0xcc, /* movi .got.plt >> 16, r17 */
1591 0x10, 0x01, 0x00, 0xc8, /* shori .got.plt & 65535, r17 */
1592 0x90, 0x09, 0x10, 0x89, /* ld.l r17, 8, r25 */
1593 0x00, 0x66, 0xf1, 0x6b, /* ptabs r25, tr0 */
1594 0x10, 0x05, 0x10, 0x89, /* ld.l r17, 4, r17 */
1595 0xf0, 0xff, 0x01, 0x44, /* blink tr0, r63 */
1596 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1597 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1598 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1599 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1600 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1601 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1602 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1603 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1604 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1605 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1608 /* Sebsequent entries in an absolute procedure linkage table look like
1611 static const bfd_byte elf_sh_plt_entry_be
[ELF_PLT_ENTRY_SIZE
] =
1613 0xcc, 0x00, 0x01, 0x90, /* movi nameN-in-GOT >> 16, r25 */
1614 0xc8, 0x00, 0x01, 0x90, /* shori nameN-in-GOT & 65535, r25 */
1615 0x89, 0x90, 0x01, 0x90, /* ld.l r25, 0, r25 */
1616 0x6b, 0xf1, 0x66, 0x00, /* ptabs r25, tr0 */
1617 0x44, 0x01, 0xff, 0xf0, /* blink tr0, r63 */
1618 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1619 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1620 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1621 0xcc, 0x00, 0x01, 0x90, /* movi .PLT0 >> 16, r25 */
1622 0xc8, 0x00, 0x01, 0x90, /* shori .PLT0 & 65535, r25 */
1623 0x6b, 0xf1, 0x66, 0x00, /* ptabs r25, tr0 */
1624 0xcc, 0x00, 0x01, 0x50, /* movi reloc-offset >> 16, r21 */
1625 0xc8, 0x00, 0x01, 0x50, /* shori reloc-offset & 65535, r21 */
1626 0x44, 0x01, 0xff, 0xf0, /* blink tr0, r63 */
1627 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1628 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1631 static const bfd_byte elf_sh_plt_entry_le
[ELF_PLT_ENTRY_SIZE
] =
1633 0x90, 0x01, 0x00, 0xcc, /* movi nameN-in-GOT >> 16, r25 */
1634 0x90, 0x01, 0x00, 0xc8, /* shori nameN-in-GOT & 65535, r25 */
1635 0x90, 0x01, 0x90, 0x89, /* ld.l r25, 0, r25 */
1636 0x00, 0x66, 0xf1, 0x6b, /* ptabs r25, tr0 */
1637 0xf0, 0xff, 0x01, 0x44, /* blink tr0, r63 */
1638 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1639 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1640 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1641 0x90, 0x01, 0x00, 0xcc, /* movi .PLT0 >> 16, r25 */
1642 0x90, 0x01, 0x00, 0xc8, /* shori .PLT0 & 65535, r25 */
1643 0x00, 0x66, 0xf1, 0x6b, /* ptabs r25, tr0 */
1644 0x50, 0x01, 0x00, 0xcc, /* movi reloc-offset >> 16, r21 */
1645 0x50, 0x01, 0x00, 0xc8, /* shori reloc-offset & 65535, r21 */
1646 0xf0, 0xff, 0x01, 0x44, /* blink tr0, r63 */
1647 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1648 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1651 /* Entries in a PIC procedure linkage table look like this. */
1653 static const bfd_byte elf_sh_pic_plt_entry_be
[ELF_PLT_ENTRY_SIZE
] =
1655 0xcc, 0x00, 0x01, 0x90, /* movi nameN@GOT >> 16, r25 */
1656 0xc8, 0x00, 0x01, 0x90, /* shori nameN@GOT & 65535, r25 */
1657 0x40, 0xc2, 0x65, 0x90, /* ldx.l r12, r25, r25 */
1658 0x6b, 0xf1, 0x66, 0x00, /* ptabs r25, tr0 */
1659 0x44, 0x01, 0xff, 0xf0, /* blink tr0, r63 */
1660 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1661 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1662 0x6f, 0xf0, 0xff, 0xf0, /* nop */
1663 0xce, 0x00, 0x01, 0x10, /* movi -GOT_BIAS, r17 */
1664 0x00, 0xc8, 0x45, 0x10, /* add.l r12, r17, r17 */
1665 0x89, 0x10, 0x09, 0x90, /* ld.l r17, 8, r25 */
1666 0x6b, 0xf1, 0x66, 0x00, /* ptabs r25, tr0 */
1667 0x89, 0x10, 0x05, 0x10, /* ld.l r17, 4, r17 */
1668 0xcc, 0x00, 0x01, 0x50, /* movi reloc-offset >> 16, r21 */
1669 0xc8, 0x00, 0x01, 0x50, /* shori reloc-offset & 65535, r21 */
1670 0x44, 0x01, 0xff, 0xf0, /* blink tr0, r63 */
1673 static const bfd_byte elf_sh_pic_plt_entry_le
[ELF_PLT_ENTRY_SIZE
] =
1675 0x90, 0x01, 0x00, 0xcc, /* movi nameN@GOT >> 16, r25 */
1676 0x90, 0x01, 0x00, 0xc8, /* shori nameN@GOT & 65535, r25 */
1677 0x90, 0x65, 0xc2, 0x40, /* ldx.l r12, r25, r25 */
1678 0x00, 0x66, 0xf1, 0x6b, /* ptabs r25, tr0 */
1679 0xf0, 0xff, 0x01, 0x44, /* blink tr0, r63 */
1680 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1681 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1682 0xf0, 0xff, 0xf0, 0x6f, /* nop */
1683 0x10, 0x01, 0x00, 0xce, /* movi -GOT_BIAS, r17 */
1684 0x10, 0x45, 0xc8, 0x00, /* add.l r12, r17, r17 */
1685 0x90, 0x09, 0x10, 0x89, /* ld.l r17, 8, r25 */
1686 0x00, 0x66, 0xf1, 0x6b, /* ptabs r25, tr0 */
1687 0x10, 0x05, 0x10, 0x89, /* ld.l r17, 4, r17 */
1688 0x50, 0x01, 0x00, 0xcc, /* movi reloc-offset >> 16, r21 */
1689 0x50, 0x01, 0x00, 0xc8, /* shori reloc-offset & 65535, r21 */
1690 0xf0, 0xff, 0x01, 0x44, /* blink tr0, r63 */
1693 static const struct elf_sh_plt_info elf_sh_plts
[2][2] = {
1696 /* Big-endian non-PIC. */
1697 elf_sh_plt0_entry_be
,
1699 { 0, MINUS_ONE
, MINUS_ONE
},
1700 elf_sh_plt_entry_be
,
1703 33 /* includes ISA encoding */
1706 /* Little-endian non-PIC. */
1707 elf_sh_plt0_entry_le
,
1709 { 0, MINUS_ONE
, MINUS_ONE
},
1710 elf_sh_plt_entry_le
,
1713 33 /* includes ISA encoding */
1718 /* Big-endian PIC. */
1719 elf_sh_plt0_entry_be
,
1721 { MINUS_ONE
, MINUS_ONE
, MINUS_ONE
},
1722 elf_sh_pic_plt_entry_be
,
1724 { 0, MINUS_ONE
, 52 },
1725 33 /* includes ISA encoding */
1728 /* Little-endian PIC. */
1729 elf_sh_plt0_entry_le
,
1731 { MINUS_ONE
, MINUS_ONE
, MINUS_ONE
},
1732 elf_sh_pic_plt_entry_le
,
1734 { 0, MINUS_ONE
, 52 },
1735 33 /* includes ISA encoding */
1740 /* Return offset of the linker in PLT0 entry. */
1741 #define elf_sh_plt0_gotplt_offset(info) 0
1743 /* Install a 32-bit PLT field starting at ADDR, which occurs in OUTPUT_BFD.
1744 VALUE is the field's value and CODE_P is true if VALUE refers to code,
1747 On SH64, each 32-bit field is loaded by a movi/shori pair. */
1750 install_plt_field (bfd
*output_bfd
, bfd_boolean code_p
,
1751 unsigned long value
, bfd_byte
*addr
)
1754 bfd_put_32 (output_bfd
,
1755 bfd_get_32 (output_bfd
, addr
)
1756 | ((value
>> 6) & 0x3fffc00),
1758 bfd_put_32 (output_bfd
,
1759 bfd_get_32 (output_bfd
, addr
+ 4)
1760 | ((value
<< 10) & 0x3fffc00),
1764 /* Return the type of PLT associated with ABFD. PIC_P is true if
1765 the object is position-independent. */
1767 static const struct elf_sh_plt_info
*
1768 get_plt_info (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_boolean pic_p
)
1770 return &elf_sh_plts
[pic_p
][!bfd_big_endian (abfd
)];
1773 /* The size in bytes of an entry in the procedure linkage table. */
1775 #define ELF_PLT_ENTRY_SIZE 28
1777 /* First entry in an absolute procedure linkage table look like this. */
1779 /* Note - this code has been "optimised" not to use r2. r2 is used by
1780 GCC to return the address of large structures, so it should not be
1781 corrupted here. This does mean however, that this PLT does not conform
1782 to the SH PIC ABI. That spec says that r0 contains the type of the PLT
1783 and r2 contains the GOT id. This version stores the GOT id in r0 and
1784 ignores the type. Loaders can easily detect this difference however,
1785 since the type will always be 0 or 8, and the GOT ids will always be
1786 greater than or equal to 12. */
1787 static const bfd_byte elf_sh_plt0_entry_be
[ELF_PLT_ENTRY_SIZE
] =
1789 0xd0, 0x05, /* mov.l 2f,r0 */
1790 0x60, 0x02, /* mov.l @r0,r0 */
1791 0x2f, 0x06, /* mov.l r0,@-r15 */
1792 0xd0, 0x03, /* mov.l 1f,r0 */
1793 0x60, 0x02, /* mov.l @r0,r0 */
1794 0x40, 0x2b, /* jmp @r0 */
1795 0x60, 0xf6, /* mov.l @r15+,r0 */
1796 0x00, 0x09, /* nop */
1797 0x00, 0x09, /* nop */
1798 0x00, 0x09, /* nop */
1799 0, 0, 0, 0, /* 1: replaced with address of .got.plt + 8. */
1800 0, 0, 0, 0, /* 2: replaced with address of .got.plt + 4. */
1803 static const bfd_byte elf_sh_plt0_entry_le
[ELF_PLT_ENTRY_SIZE
] =
1805 0x05, 0xd0, /* mov.l 2f,r0 */
1806 0x02, 0x60, /* mov.l @r0,r0 */
1807 0x06, 0x2f, /* mov.l r0,@-r15 */
1808 0x03, 0xd0, /* mov.l 1f,r0 */
1809 0x02, 0x60, /* mov.l @r0,r0 */
1810 0x2b, 0x40, /* jmp @r0 */
1811 0xf6, 0x60, /* mov.l @r15+,r0 */
1812 0x09, 0x00, /* nop */
1813 0x09, 0x00, /* nop */
1814 0x09, 0x00, /* nop */
1815 0, 0, 0, 0, /* 1: replaced with address of .got.plt + 8. */
1816 0, 0, 0, 0, /* 2: replaced with address of .got.plt + 4. */
1819 /* Sebsequent entries in an absolute procedure linkage table look like
1822 static const bfd_byte elf_sh_plt_entry_be
[ELF_PLT_ENTRY_SIZE
] =
1824 0xd0, 0x04, /* mov.l 1f,r0 */
1825 0x60, 0x02, /* mov.l @(r0,r12),r0 */
1826 0xd1, 0x02, /* mov.l 0f,r1 */
1827 0x40, 0x2b, /* jmp @r0 */
1828 0x60, 0x13, /* mov r1,r0 */
1829 0xd1, 0x03, /* mov.l 2f,r1 */
1830 0x40, 0x2b, /* jmp @r0 */
1831 0x00, 0x09, /* nop */
1832 0, 0, 0, 0, /* 0: replaced with address of .PLT0. */
1833 0, 0, 0, 0, /* 1: replaced with address of this symbol in .got. */
1834 0, 0, 0, 0, /* 2: replaced with offset into relocation table. */
1837 static const bfd_byte elf_sh_plt_entry_le
[ELF_PLT_ENTRY_SIZE
] =
1839 0x04, 0xd0, /* mov.l 1f,r0 */
1840 0x02, 0x60, /* mov.l @r0,r0 */
1841 0x02, 0xd1, /* mov.l 0f,r1 */
1842 0x2b, 0x40, /* jmp @r0 */
1843 0x13, 0x60, /* mov r1,r0 */
1844 0x03, 0xd1, /* mov.l 2f,r1 */
1845 0x2b, 0x40, /* jmp @r0 */
1846 0x09, 0x00, /* nop */
1847 0, 0, 0, 0, /* 0: replaced with address of .PLT0. */
1848 0, 0, 0, 0, /* 1: replaced with address of this symbol in .got. */
1849 0, 0, 0, 0, /* 2: replaced with offset into relocation table. */
1852 /* Entries in a PIC procedure linkage table look like this. */
1854 static const bfd_byte elf_sh_pic_plt_entry_be
[ELF_PLT_ENTRY_SIZE
] =
1856 0xd0, 0x04, /* mov.l 1f,r0 */
1857 0x00, 0xce, /* mov.l @(r0,r12),r0 */
1858 0x40, 0x2b, /* jmp @r0 */
1859 0x00, 0x09, /* nop */
1860 0x50, 0xc2, /* mov.l @(8,r12),r0 */
1861 0xd1, 0x03, /* mov.l 2f,r1 */
1862 0x40, 0x2b, /* jmp @r0 */
1863 0x50, 0xc1, /* mov.l @(4,r12),r0 */
1864 0x00, 0x09, /* nop */
1865 0x00, 0x09, /* nop */
1866 0, 0, 0, 0, /* 1: replaced with address of this symbol in .got. */
1867 0, 0, 0, 0 /* 2: replaced with offset into relocation table. */
1870 static const bfd_byte elf_sh_pic_plt_entry_le
[ELF_PLT_ENTRY_SIZE
] =
1872 0x04, 0xd0, /* mov.l 1f,r0 */
1873 0xce, 0x00, /* mov.l @(r0,r12),r0 */
1874 0x2b, 0x40, /* jmp @r0 */
1875 0x09, 0x00, /* nop */
1876 0xc2, 0x50, /* mov.l @(8,r12),r0 */
1877 0x03, 0xd1, /* mov.l 2f,r1 */
1878 0x2b, 0x40, /* jmp @r0 */
1879 0xc1, 0x50, /* mov.l @(4,r12),r0 */
1880 0x09, 0x00, /* nop */
1881 0x09, 0x00, /* nop */
1882 0, 0, 0, 0, /* 1: replaced with address of this symbol in .got. */
1883 0, 0, 0, 0 /* 2: replaced with offset into relocation table. */
1886 static const struct elf_sh_plt_info elf_sh_plts
[2][2] = {
1889 /* Big-endian non-PIC. */
1890 elf_sh_plt0_entry_be
,
1892 { MINUS_ONE
, 24, 20 },
1893 elf_sh_plt_entry_be
,
1899 /* Little-endian non-PIC. */
1900 elf_sh_plt0_entry_le
,
1902 { MINUS_ONE
, 24, 20 },
1903 elf_sh_plt_entry_le
,
1911 /* Big-endian PIC. */
1912 elf_sh_plt0_entry_be
,
1914 { MINUS_ONE
, MINUS_ONE
, MINUS_ONE
},
1915 elf_sh_pic_plt_entry_be
,
1917 { 20, MINUS_ONE
, 24 },
1921 /* Little-endian PIC. */
1922 elf_sh_plt0_entry_le
,
1924 { MINUS_ONE
, MINUS_ONE
, MINUS_ONE
},
1925 elf_sh_pic_plt_entry_le
,
1927 { 20, MINUS_ONE
, 24 },
1933 #define VXWORKS_PLT_HEADER_SIZE 12
1934 #define VXWORKS_PLT_ENTRY_SIZE 24
1936 static const bfd_byte vxworks_sh_plt0_entry_be
[VXWORKS_PLT_HEADER_SIZE
] =
1938 0xd1, 0x01, /* mov.l @(8,pc),r1 */
1939 0x61, 0x12, /* mov.l @r1,r1 */
1940 0x41, 0x2b, /* jmp @r1 */
1941 0x00, 0x09, /* nop */
1942 0, 0, 0, 0 /* 0: replaced with _GLOBAL_OFFSET_TABLE+8. */
1945 static const bfd_byte vxworks_sh_plt0_entry_le
[VXWORKS_PLT_HEADER_SIZE
] =
1947 0x01, 0xd1, /* mov.l @(8,pc),r1 */
1948 0x12, 0x61, /* mov.l @r1,r1 */
1949 0x2b, 0x41, /* jmp @r1 */
1950 0x09, 0x00, /* nop */
1951 0, 0, 0, 0 /* 0: replaced with _GLOBAL_OFFSET_TABLE+8. */
1954 static const bfd_byte vxworks_sh_plt_entry_be
[VXWORKS_PLT_ENTRY_SIZE
] =
1956 0xd0, 0x01, /* mov.l @(8,pc),r0 */
1957 0x60, 0x02, /* mov.l @r0,r0 */
1958 0x40, 0x2b, /* jmp @r0 */
1959 0x00, 0x09, /* nop */
1960 0, 0, 0, 0, /* 0: replaced with address of this symbol in .got. */
1961 0xd0, 0x01, /* mov.l @(8,pc),r0 */
1962 0xa0, 0x00, /* bra PLT (We need to fix the offset.) */
1963 0x00, 0x09, /* nop */
1964 0x00, 0x09, /* nop */
1965 0, 0, 0, 0, /* 1: replaced with offset into relocation table. */
1968 static const bfd_byte vxworks_sh_plt_entry_le
[VXWORKS_PLT_ENTRY_SIZE
] =
1970 0x01, 0xd0, /* mov.l @(8,pc),r0 */
1971 0x02, 0x60, /* mov.l @r0,r0 */
1972 0x2b, 0x40, /* jmp @r0 */
1973 0x09, 0x00, /* nop */
1974 0, 0, 0, 0, /* 0: replaced with address of this symbol in .got. */
1975 0x01, 0xd0, /* mov.l @(8,pc),r0 */
1976 0x00, 0xa0, /* bra PLT (We need to fix the offset.) */
1977 0x09, 0x00, /* nop */
1978 0x09, 0x00, /* nop */
1979 0, 0, 0, 0, /* 1: replaced with offset into relocation table. */
1982 static const bfd_byte vxworks_sh_pic_plt_entry_be
[VXWORKS_PLT_ENTRY_SIZE
] =
1984 0xd0, 0x01, /* mov.l @(8,pc),r0 */
1985 0x00, 0xce, /* mov.l @(r0,r12),r0 */
1986 0x40, 0x2b, /* jmp @r0 */
1987 0x00, 0x09, /* nop */
1988 0, 0, 0, 0, /* 0: replaced with offset of this symbol in .got. */
1989 0xd0, 0x01, /* mov.l @(8,pc),r0 */
1990 0x51, 0xc2, /* mov.l @(8,r12),r1 */
1991 0x41, 0x2b, /* jmp @r1 */
1992 0x00, 0x09, /* nop */
1993 0, 0, 0, 0, /* 1: replaced with offset into relocation table. */
1996 static const bfd_byte vxworks_sh_pic_plt_entry_le
[VXWORKS_PLT_ENTRY_SIZE
] =
1998 0x01, 0xd0, /* mov.l @(8,pc),r0 */
1999 0xce, 0x00, /* mov.l @(r0,r12),r0 */
2000 0x2b, 0x40, /* jmp @r0 */
2001 0x09, 0x00, /* nop */
2002 0, 0, 0, 0, /* 0: replaced with offset of this symbol in .got. */
2003 0x01, 0xd0, /* mov.l @(8,pc),r0 */
2004 0xc2, 0x51, /* mov.l @(8,r12),r1 */
2005 0x2b, 0x41, /* jmp @r1 */
2006 0x09, 0x00, /* nop */
2007 0, 0, 0, 0, /* 1: replaced with offset into relocation table. */
2010 static const struct elf_sh_plt_info vxworks_sh_plts
[2][2] = {
2013 /* Big-endian non-PIC. */
2014 vxworks_sh_plt0_entry_be
,
2015 VXWORKS_PLT_HEADER_SIZE
,
2016 { MINUS_ONE
, MINUS_ONE
, 8 },
2017 vxworks_sh_plt_entry_be
,
2018 VXWORKS_PLT_ENTRY_SIZE
,
2023 /* Little-endian non-PIC. */
2024 vxworks_sh_plt0_entry_le
,
2025 VXWORKS_PLT_HEADER_SIZE
,
2026 { MINUS_ONE
, MINUS_ONE
, 8 },
2027 vxworks_sh_plt_entry_le
,
2028 VXWORKS_PLT_ENTRY_SIZE
,
2035 /* Big-endian PIC. */
2038 { MINUS_ONE
, MINUS_ONE
, MINUS_ONE
},
2039 vxworks_sh_pic_plt_entry_be
,
2040 VXWORKS_PLT_ENTRY_SIZE
,
2041 { 8, MINUS_ONE
, 20 },
2045 /* Little-endian PIC. */
2048 { MINUS_ONE
, MINUS_ONE
, MINUS_ONE
},
2049 vxworks_sh_pic_plt_entry_le
,
2050 VXWORKS_PLT_ENTRY_SIZE
,
2051 { 8, MINUS_ONE
, 20 },
2057 /* Return the type of PLT associated with ABFD. PIC_P is true if
2058 the object is position-independent. */
2060 static const struct elf_sh_plt_info
*
2061 get_plt_info (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_boolean pic_p
)
2063 if (vxworks_object_p (abfd
))
2064 return &vxworks_sh_plts
[pic_p
][!bfd_big_endian (abfd
)];
2065 return &elf_sh_plts
[pic_p
][!bfd_big_endian (abfd
)];
2068 /* Install a 32-bit PLT field starting at ADDR, which occurs in OUTPUT_BFD.
2069 VALUE is the field's value and CODE_P is true if VALUE refers to code,
2073 install_plt_field (bfd
*output_bfd
, bfd_boolean code_p ATTRIBUTE_UNUSED
,
2074 unsigned long value
, bfd_byte
*addr
)
2076 bfd_put_32 (output_bfd
, value
, addr
);
2080 /* Return the index of the PLT entry at byte offset OFFSET. */
2083 get_plt_index (const struct elf_sh_plt_info
*info
, bfd_vma offset
)
2085 return (offset
- info
->plt0_entry_size
) / info
->symbol_entry_size
;
2088 /* Do the inverse operation. */
2091 get_plt_offset (const struct elf_sh_plt_info
*info
, bfd_vma index
)
2093 return info
->plt0_entry_size
+ (index
* info
->symbol_entry_size
);
2096 /* The sh linker needs to keep track of the number of relocs that it
2097 decides to copy as dynamic relocs in check_relocs for each symbol.
2098 This is so that it can later discard them if they are found to be
2099 unnecessary. We store the information in a field extending the
2100 regular ELF linker hash table. */
2102 struct elf_sh_dyn_relocs
2104 struct elf_sh_dyn_relocs
*next
;
2106 /* The input section of the reloc. */
2109 /* Total number of relocs copied for the input section. */
2110 bfd_size_type count
;
2112 /* Number of pc-relative relocs copied for the input section. */
2113 bfd_size_type pc_count
;
2116 /* sh ELF linker hash entry. */
2118 struct elf_sh_link_hash_entry
2120 struct elf_link_hash_entry root
;
2122 #ifdef INCLUDE_SHMEDIA
2125 bfd_signed_vma refcount
;
2130 /* Track dynamic relocs copied for this symbol. */
2131 struct elf_sh_dyn_relocs
*dyn_relocs
;
2133 bfd_signed_vma gotplt_refcount
;
2136 GOT_UNKNOWN
= 0, GOT_NORMAL
, GOT_TLS_GD
, GOT_TLS_IE
2140 #define sh_elf_hash_entry(ent) ((struct elf_sh_link_hash_entry *)(ent))
2142 struct sh_elf_obj_tdata
2144 struct elf_obj_tdata root
;
2146 /* tls_type for each local got entry. */
2147 char *local_got_tls_type
;
2150 #define sh_elf_tdata(abfd) \
2151 ((struct sh_elf_obj_tdata *) (abfd)->tdata.any)
2153 #define sh_elf_local_got_tls_type(abfd) \
2154 (sh_elf_tdata (abfd)->local_got_tls_type)
2156 /* Override the generic function because we need to store sh_elf_obj_tdata
2157 as the specific tdata. */
2160 sh_elf_mkobject (bfd
*abfd
)
2162 if (abfd
->tdata
.any
== NULL
)
2164 bfd_size_type amt
= sizeof (struct sh_elf_obj_tdata
);
2165 abfd
->tdata
.any
= bfd_zalloc (abfd
, amt
);
2166 if (abfd
->tdata
.any
== NULL
)
2169 return bfd_elf_mkobject (abfd
);
2172 /* sh ELF linker hash table. */
2174 struct elf_sh_link_hash_table
2176 struct elf_link_hash_table root
;
2178 /* Short-cuts to get to dynamic linker sections. */
2187 /* The (unloaded but important) VxWorks .rela.plt.unloaded section. */
2190 /* Small local sym to section mapping cache. */
2191 struct sym_sec_cache sym_sec
;
2193 /* A counter or offset to track a TLS got entry. */
2196 bfd_signed_vma refcount
;
2200 /* The type of PLT to use. */
2201 const struct elf_sh_plt_info
*plt_info
;
2203 /* True if the target system is VxWorks. */
2204 bfd_boolean vxworks_p
;
2207 /* Traverse an sh ELF linker hash table. */
2209 #define sh_elf_link_hash_traverse(table, func, info) \
2210 (elf_link_hash_traverse \
2212 (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \
2215 /* Get the sh ELF linker hash table from a link_info structure. */
2217 #define sh_elf_hash_table(p) \
2218 ((struct elf_sh_link_hash_table *) ((p)->hash))
2220 /* Create an entry in an sh ELF linker hash table. */
2222 static struct bfd_hash_entry
*
2223 sh_elf_link_hash_newfunc (struct bfd_hash_entry
*entry
,
2224 struct bfd_hash_table
*table
,
2227 struct elf_sh_link_hash_entry
*ret
=
2228 (struct elf_sh_link_hash_entry
*) entry
;
2230 /* Allocate the structure if it has not already been allocated by a
2232 if (ret
== (struct elf_sh_link_hash_entry
*) NULL
)
2233 ret
= ((struct elf_sh_link_hash_entry
*)
2234 bfd_hash_allocate (table
,
2235 sizeof (struct elf_sh_link_hash_entry
)));
2236 if (ret
== (struct elf_sh_link_hash_entry
*) NULL
)
2237 return (struct bfd_hash_entry
*) ret
;
2239 /* Call the allocation method of the superclass. */
2240 ret
= ((struct elf_sh_link_hash_entry
*)
2241 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
2243 if (ret
!= (struct elf_sh_link_hash_entry
*) NULL
)
2245 ret
->dyn_relocs
= NULL
;
2246 ret
->gotplt_refcount
= 0;
2247 #ifdef INCLUDE_SHMEDIA
2248 ret
->datalabel_got
.refcount
= ret
->root
.got
.refcount
;
2250 ret
->tls_type
= GOT_UNKNOWN
;
2253 return (struct bfd_hash_entry
*) ret
;
2256 /* Create an sh ELF linker hash table. */
2258 static struct bfd_link_hash_table
*
2259 sh_elf_link_hash_table_create (bfd
*abfd
)
2261 struct elf_sh_link_hash_table
*ret
;
2262 bfd_size_type amt
= sizeof (struct elf_sh_link_hash_table
);
2264 ret
= (struct elf_sh_link_hash_table
*) bfd_malloc (amt
);
2265 if (ret
== (struct elf_sh_link_hash_table
*) NULL
)
2268 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
2269 sh_elf_link_hash_newfunc
,
2270 sizeof (struct elf_sh_link_hash_entry
)))
2277 ret
->sgotplt
= NULL
;
2278 ret
->srelgot
= NULL
;
2280 ret
->srelplt
= NULL
;
2281 ret
->sdynbss
= NULL
;
2282 ret
->srelbss
= NULL
;
2283 ret
->srelplt2
= NULL
;
2284 ret
->sym_sec
.abfd
= NULL
;
2285 ret
->tls_ldm_got
.refcount
= 0;
2286 ret
->plt_info
= NULL
;
2287 ret
->vxworks_p
= vxworks_object_p (abfd
);
2289 return &ret
->root
.root
;
2292 /* Create .got, .gotplt, and .rela.got sections in DYNOBJ, and set up
2293 shortcuts to them in our hash table. */
2296 create_got_section (bfd
*dynobj
, struct bfd_link_info
*info
)
2298 struct elf_sh_link_hash_table
*htab
;
2300 if (! _bfd_elf_create_got_section (dynobj
, info
))
2303 htab
= sh_elf_hash_table (info
);
2304 htab
->sgot
= bfd_get_section_by_name (dynobj
, ".got");
2305 htab
->sgotplt
= bfd_get_section_by_name (dynobj
, ".got.plt");
2306 if (! htab
->sgot
|| ! htab
->sgotplt
)
2309 htab
->srelgot
= bfd_make_section_with_flags (dynobj
, ".rela.got",
2310 (SEC_ALLOC
| SEC_LOAD
2313 | SEC_LINKER_CREATED
2315 if (htab
->srelgot
== NULL
2316 || ! bfd_set_section_alignment (dynobj
, htab
->srelgot
, 2))
2321 /* Create dynamic sections when linking against a dynamic object. */
2324 sh_elf_create_dynamic_sections (bfd
*abfd
, struct bfd_link_info
*info
)
2326 struct elf_sh_link_hash_table
*htab
;
2327 flagword flags
, pltflags
;
2328 register asection
*s
;
2329 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
2332 switch (bed
->s
->arch_size
)
2343 bfd_set_error (bfd_error_bad_value
);
2347 htab
= sh_elf_hash_table (info
);
2348 if (htab
->root
.dynamic_sections_created
)
2351 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
2352 .rel[a].bss sections. */
2354 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
2355 | SEC_LINKER_CREATED
);
2358 pltflags
|= SEC_CODE
;
2359 if (bed
->plt_not_loaded
)
2360 pltflags
&= ~ (SEC_LOAD
| SEC_HAS_CONTENTS
);
2361 if (bed
->plt_readonly
)
2362 pltflags
|= SEC_READONLY
;
2364 s
= bfd_make_section_with_flags (abfd
, ".plt", pltflags
);
2367 || ! bfd_set_section_alignment (abfd
, s
, bed
->plt_alignment
))
2370 if (bed
->want_plt_sym
)
2372 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
2374 struct elf_link_hash_entry
*h
;
2375 struct bfd_link_hash_entry
*bh
= NULL
;
2377 if (! (_bfd_generic_link_add_one_symbol
2378 (info
, abfd
, "_PROCEDURE_LINKAGE_TABLE_", BSF_GLOBAL
, s
,
2379 (bfd_vma
) 0, (const char *) NULL
, FALSE
,
2380 get_elf_backend_data (abfd
)->collect
, &bh
)))
2383 h
= (struct elf_link_hash_entry
*) bh
;
2385 h
->type
= STT_OBJECT
;
2386 htab
->root
.hplt
= h
;
2389 && ! bfd_elf_link_record_dynamic_symbol (info
, h
))
2393 s
= bfd_make_section_with_flags (abfd
,
2394 bed
->default_use_rela_p
? ".rela.plt" : ".rel.plt",
2395 flags
| SEC_READONLY
);
2398 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2401 if (htab
->sgot
== NULL
2402 && !create_got_section (abfd
, info
))
2406 const char *secname
;
2411 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
2413 secflags
= bfd_get_section_flags (abfd
, sec
);
2414 if ((secflags
& (SEC_DATA
| SEC_LINKER_CREATED
))
2415 || ((secflags
& SEC_HAS_CONTENTS
) != SEC_HAS_CONTENTS
))
2417 secname
= bfd_get_section_name (abfd
, sec
);
2418 relname
= (char *) bfd_malloc ((bfd_size_type
) strlen (secname
) + 6);
2419 strcpy (relname
, ".rela");
2420 strcat (relname
, secname
);
2421 if (bfd_get_section_by_name (abfd
, secname
))
2423 s
= bfd_make_section_with_flags (abfd
, relname
,
2424 flags
| SEC_READONLY
);
2426 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2431 if (bed
->want_dynbss
)
2433 /* The .dynbss section is a place to put symbols which are defined
2434 by dynamic objects, are referenced by regular objects, and are
2435 not functions. We must allocate space for them in the process
2436 image and use a R_*_COPY reloc to tell the dynamic linker to
2437 initialize them at run time. The linker script puts the .dynbss
2438 section into the .bss section of the final image. */
2439 s
= bfd_make_section_with_flags (abfd
, ".dynbss",
2440 SEC_ALLOC
| SEC_LINKER_CREATED
);
2445 /* The .rel[a].bss section holds copy relocs. This section is not
2446 normally needed. We need to create it here, though, so that the
2447 linker will map it to an output section. We can't just create it
2448 only if we need it, because we will not know whether we need it
2449 until we have seen all the input files, and the first time the
2450 main linker code calls BFD after examining all the input files
2451 (size_dynamic_sections) the input sections have already been
2452 mapped to the output sections. If the section turns out not to
2453 be needed, we can discard it later. We will never need this
2454 section when generating a shared object, since they do not use
2458 s
= bfd_make_section_with_flags (abfd
,
2459 (bed
->default_use_rela_p
2460 ? ".rela.bss" : ".rel.bss"),
2461 flags
| SEC_READONLY
);
2464 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2469 if (htab
->vxworks_p
)
2471 if (!elf_vxworks_create_dynamic_sections (abfd
, info
, &htab
->srelplt2
))
2478 /* Adjust a symbol defined by a dynamic object and referenced by a
2479 regular object. The current definition is in some section of the
2480 dynamic object, but we're not including those sections. We have to
2481 change the definition to something the rest of the link can
2485 sh_elf_adjust_dynamic_symbol (struct bfd_link_info
*info
,
2486 struct elf_link_hash_entry
*h
)
2488 struct elf_sh_link_hash_table
*htab
;
2489 struct elf_sh_link_hash_entry
*eh
;
2490 struct elf_sh_dyn_relocs
*p
;
2492 unsigned int power_of_two
;
2494 htab
= sh_elf_hash_table (info
);
2496 /* Make sure we know what is going on here. */
2497 BFD_ASSERT (htab
->root
.dynobj
!= NULL
2499 || h
->u
.weakdef
!= NULL
2502 && !h
->def_regular
)));
2504 /* If this is a function, put it in the procedure linkage table. We
2505 will fill in the contents of the procedure linkage table later,
2506 when we know the address of the .got section. */
2507 if (h
->type
== STT_FUNC
2510 if (h
->plt
.refcount
<= 0
2511 || SYMBOL_CALLS_LOCAL (info
, h
)
2512 || (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
2513 && h
->root
.type
== bfd_link_hash_undefweak
))
2515 /* This case can occur if we saw a PLT reloc in an input
2516 file, but the symbol was never referred to by a dynamic
2517 object. In such a case, we don't actually need to build
2518 a procedure linkage table, and we can just do a REL32
2520 h
->plt
.offset
= (bfd_vma
) -1;
2527 h
->plt
.offset
= (bfd_vma
) -1;
2529 /* If this is a weak symbol, and there is a real definition, the
2530 processor independent code will have arranged for us to see the
2531 real definition first, and we can just use the same value. */
2532 if (h
->u
.weakdef
!= NULL
)
2534 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
2535 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
2536 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
2537 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
2538 if (info
->nocopyreloc
)
2539 h
->non_got_ref
= h
->u
.weakdef
->non_got_ref
;
2543 /* This is a reference to a symbol defined by a dynamic object which
2544 is not a function. */
2546 /* If we are creating a shared library, we must presume that the
2547 only references to the symbol are via the global offset table.
2548 For such cases we need not do anything here; the relocations will
2549 be handled correctly by relocate_section. */
2553 /* If there are no references to this symbol that do not use the
2554 GOT, we don't need to generate a copy reloc. */
2555 if (!h
->non_got_ref
)
2558 /* If -z nocopyreloc was given, we won't generate them either. */
2559 if (info
->nocopyreloc
)
2565 eh
= (struct elf_sh_link_hash_entry
*) h
;
2566 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
2568 s
= p
->sec
->output_section
;
2569 if (s
!= NULL
&& (s
->flags
& (SEC_READONLY
| SEC_HAS_CONTENTS
)) != 0)
2573 /* If we didn't find any dynamic relocs in sections which needs the
2574 copy reloc, then we'll be keeping the dynamic relocs and avoiding
2584 (*_bfd_error_handler
) (_("dynamic variable `%s' is zero size"),
2585 h
->root
.root
.string
);
2589 /* We must allocate the symbol in our .dynbss section, which will
2590 become part of the .bss section of the executable. There will be
2591 an entry for this symbol in the .dynsym section. The dynamic
2592 object will contain position independent code, so all references
2593 from the dynamic object to this symbol will go through the global
2594 offset table. The dynamic linker will use the .dynsym entry to
2595 determine the address it must put in the global offset table, so
2596 both the dynamic object and the regular object will refer to the
2597 same memory location for the variable. */
2600 BFD_ASSERT (s
!= NULL
);
2602 /* We must generate a R_SH_COPY reloc to tell the dynamic linker to
2603 copy the initial value out of the dynamic object and into the
2604 runtime process image. We need to remember the offset into the
2605 .rela.bss section we are going to use. */
2606 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
2610 srel
= htab
->srelbss
;
2611 BFD_ASSERT (srel
!= NULL
);
2612 srel
->size
+= sizeof (Elf32_External_Rela
);
2616 /* We need to figure out the alignment required for this symbol. I
2617 have no idea how ELF linkers handle this. */
2618 power_of_two
= bfd_log2 (h
->size
);
2619 if (power_of_two
> 3)
2622 /* Apply the required alignment. */
2623 s
->size
= BFD_ALIGN (s
->size
, (bfd_size_type
) (1 << power_of_two
));
2624 if (power_of_two
> bfd_get_section_alignment (htab
->root
.dynobj
, s
))
2626 if (! bfd_set_section_alignment (htab
->root
.dynobj
, s
, power_of_two
))
2630 /* Define the symbol as being at this point in the section. */
2631 h
->root
.u
.def
.section
= s
;
2632 h
->root
.u
.def
.value
= s
->size
;
2634 /* Increment the section size to make room for the symbol. */
2640 /* Allocate space in .plt, .got and associated reloc sections for
2644 allocate_dynrelocs (struct elf_link_hash_entry
*h
, void *inf
)
2646 struct bfd_link_info
*info
;
2647 struct elf_sh_link_hash_table
*htab
;
2648 struct elf_sh_link_hash_entry
*eh
;
2649 struct elf_sh_dyn_relocs
*p
;
2651 if (h
->root
.type
== bfd_link_hash_indirect
)
2654 if (h
->root
.type
== bfd_link_hash_warning
)
2655 /* When warning symbols are created, they **replace** the "real"
2656 entry in the hash table, thus we never get to see the real
2657 symbol in a hash traversal. So look at it now. */
2658 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2660 info
= (struct bfd_link_info
*) inf
;
2661 htab
= sh_elf_hash_table (info
);
2663 eh
= (struct elf_sh_link_hash_entry
*) h
;
2664 if ((h
->got
.refcount
> 0
2666 && eh
->gotplt_refcount
> 0)
2668 /* The symbol has been forced local, or we have some direct got refs,
2669 so treat all the gotplt refs as got refs. */
2670 h
->got
.refcount
+= eh
->gotplt_refcount
;
2671 if (h
->plt
.refcount
>= eh
->gotplt_refcount
)
2672 h
->plt
.refcount
-= eh
->gotplt_refcount
;
2675 if (htab
->root
.dynamic_sections_created
2676 && h
->plt
.refcount
> 0
2677 && (ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
2678 || h
->root
.type
!= bfd_link_hash_undefweak
))
2680 /* Make sure this symbol is output as a dynamic symbol.
2681 Undefined weak syms won't yet be marked as dynamic. */
2682 if (h
->dynindx
== -1
2683 && !h
->forced_local
)
2685 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2690 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h
))
2692 asection
*s
= htab
->splt
;
2694 /* If this is the first .plt entry, make room for the special
2697 s
->size
+= htab
->plt_info
->plt0_entry_size
;
2699 h
->plt
.offset
= s
->size
;
2701 /* If this symbol is not defined in a regular file, and we are
2702 not generating a shared library, then set the symbol to this
2703 location in the .plt. This is required to make function
2704 pointers compare as equal between the normal executable and
2705 the shared library. */
2709 h
->root
.u
.def
.section
= s
;
2710 h
->root
.u
.def
.value
= h
->plt
.offset
;
2713 /* Make room for this entry. */
2714 s
->size
+= htab
->plt_info
->symbol_entry_size
;
2716 /* We also need to make an entry in the .got.plt section, which
2717 will be placed in the .got section by the linker script. */
2718 htab
->sgotplt
->size
+= 4;
2720 /* We also need to make an entry in the .rel.plt section. */
2721 htab
->srelplt
->size
+= sizeof (Elf32_External_Rela
);
2723 if (htab
->vxworks_p
&& !info
->shared
)
2725 /* VxWorks executables have a second set of relocations
2726 for each PLT entry. They go in a separate relocation
2727 section, which is processed by the kernel loader. */
2729 /* There is a relocation for the initial PLT entry:
2730 an R_SH_DIR32 relocation for _GLOBAL_OFFSET_TABLE_. */
2731 if (h
->plt
.offset
== htab
->plt_info
->plt0_entry_size
)
2732 htab
->srelplt2
->size
+= sizeof (Elf32_External_Rela
);
2734 /* There are two extra relocations for each subsequent
2735 PLT entry: an R_SH_DIR32 relocation for the GOT entry,
2736 and an R_SH_DIR32 relocation for the PLT entry. */
2737 htab
->srelplt2
->size
+= sizeof (Elf32_External_Rela
) * 2;
2742 h
->plt
.offset
= (bfd_vma
) -1;
2748 h
->plt
.offset
= (bfd_vma
) -1;
2752 if (h
->got
.refcount
> 0)
2756 int tls_type
= sh_elf_hash_entry (h
)->tls_type
;
2758 /* Make sure this symbol is output as a dynamic symbol.
2759 Undefined weak syms won't yet be marked as dynamic. */
2760 if (h
->dynindx
== -1
2761 && !h
->forced_local
)
2763 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2768 h
->got
.offset
= s
->size
;
2770 /* R_SH_TLS_GD needs 2 consecutive GOT slots. */
2771 if (tls_type
== GOT_TLS_GD
)
2773 dyn
= htab
->root
.dynamic_sections_created
;
2774 /* R_SH_TLS_IE_32 needs one dynamic relocation if dynamic,
2775 R_SH_TLS_GD needs one if local symbol and two if global. */
2776 if ((tls_type
== GOT_TLS_GD
&& h
->dynindx
== -1)
2777 || (tls_type
== GOT_TLS_IE
&& dyn
))
2778 htab
->srelgot
->size
+= sizeof (Elf32_External_Rela
);
2779 else if (tls_type
== GOT_TLS_GD
)
2780 htab
->srelgot
->size
+= 2 * sizeof (Elf32_External_Rela
);
2781 else if ((ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
2782 || h
->root
.type
!= bfd_link_hash_undefweak
)
2784 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, 0, h
)))
2785 htab
->srelgot
->size
+= sizeof (Elf32_External_Rela
);
2788 h
->got
.offset
= (bfd_vma
) -1;
2790 #ifdef INCLUDE_SHMEDIA
2791 if (eh
->datalabel_got
.refcount
> 0)
2796 /* Make sure this symbol is output as a dynamic symbol.
2797 Undefined weak syms won't yet be marked as dynamic. */
2798 if (h
->dynindx
== -1
2799 && !h
->forced_local
)
2801 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2806 eh
->datalabel_got
.offset
= s
->size
;
2808 dyn
= htab
->root
.dynamic_sections_created
;
2809 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
))
2810 htab
->srelgot
->size
+= sizeof (Elf32_External_Rela
);
2813 eh
->datalabel_got
.offset
= (bfd_vma
) -1;
2816 if (eh
->dyn_relocs
== NULL
)
2819 /* In the shared -Bsymbolic case, discard space allocated for
2820 dynamic pc-relative relocs against symbols which turn out to be
2821 defined in regular objects. For the normal shared case, discard
2822 space for pc-relative relocs that have become local due to symbol
2823 visibility changes. */
2827 if (SYMBOL_CALLS_LOCAL (info
, h
))
2829 struct elf_sh_dyn_relocs
**pp
;
2831 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; )
2833 p
->count
-= p
->pc_count
;
2842 /* Also discard relocs on undefined weak syms with non-default
2844 if (eh
->dyn_relocs
!= NULL
2845 && h
->root
.type
== bfd_link_hash_undefweak
)
2847 if (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
)
2848 eh
->dyn_relocs
= NULL
;
2850 /* Make sure undefined weak symbols are output as a dynamic
2852 else if (h
->dynindx
== -1
2853 && !h
->forced_local
)
2855 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2862 /* For the non-shared case, discard space for relocs against
2863 symbols which turn out to need copy relocs or are not
2869 || (htab
->root
.dynamic_sections_created
2870 && (h
->root
.type
== bfd_link_hash_undefweak
2871 || h
->root
.type
== bfd_link_hash_undefined
))))
2873 /* Make sure this symbol is output as a dynamic symbol.
2874 Undefined weak syms won't yet be marked as dynamic. */
2875 if (h
->dynindx
== -1
2876 && !h
->forced_local
)
2878 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2882 /* If that succeeded, we know we'll be keeping all the
2884 if (h
->dynindx
!= -1)
2888 eh
->dyn_relocs
= NULL
;
2893 /* Finally, allocate space. */
2894 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
2896 asection
*sreloc
= elf_section_data (p
->sec
)->sreloc
;
2897 sreloc
->size
+= p
->count
* sizeof (Elf32_External_Rela
);
2903 /* Find any dynamic relocs that apply to read-only sections. */
2906 readonly_dynrelocs (struct elf_link_hash_entry
*h
, void *inf
)
2908 struct elf_sh_link_hash_entry
*eh
;
2909 struct elf_sh_dyn_relocs
*p
;
2911 if (h
->root
.type
== bfd_link_hash_warning
)
2912 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2914 eh
= (struct elf_sh_link_hash_entry
*) h
;
2915 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
2917 asection
*s
= p
->sec
->output_section
;
2919 if (s
!= NULL
&& (s
->flags
& SEC_READONLY
) != 0)
2921 struct bfd_link_info
*info
= (struct bfd_link_info
*) inf
;
2923 info
->flags
|= DF_TEXTREL
;
2925 /* Not an error, just cut short the traversal. */
2932 /* This function is called after all the input files have been read,
2933 and the input sections have been assigned to output sections.
2934 It's a convenient place to determine the PLT style. */
2937 sh_elf_always_size_sections (bfd
*output_bfd
, struct bfd_link_info
*info
)
2939 sh_elf_hash_table (info
)->plt_info
= get_plt_info (output_bfd
, info
->shared
);
2943 /* Set the sizes of the dynamic sections. */
2946 sh_elf_size_dynamic_sections (bfd
*output_bfd ATTRIBUTE_UNUSED
,
2947 struct bfd_link_info
*info
)
2949 struct elf_sh_link_hash_table
*htab
;
2955 htab
= sh_elf_hash_table (info
);
2956 dynobj
= htab
->root
.dynobj
;
2957 BFD_ASSERT (dynobj
!= NULL
);
2959 if (htab
->root
.dynamic_sections_created
)
2961 /* Set the contents of the .interp section to the interpreter. */
2962 if (info
->executable
)
2964 s
= bfd_get_section_by_name (dynobj
, ".interp");
2965 BFD_ASSERT (s
!= NULL
);
2966 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
2967 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
2971 /* Set up .got offsets for local syms, and space for local dynamic
2973 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link_next
)
2975 bfd_signed_vma
*local_got
;
2976 bfd_signed_vma
*end_local_got
;
2977 char *local_tls_type
;
2978 bfd_size_type locsymcount
;
2979 Elf_Internal_Shdr
*symtab_hdr
;
2982 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
)
2985 for (s
= ibfd
->sections
; s
!= NULL
; s
= s
->next
)
2987 struct elf_sh_dyn_relocs
*p
;
2989 for (p
= ((struct elf_sh_dyn_relocs
*)
2990 elf_section_data (s
)->local_dynrel
);
2994 if (! bfd_is_abs_section (p
->sec
)
2995 && bfd_is_abs_section (p
->sec
->output_section
))
2997 /* Input section has been discarded, either because
2998 it is a copy of a linkonce section or due to
2999 linker script /DISCARD/, so we'll be discarding
3002 else if (p
->count
!= 0)
3004 srel
= elf_section_data (p
->sec
)->sreloc
;
3005 srel
->size
+= p
->count
* sizeof (Elf32_External_Rela
);
3006 if ((p
->sec
->output_section
->flags
& SEC_READONLY
) != 0)
3007 info
->flags
|= DF_TEXTREL
;
3012 local_got
= elf_local_got_refcounts (ibfd
);
3016 symtab_hdr
= &elf_tdata (ibfd
)->symtab_hdr
;
3017 locsymcount
= symtab_hdr
->sh_info
;
3018 #ifdef INCLUDE_SHMEDIA
3019 /* Count datalabel local GOT. */
3022 end_local_got
= local_got
+ locsymcount
;
3023 local_tls_type
= sh_elf_local_got_tls_type (ibfd
);
3025 srel
= htab
->srelgot
;
3026 for (; local_got
< end_local_got
; ++local_got
)
3030 *local_got
= s
->size
;
3032 if (*local_tls_type
== GOT_TLS_GD
)
3035 srel
->size
+= sizeof (Elf32_External_Rela
);
3038 *local_got
= (bfd_vma
) -1;
3043 if (htab
->tls_ldm_got
.refcount
> 0)
3045 /* Allocate 2 got entries and 1 dynamic reloc for R_SH_TLS_LD_32
3047 htab
->tls_ldm_got
.offset
= htab
->sgot
->size
;
3048 htab
->sgot
->size
+= 8;
3049 htab
->srelgot
->size
+= sizeof (Elf32_External_Rela
);
3052 htab
->tls_ldm_got
.offset
= -1;
3054 /* Allocate global sym .plt and .got entries, and space for global
3055 sym dynamic relocs. */
3056 elf_link_hash_traverse (&htab
->root
, allocate_dynrelocs
, info
);
3058 /* We now have determined the sizes of the various dynamic sections.
3059 Allocate memory for them. */
3061 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
3063 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
3068 || s
== htab
->sgotplt
3069 || s
== htab
->sdynbss
)
3071 /* Strip this section if we don't need it; see the
3074 else if (CONST_STRNEQ (bfd_get_section_name (dynobj
, s
), ".rela"))
3076 if (s
->size
!= 0 && s
!= htab
->srelplt
&& s
!= htab
->srelplt2
)
3079 /* We use the reloc_count field as a counter if we need
3080 to copy relocs into the output file. */
3085 /* It's not one of our sections, so don't allocate space. */
3091 /* If we don't need this section, strip it from the
3092 output file. This is mostly to handle .rela.bss and
3093 .rela.plt. We must create both sections in
3094 create_dynamic_sections, because they must be created
3095 before the linker maps input sections to output
3096 sections. The linker does that before
3097 adjust_dynamic_symbol is called, and it is that
3098 function which decides whether anything needs to go
3099 into these sections. */
3101 s
->flags
|= SEC_EXCLUDE
;
3105 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
3108 /* Allocate memory for the section contents. We use bfd_zalloc
3109 here in case unused entries are not reclaimed before the
3110 section's contents are written out. This should not happen,
3111 but this way if it does, we get a R_SH_NONE reloc instead
3113 s
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, s
->size
);
3114 if (s
->contents
== NULL
)
3118 if (htab
->root
.dynamic_sections_created
)
3120 /* Add some entries to the .dynamic section. We fill in the
3121 values later, in sh_elf_finish_dynamic_sections, but we
3122 must add the entries now so that we get the correct size for
3123 the .dynamic section. The DT_DEBUG entry is filled in by the
3124 dynamic linker and used by the debugger. */
3125 #define add_dynamic_entry(TAG, VAL) \
3126 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3128 if (info
->executable
)
3130 if (! add_dynamic_entry (DT_DEBUG
, 0))
3134 if (htab
->splt
->size
!= 0)
3136 if (! add_dynamic_entry (DT_PLTGOT
, 0)
3137 || ! add_dynamic_entry (DT_PLTRELSZ
, 0)
3138 || ! add_dynamic_entry (DT_PLTREL
, DT_RELA
)
3139 || ! add_dynamic_entry (DT_JMPREL
, 0))
3145 if (! add_dynamic_entry (DT_RELA
, 0)
3146 || ! add_dynamic_entry (DT_RELASZ
, 0)
3147 || ! add_dynamic_entry (DT_RELAENT
,
3148 sizeof (Elf32_External_Rela
)))
3151 /* If any dynamic relocs apply to a read-only section,
3152 then we need a DT_TEXTREL entry. */
3153 if ((info
->flags
& DF_TEXTREL
) == 0)
3154 elf_link_hash_traverse (&htab
->root
, readonly_dynrelocs
, info
);
3156 if ((info
->flags
& DF_TEXTREL
) != 0)
3158 if (! add_dynamic_entry (DT_TEXTREL
, 0))
3163 #undef add_dynamic_entry
3168 /* Relocate an SH ELF section. */
3171 sh_elf_relocate_section (bfd
*output_bfd
, struct bfd_link_info
*info
,
3172 bfd
*input_bfd
, asection
*input_section
,
3173 bfd_byte
*contents
, Elf_Internal_Rela
*relocs
,
3174 Elf_Internal_Sym
*local_syms
,
3175 asection
**local_sections
)
3177 struct elf_sh_link_hash_table
*htab
;
3178 Elf_Internal_Shdr
*symtab_hdr
;
3179 struct elf_link_hash_entry
**sym_hashes
;
3180 Elf_Internal_Rela
*rel
, *relend
;
3182 bfd_vma
*local_got_offsets
;
3189 htab
= sh_elf_hash_table (info
);
3190 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
3191 sym_hashes
= elf_sym_hashes (input_bfd
);
3192 dynobj
= htab
->root
.dynobj
;
3193 local_got_offsets
= elf_local_got_offsets (input_bfd
);
3196 sgotplt
= htab
->sgotplt
;
3202 relend
= relocs
+ input_section
->reloc_count
;
3203 for (; rel
< relend
; rel
++)
3206 reloc_howto_type
*howto
;
3207 unsigned long r_symndx
;
3208 Elf_Internal_Sym
*sym
;
3210 struct elf_link_hash_entry
*h
;
3212 bfd_vma addend
= (bfd_vma
) 0;
3213 bfd_reloc_status_type r
;
3214 int seen_stt_datalabel
= 0;
3218 r_symndx
= ELF32_R_SYM (rel
->r_info
);
3220 r_type
= ELF32_R_TYPE (rel
->r_info
);
3222 /* Many of the relocs are only used for relaxing, and are
3223 handled entirely by the relaxation code. */
3224 if (r_type
>= (int) R_SH_GNU_VTINHERIT
3225 && r_type
<= (int) R_SH_LABEL
)
3227 if (r_type
== (int) R_SH_NONE
)
3231 || r_type
>= R_SH_max
3232 || (r_type
>= (int) R_SH_FIRST_INVALID_RELOC
3233 && r_type
<= (int) R_SH_LAST_INVALID_RELOC
)
3234 || ( r_type
>= (int) R_SH_FIRST_INVALID_RELOC_3
3235 && r_type
<= (int) R_SH_LAST_INVALID_RELOC_3
)
3236 || ( r_type
>= (int) R_SH_FIRST_INVALID_RELOC_4
3237 && r_type
<= (int) R_SH_LAST_INVALID_RELOC_4
)
3238 || ( r_type
>= (int) R_SH_FIRST_INVALID_RELOC_5
3239 && r_type
<= (int) R_SH_LAST_INVALID_RELOC_5
)
3240 || (r_type
>= (int) R_SH_FIRST_INVALID_RELOC_2
3241 && r_type
<= (int) R_SH_LAST_INVALID_RELOC_2
))
3243 bfd_set_error (bfd_error_bad_value
);
3247 howto
= get_howto_table (output_bfd
) + r_type
;
3249 /* For relocs that aren't partial_inplace, we get the addend from
3251 if (! howto
->partial_inplace
)
3252 addend
= rel
->r_addend
;
3257 if (r_symndx
< symtab_hdr
->sh_info
)
3259 sym
= local_syms
+ r_symndx
;
3260 sec
= local_sections
[r_symndx
];
3261 relocation
= (sec
->output_section
->vma
3262 + sec
->output_offset
3264 /* A local symbol never has STO_SH5_ISA32, so we don't need
3265 datalabel processing here. Make sure this does not change
3267 if ((sym
->st_other
& STO_SH5_ISA32
) != 0)
3268 ((*info
->callbacks
->reloc_dangerous
)
3270 _("Unexpected STO_SH5_ISA32 on local symbol is not handled"),
3271 input_bfd
, input_section
, rel
->r_offset
));
3273 if (sec
!= NULL
&& elf_discarded_section (sec
))
3274 /* Handled below. */
3276 else if (info
->relocatable
)
3278 /* This is a relocatable link. We don't have to change
3279 anything, unless the reloc is against a section symbol,
3280 in which case we have to adjust according to where the
3281 section symbol winds up in the output section. */
3282 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
3284 if (! howto
->partial_inplace
)
3286 /* For relocations with the addend in the
3287 relocation, we need just to update the addend.
3288 All real relocs are of type partial_inplace; this
3289 code is mostly for completeness. */
3290 rel
->r_addend
+= sec
->output_offset
;
3295 /* Relocs of type partial_inplace need to pick up the
3296 contents in the contents and add the offset resulting
3297 from the changed location of the section symbol.
3298 Using _bfd_final_link_relocate (e.g. goto
3299 final_link_relocate) here would be wrong, because
3300 relocations marked pc_relative would get the current
3301 location subtracted, and we must only do that at the
3303 r
= _bfd_relocate_contents (howto
, input_bfd
,
3306 contents
+ rel
->r_offset
);
3307 goto relocation_done
;
3312 else if (! howto
->partial_inplace
)
3314 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
3315 addend
= rel
->r_addend
;
3317 else if ((sec
->flags
& SEC_MERGE
)
3318 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
3322 if (howto
->rightshift
|| howto
->src_mask
!= 0xffffffff)
3324 (*_bfd_error_handler
)
3325 (_("%B(%A+0x%lx): %s relocation against SEC_MERGE section"),
3326 input_bfd
, input_section
,
3327 (long) rel
->r_offset
, howto
->name
);
3331 addend
= bfd_get_32 (input_bfd
, contents
+ rel
->r_offset
);
3334 _bfd_elf_rel_local_sym (output_bfd
, sym
, &msec
, addend
)
3336 addend
+= msec
->output_section
->vma
+ msec
->output_offset
;
3337 bfd_put_32 (input_bfd
, addend
, contents
+ rel
->r_offset
);
3343 /* FIXME: Ought to make use of the RELOC_FOR_GLOBAL_SYMBOL macro. */
3346 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
3347 while (h
->root
.type
== bfd_link_hash_indirect
3348 || h
->root
.type
== bfd_link_hash_warning
)
3350 #ifdef INCLUDE_SHMEDIA
3351 /* If the reference passes a symbol marked with
3352 STT_DATALABEL, then any STO_SH5_ISA32 on the final value
3354 seen_stt_datalabel
|= h
->type
== STT_DATALABEL
;
3356 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
3358 if (h
->root
.type
== bfd_link_hash_defined
3359 || h
->root
.type
== bfd_link_hash_defweak
)
3363 dyn
= htab
->root
.dynamic_sections_created
;
3364 sec
= h
->root
.u
.def
.section
;
3365 /* In these cases, we don't need the relocation value.
3366 We check specially because in some obscure cases
3367 sec->output_section will be NULL. */
3368 if (r_type
== R_SH_GOTPC
3369 || r_type
== R_SH_GOTPC_LOW16
3370 || r_type
== R_SH_GOTPC_MEDLOW16
3371 || r_type
== R_SH_GOTPC_MEDHI16
3372 || r_type
== R_SH_GOTPC_HI16
3373 || ((r_type
== R_SH_PLT32
3374 || r_type
== R_SH_PLT_LOW16
3375 || r_type
== R_SH_PLT_MEDLOW16
3376 || r_type
== R_SH_PLT_MEDHI16
3377 || r_type
== R_SH_PLT_HI16
)
3378 && h
->plt
.offset
!= (bfd_vma
) -1)
3379 || ((r_type
== R_SH_GOT32
3380 || r_type
== R_SH_GOT_LOW16
3381 || r_type
== R_SH_GOT_MEDLOW16
3382 || r_type
== R_SH_GOT_MEDHI16
3383 || r_type
== R_SH_GOT_HI16
)
3384 && WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
)
3386 || (! info
->symbolic
&& h
->dynindx
!= -1)
3387 || !h
->def_regular
))
3388 /* The cases above are those in which relocation is
3389 overwritten in the switch block below. The cases
3390 below are those in which we must defer relocation
3391 to run-time, because we can't resolve absolute
3392 addresses when creating a shared library. */
3394 && ((! info
->symbolic
&& h
->dynindx
!= -1)
3396 && ((r_type
== R_SH_DIR32
3397 && !h
->forced_local
)
3398 || (r_type
== R_SH_REL32
3399 && !SYMBOL_CALLS_LOCAL (info
, h
)))
3400 && ((input_section
->flags
& SEC_ALLOC
) != 0
3401 /* DWARF will emit R_SH_DIR32 relocations in its
3402 sections against symbols defined externally
3403 in shared libraries. We can't do anything
3405 || ((input_section
->flags
& SEC_DEBUGGING
) != 0
3406 && h
->def_dynamic
)))
3407 /* Dynamic relocs are not propagated for SEC_DEBUGGING
3408 sections because such sections are not SEC_ALLOC and
3409 thus ld.so will not process them. */
3410 || (sec
->output_section
== NULL
3411 && ((input_section
->flags
& SEC_DEBUGGING
) != 0
3413 || (sec
->output_section
== NULL
3414 && (sh_elf_hash_entry (h
)->tls_type
== GOT_TLS_IE
3415 || sh_elf_hash_entry (h
)->tls_type
== GOT_TLS_GD
)))
3417 else if (sec
->output_section
!= NULL
)
3418 relocation
= ((h
->root
.u
.def
.value
3419 + sec
->output_section
->vma
3420 + sec
->output_offset
)
3421 /* A STO_SH5_ISA32 causes a "bitor 1" to the
3422 symbol value, unless we've seen
3423 STT_DATALABEL on the way to it. */
3424 | ((h
->other
& STO_SH5_ISA32
) != 0
3425 && ! seen_stt_datalabel
));
3426 else if (!info
->relocatable
)
3428 (*_bfd_error_handler
)
3429 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
3432 (long) rel
->r_offset
,
3434 h
->root
.root
.string
);
3438 else if (h
->root
.type
== bfd_link_hash_undefweak
)
3440 else if (info
->unresolved_syms_in_objects
== RM_IGNORE
3441 && ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
)
3443 else if (!info
->relocatable
)
3445 if (! info
->callbacks
->undefined_symbol
3446 (info
, h
->root
.root
.string
, input_bfd
,
3447 input_section
, rel
->r_offset
,
3448 (info
->unresolved_syms_in_objects
== RM_GENERATE_ERROR
3449 || ELF_ST_VISIBILITY (h
->other
))))
3454 if (sec
!= NULL
&& elf_discarded_section (sec
))
3456 /* For relocs against symbols from removed linkonce sections,
3457 or sections discarded by a linker script, we just want the
3458 section contents zeroed. Avoid any special processing. */
3459 _bfd_clear_contents (howto
, input_bfd
, contents
+ rel
->r_offset
);
3465 if (info
->relocatable
)
3468 switch ((int) r_type
)
3470 final_link_relocate
:
3471 /* COFF relocs don't use the addend. The addend is used for
3472 R_SH_DIR32 to be compatible with other compilers. */
3473 r
= _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
3474 contents
, rel
->r_offset
,
3475 relocation
, addend
);
3479 goto final_link_relocate
;
3484 /* If the reloc is against the start of this section, then
3485 the assembler has already taken care of it and the reloc
3486 is here only to assist in relaxing. If the reloc is not
3487 against the start of this section, then it's against an
3488 external symbol and we must deal with it ourselves. */
3489 if (input_section
->output_section
->vma
+ input_section
->output_offset
3492 int disp
= (relocation
3493 - input_section
->output_section
->vma
3494 - input_section
->output_offset
3500 case R_SH_DIR8WPZ
: mask
= 1; break;
3501 case R_SH_DIR8WPL
: mask
= 3; break;
3502 default: mask
= 0; break;
3506 ((*_bfd_error_handler
)
3507 (_("%B: 0x%lx: fatal: unaligned branch target for relax-support relocation"),
3508 input_section
->owner
,
3509 (unsigned long) rel
->r_offset
));
3510 bfd_set_error (bfd_error_bad_value
);
3514 goto final_link_relocate
;
3520 #ifdef INCLUDE_SHMEDIA
3521 if (shmedia_prepare_reloc (info
, input_bfd
, input_section
,
3522 contents
, rel
, &relocation
))
3523 goto final_link_relocate
;
3525 bfd_set_error (bfd_error_bad_value
);
3533 goto final_link_relocate
;
3539 ((*_bfd_error_handler
)
3540 (_("%B: 0x%lx: fatal: unaligned %s relocation 0x%lx"),
3541 input_section
->owner
,
3542 (unsigned long) rel
->r_offset
, howto
->name
,
3543 (unsigned long) relocation
));
3544 bfd_set_error (bfd_error_bad_value
);
3547 goto final_link_relocate
;
3554 ((*_bfd_error_handler
)
3555 (_("%B: 0x%lx: fatal: unaligned %s relocation 0x%lx"),
3556 input_section
->owner
,
3557 (unsigned long) rel
->r_offset
, howto
->name
,
3558 (unsigned long) relocation
));
3559 bfd_set_error (bfd_error_bad_value
);
3562 goto final_link_relocate
;
3565 if ((signed int)relocation
< -32
3566 || (signed int)relocation
> 32)
3568 ((*_bfd_error_handler
)
3569 (_("%B: 0x%lx: fatal: R_SH_PSHA relocation %d not in range -32..32"),
3570 input_section
->owner
,
3571 (unsigned long) rel
->r_offset
,
3572 (unsigned long) relocation
));
3573 bfd_set_error (bfd_error_bad_value
);
3576 goto final_link_relocate
;
3579 if ((signed int)relocation
< -16
3580 || (signed int)relocation
> 16)
3582 ((*_bfd_error_handler
)
3583 (_("%B: 0x%lx: fatal: R_SH_PSHL relocation %d not in range -32..32"),
3584 input_section
->owner
,
3585 (unsigned long) rel
->r_offset
,
3586 (unsigned long) relocation
));
3587 bfd_set_error (bfd_error_bad_value
);
3590 goto final_link_relocate
;
3594 #ifdef INCLUDE_SHMEDIA
3595 case R_SH_IMM_LOW16_PCREL
:
3596 case R_SH_IMM_MEDLOW16_PCREL
:
3597 case R_SH_IMM_MEDHI16_PCREL
:
3598 case R_SH_IMM_HI16_PCREL
:
3602 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
3603 || h
->root
.type
!= bfd_link_hash_undefweak
)
3605 && (input_section
->flags
& SEC_ALLOC
) != 0
3606 && (r_type
== R_SH_DIR32
3607 || !SYMBOL_CALLS_LOCAL (info
, h
)))
3609 Elf_Internal_Rela outrel
;
3611 bfd_boolean skip
, relocate
;
3613 /* When generating a shared object, these relocations
3614 are copied into the output file to be resolved at run
3621 name
= (bfd_elf_string_from_elf_section
3623 elf_elfheader (input_bfd
)->e_shstrndx
,
3624 elf_section_data (input_section
)->rel_hdr
.sh_name
));
3628 BFD_ASSERT (CONST_STRNEQ (name
, ".rela")
3629 && strcmp (bfd_get_section_name (input_bfd
,
3633 sreloc
= bfd_get_section_by_name (dynobj
, name
);
3634 BFD_ASSERT (sreloc
!= NULL
);
3641 _bfd_elf_section_offset (output_bfd
, info
, input_section
,
3643 if (outrel
.r_offset
== (bfd_vma
) -1)
3645 else if (outrel
.r_offset
== (bfd_vma
) -2)
3646 skip
= TRUE
, relocate
= TRUE
;
3647 outrel
.r_offset
+= (input_section
->output_section
->vma
3648 + input_section
->output_offset
);
3651 memset (&outrel
, 0, sizeof outrel
);
3652 else if (r_type
== R_SH_REL32
)
3654 BFD_ASSERT (h
!= NULL
&& h
->dynindx
!= -1);
3655 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_SH_REL32
);
3657 = (howto
->partial_inplace
3658 ? bfd_get_32 (input_bfd
, contents
+ rel
->r_offset
)
3661 #ifdef INCLUDE_SHMEDIA
3662 else if (r_type
== R_SH_IMM_LOW16_PCREL
3663 || r_type
== R_SH_IMM_MEDLOW16_PCREL
3664 || r_type
== R_SH_IMM_MEDHI16_PCREL
3665 || r_type
== R_SH_IMM_HI16_PCREL
)
3667 BFD_ASSERT (h
!= NULL
&& h
->dynindx
!= -1);
3668 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, r_type
);
3669 outrel
.r_addend
= addend
;
3674 /* h->dynindx may be -1 if this symbol was marked to
3677 || ((info
->symbolic
|| h
->dynindx
== -1)
3680 relocate
= howto
->partial_inplace
;
3681 outrel
.r_info
= ELF32_R_INFO (0, R_SH_RELATIVE
);
3685 BFD_ASSERT (h
->dynindx
!= -1);
3686 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_SH_DIR32
);
3688 outrel
.r_addend
= relocation
;
3690 += (howto
->partial_inplace
3691 ? bfd_get_32 (input_bfd
, contents
+ rel
->r_offset
)
3695 loc
= sreloc
->contents
;
3696 loc
+= sreloc
->reloc_count
++ * sizeof (Elf32_External_Rela
);
3697 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
3699 /* If this reloc is against an external symbol, we do
3700 not want to fiddle with the addend. Otherwise, we
3701 need to include the symbol value so that it becomes
3702 an addend for the dynamic reloc. */
3706 goto final_link_relocate
;
3709 #ifdef INCLUDE_SHMEDIA
3710 case R_SH_GOTPLT_LOW16
:
3711 case R_SH_GOTPLT_MEDLOW16
:
3712 case R_SH_GOTPLT_MEDHI16
:
3713 case R_SH_GOTPLT_HI16
:
3714 case R_SH_GOTPLT10BY4
:
3715 case R_SH_GOTPLT10BY8
:
3717 /* Relocation is to the entry for this symbol in the
3718 procedure linkage table. */
3725 || h
->plt
.offset
== (bfd_vma
) -1
3726 || h
->got
.offset
!= (bfd_vma
) -1)
3729 /* Relocation is to the entry for this symbol in the global
3730 offset table extension for the procedure linkage table. */
3732 BFD_ASSERT (sgotplt
!= NULL
);
3733 relocation
= (sgotplt
->output_offset
3734 + (get_plt_index (htab
->plt_info
, h
->plt
.offset
)
3738 relocation
-= GOT_BIAS
;
3741 goto final_link_relocate
;
3745 #ifdef INCLUDE_SHMEDIA
3746 case R_SH_GOT_LOW16
:
3747 case R_SH_GOT_MEDLOW16
:
3748 case R_SH_GOT_MEDHI16
:
3753 /* Relocation is to the entry for this symbol in the global
3756 BFD_ASSERT (sgot
!= NULL
);
3762 off
= h
->got
.offset
;
3763 #ifdef INCLUDE_SHMEDIA
3764 if (seen_stt_datalabel
)
3766 struct elf_sh_link_hash_entry
*hsh
;
3768 hsh
= (struct elf_sh_link_hash_entry
*)h
;
3769 off
= hsh
->datalabel_got
.offset
;
3772 BFD_ASSERT (off
!= (bfd_vma
) -1);
3774 dyn
= htab
->root
.dynamic_sections_created
;
3775 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
)
3777 && SYMBOL_REFERENCES_LOCAL (info
, h
))
3778 || (ELF_ST_VISIBILITY (h
->other
)
3779 && h
->root
.type
== bfd_link_hash_undefweak
))
3781 /* This is actually a static link, or it is a
3782 -Bsymbolic link and the symbol is defined
3783 locally, or the symbol was forced to be local
3784 because of a version file. We must initialize
3785 this entry in the global offset table. Since the
3786 offset must always be a multiple of 4, we use the
3787 least significant bit to record whether we have
3788 initialized it already.
3790 When doing a dynamic link, we create a .rela.got
3791 relocation entry to initialize the value. This
3792 is done in the finish_dynamic_symbol routine. */
3797 bfd_put_32 (output_bfd
, relocation
,
3798 sgot
->contents
+ off
);
3799 #ifdef INCLUDE_SHMEDIA
3800 if (seen_stt_datalabel
)
3802 struct elf_sh_link_hash_entry
*hsh
;
3804 hsh
= (struct elf_sh_link_hash_entry
*)h
;
3805 hsh
->datalabel_got
.offset
|= 1;
3813 relocation
= sgot
->output_offset
+ off
;
3817 #ifdef INCLUDE_SHMEDIA
3820 BFD_ASSERT (local_got_offsets
!= NULL
3821 && (local_got_offsets
[symtab_hdr
->sh_info
3825 off
= local_got_offsets
[symtab_hdr
->sh_info
3831 BFD_ASSERT (local_got_offsets
!= NULL
3832 && local_got_offsets
[r_symndx
] != (bfd_vma
) -1);
3834 off
= local_got_offsets
[r_symndx
];
3835 #ifdef INCLUDE_SHMEDIA
3839 /* The offset must always be a multiple of 4. We use
3840 the least significant bit to record whether we have
3841 already generated the necessary reloc. */
3846 bfd_put_32 (output_bfd
, relocation
, sgot
->contents
+ off
);
3850 Elf_Internal_Rela outrel
;
3853 if (srelgot
== NULL
)
3855 srelgot
= bfd_get_section_by_name (dynobj
,
3857 BFD_ASSERT (srelgot
!= NULL
);
3860 outrel
.r_offset
= (sgot
->output_section
->vma
3861 + sgot
->output_offset
3863 outrel
.r_info
= ELF32_R_INFO (0, R_SH_RELATIVE
);
3864 outrel
.r_addend
= relocation
;
3865 loc
= srelgot
->contents
;
3866 loc
+= srelgot
->reloc_count
++ * sizeof (Elf32_External_Rela
);
3867 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
3870 #ifdef INCLUDE_SHMEDIA
3872 local_got_offsets
[symtab_hdr
->sh_info
+ r_symndx
] |= 1;
3875 local_got_offsets
[r_symndx
] |= 1;
3878 relocation
= sgot
->output_offset
+ off
;
3882 relocation
-= GOT_BIAS
;
3885 goto final_link_relocate
;
3888 #ifdef INCLUDE_SHMEDIA
3889 case R_SH_GOTOFF_LOW16
:
3890 case R_SH_GOTOFF_MEDLOW16
:
3891 case R_SH_GOTOFF_MEDHI16
:
3892 case R_SH_GOTOFF_HI16
:
3894 /* Relocation is relative to the start of the global offset
3897 BFD_ASSERT (sgot
!= NULL
);
3899 /* Note that sgot->output_offset is not involved in this
3900 calculation. We always want the start of .got. If we
3901 defined _GLOBAL_OFFSET_TABLE in a different way, as is
3902 permitted by the ABI, we might have to change this
3904 relocation
-= sgot
->output_section
->vma
;
3907 relocation
-= GOT_BIAS
;
3910 addend
= rel
->r_addend
;
3912 goto final_link_relocate
;
3915 #ifdef INCLUDE_SHMEDIA
3916 case R_SH_GOTPC_LOW16
:
3917 case R_SH_GOTPC_MEDLOW16
:
3918 case R_SH_GOTPC_MEDHI16
:
3919 case R_SH_GOTPC_HI16
:
3921 /* Use global offset table as symbol value. */
3923 BFD_ASSERT (sgot
!= NULL
);
3924 relocation
= sgot
->output_section
->vma
;
3927 relocation
+= GOT_BIAS
;
3930 addend
= rel
->r_addend
;
3932 goto final_link_relocate
;
3935 #ifdef INCLUDE_SHMEDIA
3936 case R_SH_PLT_LOW16
:
3937 case R_SH_PLT_MEDLOW16
:
3938 case R_SH_PLT_MEDHI16
:
3941 /* Relocation is to the entry for this symbol in the
3942 procedure linkage table. */
3944 /* Resolve a PLT reloc against a local symbol directly,
3945 without using the procedure linkage table. */
3947 goto final_link_relocate
;
3949 if (h
->forced_local
)
3950 goto final_link_relocate
;
3952 if (h
->plt
.offset
== (bfd_vma
) -1)
3954 /* We didn't make a PLT entry for this symbol. This
3955 happens when statically linking PIC code, or when
3956 using -Bsymbolic. */
3957 goto final_link_relocate
;
3960 BFD_ASSERT (splt
!= NULL
);
3961 relocation
= (splt
->output_section
->vma
3962 + splt
->output_offset
3965 #ifdef INCLUDE_SHMEDIA
3969 addend
= rel
->r_addend
;
3971 goto final_link_relocate
;
3973 case R_SH_LOOP_START
:
3975 static bfd_vma start
, end
;
3977 start
= (relocation
+ rel
->r_addend
3978 - (sec
->output_section
->vma
+ sec
->output_offset
));
3979 r
= sh_elf_reloc_loop (r_type
, input_bfd
, input_section
, contents
,
3980 rel
->r_offset
, sec
, start
, end
);
3984 end
= (relocation
+ rel
->r_addend
3985 - (sec
->output_section
->vma
+ sec
->output_offset
));
3986 r
= sh_elf_reloc_loop (r_type
, input_bfd
, input_section
, contents
,
3987 rel
->r_offset
, sec
, start
, end
);
3991 case R_SH_TLS_GD_32
:
3992 case R_SH_TLS_IE_32
:
3993 r_type
= sh_elf_optimized_tls_reloc (info
, r_type
, h
== NULL
);
3994 tls_type
= GOT_UNKNOWN
;
3995 if (h
== NULL
&& local_got_offsets
)
3996 tls_type
= sh_elf_local_got_tls_type (input_bfd
) [r_symndx
];
3999 tls_type
= sh_elf_hash_entry (h
)->tls_type
;
4001 && (h
->dynindx
== -1
4003 r_type
= R_SH_TLS_LE_32
;
4006 if (r_type
== R_SH_TLS_GD_32
&& tls_type
== GOT_TLS_IE
)
4007 r_type
= R_SH_TLS_IE_32
;
4009 if (r_type
== R_SH_TLS_LE_32
)
4012 unsigned short insn
;
4014 if (ELF32_R_TYPE (rel
->r_info
) == R_SH_TLS_GD_32
)
4016 /* GD->LE transition:
4017 mov.l 1f,r4; mova 2f,r0; mov.l 2f,r1; add r0,r1;
4018 jsr @r1; add r12,r4; bra 3f; nop; .align 2;
4019 1: .long x$TLSGD; 2: .long __tls_get_addr@PLT; 3:
4021 mov.l 1f,r4; stc gbr,r0; add r4,r0; nop;
4023 1: .long x@TPOFF; 2: .long __tls_get_addr@PLT; 3:. */
4025 offset
= rel
->r_offset
;
4026 BFD_ASSERT (offset
>= 16);
4027 /* Size of GD instructions is 16 or 18. */
4029 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 0);
4030 if ((insn
& 0xff00) == 0xc700)
4032 BFD_ASSERT (offset
>= 2);
4034 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 0);
4037 BFD_ASSERT ((insn
& 0xff00) == 0xd400);
4038 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 2);
4039 BFD_ASSERT ((insn
& 0xff00) == 0xc700);
4040 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 4);
4041 BFD_ASSERT ((insn
& 0xff00) == 0xd100);
4042 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 6);
4043 BFD_ASSERT (insn
== 0x310c);
4044 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 8);
4045 BFD_ASSERT (insn
== 0x410b);
4046 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 10);
4047 BFD_ASSERT (insn
== 0x34cc);
4049 bfd_put_16 (output_bfd
, 0x0012, contents
+ offset
+ 2);
4050 bfd_put_16 (output_bfd
, 0x304c, contents
+ offset
+ 4);
4051 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 6);
4052 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 8);
4053 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 10);
4059 /* IE->LE transition:
4060 mov.l 1f,r0; stc gbr,rN; mov.l @(r0,r12),rM;
4061 bra 2f; add ...; .align 2; 1: x@GOTTPOFF; 2:
4063 mov.l .Ln,rM; stc gbr,rN; nop; ...;
4066 offset
= rel
->r_offset
;
4067 BFD_ASSERT (offset
>= 16);
4068 /* Size of IE instructions is 10 or 12. */
4070 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 0);
4071 if ((insn
& 0xf0ff) == 0x0012)
4073 BFD_ASSERT (offset
>= 2);
4075 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 0);
4078 BFD_ASSERT ((insn
& 0xff00) == 0xd000);
4079 index
= insn
& 0x00ff;
4080 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 2);
4081 BFD_ASSERT ((insn
& 0xf0ff) == 0x0012);
4082 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 4);
4083 BFD_ASSERT ((insn
& 0xf0ff) == 0x00ce);
4084 insn
= 0xd000 | (insn
& 0x0f00) | index
;
4085 bfd_put_16 (output_bfd
, insn
, contents
+ offset
+ 0);
4086 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 4);
4089 bfd_put_32 (output_bfd
, tpoff (info
, relocation
),
4090 contents
+ rel
->r_offset
);
4099 off
= h
->got
.offset
;
4102 if (local_got_offsets
== NULL
)
4105 off
= local_got_offsets
[r_symndx
];
4108 /* Relocate R_SH_TLS_IE_32 directly when statically linking. */
4109 if (r_type
== R_SH_TLS_IE_32
4110 && ! htab
->root
.dynamic_sections_created
)
4113 bfd_put_32 (output_bfd
, tpoff (info
, relocation
),
4114 sgot
->contents
+ off
);
4115 bfd_put_32 (output_bfd
, sgot
->output_offset
+ off
,
4116 contents
+ rel
->r_offset
);
4124 Elf_Internal_Rela outrel
;
4128 if (srelgot
== NULL
)
4130 srelgot
= bfd_get_section_by_name (dynobj
, ".rela.got");
4131 BFD_ASSERT (srelgot
!= NULL
);
4134 outrel
.r_offset
= (sgot
->output_section
->vma
4135 + sgot
->output_offset
+ off
);
4137 if (h
== NULL
|| h
->dynindx
== -1)
4142 dr_type
= (r_type
== R_SH_TLS_GD_32
? R_SH_TLS_DTPMOD32
:
4144 if (dr_type
== R_SH_TLS_TPOFF32
&& indx
== 0)
4145 outrel
.r_addend
= relocation
- dtpoff_base (info
);
4147 outrel
.r_addend
= 0;
4148 outrel
.r_info
= ELF32_R_INFO (indx
, dr_type
);
4149 loc
= srelgot
->contents
;
4150 loc
+= srelgot
->reloc_count
++ * sizeof (Elf32_External_Rela
);
4151 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
4153 if (r_type
== R_SH_TLS_GD_32
)
4157 bfd_put_32 (output_bfd
,
4158 relocation
- dtpoff_base (info
),
4159 sgot
->contents
+ off
+ 4);
4163 outrel
.r_info
= ELF32_R_INFO (indx
,
4165 outrel
.r_offset
+= 4;
4166 outrel
.r_addend
= 0;
4167 srelgot
->reloc_count
++;
4168 loc
+= sizeof (Elf32_External_Rela
);
4169 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
4176 local_got_offsets
[r_symndx
] |= 1;
4179 if (off
>= (bfd_vma
) -2)
4182 if (r_type
== (int) ELF32_R_TYPE (rel
->r_info
))
4183 relocation
= sgot
->output_offset
+ off
;
4187 unsigned short insn
;
4189 /* GD->IE transition:
4190 mov.l 1f,r4; mova 2f,r0; mov.l 2f,r1; add r0,r1;
4191 jsr @r1; add r12,r4; bra 3f; nop; .align 2;
4192 1: .long x$TLSGD; 2: .long __tls_get_addr@PLT; 3:
4194 mov.l 1f,r0; stc gbr,r4; mov.l @(r0,r12),r0; add r4,r0;
4195 nop; nop; bra 3f; nop; .align 2;
4196 1: .long x@TPOFF; 2:...; 3:. */
4198 offset
= rel
->r_offset
;
4199 BFD_ASSERT (offset
>= 16);
4200 /* Size of GD instructions is 16 or 18. */
4202 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 0);
4203 if ((insn
& 0xff00) == 0xc700)
4205 BFD_ASSERT (offset
>= 2);
4207 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 0);
4210 BFD_ASSERT ((insn
& 0xff00) == 0xd400);
4212 /* Replace mov.l 1f,R4 with mov.l 1f,r0. */
4213 bfd_put_16 (output_bfd
, insn
& 0xf0ff, contents
+ offset
);
4215 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 2);
4216 BFD_ASSERT ((insn
& 0xff00) == 0xc700);
4217 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 4);
4218 BFD_ASSERT ((insn
& 0xff00) == 0xd100);
4219 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 6);
4220 BFD_ASSERT (insn
== 0x310c);
4221 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 8);
4222 BFD_ASSERT (insn
== 0x410b);
4223 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 10);
4224 BFD_ASSERT (insn
== 0x34cc);
4226 bfd_put_16 (output_bfd
, 0x0412, contents
+ offset
+ 2);
4227 bfd_put_16 (output_bfd
, 0x00ce, contents
+ offset
+ 4);
4228 bfd_put_16 (output_bfd
, 0x304c, contents
+ offset
+ 6);
4229 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 8);
4230 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 10);
4232 bfd_put_32 (output_bfd
, sgot
->output_offset
+ off
,
4233 contents
+ rel
->r_offset
);
4238 addend
= rel
->r_addend
;
4240 goto final_link_relocate
;
4242 case R_SH_TLS_LD_32
:
4246 unsigned short insn
;
4248 /* LD->LE transition:
4249 mov.l 1f,r4; mova 2f,r0; mov.l 2f,r1; add r0,r1;
4250 jsr @r1; add r12,r4; bra 3f; nop; .align 2;
4251 1: .long x$TLSLD; 2: .long __tls_get_addr@PLT; 3:
4253 stc gbr,r0; nop; nop; nop;
4254 nop; nop; bra 3f; ...; 3:. */
4256 offset
= rel
->r_offset
;
4257 BFD_ASSERT (offset
>= 16);
4258 /* Size of LD instructions is 16 or 18. */
4260 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 0);
4261 if ((insn
& 0xff00) == 0xc700)
4263 BFD_ASSERT (offset
>= 2);
4265 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 0);
4268 BFD_ASSERT ((insn
& 0xff00) == 0xd400);
4269 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 2);
4270 BFD_ASSERT ((insn
& 0xff00) == 0xc700);
4271 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 4);
4272 BFD_ASSERT ((insn
& 0xff00) == 0xd100);
4273 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 6);
4274 BFD_ASSERT (insn
== 0x310c);
4275 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 8);
4276 BFD_ASSERT (insn
== 0x410b);
4277 insn
= bfd_get_16 (input_bfd
, contents
+ offset
+ 10);
4278 BFD_ASSERT (insn
== 0x34cc);
4280 bfd_put_16 (output_bfd
, 0x0012, contents
+ offset
+ 0);
4281 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 2);
4282 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 4);
4283 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 6);
4284 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 8);
4285 bfd_put_16 (output_bfd
, 0x0009, contents
+ offset
+ 10);
4294 off
= htab
->tls_ldm_got
.offset
;
4299 Elf_Internal_Rela outrel
;
4302 srelgot
= htab
->srelgot
;
4303 if (srelgot
== NULL
)
4306 outrel
.r_offset
= (sgot
->output_section
->vma
4307 + sgot
->output_offset
+ off
);
4308 outrel
.r_addend
= 0;
4309 outrel
.r_info
= ELF32_R_INFO (0, R_SH_TLS_DTPMOD32
);
4310 loc
= srelgot
->contents
;
4311 loc
+= srelgot
->reloc_count
++ * sizeof (Elf32_External_Rela
);
4312 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
4313 htab
->tls_ldm_got
.offset
|= 1;
4316 relocation
= sgot
->output_offset
+ off
;
4317 addend
= rel
->r_addend
;
4319 goto final_link_relocate
;
4321 case R_SH_TLS_LDO_32
:
4323 relocation
= tpoff (info
, relocation
);
4325 relocation
-= dtpoff_base (info
);
4327 addend
= rel
->r_addend
;
4328 goto final_link_relocate
;
4330 case R_SH_TLS_LE_32
:
4333 Elf_Internal_Rela outrel
;
4338 relocation
= tpoff (info
, relocation
);
4339 addend
= rel
->r_addend
;
4340 goto final_link_relocate
;
4347 name
= (bfd_elf_string_from_elf_section
4349 elf_elfheader (input_bfd
)->e_shstrndx
,
4350 elf_section_data (input_section
)->rel_hdr
.sh_name
));
4354 BFD_ASSERT (CONST_STRNEQ (name
, ".rela")
4355 && strcmp (bfd_get_section_name (input_bfd
,
4359 sreloc
= bfd_get_section_by_name (dynobj
, name
);
4360 BFD_ASSERT (sreloc
!= NULL
);
4363 if (h
== NULL
|| h
->dynindx
== -1)
4368 outrel
.r_offset
= (input_section
->output_section
->vma
4369 + input_section
->output_offset
4371 outrel
.r_info
= ELF32_R_INFO (indx
, R_SH_TLS_TPOFF32
);
4373 outrel
.r_addend
= relocation
- dtpoff_base (info
);
4375 outrel
.r_addend
= 0;
4377 loc
= sreloc
->contents
;
4378 loc
+= sreloc
->reloc_count
++ * sizeof (Elf32_External_Rela
);
4379 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
4385 if (r
!= bfd_reloc_ok
)
4390 case bfd_reloc_outofrange
:
4392 case bfd_reloc_overflow
:
4400 name
= (bfd_elf_string_from_elf_section
4401 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
4405 name
= bfd_section_name (input_bfd
, sec
);
4407 if (! ((*info
->callbacks
->reloc_overflow
)
4408 (info
, (h
? &h
->root
: NULL
), name
, howto
->name
,
4409 (bfd_vma
) 0, input_bfd
, input_section
,
4421 /* This is a version of bfd_generic_get_relocated_section_contents
4422 which uses sh_elf_relocate_section. */
4425 sh_elf_get_relocated_section_contents (bfd
*output_bfd
,
4426 struct bfd_link_info
*link_info
,
4427 struct bfd_link_order
*link_order
,
4429 bfd_boolean relocatable
,
4432 Elf_Internal_Shdr
*symtab_hdr
;
4433 asection
*input_section
= link_order
->u
.indirect
.section
;
4434 bfd
*input_bfd
= input_section
->owner
;
4435 asection
**sections
= NULL
;
4436 Elf_Internal_Rela
*internal_relocs
= NULL
;
4437 Elf_Internal_Sym
*isymbuf
= NULL
;
4439 /* We only need to handle the case of relaxing, or of having a
4440 particular set of section contents, specially. */
4442 || elf_section_data (input_section
)->this_hdr
.contents
== NULL
)
4443 return bfd_generic_get_relocated_section_contents (output_bfd
, link_info
,
4448 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
4450 memcpy (data
, elf_section_data (input_section
)->this_hdr
.contents
,
4451 (size_t) input_section
->size
);
4453 if ((input_section
->flags
& SEC_RELOC
) != 0
4454 && input_section
->reloc_count
> 0)
4457 Elf_Internal_Sym
*isym
, *isymend
;
4460 internal_relocs
= (_bfd_elf_link_read_relocs
4461 (input_bfd
, input_section
, NULL
,
4462 (Elf_Internal_Rela
*) NULL
, FALSE
));
4463 if (internal_relocs
== NULL
)
4466 if (symtab_hdr
->sh_info
!= 0)
4468 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
4469 if (isymbuf
== NULL
)
4470 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
,
4471 symtab_hdr
->sh_info
, 0,
4473 if (isymbuf
== NULL
)
4477 amt
= symtab_hdr
->sh_info
;
4478 amt
*= sizeof (asection
*);
4479 sections
= (asection
**) bfd_malloc (amt
);
4480 if (sections
== NULL
&& amt
!= 0)
4483 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
4484 for (isym
= isymbuf
, secpp
= sections
; isym
< isymend
; ++isym
, ++secpp
)
4488 if (isym
->st_shndx
== SHN_UNDEF
)
4489 isec
= bfd_und_section_ptr
;
4490 else if (isym
->st_shndx
== SHN_ABS
)
4491 isec
= bfd_abs_section_ptr
;
4492 else if (isym
->st_shndx
== SHN_COMMON
)
4493 isec
= bfd_com_section_ptr
;
4495 isec
= bfd_section_from_elf_index (input_bfd
, isym
->st_shndx
);
4500 if (! sh_elf_relocate_section (output_bfd
, link_info
, input_bfd
,
4501 input_section
, data
, internal_relocs
,
4505 if (sections
!= NULL
)
4508 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
4510 if (elf_section_data (input_section
)->relocs
!= internal_relocs
)
4511 free (internal_relocs
);
4517 if (sections
!= NULL
)
4520 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
4522 if (internal_relocs
!= NULL
4523 && elf_section_data (input_section
)->relocs
!= internal_relocs
)
4524 free (internal_relocs
);
4528 /* Return the base VMA address which should be subtracted from real addresses
4529 when resolving @dtpoff relocation.
4530 This is PT_TLS segment p_vaddr. */
4533 dtpoff_base (struct bfd_link_info
*info
)
4535 /* If tls_sec is NULL, we should have signalled an error already. */
4536 if (elf_hash_table (info
)->tls_sec
== NULL
)
4538 return elf_hash_table (info
)->tls_sec
->vma
;
4541 /* Return the relocation value for R_SH_TLS_TPOFF32.. */
4544 tpoff (struct bfd_link_info
*info
, bfd_vma address
)
4546 /* If tls_sec is NULL, we should have signalled an error already. */
4547 if (elf_hash_table (info
)->tls_sec
== NULL
)
4549 /* SH TLS ABI is variant I and static TLS block start just after tcbhead
4550 structure which has 2 pointer fields. */
4551 return (address
- elf_hash_table (info
)->tls_sec
->vma
4552 + align_power ((bfd_vma
) 8,
4553 elf_hash_table (info
)->tls_sec
->alignment_power
));
4557 sh_elf_gc_mark_hook (asection
*sec
,
4558 struct bfd_link_info
*info
,
4559 Elf_Internal_Rela
*rel
,
4560 struct elf_link_hash_entry
*h
,
4561 Elf_Internal_Sym
*sym
)
4564 switch (ELF32_R_TYPE (rel
->r_info
))
4566 case R_SH_GNU_VTINHERIT
:
4567 case R_SH_GNU_VTENTRY
:
4571 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
4574 /* Update the got entry reference counts for the section being removed. */
4577 sh_elf_gc_sweep_hook (bfd
*abfd
, struct bfd_link_info
*info
,
4578 asection
*sec
, const Elf_Internal_Rela
*relocs
)
4580 Elf_Internal_Shdr
*symtab_hdr
;
4581 struct elf_link_hash_entry
**sym_hashes
;
4582 bfd_signed_vma
*local_got_refcounts
;
4583 const Elf_Internal_Rela
*rel
, *relend
;
4585 elf_section_data (sec
)->local_dynrel
= NULL
;
4587 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
4588 sym_hashes
= elf_sym_hashes (abfd
);
4589 local_got_refcounts
= elf_local_got_refcounts (abfd
);
4591 relend
= relocs
+ sec
->reloc_count
;
4592 for (rel
= relocs
; rel
< relend
; rel
++)
4594 unsigned long r_symndx
;
4595 unsigned int r_type
;
4596 struct elf_link_hash_entry
*h
= NULL
;
4597 #ifdef INCLUDE_SHMEDIA
4598 int seen_stt_datalabel
= 0;
4601 r_symndx
= ELF32_R_SYM (rel
->r_info
);
4602 if (r_symndx
>= symtab_hdr
->sh_info
)
4604 struct elf_sh_link_hash_entry
*eh
;
4605 struct elf_sh_dyn_relocs
**pp
;
4606 struct elf_sh_dyn_relocs
*p
;
4608 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
4609 while (h
->root
.type
== bfd_link_hash_indirect
4610 || h
->root
.type
== bfd_link_hash_warning
)
4612 #ifdef INCLUDE_SHMEDIA
4613 seen_stt_datalabel
|= h
->type
== STT_DATALABEL
;
4615 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
4617 eh
= (struct elf_sh_link_hash_entry
*) h
;
4618 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; pp
= &p
->next
)
4621 /* Everything must go for SEC. */
4627 r_type
= ELF32_R_TYPE (rel
->r_info
);
4628 switch (sh_elf_optimized_tls_reloc (info
, r_type
, h
!= NULL
))
4630 case R_SH_TLS_LD_32
:
4631 if (sh_elf_hash_table (info
)->tls_ldm_got
.refcount
> 0)
4632 sh_elf_hash_table (info
)->tls_ldm_got
.refcount
-= 1;
4638 #ifdef INCLUDE_SHMEDIA
4639 case R_SH_GOT_LOW16
:
4640 case R_SH_GOT_MEDLOW16
:
4641 case R_SH_GOT_MEDHI16
:
4645 case R_SH_GOTOFF_LOW16
:
4646 case R_SH_GOTOFF_MEDLOW16
:
4647 case R_SH_GOTOFF_MEDHI16
:
4648 case R_SH_GOTOFF_HI16
:
4649 case R_SH_GOTPC_LOW16
:
4650 case R_SH_GOTPC_MEDLOW16
:
4651 case R_SH_GOTPC_MEDHI16
:
4652 case R_SH_GOTPC_HI16
:
4654 case R_SH_TLS_GD_32
:
4655 case R_SH_TLS_IE_32
:
4658 #ifdef INCLUDE_SHMEDIA
4659 if (seen_stt_datalabel
)
4661 struct elf_sh_link_hash_entry
*eh
;
4662 eh
= (struct elf_sh_link_hash_entry
*) h
;
4663 if (eh
->datalabel_got
.refcount
> 0)
4664 eh
->datalabel_got
.refcount
-= 1;
4668 if (h
->got
.refcount
> 0)
4669 h
->got
.refcount
-= 1;
4671 else if (local_got_refcounts
!= NULL
)
4673 #ifdef INCLUDE_SHMEDIA
4674 if (rel
->r_addend
& 1)
4676 if (local_got_refcounts
[symtab_hdr
->sh_info
+ r_symndx
] > 0)
4677 local_got_refcounts
[symtab_hdr
->sh_info
+ r_symndx
] -= 1;
4681 if (local_got_refcounts
[r_symndx
] > 0)
4682 local_got_refcounts
[r_symndx
] -= 1;
4693 #ifdef INCLUDE_SHMEDIA
4694 case R_SH_PLT_LOW16
:
4695 case R_SH_PLT_MEDLOW16
:
4696 case R_SH_PLT_MEDHI16
:
4701 if (h
->plt
.refcount
> 0)
4702 h
->plt
.refcount
-= 1;
4707 #ifdef INCLUDE_SHMEDIA
4708 case R_SH_GOTPLT_LOW16
:
4709 case R_SH_GOTPLT_MEDLOW16
:
4710 case R_SH_GOTPLT_MEDHI16
:
4711 case R_SH_GOTPLT_HI16
:
4712 case R_SH_GOTPLT10BY4
:
4713 case R_SH_GOTPLT10BY8
:
4717 struct elf_sh_link_hash_entry
*eh
;
4718 eh
= (struct elf_sh_link_hash_entry
*) h
;
4719 if (eh
->gotplt_refcount
> 0)
4721 eh
->gotplt_refcount
-= 1;
4722 if (h
->plt
.refcount
> 0)
4723 h
->plt
.refcount
-= 1;
4725 #ifdef INCLUDE_SHMEDIA
4726 else if (seen_stt_datalabel
)
4728 if (eh
->datalabel_got
.refcount
> 0)
4729 eh
->datalabel_got
.refcount
-= 1;
4732 else if (h
->got
.refcount
> 0)
4733 h
->got
.refcount
-= 1;
4735 else if (local_got_refcounts
!= NULL
)
4737 #ifdef INCLUDE_SHMEDIA
4738 if (rel
->r_addend
& 1)
4740 if (local_got_refcounts
[symtab_hdr
->sh_info
+ r_symndx
] > 0)
4741 local_got_refcounts
[symtab_hdr
->sh_info
+ r_symndx
] -= 1;
4745 if (local_got_refcounts
[r_symndx
] > 0)
4746 local_got_refcounts
[r_symndx
] -= 1;
4758 /* Copy the extra info we tack onto an elf_link_hash_entry. */
4761 sh_elf_copy_indirect_symbol (struct bfd_link_info
*info
,
4762 struct elf_link_hash_entry
*dir
,
4763 struct elf_link_hash_entry
*ind
)
4765 struct elf_sh_link_hash_entry
*edir
, *eind
;
4767 edir
= (struct elf_sh_link_hash_entry
*) dir
;
4768 eind
= (struct elf_sh_link_hash_entry
*) ind
;
4770 if (eind
->dyn_relocs
!= NULL
)
4772 if (edir
->dyn_relocs
!= NULL
)
4774 struct elf_sh_dyn_relocs
**pp
;
4775 struct elf_sh_dyn_relocs
*p
;
4777 /* Add reloc counts against the indirect sym to the direct sym
4778 list. Merge any entries against the same section. */
4779 for (pp
= &eind
->dyn_relocs
; (p
= *pp
) != NULL
; )
4781 struct elf_sh_dyn_relocs
*q
;
4783 for (q
= edir
->dyn_relocs
; q
!= NULL
; q
= q
->next
)
4784 if (q
->sec
== p
->sec
)
4786 q
->pc_count
+= p
->pc_count
;
4787 q
->count
+= p
->count
;
4794 *pp
= edir
->dyn_relocs
;
4797 edir
->dyn_relocs
= eind
->dyn_relocs
;
4798 eind
->dyn_relocs
= NULL
;
4800 edir
->gotplt_refcount
= eind
->gotplt_refcount
;
4801 eind
->gotplt_refcount
= 0;
4802 #ifdef INCLUDE_SHMEDIA
4803 edir
->datalabel_got
.refcount
+= eind
->datalabel_got
.refcount
;
4804 eind
->datalabel_got
.refcount
= 0;
4807 if (ind
->root
.type
== bfd_link_hash_indirect
4808 && dir
->got
.refcount
<= 0)
4810 edir
->tls_type
= eind
->tls_type
;
4811 eind
->tls_type
= GOT_UNKNOWN
;
4814 if (ind
->root
.type
!= bfd_link_hash_indirect
4815 && dir
->dynamic_adjusted
)
4817 /* If called to transfer flags for a weakdef during processing
4818 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
4819 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
4820 dir
->ref_dynamic
|= ind
->ref_dynamic
;
4821 dir
->ref_regular
|= ind
->ref_regular
;
4822 dir
->ref_regular_nonweak
|= ind
->ref_regular_nonweak
;
4823 dir
->needs_plt
|= ind
->needs_plt
;
4826 _bfd_elf_link_hash_copy_indirect (info
, dir
, ind
);
4830 sh_elf_optimized_tls_reloc (struct bfd_link_info
*info
, int r_type
,
4838 case R_SH_TLS_GD_32
:
4839 case R_SH_TLS_IE_32
:
4841 return R_SH_TLS_LE_32
;
4842 return R_SH_TLS_IE_32
;
4843 case R_SH_TLS_LD_32
:
4844 return R_SH_TLS_LE_32
;
4850 /* Look through the relocs for a section during the first phase.
4851 Since we don't do .gots or .plts, we just need to consider the
4852 virtual table relocs for gc. */
4855 sh_elf_check_relocs (bfd
*abfd
, struct bfd_link_info
*info
, asection
*sec
,
4856 const Elf_Internal_Rela
*relocs
)
4858 Elf_Internal_Shdr
*symtab_hdr
;
4859 struct elf_link_hash_entry
**sym_hashes
, **sym_hashes_end
;
4860 struct elf_sh_link_hash_table
*htab
;
4861 const Elf_Internal_Rela
*rel
;
4862 const Elf_Internal_Rela
*rel_end
;
4863 bfd_vma
*local_got_offsets
;
4867 unsigned int r_type
;
4868 int tls_type
, old_tls_type
;
4874 if (info
->relocatable
)
4877 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
4878 sym_hashes
= elf_sym_hashes (abfd
);
4879 sym_hashes_end
= sym_hashes
+ symtab_hdr
->sh_size
/sizeof (Elf32_External_Sym
);
4880 if (!elf_bad_symtab (abfd
))
4881 sym_hashes_end
-= symtab_hdr
->sh_info
;
4883 htab
= sh_elf_hash_table (info
);
4884 local_got_offsets
= elf_local_got_offsets (abfd
);
4886 rel_end
= relocs
+ sec
->reloc_count
;
4887 for (rel
= relocs
; rel
< rel_end
; rel
++)
4889 struct elf_link_hash_entry
*h
;
4890 unsigned long r_symndx
;
4891 #ifdef INCLUDE_SHMEDIA
4892 int seen_stt_datalabel
= 0;
4895 r_symndx
= ELF32_R_SYM (rel
->r_info
);
4896 r_type
= ELF32_R_TYPE (rel
->r_info
);
4898 if (r_symndx
< symtab_hdr
->sh_info
)
4902 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
4903 while (h
->root
.type
== bfd_link_hash_indirect
4904 || h
->root
.type
== bfd_link_hash_warning
)
4906 #ifdef INCLUDE_SHMEDIA
4907 seen_stt_datalabel
|= h
->type
== STT_DATALABEL
;
4909 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
4913 r_type
= sh_elf_optimized_tls_reloc (info
, r_type
, h
== NULL
);
4915 && r_type
== R_SH_TLS_IE_32
4917 && h
->root
.type
!= bfd_link_hash_undefined
4918 && h
->root
.type
!= bfd_link_hash_undefweak
4919 && (h
->dynindx
== -1
4921 r_type
= R_SH_TLS_LE_32
;
4923 /* Some relocs require a global offset table. */
4924 if (htab
->sgot
== NULL
)
4932 #ifdef INCLUDE_SHMEDIA
4933 case R_SH_GOTPLT_LOW16
:
4934 case R_SH_GOTPLT_MEDLOW16
:
4935 case R_SH_GOTPLT_MEDHI16
:
4936 case R_SH_GOTPLT_HI16
:
4937 case R_SH_GOTPLT10BY4
:
4938 case R_SH_GOTPLT10BY8
:
4939 case R_SH_GOT_LOW16
:
4940 case R_SH_GOT_MEDLOW16
:
4941 case R_SH_GOT_MEDHI16
:
4945 case R_SH_GOTOFF_LOW16
:
4946 case R_SH_GOTOFF_MEDLOW16
:
4947 case R_SH_GOTOFF_MEDHI16
:
4948 case R_SH_GOTOFF_HI16
:
4949 case R_SH_GOTPC_LOW16
:
4950 case R_SH_GOTPC_MEDLOW16
:
4951 case R_SH_GOTPC_MEDHI16
:
4952 case R_SH_GOTPC_HI16
:
4954 case R_SH_TLS_GD_32
:
4955 case R_SH_TLS_LD_32
:
4956 case R_SH_TLS_IE_32
:
4957 if (htab
->sgot
== NULL
)
4959 if (htab
->root
.dynobj
== NULL
)
4960 htab
->root
.dynobj
= abfd
;
4961 if (!create_got_section (htab
->root
.dynobj
, info
))
4973 /* This relocation describes the C++ object vtable hierarchy.
4974 Reconstruct it for later use during GC. */
4975 case R_SH_GNU_VTINHERIT
:
4976 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
4980 /* This relocation describes which C++ vtable entries are actually
4981 used. Record for later use during GC. */
4982 case R_SH_GNU_VTENTRY
:
4983 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
4987 case R_SH_TLS_IE_32
:
4989 info
->flags
|= DF_STATIC_TLS
;
4993 case R_SH_TLS_GD_32
:
4995 #ifdef INCLUDE_SHMEDIA
4996 case R_SH_GOT_LOW16
:
4997 case R_SH_GOT_MEDLOW16
:
4998 case R_SH_GOT_MEDHI16
:
5006 tls_type
= GOT_NORMAL
;
5008 case R_SH_TLS_GD_32
:
5009 tls_type
= GOT_TLS_GD
;
5011 case R_SH_TLS_IE_32
:
5012 tls_type
= GOT_TLS_IE
;
5018 #ifdef INCLUDE_SHMEDIA
5019 if (seen_stt_datalabel
)
5021 struct elf_sh_link_hash_entry
*eh
5022 = (struct elf_sh_link_hash_entry
*) h
;
5024 eh
->datalabel_got
.refcount
+= 1;
5028 h
->got
.refcount
+= 1;
5029 old_tls_type
= sh_elf_hash_entry (h
)->tls_type
;
5033 bfd_signed_vma
*local_got_refcounts
;
5035 /* This is a global offset table entry for a local
5037 local_got_refcounts
= elf_local_got_refcounts (abfd
);
5038 if (local_got_refcounts
== NULL
)
5042 size
= symtab_hdr
->sh_info
;
5043 size
*= sizeof (bfd_signed_vma
);
5044 #ifdef INCLUDE_SHMEDIA
5045 /* Reserve space for both the datalabel and
5046 codelabel local GOT offsets. */
5049 size
+= symtab_hdr
->sh_info
;
5050 local_got_refcounts
= ((bfd_signed_vma
*)
5051 bfd_zalloc (abfd
, size
));
5052 if (local_got_refcounts
== NULL
)
5054 elf_local_got_refcounts (abfd
) = local_got_refcounts
;
5055 #ifdef INCLUDE_SHMEDIA
5056 /* Take care of both the datalabel and codelabel local
5058 sh_elf_local_got_tls_type (abfd
)
5059 = (char *) (local_got_refcounts
+ 2 * symtab_hdr
->sh_info
);
5061 sh_elf_local_got_tls_type (abfd
)
5062 = (char *) (local_got_refcounts
+ symtab_hdr
->sh_info
);
5065 #ifdef INCLUDE_SHMEDIA
5066 if (rel
->r_addend
& 1)
5067 local_got_refcounts
[symtab_hdr
->sh_info
+ r_symndx
] += 1;
5070 local_got_refcounts
[r_symndx
] += 1;
5071 old_tls_type
= sh_elf_local_got_tls_type (abfd
) [r_symndx
];
5074 /* If a TLS symbol is accessed using IE at least once,
5075 there is no point to use dynamic model for it. */
5076 if (old_tls_type
!= tls_type
&& old_tls_type
!= GOT_UNKNOWN
5077 && (old_tls_type
!= GOT_TLS_GD
|| tls_type
!= GOT_TLS_IE
))
5079 if (old_tls_type
== GOT_TLS_IE
&& tls_type
== GOT_TLS_GD
)
5080 tls_type
= GOT_TLS_IE
;
5083 (*_bfd_error_handler
)
5084 (_("%B: `%s' accessed both as normal and thread local symbol"),
5085 abfd
, h
->root
.root
.string
);
5090 if (old_tls_type
!= tls_type
)
5093 sh_elf_hash_entry (h
)->tls_type
= tls_type
;
5095 sh_elf_local_got_tls_type (abfd
) [r_symndx
] = tls_type
;
5100 case R_SH_TLS_LD_32
:
5101 sh_elf_hash_table(info
)->tls_ldm_got
.refcount
+= 1;
5105 #ifdef INCLUDE_SHMEDIA
5106 case R_SH_GOTPLT_LOW16
:
5107 case R_SH_GOTPLT_MEDLOW16
:
5108 case R_SH_GOTPLT_MEDHI16
:
5109 case R_SH_GOTPLT_HI16
:
5110 case R_SH_GOTPLT10BY4
:
5111 case R_SH_GOTPLT10BY8
:
5113 /* If this is a local symbol, we resolve it directly without
5114 creating a procedure linkage table entry. */
5120 || h
->dynindx
== -1)
5124 h
->plt
.refcount
+= 1;
5125 ((struct elf_sh_link_hash_entry
*) h
)->gotplt_refcount
+= 1;
5130 #ifdef INCLUDE_SHMEDIA
5131 case R_SH_PLT_LOW16
:
5132 case R_SH_PLT_MEDLOW16
:
5133 case R_SH_PLT_MEDHI16
:
5136 /* This symbol requires a procedure linkage table entry. We
5137 actually build the entry in adjust_dynamic_symbol,
5138 because this might be a case of linking PIC code which is
5139 never referenced by a dynamic object, in which case we
5140 don't need to generate a procedure linkage table entry
5143 /* If this is a local symbol, we resolve it directly without
5144 creating a procedure linkage table entry. */
5148 if (h
->forced_local
)
5152 h
->plt
.refcount
+= 1;
5157 #ifdef INCLUDE_SHMEDIA
5158 case R_SH_IMM_LOW16_PCREL
:
5159 case R_SH_IMM_MEDLOW16_PCREL
:
5160 case R_SH_IMM_MEDHI16_PCREL
:
5161 case R_SH_IMM_HI16_PCREL
:
5163 if (h
!= NULL
&& ! info
->shared
)
5166 h
->plt
.refcount
+= 1;
5169 /* If we are creating a shared library, and this is a reloc
5170 against a global symbol, or a non PC relative reloc
5171 against a local symbol, then we need to copy the reloc
5172 into the shared library. However, if we are linking with
5173 -Bsymbolic, we do not need to copy a reloc against a
5174 global symbol which is defined in an object we are
5175 including in the link (i.e., DEF_REGULAR is set). At
5176 this point we have not seen all the input files, so it is
5177 possible that DEF_REGULAR is not set now but will be set
5178 later (it is never cleared). We account for that
5179 possibility below by storing information in the
5180 dyn_relocs field of the hash table entry. A similar
5181 situation occurs when creating shared libraries and symbol
5182 visibility changes render the symbol local.
5184 If on the other hand, we are creating an executable, we
5185 may need to keep relocations for symbols satisfied by a
5186 dynamic library if we manage to avoid copy relocs for the
5189 && (sec
->flags
& SEC_ALLOC
) != 0
5190 && (r_type
!= R_SH_REL32
5192 && (! info
->symbolic
5193 || h
->root
.type
== bfd_link_hash_defweak
5194 || !h
->def_regular
))))
5196 && (sec
->flags
& SEC_ALLOC
) != 0
5198 && (h
->root
.type
== bfd_link_hash_defweak
5199 || !h
->def_regular
)))
5201 struct elf_sh_dyn_relocs
*p
;
5202 struct elf_sh_dyn_relocs
**head
;
5204 if (htab
->root
.dynobj
== NULL
)
5205 htab
->root
.dynobj
= abfd
;
5207 /* When creating a shared object, we must copy these
5208 reloc types into the output file. We create a reloc
5209 section in dynobj and make room for this reloc. */
5214 name
= (bfd_elf_string_from_elf_section
5216 elf_elfheader (abfd
)->e_shstrndx
,
5217 elf_section_data (sec
)->rel_hdr
.sh_name
));
5221 BFD_ASSERT (CONST_STRNEQ (name
, ".rela")
5222 && strcmp (bfd_get_section_name (abfd
, sec
),
5225 sreloc
= bfd_get_section_by_name (htab
->root
.dynobj
, name
);
5230 flags
= (SEC_HAS_CONTENTS
| SEC_READONLY
5231 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
);
5232 if ((sec
->flags
& SEC_ALLOC
) != 0)
5233 flags
|= SEC_ALLOC
| SEC_LOAD
;
5234 sreloc
= bfd_make_section_with_flags (htab
->root
.dynobj
,
5238 || ! bfd_set_section_alignment (htab
->root
.dynobj
,
5242 elf_section_data (sec
)->sreloc
= sreloc
;
5245 /* If this is a global symbol, we count the number of
5246 relocations we need for this symbol. */
5248 head
= &((struct elf_sh_link_hash_entry
*) h
)->dyn_relocs
;
5254 /* Track dynamic relocs needed for local syms too. */
5255 s
= bfd_section_from_r_symndx (abfd
, &htab
->sym_sec
,
5260 vpp
= &elf_section_data (s
)->local_dynrel
;
5261 head
= (struct elf_sh_dyn_relocs
**) vpp
;
5265 if (p
== NULL
|| p
->sec
!= sec
)
5267 bfd_size_type amt
= sizeof (*p
);
5268 p
= bfd_alloc (htab
->root
.dynobj
, amt
);
5279 if (r_type
== R_SH_REL32
5280 #ifdef INCLUDE_SHMEDIA
5281 || r_type
== R_SH_IMM_LOW16_PCREL
5282 || r_type
== R_SH_IMM_MEDLOW16_PCREL
5283 || r_type
== R_SH_IMM_MEDHI16_PCREL
5284 || r_type
== R_SH_IMM_HI16_PCREL
5292 case R_SH_TLS_LE_32
:
5295 (*_bfd_error_handler
)
5296 (_("%B: TLS local exec code cannot be linked into shared objects"),
5303 case R_SH_TLS_LDO_32
:
5304 /* Nothing to do. */
5315 #ifndef sh_elf_set_mach_from_flags
5316 static unsigned int sh_ef_bfd_table
[] = { EF_SH_BFD_TABLE
};
5319 sh_elf_set_mach_from_flags (bfd
*abfd
)
5321 flagword flags
= elf_elfheader (abfd
)->e_flags
& EF_SH_MACH_MASK
;
5323 if (flags
>= sizeof(sh_ef_bfd_table
))
5326 if (sh_ef_bfd_table
[flags
] == 0)
5329 bfd_default_set_arch_mach (abfd
, bfd_arch_sh
, sh_ef_bfd_table
[flags
]);
5335 /* Reverse table lookup for sh_ef_bfd_table[].
5336 Given a bfd MACH value from archures.c
5337 return the equivalent ELF flags from the table.
5338 Return -1 if no match is found. */
5341 sh_elf_get_flags_from_mach (unsigned long mach
)
5343 int i
= ARRAY_SIZE (sh_ef_bfd_table
) - 1;
5346 if (sh_ef_bfd_table
[i
] == mach
)
5349 /* shouldn't get here */
5354 #endif /* not sh_elf_set_mach_from_flags */
5356 #ifndef sh_elf_set_private_flags
5357 /* Function to keep SH specific file flags. */
5360 sh_elf_set_private_flags (bfd
*abfd
, flagword flags
)
5362 BFD_ASSERT (! elf_flags_init (abfd
)
5363 || elf_elfheader (abfd
)->e_flags
== flags
);
5365 elf_elfheader (abfd
)->e_flags
= flags
;
5366 elf_flags_init (abfd
) = TRUE
;
5367 return sh_elf_set_mach_from_flags (abfd
);
5369 #endif /* not sh_elf_set_private_flags */
5371 #ifndef sh_elf_copy_private_data
5372 /* Copy backend specific data from one object module to another */
5375 sh_elf_copy_private_data (bfd
* ibfd
, bfd
* obfd
)
5377 if ( bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
5378 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
5381 return sh_elf_set_private_flags (obfd
, elf_elfheader (ibfd
)->e_flags
);
5383 #endif /* not sh_elf_copy_private_data */
5385 #ifndef sh_elf_merge_private_data
5387 /* This function returns the ELF architecture number that
5388 corresponds to the given arch_sh* flags. */
5391 sh_find_elf_flags (unsigned int arch_set
)
5393 extern unsigned long sh_get_bfd_mach_from_arch_set (unsigned int);
5394 unsigned long bfd_mach
= sh_get_bfd_mach_from_arch_set (arch_set
);
5396 return sh_elf_get_flags_from_mach (bfd_mach
);
5399 /* This routine initialises the elf flags when required and
5400 calls sh_merge_bfd_arch() to check dsp/fpu compatibility. */
5403 sh_elf_merge_private_data (bfd
*ibfd
, bfd
*obfd
)
5405 extern bfd_boolean
sh_merge_bfd_arch (bfd
*, bfd
*);
5407 if ( bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
5408 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
5411 if (! elf_flags_init (obfd
))
5413 /* This happens when ld starts out with a 'blank' output file. */
5414 elf_flags_init (obfd
) = TRUE
;
5415 elf_elfheader (obfd
)->e_flags
= EF_SH1
;
5416 sh_elf_set_mach_from_flags (obfd
);
5419 if (! sh_merge_bfd_arch (ibfd
, obfd
))
5421 _bfd_error_handler ("%B: uses instructions which are incompatible "
5422 "with instructions used in previous modules",
5424 bfd_set_error (bfd_error_bad_value
);
5428 elf_elfheader (obfd
)->e_flags
=
5429 sh_elf_get_flags_from_mach (bfd_get_mach (obfd
));
5433 #endif /* not sh_elf_merge_private_data */
5435 /* Override the generic function because we need to store sh_elf_obj_tdata
5436 as the specific tdata. We set also the machine architecture from flags
5440 sh_elf_object_p (bfd
*abfd
)
5442 return sh_elf_set_mach_from_flags (abfd
);
5445 /* Finish up dynamic symbol handling. We set the contents of various
5446 dynamic sections here. */
5449 sh_elf_finish_dynamic_symbol (bfd
*output_bfd
, struct bfd_link_info
*info
,
5450 struct elf_link_hash_entry
*h
,
5451 Elf_Internal_Sym
*sym
)
5453 struct elf_sh_link_hash_table
*htab
;
5455 htab
= sh_elf_hash_table (info
);
5457 if (h
->plt
.offset
!= (bfd_vma
) -1)
5465 Elf_Internal_Rela rel
;
5468 /* This symbol has an entry in the procedure linkage table. Set
5471 BFD_ASSERT (h
->dynindx
!= -1);
5474 sgot
= htab
->sgotplt
;
5475 srel
= htab
->srelplt
;
5476 BFD_ASSERT (splt
!= NULL
&& sgot
!= NULL
&& srel
!= NULL
);
5478 /* Get the index in the procedure linkage table which
5479 corresponds to this symbol. This is the index of this symbol
5480 in all the symbols for which we are making plt entries. The
5481 first entry in the procedure linkage table is reserved. */
5482 plt_index
= get_plt_index (htab
->plt_info
, h
->plt
.offset
);
5484 /* Get the offset into the .got table of the entry that
5485 corresponds to this function. Each .got entry is 4 bytes.
5486 The first three are reserved. */
5487 got_offset
= (plt_index
+ 3) * 4;
5491 got_offset
-= GOT_BIAS
;
5494 /* Fill in the entry in the procedure linkage table. */
5495 memcpy (splt
->contents
+ h
->plt
.offset
,
5496 htab
->plt_info
->symbol_entry
,
5497 htab
->plt_info
->symbol_entry_size
);
5500 install_plt_field (output_bfd
, FALSE
, got_offset
,
5503 + htab
->plt_info
->symbol_fields
.got_entry
));
5506 install_plt_field (output_bfd
, FALSE
,
5507 (sgot
->output_section
->vma
5508 + sgot
->output_offset
5512 + htab
->plt_info
->symbol_fields
.got_entry
));
5513 if (htab
->vxworks_p
)
5515 unsigned int reachable_plts
, plts_per_4k
;
5518 /* Divide the PLT into groups. The first group contains
5519 REACHABLE_PLTS entries and the other groups contain
5520 PLTS_PER_4K entries. Entries in the first group can
5521 branch directly to .plt; those in later groups branch
5522 to the last element of the previous group. */
5523 /* ??? It would be better to create multiple copies of
5524 the common resolver stub. */
5525 reachable_plts
= ((4096
5526 - htab
->plt_info
->plt0_entry_size
5527 - (htab
->plt_info
->symbol_fields
.plt
+ 4))
5528 / htab
->plt_info
->symbol_entry_size
) + 1;
5529 plts_per_4k
= (4096 / htab
->plt_info
->symbol_entry_size
);
5530 if (plt_index
< reachable_plts
)
5531 distance
= -(h
->plt
.offset
5532 + htab
->plt_info
->symbol_fields
.plt
);
5534 distance
= -(((plt_index
- reachable_plts
) % plts_per_4k
+ 1)
5535 * htab
->plt_info
->symbol_entry_size
);
5537 /* Install the 'bra' with this offset. */
5538 bfd_put_16 (output_bfd
,
5539 0xa000 | (0x0fff & ((distance
- 4) / 2)),
5542 + htab
->plt_info
->symbol_fields
.plt
));
5545 install_plt_field (output_bfd
, TRUE
,
5546 splt
->output_section
->vma
+ splt
->output_offset
,
5549 + htab
->plt_info
->symbol_fields
.plt
));
5554 got_offset
+= GOT_BIAS
;
5557 install_plt_field (output_bfd
, FALSE
,
5558 plt_index
* sizeof (Elf32_External_Rela
),
5561 + htab
->plt_info
->symbol_fields
.reloc_offset
));
5563 /* Fill in the entry in the global offset table. */
5564 bfd_put_32 (output_bfd
,
5565 (splt
->output_section
->vma
5566 + splt
->output_offset
5568 + htab
->plt_info
->symbol_resolve_offset
),
5569 sgot
->contents
+ got_offset
);
5571 /* Fill in the entry in the .rela.plt section. */
5572 rel
.r_offset
= (sgot
->output_section
->vma
5573 + sgot
->output_offset
5575 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_SH_JMP_SLOT
);
5578 rel
.r_addend
= GOT_BIAS
;
5580 loc
= srel
->contents
+ plt_index
* sizeof (Elf32_External_Rela
);
5581 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
5583 if (htab
->vxworks_p
&& !info
->shared
)
5585 /* Create the .rela.plt.unloaded relocations for this PLT entry.
5586 Begin by pointing LOC to the first such relocation. */
5587 loc
= (htab
->srelplt2
->contents
5588 + (plt_index
* 2 + 1) * sizeof (Elf32_External_Rela
));
5590 /* Create a .rela.plt.unloaded R_SH_DIR32 relocation
5591 for the PLT entry's pointer to the .got.plt entry. */
5592 rel
.r_offset
= (htab
->splt
->output_section
->vma
5593 + htab
->splt
->output_offset
5595 + htab
->plt_info
->symbol_fields
.got_entry
);
5596 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_SH_DIR32
);
5597 rel
.r_addend
= got_offset
;
5598 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
5599 loc
+= sizeof (Elf32_External_Rela
);
5601 /* Create a .rela.plt.unloaded R_SH_DIR32 relocation for
5602 the .got.plt entry, which initially points to .plt. */
5603 rel
.r_offset
= (htab
->sgotplt
->output_section
->vma
5604 + htab
->sgotplt
->output_offset
5606 rel
.r_info
= ELF32_R_INFO (htab
->root
.hplt
->indx
, R_SH_DIR32
);
5608 bfd_elf32_swap_reloc_out (output_bfd
, &rel
, loc
);
5611 if (!h
->def_regular
)
5613 /* Mark the symbol as undefined, rather than as defined in
5614 the .plt section. Leave the value alone. */
5615 sym
->st_shndx
= SHN_UNDEF
;
5619 if (h
->got
.offset
!= (bfd_vma
) -1
5620 && sh_elf_hash_entry (h
)->tls_type
!= GOT_TLS_GD
5621 && sh_elf_hash_entry (h
)->tls_type
!= GOT_TLS_IE
)
5625 Elf_Internal_Rela rel
;
5628 /* This symbol has an entry in the global offset table. Set it
5632 srel
= htab
->srelgot
;
5633 BFD_ASSERT (sgot
!= NULL
&& srel
!= NULL
);
5635 rel
.r_offset
= (sgot
->output_section
->vma
5636 + sgot
->output_offset
5637 + (h
->got
.offset
&~ (bfd_vma
) 1));
5639 /* If this is a static link, or it is a -Bsymbolic link and the
5640 symbol is defined locally or was forced to be local because
5641 of a version file, we just want to emit a RELATIVE reloc.
5642 The entry in the global offset table will already have been
5643 initialized in the relocate_section function. */
5645 && SYMBOL_REFERENCES_LOCAL (info
, h
))
5647 rel
.r_info
= ELF32_R_INFO (0, R_SH_RELATIVE
);
5648 rel
.r_addend
= (h
->root
.u
.def
.value
5649 + h
->root
.u
.def
.section
->output_section
->vma
5650 + h
->root
.u
.def
.section
->output_offset
);
5654 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ h
->got
.offset
);
5655 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_SH_GLOB_DAT
);
5659 loc
= srel
->contents
;
5660 loc
+= srel
->reloc_count
++ * sizeof (Elf32_External_Rela
);
5661 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
5664 #ifdef INCLUDE_SHMEDIA
5666 struct elf_sh_link_hash_entry
*eh
;
5668 eh
= (struct elf_sh_link_hash_entry
*) h
;
5669 if (eh
->datalabel_got
.offset
!= (bfd_vma
) -1)
5673 Elf_Internal_Rela rel
;
5676 /* This symbol has a datalabel entry in the global offset table.
5680 srel
= htab
->srelgot
;
5681 BFD_ASSERT (sgot
!= NULL
&& srel
!= NULL
);
5683 rel
.r_offset
= (sgot
->output_section
->vma
5684 + sgot
->output_offset
5685 + (eh
->datalabel_got
.offset
&~ (bfd_vma
) 1));
5687 /* If this is a static link, or it is a -Bsymbolic link and the
5688 symbol is defined locally or was forced to be local because
5689 of a version file, we just want to emit a RELATIVE reloc.
5690 The entry in the global offset table will already have been
5691 initialized in the relocate_section function. */
5693 && SYMBOL_REFERENCES_LOCAL (info
, h
))
5695 rel
.r_info
= ELF32_R_INFO (0, R_SH_RELATIVE
);
5696 rel
.r_addend
= (h
->root
.u
.def
.value
5697 + h
->root
.u
.def
.section
->output_section
->vma
5698 + h
->root
.u
.def
.section
->output_offset
);
5702 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
5703 + eh
->datalabel_got
.offset
);
5704 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_SH_GLOB_DAT
);
5708 loc
= srel
->contents
;
5709 loc
+= srel
->reloc_count
++ * sizeof (Elf32_External_Rela
);
5710 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
5718 Elf_Internal_Rela rel
;
5721 /* This symbol needs a copy reloc. Set it up. */
5723 BFD_ASSERT (h
->dynindx
!= -1
5724 && (h
->root
.type
== bfd_link_hash_defined
5725 || h
->root
.type
== bfd_link_hash_defweak
));
5727 s
= bfd_get_section_by_name (h
->root
.u
.def
.section
->owner
,
5729 BFD_ASSERT (s
!= NULL
);
5731 rel
.r_offset
= (h
->root
.u
.def
.value
5732 + h
->root
.u
.def
.section
->output_section
->vma
5733 + h
->root
.u
.def
.section
->output_offset
);
5734 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_SH_COPY
);
5736 loc
= s
->contents
+ s
->reloc_count
++ * sizeof (Elf32_External_Rela
);
5737 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
5740 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. On VxWorks,
5741 _GLOBAL_OFFSET_TABLE_ is not absolute: it is relative to the
5743 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
5744 || (!htab
->vxworks_p
&& h
== htab
->root
.hgot
))
5745 sym
->st_shndx
= SHN_ABS
;
5750 /* Finish up the dynamic sections. */
5753 sh_elf_finish_dynamic_sections (bfd
*output_bfd
, struct bfd_link_info
*info
)
5755 struct elf_sh_link_hash_table
*htab
;
5759 htab
= sh_elf_hash_table (info
);
5760 sgot
= htab
->sgotplt
;
5761 sdyn
= bfd_get_section_by_name (htab
->root
.dynobj
, ".dynamic");
5763 if (htab
->root
.dynamic_sections_created
)
5766 Elf32_External_Dyn
*dyncon
, *dynconend
;
5768 BFD_ASSERT (sgot
!= NULL
&& sdyn
!= NULL
);
5770 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
5771 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
5772 for (; dyncon
< dynconend
; dyncon
++)
5774 Elf_Internal_Dyn dyn
;
5776 #ifdef INCLUDE_SHMEDIA
5780 bfd_elf32_swap_dyn_in (htab
->root
.dynobj
, dyncon
, &dyn
);
5787 #ifdef INCLUDE_SHMEDIA
5789 name
= info
->init_function
;
5793 name
= info
->fini_function
;
5795 if (dyn
.d_un
.d_val
!= 0)
5797 struct elf_link_hash_entry
*h
;
5799 h
= elf_link_hash_lookup (&htab
->root
, name
,
5800 FALSE
, FALSE
, TRUE
);
5801 if (h
!= NULL
&& (h
->other
& STO_SH5_ISA32
))
5803 dyn
.d_un
.d_val
|= 1;
5804 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
5811 s
= htab
->sgot
->output_section
;
5815 s
= htab
->srelplt
->output_section
;
5817 BFD_ASSERT (s
!= NULL
);
5818 dyn
.d_un
.d_ptr
= s
->vma
;
5819 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
5823 s
= htab
->srelplt
->output_section
;
5824 BFD_ASSERT (s
!= NULL
);
5825 dyn
.d_un
.d_val
= s
->size
;
5826 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
5830 /* My reading of the SVR4 ABI indicates that the
5831 procedure linkage table relocs (DT_JMPREL) should be
5832 included in the overall relocs (DT_RELA). This is
5833 what Solaris does. However, UnixWare can not handle
5834 that case. Therefore, we override the DT_RELASZ entry
5835 here to make it not include the JMPREL relocs. Since
5836 the linker script arranges for .rela.plt to follow all
5837 other relocation sections, we don't have to worry
5838 about changing the DT_RELA entry. */
5839 if (htab
->srelplt
!= NULL
)
5841 s
= htab
->srelplt
->output_section
;
5842 dyn
.d_un
.d_val
-= s
->size
;
5844 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
5849 /* Fill in the first entry in the procedure linkage table. */
5851 if (splt
&& splt
->size
> 0 && htab
->plt_info
->plt0_entry
)
5855 memcpy (splt
->contents
,
5856 htab
->plt_info
->plt0_entry
,
5857 htab
->plt_info
->plt0_entry_size
);
5858 for (i
= 0; i
< ARRAY_SIZE (htab
->plt_info
->plt0_got_fields
); i
++)
5859 if (htab
->plt_info
->plt0_got_fields
[i
] != MINUS_ONE
)
5860 install_plt_field (output_bfd
, FALSE
,
5861 (sgot
->output_section
->vma
5862 + sgot
->output_offset
5865 + htab
->plt_info
->plt0_got_fields
[i
]));
5867 if (htab
->vxworks_p
)
5869 /* Finalize the .rela.plt.unloaded contents. */
5870 Elf_Internal_Rela rel
;
5873 /* Create a .rela.plt.unloaded R_SH_DIR32 relocation for the
5874 first PLT entry's pointer to _GLOBAL_OFFSET_TABLE_ + 8. */
5875 loc
= htab
->srelplt2
->contents
;
5876 rel
.r_offset
= (splt
->output_section
->vma
5877 + splt
->output_offset
5878 + htab
->plt_info
->plt0_got_fields
[2]);
5879 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_SH_DIR32
);
5881 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
5882 loc
+= sizeof (Elf32_External_Rela
);
5884 /* Fix up the remaining .rela.plt.unloaded relocations.
5885 They may have the wrong symbol index for _G_O_T_ or
5886 _P_L_T_ depending on the order in which symbols were
5888 while (loc
< htab
->srelplt2
->contents
+ htab
->srelplt2
->size
)
5890 /* The PLT entry's pointer to the .got.plt slot. */
5891 bfd_elf32_swap_reloc_in (output_bfd
, loc
, &rel
);
5892 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
,
5894 bfd_elf32_swap_reloc_out (output_bfd
, &rel
, loc
);
5895 loc
+= sizeof (Elf32_External_Rela
);
5897 /* The .got.plt slot's pointer to .plt. */
5898 bfd_elf32_swap_reloc_in (output_bfd
, loc
, &rel
);
5899 rel
.r_info
= ELF32_R_INFO (htab
->root
.hplt
->indx
,
5901 bfd_elf32_swap_reloc_out (output_bfd
, &rel
, loc
);
5902 loc
+= sizeof (Elf32_External_Rela
);
5906 /* UnixWare sets the entsize of .plt to 4, although that doesn't
5907 really seem like the right value. */
5908 elf_section_data (splt
->output_section
)->this_hdr
.sh_entsize
= 4;
5912 /* Fill in the first three entries in the global offset table. */
5913 if (sgot
&& sgot
->size
> 0)
5916 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
5918 bfd_put_32 (output_bfd
,
5919 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
5921 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 4);
5922 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 8);
5924 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
= 4;
5930 static enum elf_reloc_type_class
5931 sh_elf_reloc_type_class (const Elf_Internal_Rela
*rela
)
5933 switch ((int) ELF32_R_TYPE (rela
->r_info
))
5936 return reloc_class_relative
;
5938 return reloc_class_plt
;
5940 return reloc_class_copy
;
5942 return reloc_class_normal
;
5946 #if !defined SH_TARGET_ALREADY_DEFINED
5947 /* Support for Linux core dump NOTE sections. */
5950 elf32_shlin_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
5955 switch (note
->descsz
)
5960 case 168: /* Linux/SH */
5962 elf_tdata (abfd
)->core_signal
= bfd_get_16 (abfd
, note
->descdata
+ 12);
5965 elf_tdata (abfd
)->core_pid
= bfd_get_32 (abfd
, note
->descdata
+ 24);
5974 /* Make a ".reg/999" section. */
5975 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
5976 size
, note
->descpos
+ offset
);
5980 elf32_shlin_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
5982 switch (note
->descsz
)
5987 case 124: /* Linux/SH elf_prpsinfo */
5988 elf_tdata (abfd
)->core_program
5989 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 28, 16);
5990 elf_tdata (abfd
)->core_command
5991 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 44, 80);
5994 /* Note that for some reason, a spurious space is tacked
5995 onto the end of the args in some (at least one anyway)
5996 implementations, so strip it off if it exists. */
5999 char *command
= elf_tdata (abfd
)->core_command
;
6000 int n
= strlen (command
);
6002 if (0 < n
&& command
[n
- 1] == ' ')
6003 command
[n
- 1] = '\0';
6008 #endif /* not SH_TARGET_ALREADY_DEFINED */
6011 /* Return address for Ith PLT stub in section PLT, for relocation REL
6012 or (bfd_vma) -1 if it should not be included. */
6015 sh_elf_plt_sym_val (bfd_vma i
, const asection
*plt
,
6016 const arelent
*rel ATTRIBUTE_UNUSED
)
6018 const struct elf_sh_plt_info
*plt_info
;
6020 plt_info
= get_plt_info (plt
->owner
, (plt
->owner
->flags
& DYNAMIC
) != 0);
6021 return plt
->vma
+ get_plt_offset (plt_info
, i
);
6024 #if !defined SH_TARGET_ALREADY_DEFINED
6025 #define TARGET_BIG_SYM bfd_elf32_sh_vec
6026 #define TARGET_BIG_NAME "elf32-sh"
6027 #define TARGET_LITTLE_SYM bfd_elf32_shl_vec
6028 #define TARGET_LITTLE_NAME "elf32-shl"
6031 #define ELF_ARCH bfd_arch_sh
6032 #define ELF_MACHINE_CODE EM_SH
6033 #ifdef __QNXTARGET__
6034 #define ELF_MAXPAGESIZE 0x1000
6036 #define ELF_MAXPAGESIZE 0x80
6039 #define elf_symbol_leading_char '_'
6041 #define bfd_elf32_bfd_reloc_type_lookup sh_elf_reloc_type_lookup
6042 #define bfd_elf32_bfd_reloc_name_lookup \
6043 sh_elf_reloc_name_lookup
6044 #define elf_info_to_howto sh_elf_info_to_howto
6045 #define bfd_elf32_bfd_relax_section sh_elf_relax_section
6046 #define elf_backend_relocate_section sh_elf_relocate_section
6047 #define bfd_elf32_bfd_get_relocated_section_contents \
6048 sh_elf_get_relocated_section_contents
6049 #define bfd_elf32_mkobject sh_elf_mkobject
6050 #define elf_backend_object_p sh_elf_object_p
6051 #define bfd_elf32_bfd_set_private_bfd_flags \
6052 sh_elf_set_private_flags
6053 #define bfd_elf32_bfd_copy_private_bfd_data \
6054 sh_elf_copy_private_data
6055 #define bfd_elf32_bfd_merge_private_bfd_data \
6056 sh_elf_merge_private_data
6058 #define elf_backend_gc_mark_hook sh_elf_gc_mark_hook
6059 #define elf_backend_gc_sweep_hook sh_elf_gc_sweep_hook
6060 #define elf_backend_check_relocs sh_elf_check_relocs
6061 #define elf_backend_copy_indirect_symbol \
6062 sh_elf_copy_indirect_symbol
6063 #define elf_backend_create_dynamic_sections \
6064 sh_elf_create_dynamic_sections
6065 #define bfd_elf32_bfd_link_hash_table_create \
6066 sh_elf_link_hash_table_create
6067 #define elf_backend_adjust_dynamic_symbol \
6068 sh_elf_adjust_dynamic_symbol
6069 #define elf_backend_always_size_sections \
6070 sh_elf_always_size_sections
6071 #define elf_backend_size_dynamic_sections \
6072 sh_elf_size_dynamic_sections
6073 #define elf_backend_omit_section_dynsym \
6074 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
6075 #define elf_backend_finish_dynamic_symbol \
6076 sh_elf_finish_dynamic_symbol
6077 #define elf_backend_finish_dynamic_sections \
6078 sh_elf_finish_dynamic_sections
6079 #define elf_backend_reloc_type_class sh_elf_reloc_type_class
6080 #define elf_backend_plt_sym_val sh_elf_plt_sym_val
6082 #define elf_backend_can_gc_sections 1
6083 #define elf_backend_can_refcount 1
6084 #define elf_backend_want_got_plt 1
6085 #define elf_backend_plt_readonly 1
6086 #define elf_backend_want_plt_sym 0
6087 #define elf_backend_got_header_size 12
6089 #if !defined INCLUDE_SHMEDIA && !defined SH_TARGET_ALREADY_DEFINED
6091 #include "elf32-target.h"
6093 /* NetBSD support. */
6094 #undef TARGET_BIG_SYM
6095 #define TARGET_BIG_SYM bfd_elf32_shnbsd_vec
6096 #undef TARGET_BIG_NAME
6097 #define TARGET_BIG_NAME "elf32-sh-nbsd"
6098 #undef TARGET_LITTLE_SYM
6099 #define TARGET_LITTLE_SYM bfd_elf32_shlnbsd_vec
6100 #undef TARGET_LITTLE_NAME
6101 #define TARGET_LITTLE_NAME "elf32-shl-nbsd"
6102 #undef ELF_MAXPAGESIZE
6103 #define ELF_MAXPAGESIZE 0x10000
6104 #undef ELF_COMMONPAGESIZE
6105 #undef elf_symbol_leading_char
6106 #define elf_symbol_leading_char 0
6108 #define elf32_bed elf32_sh_nbsd_bed
6110 #include "elf32-target.h"
6113 /* Linux support. */
6114 #undef TARGET_BIG_SYM
6115 #define TARGET_BIG_SYM bfd_elf32_shblin_vec
6116 #undef TARGET_BIG_NAME
6117 #define TARGET_BIG_NAME "elf32-shbig-linux"
6118 #undef TARGET_LITTLE_SYM
6119 #define TARGET_LITTLE_SYM bfd_elf32_shlin_vec
6120 #undef TARGET_LITTLE_NAME
6121 #define TARGET_LITTLE_NAME "elf32-sh-linux"
6122 #undef ELF_COMMONPAGESIZE
6123 #define ELF_COMMONPAGESIZE 0x1000
6125 #undef elf_backend_grok_prstatus
6126 #define elf_backend_grok_prstatus elf32_shlin_grok_prstatus
6127 #undef elf_backend_grok_psinfo
6128 #define elf_backend_grok_psinfo elf32_shlin_grok_psinfo
6130 #define elf32_bed elf32_sh_lin_bed
6132 #include "elf32-target.h"
6134 #undef TARGET_BIG_SYM
6135 #define TARGET_BIG_SYM bfd_elf32_shvxworks_vec
6136 #undef TARGET_BIG_NAME
6137 #define TARGET_BIG_NAME "elf32-sh-vxworks"
6138 #undef TARGET_LITTLE_SYM
6139 #define TARGET_LITTLE_SYM bfd_elf32_shlvxworks_vec
6140 #undef TARGET_LITTLE_NAME
6141 #define TARGET_LITTLE_NAME "elf32-shl-vxworks"
6143 #define elf32_bed elf32_sh_vxworks_bed
6145 #undef elf_backend_want_plt_sym
6146 #define elf_backend_want_plt_sym 1
6147 #undef elf_symbol_leading_char
6148 #define elf_symbol_leading_char '_'
6149 #define elf_backend_want_got_underscore 1
6150 #undef elf_backend_grok_prstatus
6151 #undef elf_backend_grok_psinfo
6152 #undef elf_backend_add_symbol_hook
6153 #define elf_backend_add_symbol_hook elf_vxworks_add_symbol_hook
6154 #undef elf_backend_link_output_symbol_hook
6155 #define elf_backend_link_output_symbol_hook \
6156 elf_vxworks_link_output_symbol_hook
6157 #undef elf_backend_emit_relocs
6158 #define elf_backend_emit_relocs elf_vxworks_emit_relocs
6159 #undef elf_backend_final_write_processing
6160 #define elf_backend_final_write_processing \
6161 elf_vxworks_final_write_processing
6162 #undef ELF_MAXPAGESIZE
6163 #define ELF_MAXPAGESIZE 0x1000
6164 #undef ELF_COMMONPAGESIZE
6166 #include "elf32-target.h"
6168 #endif /* neither INCLUDE_SHMEDIA nor SH_TARGET_ALREADY_DEFINED */