1 # This shell script emits a C file. -*- C -*-
2 # Copyright 2000, 2001, 2002, 2003, 2004, 2007 Free Software Foundation, Inc.
4 # This file is part of the GNU Binutils.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 # This file is sourced from elf32.em, and defines extra sh64
26 LDEMUL_AFTER_ALLOCATION=sh64_elf_${EMULATION_NAME}_after_allocation
27 LDEMUL_BEFORE_ALLOCATION=sh64_elf_${EMULATION_NAME}_before_allocation
31 #include "libiberty.h"
35 #include "elf32-sh64.h"
37 /* Check if we need a .cranges section and create it if it's not in any
38 input file. It might seem better to always create it and if unneeded,
39 discard it, but I don't find a simple way to discard it totally from
42 Putting it here instead of as a elf_backend_always_size_sections hook
43 in elf32-sh64.c, means that we have access to linker command line
44 options here, and we can access input sections in the order in which
45 they will be linked. */
48 sh64_elf_${EMULATION_NAME}_before_allocation (void)
53 /* Call main function; we're just extending it. */
54 gld${EMULATION_NAME}_before_allocation ();
56 cranges = bfd_get_section_by_name (output_bfd, SH64_CRANGES_SECTION_NAME);
60 if (command_line.relax)
62 /* FIXME: Look through incoming sections with .cranges
63 descriptors, build up some kind of descriptors that the
64 relaxing function will pick up and adjust, or perhaps make it
65 find and adjust an associated .cranges descriptor. We could
66 also look through incoming relocs and kill the ones marking
67 relaxation areas, but that wouldn't be TRT. */
69 (_("%P: Sorry, turning off relaxing: .cranges section in input.\n"));
70 einfo (_(" A .cranges section is present in:\n"));
73 LANG_FOR_EACH_INPUT_STATEMENT (f)
75 asection *input_cranges
76 = bfd_get_section_by_name (f->the_bfd,
77 SH64_CRANGES_SECTION_NAME);
78 if (input_cranges != NULL)
83 command_line.relax = FALSE;
86 /* We wouldn't need to do anything when there's already a .cranges
87 section (and have a return here), except that we need to set the
88 section flags right for output sections that *don't* need a
92 if (command_line.relax)
94 LANG_FOR_EACH_INPUT_STATEMENT (f)
96 if (bfd_get_flavour (f->the_bfd) == bfd_target_elf_flavour)
99 for (isec = f->the_bfd->sections;
103 if (elf_section_data (isec)->this_hdr.sh_flags
104 & (SHF_SH5_ISA32 | SHF_SH5_ISA32_MIXED))
106 einfo (_("%P: Sorry, turning off relaxing: SHmedia sections present.\n"));
108 command_line.relax = FALSE;
109 goto done_scanning_shmedia_sections;
115 done_scanning_shmedia_sections:
117 /* For each non-empty input section in each output section, check if it
118 has the same SH64-specific flags. If some input section differs, we
119 need a .cranges section. */
120 for (osec = output_bfd->sections;
124 struct sh64_section_data *sh64_sec_data;
125 bfd_vma oflags_isa = 0;
126 bfd_vma iflags_isa = 0;
128 if (bfd_get_flavour (output_bfd) != bfd_target_elf_flavour)
129 einfo (_("%FError: non-ELF output formats are not supported by this target's linker.\n"));
131 sh64_sec_data = sh64_elf_section_data (osec)->sh64_info;
133 /* Omit excluded or garbage-collected sections. */
134 if (bfd_get_section_flags (output_bfd, osec) & SEC_EXCLUDE)
137 /* Make sure we have the target section data initialized. */
138 if (sh64_sec_data == NULL)
140 sh64_sec_data = xcalloc (1, sizeof (struct sh64_section_data));
141 sh64_elf_section_data (osec)->sh64_info = sh64_sec_data;
144 /* First find an input section so we have flags to compare with; the
145 flags in the output section are not valid. */
147 LANG_FOR_EACH_INPUT_STATEMENT (f)
151 for (isec = f->the_bfd->sections;
155 if (isec->output_section == osec
157 && (bfd_get_section_flags (isec->owner, isec)
161 = (elf_section_data (isec)->this_hdr.sh_flags
162 & (SHF_SH5_ISA32 | SHF_SH5_ISA32_MIXED));
171 /* Check that all input sections have the same contents-type flags
172 as the first input section. */
174 LANG_FOR_EACH_INPUT_STATEMENT (f)
178 for (isec = f->the_bfd->sections;
182 if (isec->output_section == osec
184 && (bfd_get_section_flags (isec->owner, isec)
188 = (elf_section_data (isec)->this_hdr.sh_flags
189 & (SHF_SH5_ISA32 | SHF_SH5_ISA32_MIXED));
191 /* If flags don't agree, we need a .cranges section.
192 Create it here if it did not exist through input
194 if (iflags_isa != oflags_isa)
198 /* This section will be *appended* to
199 sections, so the outer iteration will reach
200 it in due time and set
201 sh64_elf_section_data; no need to set it
202 specifically here. */
204 = bfd_make_section (output_bfd,
205 SH64_CRANGES_SECTION_NAME);
207 || !bfd_set_section_flags (output_bfd,
214 (_("%P%E%F: Can't make .cranges section\n"));
217 /* We don't need to look at more input sections,
218 and we know this section will have mixed
227 /* If we got here, then all input sections in this output section
228 have the same contents flag. Put that where we expect to see
229 contents flags. We don't need to do this for sections that will
230 need additional, linker-generated .cranges entries. */
231 sh64_sec_data->contents_flags = iflags_isa;
238 /* Size up and extend the .cranges section, merging generated entries. */
241 sh64_elf_${EMULATION_NAME}_after_allocation (void)
243 bfd_vma new_cranges = 0;
244 bfd_vma cranges_growth = 0;
249 = bfd_get_section_by_name (output_bfd, SH64_CRANGES_SECTION_NAME);
251 /* If this ever starts doing something, we will pick it up. */
252 after_allocation_default ();
254 /* If there is no .cranges section, it is because it was seen earlier on
255 that none was needed. Otherwise it must have been created then, or
256 be present in input. */
260 /* First, we set the ISA flags for each output section according to the
261 first non-discarded section. For each input section in osec, we
262 check if it has the same flags. If it does not, we set flags to mark
263 a mixed section (and exit the loop early). */
264 for (osec = output_bfd->sections;
268 bfd_vma oflags_isa = 0;
269 bfd_boolean need_check_cranges = FALSE;
271 /* Omit excluded or garbage-collected sections. */
272 if (bfd_get_section_flags (output_bfd, osec) & SEC_EXCLUDE)
275 /* First find an input section so we have flags to compare with; the
276 flags in the output section are not valid. */
278 LANG_FOR_EACH_INPUT_STATEMENT (f)
282 for (isec = f->the_bfd->sections;
286 if (isec->output_section == osec
288 && (bfd_get_section_flags (isec->owner, isec)
292 = (elf_section_data (isec)->this_hdr.sh_flags
293 & (SHF_SH5_ISA32 | SHF_SH5_ISA32_MIXED));
302 /* Check that all input sections have the same contents-type flags
303 as the first input section. */
305 LANG_FOR_EACH_INPUT_STATEMENT (f)
309 for (isec = f->the_bfd->sections;
313 if (isec->output_section == osec
315 && (bfd_get_section_flags (isec->owner, isec)
319 = (elf_section_data (isec)->this_hdr.sh_flags
320 & (SHF_SH5_ISA32 | SHF_SH5_ISA32_MIXED));
322 /* If flags don't agree, set the target-specific data
323 of the section to mark that this section needs to
324 be have .cranges section entries added. Don't
325 bother setting ELF section flags in output section;
326 they will be cleared later and will have to be
327 re-initialized before the linked file is written. */
328 if (iflags_isa != oflags_isa)
330 oflags_isa = SHF_SH5_ISA32_MIXED;
332 BFD_ASSERT (sh64_elf_section_data (osec)->sh64_info);
334 sh64_elf_section_data (osec)->sh64_info->contents_flags
335 = SHF_SH5_ISA32_MIXED;
336 need_check_cranges = TRUE;
346 /* If there were no new ranges for this output section, we don't
347 need to iterate over the input sections to check how many are
349 if (! need_check_cranges)
352 /* If we found a section with differing contents type, we need more
353 ranges to mark the sections that are not mixed (and already have
354 .cranges descriptors). Calculate the maximum number of new
355 entries here. We may merge some of them, so that number is not
356 final; it can shrink. */
358 LANG_FOR_EACH_INPUT_STATEMENT (f)
362 for (isec = f->the_bfd->sections;
366 if (isec->output_section == osec
368 && (bfd_get_section_flags (isec->owner, isec)
370 && ((elf_section_data (isec)->this_hdr.sh_flags
371 & (SHF_SH5_ISA32 | SHF_SH5_ISA32_MIXED))
372 != SHF_SH5_ISA32_MIXED))
379 /* ldemul_after_allocation may be called twice. First directly from
380 lang_process, and the second time when lang_process calls ldemul_finish,
381 which calls gld${EMULATION_NAME}_finish, e.g. gldshelf32_finish, which
382 is defined in emultempl/elf32.em and calls ldemul_after_allocation,
383 if bfd_elf_discard_info returned true. */
384 if (cranges->contents != NULL)
385 free (cranges->contents);
387 BFD_ASSERT (sh64_elf_section_data (cranges)->sh64_info != NULL);
389 /* Make sure we have .cranges in memory even if there were only
390 assembler-generated .cranges. */
391 cranges_growth = new_cranges * SH64_CRANGE_SIZE;
392 cranges->contents = xcalloc (cranges->size + cranges_growth, 1);
393 bfd_set_section_flags (cranges->owner, cranges,
394 bfd_get_section_flags (cranges->owner, cranges)
397 /* If we don't need to grow the .cranges section beyond what was in the
398 input sections, we have nothing more to do here. We then only got
399 here because there was a .cranges section coming from input. Zero
400 out the number of generated .cranges. */
401 if (new_cranges == 0)
403 sh64_elf_section_data (cranges)->sh64_info->cranges_growth = 0;
407 crangesp = cranges->contents + cranges->size;
409 /* Now pass over the sections again, and make reloc orders for the new
410 .cranges entries. Constants are set as we go. */
411 for (osec = output_bfd->sections;
415 struct bfd_link_order *cr_addr_order = NULL;
416 enum sh64_elf_cr_type last_cr_type = CRT_NONE;
417 bfd_vma last_cr_size = 0;
418 bfd_vma continuation_vma = 0;
420 /* Omit excluded or garbage-collected sections, and output sections
421 which were not marked as needing further processing. */
422 if ((bfd_get_section_flags (output_bfd, osec) & SEC_EXCLUDE) != 0
423 || (sh64_elf_section_data (osec)->sh64_info->contents_flags
424 != SHF_SH5_ISA32_MIXED))
428 LANG_FOR_EACH_INPUT_STATEMENT (f)
432 for (isec = f->the_bfd->sections;
436 /* Allow only sections that have (at least initially) a
437 non-zero size, and are not excluded, and are not marked
438 as containing mixed data, thus already having .cranges
440 if (isec->output_section == osec
442 && (bfd_get_section_flags (isec->owner, isec)
444 && ((elf_section_data (isec)->this_hdr.sh_flags
445 & (SHF_SH5_ISA32 | SHF_SH5_ISA32_MIXED))
446 != SHF_SH5_ISA32_MIXED))
448 enum sh64_elf_cr_type cr_type;
451 = (elf_section_data (isec)->this_hdr.sh_flags
452 & (SHF_SH5_ISA32 | SHF_SH5_ISA32_MIXED));
454 if (isa_flags == SHF_SH5_ISA32)
455 cr_type = CRT_SH5_ISA32;
456 else if ((bfd_get_section_flags (isec->owner, isec)
460 cr_type = CRT_SH5_ISA16;
462 cr_size = isec->size;
464 /* Sections can be empty, like .text in a file that
465 only contains other sections. Ranges shouldn't be
466 emitted for them. This can presumably happen after
467 relaxing and is not be caught at the "raw size"
472 /* See if this is a continuation of the previous range
473 for the same output section. If so, just change
474 the size of the last range and continue. */
475 if (cr_type == last_cr_type
477 == osec->vma + isec->output_offset))
479 last_cr_size += cr_size;
480 bfd_put_32 (output_bfd, last_cr_size,
481 crangesp - SH64_CRANGE_SIZE
482 + SH64_CRANGE_CR_SIZE_OFFSET);
484 continuation_vma += cr_size;
488 /* If we emit relocatable contents, we need a
489 relocation for the start address. */
490 if (link_info.relocatable || link_info.emitrelocations)
492 /* FIXME: We could perhaps use lang_add_reloc and
493 friends here, but I'm not really sure that
494 would leave us free to do some optimizations
497 = bfd_new_link_order (output_bfd, cranges);
499 if (cr_addr_order == NULL)
501 einfo (_("%P%F: bfd_new_link_order failed\n"));
505 cr_addr_order->type = bfd_section_reloc_link_order;
506 cr_addr_order->offset
507 = (cranges->output_offset
508 + crangesp + SH64_CRANGE_CR_ADDR_OFFSET
509 - cranges->contents);
510 cr_addr_order->size = 4;
511 cr_addr_order->u.reloc.p
512 = xmalloc (sizeof (struct bfd_link_order_reloc));
514 cr_addr_order->u.reloc.p->reloc = BFD_RELOC_32;
515 cr_addr_order->u.reloc.p->u.section = osec;
517 /* Since SH, unlike normal RELA-targets, uses a
518 "partial inplace" REL-like relocation for this,
519 we put the addend in the contents and specify 0
521 bfd_put_32 (output_bfd, isec->output_offset,
522 crangesp + SH64_CRANGE_CR_ADDR_OFFSET);
523 cr_addr_order->u.reloc.p->addend = 0;
526 bfd_put_32 (output_bfd,
527 osec->vma + isec->output_offset,
528 crangesp + SH64_CRANGE_CR_ADDR_OFFSET);
530 /* If we could make a reloc for cr_size we would do
531 it, but we would have to have a symbol for the size
532 of the _input_ section and there's no way to
534 bfd_put_32 (output_bfd, cr_size,
535 crangesp + SH64_CRANGE_CR_SIZE_OFFSET);
537 bfd_put_16 (output_bfd, cr_type,
538 crangesp + SH64_CRANGE_CR_TYPE_OFFSET);
540 last_cr_type = cr_type;
541 last_cr_size = cr_size;
543 = osec->vma + isec->output_offset + cr_size;
544 crangesp += SH64_CRANGE_SIZE;
551 /* The .cranges section will have this size, no larger or smaller.
552 Since relocs (if relocatable linking) will be emitted into the
553 "extended" size, we must set the raw size to the total. We have to
554 keep track of the number of new .cranges entries.
556 Sorting before writing is done by sh64_elf_final_write_processing. */
558 sh64_elf_section_data (cranges)->sh64_info->cranges_growth
559 = crangesp - cranges->contents - cranges->size;
560 cranges->size = crangesp - cranges->contents;
561 cranges->rawsize = cranges->size;