2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
[deliverable/binutils-gdb.git] / ld / emultempl / lnk960.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/* intel coff loader emulation specific stuff
4e5bae56 5 Copyright 1991, 1992, 1994, 1995, 1996, 1999, 2000, 2001, 2002
b71e2778 6 Free Software Foundation, Inc.
252b5132
RH
7 Written by Steve Chamberlain steve@cygnus.com
8
9This file is part of GLD, the Gnu Linker.
10
11GLD is free software; you can redistribute it and/or modify
12it under the terms of the GNU General Public License as published by
13the Free Software Foundation; either version 2, or (at your option)
14any later version.
15
16GLD is distributed in the hope that it will be useful,
17but WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19GNU General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with GLD; see the file COPYING. If not, write to
23the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24
25#include "libiberty.h"
26#include "bfd.h"
27#include "sysdep.h"
28#include "bfdlink.h"
29
30/*#include "archures.h"*/
31#include "ld.h"
b71e2778 32#include "ldmain.h"
252b5132
RH
33#include "ldmisc.h"
34#include "ldexp.h"
35#include "ldlang.h"
36#include "ldfile.h"
b71e2778 37#include "ldemul.h"
252b5132
RH
38
39typedef struct lib_list {
40 char *name;
41 struct lib_list *next;
42} lib_list_type;
43
44static lib_list_type *hll_list;
45static lib_list_type **hll_list_tail = &hll_list;
46
47static lib_list_type *syslib_list;
48static lib_list_type **syslib_list_tail = &syslib_list;
49
48f6162b
AJ
50static void append PARAMS ((lib_list_type ***, char *));
51static void lnk960_hll PARAMS ((char *));
52static void lnk960_syslib PARAMS ((char *));
53static void lnk960_before_parse PARAMS ((void));
54static void add_on PARAMS ((lib_list_type *, lang_input_file_enum_type));
55static void lnk960_after_parse PARAMS ((void));
56static void lnk960_before_allocation PARAMS ((void));
57static void lnk960_after_allocation PARAMS ((void));
58static void lnk960_set_output_arch PARAMS ((void));
4e5bae56 59static char *lnk960_choose_target PARAMS ((int, char **));
48f6162b
AJ
60static char *lnk960_get_script PARAMS ((int *));
61
252b5132
RH
62
63static void
64append(list, name)
65 lib_list_type ***list;
66 char *name;
67{
68 lib_list_type *element =
69 (lib_list_type *)(xmalloc(sizeof(lib_list_type)));
70
71 element->name = name;
72 element->next = (lib_list_type *)NULL;
73 **list = element;
74 *list = &element->next;
75
76}
77
78static boolean had_hll = false;
79static boolean had_hll_name = false;
80
81static void
82lnk960_hll(name)
83 char *name;
84{
85 had_hll = true;
86 if (name != (char *)NULL) {
87 had_hll_name = true;
88 append(&hll_list_tail, name);
89 }
90}
91
92static void
93lnk960_syslib(name)
94 char *name;
95{
96 append(&syslib_list_tail,name);
97}
98
99
100#ifdef GNU960
101
102static void
103lnk960_before_parse()
104{
105 static char *env_variables[] = { "G960LIB", "G960BASE", 0 };
106 char **p;
107 char *env ;
108
109 for ( p = env_variables; *p; p++ ){
110 env = (char *) getenv(*p);
111 if (env) {
112 ldfile_add_library_path(concat(env,"/lib/libcoff",""), false);
113 }
114 }
115
116 env= (char *) getenv("I960BASE");
117 if ( env ) {
118 ldfile_add_library_path(concat(env,"/lib",""), false);
119 }
120
121 ldfile_output_architecture = bfd_arch_i960;
122 ldfile_output_machine = bfd_mach_i960_core;
123}
124
125#else /* not GNU960 */
126
127static void
128lnk960_before_parse()
129{
130 char *name = getenv("I960BASE");
131
132 if (name == (char *)NULL) {
133 name = getenv("G960BASE");
134 if (name == (char *)NULL) {
135 einfo("%P%F I960BASE and G960BASE not set\n");
136 }
137 }
138
139
140 ldfile_add_library_path(concat(name,"/lib",""), false);
141 ldfile_output_architecture = bfd_arch_i960;
142 ldfile_output_machine = bfd_mach_i960_core;
143}
144
145#endif /* GNU960 */
146
147
148static void
149add_on(list, search)
150 lib_list_type *list;
151 lang_input_file_enum_type search;
152{
153 while (list) {
154 lang_add_input_file(list->name,
155 search,
156 (char *)NULL);
157 list = list->next;
158 }
159}
160static void
161lnk960_after_parse()
162{
163 /* If there has been no arch, default to -KB */
164 if (ldfile_output_machine_name[0] ==0) {
165 ldfile_add_arch("KB");
166 }
167
168 /* if there has been no hll list then add our own */
169
170 if(had_hll && !had_hll_name) {
171 append(&hll_list_tail,"cg");
172 if (ldfile_output_machine == bfd_mach_i960_ka_sa ||
173 ldfile_output_machine == bfd_mach_i960_ca) {
174 {
175 append(&hll_list_tail,"fpg");
176 }
177 }
178 }
179
180 add_on(hll_list, lang_input_file_is_l_enum);
181 add_on(syslib_list, lang_input_file_is_search_file_enum);
182}
183
184static void
185lnk960_before_allocation()
186{
187}
188
189static void
190lnk960_after_allocation()
191{
192 if (link_info.relocateable == false) {
193 lang_abs_symbol_at_end_of(".text","_etext");
194 lang_abs_symbol_at_end_of(".data","_edata");
195 lang_abs_symbol_at_beginning_of(".bss","_bss_start");
196 lang_abs_symbol_at_end_of(".bss","_end");
197 }
198}
199
200
201static struct
202 {
203 unsigned long number;
204 char *name;
205 }
206machine_table[] =
207{
208 { bfd_mach_i960_core ,"CORE" },
209 { bfd_mach_i960_kb_sb ,"KB" },
210 { bfd_mach_i960_kb_sb ,"SB" },
211 { bfd_mach_i960_mc ,"MC" },
212 { bfd_mach_i960_xa ,"XA" },
213 { bfd_mach_i960_ca ,"CA" },
214 { bfd_mach_i960_ka_sa ,"KA" },
215 { bfd_mach_i960_ka_sa ,"SA" },
216 { bfd_mach_i960_jx ,"JX" },
217 { bfd_mach_i960_hx ,"HX" },
218
219 { bfd_mach_i960_core ,"core" },
220 { bfd_mach_i960_kb_sb ,"kb" },
221 { bfd_mach_i960_kb_sb ,"sb" },
222 { bfd_mach_i960_mc ,"mc" },
223 { bfd_mach_i960_xa ,"xa" },
224 { bfd_mach_i960_ca ,"ca" },
225 { bfd_mach_i960_ka_sa ,"ka" },
226 { bfd_mach_i960_ka_sa ,"sa" },
227 { bfd_mach_i960_jx ,"jx" },
228 { bfd_mach_i960_hx ,"hx" },
229
230 { 0, (char *) NULL }
231};
232
233static void
234lnk960_set_output_arch()
235{
236 /* Set the output architecture and machine if possible */
237 unsigned int i;
238 ldfile_output_machine = bfd_mach_i960_core;
239 for (i= 0; machine_table[i].name != (char*)NULL; i++) {
240 if (strcmp(ldfile_output_machine_name,machine_table[i].name)==0) {
241 ldfile_output_machine = machine_table[i].number;
242 break;
243 }
244 }
245 bfd_set_arch_mach(output_bfd, ldfile_output_architecture, ldfile_output_machine);
246}
247
248static char *
4e5bae56
DJ
249lnk960_choose_target (argc, argv)
250 int argc ATTRIBUTE_UNUSED;
251 char **argv ATTRIBUTE_UNUSED;
252b5132
RH
252{
253#ifdef GNU960
254
255 return bfd_make_targ_name(BFD_COFF_FORMAT, 0);
256
257#else
258
259 char *from_outside = getenv(TARGET_ENVIRON);
260 if (from_outside != (char *)NULL)
261 return from_outside;
262#ifdef LNK960_LITTLE
263 return "coff-Intel-little";
264#else
265 return "coff-Intel-big";
266#endif
267#endif
268
269}
270
271static char *
272lnk960_get_script(isfile)
273 int *isfile;
274EOF
275
276if test -n "$COMPILE_IN"
277then
278# Scripts compiled in.
279
280# sed commands to quote an ld script as a C string.
597e2591 281sc="-f stringify.sed"
252b5132
RH
282
283cat >>e${EMULATION_NAME}.c <<EOF
597e2591 284{
252b5132
RH
285 *isfile = 0;
286
287 if (link_info.relocateable == true && config.build_constructors == true)
597e2591 288 return
252b5132 289EOF
597e2591
ILT
290sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
291echo ' ; else if (link_info.relocateable == true) return' >> e${EMULATION_NAME}.c
292sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
293echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
294sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
295echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
296sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
297echo ' ; else return' >> e${EMULATION_NAME}.c
298sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
299echo '; }' >> e${EMULATION_NAME}.c
252b5132
RH
300
301else
302# Scripts read from the filesystem.
303
304cat >>e${EMULATION_NAME}.c <<EOF
305{
306 *isfile = 1;
307
308 if (link_info.relocateable == true && config.build_constructors == true)
309 return "ldscripts/${EMULATION_NAME}.xu";
310 else if (link_info.relocateable == true)
311 return "ldscripts/${EMULATION_NAME}.xr";
312 else if (!config.text_read_only)
313 return "ldscripts/${EMULATION_NAME}.xbn";
314 else if (!config.magic_demand_paged)
315 return "ldscripts/${EMULATION_NAME}.xn";
316 else
317 return "ldscripts/${EMULATION_NAME}.x";
318}
319EOF
320
321fi
322
323cat >>e${EMULATION_NAME}.c <<EOF
324
325struct ld_emulation_xfer_struct ld_lnk960_emulation =
326{
327 lnk960_before_parse,
328 lnk960_syslib,
329 lnk960_hll,
330 lnk960_after_parse,
331 NULL, /* after_open */
332 lnk960_after_allocation,
333 lnk960_set_output_arch,
334 lnk960_choose_target,
335 lnk960_before_allocation,
336 lnk960_get_script,
337 "lnk960",
e1c47aa4
AM
338 "",
339 NULL, /* finish */
340 NULL, /* create output section statements */
341 NULL, /* open dynamic archive */
342 NULL, /* place orphan */
343 NULL, /* set symbols */
344 NULL, /* parse args */
345 NULL, /* unrecognized file */
346 NULL, /* list options */
40d109bf 347 NULL, /* recognized file */
fac1652d
AM
348 NULL, /* find_potential_libraries */
349 NULL /* new_vers_pattern */
252b5132
RH
350};
351EOF
This page took 0.152626 seconds and 4 git commands to generate.