1 # This shell script emits a C file. -*- C -*-
2 # Copyright 2006, 2007, 2008 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 spu specific
27 #include "elf32-spu.h"
29 /* Non-zero if no overlay processing should be done. */
30 static int no_overlays = 0;
32 /* Non-zero if we want stubs on all calls out of overlay regions. */
33 static int non_overlay_stubs = 0;
35 /* Whether to emit symbols for stubs. */
36 static int emit_stub_syms = 0;
38 /* Non-zero to perform stack space analysis. */
39 static int stack_analysis = 0;
41 /* Whether to emit symbols with stack requirements for each function. */
42 static int emit_stack_syms = 0;
44 /* Range of valid addresses for loadable sections. */
45 static bfd_vma local_store_lo = 0;
46 static bfd_vma local_store_hi = 0x3ffff;
48 /* Control --auto-overlay feature. */
49 static int auto_overlay = 0;
50 static char *auto_overlay_file = 0;
51 static unsigned int auto_overlay_fixed = 0;
52 static unsigned int auto_overlay_reserved = 0;
53 static int extra_stack_space = 2000;
57 static const char ovl_mgr[] = {
60 if ! cat ${srcdir}/emultempl/spu_ovl.o_c >> e${EMULATION_NAME}.c
62 echo >&2 "Missing ${srcdir}/emultempl/spu_ovl.o_c"
63 echo >&2 "You must build gas/as-new with --target=spu to build spu_ovl.o"
70 static const struct _ovl_stream ovl_mgr_stream = {
72 ovl_mgr + sizeof (ovl_mgr)
79 extern const bfd_target bfd_elf32_spu_vec;
81 return link_info.output_bfd->xvec == &bfd_elf32_spu_vec;
84 /* Create our note section. */
90 && !link_info.relocatable
91 && link_info.input_bfds != NULL
92 && !spu_elf_create_sections (&link_info,
93 stack_analysis, emit_stack_syms))
94 einfo ("%X%P: can not create note section: %E\n");
96 gld${EMULATION_NAME}_after_open ();
99 /* If O is NULL, add section S at the end of output section OUTPUT_NAME.
100 If O is not NULL, add section S at the beginning of output section O.
102 Really, we should be duplicating ldlang.c map_input_to_output_sections
103 logic here, ie. using the linker script to find where the section
104 goes. That's rather a lot of code, and we don't want to run
105 map_input_to_output_sections again because most sections are already
106 mapped. So cheat, and put the section in a fixed place, ignoring any
107 attempt via a linker script to put .stub, .ovtab, and built-in
108 overlay manager code somewhere else. */
111 spu_place_special_section (asection *s, asection *o, const char *output_name)
113 lang_output_section_statement_type *os;
115 os = lang_output_section_find (o != NULL ? o->name : output_name);
117 gld${EMULATION_NAME}_place_orphan (s, output_name);
118 else if (o != NULL && os->children.head != NULL)
120 lang_statement_list_type add;
122 lang_list_init (&add);
123 lang_add_section (&add, s, os);
124 *add.tail = os->children.head;
125 os->children.head = add.head;
128 lang_add_section (&os->children, s, os);
130 s->output_section->size += s->size;
133 /* Load built-in overlay manager, and tweak overlay section alignment. */
136 spu_elf_load_ovl_mgr (void)
138 lang_output_section_statement_type *os;
139 struct elf_link_hash_entry *h;
141 h = elf_link_hash_lookup (elf_hash_table (&link_info),
142 "__ovly_load", FALSE, FALSE, FALSE);
145 && (h->root.type == bfd_link_hash_defined
146 || h->root.type == bfd_link_hash_defweak)
149 /* User supplied __ovly_load. */
151 else if (ovl_mgr_stream.start == ovl_mgr_stream.end)
152 einfo ("%F%P: no built-in overlay manager\n");
155 lang_input_statement_type *ovl_is;
157 ovl_is = lang_add_input_file ("builtin ovl_mgr",
158 lang_input_file_is_file_enum,
161 if (!spu_elf_open_builtin_lib (&ovl_is->the_bfd, &ovl_mgr_stream))
162 einfo ("%X%P: can not open built-in overlay manager: %E\n");
167 if (!load_symbols (ovl_is, NULL))
168 einfo ("%X%P: can not load built-in overlay manager: %E\n");
170 /* Map overlay manager sections to output sections. */
171 for (in = ovl_is->the_bfd->sections; in != NULL; in = in->next)
172 if ((in->flags & (SEC_ALLOC | SEC_LOAD))
173 == (SEC_ALLOC | SEC_LOAD))
174 spu_place_special_section (in, NULL, ".text");
178 /* Ensure alignment of overlay sections is sufficient. */
179 for (os = &lang_output_section_statement.head->output_section_statement;
182 if (os->bfd_section != NULL
183 && spu_elf_section_data (os->bfd_section) != NULL
184 && spu_elf_section_data (os->bfd_section)->u.o.ovl_index != 0)
186 if (os->bfd_section->alignment_power < 4)
187 os->bfd_section->alignment_power = 4;
189 /* Also ensure size rounds up. */
190 os->block_value = 16;
194 /* Go find if we need to do anything special for overlays. */
197 spu_before_allocation (void)
200 && !link_info.relocatable
203 /* Size the sections. This is premature, but we need to know the
204 rough layout so that overlays can be found. */
205 expld.phase = lang_mark_phase_enum;
206 expld.dataseg.phase = exp_dataseg_none;
207 one_lang_size_sections_pass (NULL, TRUE);
209 /* Find overlays by inspecting section vmas. */
210 if (spu_elf_find_overlays (&link_info))
214 if (auto_overlay != 0)
216 einfo ("%P: --auto-overlay ignored with user overlay script\n");
220 ret = spu_elf_size_stubs (&link_info,
221 spu_place_special_section,
224 einfo ("%X%P: can not size overlay stubs: %E\n");
226 spu_elf_load_ovl_mgr ();
229 /* We must not cache anything from the preliminary sizing. */
230 lang_reset_memory_regions ();
233 gld${EMULATION_NAME}_before_allocation ();
241 static struct tflist *tmp_file_list;
243 static void clean_tmp (void)
245 for (; tmp_file_list != NULL; tmp_file_list = tmp_file_list->next)
246 unlink (tmp_file_list->name);
250 new_tmp_file (char **fname)
255 if (tmp_file_list == NULL)
257 tf = xmalloc (sizeof (*tf));
258 tf->next = tmp_file_list;
260 memcpy (tf->name, "ldXXXXXX", sizeof (tf->name));
263 fd = mkstemp (*fname);
265 *fname = mktemp (*fname);
268 fd = open (fname, O_RDWR | O_CREAT | O_EXCL, 0600);
274 spu_elf_open_overlay_script (void)
278 if (auto_overlay_file == NULL)
280 int fd = new_tmp_file (&auto_overlay_file);
283 script = fdopen (fd, "w");
286 script = fopen (auto_overlay_file, "w");
291 einfo ("%F%P: can not open script: %E\n");
297 spu_elf_relink (void)
299 char **argv = xmalloc ((my_argc + 4) * sizeof (*argv));
301 memcpy (argv, my_argv, my_argc * sizeof (*argv));
302 argv[my_argc++] = "--no-auto-overlay";
303 if (tmp_file_list->name == auto_overlay_file)
304 argv[my_argc - 1] = concat (argv[my_argc - 1], "=",
305 auto_overlay_file, (const char *) NULL);
306 argv[my_argc++] = "-T";
307 argv[my_argc++] = auto_overlay_file;
309 execvp (argv[0], (char *const *) argv);
314 /* Final emulation specific call. */
317 gld${EMULATION_NAME}_finish (void)
321 need_laying_out = bfd_elf_discard_info (link_info.output_bfd, &link_info);
323 gld${EMULATION_NAME}_map_segments (need_laying_out);
325 if (is_spu_target ())
327 if (local_store_lo < local_store_hi)
331 s = spu_elf_check_vma (&link_info, auto_overlay,
332 local_store_lo, local_store_hi,
333 auto_overlay_fixed, auto_overlay_reserved,
335 spu_elf_load_ovl_mgr,
336 spu_elf_open_overlay_script,
338 if (s != NULL && !auto_overlay)
339 einfo ("%X%P: %A exceeds local store range\n", s);
341 else if (auto_overlay)
342 einfo ("%P: --auto-overlay ignored with zero local store range\n");
344 if (!spu_elf_build_stubs (&link_info,
345 emit_stub_syms || link_info.emitrelocations))
346 einfo ("%F%P: can not build overlay stubs: %E\n");
353 gld${EMULATION_NAME}_choose_target (int argc, char *argv[])
357 return ldemul_default_target (argc, argv);
362 if grep -q 'ld_elf.*ppc.*_emulation' ldemul-list.h; then
364 #include "filenames.h"
366 #include <sys/wait.h>
369 base_name (const char *path)
371 const char *file = strrchr (path, '/');
372 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
374 char *bslash = strrchr (path, '\\\\');
376 if (file == NULL || (bslash != NULL && bslash > file))
391 /* This function is called when building a ppc32 or ppc64 executable
392 to handle embedded spu images. */
393 extern bfd_boolean embedded_spu_file (lang_input_statement_type *, const char *);
396 embedded_spu_file (lang_input_statement_type *entry, const char *flags)
405 union lang_statement_union **old_stat_tail;
406 union lang_statement_union **old_file_tail;
407 union lang_statement_union *new_ent;
408 lang_input_statement_type *search;
410 if (entry->the_bfd->format != bfd_object
411 || strcmp (entry->the_bfd->xvec->name, "elf32-spu") != 0
412 || (entry->the_bfd->tdata.elf_obj_data->elf_header->e_type != ET_EXEC
413 && entry->the_bfd->tdata.elf_obj_data->elf_header->e_type != ET_DYN))
416 /* Use the filename as the symbol marking the program handle struct. */
417 sym = base_name (entry->the_bfd->filename);
419 handle = xstrdup (sym);
420 for (p = handle; *p; ++p)
421 if (!(ISALNUM (*p) || *p == '$' || *p == '.'))
424 fd = new_tmp_file (&oname);
429 for (search = (lang_input_statement_type *) input_file_chain.head;
431 search = (lang_input_statement_type *) search->next_real_file)
432 if (search->filename != NULL)
434 const char *infile = base_name (search->filename);
436 if (strncmp (infile, "crtbegin", 8) == 0)
438 if (infile[8] == 'S')
439 flags = concat (flags, " -fPIC", (const char *) NULL);
440 else if (infile[8] == 'T')
441 flags = concat (flags, " -fpie", (const char *) NULL);
446 /* Use fork() and exec() rather than system() so that we don't
447 need to worry about quoting args. */
451 cmd[3] = entry->the_bfd->filename;
454 if (trace_file_tries)
456 info_msg (_("running: %s \"%s\" \"%s\" \"%s\" \"%s\"\n"),
457 cmd[0], cmd[1], cmd[2], cmd[3], cmd[4]);
466 execvp (cmd[0], (char *const *) cmd);
467 if (strcmp ("embedspu", EMBEDSPU) != 0)
470 execvp (cmd[0], (char *const *) cmd);
476 #define WAITFOR(PID, STAT) waitpid (PID, STAT, 0)
478 #define WAITFOR(PID, STAT) wait (STAT)
480 if (WAITFOR (pid, &status) != pid
481 || !WIFEXITED (status)
482 || WEXITSTATUS (status) != 0)
486 old_stat_tail = stat_ptr->tail;
487 old_file_tail = input_file_chain.tail;
488 if (lang_add_input_file (oname, lang_input_file_is_file_enum, NULL) == NULL)
491 /* lang_add_input_file put the new list entry at the end of the statement
492 and input file lists. Move it to just after the current entry. */
493 new_ent = *old_stat_tail;
494 *old_stat_tail = NULL;
495 stat_ptr->tail = old_stat_tail;
496 *old_file_tail = NULL;
497 input_file_chain.tail = old_file_tail;
498 new_ent->header.next = entry->header.next;
499 entry->header.next = new_ent;
500 new_ent->input_statement.next_real_file = entry->next_real_file;
501 entry->next_real_file = new_ent;
503 /* Ensure bfd sections are excluded from the output. */
504 bfd_section_list_clear (entry->the_bfd);
505 entry->loaded = TRUE;
512 # Define some shell vars to insert bits of code into the standard elf
513 # parse_args and list_options functions.
515 PARSE_AND_LIST_PROLOGUE='
516 #define OPTION_SPU_PLUGIN 301
517 #define OPTION_SPU_NO_OVERLAYS (OPTION_SPU_PLUGIN + 1)
518 #define OPTION_SPU_STUB_SYMS (OPTION_SPU_NO_OVERLAYS + 1)
519 #define OPTION_SPU_NON_OVERLAY_STUBS (OPTION_SPU_STUB_SYMS + 1)
520 #define OPTION_SPU_LOCAL_STORE (OPTION_SPU_NON_OVERLAY_STUBS + 1)
521 #define OPTION_SPU_STACK_ANALYSIS (OPTION_SPU_LOCAL_STORE + 1)
522 #define OPTION_SPU_STACK_SYMS (OPTION_SPU_STACK_ANALYSIS + 1)
523 #define OPTION_SPU_AUTO_OVERLAY (OPTION_SPU_STACK_SYMS + 1)
524 #define OPTION_SPU_AUTO_RELINK (OPTION_SPU_AUTO_OVERLAY + 1)
525 #define OPTION_SPU_OVERLAY_RODATA (OPTION_SPU_AUTO_RELINK + 1)
526 #define OPTION_SPU_FIXED_SPACE (OPTION_SPU_OVERLAY_RODATA + 1)
527 #define OPTION_SPU_RESERVED_SPACE (OPTION_SPU_FIXED_SPACE + 1)
528 #define OPTION_SPU_EXTRA_STACK (OPTION_SPU_RESERVED_SPACE + 1)
529 #define OPTION_SPU_NO_AUTO_OVERLAY (OPTION_SPU_EXTRA_STACK + 1)
532 PARSE_AND_LIST_LONGOPTS='
533 { "plugin", no_argument, NULL, OPTION_SPU_PLUGIN },
534 { "no-overlays", no_argument, NULL, OPTION_SPU_NO_OVERLAYS },
535 { "emit-stub-syms", no_argument, NULL, OPTION_SPU_STUB_SYMS },
536 { "extra-overlay-stubs", no_argument, NULL, OPTION_SPU_NON_OVERLAY_STUBS },
537 { "local-store", required_argument, NULL, OPTION_SPU_LOCAL_STORE },
538 { "stack-analysis", no_argument, NULL, OPTION_SPU_STACK_ANALYSIS },
539 { "emit-stack-syms", no_argument, NULL, OPTION_SPU_STACK_SYMS },
540 { "auto-overlay", optional_argument, NULL, OPTION_SPU_AUTO_OVERLAY },
541 { "auto-relink", no_argument, NULL, OPTION_SPU_AUTO_RELINK },
542 { "overlay-rodata", no_argument, NULL, OPTION_SPU_OVERLAY_RODATA },
543 { "fixed-space", required_argument, NULL, OPTION_SPU_FIXED_SPACE },
544 { "reserved-space", required_argument, NULL, OPTION_SPU_RESERVED_SPACE },
545 { "extra-stack-space", required_argument, NULL, OPTION_SPU_EXTRA_STACK },
546 { "no-auto-overlay", optional_argument, NULL, OPTION_SPU_NO_AUTO_OVERLAY },
549 PARSE_AND_LIST_OPTIONS='
551 --plugin Make SPU plugin.\n\
552 --no-overlays No overlay handling.\n\
553 --emit-stub-syms Add symbols on overlay call stubs.\n\
554 --extra-overlay-stubs Add stubs on all calls out of overlay regions.\n\
555 --local-store=lo:hi Valid address range.\n\
556 --stack-analysis Estimate maximum stack requirement.\n\
557 --emit-stack-syms Add sym giving stack needed for each func.\n\
558 --auto-overlay [=filename] Create an overlay script in filename if\n\
559 executable does not fit in local store.\n\
560 --auto-relink Rerun linker using auto-overlay script.\n\
561 --overlay-rodata Place read-only data with associated function\n\
563 --fixed-space=bytes Local store for non-overlay code and data.\n\
564 --reserved-space=bytes Local store for stack and heap. If not specified\n\
565 ld will estimate stack size and assume no heap.\n\
566 --extra-stack-space=bytes Space for negative sp access (default 2000) if\n\
567 --reserved-space not given.\n"
571 PARSE_AND_LIST_ARGS_CASES='
572 case OPTION_SPU_PLUGIN:
576 case OPTION_SPU_NO_OVERLAYS:
580 case OPTION_SPU_STUB_SYMS:
584 case OPTION_SPU_NON_OVERLAY_STUBS:
585 non_overlay_stubs = 1;
588 case OPTION_SPU_LOCAL_STORE:
591 local_store_lo = strtoul (optarg, &end, 0);
592 if (*end == '\'':'\'')
594 local_store_hi = strtoul (end + 1, &end, 0);
598 einfo (_("%P%F: invalid --local-store address range `%s'\''\n"), optarg);
602 case OPTION_SPU_STACK_ANALYSIS:
606 case OPTION_SPU_STACK_SYMS:
610 case OPTION_SPU_AUTO_OVERLAY:
614 auto_overlay_file = optarg;
619 case OPTION_SPU_AUTO_RELINK:
623 case OPTION_SPU_OVERLAY_RODATA:
627 case OPTION_SPU_FIXED_SPACE:
630 auto_overlay_fixed = strtoul (optarg, &end, 0);
632 einfo (_("%P%F: invalid --fixed-space value `%s'\''\n"), optarg);
636 case OPTION_SPU_RESERVED_SPACE:
639 auto_overlay_reserved = strtoul (optarg, &end, 0);
641 einfo (_("%P%F: invalid --reserved-space value `%s'\''\n"), optarg);
645 case OPTION_SPU_EXTRA_STACK:
648 extra_stack_space = strtol (optarg, &end, 0);
650 einfo (_("%P%F: invalid --extra-stack-space value `%s'\''\n"), optarg);
654 case OPTION_SPU_NO_AUTO_OVERLAY:
661 if (tmp_file_list == NULL)
664 len = strlen (optarg) + 1;
665 tf = xmalloc (sizeof (*tf) - sizeof (tf->name) + len);
666 memcpy (tf->name, optarg, len);
667 tf->next = tmp_file_list;
674 LDEMUL_AFTER_OPEN=spu_after_open
675 LDEMUL_BEFORE_ALLOCATION=spu_before_allocation
676 LDEMUL_FINISH=gld${EMULATION_NAME}_finish
677 LDEMUL_CHOOSE_TARGET=gld${EMULATION_NAME}_choose_target