2000-09-29 Kazu Hirata <kazu@hxi.com>
[deliverable/binutils-gdb.git] / ld / ldemul.c
CommitLineData
252b5132 1/* ldemul.c -- clearing house for ld emulation states
b71e2778 2 Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
87f2a346 3 Free Software Foundation, Inc.
252b5132
RH
4
5This file is part of GLD, the Gnu Linker.
6
7GLD is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GLD is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
4de2d33d
KH
18along with GLD; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
252b5132
RH
21
22#include "bfd.h"
23#include "sysdep.h"
24
25#include "ld.h"
252b5132
RH
26#include "ldmisc.h"
27#include "ldexp.h"
28#include "ldlang.h"
29#include "ldfile.h"
b71e2778 30#include "ldemul.h"
252b5132
RH
31#include "ldmain.h"
32#include "ldemul-list.h"
33
34ld_emulation_xfer_type *ld_emulation;
35
36void
4de2d33d 37ldemul_hll (name)
252b5132
RH
38 char *name;
39{
4de2d33d 40 ld_emulation->hll (name);
252b5132
RH
41}
42
4de2d33d
KH
43void
44ldemul_syslib (name)
252b5132
RH
45 char *name;
46{
4de2d33d 47 ld_emulation->syslib (name);
252b5132
RH
48}
49
50void
4de2d33d 51ldemul_after_parse ()
252b5132 52{
4de2d33d 53 ld_emulation->after_parse ();
252b5132
RH
54}
55
56void
4de2d33d 57ldemul_before_parse ()
252b5132 58{
4de2d33d 59 ld_emulation->before_parse ();
252b5132
RH
60}
61
62void
63ldemul_after_open ()
64{
65 ld_emulation->after_open ();
66}
67
4de2d33d
KH
68void
69ldemul_after_allocation ()
252b5132 70{
4de2d33d 71 ld_emulation->after_allocation ();
252b5132
RH
72}
73
4de2d33d
KH
74void
75ldemul_before_allocation ()
252b5132
RH
76{
77 if (ld_emulation->before_allocation)
4de2d33d 78 ld_emulation->before_allocation ();
252b5132
RH
79}
80
252b5132 81void
4de2d33d 82ldemul_set_output_arch ()
252b5132 83{
4de2d33d 84 ld_emulation->set_output_arch ();
252b5132
RH
85}
86
87void
4de2d33d 88ldemul_finish ()
252b5132
RH
89{
90 if (ld_emulation->finish)
4de2d33d 91 ld_emulation->finish ();
252b5132
RH
92}
93
94void
4de2d33d 95ldemul_set_symbols ()
252b5132
RH
96{
97 if (ld_emulation->set_symbols)
4de2d33d 98 ld_emulation->set_symbols ();
252b5132
RH
99}
100
101void
4de2d33d 102ldemul_create_output_section_statements ()
252b5132
RH
103{
104 if (ld_emulation->create_output_section_statements)
4de2d33d 105 ld_emulation->create_output_section_statements ();
252b5132
RH
106}
107
108char *
4de2d33d 109ldemul_get_script (isfile)
252b5132
RH
110 int *isfile;
111{
4de2d33d 112 return ld_emulation->get_script (isfile);
252b5132
RH
113}
114
115boolean
116ldemul_open_dynamic_archive (arch, search, entry)
117 const char *arch;
118 search_dirs_type *search;
119 lang_input_statement_type *entry;
120{
121 if (ld_emulation->open_dynamic_archive)
122 return (*ld_emulation->open_dynamic_archive) (arch, search, entry);
123 return false;
124}
125
126boolean
127ldemul_place_orphan (file, s)
128 lang_input_statement_type *file;
129 asection *s;
130{
131 if (ld_emulation->place_orphan)
132 return (*ld_emulation->place_orphan) (file, s);
133 return false;
134}
135
136int
137ldemul_parse_args (argc, argv)
138 int argc;
139 char **argv;
140{
4de2d33d 141 /* Try and use the emulation parser if there is one. */
252b5132
RH
142 if (ld_emulation->parse_args)
143 {
144 return ld_emulation->parse_args (argc, argv);
145 }
146 return 0;
147}
148
149/* Let the emulation code handle an unrecognized file. */
150
151boolean
152ldemul_unrecognized_file (entry)
153 lang_input_statement_type *entry;
154{
155 if (ld_emulation->unrecognized_file)
156 return (*ld_emulation->unrecognized_file) (entry);
157 return false;
158}
159
160/* Let the emulation code handle a recognized file. */
161
162boolean
163ldemul_recognized_file (entry)
164 lang_input_statement_type *entry;
165{
166 if (ld_emulation->recognized_file)
167 return (*ld_emulation->recognized_file) (entry);
168 return false;
169}
170
171char *
4de2d33d 172ldemul_choose_target ()
252b5132 173{
4de2d33d 174 return ld_emulation->choose_target ();
252b5132
RH
175}
176
177/* The default choose_target function. */
178
179char *
4de2d33d 180ldemul_default_target ()
252b5132
RH
181{
182 char *from_outside = getenv (TARGET_ENVIRON);
4de2d33d 183 if (from_outside != (char *) NULL)
252b5132
RH
184 return from_outside;
185 return ld_emulation->target_name;
186}
187
4de2d33d
KH
188void
189after_parse_default ()
252b5132
RH
190{
191
192}
193
194void
195after_open_default ()
196{
197}
198
199void
4de2d33d 200after_allocation_default ()
252b5132
RH
201{
202
203}
204
205void
4de2d33d 206before_allocation_default ()
252b5132
RH
207{
208
209}
210
211void
4de2d33d 212set_output_arch_default ()
252b5132 213{
4de2d33d
KH
214 /* Set the output architecture and machine if possible. */
215 bfd_set_arch_mach (output_bfd,
216 ldfile_output_architecture, ldfile_output_machine);
252b5132
RH
217}
218
252b5132 219void
4de2d33d
KH
220syslib_default (ignore)
221 char *ignore ATTRIBUTE_UNUSED;
252b5132
RH
222{
223 info_msg (_("%S SYSLIB ignored\n"));
224}
225
252b5132 226void
4de2d33d
KH
227hll_default (ignore)
228 char *ignore ATTRIBUTE_UNUSED;
252b5132
RH
229{
230 info_msg (_("%S HLL ignored\n"));
231}
232
233ld_emulation_xfer_type *ld_emulations[] = { EMULATION_LIST };
234
235void
4de2d33d 236ldemul_choose_mode (target)
252b5132
RH
237 char *target;
238{
4de2d33d
KH
239 ld_emulation_xfer_type **eptr = ld_emulations;
240 /* Ignore "gld" prefix. */
241 if (target[0] == 'g' && target[1] == 'l' && target[2] == 'd')
242 target += 3;
243 for (; *eptr; eptr++)
244 {
245 if (strcmp (target, (*eptr)->emulation_name) == 0)
246 {
247 ld_emulation = *eptr;
248 return;
249 }
250 }
251 einfo (_("%P: unrecognised emulation mode: %s\n"), target);
252 einfo (_("Supported emulations: "));
253 ldemul_list_emulations (stderr);
254 einfo ("%F\n");
252b5132
RH
255}
256
257void
258ldemul_list_emulations (f)
259 FILE *f;
260{
261 ld_emulation_xfer_type **eptr = ld_emulations;
262 boolean first = true;
263
264 for (; *eptr; eptr++)
265 {
266 if (first)
267 first = false;
268 else
269 fprintf (f, " ");
270 fprintf (f, "%s", (*eptr)->emulation_name);
271 }
272}
273
274void
275ldemul_list_emulation_options (f)
4de2d33d 276 FILE *f;
252b5132 277{
4de2d33d 278 ld_emulation_xfer_type **eptr;
252b5132 279 int options_found = 0;
4de2d33d
KH
280
281 for (eptr = ld_emulations; *eptr; eptr++)
252b5132 282 {
4de2d33d
KH
283 ld_emulation_xfer_type *emul = *eptr;
284
252b5132
RH
285 if (emul->list_options)
286 {
287 fprintf (f, "%s: \n", emul->emulation_name);
4de2d33d 288
252b5132
RH
289 emul->list_options (f);
290
291 options_found = 1;
292 }
293 }
4de2d33d 294
252b5132
RH
295 if (! options_found)
296 fprintf (f, _(" no emulation specific options.\n"));
297}
344a211f
NC
298
299int
300ldemul_find_potential_libraries (name, entry)
4de2d33d
KH
301 char *name;
302 lang_input_statement_type *entry;
344a211f
NC
303{
304 if (ld_emulation->find_potential_libraries)
305 return ld_emulation->find_potential_libraries (name, entry);
306
307 return 0;
308}
This page took 0.09011 seconds and 4 git commands to generate.