Correct spelling of "relocatable".
[deliverable/binutils-gdb.git] / ld / emultempl / armcoff.em
CommitLineData
252b5132
RH
1# This shell script emits a C file. -*- C -*-
2# It does some substitutions.
3cat >e${EMULATION_NAME}.c <<EOF
4/* This file is is generated by a shell script. DO NOT EDIT! */
5
6/* emulate the original gld for the given ${EMULATION_NAME}
3bcf5557 7 Copyright 1991, 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
b71e2778 8 Free Software Foundation, Inc.
252b5132
RH
9 Written by Steve Chamberlain steve@cygnus.com
10
11This file is part of GLD, the Gnu Linker.
12
13This program is free software; you can redistribute it and/or modify
14it under the terms of the GNU General Public License as published by
15the Free Software Foundation; either version 2 of the License, or
16(at your option) any later version.
17
18This program is distributed in the hope that it will be useful,
19but WITHOUT ANY WARRANTY; without even the implied warranty of
20MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21GNU General Public License for more details.
22
23You should have received a copy of the GNU General Public License
24along with this program; if not, write to the Free Software
25Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
26
27#define TARGET_IS_${EMULATION_NAME}
28
29#include "bfd.h"
30#include "sysdep.h"
31#include "bfdlink.h"
32#include "getopt.h"
33
34#include "ld.h"
35#include "ldmain.h"
252b5132
RH
36#include "ldmisc.h"
37
38#include "ldexp.h"
39#include "ldlang.h"
b71e2778
AM
40#include "ldfile.h"
41#include "ldemul.h"
252b5132
RH
42
43static void gld${EMULATION_NAME}_before_parse PARAMS ((void));
44static void gld${EMULATION_NAME}_before_allocation PARAMS ((void));
45static char *gld${EMULATION_NAME}_get_script PARAMS ((int *isfile));
3bcf5557
AM
46static void gld${EMULATION_NAME}_add_options
47 PARAMS ((int, char **, int, struct option **, int, struct option **));
229cf42b 48static void gld${EMULATION_NAME}_list_options PARAMS ((FILE *));
3bcf5557 49static bfd_boolean gld${EMULATION_NAME}_handle_option PARAMS ((int));
1ac6a752 50static void gld${EMULATION_NAME}_finish PARAMS ((void));
48f6162b 51static void gld${EMULATION_NAME}_after_open PARAMS ((void));
252b5132 52
b34976b6 53/* If TRUE, then interworking stubs which support calls to old, non-interworking
252b5132
RH
54 aware ARM code should be generated. */
55
56static int support_old_code = 0;
6f798e5c 57static char * thumb_entry_symbol = NULL;
252b5132
RH
58
59#define OPTION_SUPPORT_OLD_CODE 300
6f798e5c 60#define OPTION_THUMB_ENTRY 301
252b5132 61
3bcf5557
AM
62static void
63gld${EMULATION_NAME}_add_options (ns, shortopts, nl, longopts, nrl, really_longopts)
64 int ns ATTRIBUTE_UNUSED;
65 char **shortopts ATTRIBUTE_UNUSED;
66 int nl;
67 struct option **longopts;
68 int nrl ATTRIBUTE_UNUSED;
69 struct option **really_longopts ATTRIBUTE_UNUSED;
252b5132 70{
3bcf5557
AM
71 static const struct option xtra_long[] = {
72 {"support-old-code", no_argument, NULL, OPTION_SUPPORT_OLD_CODE},
73 {"thumb-entry", required_argument, NULL, OPTION_THUMB_ENTRY},
74 {NULL, no_argument, NULL, 0}
75 };
76
77 *longopts = (struct option *)
78 xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long));
79 memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long));
80}
252b5132
RH
81
82static void
83gld${EMULATION_NAME}_list_options (file)
84 FILE * file;
85{
86 fprintf (file, _(" --support-old-code Support interworking with old code\n"));
6f798e5c 87 fprintf (file, _(" --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"));
252b5132
RH
88}
89
3bcf5557
AM
90static bfd_boolean
91gld${EMULATION_NAME}_handle_option (optc)
92 int optc;
252b5132 93{
252b5132
RH
94 switch (optc)
95 {
96 default:
3bcf5557 97 return FALSE;
252b5132
RH
98
99 case OPTION_SUPPORT_OLD_CODE:
100 support_old_code = 1;
101 break;
6f798e5c
NC
102
103 case OPTION_THUMB_ENTRY:
104 thumb_entry_symbol = optarg;
105 break;
252b5132
RH
106 }
107
3bcf5557 108 return TRUE;
252b5132
RH
109}
110\f
111static void
112gld${EMULATION_NAME}_before_parse ()
113{
114#ifndef TARGET_ /* I.e., if not generic. */
115 ldfile_set_output_arch ("`echo ${ARCH}`");
116#endif /* not TARGET_ */
117}
118
119/* This is called after the sections have been attached to output
120 sections, but before any sizes or addresses have been set. */
121
122static void
123gld${EMULATION_NAME}_before_allocation ()
124{
125 /* we should be able to set the size of the interworking stub section */
126
127 /* Here we rummage through the found bfds to collect glue information */
128 /* FIXME: should this be based on a command line option? krk@cygnus.com */
129 {
130 LANG_FOR_EACH_INPUT_STATEMENT (is)
131 {
132 if (! bfd_arm_process_before_allocation
133 (is->the_bfd, & link_info, support_old_code))
134 {
135 /* xgettext:c-format */
136 einfo (_("Errors encountered processing file %s"), is->filename);
137 }
138 }
139 }
140
141 /* We have seen it all. Allocate it, and carry on */
142 bfd_arm_allocate_interworking_sections (& link_info);
143}
144
145static void
146gld${EMULATION_NAME}_after_open ()
147{
f11523b0 148 if (strstr (bfd_get_target (output_bfd), "arm") == NULL)
252b5132 149 {
f11523b0
NC
150 /* The arm backend needs special fields in the output hash structure.
151 These will only be created if the output format is an arm format,
152 hence we do not support linking and changing output formats at the
153 same time. Use a link followed by objcopy to change output formats. */
154 einfo ("%F%X%P: error: cannot change output format whilst linking ARM binaries\n");
155 return;
252b5132 156 }
f11523b0
NC
157
158 {
159 LANG_FOR_EACH_INPUT_STATEMENT (is)
160 {
161 if (bfd_arm_get_bfd_for_interworking (is->the_bfd, & link_info))
162 break;
163 }
164 }
252b5132
RH
165}
166
6f798e5c
NC
167static void
168gld${EMULATION_NAME}_finish PARAMS((void))
169{
170 struct bfd_link_hash_entry * h;
171
172 if (thumb_entry_symbol == NULL)
173 return;
174
b34976b6
AM
175 h = bfd_link_hash_lookup (link_info.hash, thumb_entry_symbol,
176 FALSE, FALSE, TRUE);
6f798e5c
NC
177
178 if (h != (struct bfd_link_hash_entry *) NULL
179 && (h->type == bfd_link_hash_defined
180 || h->type == bfd_link_hash_defweak)
181 && h->u.def.section->output_section != NULL)
182 {
183 static char buffer[32];
184 bfd_vma val;
185
186 /* Special procesing is required for a Thumb entry symbol. The
187 bottom bit of its address must be set. */
188 val = (h->u.def.value
189 + bfd_get_section_vma (output_bfd,
190 h->u.def.section->output_section)
191 + h->u.def.section->output_offset);
192
193 val |= 1;
194
195 /* Now convert this value into a string and store it in entry_symbol
196 where the lang_finish() function will pick it up. */
197 buffer[0] = '0';
198 buffer[1] = 'x';
199
200 sprintf_vma (buffer + 2, val);
201
e3e942e9 202 if (entry_symbol.name != NULL && entry_from_cmdline)
6f798e5c 203 einfo (_("%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"),
e3e942e9
AM
204 thumb_entry_symbol, entry_symbol.name);
205 entry_symbol.name = buffer;
6f798e5c
NC
206 }
207 else
208 einfo (_("%P: warning: connot find thumb start symbol %s\n"), thumb_entry_symbol);
209}
210
252b5132
RH
211static char *
212gld${EMULATION_NAME}_get_script (isfile)
213 int *isfile;
214EOF
215
216if test -n "$COMPILE_IN"
217then
218# Scripts compiled in.
219
220# sed commands to quote an ld script as a C string.
597e2591 221sc="-f stringify.sed"
252b5132
RH
222
223cat >>e${EMULATION_NAME}.c <<EOF
224{
225 *isfile = 0;
226
1049f94e 227 if (link_info.relocatable && config.build_constructors)
252b5132
RH
228 return
229EOF
b34976b6 230sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
1049f94e 231echo ' ; else if (link_info.relocatable) return' >> e${EMULATION_NAME}.c
b34976b6
AM
232sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
233echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
234sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
235echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
236sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
237echo ' ; else return' >> e${EMULATION_NAME}.c
238sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
239echo '; }' >> e${EMULATION_NAME}.c
252b5132
RH
240
241else
242# Scripts read from the filesystem.
243
244cat >>e${EMULATION_NAME}.c <<EOF
245{
246 *isfile = 1;
247
1049f94e 248 if (link_info.relocatable && config.build_constructors)
252b5132 249 return "ldscripts/${EMULATION_NAME}.xu";
1049f94e 250 else if (link_info.relocatable)
252b5132
RH
251 return "ldscripts/${EMULATION_NAME}.xr";
252 else if (!config.text_read_only)
253 return "ldscripts/${EMULATION_NAME}.xbn";
254 else if (!config.magic_demand_paged)
255 return "ldscripts/${EMULATION_NAME}.xn";
256 else
257 return "ldscripts/${EMULATION_NAME}.x";
258}
259EOF
260
261fi
262
263cat >>e${EMULATION_NAME}.c <<EOF
264
265struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
266{
267 gld${EMULATION_NAME}_before_parse,
268 syslib_default,
269 hll_default,
270 after_parse_default,
271 gld${EMULATION_NAME}_after_open,
272 after_allocation_default,
273 set_output_arch_default,
274 ldemul_default_target,
275 gld${EMULATION_NAME}_before_allocation,
276 gld${EMULATION_NAME}_get_script,
277 "${EMULATION_NAME}",
278 "${OUTPUT_FORMAT}",
e1c47aa4
AM
279 gld${EMULATION_NAME}_finish,
280 NULL, /* create output section statements */
281 NULL, /* open dynamic archive */
282 NULL, /* place orphan */
283 NULL, /* set symbols */
3bcf5557
AM
284 NULL, /* parse_args */
285 gld${EMULATION_NAME}_add_options,
286 gld${EMULATION_NAME}_handle_option,
e1c47aa4
AM
287 NULL, /* unrecognised file */
288 gld${EMULATION_NAME}_list_options,
40d109bf 289 NULL, /* recognized file */
fac1652d
AM
290 NULL, /* find_potential_libraries */
291 NULL /* new_vers_pattern */
252b5132
RH
292};
293EOF
This page took 0.208282 seconds and 4 git commands to generate.