1 # This shell script emits a C file. -*- C -*-
2 # It does some substitutions.
3 (echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-)
4 cat >>e${EMULATION_NAME}.c <<EOF
5 /* This file is part of GLD, the Gnu Linker.
6 Copyright 1995, 96, 97, 1998 Free Software Foundation, Inc.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 /* The original file generated returned different default scripts depending
24 on whether certain switches were set, but these switches pertain to the
25 Linux system and that particular version of coff. In the NT case, we
26 only determine if the subsystem is console or windows in order to select
27 the correct entry point by default. */
33 #include "libiberty.h"
44 #include "coff/internal.h"
45 #include "../bfd/libcoff.h"
46 #include "../bfd/libbfd.h"
49 #define TARGET_IS_${EMULATION_NAME}
51 #if defined(TARGET_IS_i386pe)
55 #define PE_DEF_SUBSYSTEM 3
57 static void gld_${EMULATION_NAME}_set_symbols PARAMS ((void));
58 static void gld_${EMULATION_NAME}_after_open PARAMS ((void));
59 static void gld_${EMULATION_NAME}_before_parse PARAMS ((void));
60 static void gld_${EMULATION_NAME}_after_parse PARAMS ((void));
61 static void gld_${EMULATION_NAME}_before_allocation PARAMS ((void));
62 static boolean gld_${EMULATION_NAME}_place_orphan
63 PARAMS ((lang_input_statement_type *, asection *));
64 static void gld${EMULATION_NAME}_place_section
65 PARAMS ((lang_statement_union_type *));
66 static char *gld_${EMULATION_NAME}_get_script PARAMS ((int *));
67 static int gld_${EMULATION_NAME}_parse_args PARAMS ((int, char **));
69 static struct internal_extra_pe_aouthdr pe;
71 static int support_old_code = 0;
72 extern def_file *pe_def_file;
73 static lang_assignment_statement_type *image_base_statement = 0;
75 static char *pe_out_def_filename = 0;
76 extern int pe_dll_export_everything;
77 extern int pe_dll_kill_ats;
78 extern int pe_dll_stdcall_aliases;
79 static int pe_enable_stdcall_fixup = -1; /* 0=disable 1=enable */
80 static char *pe_implib_filename = 0;
82 extern const char *output_filename;
85 gld_${EMULATION_NAME}_before_parse()
87 output_filename = "a.exe";
88 ldfile_output_architecture = bfd_arch_${ARCH};
90 config.has_shared = 1;
94 /* PE format extra command line options. */
96 /* Used for setting flags in the PE header. */
97 #define OPTION_BASE_FILE (300 + 1)
98 #define OPTION_DLL (OPTION_BASE_FILE + 1)
99 #define OPTION_FILE_ALIGNMENT (OPTION_DLL + 1)
100 #define OPTION_IMAGE_BASE (OPTION_FILE_ALIGNMENT + 1)
101 #define OPTION_MAJOR_IMAGE_VERSION (OPTION_IMAGE_BASE + 1)
102 #define OPTION_MAJOR_OS_VERSION (OPTION_MAJOR_IMAGE_VERSION + 1)
103 #define OPTION_MAJOR_SUBSYSTEM_VERSION (OPTION_MAJOR_OS_VERSION + 1)
104 #define OPTION_MINOR_IMAGE_VERSION (OPTION_MAJOR_SUBSYSTEM_VERSION + 1)
105 #define OPTION_MINOR_OS_VERSION (OPTION_MINOR_IMAGE_VERSION + 1)
106 #define OPTION_MINOR_SUBSYSTEM_VERSION (OPTION_MINOR_OS_VERSION + 1)
107 #define OPTION_SECTION_ALIGNMENT (OPTION_MINOR_SUBSYSTEM_VERSION + 1)
108 #define OPTION_STACK (OPTION_SECTION_ALIGNMENT + 1)
109 #define OPTION_SUBSYSTEM (OPTION_STACK + 1)
110 #define OPTION_HEAP (OPTION_SUBSYSTEM + 1)
111 #define OPTION_SUPPORT_OLD_CODE (OPTION_HEAP + 1)
112 #define OPTION_OUT_DEF (OPTION_SUPPORT_OLD_CODE + 1)
113 #define OPTION_EXPORT_ALL (OPTION_OUT_DEF + 1)
114 #define OPTION_EXCLUDE_SYMBOLS (OPTION_EXPORT_ALL + 1)
115 #define OPTION_KILL_ATS (OPTION_EXCLUDE_SYMBOLS + 1)
116 #define OPTION_STDCALL_ALIASES (OPTION_KILL_ATS + 1)
117 #define OPTION_ENABLE_STDCALL_FIXUP (OPTION_STDCALL_ALIASES + 1)
118 #define OPTION_DISABLE_STDCALL_FIXUP (OPTION_ENABLE_STDCALL_FIXUP + 1)
119 #define OPTION_IMPLIB_FILENAME (OPTION_DISABLE_STDCALL_FIXUP + 1)
121 static struct option longopts[] =
124 {"base-file", required_argument, NULL, OPTION_BASE_FILE},
125 {"dll", no_argument, NULL, OPTION_DLL},
126 {"file-alignment", required_argument, NULL, OPTION_FILE_ALIGNMENT},
127 {"heap", required_argument, NULL, OPTION_HEAP},
128 {"image-base", required_argument, NULL, OPTION_IMAGE_BASE},
129 {"major-image-version", required_argument, NULL, OPTION_MAJOR_IMAGE_VERSION},
130 {"major-os-version", required_argument, NULL, OPTION_MAJOR_OS_VERSION},
131 {"major-subsystem-version", required_argument, NULL, OPTION_MAJOR_SUBSYSTEM_VERSION},
132 {"minor-image-version", required_argument, NULL, OPTION_MINOR_IMAGE_VERSION},
133 {"minor-os-version", required_argument, NULL, OPTION_MINOR_OS_VERSION},
134 {"minor-subsystem-version", required_argument, NULL, OPTION_MINOR_SUBSYSTEM_VERSION},
135 {"section-alignment", required_argument, NULL, OPTION_SECTION_ALIGNMENT},
136 {"stack", required_argument, NULL, OPTION_STACK},
137 {"subsystem", required_argument, NULL, OPTION_SUBSYSTEM},
138 {"support-old-code", no_argument, NULL, OPTION_SUPPORT_OLD_CODE},
140 /* getopt allows abbreviations, so we do this to stop it from treating -o
141 as an abbreviation for this option */
142 {"output-def", required_argument, NULL, OPTION_OUT_DEF},
143 {"output-def", required_argument, NULL, OPTION_OUT_DEF},
144 {"export-all-symbols", no_argument, NULL, OPTION_EXPORT_ALL},
145 {"exclude-symbols", required_argument, NULL, OPTION_EXCLUDE_SYMBOLS},
146 {"kill-at", no_argument, NULL, OPTION_KILL_ATS},
147 {"add-stdcall-alias", no_argument, NULL, OPTION_STDCALL_ALIASES},
148 {"enable-stdcall-fixup", no_argument, NULL, OPTION_ENABLE_STDCALL_FIXUP},
149 {"disable-stdcall-fixup", no_argument, NULL, OPTION_DISABLE_STDCALL_FIXUP},
150 {"out-implib", required_argument, NULL, OPTION_IMPLIB_FILENAME},
152 {NULL, no_argument, NULL, 0}
156 /* PE/WIN32; added routines to get the subsystem type, heap and/or stack
157 parameters which may be input from the command line */
168 #define D(field,symbol,def) {&pe.field,sizeof(pe.field), def, symbol,0}
170 static definfo init[] =
172 /* imagebase must be first */
173 #define IMAGEBASEOFF 0
174 D(ImageBase,"__image_base__", NT_EXE_IMAGE_BASE),
176 {&dll, sizeof(dll), 0, "__dll__"},
177 D(SectionAlignment,"__section_alignment__", PE_DEF_SECTION_ALIGNMENT),
178 D(FileAlignment,"__file_alignment__", PE_DEF_FILE_ALIGNMENT),
179 D(MajorOperatingSystemVersion,"__major_os_version__", 4),
180 D(MinorOperatingSystemVersion,"__minor_os_version__", 0),
181 D(MajorImageVersion,"__major_image_version__", 1),
182 D(MinorImageVersion,"__minor_image_version__", 0),
183 D(MajorSubsystemVersion,"__major_subsystem_version__", 4),
184 D(MinorSubsystemVersion,"__minor_subsystem_version__", 0),
185 D(Subsystem,"__subsystem__", PE_DEF_SUBSYSTEM),
186 D(SizeOfStackReserve,"__size_of_stack_reserve__", 0x2000000),
187 D(SizeOfStackCommit,"__size_of_stack_commit__", 0x1000),
188 D(SizeOfHeapReserve,"__size_of_heap_reserve__", 0x100000),
189 D(SizeOfHeapCommit,"__size_of_heap_commit__", 0x1000),
190 D(LoaderFlags,"__loader_flags__", 0x0),
191 { NULL, 0, 0, NULL, 0 }
195 gld_${EMULATION_NAME}_list_options (file)
198 fprintf (file, _(" --base_file <basefile> Generate a base file for relocatable DLLs\n"));
199 fprintf (file, _(" --dll Set image base to the default for DLLs\n"));
200 fprintf (file, _(" --file-alignment <size> Set file alignment\n"));
201 fprintf (file, _(" --heap <size> Set initial size of the heap\n"));
202 fprintf (file, _(" --image-base <address> Set start address of the executable\n"));
203 fprintf (file, _(" --major-image-version <number> Set version number of the executable\n"));
204 fprintf (file, _(" --major-os-version <number> Set minimum required OS version\n"));
205 fprintf (file, _(" --major-subsystem-version <number> Set minimum required OS subsystem version\n"));
206 fprintf (file, _(" --minor-image-version <number> Set revision number of the executable\n"));
207 fprintf (file, _(" --minor-os-version <number> Set minimum required OS revision\n"));
208 fprintf (file, _(" --minor-subsystem-version <number> Set minimum required OS subsystem revision\n"));
209 fprintf (file, _(" --section-alignment <size> Set section alignment\n"));
210 fprintf (file, _(" --stack <size> Set size of the initial stack\n"));
211 fprintf (file, _(" --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"));
212 fprintf (file, _(" --support-old-code Support interworking with old code\n"));
214 fprintf (file, _(" --add-stdcall-alias Export symbols with and without @nn\n"));
215 fprintf (file, _(" --disable-stdcall-fixup Don't link _sym to _sym@nn\n"));
216 fprintf (file, _(" --enable-stdcall-fixup Link _sym to _sym@nn without warnings\n"));
217 fprintf (file, _(" --exclude-symbols sym,sym,... Exclude symbols from automatic export\n"));
218 fprintf (file, _(" --export-all-symbols Automatically export all globals to DLL\n"));
219 fprintf (file, _(" --kill-at Remove @nn from exported symbols\n"));
220 fprintf (file, _(" --out-implib <file> Generate import library\n"));
221 fprintf (file, _(" --output-def <file> Generate a .DEF file for the built DLL\n"));
226 set_pe_name (name, val)
231 /* Find the name and set it. */
232 for (i = 0; init[i].ptr; i++)
234 if (strcmp (name, init[i].symbol) == 0)
259 { "native", 1, "_NtProcessStartup" },
260 { "windows", 2, "_WinMainCRTStartup" },
261 { "console", 3, "_mainCRTStartup" },
263 /* The Microsoft linker does not recognize this. */
266 { "posix", 7, "___PosixProcessStartup"},
270 sver = strchr (optarg, ':');
272 len = strlen (optarg);
278 set_pe_name ("__major_subsystem_version__",
279 strtoul (sver + 1, &end, 0));
281 set_pe_name ("__minor_subsystem_version__",
282 strtoul (end + 1, &end, 0));
284 einfo (_("%P: warning: bad version number in -subsystem option\n"));
287 for (i = 0; v[i].name; i++)
289 if (strncmp (optarg, v[i].name, len) == 0
290 && v[i].name[len] == '\0')
292 set_pe_name ("__subsystem__", v[i].value);
294 lang_add_entry (v[i].entry, 1);
300 einfo (_("%P%F: invalid subsystem type %s\n"), optarg);
312 set_pe_name (name, strtoul (optarg, &end, 0));
315 einfo (_("%P%F: invalid hex number for PE parameter '%s'\n"), optarg);
321 set_pe_stack_heap (resname, comname)
325 set_pe_value (resname);
330 set_pe_value (comname);
333 einfo (_("%P%F: strange hex info for PE parameter '%s'\n"), optarg);
339 gld_${EMULATION_NAME}_parse_args(argc, argv)
345 int prevoptind = optind;
346 int prevopterr = opterr;
348 static int lastoptind = -1;
350 if (lastoptind != optind)
356 optc = getopt_long_only (argc, argv, "-", longopts, &longind);
367 case OPTION_BASE_FILE:
368 link_info.base_file = (PTR) fopen (optarg, FOPEN_WB);
369 if (link_info.base_file == NULL)
371 /* xgettext:c-format */
372 fprintf (stderr, _("%s: Can't open base file %s\n"),
373 program_name, optarg);
380 set_pe_stack_heap ("__size_of_heap_reserve__", "__size_of_heap_commit__");
383 set_pe_stack_heap ("__size_of_stack_reserve__", "__size_of_stack_commit__");
385 case OPTION_SUBSYSTEM:
388 case OPTION_MAJOR_OS_VERSION:
389 set_pe_value ("__major_os_version__");
391 case OPTION_MINOR_OS_VERSION:
392 set_pe_value ("__minor_os_version__");
394 case OPTION_MAJOR_SUBSYSTEM_VERSION:
395 set_pe_value ("__major_subsystem_version__");
397 case OPTION_MINOR_SUBSYSTEM_VERSION:
398 set_pe_value ("__minor_subsystem_version__");
400 case OPTION_MAJOR_IMAGE_VERSION:
401 set_pe_value ("__major_image_version__");
403 case OPTION_MINOR_IMAGE_VERSION:
404 set_pe_value ("__minor_image_version__");
406 case OPTION_FILE_ALIGNMENT:
407 set_pe_value ("__file_alignment__");
409 case OPTION_SECTION_ALIGNMENT:
410 set_pe_value ("__section_alignment__");
413 set_pe_name ("__dll__", 1);
415 case OPTION_IMAGE_BASE:
416 set_pe_value ("__image_base__");
418 case OPTION_SUPPORT_OLD_CODE:
419 support_old_code = 1;
423 pe_out_def_filename = xstrdup (optarg);
425 case OPTION_EXPORT_ALL:
426 pe_dll_export_everything = 1;
428 case OPTION_EXCLUDE_SYMBOLS:
429 pe_dll_add_excludes (optarg);
431 case OPTION_KILL_ATS:
434 case OPTION_STDCALL_ALIASES:
435 pe_dll_stdcall_aliases = 1;
437 case OPTION_ENABLE_STDCALL_FIXUP:
438 pe_enable_stdcall_fixup = 1;
440 case OPTION_DISABLE_STDCALL_FIXUP:
441 pe_enable_stdcall_fixup = 0;
443 case OPTION_IMPLIB_FILENAME:
444 pe_implib_filename = xstrdup (optarg);
451 /* Assign values to the special symbols before the linker script is
455 gld_${EMULATION_NAME}_set_symbols ()
457 /* Run through and invent symbols for all the
458 names and insert the defaults. */
460 lang_statement_list_type *save;
462 if (!init[IMAGEBASEOFF].inited)
464 if (link_info.relocateable)
465 init[IMAGEBASEOFF].value = 0;
466 else if (init[DLLOFF].value || link_info.shared)
467 init[IMAGEBASEOFF].value = NT_DLL_IMAGE_BASE;
469 init[IMAGEBASEOFF].value = NT_EXE_IMAGE_BASE;
472 /* Don't do any symbol assignments if this is a relocateable link. */
473 if (link_info.relocateable)
476 /* Glue the assignments into the abs section */
479 stat_ptr = &(abs_output_section->children);
481 for (j = 0; init[j].ptr; j++)
483 long val = init[j].value;
484 lang_assignment_statement_type *rv;
485 rv = lang_add_assignment (exp_assop ('=' ,init[j].symbol, exp_intop (val)));
486 if (init[j].size == sizeof(short))
487 *(short *)init[j].ptr = val;
488 else if (init[j].size == sizeof(int))
489 *(int *)init[j].ptr = val;
490 else if (init[j].size == sizeof(long))
491 *(long *)init[j].ptr = val;
492 /* This might be a long long or other special type. */
493 else if (init[j].size == sizeof(bfd_vma))
494 *(bfd_vma *)init[j].ptr = val;
496 if (j == IMAGEBASEOFF)
497 image_base_statement = rv;
499 /* Restore the pointer. */
502 if (pe.FileAlignment >
505 einfo (_("%P: warning, file alignment > section alignment.\n"));
509 /* This is called after the linker script and the command line options
513 gld_${EMULATION_NAME}_after_parse ()
515 /* The Windows libraries are designed for the linker to treat the
516 entry point as an undefined symbol. Otherwise, the .obj that
517 defines mainCRTStartup is brought in because it is the first
518 encountered in libc.lib and it has other symbols in it which will
519 be pulled in by the link process. To avoid this, we act as
520 though the user specified -u with the entry point symbol.
522 This function is called after the linker script and command line
523 options have been read, so at this point we know the right entry
524 point. This function is called before the input files are
525 opened, so registering the symbol as undefined will make a
529 ldlang_add_undef (entry_symbol);
532 static struct bfd_link_hash_entry *pe_undef_found_sym;
535 pe_undef_cdecl_match (h, string)
536 struct bfd_link_hash_entry *h;
539 int sl = strlen (string);
540 if (h->type == bfd_link_hash_defined
541 && strncmp (h->root.string, string, sl) == 0
542 && h->root.string[sl] == '@')
544 pe_undef_found_sym = h;
553 static int gave_warning_message = 0;
554 struct bfd_link_hash_entry *undef, *sym;
556 for (undef = link_info.hash->undefs; undef; undef=undef->next)
557 if (undef->type == bfd_link_hash_undefined)
559 at = strchr (undef->root.string, '@');
562 /* The symbol is a stdcall symbol, so let's look for a cdecl
563 symbol with the same name and resolve to that */
564 char *cname = xstrdup (undef->root.string);
565 at = strchr (cname, '@');
567 sym = bfd_link_hash_lookup (link_info.hash, cname, 0, 0, 1);
568 if (sym && sym->type == bfd_link_hash_defined)
570 undef->type = bfd_link_hash_defined;
571 undef->u.def.value = sym->u.def.value;
572 undef->u.def.section = sym->u.def.section;
573 if (pe_enable_stdcall_fixup == -1)
575 einfo (_("Warning: resolving %s by linking to %s\n"),
576 undef->root.string, cname);
577 if (! gave_warning_message)
579 gave_warning_message = 1;
580 einfo(_("Use --enable-stdcall-fixup to disable these warnings\n"));
581 einfo(_("Use --disable-stdcall-fixup to disable these fixups\n"));
588 /* The symbol is a cdecl symbol, so we look for stdcall
589 symbols - which means scanning the whole symbol table */
590 pe_undef_found_sym = 0;
591 bfd_link_hash_traverse (link_info.hash, pe_undef_cdecl_match,
592 (PTR) undef->root.string);
593 sym = pe_undef_found_sym;
596 undef->type = bfd_link_hash_defined;
597 undef->u.def.value = sym->u.def.value;
598 undef->u.def.section = sym->u.def.section;
599 if (pe_enable_stdcall_fixup == -1)
601 einfo (_("Warning: resolving %s by linking to %s\n"),
602 undef->root.string, sym->root.string);
603 if (! gave_warning_message)
605 gave_warning_message = 1;
606 einfo(_("Use --enable-stdcall-fixup to disable these warnings\n"));
607 einfo(_("Use --disable-stdcall-fixup to disable these fixups\n"));
616 gld_${EMULATION_NAME}_after_open ()
618 /* Pass the wacky PE command line options into the output bfd.
619 FIXME: This should be done via a function, rather than by
620 including an internal BFD header. */
622 if (!coff_data (output_bfd)->pe)
623 einfo (_("%F%P: PE operations on non PE file.\n"));
625 pe_data (output_bfd)->pe_opthdr = pe;
626 pe_data (output_bfd)->dll = init[DLLOFF].value;
629 if (pe_enable_stdcall_fixup) /* -1=warn or 1=disable */
630 pe_fixup_stdcalls ();
632 pe_process_import_defs(output_bfd, &link_info);
633 if (link_info.shared)
634 pe_dll_build_sections (output_bfd, &link_info);
637 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe)
639 /* Find a BFD that can hold the interworking stubs. */
640 LANG_FOR_EACH_INPUT_STATEMENT (is)
642 if (bfd_arm_get_bfd_for_interworking (is->the_bfd, & link_info))
649 static int sequence = 0;
651 bfd *cur_arch = 0, *elt;
652 lang_input_statement_type *is2;
653 /* Careful - this is a shell script. Watch those dollar signs! */
654 /* Microsoft import libraries have every member named the same,
655 and not in the right order for us to link them correctly. We
656 must detect these and rename the members so that they'll link
657 correctly. There are three types of objects: the head, the
658 thunks, and the sentinel(s). The head is easy; it's the one
659 with idata2. We assume that the sentinels won't have relocs,
660 and the thunks will. It's easier than checking the symbol
661 table for external references. */
662 LANG_FOR_EACH_INPUT_STATEMENT (is)
664 if (is->the_bfd->my_archive)
666 bfd *arch = is->the_bfd->my_archive;
667 if (cur_arch != arch)
672 is2 && is2->the_bfd->my_archive == arch;
673 is2 = (lang_input_statement_type *)is2->next)
675 if (strcmp (is->the_bfd->filename, is2->the_bfd->filename))
682 int idata2 = 0, i, reloc_count=0;
685 for (sec = is->the_bfd->sections; sec; sec = sec->next)
687 if (strcmp (sec->name, ".idata\$2") == 0)
689 reloc_count += sec->reloc_count;
692 if (idata2) /* .idata2 is the TOC */
694 else if (reloc_count > 0) /* thunks */
699 new_name = bfd_alloc (is->the_bfd,
700 strlen (is->the_bfd->filename)+2);
701 sprintf (new_name, "%s.%c", is->the_bfd->filename, seq);
702 is->the_bfd->filename = new_name;
704 new_name = bfd_alloc(is->the_bfd, strlen(is->filename)+2);
705 sprintf (new_name, "%s.%c", is->filename, seq);
706 is->filename = new_name;
714 gld_${EMULATION_NAME}_before_allocation()
716 #ifdef TARGET_IS_ppcpe
717 /* Here we rummage through the found bfds to collect toc information */
719 LANG_FOR_EACH_INPUT_STATEMENT (is)
721 if (!ppc_process_before_allocation (is->the_bfd, &link_info))
723 /* xgettext:c-format */
724 einfo (_("Errors encountered processing file %s\n"), is->filename);
729 /* We have seen it all. Allocate it, and carry on */
730 ppc_allocate_toc_section (&link_info);
731 #endif /* TARGET_IS_ppcpe */
733 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe)
734 /* FIXME: we should be able to set the size of the interworking stub
737 Here we rummage through the found bfds to collect glue
738 information. FIXME: should this be based on a command line
739 option? krk@cygnus.com */
741 LANG_FOR_EACH_INPUT_STATEMENT (is)
743 if (! bfd_arm_process_before_allocation
744 (is->the_bfd, & link_info, support_old_code))
746 /* xgettext:c-format */
747 einfo (_("Errors encountered processing file %s for interworking"),
753 /* We have seen it all. Allocate it, and carry on */
754 bfd_arm_allocate_interworking_sections (& link_info);
755 #endif /* TARGET_IS_armpe */
759 /* This is called when an input file isn't recognized as a BFD. We
760 check here for .DEF files and pull them in automatically. */
763 saw_option(char *option)
766 for (i=0; init[i].ptr; i++)
767 if (strcmp (init[i].symbol, option) == 0)
768 return init[i].inited;
773 gld_${EMULATION_NAME}_unrecognized_file(entry)
774 lang_input_statement_type *entry;
777 const char *ext = entry->filename + strlen (entry->filename) - 4;
779 if (strcmp (ext, ".def") == 0 || strcmp (ext, ".DEF") == 0)
781 if (pe_def_file == 0)
782 pe_def_file = def_file_empty ();
783 def_file_parse (entry->filename, pe_def_file);
786 int i, buflen=0, len;
788 for (i=0; i<pe_def_file->num_exports; i++)
790 len = strlen(pe_def_file->exports[i].internal_name);
794 buf = (char *) xmalloc (buflen);
795 for (i=0; i<pe_def_file->num_exports; i++)
797 struct bfd_link_hash_entry *h;
798 sprintf(buf, "_%s", pe_def_file->exports[i].internal_name);
800 h = bfd_link_hash_lookup (link_info.hash, buf, true, true, true);
801 if (h == (struct bfd_link_hash_entry *) NULL)
802 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
803 if (h->type == bfd_link_hash_new)
805 h->type = bfd_link_hash_undefined;
806 h->u.undef.abfd = NULL;
807 bfd_link_add_undef (link_info.hash, h);
812 /* def_file_print (stdout, pe_def_file); */
813 if (pe_def_file->is_dll == 1)
814 link_info.shared = 1;
816 if (pe_def_file->base_address != (bfd_vma)(-1))
819 pe_data (output_bfd)->pe_opthdr.ImageBase =
820 init[IMAGEBASEOFF].value = pe_def_file->base_address;
821 init[IMAGEBASEOFF].inited = 1;
822 if (image_base_statement)
823 image_base_statement->exp =
824 exp_assop ('=', "__image_base__", exp_intop (pe.ImageBase));
828 /* Not sure if these *should* be set */
829 if (pe_def_file->version_major != -1)
831 pe.MajorImageVersion = pe_def_file->version_major;
832 pe.MinorImageVersion = pe_def_file->version_minor;
835 if (pe_def_file->stack_reserve != -1
836 && ! saw_option ("__size_of_stack_reserve__"))
838 pe.SizeOfStackReserve = pe_def_file->stack_reserve;
839 if (pe_def_file->stack_commit != -1)
840 pe.SizeOfStackCommit = pe_def_file->stack_commit;
842 if (pe_def_file->heap_reserve != -1
843 && ! saw_option ("__size_of_heap_reserve__"))
845 pe.SizeOfHeapReserve = pe_def_file->heap_reserve;
846 if (pe_def_file->heap_commit != -1)
847 pe.SizeOfHeapCommit = pe_def_file->heap_commit;
858 gld_${EMULATION_NAME}_recognized_file(entry)
859 lang_input_statement_type *entry;
862 #ifdef TARGET_IS_i386pe
863 pe_dll_id_target ("pei-i386");
865 if (bfd_get_format (entry->the_bfd) == bfd_object)
867 const char *ext = entry->filename + strlen (entry->filename) - 4;
868 if (strcmp (ext, ".dll") == 0 || strcmp (ext, ".DLL") == 0)
869 return pe_implied_import_dll (entry->filename);
876 gld_${EMULATION_NAME}_finish ()
879 if (link_info.shared)
881 pe_dll_fill_sections (output_bfd, &link_info);
882 if (pe_implib_filename)
883 pe_dll_generate_implib (pe_def_file, pe_implib_filename);
885 if (pe_out_def_filename)
886 pe_dll_generate_def_file (pe_out_def_filename);
891 /* Place an orphan section.
893 We use this to put sections in a reasonable place in the file, and
894 to ensure that they are aligned as required.
896 We handle grouped sections here as well. A section named .foo$nn
897 goes into the output section .foo. All grouped sections are sorted
900 Grouped sections for the default sections are handled by the
901 default linker script using wildcards, and are sorted by
904 static asection *hold_section;
905 static char *hold_section_name;
906 static lang_output_section_statement_type *hold_use;
907 static lang_output_section_statement_type *hold_text;
908 static lang_output_section_statement_type *hold_rdata;
909 static lang_output_section_statement_type *hold_data;
910 static lang_output_section_statement_type *hold_bss;
912 /* Place an orphan section. We use this to put random SHF_ALLOC
913 sections in the right segment. */
917 gld_${EMULATION_NAME}_place_orphan (file, s)
918 lang_input_statement_type *file;
924 if ((s->flags & SEC_ALLOC) == 0)
927 secname = bfd_get_section_name (s->owner, s);
929 /* Look through the script to see where to place this section. */
933 hold_section_name = xstrdup (secname);
934 dollar = strchr (hold_section_name, '$');
939 lang_for_each_statement (gld${EMULATION_NAME}_place_section);
941 if (hold_use == NULL)
943 lang_output_section_statement_type *place;
945 asection *snew, **pps;
946 lang_statement_list_type *old;
947 lang_statement_list_type add;
950 /* Try to put the new output section in a reasonable place based
951 on the section name and section flags. */
953 if ((s->flags & SEC_HAS_CONTENTS) == 0
956 else if ((s->flags & SEC_READONLY) == 0
957 && hold_data != NULL)
959 else if ((s->flags & SEC_CODE) == 0
960 && (s->flags & SEC_READONLY) != 0
961 && hold_rdata != NULL)
963 else if ((s->flags & SEC_READONLY) != 0
964 && hold_text != NULL)
967 /* Choose a unique name for the section. This will be needed if
968 the same section name appears in the input file with
969 different loadable or allocateable characteristics. */
970 outsecname = xstrdup (hold_section_name);
971 if (bfd_get_section_by_name (output_bfd, outsecname) != NULL)
977 len = strlen (outsecname);
978 newname = xmalloc (len + 5);
979 strcpy (newname, outsecname);
983 sprintf (newname + len, "%d", i);
986 while (bfd_get_section_by_name (output_bfd, newname) != NULL);
989 outsecname = newname;
992 /* We don't want to free OUTSECNAME, as it may get attached to
993 the output section statement. */
995 /* Create the section in the output file, and put it in the
996 right place. This shuffling is to make the output file look
998 snew = bfd_make_section (output_bfd, outsecname);
1000 einfo ("%P%F: output format %s cannot represent section called %s\n",
1001 output_bfd->xvec->name, outsecname);
1002 if (place != NULL && place->bfd_section != NULL)
1004 for (pps = &output_bfd->sections; *pps != snew; pps = &(*pps)->next)
1007 snew->next = place->bfd_section->next;
1008 place->bfd_section->next = snew;
1011 /* Start building a list of statements for this section. */
1014 lang_list_init (stat_ptr);
1016 if (link_info.relocateable)
1020 /* All sections in an executable must be aligned to a page
1022 address = exp_unop (ALIGN_K,
1023 exp_nameop (NAME, "__section_alignment__"));
1026 lang_enter_output_section_statement (outsecname, address, 0,
1028 (etree_type *) NULL,
1029 (etree_type *) NULL,
1030 (etree_type *) NULL);
1032 hold_use = lang_output_section_statement_lookup (outsecname);
1034 lang_leave_output_section_statement
1035 ((bfd_vma) 0, "*default*",
1036 (struct lang_output_section_phdr_list *) NULL);
1038 /* Now stick the new statement list right after PLACE. */
1041 *add.tail = place->header.next;
1042 place->header.next = add.head;
1049 wild_doit (&hold_use->children, s, hold_use, file);
1052 lang_statement_union_type **pl;
1053 boolean found_dollar;
1054 lang_statement_list_type list;
1056 /* The section name has a '$'. Sort it with the other '$'
1059 found_dollar = false;
1060 for (pl = &hold_use->children.head; *pl != NULL; pl = &(*pl)->next)
1062 lang_input_section_type *ls;
1065 if ((*pl)->header.type != lang_input_section_enum)
1068 ls = &(*pl)->input_section;
1070 lname = bfd_get_section_name (ls->ifile->the_bfd, ls->section);
1071 if (strchr (lname, '$') == NULL)
1078 found_dollar = true;
1079 if (strcmp (secname, lname) < 0)
1084 lang_list_init (&list);
1085 wild_doit (&list, s, hold_use, file);
1086 if (list.head != NULL)
1088 ASSERT (list.head->next == NULL);
1089 list.head->next = *pl;
1094 free (hold_section_name);
1100 gld${EMULATION_NAME}_place_section (s)
1101 lang_statement_union_type *s;
1103 lang_output_section_statement_type *os;
1105 if (s->header.type != lang_output_section_statement_enum)
1108 os = &s->output_section_statement;
1110 if (strcmp (os->name, hold_section_name) == 0
1111 && os->bfd_section != NULL
1112 && ((hold_section->flags & (SEC_LOAD | SEC_ALLOC))
1113 == (os->bfd_section->flags & (SEC_LOAD | SEC_ALLOC))))
1116 if (strcmp (os->name, ".text") == 0)
1118 else if (strcmp (os->name, ".rdata") == 0)
1120 else if (strcmp (os->name, ".data") == 0)
1122 else if (strcmp (os->name, ".bss") == 0)
1127 gld_${EMULATION_NAME}_get_script(isfile)
1130 # Scripts compiled in.
1131 # sed commands to quote an ld script as a C string.
1132 sc="-f ${srcdir}/emultempl/stringify.sed"
1134 cat >>e${EMULATION_NAME}.c <<EOF
1138 if (link_info.relocateable == true && config.build_constructors == true)
1141 sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
1142 echo ' ; else if (link_info.relocateable == true) return' >> e${EMULATION_NAME}.c
1143 sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
1144 echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
1145 sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
1146 echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
1147 sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
1148 echo ' ; else return' >> e${EMULATION_NAME}.c
1149 sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
1150 echo '; }' >> e${EMULATION_NAME}.c
1152 cat >>e${EMULATION_NAME}.c <<EOF
1155 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
1157 gld_${EMULATION_NAME}_before_parse,
1160 gld_${EMULATION_NAME}_after_parse,
1161 gld_${EMULATION_NAME}_after_open,
1162 after_allocation_default,
1163 set_output_arch_default,
1164 ldemul_default_target,
1165 gld_${EMULATION_NAME}_before_allocation,
1166 gld_${EMULATION_NAME}_get_script,
1167 "${EMULATION_NAME}",
1169 gld_${EMULATION_NAME}_finish, /* finish */
1170 NULL, /* create output section statements */
1171 NULL, /* open dynamic archive */
1172 gld_${EMULATION_NAME}_place_orphan,
1173 gld_${EMULATION_NAME}_set_symbols,
1174 gld_${EMULATION_NAME}_parse_args,
1175 gld_${EMULATION_NAME}_unrecognized_file,
1176 gld_${EMULATION_NAME}_list_options,
1177 gld_${EMULATION_NAME}_recognized_file