Sync bootstrap-lto.mk and dfp.m4 with gcc.
[binutils.git] / ld / emultempl / m68kcoff.em
blob276c3b258aa0d6bf429d585fcaae900faf9c2753
1 # This shell script emits a C file. -*- C -*-
2 # It does some substitutions.
3 fragment <<EOF
4 /* This file is is generated by a shell script.  DO NOT EDIT! */
6 /* Handle embedded relocs for m68k.
7    Copyright 2000, 2002, 2003, 2004, 2005, 2007, 2008
8    Free Software Foundation, Inc.
9    Written by Michael Sokolov <msokolov@ivan.Harhan.ORG>, based on generic.em
10    by Steve Chamberlain <steve@cygnus.com>, embedded relocs code based on
11    mipsecoff.em by Ian Lance Taylor <ian@cygnus.com>.
13    This file is part of the GNU Binutils.
15    This program is free software; you can redistribute it and/or modify
16    it under the terms of the GNU General Public License as published by
17    the Free Software Foundation; either version 3 of the License, or
18    (at your option) any later version.
20    This program is distributed in the hope that it will be useful,
21    but WITHOUT ANY WARRANTY; without even the implied warranty of
22    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23    GNU General Public License for more details.
25    You should have received a copy of the GNU General Public License
26    along with this program; if not, write to the Free Software
27    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
28    MA 02110-1301, USA.  */
30 #define TARGET_IS_${EMULATION_NAME}
32 #include "sysdep.h"
33 #include "bfd.h"
34 #include "bfdlink.h"
36 #include "ld.h"
37 #include "ldmain.h"
38 #include "ldexp.h"
39 #include "ldlang.h"
40 #include "ldfile.h"
41 #include "ldemul.h"
42 #include "ldmisc.h"
44 static void check_sections (bfd *, asection *, void *);
46 static void
47 gld${EMULATION_NAME}_before_parse (void)
49 #ifndef TARGET_                 /* I.e., if not generic.  */
50   ldfile_set_output_arch ("`echo ${ARCH}`", bfd_arch_unknown);
51 #endif /* not TARGET_ */
54 /* This function is run after all the input files have been opened.
55    We create a .emreloc section for each input file with a non zero
56    .data section.  The BFD backend will fill in these sections with
57    magic numbers which can be used to relocate the data section at run
58    time.  */
60 static void
61 gld${EMULATION_NAME}_after_open (void)
63   bfd *abfd;
65   if (! command_line.embedded_relocs
66       || link_info.relocatable)
67     return;
69   for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link_next)
70     {
71       asection *datasec;
73       /* As first-order business, make sure that each input BFD is COFF. It
74          better be, as we are directly calling a COFF backend function.  */
75       if (bfd_get_flavour (abfd) != bfd_target_coff_flavour)
76         einfo ("%F%B: all input objects must be COFF for --embedded-relocs\n");
78       datasec = bfd_get_section_by_name (abfd, ".data");
80       /* Note that we assume that the reloc_count field has already
81          been set up.  We could call bfd_get_reloc_upper_bound, but
82          that returns the size of a memory buffer rather than a reloc
83          count.  We do not want to call bfd_canonicalize_reloc,
84          because although it would always work it would force us to
85          read in the relocs into BFD canonical form, which would waste
86          a significant amount of time and memory.  */
87       if (datasec != NULL && datasec->reloc_count > 0)
88         {
89           asection *relsec;
91           relsec = bfd_make_section_with_flags (abfd, ".emreloc",
92                                                 (SEC_ALLOC
93                                                  | SEC_LOAD
94                                                  | SEC_HAS_CONTENTS
95                                                  | SEC_IN_MEMORY));
96           if (relsec == NULL
97               || ! bfd_set_section_alignment (abfd, relsec, 2)
98               || ! bfd_set_section_size (abfd, relsec,
99                                          datasec->reloc_count * 12))
100             einfo ("%F%B: can not create .emreloc section: %E\n");
101         }
103       /* Double check that all other data sections are empty, as is
104          required for embedded PIC code.  */
105       bfd_map_over_sections (abfd, check_sections, datasec);
106     }
109 /* Check that of the data sections, only the .data section has
110    relocs.  This is called via bfd_map_over_sections.  */
112 static void
113 check_sections (bfd *abfd, asection *sec, void *datasec)
115   if ((bfd_get_section_flags (abfd, sec) & SEC_DATA)
116       && sec != datasec
117       && sec->reloc_count != 0)
118     einfo ("%B%X: section %s has relocs; can not use --embedded-relocs\n",
119            abfd, bfd_get_section_name (abfd, sec));
122 /* This function is called after the section sizes and offsets have
123    been set.  If we are generating embedded relocs, it calls a special
124    BFD backend routine to do the work.  */
126 static void
127 gld${EMULATION_NAME}_after_allocation (void)
129   bfd *abfd;
131   if (! command_line.embedded_relocs
132       || link_info.relocatable)
133     return;
135   for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link_next)
136     {
137       asection *datasec, *relsec;
138       char *errmsg;
140       datasec = bfd_get_section_by_name (abfd, ".data");
142       if (datasec == NULL || datasec->reloc_count == 0)
143         continue;
145       relsec = bfd_get_section_by_name (abfd, ".emreloc");
146       ASSERT (relsec != NULL);
148       if (! bfd_m68k_coff_create_embedded_relocs (abfd, &link_info,
149                                                    datasec, relsec,
150                                                    &errmsg))
151         {
152           if (errmsg == NULL)
153             einfo ("%B%X: can not create runtime reloc information: %E\n",
154                    abfd);
155           else
156             einfo ("%X%B: can not create runtime reloc information: %s\n",
157                    abfd, errmsg);
158         }
159     }
162 static char *
163 gld${EMULATION_NAME}_get_script (int *isfile)
166 if test -n "$COMPILE_IN"
167 then
168 # Scripts compiled in.
170 # sed commands to quote an ld script as a C string.
171 sc="-f stringify.sed"
173 fragment <<EOF
175   *isfile = 0;
177   if (link_info.relocatable && config.build_constructors)
178     return
180 sed $sc ldscripts/${EMULATION_NAME}.xu                 >> e${EMULATION_NAME}.c
181 echo '  ; else if (link_info.relocatable) return'     >> e${EMULATION_NAME}.c
182 sed $sc ldscripts/${EMULATION_NAME}.xr                 >> e${EMULATION_NAME}.c
183 echo '  ; else if (!config.text_read_only) return'     >> e${EMULATION_NAME}.c
184 sed $sc ldscripts/${EMULATION_NAME}.xbn                >> e${EMULATION_NAME}.c
185 echo '  ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
186 sed $sc ldscripts/${EMULATION_NAME}.xn                 >> e${EMULATION_NAME}.c
187 echo '  ; else return'                                 >> e${EMULATION_NAME}.c
188 sed $sc ldscripts/${EMULATION_NAME}.x                  >> e${EMULATION_NAME}.c
189 echo '; }'                                             >> e${EMULATION_NAME}.c
191 else
192 # Scripts read from the filesystem.
194 fragment <<EOF
196   *isfile = 1;
198   if (link_info.relocatable && config.build_constructors)
199     return "ldscripts/${EMULATION_NAME}.xu";
200   else if (link_info.relocatable)
201     return "ldscripts/${EMULATION_NAME}.xr";
202   else if (!config.text_read_only)
203     return "ldscripts/${EMULATION_NAME}.xbn";
204   else if (!config.magic_demand_paged)
205     return "ldscripts/${EMULATION_NAME}.xn";
206   else
207     return "ldscripts/${EMULATION_NAME}.x";
213 fragment <<EOF
215 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
217   gld${EMULATION_NAME}_before_parse,
218   syslib_default,
219   hll_default,
220   after_parse_default,
221   gld${EMULATION_NAME}_after_open,
222   gld${EMULATION_NAME}_after_allocation,
223   set_output_arch_default,
224   ldemul_default_target,
225   before_allocation_default,
226   gld${EMULATION_NAME}_get_script,
227   "${EMULATION_NAME}",
228   "${OUTPUT_FORMAT}",
229   finish_default,
230   NULL, /* create output section statements */
231   NULL, /* open dynamic archive */
232   NULL, /* place orphan */
233   NULL, /* set symbols */
234   NULL, /* parse args */
235   NULL, /* add_options */
236   NULL, /* handle_option */
237   NULL, /* unrecognized file */
238   NULL, /* list options */
239   NULL, /* recognized file */
240   NULL, /* find_potential_libraries */
241   NULL  /* new_vers_pattern */