]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* ldemul.c -- clearing house for ld emulation states |
aef6203b | 2 | Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
8423293d | 3 | 2001, 2002, 2003, 2005 |
87f2a346 | 4 | Free Software Foundation, Inc. |
252b5132 RH |
5 | |
6 | This file is part of GLD, the Gnu Linker. | |
7 | ||
8 | GLD 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, or (at your option) | |
11 | any later version. | |
12 | ||
13 | GLD 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. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
4de2d33d | 19 | along with GLD; see the file COPYING. If not, write to the Free |
75be928b NC |
20 | Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA |
21 | 02110-1301, USA. */ | |
252b5132 | 22 | |
34875e64 | 23 | #include "config.h" |
252b5132 RH |
24 | #include "bfd.h" |
25 | #include "sysdep.h" | |
fcf65871 | 26 | #include "getopt.h" |
8423293d | 27 | #include "bfdlink.h" |
252b5132 RH |
28 | |
29 | #include "ld.h" | |
252b5132 RH |
30 | #include "ldmisc.h" |
31 | #include "ldexp.h" | |
32 | #include "ldlang.h" | |
33 | #include "ldfile.h" | |
b71e2778 | 34 | #include "ldemul.h" |
252b5132 RH |
35 | #include "ldmain.h" |
36 | #include "ldemul-list.h" | |
37 | ||
279e75dc | 38 | static ld_emulation_xfer_type *ld_emulation; |
252b5132 RH |
39 | |
40 | void | |
62b635b6 | 41 | ldemul_hll (char *name) |
252b5132 | 42 | { |
4de2d33d | 43 | ld_emulation->hll (name); |
252b5132 RH |
44 | } |
45 | ||
4de2d33d | 46 | void |
62b635b6 | 47 | ldemul_syslib (char *name) |
252b5132 | 48 | { |
4de2d33d | 49 | ld_emulation->syslib (name); |
252b5132 RH |
50 | } |
51 | ||
52 | void | |
62b635b6 | 53 | ldemul_after_parse (void) |
252b5132 | 54 | { |
4de2d33d | 55 | ld_emulation->after_parse (); |
252b5132 RH |
56 | } |
57 | ||
58 | void | |
62b635b6 | 59 | ldemul_before_parse (void) |
252b5132 | 60 | { |
4de2d33d | 61 | ld_emulation->before_parse (); |
252b5132 RH |
62 | } |
63 | ||
64 | void | |
62b635b6 | 65 | ldemul_after_open (void) |
252b5132 RH |
66 | { |
67 | ld_emulation->after_open (); | |
68 | } | |
69 | ||
4de2d33d | 70 | void |
62b635b6 | 71 | ldemul_after_allocation (void) |
252b5132 | 72 | { |
4de2d33d | 73 | ld_emulation->after_allocation (); |
252b5132 RH |
74 | } |
75 | ||
4de2d33d | 76 | void |
62b635b6 | 77 | ldemul_before_allocation (void) |
252b5132 | 78 | { |
8423293d | 79 | ld_emulation->before_allocation (); |
252b5132 RH |
80 | } |
81 | ||
252b5132 | 82 | void |
62b635b6 | 83 | ldemul_set_output_arch (void) |
252b5132 | 84 | { |
4de2d33d | 85 | ld_emulation->set_output_arch (); |
252b5132 RH |
86 | } |
87 | ||
88 | void | |
62b635b6 | 89 | ldemul_finish (void) |
252b5132 | 90 | { |
1e035701 | 91 | ld_emulation->finish (); |
252b5132 RH |
92 | } |
93 | ||
94 | void | |
62b635b6 | 95 | ldemul_set_symbols (void) |
252b5132 RH |
96 | { |
97 | if (ld_emulation->set_symbols) | |
4de2d33d | 98 | ld_emulation->set_symbols (); |
252b5132 RH |
99 | } |
100 | ||
101 | void | |
62b635b6 | 102 | ldemul_create_output_section_statements (void) |
252b5132 RH |
103 | { |
104 | if (ld_emulation->create_output_section_statements) | |
4de2d33d | 105 | ld_emulation->create_output_section_statements (); |
252b5132 RH |
106 | } |
107 | ||
108 | char * | |
62b635b6 | 109 | ldemul_get_script (int *isfile) |
252b5132 | 110 | { |
4de2d33d | 111 | return ld_emulation->get_script (isfile); |
252b5132 RH |
112 | } |
113 | ||
b34976b6 | 114 | bfd_boolean |
62b635b6 KH |
115 | ldemul_open_dynamic_archive (const char *arch, search_dirs_type *search, |
116 | lang_input_statement_type *entry) | |
252b5132 RH |
117 | { |
118 | if (ld_emulation->open_dynamic_archive) | |
119 | return (*ld_emulation->open_dynamic_archive) (arch, search, entry); | |
b34976b6 | 120 | return FALSE; |
252b5132 RH |
121 | } |
122 | ||
b34976b6 | 123 | bfd_boolean |
7b986e99 | 124 | ldemul_place_orphan (asection *s) |
252b5132 RH |
125 | { |
126 | if (ld_emulation->place_orphan) | |
7b986e99 | 127 | return (*ld_emulation->place_orphan) (s); |
b34976b6 | 128 | return FALSE; |
252b5132 RH |
129 | } |
130 | ||
3bcf5557 | 131 | void |
62b635b6 KH |
132 | ldemul_add_options (int ns, char **shortopts, int nl, |
133 | struct option **longopts, int nrl, | |
134 | struct option **really_longopts) | |
3bcf5557 AM |
135 | { |
136 | if (ld_emulation->add_options) | |
137 | (*ld_emulation->add_options) (ns, shortopts, nl, longopts, | |
138 | nrl, really_longopts); | |
139 | } | |
140 | ||
141 | bfd_boolean | |
62b635b6 | 142 | ldemul_handle_option (int optc) |
3bcf5557 AM |
143 | { |
144 | if (ld_emulation->handle_option) | |
145 | return (*ld_emulation->handle_option) (optc); | |
146 | return FALSE; | |
147 | } | |
148 | ||
149 | bfd_boolean | |
62b635b6 | 150 | ldemul_parse_args (int argc, char **argv) |
252b5132 | 151 | { |
4de2d33d | 152 | /* Try and use the emulation parser if there is one. */ |
252b5132 | 153 | if (ld_emulation->parse_args) |
3bcf5557 | 154 | return (*ld_emulation->parse_args) (argc, argv); |
3aa97c58 | 155 | return FALSE; |
252b5132 RH |
156 | } |
157 | ||
158 | /* Let the emulation code handle an unrecognized file. */ | |
159 | ||
b34976b6 | 160 | bfd_boolean |
62b635b6 | 161 | ldemul_unrecognized_file (lang_input_statement_type *entry) |
252b5132 RH |
162 | { |
163 | if (ld_emulation->unrecognized_file) | |
164 | return (*ld_emulation->unrecognized_file) (entry); | |
b34976b6 | 165 | return FALSE; |
252b5132 RH |
166 | } |
167 | ||
168 | /* Let the emulation code handle a recognized file. */ | |
169 | ||
b34976b6 | 170 | bfd_boolean |
62b635b6 | 171 | ldemul_recognized_file (lang_input_statement_type *entry) |
252b5132 RH |
172 | { |
173 | if (ld_emulation->recognized_file) | |
174 | return (*ld_emulation->recognized_file) (entry); | |
b34976b6 | 175 | return FALSE; |
252b5132 RH |
176 | } |
177 | ||
178 | char * | |
62b635b6 | 179 | ldemul_choose_target (int argc, char **argv) |
252b5132 | 180 | { |
742aeb63 | 181 | return ld_emulation->choose_target (argc, argv); |
252b5132 RH |
182 | } |
183 | ||
742aeb63 | 184 | |
252b5132 RH |
185 | /* The default choose_target function. */ |
186 | ||
187 | char * | |
62b635b6 | 188 | ldemul_default_target (int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) |
252b5132 RH |
189 | { |
190 | char *from_outside = getenv (TARGET_ENVIRON); | |
4de2d33d | 191 | if (from_outside != (char *) NULL) |
252b5132 RH |
192 | return from_outside; |
193 | return ld_emulation->target_name; | |
194 | } | |
195 | ||
4de2d33d | 196 | void |
62b635b6 | 197 | after_parse_default (void) |
252b5132 | 198 | { |
252b5132 RH |
199 | } |
200 | ||
201 | void | |
62b635b6 | 202 | after_open_default (void) |
252b5132 RH |
203 | { |
204 | } | |
205 | ||
206 | void | |
62b635b6 | 207 | after_allocation_default (void) |
252b5132 | 208 | { |
252b5132 RH |
209 | } |
210 | ||
211 | void | |
62b635b6 | 212 | before_allocation_default (void) |
252b5132 | 213 | { |
8423293d AM |
214 | if (!link_info.relocatable) |
215 | strip_excluded_output_sections (); | |
252b5132 RH |
216 | } |
217 | ||
5e797c2c | 218 | void |
1e035701 AM |
219 | finish_default (void) |
220 | { | |
221 | if (!link_info.relocatable) | |
222 | _bfd_fix_excluded_sec_syms (output_bfd, &link_info); | |
223 | } | |
224 | ||
225 | void | |
62b635b6 | 226 | set_output_arch_default (void) |
252b5132 | 227 | { |
4de2d33d KH |
228 | /* Set the output architecture and machine if possible. */ |
229 | bfd_set_arch_mach (output_bfd, | |
230 | ldfile_output_architecture, ldfile_output_machine); | |
252b5132 RH |
231 | } |
232 | ||
252b5132 | 233 | void |
62b635b6 | 234 | syslib_default (char *ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
235 | { |
236 | info_msg (_("%S SYSLIB ignored\n")); | |
237 | } | |
238 | ||
252b5132 | 239 | void |
62b635b6 | 240 | hll_default (char *ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
241 | { |
242 | info_msg (_("%S HLL ignored\n")); | |
243 | } | |
244 | ||
245 | ld_emulation_xfer_type *ld_emulations[] = { EMULATION_LIST }; | |
246 | ||
247 | void | |
62b635b6 | 248 | ldemul_choose_mode (char *target) |
252b5132 | 249 | { |
4de2d33d KH |
250 | ld_emulation_xfer_type **eptr = ld_emulations; |
251 | /* Ignore "gld" prefix. */ | |
252 | if (target[0] == 'g' && target[1] == 'l' && target[2] == 'd') | |
253 | target += 3; | |
254 | for (; *eptr; eptr++) | |
255 | { | |
256 | if (strcmp (target, (*eptr)->emulation_name) == 0) | |
257 | { | |
258 | ld_emulation = *eptr; | |
259 | return; | |
260 | } | |
261 | } | |
262 | einfo (_("%P: unrecognised emulation mode: %s\n"), target); | |
263 | einfo (_("Supported emulations: ")); | |
264 | ldemul_list_emulations (stderr); | |
265 | einfo ("%F\n"); | |
252b5132 RH |
266 | } |
267 | ||
268 | void | |
62b635b6 | 269 | ldemul_list_emulations (FILE *f) |
252b5132 RH |
270 | { |
271 | ld_emulation_xfer_type **eptr = ld_emulations; | |
b34976b6 | 272 | bfd_boolean first = TRUE; |
252b5132 RH |
273 | |
274 | for (; *eptr; eptr++) | |
275 | { | |
276 | if (first) | |
b34976b6 | 277 | first = FALSE; |
252b5132 RH |
278 | else |
279 | fprintf (f, " "); | |
280 | fprintf (f, "%s", (*eptr)->emulation_name); | |
281 | } | |
282 | } | |
283 | ||
284 | void | |
62b635b6 | 285 | ldemul_list_emulation_options (FILE *f) |
252b5132 | 286 | { |
4de2d33d | 287 | ld_emulation_xfer_type **eptr; |
252b5132 | 288 | int options_found = 0; |
4de2d33d KH |
289 | |
290 | for (eptr = ld_emulations; *eptr; eptr++) | |
252b5132 | 291 | { |
4de2d33d KH |
292 | ld_emulation_xfer_type *emul = *eptr; |
293 | ||
252b5132 RH |
294 | if (emul->list_options) |
295 | { | |
296 | fprintf (f, "%s: \n", emul->emulation_name); | |
4de2d33d | 297 | |
252b5132 RH |
298 | emul->list_options (f); |
299 | ||
300 | options_found = 1; | |
301 | } | |
302 | } | |
4de2d33d | 303 | |
252b5132 RH |
304 | if (! options_found) |
305 | fprintf (f, _(" no emulation specific options.\n")); | |
306 | } | |
344a211f NC |
307 | |
308 | int | |
62b635b6 | 309 | ldemul_find_potential_libraries (char *name, lang_input_statement_type *entry) |
344a211f NC |
310 | { |
311 | if (ld_emulation->find_potential_libraries) | |
312 | return ld_emulation->find_potential_libraries (name, entry); | |
313 | ||
314 | return 0; | |
315 | } | |
fac1652d AM |
316 | |
317 | struct bfd_elf_version_expr * | |
62b635b6 | 318 | ldemul_new_vers_pattern (struct bfd_elf_version_expr *entry) |
fac1652d AM |
319 | { |
320 | if (ld_emulation->new_vers_pattern) | |
321 | entry = (*ld_emulation->new_vers_pattern) (entry); | |
322 | return entry; | |
323 | } |