Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* Linker command language support. |
6f2750fe | 2 | Copyright (C) 1991-2016 Free Software Foundation, Inc. |
252b5132 | 3 | |
f96b4a7b | 4 | This file is part of the GNU Binutils. |
252b5132 | 5 | |
f96b4a7b | 6 | This program is free software; you can redistribute it and/or modify |
53b2a62f | 7 | it under the terms of the GNU General Public License as published by |
f96b4a7b NC |
8 | the Free Software Foundation; either version 3 of the License, or |
9 | (at your option) any later version. | |
252b5132 | 10 | |
f96b4a7b | 11 | This program is distributed in the hope that it will be useful, |
53b2a62f NC |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
252b5132 | 15 | |
53b2a62f | 16 | You should have received a copy of the GNU General Public License |
f96b4a7b NC |
17 | along with this program; if not, write to the Free Software |
18 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
19 | MA 02110-1301, USA. */ | |
252b5132 | 20 | |
252b5132 | 21 | #include "sysdep.h" |
3db64b00 | 22 | #include "bfd.h" |
252b5132 | 23 | #include "libiberty.h" |
42627821 | 24 | #include "filenames.h" |
3882b010 | 25 | #include "safe-ctype.h" |
252b5132 RH |
26 | #include "obstack.h" |
27 | #include "bfdlink.h" | |
28 | ||
29 | #include "ld.h" | |
30 | #include "ldmain.h" | |
252b5132 RH |
31 | #include "ldexp.h" |
32 | #include "ldlang.h" | |
df2a7313 | 33 | #include <ldgram.h> |
252b5132 RH |
34 | #include "ldlex.h" |
35 | #include "ldmisc.h" | |
36 | #include "ldctor.h" | |
37 | #include "ldfile.h" | |
b71e2778 | 38 | #include "ldemul.h" |
252b5132 RH |
39 | #include "fnmatch.h" |
40 | #include "demangle.h" | |
108ba305 | 41 | #include "hashtab.h" |
0fef4b98 | 42 | #include "elf-bfd.h" |
5d3236ee DK |
43 | #ifdef ENABLE_PLUGINS |
44 | #include "plugin.h" | |
45 | #endif /* ENABLE_PLUGINS */ | |
252b5132 | 46 | |
7abb6dea | 47 | #ifndef offsetof |
cf888e70 | 48 | #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER)) |
7abb6dea AM |
49 | #endif |
50 | ||
fc90c280 AM |
51 | /* Convert between addresses in bytes and sizes in octets. |
52 | For currently supported targets, octets_per_byte is always a power | |
53 | of two, so we can use shifts. */ | |
54 | #define TO_ADDR(X) ((X) >> opb_shift) | |
55 | #define TO_SIZE(X) ((X) << opb_shift) | |
56 | ||
57 | /* Local variables. */ | |
252b5132 | 58 | static struct obstack stat_obstack; |
35835446 | 59 | static struct obstack map_obstack; |
252b5132 RH |
60 | |
61 | #define obstack_chunk_alloc xmalloc | |
62 | #define obstack_chunk_free free | |
8be573a7 | 63 | static const char *entry_symbol_default = "start"; |
b34976b6 | 64 | static bfd_boolean placed_commons = FALSE; |
18cd5bce | 65 | static bfd_boolean map_head_is_link_order = FALSE; |
252b5132 | 66 | static lang_output_section_statement_type *default_common_section; |
b34976b6 | 67 | static bfd_boolean map_option_f; |
252b5132 RH |
68 | static bfd_vma print_dot; |
69 | static lang_input_statement_type *first_file; | |
5f992e62 | 70 | static const char *current_target; |
252b5132 | 71 | static lang_statement_list_type statement_list; |
bde18da4 AM |
72 | static lang_statement_list_type *stat_save[10]; |
73 | static lang_statement_list_type **stat_save_ptr = &stat_save[0]; | |
c4b78195 | 74 | static struct unique_sections *unique_section_list; |
16e4ecc0 | 75 | static struct asneeded_minfo *asneeded_list_head; |
fc90c280 | 76 | static unsigned int opb_shift = 0; |
252b5132 | 77 | |
cf888e70 | 78 | /* Forward declarations. */ |
a431bc2e | 79 | static void exp_init_os (etree_type *); |
1579bae1 | 80 | static lang_input_statement_type *lookup_name (const char *); |
1579bae1 | 81 | static void insert_undefined (const char *); |
35835446 | 82 | static bfd_boolean sort_def_symbol (struct bfd_link_hash_entry *, void *); |
1579bae1 AM |
83 | static void print_statement (lang_statement_union_type *, |
84 | lang_output_section_statement_type *); | |
85 | static void print_statement_list (lang_statement_union_type *, | |
86 | lang_output_section_statement_type *); | |
87 | static void print_statements (void); | |
d64703c6 | 88 | static void print_input_section (asection *, bfd_boolean); |
1579bae1 AM |
89 | static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *); |
90 | static void lang_record_phdrs (void); | |
91 | static void lang_do_version_exports_section (void); | |
55255dae L |
92 | static void lang_finalize_version_expr_head |
93 | (struct bfd_elf_version_expr_head *); | |
cc9ad334 | 94 | static void lang_do_memory_regions (void); |
1579bae1 | 95 | |
cf888e70 | 96 | /* Exported variables. */ |
8be573a7 | 97 | const char *output_target; |
252b5132 | 98 | lang_output_section_statement_type *abs_output_section; |
aea4bd9d | 99 | lang_statement_list_type lang_output_section_statement; |
252b5132 | 100 | lang_statement_list_type *stat_ptr = &statement_list; |
87f2a346 | 101 | lang_statement_list_type file_chain = { NULL, NULL }; |
dc27aea4 | 102 | lang_statement_list_type input_file_chain; |
e3e942e9 | 103 | struct bfd_sym_chain entry_symbol = { NULL, NULL }; |
1e281515 | 104 | const char *entry_section = ".text"; |
66be1055 | 105 | struct lang_input_statement_flags input_flags; |
b34976b6 | 106 | bfd_boolean entry_from_cmdline; |
24898b70 | 107 | bfd_boolean undef_from_cmdline; |
b34976b6 AM |
108 | bfd_boolean lang_has_input_file = FALSE; |
109 | bfd_boolean had_output_filename = FALSE; | |
110 | bfd_boolean lang_float_flag = FALSE; | |
111 | bfd_boolean delete_output_file_on_failure = FALSE; | |
f5ff60a6 | 112 | struct lang_phdr *lang_phdr_list; |
252b5132 | 113 | struct lang_nocrossrefs *nocrossref_list; |
16e4ecc0 | 114 | struct asneeded_minfo **asneeded_list_tail; |
e9ee469a AM |
115 | |
116 | /* Functions that traverse the linker script and might evaluate | |
fa72205c | 117 | DEFINED() need to increment this at the start of the traversal. */ |
420e579c | 118 | int lang_statement_iteration = 0; |
252b5132 | 119 | |
61f5d054 L |
120 | /* Return TRUE if the PATTERN argument is a wildcard pattern. |
121 | Although backslashes are treated specially if a pattern contains | |
122 | wildcards, we do not consider the mere presence of a backslash to | |
123 | be enough to cause the pattern to be treated as a wildcard. | |
124 | That lets us handle DOS filenames more naturally. */ | |
125 | #define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL) | |
126 | ||
d1778b88 | 127 | #define new_stat(x, y) \ |
1579bae1 | 128 | (x##_type *) new_statement (x##_enum, sizeof (x##_type), y) |
252b5132 | 129 | |
d1778b88 AM |
130 | #define outside_section_address(q) \ |
131 | ((q)->output_offset + (q)->output_section->vma) | |
252b5132 | 132 | |
d1778b88 AM |
133 | #define outside_symbol_address(q) \ |
134 | ((q)->value + outside_section_address (q->section)) | |
252b5132 RH |
135 | |
136 | #define SECTION_NAME_MAP_LENGTH (16) | |
137 | ||
1579bae1 AM |
138 | void * |
139 | stat_alloc (size_t size) | |
252b5132 RH |
140 | { |
141 | return obstack_alloc (&stat_obstack, size); | |
142 | } | |
143 | ||
97407faf AM |
144 | static int |
145 | name_match (const char *pattern, const char *name) | |
146 | { | |
147 | if (wildcardp (pattern)) | |
148 | return fnmatch (pattern, name, 0); | |
149 | return strcmp (pattern, name); | |
150 | } | |
151 | ||
152 | /* If PATTERN is of the form archive:file, return a pointer to the | |
153 | separator. If not, return NULL. */ | |
154 | ||
155 | static char * | |
156 | archive_path (const char *pattern) | |
157 | { | |
158 | char *p = NULL; | |
159 | ||
160 | if (link_info.path_separator == 0) | |
161 | return p; | |
162 | ||
163 | p = strchr (pattern, link_info.path_separator); | |
164 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM | |
165 | if (p == NULL || link_info.path_separator != ':') | |
166 | return p; | |
167 | ||
168 | /* Assume a match on the second char is part of drive specifier, | |
169 | as in "c:\silly.dos". */ | |
967928e9 | 170 | if (p == pattern + 1 && ISALPHA (*pattern)) |
97407faf AM |
171 | p = strchr (p + 1, link_info.path_separator); |
172 | #endif | |
173 | return p; | |
174 | } | |
175 | ||
967928e9 AM |
176 | /* Given that FILE_SPEC results in a non-NULL SEP result from archive_path, |
177 | return whether F matches FILE_SPEC. */ | |
178 | ||
179 | static bfd_boolean | |
180 | input_statement_is_archive_path (const char *file_spec, char *sep, | |
181 | lang_input_statement_type *f) | |
182 | { | |
183 | bfd_boolean match = FALSE; | |
184 | ||
185 | if ((*(sep + 1) == 0 | |
186 | || name_match (sep + 1, f->filename) == 0) | |
187 | && ((sep != file_spec) | |
188 | == (f->the_bfd != NULL && f->the_bfd->my_archive != NULL))) | |
189 | { | |
190 | match = TRUE; | |
191 | ||
192 | if (sep != file_spec) | |
193 | { | |
194 | const char *aname = f->the_bfd->my_archive->filename; | |
195 | *sep = 0; | |
196 | match = name_match (file_spec, aname) == 0; | |
197 | *sep = link_info.path_separator; | |
198 | } | |
199 | } | |
200 | return match; | |
201 | } | |
202 | ||
8a99a385 | 203 | static bfd_boolean |
d0bf826b AM |
204 | unique_section_p (const asection *sec, |
205 | const lang_output_section_statement_type *os) | |
577a0623 AM |
206 | { |
207 | struct unique_sections *unam; | |
d0d6a25b | 208 | const char *secnam; |
577a0623 | 209 | |
0e1862bb | 210 | if (bfd_link_relocatable (&link_info) |
d0d6a25b AM |
211 | && sec->owner != NULL |
212 | && bfd_is_group_section (sec->owner, sec)) | |
d0bf826b AM |
213 | return !(os != NULL |
214 | && strcmp (os->name, DISCARD_SECTION_NAME) == 0); | |
d0d6a25b AM |
215 | |
216 | secnam = sec->name; | |
577a0623 | 217 | for (unam = unique_section_list; unam; unam = unam->next) |
97407faf AM |
218 | if (name_match (unam->name, secnam) == 0) |
219 | return TRUE; | |
577a0623 | 220 | |
b34976b6 | 221 | return FALSE; |
577a0623 AM |
222 | } |
223 | ||
08da4cac | 224 | /* Generic traversal routines for finding matching sections. */ |
4dec4d4e | 225 | |
72223188 JJ |
226 | /* Try processing a section against a wildcard. This just calls |
227 | the callback unless the filename exclusion list is present | |
228 | and excludes the file. It's hardly ever present so this | |
229 | function is very fast. */ | |
230 | ||
4dec4d4e | 231 | static void |
72223188 JJ |
232 | walk_wild_consider_section (lang_wild_statement_type *ptr, |
233 | lang_input_statement_type *file, | |
234 | asection *s, | |
235 | struct wildcard_list *sec, | |
236 | callback_t callback, | |
237 | void *data) | |
4dec4d4e | 238 | { |
72223188 JJ |
239 | struct name_list *list_tmp; |
240 | ||
97407faf | 241 | /* Don't process sections from files which were excluded. */ |
72223188 JJ |
242 | for (list_tmp = sec->spec.exclude_name_list; |
243 | list_tmp; | |
244 | list_tmp = list_tmp->next) | |
245 | { | |
967928e9 | 246 | char *p = archive_path (list_tmp->name); |
b6bf44ba | 247 | |
967928e9 | 248 | if (p != NULL) |
72223188 | 249 | { |
967928e9 AM |
250 | if (input_statement_is_archive_path (list_tmp->name, p, file)) |
251 | return; | |
72223188 JJ |
252 | } |
253 | ||
967928e9 AM |
254 | else if (name_match (list_tmp->name, file->filename) == 0) |
255 | return; | |
256 | ||
257 | /* FIXME: Perhaps remove the following at some stage? Matching | |
258 | unadorned archives like this was never documented and has | |
259 | been superceded by the archive:path syntax. */ | |
260 | else if (file->the_bfd != NULL | |
261 | && file->the_bfd->my_archive != NULL | |
262 | && name_match (list_tmp->name, | |
263 | file->the_bfd->my_archive->filename) == 0) | |
264 | return; | |
72223188 JJ |
265 | } |
266 | ||
b9c361e0 | 267 | (*callback) (ptr, sec, s, ptr->section_flag_list, file, data); |
72223188 JJ |
268 | } |
269 | ||
270 | /* Lowest common denominator routine that can handle everything correctly, | |
271 | but slowly. */ | |
272 | ||
273 | static void | |
274 | walk_wild_section_general (lang_wild_statement_type *ptr, | |
275 | lang_input_statement_type *file, | |
276 | callback_t callback, | |
277 | void *data) | |
278 | { | |
279 | asection *s; | |
280 | struct wildcard_list *sec; | |
b6bf44ba AM |
281 | |
282 | for (s = file->the_bfd->sections; s != NULL; s = s->next) | |
4dec4d4e | 283 | { |
b6bf44ba | 284 | sec = ptr->section_list; |
2181f54f | 285 | if (sec == NULL) |
b9c361e0 | 286 | (*callback) (ptr, sec, s, ptr->section_flag_list, file, data); |
2181f54f AM |
287 | |
288 | while (sec != NULL) | |
08da4cac | 289 | { |
b34976b6 | 290 | bfd_boolean skip = FALSE; |
2181f54f | 291 | |
72223188 | 292 | if (sec->spec.name != NULL) |
b6bf44ba | 293 | { |
2181f54f AM |
294 | const char *sname = bfd_get_section_name (file->the_bfd, s); |
295 | ||
97407faf | 296 | skip = name_match (sec->spec.name, sname) != 0; |
b6bf44ba | 297 | } |
4dec4d4e | 298 | |
b6bf44ba | 299 | if (!skip) |
72223188 | 300 | walk_wild_consider_section (ptr, file, s, sec, callback, data); |
4dec4d4e | 301 | |
2181f54f | 302 | sec = sec->next; |
4dec4d4e RH |
303 | } |
304 | } | |
305 | } | |
306 | ||
72223188 JJ |
307 | /* Routines to find a single section given its name. If there's more |
308 | than one section with that name, we report that. */ | |
309 | ||
310 | typedef struct | |
311 | { | |
312 | asection *found_section; | |
313 | bfd_boolean multiple_sections_found; | |
314 | } section_iterator_callback_data; | |
315 | ||
316 | static bfd_boolean | |
91d6fa6a | 317 | section_iterator_callback (bfd *abfd ATTRIBUTE_UNUSED, asection *s, void *data) |
72223188 | 318 | { |
1e9cc1c2 | 319 | section_iterator_callback_data *d = (section_iterator_callback_data *) data; |
72223188 JJ |
320 | |
321 | if (d->found_section != NULL) | |
322 | { | |
323 | d->multiple_sections_found = TRUE; | |
324 | return TRUE; | |
325 | } | |
326 | ||
327 | d->found_section = s; | |
328 | return FALSE; | |
329 | } | |
330 | ||
331 | static asection * | |
332 | find_section (lang_input_statement_type *file, | |
333 | struct wildcard_list *sec, | |
334 | bfd_boolean *multiple_sections_found) | |
335 | { | |
336 | section_iterator_callback_data cb_data = { NULL, FALSE }; | |
337 | ||
329c1c86 | 338 | bfd_get_section_by_name_if (file->the_bfd, sec->spec.name, |
72223188 JJ |
339 | section_iterator_callback, &cb_data); |
340 | *multiple_sections_found = cb_data.multiple_sections_found; | |
341 | return cb_data.found_section; | |
342 | } | |
343 | ||
344 | /* Code for handling simple wildcards without going through fnmatch, | |
345 | which can be expensive because of charset translations etc. */ | |
346 | ||
347 | /* A simple wild is a literal string followed by a single '*', | |
348 | where the literal part is at least 4 characters long. */ | |
349 | ||
350 | static bfd_boolean | |
351 | is_simple_wild (const char *name) | |
352 | { | |
353 | size_t len = strcspn (name, "*?["); | |
354 | return len >= 4 && name[len] == '*' && name[len + 1] == '\0'; | |
355 | } | |
356 | ||
357 | static bfd_boolean | |
358 | match_simple_wild (const char *pattern, const char *name) | |
359 | { | |
360 | /* The first four characters of the pattern are guaranteed valid | |
361 | non-wildcard characters. So we can go faster. */ | |
362 | if (pattern[0] != name[0] || pattern[1] != name[1] | |
363 | || pattern[2] != name[2] || pattern[3] != name[3]) | |
364 | return FALSE; | |
365 | ||
366 | pattern += 4; | |
367 | name += 4; | |
368 | while (*pattern != '*') | |
369 | if (*name++ != *pattern++) | |
370 | return FALSE; | |
371 | ||
372 | return TRUE; | |
373 | } | |
374 | ||
02ecc8e9 L |
375 | /* Return the numerical value of the init_priority attribute from |
376 | section name NAME. */ | |
377 | ||
378 | static unsigned long | |
379 | get_init_priority (const char *name) | |
380 | { | |
381 | char *end; | |
382 | unsigned long init_priority; | |
383 | ||
384 | /* GCC uses the following section names for the init_priority | |
385 | attribute with numerical values 101 and 65535 inclusive. A | |
386 | lower value means a higher priority. | |
387 | ||
388 | 1: .init_array.NNNN/.fini_array.NNNN: Where NNNN is the | |
389 | decimal numerical value of the init_priority attribute. | |
390 | The order of execution in .init_array is forward and | |
391 | .fini_array is backward. | |
61087d8c | 392 | 2: .ctors.NNNN/.dtors.NNNN: Where NNNN is 65535 minus the |
02ecc8e9 L |
393 | decimal numerical value of the init_priority attribute. |
394 | The order of execution in .ctors is backward and .dtors | |
395 | is forward. | |
396 | */ | |
397 | if (strncmp (name, ".init_array.", 12) == 0 | |
398 | || strncmp (name, ".fini_array.", 12) == 0) | |
399 | { | |
400 | init_priority = strtoul (name + 12, &end, 10); | |
401 | return *end ? 0 : init_priority; | |
402 | } | |
403 | else if (strncmp (name, ".ctors.", 7) == 0 | |
404 | || strncmp (name, ".dtors.", 7) == 0) | |
405 | { | |
406 | init_priority = strtoul (name + 7, &end, 10); | |
407 | return *end ? 0 : 65535 - init_priority; | |
408 | } | |
409 | ||
410 | return 0; | |
411 | } | |
412 | ||
50c77e5d NC |
413 | /* Compare sections ASEC and BSEC according to SORT. */ |
414 | ||
415 | static int | |
416 | compare_section (sort_type sort, asection *asec, asection *bsec) | |
417 | { | |
418 | int ret; | |
02ecc8e9 | 419 | unsigned long ainit_priority, binit_priority; |
50c77e5d NC |
420 | |
421 | switch (sort) | |
422 | { | |
423 | default: | |
424 | abort (); | |
425 | ||
02ecc8e9 L |
426 | case by_init_priority: |
427 | ainit_priority | |
428 | = get_init_priority (bfd_get_section_name (asec->owner, asec)); | |
429 | binit_priority | |
430 | = get_init_priority (bfd_get_section_name (bsec->owner, bsec)); | |
431 | if (ainit_priority == 0 || binit_priority == 0) | |
432 | goto sort_by_name; | |
433 | ret = ainit_priority - binit_priority; | |
434 | if (ret) | |
435 | break; | |
436 | else | |
437 | goto sort_by_name; | |
438 | ||
50c77e5d NC |
439 | case by_alignment_name: |
440 | ret = (bfd_section_alignment (bsec->owner, bsec) | |
441 | - bfd_section_alignment (asec->owner, asec)); | |
442 | if (ret) | |
443 | break; | |
444 | /* Fall through. */ | |
445 | ||
446 | case by_name: | |
02ecc8e9 | 447 | sort_by_name: |
50c77e5d NC |
448 | ret = strcmp (bfd_get_section_name (asec->owner, asec), |
449 | bfd_get_section_name (bsec->owner, bsec)); | |
450 | break; | |
451 | ||
452 | case by_name_alignment: | |
453 | ret = strcmp (bfd_get_section_name (asec->owner, asec), | |
454 | bfd_get_section_name (bsec->owner, bsec)); | |
455 | if (ret) | |
456 | break; | |
457 | /* Fall through. */ | |
458 | ||
459 | case by_alignment: | |
460 | ret = (bfd_section_alignment (bsec->owner, bsec) | |
461 | - bfd_section_alignment (asec->owner, asec)); | |
462 | break; | |
463 | } | |
464 | ||
465 | return ret; | |
466 | } | |
467 | ||
329c1c86 | 468 | /* Build a Binary Search Tree to sort sections, unlike insertion sort |
50c77e5d NC |
469 | used in wild_sort(). BST is considerably faster if the number of |
470 | of sections are large. */ | |
471 | ||
472 | static lang_section_bst_type ** | |
473 | wild_sort_fast (lang_wild_statement_type *wild, | |
329c1c86 AM |
474 | struct wildcard_list *sec, |
475 | lang_input_statement_type *file ATTRIBUTE_UNUSED, | |
476 | asection *section) | |
50c77e5d | 477 | { |
329c1c86 | 478 | lang_section_bst_type **tree; |
50c77e5d | 479 | |
e6f2cbf5 | 480 | tree = &wild->tree; |
50c77e5d | 481 | if (!wild->filenames_sorted |
329c1c86 | 482 | && (sec == NULL || sec->spec.sorted == none)) |
50c77e5d NC |
483 | { |
484 | /* Append at the right end of tree. */ | |
485 | while (*tree) | |
329c1c86 | 486 | tree = &((*tree)->right); |
50c77e5d NC |
487 | return tree; |
488 | } | |
489 | ||
329c1c86 | 490 | while (*tree) |
50c77e5d NC |
491 | { |
492 | /* Find the correct node to append this section. */ | |
329c1c86 AM |
493 | if (compare_section (sec->spec.sorted, section, (*tree)->section) < 0) |
494 | tree = &((*tree)->left); | |
495 | else | |
496 | tree = &((*tree)->right); | |
50c77e5d NC |
497 | } |
498 | ||
499 | return tree; | |
500 | } | |
501 | ||
502 | /* Use wild_sort_fast to build a BST to sort sections. */ | |
503 | ||
504 | static void | |
505 | output_section_callback_fast (lang_wild_statement_type *ptr, | |
329c1c86 AM |
506 | struct wildcard_list *sec, |
507 | asection *section, | |
b9c361e0 | 508 | struct flag_info *sflag_list ATTRIBUTE_UNUSED, |
329c1c86 | 509 | lang_input_statement_type *file, |
d0bf826b | 510 | void *output) |
50c77e5d NC |
511 | { |
512 | lang_section_bst_type *node; | |
513 | lang_section_bst_type **tree; | |
d0bf826b | 514 | lang_output_section_statement_type *os; |
50c77e5d | 515 | |
d0bf826b AM |
516 | os = (lang_output_section_statement_type *) output; |
517 | ||
518 | if (unique_section_p (section, os)) | |
50c77e5d NC |
519 | return; |
520 | ||
1e9cc1c2 | 521 | node = (lang_section_bst_type *) xmalloc (sizeof (lang_section_bst_type)); |
50c77e5d NC |
522 | node->left = 0; |
523 | node->right = 0; | |
524 | node->section = section; | |
525 | ||
526 | tree = wild_sort_fast (ptr, sec, file, section); | |
527 | if (tree != NULL) | |
528 | *tree = node; | |
529 | } | |
530 | ||
531 | /* Convert a sorted sections' BST back to list form. */ | |
532 | ||
533 | static void | |
329c1c86 AM |
534 | output_section_callback_tree_to_list (lang_wild_statement_type *ptr, |
535 | lang_section_bst_type *tree, | |
536 | void *output) | |
50c77e5d NC |
537 | { |
538 | if (tree->left) | |
539 | output_section_callback_tree_to_list (ptr, tree->left, output); | |
540 | ||
b9c361e0 | 541 | lang_add_section (&ptr->children, tree->section, NULL, |
329c1c86 | 542 | (lang_output_section_statement_type *) output); |
50c77e5d NC |
543 | |
544 | if (tree->right) | |
545 | output_section_callback_tree_to_list (ptr, tree->right, output); | |
546 | ||
547 | free (tree); | |
548 | } | |
549 | ||
72223188 JJ |
550 | /* Specialized, optimized routines for handling different kinds of |
551 | wildcards */ | |
552 | ||
553 | static void | |
554 | walk_wild_section_specs1_wild0 (lang_wild_statement_type *ptr, | |
555 | lang_input_statement_type *file, | |
556 | callback_t callback, | |
557 | void *data) | |
558 | { | |
559 | /* We can just do a hash lookup for the section with the right name. | |
560 | But if that lookup discovers more than one section with the name | |
561 | (should be rare), we fall back to the general algorithm because | |
562 | we would otherwise have to sort the sections to make sure they | |
563 | get processed in the bfd's order. */ | |
564 | bfd_boolean multiple_sections_found; | |
565 | struct wildcard_list *sec0 = ptr->handler_data[0]; | |
566 | asection *s0 = find_section (file, sec0, &multiple_sections_found); | |
567 | ||
568 | if (multiple_sections_found) | |
569 | walk_wild_section_general (ptr, file, callback, data); | |
570 | else if (s0) | |
571 | walk_wild_consider_section (ptr, file, s0, sec0, callback, data); | |
572 | } | |
573 | ||
574 | static void | |
575 | walk_wild_section_specs1_wild1 (lang_wild_statement_type *ptr, | |
576 | lang_input_statement_type *file, | |
577 | callback_t callback, | |
578 | void *data) | |
579 | { | |
580 | asection *s; | |
581 | struct wildcard_list *wildsec0 = ptr->handler_data[0]; | |
582 | ||
583 | for (s = file->the_bfd->sections; s != NULL; s = s->next) | |
584 | { | |
585 | const char *sname = bfd_get_section_name (file->the_bfd, s); | |
586 | bfd_boolean skip = !match_simple_wild (wildsec0->spec.name, sname); | |
587 | ||
588 | if (!skip) | |
589 | walk_wild_consider_section (ptr, file, s, wildsec0, callback, data); | |
590 | } | |
591 | } | |
592 | ||
593 | static void | |
594 | walk_wild_section_specs2_wild1 (lang_wild_statement_type *ptr, | |
595 | lang_input_statement_type *file, | |
596 | callback_t callback, | |
597 | void *data) | |
598 | { | |
599 | asection *s; | |
600 | struct wildcard_list *sec0 = ptr->handler_data[0]; | |
601 | struct wildcard_list *wildsec1 = ptr->handler_data[1]; | |
602 | bfd_boolean multiple_sections_found; | |
603 | asection *s0 = find_section (file, sec0, &multiple_sections_found); | |
604 | ||
605 | if (multiple_sections_found) | |
606 | { | |
607 | walk_wild_section_general (ptr, file, callback, data); | |
608 | return; | |
609 | } | |
610 | ||
611 | /* Note that if the section was not found, s0 is NULL and | |
612 | we'll simply never succeed the s == s0 test below. */ | |
613 | for (s = file->the_bfd->sections; s != NULL; s = s->next) | |
614 | { | |
615 | /* Recall that in this code path, a section cannot satisfy more | |
616 | than one spec, so if s == s0 then it cannot match | |
617 | wildspec1. */ | |
618 | if (s == s0) | |
619 | walk_wild_consider_section (ptr, file, s, sec0, callback, data); | |
620 | else | |
621 | { | |
622 | const char *sname = bfd_get_section_name (file->the_bfd, s); | |
623 | bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname); | |
624 | ||
625 | if (!skip) | |
626 | walk_wild_consider_section (ptr, file, s, wildsec1, callback, | |
627 | data); | |
628 | } | |
629 | } | |
630 | } | |
631 | ||
632 | static void | |
633 | walk_wild_section_specs3_wild2 (lang_wild_statement_type *ptr, | |
634 | lang_input_statement_type *file, | |
635 | callback_t callback, | |
636 | void *data) | |
637 | { | |
638 | asection *s; | |
639 | struct wildcard_list *sec0 = ptr->handler_data[0]; | |
640 | struct wildcard_list *wildsec1 = ptr->handler_data[1]; | |
641 | struct wildcard_list *wildsec2 = ptr->handler_data[2]; | |
642 | bfd_boolean multiple_sections_found; | |
643 | asection *s0 = find_section (file, sec0, &multiple_sections_found); | |
644 | ||
645 | if (multiple_sections_found) | |
646 | { | |
647 | walk_wild_section_general (ptr, file, callback, data); | |
648 | return; | |
649 | } | |
650 | ||
651 | for (s = file->the_bfd->sections; s != NULL; s = s->next) | |
652 | { | |
653 | if (s == s0) | |
654 | walk_wild_consider_section (ptr, file, s, sec0, callback, data); | |
655 | else | |
656 | { | |
657 | const char *sname = bfd_get_section_name (file->the_bfd, s); | |
658 | bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname); | |
659 | ||
660 | if (!skip) | |
661 | walk_wild_consider_section (ptr, file, s, wildsec1, callback, data); | |
662 | else | |
663 | { | |
664 | skip = !match_simple_wild (wildsec2->spec.name, sname); | |
665 | if (!skip) | |
666 | walk_wild_consider_section (ptr, file, s, wildsec2, callback, | |
667 | data); | |
668 | } | |
669 | } | |
670 | } | |
671 | } | |
672 | ||
673 | static void | |
674 | walk_wild_section_specs4_wild2 (lang_wild_statement_type *ptr, | |
675 | lang_input_statement_type *file, | |
676 | callback_t callback, | |
677 | void *data) | |
678 | { | |
679 | asection *s; | |
680 | struct wildcard_list *sec0 = ptr->handler_data[0]; | |
681 | struct wildcard_list *sec1 = ptr->handler_data[1]; | |
682 | struct wildcard_list *wildsec2 = ptr->handler_data[2]; | |
683 | struct wildcard_list *wildsec3 = ptr->handler_data[3]; | |
684 | bfd_boolean multiple_sections_found; | |
685 | asection *s0 = find_section (file, sec0, &multiple_sections_found), *s1; | |
686 | ||
687 | if (multiple_sections_found) | |
688 | { | |
689 | walk_wild_section_general (ptr, file, callback, data); | |
690 | return; | |
691 | } | |
692 | ||
693 | s1 = find_section (file, sec1, &multiple_sections_found); | |
694 | if (multiple_sections_found) | |
695 | { | |
696 | walk_wild_section_general (ptr, file, callback, data); | |
697 | return; | |
698 | } | |
699 | ||
700 | for (s = file->the_bfd->sections; s != NULL; s = s->next) | |
701 | { | |
702 | if (s == s0) | |
703 | walk_wild_consider_section (ptr, file, s, sec0, callback, data); | |
704 | else | |
705 | if (s == s1) | |
706 | walk_wild_consider_section (ptr, file, s, sec1, callback, data); | |
707 | else | |
708 | { | |
709 | const char *sname = bfd_get_section_name (file->the_bfd, s); | |
710 | bfd_boolean skip = !match_simple_wild (wildsec2->spec.name, | |
711 | sname); | |
712 | ||
713 | if (!skip) | |
714 | walk_wild_consider_section (ptr, file, s, wildsec2, callback, | |
715 | data); | |
716 | else | |
717 | { | |
718 | skip = !match_simple_wild (wildsec3->spec.name, sname); | |
719 | if (!skip) | |
720 | walk_wild_consider_section (ptr, file, s, wildsec3, | |
721 | callback, data); | |
722 | } | |
723 | } | |
724 | } | |
725 | } | |
726 | ||
727 | static void | |
728 | walk_wild_section (lang_wild_statement_type *ptr, | |
729 | lang_input_statement_type *file, | |
730 | callback_t callback, | |
731 | void *data) | |
732 | { | |
66be1055 | 733 | if (file->flags.just_syms) |
72223188 JJ |
734 | return; |
735 | ||
736 | (*ptr->walk_wild_section_handler) (ptr, file, callback, data); | |
737 | } | |
738 | ||
739 | /* Returns TRUE when name1 is a wildcard spec that might match | |
740 | something name2 can match. We're conservative: we return FALSE | |
741 | only if the prefixes of name1 and name2 are different up to the | |
742 | first wildcard character. */ | |
743 | ||
744 | static bfd_boolean | |
745 | wild_spec_can_overlap (const char *name1, const char *name2) | |
746 | { | |
747 | size_t prefix1_len = strcspn (name1, "?*["); | |
748 | size_t prefix2_len = strcspn (name2, "?*["); | |
749 | size_t min_prefix_len; | |
750 | ||
751 | /* Note that if there is no wildcard character, then we treat the | |
752 | terminating 0 as part of the prefix. Thus ".text" won't match | |
753 | ".text." or ".text.*", for example. */ | |
754 | if (name1[prefix1_len] == '\0') | |
755 | prefix1_len++; | |
756 | if (name2[prefix2_len] == '\0') | |
757 | prefix2_len++; | |
758 | ||
759 | min_prefix_len = prefix1_len < prefix2_len ? prefix1_len : prefix2_len; | |
760 | ||
761 | return memcmp (name1, name2, min_prefix_len) == 0; | |
762 | } | |
763 | ||
764 | /* Select specialized code to handle various kinds of wildcard | |
765 | statements. */ | |
766 | ||
767 | static void | |
768 | analyze_walk_wild_section_handler (lang_wild_statement_type *ptr) | |
769 | { | |
770 | int sec_count = 0; | |
771 | int wild_name_count = 0; | |
772 | struct wildcard_list *sec; | |
773 | int signature; | |
774 | int data_counter; | |
775 | ||
776 | ptr->walk_wild_section_handler = walk_wild_section_general; | |
7544697a AM |
777 | ptr->handler_data[0] = NULL; |
778 | ptr->handler_data[1] = NULL; | |
779 | ptr->handler_data[2] = NULL; | |
780 | ptr->handler_data[3] = NULL; | |
e6f2cbf5 | 781 | ptr->tree = NULL; |
72223188 JJ |
782 | |
783 | /* Count how many wildcard_specs there are, and how many of those | |
784 | actually use wildcards in the name. Also, bail out if any of the | |
785 | wildcard names are NULL. (Can this actually happen? | |
786 | walk_wild_section used to test for it.) And bail out if any | |
787 | of the wildcards are more complex than a simple string | |
788 | ending in a single '*'. */ | |
789 | for (sec = ptr->section_list; sec != NULL; sec = sec->next) | |
790 | { | |
791 | ++sec_count; | |
792 | if (sec->spec.name == NULL) | |
793 | return; | |
794 | if (wildcardp (sec->spec.name)) | |
795 | { | |
796 | ++wild_name_count; | |
797 | if (!is_simple_wild (sec->spec.name)) | |
798 | return; | |
799 | } | |
800 | } | |
801 | ||
802 | /* The zero-spec case would be easy to optimize but it doesn't | |
803 | happen in practice. Likewise, more than 4 specs doesn't | |
804 | happen in practice. */ | |
805 | if (sec_count == 0 || sec_count > 4) | |
806 | return; | |
807 | ||
808 | /* Check that no two specs can match the same section. */ | |
809 | for (sec = ptr->section_list; sec != NULL; sec = sec->next) | |
810 | { | |
811 | struct wildcard_list *sec2; | |
812 | for (sec2 = sec->next; sec2 != NULL; sec2 = sec2->next) | |
813 | { | |
814 | if (wild_spec_can_overlap (sec->spec.name, sec2->spec.name)) | |
815 | return; | |
816 | } | |
817 | } | |
818 | ||
819 | signature = (sec_count << 8) + wild_name_count; | |
820 | switch (signature) | |
821 | { | |
822 | case 0x0100: | |
823 | ptr->walk_wild_section_handler = walk_wild_section_specs1_wild0; | |
824 | break; | |
825 | case 0x0101: | |
826 | ptr->walk_wild_section_handler = walk_wild_section_specs1_wild1; | |
827 | break; | |
828 | case 0x0201: | |
829 | ptr->walk_wild_section_handler = walk_wild_section_specs2_wild1; | |
830 | break; | |
831 | case 0x0302: | |
832 | ptr->walk_wild_section_handler = walk_wild_section_specs3_wild2; | |
833 | break; | |
834 | case 0x0402: | |
835 | ptr->walk_wild_section_handler = walk_wild_section_specs4_wild2; | |
836 | break; | |
837 | default: | |
838 | return; | |
839 | } | |
840 | ||
841 | /* Now fill the data array with pointers to the specs, first the | |
842 | specs with non-wildcard names, then the specs with wildcard | |
843 | names. It's OK to process the specs in different order from the | |
844 | given order, because we've already determined that no section | |
845 | will match more than one spec. */ | |
846 | data_counter = 0; | |
847 | for (sec = ptr->section_list; sec != NULL; sec = sec->next) | |
848 | if (!wildcardp (sec->spec.name)) | |
849 | ptr->handler_data[data_counter++] = sec; | |
850 | for (sec = ptr->section_list; sec != NULL; sec = sec->next) | |
851 | if (wildcardp (sec->spec.name)) | |
852 | ptr->handler_data[data_counter++] = sec; | |
853 | } | |
854 | ||
4dec4d4e RH |
855 | /* Handle a wild statement for a single file F. */ |
856 | ||
857 | static void | |
1579bae1 AM |
858 | walk_wild_file (lang_wild_statement_type *s, |
859 | lang_input_statement_type *f, | |
860 | callback_t callback, | |
861 | void *data) | |
4dec4d4e RH |
862 | { |
863 | if (f->the_bfd == NULL | |
0aa7f586 | 864 | || !bfd_check_format (f->the_bfd, bfd_archive)) |
b6bf44ba | 865 | walk_wild_section (s, f, callback, data); |
4dec4d4e RH |
866 | else |
867 | { | |
868 | bfd *member; | |
869 | ||
870 | /* This is an archive file. We must map each member of the | |
871 | archive separately. */ | |
1579bae1 | 872 | member = bfd_openr_next_archived_file (f->the_bfd, NULL); |
4dec4d4e RH |
873 | while (member != NULL) |
874 | { | |
875 | /* When lookup_name is called, it will call the add_symbols | |
876 | entry point for the archive. For each element of the | |
877 | archive which is included, BFD will call ldlang_add_file, | |
878 | which will set the usrdata field of the member to the | |
879 | lang_input_statement. */ | |
880 | if (member->usrdata != NULL) | |
881 | { | |
1e9cc1c2 | 882 | walk_wild_section (s, |
4724d37e RM |
883 | (lang_input_statement_type *) member->usrdata, |
884 | callback, data); | |
4dec4d4e RH |
885 | } |
886 | ||
887 | member = bfd_openr_next_archived_file (f->the_bfd, member); | |
888 | } | |
889 | } | |
890 | } | |
891 | ||
892 | static void | |
1579bae1 | 893 | walk_wild (lang_wild_statement_type *s, callback_t callback, void *data) |
4dec4d4e | 894 | { |
b6bf44ba | 895 | const char *file_spec = s->filename; |
97407faf | 896 | char *p; |
b6bf44ba AM |
897 | |
898 | if (file_spec == NULL) | |
4dec4d4e RH |
899 | { |
900 | /* Perform the iteration over all files in the list. */ | |
e50d8076 | 901 | LANG_FOR_EACH_INPUT_STATEMENT (f) |
4dec4d4e | 902 | { |
b6bf44ba | 903 | walk_wild_file (s, f, callback, data); |
4dec4d4e RH |
904 | } |
905 | } | |
97407faf AM |
906 | else if ((p = archive_path (file_spec)) != NULL) |
907 | { | |
908 | LANG_FOR_EACH_INPUT_STATEMENT (f) | |
909 | { | |
967928e9 AM |
910 | if (input_statement_is_archive_path (file_spec, p, f)) |
911 | walk_wild_file (s, f, callback, data); | |
97407faf AM |
912 | } |
913 | } | |
b6bf44ba | 914 | else if (wildcardp (file_spec)) |
4dec4d4e | 915 | { |
e50d8076 | 916 | LANG_FOR_EACH_INPUT_STATEMENT (f) |
4dec4d4e | 917 | { |
68bbb9f7 | 918 | if (fnmatch (file_spec, f->filename, 0) == 0) |
b6bf44ba | 919 | walk_wild_file (s, f, callback, data); |
4dec4d4e RH |
920 | } |
921 | } | |
922 | else | |
923 | { | |
e50d8076 NC |
924 | lang_input_statement_type *f; |
925 | ||
4dec4d4e | 926 | /* Perform the iteration over a single file. */ |
b6bf44ba | 927 | f = lookup_name (file_spec); |
6770ec8c | 928 | if (f) |
b6bf44ba | 929 | walk_wild_file (s, f, callback, data); |
4dec4d4e | 930 | } |
5f992e62 AM |
931 | } |
932 | ||
08da4cac | 933 | /* lang_for_each_statement walks the parse tree and calls the provided |
8658f989 AM |
934 | function for each node, except those inside output section statements |
935 | with constraint set to -1. */ | |
252b5132 | 936 | |
8658f989 | 937 | void |
1579bae1 AM |
938 | lang_for_each_statement_worker (void (*func) (lang_statement_union_type *), |
939 | lang_statement_union_type *s) | |
252b5132 | 940 | { |
1579bae1 | 941 | for (; s != NULL; s = s->header.next) |
252b5132 RH |
942 | { |
943 | func (s); | |
944 | ||
945 | switch (s->header.type) | |
946 | { | |
947 | case lang_constructors_statement_enum: | |
948 | lang_for_each_statement_worker (func, constructor_list.head); | |
949 | break; | |
950 | case lang_output_section_statement_enum: | |
8658f989 AM |
951 | if (s->output_section_statement.constraint != -1) |
952 | lang_for_each_statement_worker | |
953 | (func, s->output_section_statement.children.head); | |
252b5132 RH |
954 | break; |
955 | case lang_wild_statement_enum: | |
6feb9908 AM |
956 | lang_for_each_statement_worker (func, |
957 | s->wild_statement.children.head); | |
252b5132 RH |
958 | break; |
959 | case lang_group_statement_enum: | |
960 | lang_for_each_statement_worker (func, | |
961 | s->group_statement.children.head); | |
962 | break; | |
963 | case lang_data_statement_enum: | |
964 | case lang_reloc_statement_enum: | |
965 | case lang_object_symbols_statement_enum: | |
966 | case lang_output_statement_enum: | |
967 | case lang_target_statement_enum: | |
968 | case lang_input_section_enum: | |
969 | case lang_input_statement_enum: | |
970 | case lang_assignment_statement_enum: | |
971 | case lang_padding_statement_enum: | |
972 | case lang_address_statement_enum: | |
973 | case lang_fill_statement_enum: | |
53d25da6 | 974 | case lang_insert_statement_enum: |
252b5132 RH |
975 | break; |
976 | default: | |
977 | FAIL (); | |
978 | break; | |
979 | } | |
980 | } | |
981 | } | |
982 | ||
983 | void | |
1579bae1 | 984 | lang_for_each_statement (void (*func) (lang_statement_union_type *)) |
252b5132 | 985 | { |
08da4cac | 986 | lang_for_each_statement_worker (func, statement_list.head); |
252b5132 RH |
987 | } |
988 | ||
989 | /*----------------------------------------------------------------------*/ | |
08da4cac | 990 | |
252b5132 | 991 | void |
1579bae1 | 992 | lang_list_init (lang_statement_list_type *list) |
252b5132 | 993 | { |
1579bae1 | 994 | list->head = NULL; |
252b5132 RH |
995 | list->tail = &list->head; |
996 | } | |
997 | ||
bde18da4 AM |
998 | void |
999 | push_stat_ptr (lang_statement_list_type *new_ptr) | |
1000 | { | |
1001 | if (stat_save_ptr >= stat_save + sizeof (stat_save) / sizeof (stat_save[0])) | |
1002 | abort (); | |
1003 | *stat_save_ptr++ = stat_ptr; | |
1004 | stat_ptr = new_ptr; | |
1005 | } | |
1006 | ||
1007 | void | |
1008 | pop_stat_ptr (void) | |
1009 | { | |
1010 | if (stat_save_ptr <= stat_save) | |
1011 | abort (); | |
1012 | stat_ptr = *--stat_save_ptr; | |
1013 | } | |
1014 | ||
08da4cac | 1015 | /* Build a new statement node for the parse tree. */ |
252b5132 | 1016 | |
08da4cac | 1017 | static lang_statement_union_type * |
1579bae1 AM |
1018 | new_statement (enum statement_enum type, |
1019 | size_t size, | |
1020 | lang_statement_list_type *list) | |
252b5132 | 1021 | { |
d3ce72d0 | 1022 | lang_statement_union_type *new_stmt; |
252b5132 | 1023 | |
d3ce72d0 NC |
1024 | new_stmt = (lang_statement_union_type *) stat_alloc (size); |
1025 | new_stmt->header.type = type; | |
1026 | new_stmt->header.next = NULL; | |
1027 | lang_statement_append (list, new_stmt, &new_stmt->header.next); | |
1028 | return new_stmt; | |
252b5132 RH |
1029 | } |
1030 | ||
08da4cac KH |
1031 | /* Build a new input file node for the language. There are several |
1032 | ways in which we treat an input file, eg, we only look at symbols, | |
1033 | or prefix it with a -l etc. | |
252b5132 | 1034 | |
08da4cac | 1035 | We can be supplied with requests for input files more than once; |
396a2467 | 1036 | they may, for example be split over several lines like foo.o(.text) |
d1778b88 | 1037 | foo.o(.data) etc, so when asked for a file we check that we haven't |
08da4cac | 1038 | got it already so we don't duplicate the bfd. */ |
252b5132 | 1039 | |
252b5132 | 1040 | static lang_input_statement_type * |
1579bae1 AM |
1041 | new_afile (const char *name, |
1042 | lang_input_file_enum_type file_type, | |
1043 | const char *target, | |
1044 | bfd_boolean add_to_list) | |
252b5132 RH |
1045 | { |
1046 | lang_input_statement_type *p; | |
1047 | ||
66be1055 AM |
1048 | lang_has_input_file = TRUE; |
1049 | ||
252b5132 | 1050 | if (add_to_list) |
d3ce72d0 | 1051 | p = (lang_input_statement_type *) new_stat (lang_input_statement, stat_ptr); |
252b5132 RH |
1052 | else |
1053 | { | |
d3ce72d0 | 1054 | p = (lang_input_statement_type *) |
4724d37e | 1055 | stat_alloc (sizeof (lang_input_statement_type)); |
bd4d42c1 | 1056 | p->header.type = lang_input_statement_enum; |
252b5132 RH |
1057 | p->header.next = NULL; |
1058 | } | |
1059 | ||
66be1055 AM |
1060 | memset (&p->the_bfd, 0, |
1061 | sizeof (*p) - offsetof (lang_input_statement_type, the_bfd)); | |
252b5132 | 1062 | p->target = target; |
66be1055 AM |
1063 | p->flags.dynamic = input_flags.dynamic; |
1064 | p->flags.add_DT_NEEDED_for_dynamic = input_flags.add_DT_NEEDED_for_dynamic; | |
1065 | p->flags.add_DT_NEEDED_for_regular = input_flags.add_DT_NEEDED_for_regular; | |
1066 | p->flags.whole_archive = input_flags.whole_archive; | |
f4a23d42 | 1067 | p->flags.sysrooted = input_flags.sysrooted; |
bcb674cf | 1068 | |
252b5132 RH |
1069 | switch (file_type) |
1070 | { | |
1071 | case lang_input_file_is_symbols_only_enum: | |
1072 | p->filename = name; | |
252b5132 | 1073 | p->local_sym_name = name; |
66be1055 AM |
1074 | p->flags.real = TRUE; |
1075 | p->flags.just_syms = TRUE; | |
252b5132 RH |
1076 | break; |
1077 | case lang_input_file_is_fake_enum: | |
1078 | p->filename = name; | |
252b5132 | 1079 | p->local_sym_name = name; |
252b5132 RH |
1080 | break; |
1081 | case lang_input_file_is_l_enum: | |
d4ae5fb0 | 1082 | if (name[0] == ':' && name[1] != '\0') |
0aa7f586 AM |
1083 | { |
1084 | p->filename = name + 1; | |
1085 | p->flags.full_name_provided = TRUE; | |
1086 | } | |
d4ae5fb0 | 1087 | else |
0aa7f586 | 1088 | p->filename = name; |
ff7a0acf | 1089 | p->local_sym_name = concat ("-l", name, (const char *) NULL); |
66be1055 AM |
1090 | p->flags.maybe_archive = TRUE; |
1091 | p->flags.real = TRUE; | |
1092 | p->flags.search_dirs = TRUE; | |
252b5132 RH |
1093 | break; |
1094 | case lang_input_file_is_marker_enum: | |
1095 | p->filename = name; | |
252b5132 | 1096 | p->local_sym_name = name; |
66be1055 | 1097 | p->flags.search_dirs = TRUE; |
252b5132 RH |
1098 | break; |
1099 | case lang_input_file_is_search_file_enum: | |
1100 | p->filename = name; | |
252b5132 | 1101 | p->local_sym_name = name; |
66be1055 AM |
1102 | p->flags.real = TRUE; |
1103 | p->flags.search_dirs = TRUE; | |
252b5132 RH |
1104 | break; |
1105 | case lang_input_file_is_file_enum: | |
1106 | p->filename = name; | |
252b5132 | 1107 | p->local_sym_name = name; |
66be1055 | 1108 | p->flags.real = TRUE; |
252b5132 RH |
1109 | break; |
1110 | default: | |
1111 | FAIL (); | |
1112 | } | |
c4b78195 | 1113 | |
252b5132 RH |
1114 | lang_statement_append (&input_file_chain, |
1115 | (lang_statement_union_type *) p, | |
1116 | &p->next_real_file); | |
1117 | return p; | |
1118 | } | |
1119 | ||
1120 | lang_input_statement_type * | |
1579bae1 AM |
1121 | lang_add_input_file (const char *name, |
1122 | lang_input_file_enum_type file_type, | |
1123 | const char *target) | |
252b5132 | 1124 | { |
bfa23434 HPN |
1125 | if (name != NULL && *name == '=') |
1126 | { | |
1127 | lang_input_statement_type *ret; | |
1128 | char *sysrooted_name | |
1129 | = concat (ld_sysroot, name + 1, (const char *) NULL); | |
1130 | ||
1131 | /* We've now forcibly prepended the sysroot, making the input | |
1132 | file independent of the context. Therefore, temporarily | |
1133 | force a non-sysrooted context for this statement, so it won't | |
1134 | get the sysroot prepended again when opened. (N.B. if it's a | |
1135 | script, any child nodes with input files starting with "/" | |
1136 | will be handled as "sysrooted" as they'll be found to be | |
1137 | within the sysroot subdirectory.) */ | |
1138 | unsigned int outer_sysrooted = input_flags.sysrooted; | |
1139 | input_flags.sysrooted = 0; | |
1140 | ret = new_afile (sysrooted_name, file_type, target, TRUE); | |
1141 | input_flags.sysrooted = outer_sysrooted; | |
1142 | return ret; | |
1143 | } | |
1144 | ||
b34976b6 | 1145 | return new_afile (name, file_type, target, TRUE); |
252b5132 RH |
1146 | } |
1147 | ||
409d7240 | 1148 | struct out_section_hash_entry |
750877ba L |
1149 | { |
1150 | struct bfd_hash_entry root; | |
409d7240 | 1151 | lang_statement_union_type s; |
750877ba L |
1152 | }; |
1153 | ||
1154 | /* The hash table. */ | |
1155 | ||
409d7240 | 1156 | static struct bfd_hash_table output_section_statement_table; |
750877ba | 1157 | |
384a9dda | 1158 | /* Support routines for the hash table used by lang_output_section_find, |
750877ba L |
1159 | initialize the table, fill in an entry and remove the table. */ |
1160 | ||
1161 | static struct bfd_hash_entry * | |
329c1c86 | 1162 | output_section_statement_newfunc (struct bfd_hash_entry *entry, |
409d7240 AM |
1163 | struct bfd_hash_table *table, |
1164 | const char *string) | |
750877ba | 1165 | { |
384a9dda | 1166 | lang_output_section_statement_type **nextp; |
409d7240 | 1167 | struct out_section_hash_entry *ret; |
384a9dda AM |
1168 | |
1169 | if (entry == NULL) | |
1170 | { | |
1e9cc1c2 | 1171 | entry = (struct bfd_hash_entry *) bfd_hash_allocate (table, |
4724d37e | 1172 | sizeof (*ret)); |
384a9dda AM |
1173 | if (entry == NULL) |
1174 | return entry; | |
1175 | } | |
1176 | ||
1177 | entry = bfd_hash_newfunc (entry, table, string); | |
1178 | if (entry == NULL) | |
1179 | return entry; | |
1180 | ||
409d7240 AM |
1181 | ret = (struct out_section_hash_entry *) entry; |
1182 | memset (&ret->s, 0, sizeof (ret->s)); | |
1183 | ret->s.header.type = lang_output_section_statement_enum; | |
1184 | ret->s.output_section_statement.subsection_alignment = -1; | |
1185 | ret->s.output_section_statement.section_alignment = -1; | |
1186 | ret->s.output_section_statement.block_value = 1; | |
1187 | lang_list_init (&ret->s.output_section_statement.children); | |
1188 | lang_statement_append (stat_ptr, &ret->s, &ret->s.header.next); | |
384a9dda | 1189 | |
218868ba AM |
1190 | /* For every output section statement added to the list, except the |
1191 | first one, lang_output_section_statement.tail points to the "next" | |
1192 | field of the last element of the list. */ | |
1193 | if (lang_output_section_statement.head != NULL) | |
409d7240 AM |
1194 | ret->s.output_section_statement.prev |
1195 | = ((lang_output_section_statement_type *) | |
1196 | ((char *) lang_output_section_statement.tail | |
1197 | - offsetof (lang_output_section_statement_type, next))); | |
218868ba | 1198 | |
384a9dda AM |
1199 | /* GCC's strict aliasing rules prevent us from just casting the |
1200 | address, so we store the pointer in a variable and cast that | |
1201 | instead. */ | |
409d7240 | 1202 | nextp = &ret->s.output_section_statement.next; |
384a9dda | 1203 | lang_statement_append (&lang_output_section_statement, |
409d7240 | 1204 | &ret->s, |
384a9dda AM |
1205 | (lang_statement_union_type **) nextp); |
1206 | return &ret->root; | |
750877ba L |
1207 | } |
1208 | ||
1209 | static void | |
409d7240 | 1210 | output_section_statement_table_init (void) |
750877ba | 1211 | { |
409d7240 AM |
1212 | if (!bfd_hash_table_init_n (&output_section_statement_table, |
1213 | output_section_statement_newfunc, | |
1214 | sizeof (struct out_section_hash_entry), | |
66eb6687 | 1215 | 61)) |
384a9dda | 1216 | einfo (_("%P%F: can not create hash table: %E\n")); |
750877ba L |
1217 | } |
1218 | ||
1219 | static void | |
409d7240 | 1220 | output_section_statement_table_free (void) |
750877ba | 1221 | { |
409d7240 | 1222 | bfd_hash_table_free (&output_section_statement_table); |
750877ba L |
1223 | } |
1224 | ||
08da4cac KH |
1225 | /* Build enough state so that the parser can build its tree. */ |
1226 | ||
252b5132 | 1227 | void |
1579bae1 | 1228 | lang_init (void) |
252b5132 RH |
1229 | { |
1230 | obstack_begin (&stat_obstack, 1000); | |
1231 | ||
1232 | stat_ptr = &statement_list; | |
1233 | ||
409d7240 | 1234 | output_section_statement_table_init (); |
750877ba | 1235 | |
252b5132 RH |
1236 | lang_list_init (stat_ptr); |
1237 | ||
1238 | lang_list_init (&input_file_chain); | |
1239 | lang_list_init (&lang_output_section_statement); | |
1240 | lang_list_init (&file_chain); | |
1579bae1 AM |
1241 | first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum, |
1242 | NULL); | |
08da4cac | 1243 | abs_output_section = |
66c103b7 | 1244 | lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME, 0, TRUE); |
252b5132 RH |
1245 | |
1246 | abs_output_section->bfd_section = bfd_abs_section_ptr; | |
420e579c | 1247 | |
16e4ecc0 AM |
1248 | asneeded_list_head = NULL; |
1249 | asneeded_list_tail = &asneeded_list_head; | |
252b5132 RH |
1250 | } |
1251 | ||
750877ba L |
1252 | void |
1253 | lang_finish (void) | |
1254 | { | |
409d7240 | 1255 | output_section_statement_table_free (); |
750877ba L |
1256 | } |
1257 | ||
252b5132 | 1258 | /*---------------------------------------------------------------------- |
08da4cac KH |
1259 | A region is an area of memory declared with the |
1260 | MEMORY { name:org=exp, len=exp ... } | |
1261 | syntax. | |
252b5132 | 1262 | |
08da4cac | 1263 | We maintain a list of all the regions here. |
252b5132 | 1264 | |
08da4cac | 1265 | If no regions are specified in the script, then the default is used |
a747ee4d NC |
1266 | which is created when looked up to be the entire data space. |
1267 | ||
1268 | If create is true we are creating a region inside a MEMORY block. | |
1269 | In this case it is probably an error to create a region that has | |
1270 | already been created. If we are not inside a MEMORY block it is | |
1271 | dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION) | |
4a93e180 | 1272 | and so we issue a warning. |
1e0061d2 | 1273 | |
4a93e180 NC |
1274 | Each region has at least one name. The first name is either |
1275 | DEFAULT_MEMORY_REGION or the name given in the MEMORY block. You can add | |
1276 | alias names to an existing region within a script with | |
1277 | REGION_ALIAS (alias, region_name). Each name corresponds to at most one | |
1278 | region. */ | |
252b5132 RH |
1279 | |
1280 | static lang_memory_region_type *lang_memory_region_list; | |
6feb9908 AM |
1281 | static lang_memory_region_type **lang_memory_region_list_tail |
1282 | = &lang_memory_region_list; | |
252b5132 RH |
1283 | |
1284 | lang_memory_region_type * | |
a747ee4d | 1285 | lang_memory_region_lookup (const char *const name, bfd_boolean create) |
252b5132 | 1286 | { |
4a93e180 NC |
1287 | lang_memory_region_name *n; |
1288 | lang_memory_region_type *r; | |
d3ce72d0 | 1289 | lang_memory_region_type *new_region; |
252b5132 | 1290 | |
9f88b410 RS |
1291 | /* NAME is NULL for LMA memspecs if no region was specified. */ |
1292 | if (name == NULL) | |
1293 | return NULL; | |
1294 | ||
4a93e180 NC |
1295 | for (r = lang_memory_region_list; r != NULL; r = r->next) |
1296 | for (n = &r->name_list; n != NULL; n = n->next) | |
1297 | if (strcmp (n->name, name) == 0) | |
4724d37e RM |
1298 | { |
1299 | if (create) | |
1300 | einfo (_("%P:%S: warning: redeclaration of memory region `%s'\n"), | |
1301 | NULL, name); | |
1302 | return r; | |
1303 | } | |
252b5132 | 1304 | |
a747ee4d | 1305 | if (!create && strcmp (name, DEFAULT_MEMORY_REGION)) |
dab69f68 AM |
1306 | einfo (_("%P:%S: warning: memory region `%s' not declared\n"), |
1307 | NULL, name); | |
a747ee4d | 1308 | |
d3ce72d0 NC |
1309 | new_region = (lang_memory_region_type *) |
1310 | stat_alloc (sizeof (lang_memory_region_type)); | |
252b5132 | 1311 | |
d3ce72d0 NC |
1312 | new_region->name_list.name = xstrdup (name); |
1313 | new_region->name_list.next = NULL; | |
1314 | new_region->next = NULL; | |
cc9ad334 | 1315 | new_region->origin_exp = NULL; |
d3ce72d0 | 1316 | new_region->origin = 0; |
cc9ad334 | 1317 | new_region->length_exp = NULL; |
d3ce72d0 NC |
1318 | new_region->length = ~(bfd_size_type) 0; |
1319 | new_region->current = 0; | |
1320 | new_region->last_os = NULL; | |
1321 | new_region->flags = 0; | |
1322 | new_region->not_flags = 0; | |
1323 | new_region->had_full_message = FALSE; | |
252b5132 | 1324 | |
d3ce72d0 NC |
1325 | *lang_memory_region_list_tail = new_region; |
1326 | lang_memory_region_list_tail = &new_region->next; | |
66e28d60 | 1327 | |
d3ce72d0 | 1328 | return new_region; |
252b5132 RH |
1329 | } |
1330 | ||
4a93e180 | 1331 | void |
0aa7f586 | 1332 | lang_memory_region_alias (const char *alias, const char *region_name) |
4a93e180 | 1333 | { |
0aa7f586 AM |
1334 | lang_memory_region_name *n; |
1335 | lang_memory_region_type *r; | |
1336 | lang_memory_region_type *region; | |
4a93e180 NC |
1337 | |
1338 | /* The default region must be unique. This ensures that it is not necessary | |
1339 | to iterate through the name list if someone wants the check if a region is | |
1340 | the default memory region. */ | |
1341 | if (strcmp (region_name, DEFAULT_MEMORY_REGION) == 0 | |
1342 | || strcmp (alias, DEFAULT_MEMORY_REGION) == 0) | |
dab69f68 | 1343 | einfo (_("%F%P:%S: error: alias for default memory region\n"), NULL); |
4a93e180 NC |
1344 | |
1345 | /* Look for the target region and check if the alias is not already | |
1346 | in use. */ | |
1347 | region = NULL; | |
1348 | for (r = lang_memory_region_list; r != NULL; r = r->next) | |
1349 | for (n = &r->name_list; n != NULL; n = n->next) | |
1350 | { | |
4724d37e RM |
1351 | if (region == NULL && strcmp (n->name, region_name) == 0) |
1352 | region = r; | |
1353 | if (strcmp (n->name, alias) == 0) | |
1354 | einfo (_("%F%P:%S: error: redefinition of memory region " | |
1355 | "alias `%s'\n"), | |
1356 | NULL, alias); | |
4a93e180 NC |
1357 | } |
1358 | ||
1359 | /* Check if the target region exists. */ | |
1360 | if (region == NULL) | |
1361 | einfo (_("%F%P:%S: error: memory region `%s' " | |
4724d37e RM |
1362 | "for alias `%s' does not exist\n"), |
1363 | NULL, region_name, alias); | |
4a93e180 NC |
1364 | |
1365 | /* Add alias to region name list. */ | |
1e9cc1c2 | 1366 | n = (lang_memory_region_name *) stat_alloc (sizeof (lang_memory_region_name)); |
4a93e180 NC |
1367 | n->name = xstrdup (alias); |
1368 | n->next = region->name_list.next; | |
1369 | region->name_list.next = n; | |
1370 | } | |
1371 | ||
5f992e62 | 1372 | static lang_memory_region_type * |
0aa7f586 | 1373 | lang_memory_default (asection *section) |
252b5132 RH |
1374 | { |
1375 | lang_memory_region_type *p; | |
1376 | ||
1377 | flagword sec_flags = section->flags; | |
1378 | ||
1379 | /* Override SEC_DATA to mean a writable section. */ | |
1380 | if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC) | |
1381 | sec_flags |= SEC_DATA; | |
1382 | ||
1579bae1 | 1383 | for (p = lang_memory_region_list; p != NULL; p = p->next) |
252b5132 RH |
1384 | { |
1385 | if ((p->flags & sec_flags) != 0 | |
1386 | && (p->not_flags & sec_flags) == 0) | |
1387 | { | |
1388 | return p; | |
1389 | } | |
1390 | } | |
a747ee4d | 1391 | return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE); |
252b5132 RH |
1392 | } |
1393 | ||
24ef1aa7 GM |
1394 | /* Get the output section statement directly from the userdata. */ |
1395 | ||
1396 | lang_output_section_statement_type * | |
1397 | lang_output_section_get (const asection *output_section) | |
1398 | { | |
1399 | return get_userdata (output_section); | |
1400 | } | |
1401 | ||
d127ecce AM |
1402 | /* Find or create an output_section_statement with the given NAME. |
1403 | If CONSTRAINT is non-zero match one with that constraint, otherwise | |
1404 | match any non-negative constraint. If CREATE, always make a | |
1405 | new output_section_statement for SPECIAL CONSTRAINT. */ | |
1406 | ||
384a9dda | 1407 | lang_output_section_statement_type * |
d127ecce | 1408 | lang_output_section_statement_lookup (const char *name, |
66c103b7 AM |
1409 | int constraint, |
1410 | bfd_boolean create) | |
252b5132 | 1411 | { |
409d7240 | 1412 | struct out_section_hash_entry *entry; |
252b5132 | 1413 | |
409d7240 AM |
1414 | entry = ((struct out_section_hash_entry *) |
1415 | bfd_hash_lookup (&output_section_statement_table, name, | |
66c103b7 | 1416 | create, FALSE)); |
384a9dda AM |
1417 | if (entry == NULL) |
1418 | { | |
66c103b7 AM |
1419 | if (create) |
1420 | einfo (_("%P%F: failed creating section `%s': %E\n"), name); | |
384a9dda AM |
1421 | return NULL; |
1422 | } | |
252b5132 | 1423 | |
409d7240 | 1424 | if (entry->s.output_section_statement.name != NULL) |
252b5132 | 1425 | { |
384a9dda AM |
1426 | /* We have a section of this name, but it might not have the correct |
1427 | constraint. */ | |
66c103b7 | 1428 | struct out_section_hash_entry *last_ent; |
66c103b7 | 1429 | |
d127ecce | 1430 | name = entry->s.output_section_statement.name; |
8a99a385 AM |
1431 | if (create && constraint == SPECIAL) |
1432 | /* Not traversing to the end reverses the order of the second | |
1433 | and subsequent SPECIAL sections in the hash table chain, | |
1434 | but that shouldn't matter. */ | |
1435 | last_ent = entry; | |
1436 | else | |
1437 | do | |
1438 | { | |
d127ecce AM |
1439 | if (constraint == entry->s.output_section_statement.constraint |
1440 | || (constraint == 0 | |
1441 | && entry->s.output_section_statement.constraint >= 0)) | |
8a99a385 AM |
1442 | return &entry->s.output_section_statement; |
1443 | last_ent = entry; | |
1444 | entry = (struct out_section_hash_entry *) entry->root.next; | |
1445 | } | |
1446 | while (entry != NULL | |
d127ecce | 1447 | && name == entry->s.output_section_statement.name); |
252b5132 | 1448 | |
66c103b7 AM |
1449 | if (!create) |
1450 | return NULL; | |
1451 | ||
409d7240 AM |
1452 | entry |
1453 | = ((struct out_section_hash_entry *) | |
1454 | output_section_statement_newfunc (NULL, | |
1455 | &output_section_statement_table, | |
1456 | name)); | |
750877ba | 1457 | if (entry == NULL) |
384a9dda AM |
1458 | { |
1459 | einfo (_("%P%F: failed creating section `%s': %E\n"), name); | |
1460 | return NULL; | |
1461 | } | |
1462 | entry->root = last_ent->root; | |
1463 | last_ent->root.next = &entry->root; | |
252b5132 | 1464 | } |
384a9dda | 1465 | |
409d7240 AM |
1466 | entry->s.output_section_statement.name = name; |
1467 | entry->s.output_section_statement.constraint = constraint; | |
1468 | return &entry->s.output_section_statement; | |
252b5132 RH |
1469 | } |
1470 | ||
d127ecce AM |
1471 | /* Find the next output_section_statement with the same name as OS. |
1472 | If CONSTRAINT is non-zero, find one with that constraint otherwise | |
1473 | match any non-negative constraint. */ | |
1474 | ||
1475 | lang_output_section_statement_type * | |
1476 | next_matching_output_section_statement (lang_output_section_statement_type *os, | |
1477 | int constraint) | |
1478 | { | |
1479 | /* All output_section_statements are actually part of a | |
1480 | struct out_section_hash_entry. */ | |
1481 | struct out_section_hash_entry *entry = (struct out_section_hash_entry *) | |
1482 | ((char *) os | |
1483 | - offsetof (struct out_section_hash_entry, s.output_section_statement)); | |
1484 | const char *name = os->name; | |
1485 | ||
1486 | ASSERT (name == entry->root.string); | |
1487 | do | |
1488 | { | |
1489 | entry = (struct out_section_hash_entry *) entry->root.next; | |
1490 | if (entry == NULL | |
1491 | || name != entry->s.output_section_statement.name) | |
1492 | return NULL; | |
1493 | } | |
1494 | while (constraint != entry->s.output_section_statement.constraint | |
1495 | && (constraint != 0 | |
1496 | || entry->s.output_section_statement.constraint < 0)); | |
1497 | ||
1498 | return &entry->s.output_section_statement; | |
1499 | } | |
1500 | ||
afd7a018 AM |
1501 | /* A variant of lang_output_section_find used by place_orphan. |
1502 | Returns the output statement that should precede a new output | |
1503 | statement for SEC. If an exact match is found on certain flags, | |
1504 | sets *EXACT too. */ | |
1505 | ||
1506 | lang_output_section_statement_type * | |
1507 | lang_output_section_find_by_flags (const asection *sec, | |
93638471 | 1508 | flagword sec_flags, |
390fbbf1 AM |
1509 | lang_output_section_statement_type **exact, |
1510 | lang_match_sec_type_func match_type) | |
afd7a018 AM |
1511 | { |
1512 | lang_output_section_statement_type *first, *look, *found; | |
93638471 | 1513 | flagword look_flags, differ; |
afd7a018 AM |
1514 | |
1515 | /* We know the first statement on this list is *ABS*. May as well | |
1516 | skip it. */ | |
1517 | first = &lang_output_section_statement.head->output_section_statement; | |
1518 | first = first->next; | |
1519 | ||
1520 | /* First try for an exact match. */ | |
1521 | found = NULL; | |
1522 | for (look = first; look; look = look->next) | |
1523 | { | |
d9d94ac8 | 1524 | look_flags = look->flags; |
afd7a018 | 1525 | if (look->bfd_section != NULL) |
ecca9871 | 1526 | { |
d9d94ac8 | 1527 | look_flags = look->bfd_section->flags; |
f13a99db AM |
1528 | if (match_type && !match_type (link_info.output_bfd, |
1529 | look->bfd_section, | |
390fbbf1 | 1530 | sec->owner, sec)) |
ecca9871 L |
1531 | continue; |
1532 | } | |
d9d94ac8 AM |
1533 | differ = look_flags ^ sec_flags; |
1534 | if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | |
1535 | | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL))) | |
afd7a018 AM |
1536 | found = look; |
1537 | } | |
1538 | if (found != NULL) | |
1539 | { | |
390fbbf1 AM |
1540 | if (exact != NULL) |
1541 | *exact = found; | |
afd7a018 AM |
1542 | return found; |
1543 | } | |
1544 | ||
d9d94ac8 AM |
1545 | if ((sec_flags & SEC_CODE) != 0 |
1546 | && (sec_flags & SEC_ALLOC) != 0) | |
afd7a018 AM |
1547 | { |
1548 | /* Try for a rw code section. */ | |
1549 | for (look = first; look; look = look->next) | |
1550 | { | |
d9d94ac8 | 1551 | look_flags = look->flags; |
afd7a018 | 1552 | if (look->bfd_section != NULL) |
ecca9871 | 1553 | { |
d9d94ac8 | 1554 | look_flags = look->bfd_section->flags; |
f13a99db AM |
1555 | if (match_type && !match_type (link_info.output_bfd, |
1556 | look->bfd_section, | |
390fbbf1 | 1557 | sec->owner, sec)) |
ecca9871 L |
1558 | continue; |
1559 | } | |
d9d94ac8 AM |
1560 | differ = look_flags ^ sec_flags; |
1561 | if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | |
1562 | | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL))) | |
afd7a018 AM |
1563 | found = look; |
1564 | } | |
afd7a018 | 1565 | } |
d9d94ac8 AM |
1566 | else if ((sec_flags & SEC_READONLY) != 0 |
1567 | && (sec_flags & SEC_ALLOC) != 0) | |
afd7a018 AM |
1568 | { |
1569 | /* .rodata can go after .text, .sdata2 after .rodata. */ | |
1570 | for (look = first; look; look = look->next) | |
1571 | { | |
d9d94ac8 | 1572 | look_flags = look->flags; |
afd7a018 | 1573 | if (look->bfd_section != NULL) |
ecca9871 | 1574 | { |
d9d94ac8 | 1575 | look_flags = look->bfd_section->flags; |
f13a99db AM |
1576 | if (match_type && !match_type (link_info.output_bfd, |
1577 | look->bfd_section, | |
390fbbf1 | 1578 | sec->owner, sec)) |
ecca9871 L |
1579 | continue; |
1580 | } | |
d9d94ac8 AM |
1581 | differ = look_flags ^ sec_flags; |
1582 | if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | |
1583 | | SEC_READONLY | SEC_SMALL_DATA)) | |
1584 | || (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | |
1585 | | SEC_READONLY)) | |
1586 | && !(look_flags & SEC_SMALL_DATA))) | |
afd7a018 AM |
1587 | found = look; |
1588 | } | |
afd7a018 | 1589 | } |
d9d94ac8 AM |
1590 | else if ((sec_flags & SEC_THREAD_LOCAL) != 0 |
1591 | && (sec_flags & SEC_ALLOC) != 0) | |
1592 | { | |
1593 | /* .tdata can go after .data, .tbss after .tdata. Treat .tbss | |
1594 | as if it were a loaded section, and don't use match_type. */ | |
1595 | bfd_boolean seen_thread_local = FALSE; | |
1596 | ||
1597 | match_type = NULL; | |
1598 | for (look = first; look; look = look->next) | |
1599 | { | |
1600 | look_flags = look->flags; | |
1601 | if (look->bfd_section != NULL) | |
1602 | look_flags = look->bfd_section->flags; | |
1603 | ||
1604 | differ = look_flags ^ (sec_flags | SEC_LOAD | SEC_HAS_CONTENTS); | |
1605 | if (!(differ & (SEC_THREAD_LOCAL | SEC_ALLOC))) | |
1606 | { | |
1607 | /* .tdata and .tbss must be adjacent and in that order. */ | |
1608 | if (!(look_flags & SEC_LOAD) | |
1609 | && (sec_flags & SEC_LOAD)) | |
1610 | /* ..so if we're at a .tbss section and we're placing | |
1611 | a .tdata section stop looking and return the | |
1612 | previous section. */ | |
1613 | break; | |
1614 | found = look; | |
1615 | seen_thread_local = TRUE; | |
1616 | } | |
1617 | else if (seen_thread_local) | |
1618 | break; | |
1619 | else if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD))) | |
1620 | found = look; | |
1621 | } | |
1622 | } | |
1623 | else if ((sec_flags & SEC_SMALL_DATA) != 0 | |
1624 | && (sec_flags & SEC_ALLOC) != 0) | |
afd7a018 AM |
1625 | { |
1626 | /* .sdata goes after .data, .sbss after .sdata. */ | |
1627 | for (look = first; look; look = look->next) | |
1628 | { | |
d9d94ac8 | 1629 | look_flags = look->flags; |
afd7a018 | 1630 | if (look->bfd_section != NULL) |
ecca9871 | 1631 | { |
d9d94ac8 | 1632 | look_flags = look->bfd_section->flags; |
f13a99db AM |
1633 | if (match_type && !match_type (link_info.output_bfd, |
1634 | look->bfd_section, | |
390fbbf1 | 1635 | sec->owner, sec)) |
ecca9871 L |
1636 | continue; |
1637 | } | |
d9d94ac8 AM |
1638 | differ = look_flags ^ sec_flags; |
1639 | if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | |
1640 | | SEC_THREAD_LOCAL)) | |
1641 | || ((look_flags & SEC_SMALL_DATA) | |
1642 | && !(sec_flags & SEC_HAS_CONTENTS))) | |
afd7a018 AM |
1643 | found = look; |
1644 | } | |
afd7a018 | 1645 | } |
d9d94ac8 AM |
1646 | else if ((sec_flags & SEC_HAS_CONTENTS) != 0 |
1647 | && (sec_flags & SEC_ALLOC) != 0) | |
afd7a018 AM |
1648 | { |
1649 | /* .data goes after .rodata. */ | |
1650 | for (look = first; look; look = look->next) | |
1651 | { | |
d9d94ac8 | 1652 | look_flags = look->flags; |
afd7a018 | 1653 | if (look->bfd_section != NULL) |
ecca9871 | 1654 | { |
d9d94ac8 | 1655 | look_flags = look->bfd_section->flags; |
f13a99db AM |
1656 | if (match_type && !match_type (link_info.output_bfd, |
1657 | look->bfd_section, | |
390fbbf1 | 1658 | sec->owner, sec)) |
ecca9871 L |
1659 | continue; |
1660 | } | |
d9d94ac8 AM |
1661 | differ = look_flags ^ sec_flags; |
1662 | if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | |
1663 | | SEC_SMALL_DATA | SEC_THREAD_LOCAL))) | |
afd7a018 AM |
1664 | found = look; |
1665 | } | |
afd7a018 | 1666 | } |
d9d94ac8 | 1667 | else if ((sec_flags & SEC_ALLOC) != 0) |
afd7a018 | 1668 | { |
07890c07 | 1669 | /* .bss goes after any other alloc section. */ |
390fbbf1 | 1670 | for (look = first; look; look = look->next) |
ecca9871 | 1671 | { |
d9d94ac8 | 1672 | look_flags = look->flags; |
390fbbf1 AM |
1673 | if (look->bfd_section != NULL) |
1674 | { | |
d9d94ac8 | 1675 | look_flags = look->bfd_section->flags; |
f13a99db AM |
1676 | if (match_type && !match_type (link_info.output_bfd, |
1677 | look->bfd_section, | |
390fbbf1 AM |
1678 | sec->owner, sec)) |
1679 | continue; | |
1680 | } | |
d9d94ac8 AM |
1681 | differ = look_flags ^ sec_flags; |
1682 | if (!(differ & SEC_ALLOC)) | |
390fbbf1 | 1683 | found = look; |
ecca9871 | 1684 | } |
afd7a018 | 1685 | } |
07890c07 AM |
1686 | else |
1687 | { | |
1688 | /* non-alloc go last. */ | |
1689 | for (look = first; look; look = look->next) | |
1690 | { | |
d9d94ac8 | 1691 | look_flags = look->flags; |
07890c07 | 1692 | if (look->bfd_section != NULL) |
d9d94ac8 AM |
1693 | look_flags = look->bfd_section->flags; |
1694 | differ = look_flags ^ sec_flags; | |
1695 | if (!(differ & SEC_DEBUGGING)) | |
07890c07 AM |
1696 | found = look; |
1697 | } | |
1698 | return found; | |
1699 | } | |
afd7a018 | 1700 | |
390fbbf1 AM |
1701 | if (found || !match_type) |
1702 | return found; | |
1703 | ||
93638471 | 1704 | return lang_output_section_find_by_flags (sec, sec_flags, NULL, NULL); |
afd7a018 AM |
1705 | } |
1706 | ||
1707 | /* Find the last output section before given output statement. | |
1708 | Used by place_orphan. */ | |
1709 | ||
1710 | static asection * | |
1711 | output_prev_sec_find (lang_output_section_statement_type *os) | |
1712 | { | |
afd7a018 AM |
1713 | lang_output_section_statement_type *lookup; |
1714 | ||
218868ba | 1715 | for (lookup = os->prev; lookup != NULL; lookup = lookup->prev) |
afd7a018 | 1716 | { |
66c103b7 | 1717 | if (lookup->constraint < 0) |
afd7a018 | 1718 | continue; |
afd7a018 AM |
1719 | |
1720 | if (lookup->bfd_section != NULL && lookup->bfd_section->owner != NULL) | |
218868ba | 1721 | return lookup->bfd_section; |
afd7a018 AM |
1722 | } |
1723 | ||
1724 | return NULL; | |
1725 | } | |
1726 | ||
53d25da6 AM |
1727 | /* Look for a suitable place for a new output section statement. The |
1728 | idea is to skip over anything that might be inside a SECTIONS {} | |
1729 | statement in a script, before we find another output section | |
1730 | statement. Assignments to "dot" before an output section statement | |
0fa4d7cf AM |
1731 | are assumed to belong to it, except in two cases; The first |
1732 | assignment to dot, and assignments before non-alloc sections. | |
1733 | Otherwise we might put an orphan before . = . + SIZEOF_HEADERS or | |
1734 | similar assignments that set the initial address, or we might | |
1735 | insert non-alloc note sections among assignments setting end of | |
1736 | image symbols. */ | |
53d25da6 AM |
1737 | |
1738 | static lang_statement_union_type ** | |
1739 | insert_os_after (lang_output_section_statement_type *after) | |
1740 | { | |
1741 | lang_statement_union_type **where; | |
1742 | lang_statement_union_type **assign = NULL; | |
1743 | bfd_boolean ignore_first; | |
1744 | ||
1745 | ignore_first | |
1746 | = after == &lang_output_section_statement.head->output_section_statement; | |
1747 | ||
1748 | for (where = &after->header.next; | |
1749 | *where != NULL; | |
1750 | where = &(*where)->header.next) | |
1751 | { | |
1752 | switch ((*where)->header.type) | |
1753 | { | |
1754 | case lang_assignment_statement_enum: | |
1755 | if (assign == NULL) | |
1756 | { | |
1757 | lang_assignment_statement_type *ass; | |
1758 | ||
1759 | ass = &(*where)->assignment_statement; | |
1760 | if (ass->exp->type.node_class != etree_assert | |
1761 | && ass->exp->assign.dst[0] == '.' | |
1762 | && ass->exp->assign.dst[1] == 0 | |
1763 | && !ignore_first) | |
1764 | assign = where; | |
1765 | } | |
1766 | ignore_first = FALSE; | |
1767 | continue; | |
1768 | case lang_wild_statement_enum: | |
1769 | case lang_input_section_enum: | |
1770 | case lang_object_symbols_statement_enum: | |
1771 | case lang_fill_statement_enum: | |
1772 | case lang_data_statement_enum: | |
1773 | case lang_reloc_statement_enum: | |
1774 | case lang_padding_statement_enum: | |
1775 | case lang_constructors_statement_enum: | |
1776 | assign = NULL; | |
1777 | continue; | |
1778 | case lang_output_section_statement_enum: | |
1779 | if (assign != NULL) | |
0fa4d7cf AM |
1780 | { |
1781 | asection *s = (*where)->output_section_statement.bfd_section; | |
1782 | ||
249b2a84 L |
1783 | if (s == NULL |
1784 | || s->map_head.s == NULL | |
1785 | || (s->flags & SEC_ALLOC) != 0) | |
0fa4d7cf AM |
1786 | where = assign; |
1787 | } | |
53d25da6 AM |
1788 | break; |
1789 | case lang_input_statement_enum: | |
1790 | case lang_address_statement_enum: | |
1791 | case lang_target_statement_enum: | |
1792 | case lang_output_statement_enum: | |
1793 | case lang_group_statement_enum: | |
1794 | case lang_insert_statement_enum: | |
1795 | continue; | |
1796 | } | |
1797 | break; | |
1798 | } | |
1799 | ||
1800 | return where; | |
1801 | } | |
1802 | ||
afd7a018 | 1803 | lang_output_section_statement_type * |
7b986e99 | 1804 | lang_insert_orphan (asection *s, |
afd7a018 | 1805 | const char *secname, |
8a99a385 | 1806 | int constraint, |
afd7a018 AM |
1807 | lang_output_section_statement_type *after, |
1808 | struct orphan_save *place, | |
1809 | etree_type *address, | |
1810 | lang_statement_list_type *add_child) | |
1811 | { | |
afd7a018 AM |
1812 | lang_statement_list_type add; |
1813 | const char *ps; | |
321df065 | 1814 | lang_assignment_statement_type *start_assign; |
afd7a018 AM |
1815 | lang_output_section_statement_type *os; |
1816 | lang_output_section_statement_type **os_tail; | |
1817 | ||
afd7a018 AM |
1818 | /* If we have found an appropriate place for the output section |
1819 | statements for this orphan, add them to our own private list, | |
1820 | inserting them later into the global statement list. */ | |
1821 | if (after != NULL) | |
1822 | { | |
bde18da4 AM |
1823 | lang_list_init (&add); |
1824 | push_stat_ptr (&add); | |
afd7a018 AM |
1825 | } |
1826 | ||
0e1862bb L |
1827 | if (bfd_link_relocatable (&link_info) |
1828 | || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0) | |
011aa75f AM |
1829 | address = exp_intop (0); |
1830 | ||
1831 | os_tail = ((lang_output_section_statement_type **) | |
1832 | lang_output_section_statement.tail); | |
1e9cc1c2 | 1833 | os = lang_enter_output_section_statement (secname, address, normal_section, |
1eec346e | 1834 | NULL, NULL, NULL, constraint, 0); |
011aa75f | 1835 | |
afd7a018 | 1836 | ps = NULL; |
321df065 | 1837 | start_assign = NULL; |
011aa75f | 1838 | if (config.build_constructors && *os_tail == os) |
afd7a018 AM |
1839 | { |
1840 | /* If the name of the section is representable in C, then create | |
1841 | symbols to mark the start and the end of the section. */ | |
1842 | for (ps = secname; *ps != '\0'; ps++) | |
0aa7f586 | 1843 | if (!ISALNUM ((unsigned char) *ps) && *ps != '_') |
afd7a018 AM |
1844 | break; |
1845 | if (*ps == '\0') | |
1846 | { | |
1847 | char *symname; | |
afd7a018 AM |
1848 | |
1849 | symname = (char *) xmalloc (ps - secname + sizeof "__start_" + 1); | |
f13a99db | 1850 | symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd); |
afd7a018 | 1851 | sprintf (symname + (symname[0] != 0), "__start_%s", secname); |
321df065 AM |
1852 | start_assign |
1853 | = lang_add_assignment (exp_provide (symname, | |
1854 | exp_nameop (NAME, "."), | |
1855 | FALSE)); | |
afd7a018 AM |
1856 | } |
1857 | } | |
1858 | ||
afd7a018 AM |
1859 | if (add_child == NULL) |
1860 | add_child = &os->children; | |
b9c361e0 | 1861 | lang_add_section (add_child, s, NULL, os); |
afd7a018 | 1862 | |
f77c3948 DJ |
1863 | if (after && (s->flags & (SEC_LOAD | SEC_ALLOC)) != 0) |
1864 | { | |
1865 | const char *region = (after->region | |
1866 | ? after->region->name_list.name | |
1867 | : DEFAULT_MEMORY_REGION); | |
1868 | const char *lma_region = (after->lma_region | |
1869 | ? after->lma_region->name_list.name | |
1870 | : NULL); | |
1871 | lang_leave_output_section_statement (NULL, region, after->phdrs, | |
1872 | lma_region); | |
1873 | } | |
1874 | else | |
1875 | lang_leave_output_section_statement (NULL, DEFAULT_MEMORY_REGION, NULL, | |
1876 | NULL); | |
afd7a018 | 1877 | |
321df065 | 1878 | if (start_assign != NULL) |
afd7a018 AM |
1879 | { |
1880 | char *symname; | |
321df065 AM |
1881 | lang_assignment_statement_type *stop_assign; |
1882 | bfd_vma dot; | |
afd7a018 | 1883 | |
afd7a018 | 1884 | symname = (char *) xmalloc (ps - secname + sizeof "__stop_" + 1); |
f13a99db | 1885 | symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd); |
afd7a018 | 1886 | sprintf (symname + (symname[0] != 0), "__stop_%s", secname); |
321df065 AM |
1887 | stop_assign |
1888 | = lang_add_assignment (exp_provide (symname, | |
1889 | exp_nameop (NAME, "."), | |
1890 | FALSE)); | |
1891 | /* Evaluate the expression to define the symbol if referenced, | |
1892 | before sizing dynamic sections. */ | |
1893 | dot = os->bfd_section->vma; | |
1894 | exp_fold_tree (start_assign->exp, os->bfd_section, &dot); | |
fc90c280 | 1895 | dot += TO_ADDR (s->size); |
321df065 | 1896 | exp_fold_tree (stop_assign->exp, os->bfd_section, &dot); |
afd7a018 AM |
1897 | } |
1898 | ||
1899 | /* Restore the global list pointer. */ | |
1900 | if (after != NULL) | |
bde18da4 | 1901 | pop_stat_ptr (); |
afd7a018 AM |
1902 | |
1903 | if (after != NULL && os->bfd_section != NULL) | |
1904 | { | |
5daa8fe7 | 1905 | asection *snew, *as; |
afd7a018 AM |
1906 | |
1907 | snew = os->bfd_section; | |
1908 | ||
1909 | /* Shuffle the bfd section list to make the output file look | |
1910 | neater. This is really only cosmetic. */ | |
1911 | if (place->section == NULL | |
1912 | && after != (&lang_output_section_statement.head | |
1913 | ->output_section_statement)) | |
1914 | { | |
1915 | asection *bfd_section = after->bfd_section; | |
1916 | ||
1917 | /* If the output statement hasn't been used to place any input | |
1918 | sections (and thus doesn't have an output bfd_section), | |
1919 | look for the closest prior output statement having an | |
1920 | output section. */ | |
1921 | if (bfd_section == NULL) | |
1922 | bfd_section = output_prev_sec_find (after); | |
1923 | ||
1924 | if (bfd_section != NULL && bfd_section != snew) | |
1925 | place->section = &bfd_section->next; | |
1926 | } | |
1927 | ||
1928 | if (place->section == NULL) | |
f13a99db | 1929 | place->section = &link_info.output_bfd->sections; |
afd7a018 | 1930 | |
5daa8fe7 | 1931 | as = *place->section; |
5e542ba7 MS |
1932 | |
1933 | if (!as) | |
329c1c86 AM |
1934 | { |
1935 | /* Put the section at the end of the list. */ | |
5e542ba7 MS |
1936 | |
1937 | /* Unlink the section. */ | |
f13a99db | 1938 | bfd_section_list_remove (link_info.output_bfd, snew); |
5e542ba7 MS |
1939 | |
1940 | /* Now tack it back on in the right place. */ | |
f13a99db | 1941 | bfd_section_list_append (link_info.output_bfd, snew); |
329c1c86 | 1942 | } |
5e542ba7 | 1943 | else if (as != snew && as->prev != snew) |
5daa8fe7 L |
1944 | { |
1945 | /* Unlink the section. */ | |
f13a99db | 1946 | bfd_section_list_remove (link_info.output_bfd, snew); |
afd7a018 | 1947 | |
5daa8fe7 | 1948 | /* Now tack it back on in the right place. */ |
f13a99db | 1949 | bfd_section_list_insert_before (link_info.output_bfd, as, snew); |
5daa8fe7 | 1950 | } |
afd7a018 AM |
1951 | |
1952 | /* Save the end of this list. Further ophans of this type will | |
1953 | follow the one we've just added. */ | |
1954 | place->section = &snew->next; | |
1955 | ||
1956 | /* The following is non-cosmetic. We try to put the output | |
1957 | statements in some sort of reasonable order here, because they | |
1958 | determine the final load addresses of the orphan sections. | |
1959 | In addition, placing output statements in the wrong order may | |
1960 | require extra segments. For instance, given a typical | |
1961 | situation of all read-only sections placed in one segment and | |
1962 | following that a segment containing all the read-write | |
1963 | sections, we wouldn't want to place an orphan read/write | |
1964 | section before or amongst the read-only ones. */ | |
1965 | if (add.head != NULL) | |
1966 | { | |
1967 | lang_output_section_statement_type *newly_added_os; | |
1968 | ||
1969 | if (place->stmt == NULL) | |
1970 | { | |
53d25da6 | 1971 | lang_statement_union_type **where = insert_os_after (after); |
afd7a018 AM |
1972 | |
1973 | *add.tail = *where; | |
1974 | *where = add.head; | |
1975 | ||
1976 | place->os_tail = &after->next; | |
1977 | } | |
1978 | else | |
1979 | { | |
1980 | /* Put it after the last orphan statement we added. */ | |
1981 | *add.tail = *place->stmt; | |
1982 | *place->stmt = add.head; | |
1983 | } | |
1984 | ||
1985 | /* Fix the global list pointer if we happened to tack our | |
1986 | new list at the tail. */ | |
bde18da4 AM |
1987 | if (*stat_ptr->tail == add.head) |
1988 | stat_ptr->tail = add.tail; | |
afd7a018 AM |
1989 | |
1990 | /* Save the end of this list. */ | |
1991 | place->stmt = add.tail; | |
1992 | ||
1993 | /* Do the same for the list of output section statements. */ | |
1994 | newly_added_os = *os_tail; | |
1995 | *os_tail = NULL; | |
218868ba AM |
1996 | newly_added_os->prev = (lang_output_section_statement_type *) |
1997 | ((char *) place->os_tail | |
1998 | - offsetof (lang_output_section_statement_type, next)); | |
afd7a018 | 1999 | newly_added_os->next = *place->os_tail; |
218868ba AM |
2000 | if (newly_added_os->next != NULL) |
2001 | newly_added_os->next->prev = newly_added_os; | |
afd7a018 AM |
2002 | *place->os_tail = newly_added_os; |
2003 | place->os_tail = &newly_added_os->next; | |
2004 | ||
2005 | /* Fixing the global list pointer here is a little different. | |
2006 | We added to the list in lang_enter_output_section_statement, | |
2007 | trimmed off the new output_section_statment above when | |
2008 | assigning *os_tail = NULL, but possibly added it back in | |
2009 | the same place when assigning *place->os_tail. */ | |
2010 | if (*os_tail == NULL) | |
2011 | lang_output_section_statement.tail | |
2012 | = (lang_statement_union_type **) os_tail; | |
2013 | } | |
2014 | } | |
2015 | return os; | |
2016 | } | |
2017 | ||
16e4ecc0 AM |
2018 | static void |
2019 | lang_print_asneeded (void) | |
2020 | { | |
2021 | struct asneeded_minfo *m; | |
2022 | char buf[100]; | |
2023 | ||
2024 | if (asneeded_list_head == NULL) | |
2025 | return; | |
2026 | ||
2027 | sprintf (buf, _("\nAs-needed library included " | |
2028 | "to satisfy reference by file (symbol)\n\n")); | |
2029 | minfo ("%s", buf); | |
2030 | ||
2031 | for (m = asneeded_list_head; m != NULL; m = m->next) | |
2032 | { | |
2033 | size_t len; | |
2034 | ||
2035 | minfo ("%s", m->soname); | |
2036 | len = strlen (m->soname); | |
2037 | ||
2038 | if (len >= 29) | |
2039 | { | |
2040 | print_nl (); | |
2041 | len = 0; | |
2042 | } | |
2043 | while (len < 30) | |
2044 | { | |
2045 | print_space (); | |
2046 | ++len; | |
2047 | } | |
2048 | ||
2049 | if (m->ref != NULL) | |
2050 | minfo ("%B ", m->ref); | |
2051 | minfo ("(%T)\n", m->name); | |
2052 | } | |
2053 | } | |
2054 | ||
252b5132 | 2055 | static void |
1579bae1 | 2056 | lang_map_flags (flagword flag) |
252b5132 RH |
2057 | { |
2058 | if (flag & SEC_ALLOC) | |
2059 | minfo ("a"); | |
2060 | ||
2061 | if (flag & SEC_CODE) | |
2062 | minfo ("x"); | |
2063 | ||
2064 | if (flag & SEC_READONLY) | |
2065 | minfo ("r"); | |
2066 | ||
2067 | if (flag & SEC_DATA) | |
2068 | minfo ("w"); | |
2069 | ||
2070 | if (flag & SEC_LOAD) | |
2071 | minfo ("l"); | |
2072 | } | |
2073 | ||
2074 | void | |
1579bae1 | 2075 | lang_map (void) |
252b5132 RH |
2076 | { |
2077 | lang_memory_region_type *m; | |
4d4920ec | 2078 | bfd_boolean dis_header_printed = FALSE; |
252b5132 | 2079 | |
4d4920ec EB |
2080 | LANG_FOR_EACH_INPUT_STATEMENT (file) |
2081 | { | |
2082 | asection *s; | |
2083 | ||
2084 | if ((file->the_bfd->flags & (BFD_LINKER_CREATED | DYNAMIC)) != 0 | |
66be1055 | 2085 | || file->flags.just_syms) |
4d4920ec EB |
2086 | continue; |
2087 | ||
2088 | for (s = file->the_bfd->sections; s != NULL; s = s->next) | |
a14a5de3 | 2089 | if ((s->output_section == NULL |
f13a99db | 2090 | || s->output_section->owner != link_info.output_bfd) |
a14a5de3 | 2091 | && (s->flags & (SEC_LINKER_CREATED | SEC_KEEP)) == 0) |
4d4920ec | 2092 | { |
0aa7f586 | 2093 | if (!dis_header_printed) |
4d4920ec EB |
2094 | { |
2095 | fprintf (config.map_file, _("\nDiscarded input sections\n\n")); | |
2096 | dis_header_printed = TRUE; | |
2097 | } | |
2098 | ||
d64703c6 | 2099 | print_input_section (s, TRUE); |
4d4920ec EB |
2100 | } |
2101 | } | |
2102 | ||
252b5132 RH |
2103 | minfo (_("\nMemory Configuration\n\n")); |
2104 | fprintf (config.map_file, "%-16s %-18s %-18s %s\n", | |
2105 | _("Name"), _("Origin"), _("Length"), _("Attributes")); | |
2106 | ||
1579bae1 | 2107 | for (m = lang_memory_region_list; m != NULL; m = m->next) |
252b5132 RH |
2108 | { |
2109 | char buf[100]; | |
2110 | int len; | |
2111 | ||
4a93e180 | 2112 | fprintf (config.map_file, "%-16s ", m->name_list.name); |
252b5132 RH |
2113 | |
2114 | sprintf_vma (buf, m->origin); | |
2115 | minfo ("0x%s ", buf); | |
2116 | len = strlen (buf); | |
2117 | while (len < 16) | |
2118 | { | |
2119 | print_space (); | |
2120 | ++len; | |
2121 | } | |
2122 | ||
2123 | minfo ("0x%V", m->length); | |
2124 | if (m->flags || m->not_flags) | |
2125 | { | |
2126 | #ifndef BFD64 | |
2127 | minfo (" "); | |
2128 | #endif | |
2129 | if (m->flags) | |
2130 | { | |
2131 | print_space (); | |
2132 | lang_map_flags (m->flags); | |
2133 | } | |
2134 | ||
2135 | if (m->not_flags) | |
2136 | { | |
2137 | minfo (" !"); | |
2138 | lang_map_flags (m->not_flags); | |
2139 | } | |
2140 | } | |
2141 | ||
2142 | print_nl (); | |
2143 | } | |
2144 | ||
2145 | fprintf (config.map_file, _("\nLinker script and memory map\n\n")); | |
2146 | ||
0aa7f586 | 2147 | if (!link_info.reduce_memory_overheads) |
35835446 JR |
2148 | { |
2149 | obstack_begin (&map_obstack, 1000); | |
35835446 JR |
2150 | bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0); |
2151 | } | |
fa72205c | 2152 | lang_statement_iteration++; |
252b5132 | 2153 | print_statements (); |
7a2f2d82 | 2154 | |
0aa7f586 AM |
2155 | ldemul_extra_map_file_text (link_info.output_bfd, &link_info, |
2156 | config.map_file); | |
252b5132 RH |
2157 | } |
2158 | ||
35835446 | 2159 | static bfd_boolean |
967928e9 AM |
2160 | sort_def_symbol (struct bfd_link_hash_entry *hash_entry, |
2161 | void *info ATTRIBUTE_UNUSED) | |
35835446 | 2162 | { |
6fcc66ab AM |
2163 | if ((hash_entry->type == bfd_link_hash_defined |
2164 | || hash_entry->type == bfd_link_hash_defweak) | |
2165 | && hash_entry->u.def.section->owner != link_info.output_bfd | |
2166 | && hash_entry->u.def.section->owner != NULL) | |
35835446 | 2167 | { |
6fcc66ab | 2168 | input_section_userdata_type *ud; |
35835446 JR |
2169 | struct map_symbol_def *def; |
2170 | ||
6fcc66ab AM |
2171 | ud = ((input_section_userdata_type *) |
2172 | get_userdata (hash_entry->u.def.section)); | |
2173 | if (!ud) | |
35835446 | 2174 | { |
6fcc66ab AM |
2175 | ud = (input_section_userdata_type *) stat_alloc (sizeof (*ud)); |
2176 | get_userdata (hash_entry->u.def.section) = ud; | |
2177 | ud->map_symbol_def_tail = &ud->map_symbol_def_head; | |
2178 | ud->map_symbol_def_count = 0; | |
35835446 | 2179 | } |
6fcc66ab | 2180 | else if (!ud->map_symbol_def_tail) |
35835446 | 2181 | ud->map_symbol_def_tail = &ud->map_symbol_def_head; |
afd7a018 | 2182 | |
1e9cc1c2 | 2183 | def = (struct map_symbol_def *) obstack_alloc (&map_obstack, sizeof *def); |
35835446 | 2184 | def->entry = hash_entry; |
76d7af2d | 2185 | *(ud->map_symbol_def_tail) = def; |
35835446 | 2186 | ud->map_symbol_def_tail = &def->next; |
02688209 | 2187 | ud->map_symbol_def_count++; |
35835446 JR |
2188 | } |
2189 | return TRUE; | |
2190 | } | |
2191 | ||
252b5132 RH |
2192 | /* Initialize an output section. */ |
2193 | ||
2194 | static void | |
dfa7b0b8 | 2195 | init_os (lang_output_section_statement_type *s, flagword flags) |
252b5132 | 2196 | { |
252b5132 | 2197 | if (strcmp (s->name, DISCARD_SECTION_NAME) == 0) |
6f9efd97 | 2198 | einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME); |
252b5132 | 2199 | |
8a99a385 AM |
2200 | if (s->constraint != SPECIAL) |
2201 | s->bfd_section = bfd_get_section_by_name (link_info.output_bfd, s->name); | |
1579bae1 | 2202 | if (s->bfd_section == NULL) |
8a99a385 AM |
2203 | s->bfd_section = bfd_make_section_anyway_with_flags (link_info.output_bfd, |
2204 | s->name, flags); | |
1579bae1 | 2205 | if (s->bfd_section == NULL) |
252b5132 | 2206 | { |
0aa7f586 AM |
2207 | einfo (_("%P%F: output format %s cannot represent section" |
2208 | " called %s: %E\n"), | |
f13a99db | 2209 | link_info.output_bfd->xvec->name, s->name); |
252b5132 RH |
2210 | } |
2211 | s->bfd_section->output_section = s->bfd_section; | |
252b5132 | 2212 | s->bfd_section->output_offset = 0; |
e0f6802f | 2213 | |
24ef1aa7 GM |
2214 | /* Set the userdata of the output section to the output section |
2215 | statement to avoid lookup. */ | |
2216 | get_userdata (s->bfd_section) = s; | |
2217 | ||
a431bc2e AM |
2218 | /* If there is a base address, make sure that any sections it might |
2219 | mention are initialized. */ | |
2220 | if (s->addr_tree != NULL) | |
2221 | exp_init_os (s->addr_tree); | |
2222 | ||
2223 | if (s->load_base != NULL) | |
2224 | exp_init_os (s->load_base); | |
2225 | ||
7270c5ed AM |
2226 | /* If supplied an alignment, set it. */ |
2227 | if (s->section_alignment != -1) | |
2228 | s->bfd_section->alignment_power = s->section_alignment; | |
252b5132 RH |
2229 | } |
2230 | ||
2231 | /* Make sure that all output sections mentioned in an expression are | |
2232 | initialized. */ | |
2233 | ||
2234 | static void | |
1579bae1 | 2235 | exp_init_os (etree_type *exp) |
252b5132 RH |
2236 | { |
2237 | switch (exp->type.node_class) | |
2238 | { | |
2239 | case etree_assign: | |
9f4fb502 | 2240 | case etree_provide: |
252b5132 RH |
2241 | exp_init_os (exp->assign.src); |
2242 | break; | |
2243 | ||
2244 | case etree_binary: | |
2245 | exp_init_os (exp->binary.lhs); | |
2246 | exp_init_os (exp->binary.rhs); | |
2247 | break; | |
2248 | ||
2249 | case etree_trinary: | |
2250 | exp_init_os (exp->trinary.cond); | |
2251 | exp_init_os (exp->trinary.lhs); | |
2252 | exp_init_os (exp->trinary.rhs); | |
2253 | break; | |
2254 | ||
b6ca8815 NS |
2255 | case etree_assert: |
2256 | exp_init_os (exp->assert_s.child); | |
2257 | break; | |
afd7a018 | 2258 | |
252b5132 RH |
2259 | case etree_unary: |
2260 | exp_init_os (exp->unary.child); | |
2261 | break; | |
2262 | ||
2263 | case etree_name: | |
2264 | switch (exp->type.node_code) | |
2265 | { | |
2266 | case ADDR: | |
2267 | case LOADADDR: | |
2268 | case SIZEOF: | |
2269 | { | |
2270 | lang_output_section_statement_type *os; | |
2271 | ||
2272 | os = lang_output_section_find (exp->name.name); | |
2273 | if (os != NULL && os->bfd_section == NULL) | |
dfa7b0b8 | 2274 | init_os (os, 0); |
252b5132 RH |
2275 | } |
2276 | } | |
2277 | break; | |
2278 | ||
2279 | default: | |
2280 | break; | |
2281 | } | |
2282 | } | |
9503fd87 | 2283 | \f |
252b5132 | 2284 | static void |
1579bae1 | 2285 | section_already_linked (bfd *abfd, asection *sec, void *data) |
252b5132 | 2286 | { |
1e9cc1c2 | 2287 | lang_input_statement_type *entry = (lang_input_statement_type *) data; |
252b5132 RH |
2288 | |
2289 | /* If we are only reading symbols from this object, then we want to | |
2290 | discard all sections. */ | |
66be1055 | 2291 | if (entry->flags.just_syms) |
252b5132 | 2292 | { |
1449d79b | 2293 | bfd_link_just_syms (abfd, sec, &link_info); |
252b5132 RH |
2294 | return; |
2295 | } | |
2296 | ||
2e84f9c1 AM |
2297 | /* Deal with SHF_EXCLUDE ELF sections. */ |
2298 | if (!bfd_link_relocatable (&link_info) | |
2299 | && (abfd->flags & BFD_PLUGIN) == 0 | |
2300 | && (sec->flags & (SEC_GROUP | SEC_KEEP | SEC_EXCLUDE)) == SEC_EXCLUDE) | |
2301 | sec->output_section = bfd_abs_section_ptr; | |
2302 | ||
ace66bb2 | 2303 | if (!(abfd->flags & DYNAMIC)) |
c77ec726 | 2304 | bfd_section_already_linked (abfd, sec, &link_info); |
252b5132 RH |
2305 | } |
2306 | \f | |
2307 | /* The wild routines. | |
2308 | ||
2309 | These expand statements like *(.text) and foo.o to a list of | |
2310 | explicit actions, like foo.o(.text), bar.o(.text) and | |
2311 | foo.o(.text, .data). */ | |
2312 | ||
252b5132 | 2313 | /* Add SECTION to the output section OUTPUT. Do this by creating a |
b9c361e0 | 2314 | lang_input_section statement which is placed at PTR. */ |
252b5132 RH |
2315 | |
2316 | void | |
1579bae1 AM |
2317 | lang_add_section (lang_statement_list_type *ptr, |
2318 | asection *section, | |
b9c361e0 | 2319 | struct flag_info *sflag_info, |
7b986e99 | 2320 | lang_output_section_statement_type *output) |
252b5132 | 2321 | { |
164e712d | 2322 | flagword flags = section->flags; |
ae17ab41 | 2323 | |
b34976b6 | 2324 | bfd_boolean discard; |
dfa7b0b8 | 2325 | lang_input_section_type *new_section; |
ae17ab41 | 2326 | bfd *abfd = link_info.output_bfd; |
252b5132 | 2327 | |
e49f5022 | 2328 | /* Discard sections marked with SEC_EXCLUDE. */ |
b3096250 | 2329 | discard = (flags & SEC_EXCLUDE) != 0; |
252b5132 RH |
2330 | |
2331 | /* Discard input sections which are assigned to a section named | |
2332 | DISCARD_SECTION_NAME. */ | |
2333 | if (strcmp (output->name, DISCARD_SECTION_NAME) == 0) | |
b34976b6 | 2334 | discard = TRUE; |
252b5132 RH |
2335 | |
2336 | /* Discard debugging sections if we are stripping debugging | |
2337 | information. */ | |
2338 | if ((link_info.strip == strip_debugger || link_info.strip == strip_all) | |
2339 | && (flags & SEC_DEBUGGING) != 0) | |
b34976b6 | 2340 | discard = TRUE; |
252b5132 RH |
2341 | |
2342 | if (discard) | |
2343 | { | |
2344 | if (section->output_section == NULL) | |
2345 | { | |
2346 | /* This prevents future calls from assigning this section. */ | |
2347 | section->output_section = bfd_abs_section_ptr; | |
2348 | } | |
2349 | return; | |
2350 | } | |
2351 | ||
ae17ab41 CM |
2352 | if (sflag_info) |
2353 | { | |
b9c361e0 | 2354 | bfd_boolean keep; |
ae17ab41 | 2355 | |
b9c361e0 JL |
2356 | keep = bfd_lookup_section_flags (&link_info, sflag_info, section); |
2357 | if (!keep) | |
4724d37e | 2358 | return; |
ae17ab41 CM |
2359 | } |
2360 | ||
dfa7b0b8 AM |
2361 | if (section->output_section != NULL) |
2362 | return; | |
252b5132 | 2363 | |
dfa7b0b8 AM |
2364 | /* We don't copy the SEC_NEVER_LOAD flag from an input section |
2365 | to an output section, because we want to be able to include a | |
2366 | SEC_NEVER_LOAD section in the middle of an otherwise loaded | |
2367 | section (I don't know why we want to do this, but we do). | |
2368 | build_link_order in ldwrite.c handles this case by turning | |
2369 | the embedded SEC_NEVER_LOAD section into a fill. */ | |
2370 | flags &= ~ SEC_NEVER_LOAD; | |
8423293d | 2371 | |
dfa7b0b8 AM |
2372 | /* If final link, don't copy the SEC_LINK_ONCE flags, they've |
2373 | already been processed. One reason to do this is that on pe | |
2374 | format targets, .text$foo sections go into .text and it's odd | |
2375 | to see .text with SEC_LINK_ONCE set. */ | |
252b5132 | 2376 | |
0e1862bb | 2377 | if (!bfd_link_relocatable (&link_info)) |
0814be7d | 2378 | flags &= ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC); |
252b5132 | 2379 | |
dfa7b0b8 AM |
2380 | switch (output->sectype) |
2381 | { | |
2382 | case normal_section: | |
2383 | case overlay_section: | |
2384 | break; | |
2385 | case noalloc_section: | |
2386 | flags &= ~SEC_ALLOC; | |
2387 | break; | |
2388 | case noload_section: | |
2389 | flags &= ~SEC_LOAD; | |
2390 | flags |= SEC_NEVER_LOAD; | |
f4eaaf7f AM |
2391 | /* Unfortunately GNU ld has managed to evolve two different |
2392 | meanings to NOLOAD in scripts. ELF gets a .bss style noload, | |
2393 | alloc, no contents section. All others get a noload, noalloc | |
2394 | section. */ | |
2395 | if (bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour) | |
2e76e85a | 2396 | flags &= ~SEC_HAS_CONTENTS; |
f4eaaf7f AM |
2397 | else |
2398 | flags &= ~SEC_ALLOC; | |
dfa7b0b8 AM |
2399 | break; |
2400 | } | |
252b5132 | 2401 | |
dfa7b0b8 AM |
2402 | if (output->bfd_section == NULL) |
2403 | init_os (output, flags); | |
252b5132 | 2404 | |
dfa7b0b8 AM |
2405 | /* If SEC_READONLY is not set in the input section, then clear |
2406 | it from the output section. */ | |
2407 | output->bfd_section->flags &= flags | ~SEC_READONLY; | |
252b5132 | 2408 | |
dfa7b0b8 AM |
2409 | if (output->bfd_section->linker_has_input) |
2410 | { | |
2411 | /* Only set SEC_READONLY flag on the first input section. */ | |
2412 | flags &= ~ SEC_READONLY; | |
252b5132 | 2413 | |
f5fa8ca2 | 2414 | /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */ |
dfa7b0b8 AM |
2415 | if ((output->bfd_section->flags & (SEC_MERGE | SEC_STRINGS)) |
2416 | != (flags & (SEC_MERGE | SEC_STRINGS)) | |
2417 | || ((flags & SEC_MERGE) != 0 | |
2418 | && output->bfd_section->entsize != section->entsize)) | |
f5fa8ca2 | 2419 | { |
afd7a018 | 2420 | output->bfd_section->flags &= ~ (SEC_MERGE | SEC_STRINGS); |
f5fa8ca2 JJ |
2421 | flags &= ~ (SEC_MERGE | SEC_STRINGS); |
2422 | } | |
dfa7b0b8 AM |
2423 | } |
2424 | output->bfd_section->flags |= flags; | |
f5fa8ca2 | 2425 | |
dfa7b0b8 AM |
2426 | if (!output->bfd_section->linker_has_input) |
2427 | { | |
2428 | output->bfd_section->linker_has_input = 1; | |
2429 | /* This must happen after flags have been updated. The output | |
2430 | section may have been created before we saw its first input | |
2431 | section, eg. for a data statement. */ | |
2432 | bfd_init_private_section_data (section->owner, section, | |
2433 | link_info.output_bfd, | |
2434 | output->bfd_section, | |
2435 | &link_info); | |
2436 | if ((flags & SEC_MERGE) != 0) | |
afd7a018 | 2437 | output->bfd_section->entsize = section->entsize; |
dfa7b0b8 | 2438 | } |
f5fa8ca2 | 2439 | |
dfa7b0b8 AM |
2440 | if ((flags & SEC_TIC54X_BLOCK) != 0 |
2441 | && bfd_get_arch (section->owner) == bfd_arch_tic54x) | |
2442 | { | |
2443 | /* FIXME: This value should really be obtained from the bfd... */ | |
2444 | output->block_value = 128; | |
2445 | } | |
252b5132 | 2446 | |
dfa7b0b8 AM |
2447 | if (section->alignment_power > output->bfd_section->alignment_power) |
2448 | output->bfd_section->alignment_power = section->alignment_power; | |
9e41f973 | 2449 | |
dfa7b0b8 | 2450 | section->output_section = output->bfd_section; |
252b5132 | 2451 | |
5b69e357 | 2452 | if (!map_head_is_link_order) |
dfa7b0b8 AM |
2453 | { |
2454 | asection *s = output->bfd_section->map_tail.s; | |
2455 | output->bfd_section->map_tail.s = section; | |
2456 | section->map_head.s = NULL; | |
2457 | section->map_tail.s = s; | |
2458 | if (s != NULL) | |
2459 | s->map_head.s = section; | |
2460 | else | |
2461 | output->bfd_section->map_head.s = section; | |
252b5132 | 2462 | } |
dfa7b0b8 AM |
2463 | |
2464 | /* Add a section reference to the list. */ | |
2465 | new_section = new_stat (lang_input_section, ptr); | |
2466 | new_section->section = section; | |
252b5132 RH |
2467 | } |
2468 | ||
2469 | /* Handle wildcard sorting. This returns the lang_input_section which | |
2470 | should follow the one we are going to create for SECTION and FILE, | |
2471 | based on the sorting requirements of WILD. It returns NULL if the | |
2472 | new section should just go at the end of the current list. */ | |
2473 | ||
2474 | static lang_statement_union_type * | |
1579bae1 AM |
2475 | wild_sort (lang_wild_statement_type *wild, |
2476 | struct wildcard_list *sec, | |
2477 | lang_input_statement_type *file, | |
2478 | asection *section) | |
252b5132 | 2479 | { |
252b5132 RH |
2480 | lang_statement_union_type *l; |
2481 | ||
bcaa7b3e L |
2482 | if (!wild->filenames_sorted |
2483 | && (sec == NULL || sec->spec.sorted == none)) | |
252b5132 RH |
2484 | return NULL; |
2485 | ||
bba1a0c0 | 2486 | for (l = wild->children.head; l != NULL; l = l->header.next) |
252b5132 RH |
2487 | { |
2488 | lang_input_section_type *ls; | |
2489 | ||
2490 | if (l->header.type != lang_input_section_enum) | |
2491 | continue; | |
2492 | ls = &l->input_section; | |
2493 | ||
2494 | /* Sorting by filename takes precedence over sorting by section | |
afd7a018 | 2495 | name. */ |
252b5132 RH |
2496 | |
2497 | if (wild->filenames_sorted) | |
2498 | { | |
2499 | const char *fn, *ln; | |
b34976b6 | 2500 | bfd_boolean fa, la; |
252b5132 RH |
2501 | int i; |
2502 | ||
2503 | /* The PE support for the .idata section as generated by | |
afd7a018 AM |
2504 | dlltool assumes that files will be sorted by the name of |
2505 | the archive and then the name of the file within the | |
2506 | archive. */ | |
252b5132 RH |
2507 | |
2508 | if (file->the_bfd != NULL | |
3860d2b4 | 2509 | && file->the_bfd->my_archive != NULL) |
252b5132 | 2510 | { |
3860d2b4 | 2511 | fn = bfd_get_filename (file->the_bfd->my_archive); |
b34976b6 | 2512 | fa = TRUE; |
252b5132 RH |
2513 | } |
2514 | else | |
2515 | { | |
2516 | fn = file->filename; | |
b34976b6 | 2517 | fa = FALSE; |
252b5132 RH |
2518 | } |
2519 | ||
3860d2b4 | 2520 | if (ls->section->owner->my_archive != NULL) |
252b5132 | 2521 | { |
3860d2b4 | 2522 | ln = bfd_get_filename (ls->section->owner->my_archive); |
b34976b6 | 2523 | la = TRUE; |
252b5132 RH |
2524 | } |
2525 | else | |
2526 | { | |
7b986e99 | 2527 | ln = ls->section->owner->filename; |
b34976b6 | 2528 | la = FALSE; |
252b5132 RH |
2529 | } |
2530 | ||
42627821 | 2531 | i = filename_cmp (fn, ln); |
252b5132 RH |
2532 | if (i > 0) |
2533 | continue; | |
2534 | else if (i < 0) | |
2535 | break; | |
2536 | ||
2537 | if (fa || la) | |
2538 | { | |
2539 | if (fa) | |
2540 | fn = file->filename; | |
2541 | if (la) | |
7b986e99 | 2542 | ln = ls->section->owner->filename; |
252b5132 | 2543 | |
42627821 | 2544 | i = filename_cmp (fn, ln); |
252b5132 RH |
2545 | if (i > 0) |
2546 | continue; | |
2547 | else if (i < 0) | |
2548 | break; | |
2549 | } | |
2550 | } | |
2551 | ||
2552 | /* Here either the files are not sorted by name, or we are | |
afd7a018 | 2553 | looking at the sections for this file. */ |
252b5132 | 2554 | |
b2e4da5a L |
2555 | if (sec != NULL |
2556 | && sec->spec.sorted != none | |
2557 | && sec->spec.sorted != by_none) | |
32124d5b AM |
2558 | if (compare_section (sec->spec.sorted, section, ls->section) < 0) |
2559 | break; | |
252b5132 RH |
2560 | } |
2561 | ||
2562 | return l; | |
2563 | } | |
2564 | ||
2565 | /* Expand a wild statement for a particular FILE. SECTION may be | |
2566 | NULL, in which case it is a wild card. */ | |
2567 | ||
2568 | static void | |
1579bae1 AM |
2569 | output_section_callback (lang_wild_statement_type *ptr, |
2570 | struct wildcard_list *sec, | |
2571 | asection *section, | |
b9c361e0 | 2572 | struct flag_info *sflag_info, |
1579bae1 AM |
2573 | lang_input_statement_type *file, |
2574 | void *output) | |
4dec4d4e RH |
2575 | { |
2576 | lang_statement_union_type *before; | |
d0bf826b AM |
2577 | lang_output_section_statement_type *os; |
2578 | ||
2579 | os = (lang_output_section_statement_type *) output; | |
5f992e62 | 2580 | |
b6bf44ba | 2581 | /* Exclude sections that match UNIQUE_SECTION_LIST. */ |
d0bf826b | 2582 | if (unique_section_p (section, os)) |
b6bf44ba AM |
2583 | return; |
2584 | ||
b6bf44ba | 2585 | before = wild_sort (ptr, sec, file, section); |
5f992e62 | 2586 | |
4dec4d4e RH |
2587 | /* Here BEFORE points to the lang_input_section which |
2588 | should follow the one we are about to add. If BEFORE | |
2589 | is NULL, then the section should just go at the end | |
2590 | of the current list. */ | |
5f992e62 | 2591 | |
4dec4d4e | 2592 | if (before == NULL) |
b9c361e0 | 2593 | lang_add_section (&ptr->children, section, sflag_info, os); |
4dec4d4e | 2594 | else |
252b5132 | 2595 | { |
4dec4d4e RH |
2596 | lang_statement_list_type list; |
2597 | lang_statement_union_type **pp; | |
5f992e62 | 2598 | |
4dec4d4e | 2599 | lang_list_init (&list); |
b9c361e0 | 2600 | lang_add_section (&list, section, sflag_info, os); |
5f992e62 | 2601 | |
4dec4d4e RH |
2602 | /* If we are discarding the section, LIST.HEAD will |
2603 | be NULL. */ | |
2604 | if (list.head != NULL) | |
252b5132 | 2605 | { |
bba1a0c0 | 2606 | ASSERT (list.head->header.next == NULL); |
5f992e62 | 2607 | |
4dec4d4e RH |
2608 | for (pp = &ptr->children.head; |
2609 | *pp != before; | |
bba1a0c0 | 2610 | pp = &(*pp)->header.next) |
4dec4d4e | 2611 | ASSERT (*pp != NULL); |
5f992e62 | 2612 | |
bba1a0c0 | 2613 | list.head->header.next = *pp; |
4dec4d4e | 2614 | *pp = list.head; |
252b5132 RH |
2615 | } |
2616 | } | |
2617 | } | |
2618 | ||
0841712e JJ |
2619 | /* Check if all sections in a wild statement for a particular FILE |
2620 | are readonly. */ | |
2621 | ||
2622 | static void | |
2623 | check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED, | |
2624 | struct wildcard_list *sec ATTRIBUTE_UNUSED, | |
2625 | asection *section, | |
b9c361e0 | 2626 | struct flag_info *sflag_info ATTRIBUTE_UNUSED, |
0841712e | 2627 | lang_input_statement_type *file ATTRIBUTE_UNUSED, |
d0bf826b | 2628 | void *output) |
0841712e | 2629 | { |
d0bf826b AM |
2630 | lang_output_section_statement_type *os; |
2631 | ||
2632 | os = (lang_output_section_statement_type *) output; | |
2633 | ||
0841712e | 2634 | /* Exclude sections that match UNIQUE_SECTION_LIST. */ |
d0bf826b | 2635 | if (unique_section_p (section, os)) |
0841712e JJ |
2636 | return; |
2637 | ||
6feb9908 | 2638 | if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0) |
d0bf826b | 2639 | os->all_input_readonly = FALSE; |
0841712e JJ |
2640 | } |
2641 | ||
252b5132 RH |
2642 | /* This is passed a file name which must have been seen already and |
2643 | added to the statement tree. We will see if it has been opened | |
2644 | already and had its symbols read. If not then we'll read it. */ | |
2645 | ||
2646 | static lang_input_statement_type * | |
1579bae1 | 2647 | lookup_name (const char *name) |
252b5132 RH |
2648 | { |
2649 | lang_input_statement_type *search; | |
2650 | ||
2651 | for (search = (lang_input_statement_type *) input_file_chain.head; | |
1579bae1 | 2652 | search != NULL; |
252b5132 RH |
2653 | search = (lang_input_statement_type *) search->next_real_file) |
2654 | { | |
0013291d NC |
2655 | /* Use the local_sym_name as the name of the file that has |
2656 | already been loaded as filename might have been transformed | |
2657 | via the search directory lookup mechanism. */ | |
87aa7f19 | 2658 | const char *filename = search->local_sym_name; |
0013291d | 2659 | |
0013291d | 2660 | if (filename != NULL |
42627821 | 2661 | && filename_cmp (filename, name) == 0) |
252b5132 RH |
2662 | break; |
2663 | } | |
2664 | ||
1579bae1 | 2665 | if (search == NULL) |
6feb9908 AM |
2666 | search = new_afile (name, lang_input_file_is_search_file_enum, |
2667 | default_target, FALSE); | |
252b5132 RH |
2668 | |
2669 | /* If we have already added this file, or this file is not real | |
87aa7f19 | 2670 | don't add this file. */ |
66be1055 | 2671 | if (search->flags.loaded || !search->flags.real) |
252b5132 RH |
2672 | return search; |
2673 | ||
0aa7f586 | 2674 | if (!load_symbols (search, NULL)) |
6770ec8c | 2675 | return NULL; |
252b5132 RH |
2676 | |
2677 | return search; | |
2678 | } | |
2679 | ||
b58f81ae DJ |
2680 | /* Save LIST as a list of libraries whose symbols should not be exported. */ |
2681 | ||
2682 | struct excluded_lib | |
2683 | { | |
2684 | char *name; | |
2685 | struct excluded_lib *next; | |
2686 | }; | |
2687 | static struct excluded_lib *excluded_libs; | |
2688 | ||
2689 | void | |
2690 | add_excluded_libs (const char *list) | |
2691 | { | |
2692 | const char *p = list, *end; | |
2693 | ||
2694 | while (*p != '\0') | |
2695 | { | |
2696 | struct excluded_lib *entry; | |
2697 | end = strpbrk (p, ",:"); | |
2698 | if (end == NULL) | |
2699 | end = p + strlen (p); | |
1e9cc1c2 | 2700 | entry = (struct excluded_lib *) xmalloc (sizeof (*entry)); |
b58f81ae | 2701 | entry->next = excluded_libs; |
1e9cc1c2 | 2702 | entry->name = (char *) xmalloc (end - p + 1); |
b58f81ae DJ |
2703 | memcpy (entry->name, p, end - p); |
2704 | entry->name[end - p] = '\0'; | |
2705 | excluded_libs = entry; | |
2706 | if (*end == '\0') | |
329c1c86 | 2707 | break; |
b58f81ae DJ |
2708 | p = end + 1; |
2709 | } | |
2710 | } | |
2711 | ||
2712 | static void | |
2713 | check_excluded_libs (bfd *abfd) | |
2714 | { | |
2715 | struct excluded_lib *lib = excluded_libs; | |
2716 | ||
2717 | while (lib) | |
2718 | { | |
2719 | int len = strlen (lib->name); | |
2720 | const char *filename = lbasename (abfd->filename); | |
2721 | ||
2722 | if (strcmp (lib->name, "ALL") == 0) | |
2723 | { | |
2724 | abfd->no_export = TRUE; | |
2725 | return; | |
2726 | } | |
2727 | ||
42627821 | 2728 | if (filename_ncmp (lib->name, filename, len) == 0 |
b58f81ae DJ |
2729 | && (filename[len] == '\0' |
2730 | || (filename[len] == '.' && filename[len + 1] == 'a' | |
2731 | && filename[len + 2] == '\0'))) | |
2732 | { | |
2733 | abfd->no_export = TRUE; | |
2734 | return; | |
2735 | } | |
2736 | ||
2737 | lib = lib->next; | |
2738 | } | |
2739 | } | |
2740 | ||
252b5132 RH |
2741 | /* Get the symbols for an input file. */ |
2742 | ||
e9f53129 | 2743 | bfd_boolean |
1579bae1 AM |
2744 | load_symbols (lang_input_statement_type *entry, |
2745 | lang_statement_list_type *place) | |
252b5132 RH |
2746 | { |
2747 | char **matching; | |
2748 | ||
66be1055 | 2749 | if (entry->flags.loaded) |
b34976b6 | 2750 | return TRUE; |
252b5132 RH |
2751 | |
2752 | ldfile_open_file (entry); | |
2753 | ||
c4b78195 | 2754 | /* Do not process further if the file was missing. */ |
66be1055 | 2755 | if (entry->flags.missing_file) |
c4b78195 NC |
2756 | return TRUE; |
2757 | ||
0aa7f586 AM |
2758 | if (!bfd_check_format (entry->the_bfd, bfd_archive) |
2759 | && !bfd_check_format_matches (entry->the_bfd, bfd_object, &matching)) | |
252b5132 RH |
2760 | { |
2761 | bfd_error_type err; | |
66be1055 | 2762 | struct lang_input_statement_flags save_flags; |
47e2e729 | 2763 | extern FILE *yyin; |
b7a26f91 | 2764 | |
252b5132 | 2765 | err = bfd_get_error (); |
884fb58e NC |
2766 | |
2767 | /* See if the emulation has some special knowledge. */ | |
2768 | if (ldemul_unrecognized_file (entry)) | |
b34976b6 | 2769 | return TRUE; |
884fb58e | 2770 | |
252b5132 RH |
2771 | if (err == bfd_error_file_ambiguously_recognized) |
2772 | { | |
2773 | char **p; | |
2774 | ||
2775 | einfo (_("%B: file not recognized: %E\n"), entry->the_bfd); | |
2776 | einfo (_("%B: matching formats:"), entry->the_bfd); | |
2777 | for (p = matching; *p != NULL; p++) | |
2778 | einfo (" %s", *p); | |
2779 | einfo ("%F\n"); | |
2780 | } | |
2781 | else if (err != bfd_error_file_not_recognized | |
2782 | || place == NULL) | |
967928e9 | 2783 | einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd); |
b7a26f91 | 2784 | |
252b5132 RH |
2785 | bfd_close (entry->the_bfd); |
2786 | entry->the_bfd = NULL; | |
2787 | ||
252b5132 | 2788 | /* Try to interpret the file as a linker script. */ |
66be1055 | 2789 | save_flags = input_flags; |
252b5132 RH |
2790 | ldfile_open_command_file (entry->filename); |
2791 | ||
bde18da4 | 2792 | push_stat_ptr (place); |
66be1055 AM |
2793 | input_flags.add_DT_NEEDED_for_regular |
2794 | = entry->flags.add_DT_NEEDED_for_regular; | |
2795 | input_flags.add_DT_NEEDED_for_dynamic | |
2796 | = entry->flags.add_DT_NEEDED_for_dynamic; | |
2797 | input_flags.whole_archive = entry->flags.whole_archive; | |
2798 | input_flags.dynamic = entry->flags.dynamic; | |
252b5132 | 2799 | |
b34976b6 | 2800 | ldfile_assumed_script = TRUE; |
252b5132 RH |
2801 | parser_input = input_script; |
2802 | yyparse (); | |
b34976b6 | 2803 | ldfile_assumed_script = FALSE; |
252b5132 | 2804 | |
f4a23d42 AM |
2805 | /* missing_file is sticky. sysrooted will already have been |
2806 | restored when seeing EOF in yyparse, but no harm to restore | |
2807 | again. */ | |
66be1055 AM |
2808 | save_flags.missing_file |= input_flags.missing_file; |
2809 | input_flags = save_flags; | |
bde18da4 | 2810 | pop_stat_ptr (); |
47e2e729 AM |
2811 | fclose (yyin); |
2812 | yyin = NULL; | |
2813 | entry->flags.loaded = TRUE; | |
252b5132 | 2814 | |
bde18da4 | 2815 | return TRUE; |
252b5132 RH |
2816 | } |
2817 | ||
2818 | if (ldemul_recognized_file (entry)) | |
b34976b6 | 2819 | return TRUE; |
252b5132 RH |
2820 | |
2821 | /* We don't call ldlang_add_file for an archive. Instead, the | |
2822 | add_symbols entry point will call ldlang_add_file, via the | |
2823 | add_archive_element callback, for each element of the archive | |
2824 | which is used. */ | |
2825 | switch (bfd_get_format (entry->the_bfd)) | |
2826 | { | |
2827 | default: | |
2828 | break; | |
2829 | ||
2830 | case bfd_object: | |
66be1055 | 2831 | if (!entry->flags.reload) |
15fc2e13 | 2832 | ldlang_add_file (entry); |
cd6f1cf3 | 2833 | if (trace_files || verbose) |
252b5132 RH |
2834 | info_msg ("%I\n", entry); |
2835 | break; | |
2836 | ||
2837 | case bfd_archive: | |
b58f81ae DJ |
2838 | check_excluded_libs (entry->the_bfd); |
2839 | ||
66be1055 | 2840 | if (entry->flags.whole_archive) |
252b5132 | 2841 | { |
b7a26f91 | 2842 | bfd *member = NULL; |
b34976b6 | 2843 | bfd_boolean loaded = TRUE; |
6770ec8c NC |
2844 | |
2845 | for (;;) | |
252b5132 | 2846 | { |
5d3236ee | 2847 | bfd *subsbfd; |
6770ec8c NC |
2848 | member = bfd_openr_next_archived_file (entry->the_bfd, member); |
2849 | ||
2850 | if (member == NULL) | |
2851 | break; | |
b7a26f91 | 2852 | |
0aa7f586 | 2853 | if (!bfd_check_format (member, bfd_object)) |
6770ec8c NC |
2854 | { |
2855 | einfo (_("%F%B: member %B in archive is not an object\n"), | |
2856 | entry->the_bfd, member); | |
b34976b6 | 2857 | loaded = FALSE; |
6770ec8c NC |
2858 | } |
2859 | ||
db0ca79f | 2860 | subsbfd = member; |
46105645 AM |
2861 | if (!(*link_info.callbacks |
2862 | ->add_archive_element) (&link_info, member, | |
2863 | "--whole-archive", &subsbfd)) | |
252b5132 | 2864 | abort (); |
6770ec8c | 2865 | |
5d3236ee DK |
2866 | /* Potentially, the add_archive_element hook may have set a |
2867 | substitute BFD for us. */ | |
46105645 | 2868 | if (!bfd_link_add_symbols (subsbfd, &link_info)) |
6770ec8c | 2869 | { |
8ff4c1f3 | 2870 | einfo (_("%F%B: error adding symbols: %E\n"), member); |
b34976b6 | 2871 | loaded = FALSE; |
6770ec8c | 2872 | } |
252b5132 RH |
2873 | } |
2874 | ||
66be1055 | 2875 | entry->flags.loaded = loaded; |
6770ec8c | 2876 | return loaded; |
252b5132 | 2877 | } |
6770ec8c | 2878 | break; |
252b5132 RH |
2879 | } |
2880 | ||
03bdc404 | 2881 | if (bfd_link_add_symbols (entry->the_bfd, &link_info)) |
66be1055 | 2882 | entry->flags.loaded = TRUE; |
6770ec8c | 2883 | else |
8ff4c1f3 | 2884 | einfo (_("%F%B: error adding symbols: %E\n"), entry->the_bfd); |
252b5132 | 2885 | |
66be1055 | 2886 | return entry->flags.loaded; |
252b5132 RH |
2887 | } |
2888 | ||
b6bf44ba AM |
2889 | /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both |
2890 | may be NULL, indicating that it is a wildcard. Separate | |
2891 | lang_input_section statements are created for each part of the | |
2892 | expansion; they are added after the wild statement S. OUTPUT is | |
2893 | the output section. */ | |
252b5132 RH |
2894 | |
2895 | static void | |
1579bae1 AM |
2896 | wild (lang_wild_statement_type *s, |
2897 | const char *target ATTRIBUTE_UNUSED, | |
2898 | lang_output_section_statement_type *output) | |
252b5132 | 2899 | { |
b6bf44ba | 2900 | struct wildcard_list *sec; |
252b5132 | 2901 | |
50c77e5d | 2902 | if (s->handler_data[0] |
329c1c86 | 2903 | && s->handler_data[0]->spec.sorted == by_name |
50c77e5d NC |
2904 | && !s->filenames_sorted) |
2905 | { | |
329c1c86 AM |
2906 | lang_section_bst_type *tree; |
2907 | ||
50c77e5d NC |
2908 | walk_wild (s, output_section_callback_fast, output); |
2909 | ||
e6f2cbf5 | 2910 | tree = s->tree; |
329c1c86 | 2911 | if (tree) |
e6f2cbf5 L |
2912 | { |
2913 | output_section_callback_tree_to_list (s, tree, output); | |
2914 | s->tree = NULL; | |
2915 | } | |
50c77e5d | 2916 | } |
329c1c86 | 2917 | else |
50c77e5d | 2918 | walk_wild (s, output_section_callback, output); |
b6bf44ba | 2919 | |
abe6ac95 AM |
2920 | if (default_common_section == NULL) |
2921 | for (sec = s->section_list; sec != NULL; sec = sec->next) | |
b6bf44ba AM |
2922 | if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0) |
2923 | { | |
2924 | /* Remember the section that common is going to in case we | |
b7a26f91 | 2925 | later get something which doesn't know where to put it. */ |
b6bf44ba | 2926 | default_common_section = output; |
abe6ac95 | 2927 | break; |
b6bf44ba | 2928 | } |
252b5132 RH |
2929 | } |
2930 | ||
b34976b6 | 2931 | /* Return TRUE iff target is the sought target. */ |
08da4cac | 2932 | |
e50d8076 | 2933 | static int |
1579bae1 | 2934 | get_target (const bfd_target *target, void *data) |
e50d8076 | 2935 | { |
1e9cc1c2 | 2936 | const char *sought = (const char *) data; |
5f992e62 | 2937 | |
e50d8076 NC |
2938 | return strcmp (target->name, sought) == 0; |
2939 | } | |
2940 | ||
2941 | /* Like strcpy() but convert to lower case as well. */ | |
08da4cac | 2942 | |
e50d8076 | 2943 | static void |
1579bae1 | 2944 | stricpy (char *dest, char *src) |
e50d8076 NC |
2945 | { |
2946 | char c; | |
5f992e62 | 2947 | |
08da4cac | 2948 | while ((c = *src++) != 0) |
3882b010 | 2949 | *dest++ = TOLOWER (c); |
e50d8076 | 2950 | |
08da4cac | 2951 | *dest = 0; |
e50d8076 NC |
2952 | } |
2953 | ||
396a2467 | 2954 | /* Remove the first occurrence of needle (if any) in haystack |
e50d8076 | 2955 | from haystack. */ |
08da4cac | 2956 | |
e50d8076 | 2957 | static void |
1579bae1 | 2958 | strcut (char *haystack, char *needle) |
e50d8076 NC |
2959 | { |
2960 | haystack = strstr (haystack, needle); | |
5f992e62 | 2961 | |
e50d8076 NC |
2962 | if (haystack) |
2963 | { | |
08da4cac | 2964 | char *src; |
e50d8076 | 2965 | |
08da4cac KH |
2966 | for (src = haystack + strlen (needle); *src;) |
2967 | *haystack++ = *src++; | |
5f992e62 | 2968 | |
08da4cac | 2969 | *haystack = 0; |
e50d8076 NC |
2970 | } |
2971 | } | |
2972 | ||
2973 | /* Compare two target format name strings. | |
2974 | Return a value indicating how "similar" they are. */ | |
08da4cac | 2975 | |
e50d8076 | 2976 | static int |
1579bae1 | 2977 | name_compare (char *first, char *second) |
e50d8076 | 2978 | { |
08da4cac KH |
2979 | char *copy1; |
2980 | char *copy2; | |
2981 | int result; | |
5f992e62 | 2982 | |
1e9cc1c2 NC |
2983 | copy1 = (char *) xmalloc (strlen (first) + 1); |
2984 | copy2 = (char *) xmalloc (strlen (second) + 1); | |
e50d8076 NC |
2985 | |
2986 | /* Convert the names to lower case. */ | |
2987 | stricpy (copy1, first); | |
2988 | stricpy (copy2, second); | |
2989 | ||
1579bae1 | 2990 | /* Remove size and endian strings from the name. */ |
e50d8076 NC |
2991 | strcut (copy1, "big"); |
2992 | strcut (copy1, "little"); | |
2993 | strcut (copy2, "big"); | |
2994 | strcut (copy2, "little"); | |
2995 | ||
2996 | /* Return a value based on how many characters match, | |
2997 | starting from the beginning. If both strings are | |
2998 | the same then return 10 * their length. */ | |
08da4cac KH |
2999 | for (result = 0; copy1[result] == copy2[result]; result++) |
3000 | if (copy1[result] == 0) | |
e50d8076 NC |
3001 | { |
3002 | result *= 10; | |
3003 | break; | |
3004 | } | |
5f992e62 | 3005 | |
e50d8076 NC |
3006 | free (copy1); |
3007 | free (copy2); | |
3008 | ||
3009 | return result; | |
3010 | } | |
3011 | ||
3012 | /* Set by closest_target_match() below. */ | |
08da4cac | 3013 | static const bfd_target *winner; |
e50d8076 NC |
3014 | |
3015 | /* Scan all the valid bfd targets looking for one that has the endianness | |
3016 | requirement that was specified on the command line, and is the nearest | |
3017 | match to the original output target. */ | |
08da4cac | 3018 | |
e50d8076 | 3019 | static int |
1579bae1 | 3020 | closest_target_match (const bfd_target *target, void *data) |
e50d8076 | 3021 | { |
1e9cc1c2 | 3022 | const bfd_target *original = (const bfd_target *) data; |
5f992e62 | 3023 | |
08da4cac KH |
3024 | if (command_line.endian == ENDIAN_BIG |
3025 | && target->byteorder != BFD_ENDIAN_BIG) | |
e50d8076 | 3026 | return 0; |
5f992e62 | 3027 | |
08da4cac KH |
3028 | if (command_line.endian == ENDIAN_LITTLE |
3029 | && target->byteorder != BFD_ENDIAN_LITTLE) | |
e50d8076 NC |
3030 | return 0; |
3031 | ||
3032 | /* Must be the same flavour. */ | |
3033 | if (target->flavour != original->flavour) | |
3034 | return 0; | |
3035 | ||
de7dd2bd | 3036 | /* Ignore generic big and little endian elf vectors. */ |
967928e9 | 3037 | if (strcmp (target->name, "elf32-big") == 0 |
de7dd2bd NC |
3038 | || strcmp (target->name, "elf64-big") == 0 |
3039 | || strcmp (target->name, "elf32-little") == 0 | |
3040 | || strcmp (target->name, "elf64-little") == 0) | |
3041 | return 0; | |
3042 | ||
e50d8076 NC |
3043 | /* If we have not found a potential winner yet, then record this one. */ |
3044 | if (winner == NULL) | |
3045 | { | |
3046 | winner = target; | |
3047 | return 0; | |
3048 | } | |
3049 | ||
3050 | /* Oh dear, we now have two potential candidates for a successful match. | |
4de2d33d | 3051 | Compare their names and choose the better one. */ |
d1778b88 AM |
3052 | if (name_compare (target->name, original->name) |
3053 | > name_compare (winner->name, original->name)) | |
e50d8076 NC |
3054 | winner = target; |
3055 | ||
3056 | /* Keep on searching until wqe have checked them all. */ | |
3057 | return 0; | |
3058 | } | |
3059 | ||
3060 | /* Return the BFD target format of the first input file. */ | |
08da4cac | 3061 | |
e50d8076 | 3062 | static char * |
1579bae1 | 3063 | get_first_input_target (void) |
e50d8076 | 3064 | { |
08da4cac | 3065 | char *target = NULL; |
e50d8076 NC |
3066 | |
3067 | LANG_FOR_EACH_INPUT_STATEMENT (s) | |
3068 | { | |
3069 | if (s->header.type == lang_input_statement_enum | |
66be1055 | 3070 | && s->flags.real) |
e50d8076 NC |
3071 | { |
3072 | ldfile_open_file (s); | |
5f992e62 | 3073 | |
e50d8076 NC |
3074 | if (s->the_bfd != NULL |
3075 | && bfd_check_format (s->the_bfd, bfd_object)) | |
3076 | { | |
3077 | target = bfd_get_target (s->the_bfd); | |
5f992e62 | 3078 | |
e50d8076 NC |
3079 | if (target != NULL) |
3080 | break; | |
3081 | } | |
3082 | } | |
3083 | } | |
5f992e62 | 3084 | |
e50d8076 NC |
3085 | return target; |
3086 | } | |
3087 | ||
599917b8 | 3088 | const char * |
1579bae1 | 3089 | lang_get_output_target (void) |
599917b8 JJ |
3090 | { |
3091 | const char *target; | |
3092 | ||
3093 | /* Has the user told us which output format to use? */ | |
1579bae1 | 3094 | if (output_target != NULL) |
599917b8 JJ |
3095 | return output_target; |
3096 | ||
3097 | /* No - has the current target been set to something other than | |
3098 | the default? */ | |
30824704 | 3099 | if (current_target != default_target && current_target != NULL) |
599917b8 JJ |
3100 | return current_target; |
3101 | ||
3102 | /* No - can we determine the format of the first input file? */ | |
3103 | target = get_first_input_target (); | |
3104 | if (target != NULL) | |
3105 | return target; | |
3106 | ||
3107 | /* Failed - use the default output target. */ | |
3108 | return default_target; | |
3109 | } | |
3110 | ||
252b5132 RH |
3111 | /* Open the output file. */ |
3112 | ||
f13a99db | 3113 | static void |
1579bae1 | 3114 | open_output (const char *name) |
252b5132 | 3115 | { |
599917b8 | 3116 | output_target = lang_get_output_target (); |
5f992e62 | 3117 | |
08da4cac KH |
3118 | /* Has the user requested a particular endianness on the command |
3119 | line? */ | |
e50d8076 NC |
3120 | if (command_line.endian != ENDIAN_UNSET) |
3121 | { | |
e50d8076 | 3122 | /* Get the chosen target. */ |
4212b42d AM |
3123 | const bfd_target *target |
3124 | = bfd_iterate_over_targets (get_target, (void *) output_target); | |
e50d8076 | 3125 | |
c13b1b77 NC |
3126 | /* If the target is not supported, we cannot do anything. */ |
3127 | if (target != NULL) | |
e50d8076 | 3128 | { |
4212b42d AM |
3129 | enum bfd_endian desired_endian; |
3130 | ||
c13b1b77 NC |
3131 | if (command_line.endian == ENDIAN_BIG) |
3132 | desired_endian = BFD_ENDIAN_BIG; | |
e50d8076 | 3133 | else |
c13b1b77 | 3134 | desired_endian = BFD_ENDIAN_LITTLE; |
5f992e62 AM |
3135 | |
3136 | /* See if the target has the wrong endianness. This should | |
3137 | not happen if the linker script has provided big and | |
3138 | little endian alternatives, but some scrips don't do | |
3139 | this. */ | |
c13b1b77 | 3140 | if (target->byteorder != desired_endian) |
e50d8076 | 3141 | { |
c13b1b77 NC |
3142 | /* If it does, then see if the target provides |
3143 | an alternative with the correct endianness. */ | |
3144 | if (target->alternative_target != NULL | |
3145 | && (target->alternative_target->byteorder == desired_endian)) | |
3146 | output_target = target->alternative_target->name; | |
e50d8076 | 3147 | else |
c13b1b77 | 3148 | { |
5f992e62 AM |
3149 | /* Try to find a target as similar as possible to |
3150 | the default target, but which has the desired | |
3151 | endian characteristic. */ | |
4212b42d AM |
3152 | bfd_iterate_over_targets (closest_target_match, |
3153 | (void *) target); | |
5f992e62 AM |
3154 | |
3155 | /* Oh dear - we could not find any targets that | |
3156 | satisfy our requirements. */ | |
c13b1b77 | 3157 | if (winner == NULL) |
6feb9908 AM |
3158 | einfo (_("%P: warning: could not find any targets" |
3159 | " that match endianness requirement\n")); | |
c13b1b77 NC |
3160 | else |
3161 | output_target = winner->name; | |
3162 | } | |
e50d8076 NC |
3163 | } |
3164 | } | |
252b5132 | 3165 | } |
5f992e62 | 3166 | |
f13a99db | 3167 | link_info.output_bfd = bfd_openw (name, output_target); |
252b5132 | 3168 | |
f13a99db | 3169 | if (link_info.output_bfd == NULL) |
252b5132 RH |
3170 | { |
3171 | if (bfd_get_error () == bfd_error_invalid_target) | |
e50d8076 NC |
3172 | einfo (_("%P%F: target %s not found\n"), output_target); |
3173 | ||
252b5132 RH |
3174 | einfo (_("%P%F: cannot open output file %s: %E\n"), name); |
3175 | } | |
3176 | ||
b34976b6 | 3177 | delete_output_file_on_failure = TRUE; |
252b5132 | 3178 | |
0aa7f586 | 3179 | if (!bfd_set_format (link_info.output_bfd, bfd_object)) |
252b5132 | 3180 | einfo (_("%P%F:%s: can not make object file: %E\n"), name); |
0aa7f586 | 3181 | if (!bfd_set_arch_mach (link_info.output_bfd, |
252b5132 RH |
3182 | ldfile_output_architecture, |
3183 | ldfile_output_machine)) | |
3184 | einfo (_("%P%F:%s: can not set architecture: %E\n"), name); | |
3185 | ||
f13a99db | 3186 | link_info.hash = bfd_link_hash_table_create (link_info.output_bfd); |
1579bae1 | 3187 | if (link_info.hash == NULL) |
384a9dda | 3188 | einfo (_("%P%F: can not create hash table: %E\n")); |
252b5132 | 3189 | |
f13a99db | 3190 | bfd_set_gp_size (link_info.output_bfd, g_switch_value); |
252b5132 RH |
3191 | } |
3192 | ||
252b5132 | 3193 | static void |
1579bae1 | 3194 | ldlang_open_output (lang_statement_union_type *statement) |
252b5132 RH |
3195 | { |
3196 | switch (statement->header.type) | |
3197 | { | |
3198 | case lang_output_statement_enum: | |
f13a99db AM |
3199 | ASSERT (link_info.output_bfd == NULL); |
3200 | open_output (statement->output_statement.name); | |
252b5132 | 3201 | ldemul_set_output_arch (); |
0e1862bb L |
3202 | if (config.magic_demand_paged |
3203 | && !bfd_link_relocatable (&link_info)) | |
f13a99db | 3204 | link_info.output_bfd->flags |= D_PAGED; |
252b5132 | 3205 | else |
f13a99db | 3206 | link_info.output_bfd->flags &= ~D_PAGED; |
252b5132 | 3207 | if (config.text_read_only) |
f13a99db | 3208 | link_info.output_bfd->flags |= WP_TEXT; |
252b5132 | 3209 | else |
f13a99db | 3210 | link_info.output_bfd->flags &= ~WP_TEXT; |
252b5132 | 3211 | if (link_info.traditional_format) |
f13a99db | 3212 | link_info.output_bfd->flags |= BFD_TRADITIONAL_FORMAT; |
252b5132 | 3213 | else |
f13a99db | 3214 | link_info.output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT; |
252b5132 RH |
3215 | break; |
3216 | ||
3217 | case lang_target_statement_enum: | |
3218 | current_target = statement->target_statement.target; | |
3219 | break; | |
3220 | default: | |
3221 | break; | |
3222 | } | |
3223 | } | |
3224 | ||
e5caa5e0 AM |
3225 | static void |
3226 | init_opb (void) | |
3227 | { | |
3228 | unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture, | |
3229 | ldfile_output_machine); | |
3230 | opb_shift = 0; | |
3231 | if (x > 1) | |
3232 | while ((x & 1) == 0) | |
3233 | { | |
3234 | x >>= 1; | |
3235 | ++opb_shift; | |
3236 | } | |
3237 | ASSERT (x == 1); | |
3238 | } | |
3239 | ||
252b5132 RH |
3240 | /* Open all the input files. */ |
3241 | ||
486329aa AM |
3242 | enum open_bfd_mode |
3243 | { | |
3244 | OPEN_BFD_NORMAL = 0, | |
3245 | OPEN_BFD_FORCE = 1, | |
3246 | OPEN_BFD_RESCAN = 2 | |
3247 | }; | |
9e2278f5 AM |
3248 | #ifdef ENABLE_PLUGINS |
3249 | static lang_input_statement_type *plugin_insert = NULL; | |
3250 | #endif | |
486329aa | 3251 | |
252b5132 | 3252 | static void |
486329aa | 3253 | open_input_bfds (lang_statement_union_type *s, enum open_bfd_mode mode) |
252b5132 | 3254 | { |
1579bae1 | 3255 | for (; s != NULL; s = s->header.next) |
252b5132 RH |
3256 | { |
3257 | switch (s->header.type) | |
3258 | { | |
3259 | case lang_constructors_statement_enum: | |
486329aa | 3260 | open_input_bfds (constructor_list.head, mode); |
252b5132 RH |
3261 | break; |
3262 | case lang_output_section_statement_enum: | |
486329aa | 3263 | open_input_bfds (s->output_section_statement.children.head, mode); |
252b5132 RH |
3264 | break; |
3265 | case lang_wild_statement_enum: | |
08da4cac | 3266 | /* Maybe we should load the file's symbols. */ |
486329aa AM |
3267 | if ((mode & OPEN_BFD_RESCAN) == 0 |
3268 | && s->wild_statement.filename | |
97407faf AM |
3269 | && !wildcardp (s->wild_statement.filename) |
3270 | && !archive_path (s->wild_statement.filename)) | |
4a43e768 | 3271 | lookup_name (s->wild_statement.filename); |
486329aa | 3272 | open_input_bfds (s->wild_statement.children.head, mode); |
252b5132 RH |
3273 | break; |
3274 | case lang_group_statement_enum: | |
3275 | { | |
3276 | struct bfd_link_hash_entry *undefs; | |
3277 | ||
3278 | /* We must continually search the entries in the group | |
08da4cac KH |
3279 | until no new symbols are added to the list of undefined |
3280 | symbols. */ | |
252b5132 RH |
3281 | |
3282 | do | |
3283 | { | |
3284 | undefs = link_info.hash->undefs_tail; | |
486329aa AM |
3285 | open_input_bfds (s->group_statement.children.head, |
3286 | mode | OPEN_BFD_FORCE); | |
252b5132 RH |
3287 | } |
3288 | while (undefs != link_info.hash->undefs_tail); | |
3289 | } | |
3290 | break; | |
3291 | case lang_target_statement_enum: | |
3292 | current_target = s->target_statement.target; | |
3293 | break; | |
3294 | case lang_input_statement_enum: | |
66be1055 | 3295 | if (s->input_statement.flags.real) |
252b5132 | 3296 | { |
bde18da4 | 3297 | lang_statement_union_type **os_tail; |
252b5132 | 3298 | lang_statement_list_type add; |
d215621e | 3299 | bfd *abfd; |
252b5132 RH |
3300 | |
3301 | s->input_statement.target = current_target; | |
3302 | ||
3303 | /* If we are being called from within a group, and this | |
afd7a018 AM |
3304 | is an archive which has already been searched, then |
3305 | force it to be researched unless the whole archive | |
d215621e AM |
3306 | has been loaded already. Do the same for a rescan. |
3307 | Likewise reload --as-needed shared libs. */ | |
486329aa | 3308 | if (mode != OPEN_BFD_NORMAL |
9e2278f5 AM |
3309 | #ifdef ENABLE_PLUGINS |
3310 | && ((mode & OPEN_BFD_RESCAN) == 0 | |
3311 | || plugin_insert == NULL) | |
3312 | #endif | |
66be1055 | 3313 | && s->input_statement.flags.loaded |
d215621e AM |
3314 | && (abfd = s->input_statement.the_bfd) != NULL |
3315 | && ((bfd_get_format (abfd) == bfd_archive | |
3316 | && !s->input_statement.flags.whole_archive) | |
3317 | || (bfd_get_format (abfd) == bfd_object | |
3318 | && ((abfd->flags) & DYNAMIC) != 0 | |
3319 | && s->input_statement.flags.add_DT_NEEDED_for_regular | |
e77620a5 | 3320 | && bfd_get_flavour (abfd) == bfd_target_elf_flavour |
0fef4b98 | 3321 | && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0))) |
15fc2e13 | 3322 | { |
66be1055 AM |
3323 | s->input_statement.flags.loaded = FALSE; |
3324 | s->input_statement.flags.reload = TRUE; | |
15fc2e13 | 3325 | } |
252b5132 | 3326 | |
bde18da4 | 3327 | os_tail = lang_output_section_statement.tail; |
d1778b88 | 3328 | lang_list_init (&add); |
1276aefa | 3329 | |
0aa7f586 | 3330 | if (!load_symbols (&s->input_statement, &add)) |
b34976b6 | 3331 | config.make_executable = FALSE; |
252b5132 RH |
3332 | |
3333 | if (add.head != NULL) | |
3334 | { | |
bde18da4 AM |
3335 | /* If this was a script with output sections then |
3336 | tack any added statements on to the end of the | |
3337 | list. This avoids having to reorder the output | |
3338 | section statement list. Very likely the user | |
3339 | forgot -T, and whatever we do here will not meet | |
3340 | naive user expectations. */ | |
3341 | if (os_tail != lang_output_section_statement.tail) | |
3342 | { | |
3343 | einfo (_("%P: warning: %s contains output sections;" | |
3344 | " did you forget -T?\n"), | |
3345 | s->input_statement.filename); | |
3346 | *stat_ptr->tail = add.head; | |
3347 | stat_ptr->tail = add.tail; | |
3348 | } | |
3349 | else | |
3350 | { | |
3351 | *add.tail = s->header.next; | |
3352 | s->header.next = add.head; | |
3353 | } | |
252b5132 RH |
3354 | } |
3355 | } | |
9e2278f5 AM |
3356 | #ifdef ENABLE_PLUGINS |
3357 | /* If we have found the point at which a plugin added new | |
3358 | files, clear plugin_insert to enable archive rescan. */ | |
3359 | if (&s->input_statement == plugin_insert) | |
3360 | plugin_insert = NULL; | |
3361 | #endif | |
252b5132 | 3362 | break; |
e759c116 | 3363 | case lang_assignment_statement_enum: |
eb8476a6 | 3364 | if (s->assignment_statement.exp->assign.defsym) |
01554a74 AM |
3365 | /* This is from a --defsym on the command line. */ |
3366 | exp_fold_tree_no_dot (s->assignment_statement.exp); | |
e759c116 | 3367 | break; |
252b5132 RH |
3368 | default: |
3369 | break; | |
3370 | } | |
3371 | } | |
c4b78195 NC |
3372 | |
3373 | /* Exit if any of the files were missing. */ | |
66be1055 | 3374 | if (input_flags.missing_file) |
c4b78195 | 3375 | einfo ("%F"); |
252b5132 RH |
3376 | } |
3377 | ||
08da4cac | 3378 | /* Add the supplied name to the symbol table as an undefined reference. |
fcf0e35b AM |
3379 | This is a two step process as the symbol table doesn't even exist at |
3380 | the time the ld command line is processed. First we put the name | |
3381 | on a list, then, once the output file has been opened, transfer the | |
3382 | name to the symbol table. */ | |
3383 | ||
e3e942e9 | 3384 | typedef struct bfd_sym_chain ldlang_undef_chain_list_type; |
252b5132 | 3385 | |
e3e942e9 | 3386 | #define ldlang_undef_chain_list_head entry_symbol.next |
252b5132 RH |
3387 | |
3388 | void | |
24898b70 | 3389 | ldlang_add_undef (const char *const name, bfd_boolean cmdline) |
252b5132 | 3390 | { |
24898b70 | 3391 | ldlang_undef_chain_list_type *new_undef; |
252b5132 | 3392 | |
24898b70 AM |
3393 | undef_from_cmdline = undef_from_cmdline || cmdline; |
3394 | new_undef = (ldlang_undef_chain_list_type *) stat_alloc (sizeof (*new_undef)); | |
d3ce72d0 NC |
3395 | new_undef->next = ldlang_undef_chain_list_head; |
3396 | ldlang_undef_chain_list_head = new_undef; | |
252b5132 | 3397 | |
d3ce72d0 | 3398 | new_undef->name = xstrdup (name); |
fcf0e35b | 3399 | |
f13a99db | 3400 | if (link_info.output_bfd != NULL) |
d3ce72d0 | 3401 | insert_undefined (new_undef->name); |
fcf0e35b AM |
3402 | } |
3403 | ||
3404 | /* Insert NAME as undefined in the symbol table. */ | |
3405 | ||
3406 | static void | |
1579bae1 | 3407 | insert_undefined (const char *name) |
fcf0e35b AM |
3408 | { |
3409 | struct bfd_link_hash_entry *h; | |
3410 | ||
b34976b6 | 3411 | h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE); |
1579bae1 | 3412 | if (h == NULL) |
fcf0e35b AM |
3413 | einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n")); |
3414 | if (h->type == bfd_link_hash_new) | |
3415 | { | |
3416 | h->type = bfd_link_hash_undefined; | |
3417 | h->u.undef.abfd = NULL; | |
3418 | bfd_link_add_undef (link_info.hash, h); | |
3419 | } | |
252b5132 RH |
3420 | } |
3421 | ||
3422 | /* Run through the list of undefineds created above and place them | |
3423 | into the linker hash table as undefined symbols belonging to the | |
08da4cac KH |
3424 | script file. */ |
3425 | ||
252b5132 | 3426 | static void |
1579bae1 | 3427 | lang_place_undefineds (void) |
252b5132 RH |
3428 | { |
3429 | ldlang_undef_chain_list_type *ptr; | |
3430 | ||
1579bae1 AM |
3431 | for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next) |
3432 | insert_undefined (ptr->name); | |
252b5132 RH |
3433 | } |
3434 | ||
0a618243 AB |
3435 | /* Structure used to build the list of symbols that the user has required |
3436 | be defined. */ | |
3437 | ||
3438 | struct require_defined_symbol | |
3439 | { | |
3440 | const char *name; | |
3441 | struct require_defined_symbol *next; | |
3442 | }; | |
3443 | ||
3444 | /* The list of symbols that the user has required be defined. */ | |
3445 | ||
3446 | static struct require_defined_symbol *require_defined_symbol_list; | |
3447 | ||
3448 | /* Add a new symbol NAME to the list of symbols that are required to be | |
3449 | defined. */ | |
3450 | ||
3451 | void | |
0aa7f586 | 3452 | ldlang_add_require_defined (const char *const name) |
0a618243 AB |
3453 | { |
3454 | struct require_defined_symbol *ptr; | |
3455 | ||
3456 | ldlang_add_undef (name, TRUE); | |
3457 | ptr = (struct require_defined_symbol *) stat_alloc (sizeof (*ptr)); | |
3458 | ptr->next = require_defined_symbol_list; | |
3459 | ptr->name = strdup (name); | |
3460 | require_defined_symbol_list = ptr; | |
3461 | } | |
3462 | ||
3463 | /* Check that all symbols the user required to be defined, are defined, | |
3464 | raise an error if we find a symbol that is not defined. */ | |
3465 | ||
3466 | static void | |
3467 | ldlang_check_require_defined_symbols (void) | |
3468 | { | |
3469 | struct require_defined_symbol *ptr; | |
3470 | ||
3471 | for (ptr = require_defined_symbol_list; ptr != NULL; ptr = ptr->next) | |
3472 | { | |
3473 | struct bfd_link_hash_entry *h; | |
3474 | ||
3475 | h = bfd_link_hash_lookup (link_info.hash, ptr->name, | |
0aa7f586 | 3476 | FALSE, FALSE, TRUE); |
0a618243 | 3477 | if (h == NULL |
0aa7f586 AM |
3478 | || (h->type != bfd_link_hash_defined |
3479 | && h->type != bfd_link_hash_defweak)) | |
3480 | einfo(_("%P%X: required symbol `%s' not defined\n"), ptr->name); | |
0a618243 AB |
3481 | } |
3482 | } | |
3483 | ||
0841712e JJ |
3484 | /* Check for all readonly or some readwrite sections. */ |
3485 | ||
3486 | static void | |
6feb9908 AM |
3487 | check_input_sections |
3488 | (lang_statement_union_type *s, | |
3489 | lang_output_section_statement_type *output_section_statement) | |
0841712e JJ |
3490 | { |
3491 | for (; s != (lang_statement_union_type *) NULL; s = s->header.next) | |
3492 | { | |
3493 | switch (s->header.type) | |
967928e9 AM |
3494 | { |
3495 | case lang_wild_statement_enum: | |
3496 | walk_wild (&s->wild_statement, check_section_callback, | |
3497 | output_section_statement); | |
0aa7f586 | 3498 | if (!output_section_statement->all_input_readonly) |
967928e9 AM |
3499 | return; |
3500 | break; | |
3501 | case lang_constructors_statement_enum: | |
3502 | check_input_sections (constructor_list.head, | |
3503 | output_section_statement); | |
0aa7f586 | 3504 | if (!output_section_statement->all_input_readonly) |
967928e9 AM |
3505 | return; |
3506 | break; | |
3507 | case lang_group_statement_enum: | |
3508 | check_input_sections (s->group_statement.children.head, | |
3509 | output_section_statement); | |
0aa7f586 | 3510 | if (!output_section_statement->all_input_readonly) |
967928e9 AM |
3511 | return; |
3512 | break; | |
3513 | default: | |
3514 | break; | |
3515 | } | |
0841712e JJ |
3516 | } |
3517 | } | |
3518 | ||
bcaa7b3e L |
3519 | /* Update wildcard statements if needed. */ |
3520 | ||
3521 | static void | |
3522 | update_wild_statements (lang_statement_union_type *s) | |
3523 | { | |
3524 | struct wildcard_list *sec; | |
3525 | ||
3526 | switch (sort_section) | |
3527 | { | |
3528 | default: | |
3529 | FAIL (); | |
3530 | ||
3531 | case none: | |
3532 | break; | |
3533 | ||
3534 | case by_name: | |
3535 | case by_alignment: | |
3536 | for (; s != NULL; s = s->header.next) | |
3537 | { | |
3538 | switch (s->header.type) | |
3539 | { | |
3540 | default: | |
3541 | break; | |
3542 | ||
3543 | case lang_wild_statement_enum: | |
0d0999db L |
3544 | for (sec = s->wild_statement.section_list; sec != NULL; |
3545 | sec = sec->next) | |
bcaa7b3e L |
3546 | { |
3547 | switch (sec->spec.sorted) | |
3548 | { | |
3549 | case none: | |
3550 | sec->spec.sorted = sort_section; | |
3551 | break; | |
3552 | case by_name: | |
3553 | if (sort_section == by_alignment) | |
3554 | sec->spec.sorted = by_name_alignment; | |
3555 | break; | |
3556 | case by_alignment: | |
3557 | if (sort_section == by_name) | |
3558 | sec->spec.sorted = by_alignment_name; | |
3559 | break; | |
3560 | default: | |
3561 | break; | |
3562 | } | |
3563 | } | |
3564 | break; | |
3565 | ||
3566 | case lang_constructors_statement_enum: | |
3567 | update_wild_statements (constructor_list.head); | |
3568 | break; | |
3569 | ||
3570 | case lang_output_section_statement_enum: | |
eda680f8 L |
3571 | /* Don't sort .init/.fini sections. */ |
3572 | if (strcmp (s->output_section_statement.name, ".init") != 0 | |
3573 | && strcmp (s->output_section_statement.name, ".fini") != 0) | |
3574 | update_wild_statements | |
3575 | (s->output_section_statement.children.head); | |
bcaa7b3e L |
3576 | break; |
3577 | ||
3578 | case lang_group_statement_enum: | |
3579 | update_wild_statements (s->group_statement.children.head); | |
3580 | break; | |
3581 | } | |
3582 | } | |
3583 | break; | |
3584 | } | |
3585 | } | |
3586 | ||
396a2467 | 3587 | /* Open input files and attach to output sections. */ |
08da4cac | 3588 | |
252b5132 | 3589 | static void |
1579bae1 AM |
3590 | map_input_to_output_sections |
3591 | (lang_statement_union_type *s, const char *target, | |
afd7a018 | 3592 | lang_output_section_statement_type *os) |
252b5132 | 3593 | { |
1579bae1 | 3594 | for (; s != NULL; s = s->header.next) |
252b5132 | 3595 | { |
dfa7b0b8 AM |
3596 | lang_output_section_statement_type *tos; |
3597 | flagword flags; | |
3598 | ||
252b5132 RH |
3599 | switch (s->header.type) |
3600 | { | |
252b5132 | 3601 | case lang_wild_statement_enum: |
afd7a018 | 3602 | wild (&s->wild_statement, target, os); |
abc6ab0a | 3603 | break; |
252b5132 RH |
3604 | case lang_constructors_statement_enum: |
3605 | map_input_to_output_sections (constructor_list.head, | |
3606 | target, | |
afd7a018 | 3607 | os); |
252b5132 RH |
3608 | break; |
3609 | case lang_output_section_statement_enum: | |
dfa7b0b8 AM |
3610 | tos = &s->output_section_statement; |
3611 | if (tos->constraint != 0) | |
0841712e | 3612 | { |
dfa7b0b8 AM |
3613 | if (tos->constraint != ONLY_IF_RW |
3614 | && tos->constraint != ONLY_IF_RO) | |
0841712e | 3615 | break; |
dfa7b0b8 AM |
3616 | tos->all_input_readonly = TRUE; |
3617 | check_input_sections (tos->children.head, tos); | |
3618 | if (tos->all_input_readonly != (tos->constraint == ONLY_IF_RO)) | |
0841712e | 3619 | { |
dfa7b0b8 | 3620 | tos->constraint = -1; |
0841712e JJ |
3621 | break; |
3622 | } | |
3623 | } | |
dfa7b0b8 | 3624 | map_input_to_output_sections (tos->children.head, |
252b5132 | 3625 | target, |
dfa7b0b8 | 3626 | tos); |
a431bc2e AM |
3627 | break; |
3628 | case lang_output_statement_enum: | |
252b5132 RH |
3629 | break; |
3630 | case lang_target_statement_enum: | |
3631 | target = s->target_statement.target; | |
3632 | break; | |
3633 | case lang_group_statement_enum: | |
3634 | map_input_to_output_sections (s->group_statement.children.head, | |
3635 | target, | |
afd7a018 | 3636 | os); |
252b5132 | 3637 | break; |
384d938f NS |
3638 | case lang_data_statement_enum: |
3639 | /* Make sure that any sections mentioned in the expression | |
3640 | are initialized. */ | |
3641 | exp_init_os (s->data_statement.exp); | |
2e76e85a AM |
3642 | /* The output section gets CONTENTS, ALLOC and LOAD, but |
3643 | these may be overridden by the script. */ | |
dfa7b0b8 AM |
3644 | flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD; |
3645 | switch (os->sectype) | |
3646 | { | |
3647 | case normal_section: | |
3648 | case overlay_section: | |
3649 | break; | |
3650 | case noalloc_section: | |
3651 | flags = SEC_HAS_CONTENTS; | |
3652 | break; | |
3653 | case noload_section: | |
f4eaaf7f AM |
3654 | if (bfd_get_flavour (link_info.output_bfd) |
3655 | == bfd_target_elf_flavour) | |
3656 | flags = SEC_NEVER_LOAD | SEC_ALLOC; | |
3657 | else | |
3658 | flags = SEC_NEVER_LOAD | SEC_HAS_CONTENTS; | |
dfa7b0b8 AM |
3659 | break; |
3660 | } | |
a431bc2e | 3661 | if (os->bfd_section == NULL) |
dfa7b0b8 | 3662 | init_os (os, flags); |
a431bc2e AM |
3663 | else |
3664 | os->bfd_section->flags |= flags; | |
afd7a018 | 3665 | break; |
252b5132 | 3666 | case lang_input_section_enum: |
e0f6802f AM |
3667 | break; |
3668 | case lang_fill_statement_enum: | |
252b5132 | 3669 | case lang_object_symbols_statement_enum: |
252b5132 RH |
3670 | case lang_reloc_statement_enum: |
3671 | case lang_padding_statement_enum: | |
3672 | case lang_input_statement_enum: | |
afd7a018 | 3673 | if (os != NULL && os->bfd_section == NULL) |
dfa7b0b8 | 3674 | init_os (os, 0); |
252b5132 RH |
3675 | break; |
3676 | case lang_assignment_statement_enum: | |
afd7a018 | 3677 | if (os != NULL && os->bfd_section == NULL) |
dfa7b0b8 | 3678 | init_os (os, 0); |
252b5132 RH |
3679 | |
3680 | /* Make sure that any sections mentioned in the assignment | |
08da4cac | 3681 | are initialized. */ |
252b5132 RH |
3682 | exp_init_os (s->assignment_statement.exp); |
3683 | break; | |
252b5132 | 3684 | case lang_address_statement_enum: |
a431bc2e AM |
3685 | /* Mark the specified section with the supplied address. |
3686 | If this section was actually a segment marker, then the | |
3687 | directive is ignored if the linker script explicitly | |
3688 | processed the segment marker. Originally, the linker | |
3689 | treated segment directives (like -Ttext on the | |
3690 | command-line) as section directives. We honor the | |
3691 | section directive semantics for backwards compatibilty; | |
3692 | linker scripts that do not specifically check for | |
3693 | SEGMENT_START automatically get the old semantics. */ | |
329c1c86 | 3694 | if (!s->address_statement.segment |
ba916c8a MM |
3695 | || !s->address_statement.segment->used) |
3696 | { | |
dfa7b0b8 AM |
3697 | const char *name = s->address_statement.section_name; |
3698 | ||
3699 | /* Create the output section statement here so that | |
3700 | orphans with a set address will be placed after other | |
3701 | script sections. If we let the orphan placement code | |
3702 | place them in amongst other sections then the address | |
3703 | will affect following script sections, which is | |
3704 | likely to surprise naive users. */ | |
3705 | tos = lang_output_section_statement_lookup (name, 0, TRUE); | |
3706 | tos->addr_tree = s->address_statement.address; | |
3707 | if (tos->bfd_section == NULL) | |
3708 | init_os (tos, 0); | |
ba916c8a | 3709 | } |
252b5132 | 3710 | break; |
53d25da6 AM |
3711 | case lang_insert_statement_enum: |
3712 | break; | |
3713 | } | |
3714 | } | |
3715 | } | |
3716 | ||
3717 | /* An insert statement snips out all the linker statements from the | |
3718 | start of the list and places them after the output section | |
3719 | statement specified by the insert. This operation is complicated | |
3720 | by the fact that we keep a doubly linked list of output section | |
3721 | statements as well as the singly linked list of all statements. */ | |
3722 | ||
3723 | static void | |
3724 | process_insert_statements (void) | |
3725 | { | |
3726 | lang_statement_union_type **s; | |
3727 | lang_output_section_statement_type *first_os = NULL; | |
3728 | lang_output_section_statement_type *last_os = NULL; | |
66c103b7 | 3729 | lang_output_section_statement_type *os; |
53d25da6 AM |
3730 | |
3731 | /* "start of list" is actually the statement immediately after | |
3732 | the special abs_section output statement, so that it isn't | |
3733 | reordered. */ | |
3734 | s = &lang_output_section_statement.head; | |
3735 | while (*(s = &(*s)->header.next) != NULL) | |
3736 | { | |
3737 | if ((*s)->header.type == lang_output_section_statement_enum) | |
3738 | { | |
3739 | /* Keep pointers to the first and last output section | |
3740 | statement in the sequence we may be about to move. */ | |
d2ae7be0 AM |
3741 | os = &(*s)->output_section_statement; |
3742 | ||
3743 | ASSERT (last_os == NULL || last_os->next == os); | |
3744 | last_os = os; | |
66c103b7 AM |
3745 | |
3746 | /* Set constraint negative so that lang_output_section_find | |
3747 | won't match this output section statement. At this | |
3748 | stage in linking constraint has values in the range | |
3749 | [-1, ONLY_IN_RW]. */ | |
3750 | last_os->constraint = -2 - last_os->constraint; | |
53d25da6 AM |
3751 | if (first_os == NULL) |
3752 | first_os = last_os; | |
3753 | } | |
3754 | else if ((*s)->header.type == lang_insert_statement_enum) | |
3755 | { | |
3756 | lang_insert_statement_type *i = &(*s)->insert_statement; | |
3757 | lang_output_section_statement_type *where; | |
53d25da6 AM |
3758 | lang_statement_union_type **ptr; |
3759 | lang_statement_union_type *first; | |
3760 | ||
3761 | where = lang_output_section_find (i->where); | |
3762 | if (where != NULL && i->is_before) | |
3763 | { | |
967928e9 | 3764 | do |
53d25da6 | 3765 | where = where->prev; |
66c103b7 | 3766 | while (where != NULL && where->constraint < 0); |
53d25da6 AM |
3767 | } |
3768 | if (where == NULL) | |
3769 | { | |
66c103b7 AM |
3770 | einfo (_("%F%P: %s not found for insert\n"), i->where); |
3771 | return; | |
53d25da6 AM |
3772 | } |
3773 | ||
3774 | /* Deal with reordering the output section statement list. */ | |
3775 | if (last_os != NULL) | |
3776 | { | |
3777 | asection *first_sec, *last_sec; | |
29183214 | 3778 | struct lang_output_section_statement_struct **next; |
53d25da6 AM |
3779 | |
3780 | /* Snip out the output sections we are moving. */ | |
3781 | first_os->prev->next = last_os->next; | |
3782 | if (last_os->next == NULL) | |
29183214 L |
3783 | { |
3784 | next = &first_os->prev->next; | |
3785 | lang_output_section_statement.tail | |
3786 | = (lang_statement_union_type **) next; | |
3787 | } | |
53d25da6 AM |
3788 | else |
3789 | last_os->next->prev = first_os->prev; | |
3790 | /* Add them in at the new position. */ | |
3791 | last_os->next = where->next; | |
3792 | if (where->next == NULL) | |
29183214 L |
3793 | { |
3794 | next = &last_os->next; | |
3795 | lang_output_section_statement.tail | |
3796 | = (lang_statement_union_type **) next; | |
3797 | } | |
53d25da6 AM |
3798 | else |
3799 | where->next->prev = last_os; | |
3800 | first_os->prev = where; | |
3801 | where->next = first_os; | |
3802 | ||
3803 | /* Move the bfd sections in the same way. */ | |
3804 | first_sec = NULL; | |
3805 | last_sec = NULL; | |
3806 | for (os = first_os; os != NULL; os = os->next) | |
3807 | { | |
66c103b7 | 3808 | os->constraint = -2 - os->constraint; |
53d25da6 AM |
3809 | if (os->bfd_section != NULL |
3810 | && os->bfd_section->owner != NULL) | |
3811 | { | |
3812 | last_sec = os->bfd_section; | |
3813 | if (first_sec == NULL) | |
3814 | first_sec = last_sec; | |
3815 | } | |
3816 | if (os == last_os) | |
3817 | break; | |
3818 | } | |
3819 | if (last_sec != NULL) | |
3820 | { | |
3821 | asection *sec = where->bfd_section; | |
3822 | if (sec == NULL) | |
3823 | sec = output_prev_sec_find (where); | |
3824 | ||
3825 | /* The place we want to insert must come after the | |
3826 | sections we are moving. So if we find no | |
3827 | section or if the section is the same as our | |
3828 | last section, then no move is needed. */ | |
3829 | if (sec != NULL && sec != last_sec) | |
3830 | { | |
3831 | /* Trim them off. */ | |
3832 | if (first_sec->prev != NULL) | |
3833 | first_sec->prev->next = last_sec->next; | |
3834 | else | |
f13a99db | 3835 | link_info.output_bfd->sections = last_sec->next; |
53d25da6 AM |
3836 | if (last_sec->next != NULL) |
3837 | last_sec->next->prev = first_sec->prev; | |
3838 | else | |
f13a99db | 3839 | link_info.output_bfd->section_last = first_sec->prev; |
53d25da6 AM |
3840 | /* Add back. */ |
3841 | last_sec->next = sec->next; | |
3842 | if (sec->next != NULL) | |
3843 | sec->next->prev = last_sec; | |
3844 | else | |
f13a99db | 3845 | link_info.output_bfd->section_last = last_sec; |
53d25da6 AM |
3846 | first_sec->prev = sec; |
3847 | sec->next = first_sec; | |
3848 | } | |
3849 | } | |
3850 | ||
3851 | first_os = NULL; | |
3852 | last_os = NULL; | |
3853 | } | |
3854 | ||
3855 | ptr = insert_os_after (where); | |
3856 | /* Snip everything after the abs_section output statement we | |
3857 | know is at the start of the list, up to and including | |
3858 | the insert statement we are currently processing. */ | |
3859 | first = lang_output_section_statement.head->header.next; | |
3860 | lang_output_section_statement.head->header.next = (*s)->header.next; | |
3861 | /* Add them back where they belong. */ | |
3862 | *s = *ptr; | |
3863 | if (*s == NULL) | |
3864 | statement_list.tail = s; | |
3865 | *ptr = first; | |
3866 | s = &lang_output_section_statement.head; | |
252b5132 RH |
3867 | } |
3868 | } | |
66c103b7 AM |
3869 | |
3870 | /* Undo constraint twiddling. */ | |
3871 | for (os = first_os; os != NULL; os = os->next) | |
3872 | { | |
3873 | os->constraint = -2 - os->constraint; | |
3874 | if (os == last_os) | |
3875 | break; | |
3876 | } | |
252b5132 RH |
3877 | } |
3878 | ||
4bd5a393 AM |
3879 | /* An output section might have been removed after its statement was |
3880 | added. For example, ldemul_before_allocation can remove dynamic | |
3881 | sections if they turn out to be not needed. Clean them up here. */ | |
3882 | ||
8423293d | 3883 | void |
1579bae1 | 3884 | strip_excluded_output_sections (void) |
4bd5a393 | 3885 | { |
afd7a018 | 3886 | lang_output_section_statement_type *os; |
4bd5a393 | 3887 | |
046183de | 3888 | /* Run lang_size_sections (if not already done). */ |
e9ee469a AM |
3889 | if (expld.phase != lang_mark_phase_enum) |
3890 | { | |
3891 | expld.phase = lang_mark_phase_enum; | |
3892 | expld.dataseg.phase = exp_dataseg_none; | |
3893 | one_lang_size_sections_pass (NULL, FALSE); | |
3894 | lang_reset_memory_regions (); | |
3895 | } | |
3896 | ||
afd7a018 AM |
3897 | for (os = &lang_output_section_statement.head->output_section_statement; |
3898 | os != NULL; | |
3899 | os = os->next) | |
4bd5a393 | 3900 | { |
75ff4589 L |
3901 | asection *output_section; |
3902 | bfd_boolean exclude; | |
4bd5a393 | 3903 | |
66c103b7 | 3904 | if (os->constraint < 0) |
0841712e | 3905 | continue; |
8423293d | 3906 | |
75ff4589 L |
3907 | output_section = os->bfd_section; |
3908 | if (output_section == NULL) | |
8423293d AM |
3909 | continue; |
3910 | ||
32124d5b AM |
3911 | exclude = (output_section->rawsize == 0 |
3912 | && (output_section->flags & SEC_KEEP) == 0 | |
f13a99db | 3913 | && !bfd_section_removed_from_list (link_info.output_bfd, |
32124d5b AM |
3914 | output_section)); |
3915 | ||
3916 | /* Some sections have not yet been sized, notably .gnu.version, | |
3917 | .dynsym, .dynstr and .hash. These all have SEC_LINKER_CREATED | |
3918 | input sections, so don't drop output sections that have such | |
3919 | input sections unless they are also marked SEC_EXCLUDE. */ | |
3920 | if (exclude && output_section->map_head.s != NULL) | |
75ff4589 L |
3921 | { |
3922 | asection *s; | |
8423293d | 3923 | |
32124d5b | 3924 | for (s = output_section->map_head.s; s != NULL; s = s->map_head.s) |
b514e6a5 AM |
3925 | if ((s->flags & SEC_EXCLUDE) == 0 |
3926 | && ((s->flags & SEC_LINKER_CREATED) != 0 | |
3927 | || link_info.emitrelocations)) | |
e9ee469a AM |
3928 | { |
3929 | exclude = FALSE; | |
3930 | break; | |
3931 | } | |
75ff4589 | 3932 | } |
8423293d | 3933 | |
32124d5b | 3934 | if (exclude) |
4bd5a393 | 3935 | { |
e9ee469a AM |
3936 | /* We don't set bfd_section to NULL since bfd_section of the |
3937 | removed output section statement may still be used. */ | |
6d8bf25d | 3938 | if (!os->update_dot) |
74541ad4 | 3939 | os->ignored = TRUE; |
e9ee469a | 3940 | output_section->flags |= SEC_EXCLUDE; |
f13a99db AM |
3941 | bfd_section_list_remove (link_info.output_bfd, output_section); |
3942 | link_info.output_bfd->section_count--; | |
4bd5a393 AM |
3943 | } |
3944 | } | |
18cd5bce AM |
3945 | } |
3946 | ||
3947 | /* Called from ldwrite to clear out asection.map_head and | |
3948 | asection.map_tail for use as link_orders in ldwrite. | |
3949 | FIXME: Except for sh64elf.em which starts creating link_orders in | |
3950 | its after_allocation routine so needs to call it early. */ | |
3951 | ||
3952 | void | |
3953 | lang_clear_os_map (void) | |
3954 | { | |
3955 | lang_output_section_statement_type *os; | |
3956 | ||
3957 | if (map_head_is_link_order) | |
3958 | return; | |
3959 | ||
3960 | for (os = &lang_output_section_statement.head->output_section_statement; | |
3961 | os != NULL; | |
3962 | os = os->next) | |
3963 | { | |
3964 | asection *output_section; | |
3965 | ||
3966 | if (os->constraint < 0) | |
3967 | continue; | |
3968 | ||
3969 | output_section = os->bfd_section; | |
3970 | if (output_section == NULL) | |
3971 | continue; | |
3972 | ||
3973 | /* TODO: Don't just junk map_head.s, turn them into link_orders. */ | |
3974 | output_section->map_head.link_order = NULL; | |
3975 | output_section->map_tail.link_order = NULL; | |
3976 | } | |
8423293d AM |
3977 | |
3978 | /* Stop future calls to lang_add_section from messing with map_head | |
3979 | and map_tail link_order fields. */ | |
18cd5bce | 3980 | map_head_is_link_order = TRUE; |
4bd5a393 AM |
3981 | } |
3982 | ||
252b5132 | 3983 | static void |
1579bae1 AM |
3984 | print_output_section_statement |
3985 | (lang_output_section_statement_type *output_section_statement) | |
252b5132 RH |
3986 | { |
3987 | asection *section = output_section_statement->bfd_section; | |
3988 | int len; | |
3989 | ||
3990 | if (output_section_statement != abs_output_section) | |
3991 | { | |
3992 | minfo ("\n%s", output_section_statement->name); | |
3993 | ||
3994 | if (section != NULL) | |
3995 | { | |
3996 | print_dot = section->vma; | |
3997 | ||
3998 | len = strlen (output_section_statement->name); | |
3999 | if (len >= SECTION_NAME_MAP_LENGTH - 1) | |
4000 | { | |
4001 | print_nl (); | |
4002 | len = 0; | |
4003 | } | |
4004 | while (len < SECTION_NAME_MAP_LENGTH) | |
4005 | { | |
4006 | print_space (); | |
4007 | ++len; | |
4008 | } | |
4009 | ||
953dd97e | 4010 | minfo ("0x%V %W", section->vma, TO_ADDR (section->size)); |
252b5132 | 4011 | |
67f744f3 AM |
4012 | if (section->vma != section->lma) |
4013 | minfo (_(" load address 0x%V"), section->lma); | |
5590fba9 NC |
4014 | |
4015 | if (output_section_statement->update_dot_tree != NULL) | |
4016 | exp_fold_tree (output_section_statement->update_dot_tree, | |
4017 | bfd_abs_section_ptr, &print_dot); | |
252b5132 RH |
4018 | } |
4019 | ||
4020 | print_nl (); | |
4021 | } | |
4022 | ||
4023 | print_statement_list (output_section_statement->children.head, | |
4024 | output_section_statement); | |
4025 | } | |
4026 | ||
4027 | static void | |
1579bae1 AM |
4028 | print_assignment (lang_assignment_statement_type *assignment, |
4029 | lang_output_section_statement_type *output_section) | |
252b5132 | 4030 | { |
3b83e13a NC |
4031 | unsigned int i; |
4032 | bfd_boolean is_dot; | |
afd7a018 | 4033 | etree_type *tree; |
8658f989 | 4034 | asection *osec; |
252b5132 RH |
4035 | |
4036 | for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++) | |
4037 | print_space (); | |
4038 | ||
afd7a018 AM |
4039 | if (assignment->exp->type.node_class == etree_assert) |
4040 | { | |
3b83e13a | 4041 | is_dot = FALSE; |
afd7a018 AM |
4042 | tree = assignment->exp->assert_s.child; |
4043 | } | |
4044 | else | |
4045 | { | |
4046 | const char *dst = assignment->exp->assign.dst; | |
3b83e13a NC |
4047 | |
4048 | is_dot = (dst[0] == '.' && dst[1] == 0); | |
7dd9c6eb AM |
4049 | if (!is_dot) |
4050 | expld.assign_name = dst; | |
afd7a018 AM |
4051 | tree = assignment->exp->assign.src; |
4052 | } | |
4053 | ||
8658f989 AM |
4054 | osec = output_section->bfd_section; |
4055 | if (osec == NULL) | |
4056 | osec = bfd_abs_section_ptr; | |
c05b575a AB |
4057 | |
4058 | if (assignment->exp->type.node_class != etree_provide) | |
4059 | exp_fold_tree (tree, osec, &print_dot); | |
4060 | else | |
4061 | expld.result.valid_p = FALSE; | |
4062 | ||
e9ee469a | 4063 | if (expld.result.valid_p) |
7b17f854 | 4064 | { |
7b17f854 RS |
4065 | bfd_vma value; |
4066 | ||
4194268f AM |
4067 | if (assignment->exp->type.node_class == etree_assert |
4068 | || is_dot | |
4069 | || expld.assign_name != NULL) | |
3b83e13a | 4070 | { |
e9ee469a | 4071 | value = expld.result.value; |
10dbd1f3 | 4072 | |
7542af2a | 4073 | if (expld.result.section != NULL) |
e9ee469a | 4074 | value += expld.result.section->vma; |
7b17f854 | 4075 | |
3b83e13a NC |
4076 | minfo ("0x%V", value); |
4077 | if (is_dot) | |
4078 | print_dot = value; | |
4079 | } | |
4080 | else | |
4081 | { | |
4082 | struct bfd_link_hash_entry *h; | |
4083 | ||
4084 | h = bfd_link_hash_lookup (link_info.hash, assignment->exp->assign.dst, | |
4085 | FALSE, FALSE, TRUE); | |
4086 | if (h) | |
4087 | { | |
10dbd1f3 | 4088 | value = h->u.def.value; |
f37a7048 NS |
4089 | value += h->u.def.section->output_section->vma; |
4090 | value += h->u.def.section->output_offset; | |
3b83e13a NC |
4091 | |
4092 | minfo ("[0x%V]", value); | |
4093 | } | |
4094 | else | |
4095 | minfo ("[unresolved]"); | |
4096 | } | |
7b17f854 | 4097 | } |
252b5132 RH |
4098 | else |
4099 | { | |
c05b575a | 4100 | if (assignment->exp->type.node_class == etree_provide) |
0aa7f586 | 4101 | minfo ("[!provide]"); |
c05b575a | 4102 | else |
0aa7f586 | 4103 | minfo ("*undef* "); |
252b5132 RH |
4104 | #ifdef BFD64 |
4105 | minfo (" "); | |
4106 | #endif | |
4107 | } | |
4194268f | 4108 | expld.assign_name = NULL; |
252b5132 RH |
4109 | |
4110 | minfo (" "); | |
252b5132 | 4111 | exp_print_tree (assignment->exp); |
252b5132 RH |
4112 | print_nl (); |
4113 | } | |
4114 | ||
4115 | static void | |
1579bae1 | 4116 | print_input_statement (lang_input_statement_type *statm) |
252b5132 | 4117 | { |
967928e9 AM |
4118 | if (statm->filename != NULL |
4119 | && (statm->the_bfd == NULL | |
4120 | || (statm->the_bfd->flags & BFD_LINKER_CREATED) == 0)) | |
906e58ca | 4121 | fprintf (config.map_file, "LOAD %s\n", statm->filename); |
252b5132 RH |
4122 | } |
4123 | ||
4124 | /* Print all symbols defined in a particular section. This is called | |
35835446 | 4125 | via bfd_link_hash_traverse, or by print_all_symbols. */ |
252b5132 | 4126 | |
b34976b6 | 4127 | static bfd_boolean |
1579bae1 | 4128 | print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr) |
252b5132 | 4129 | { |
1e9cc1c2 | 4130 | asection *sec = (asection *) ptr; |
252b5132 RH |
4131 | |
4132 | if ((hash_entry->type == bfd_link_hash_defined | |
4133 | || hash_entry->type == bfd_link_hash_defweak) | |
4134 | && sec == hash_entry->u.def.section) | |
4135 | { | |
4136 | int i; | |
4137 | ||
4138 | for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++) | |
4139 | print_space (); | |
4140 | minfo ("0x%V ", | |
4141 | (hash_entry->u.def.value | |
4142 | + hash_entry->u.def.section->output_offset | |
4143 | + hash_entry->u.def.section->output_section->vma)); | |
4144 | ||
4145 | minfo (" %T\n", hash_entry->root.string); | |
4146 | } | |
4147 | ||
b34976b6 | 4148 | return TRUE; |
252b5132 RH |
4149 | } |
4150 | ||
02688209 TG |
4151 | static int |
4152 | hash_entry_addr_cmp (const void *a, const void *b) | |
4153 | { | |
4154 | const struct bfd_link_hash_entry *l = *(const struct bfd_link_hash_entry **)a; | |
4155 | const struct bfd_link_hash_entry *r = *(const struct bfd_link_hash_entry **)b; | |
4156 | ||
4157 | if (l->u.def.value < r->u.def.value) | |
4158 | return -1; | |
4159 | else if (l->u.def.value > r->u.def.value) | |
4160 | return 1; | |
4161 | else | |
4162 | return 0; | |
4163 | } | |
4164 | ||
35835446 | 4165 | static void |
e0f6802f | 4166 | print_all_symbols (asection *sec) |
35835446 | 4167 | { |
6fcc66ab AM |
4168 | input_section_userdata_type *ud |
4169 | = (input_section_userdata_type *) get_userdata (sec); | |
35835446 | 4170 | struct map_symbol_def *def; |
02688209 TG |
4171 | struct bfd_link_hash_entry **entries; |
4172 | unsigned int i; | |
35835446 | 4173 | |
afd7a018 AM |
4174 | if (!ud) |
4175 | return; | |
4176 | ||
35835446 | 4177 | *ud->map_symbol_def_tail = 0; |
1e0061d2 | 4178 | |
02688209 | 4179 | /* Sort the symbols by address. */ |
1e9cc1c2 | 4180 | entries = (struct bfd_link_hash_entry **) |
0aa7f586 AM |
4181 | obstack_alloc (&map_obstack, |
4182 | ud->map_symbol_def_count * sizeof (*entries)); | |
02688209 TG |
4183 | |
4184 | for (i = 0, def = ud->map_symbol_def_head; def; def = def->next, i++) | |
4185 | entries[i] = def->entry; | |
4186 | ||
4187 | qsort (entries, ud->map_symbol_def_count, sizeof (*entries), | |
4724d37e | 4188 | hash_entry_addr_cmp); |
02688209 TG |
4189 | |
4190 | /* Print the symbols. */ | |
4191 | for (i = 0; i < ud->map_symbol_def_count; i++) | |
4192 | print_one_symbol (entries[i], sec); | |
4193 | ||
4194 | obstack_free (&map_obstack, entries); | |
35835446 JR |
4195 | } |
4196 | ||
252b5132 RH |
4197 | /* Print information about an input section to the map file. */ |
4198 | ||
4199 | static void | |
d64703c6 | 4200 | print_input_section (asection *i, bfd_boolean is_discarded) |
252b5132 | 4201 | { |
eea6121a | 4202 | bfd_size_type size = i->size; |
abe6ac95 AM |
4203 | int len; |
4204 | bfd_vma addr; | |
e5caa5e0 AM |
4205 | |
4206 | init_opb (); | |
4d4920ec | 4207 | |
abe6ac95 AM |
4208 | print_space (); |
4209 | minfo ("%s", i->name); | |
252b5132 | 4210 | |
abe6ac95 AM |
4211 | len = 1 + strlen (i->name); |
4212 | if (len >= SECTION_NAME_MAP_LENGTH - 1) | |
4213 | { | |
4214 | print_nl (); | |
4215 | len = 0; | |
4216 | } | |
4217 | while (len < SECTION_NAME_MAP_LENGTH) | |
4218 | { | |
57ceae94 | 4219 | print_space (); |
abe6ac95 AM |
4220 | ++len; |
4221 | } | |
252b5132 | 4222 | |
f13a99db AM |
4223 | if (i->output_section != NULL |
4224 | && i->output_section->owner == link_info.output_bfd) | |
abe6ac95 AM |
4225 | addr = i->output_section->vma + i->output_offset; |
4226 | else | |
4227 | { | |
4228 | addr = print_dot; | |
d64703c6 TG |
4229 | if (!is_discarded) |
4230 | size = 0; | |
abe6ac95 | 4231 | } |
252b5132 | 4232 | |
fc90c280 | 4233 | minfo ("0x%V %W %B\n", addr, size, i->owner); |
252b5132 | 4234 | |
abe6ac95 AM |
4235 | if (size != i->rawsize && i->rawsize != 0) |
4236 | { | |
4237 | len = SECTION_NAME_MAP_LENGTH + 3; | |
252b5132 | 4238 | #ifdef BFD64 |
abe6ac95 | 4239 | len += 16; |
252b5132 | 4240 | #else |
abe6ac95 | 4241 | len += 8; |
252b5132 | 4242 | #endif |
abe6ac95 AM |
4243 | while (len > 0) |
4244 | { | |
4245 | print_space (); | |
4246 | --len; | |
57ceae94 AM |
4247 | } |
4248 | ||
abe6ac95 AM |
4249 | minfo (_("%W (size before relaxing)\n"), i->rawsize); |
4250 | } | |
252b5132 | 4251 | |
f13a99db AM |
4252 | if (i->output_section != NULL |
4253 | && i->output_section->owner == link_info.output_bfd) | |
abe6ac95 | 4254 | { |
c0f00686 | 4255 | if (link_info.reduce_memory_overheads) |
abe6ac95 AM |
4256 | bfd_link_hash_traverse (link_info.hash, print_one_symbol, i); |
4257 | else | |
4258 | print_all_symbols (i); | |
4259 | ||
5590fba9 NC |
4260 | /* Update print_dot, but make sure that we do not move it |
4261 | backwards - this could happen if we have overlays and a | |
4262 | later overlay is shorter than an earier one. */ | |
4263 | if (addr + TO_ADDR (size) > print_dot) | |
4264 | print_dot = addr + TO_ADDR (size); | |
252b5132 RH |
4265 | } |
4266 | } | |
4267 | ||
4268 | static void | |
1579bae1 | 4269 | print_fill_statement (lang_fill_statement_type *fill) |
252b5132 | 4270 | { |
2c382fb6 AM |
4271 | size_t size; |
4272 | unsigned char *p; | |
4273 | fputs (" FILL mask 0x", config.map_file); | |
4274 | for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--) | |
4275 | fprintf (config.map_file, "%02x", *p); | |
4276 | fputs ("\n", config.map_file); | |
252b5132 RH |
4277 | } |
4278 | ||
4279 | static void | |
1579bae1 | 4280 | print_data_statement (lang_data_statement_type *data) |
252b5132 RH |
4281 | { |
4282 | int i; | |
4283 | bfd_vma addr; | |
4284 | bfd_size_type size; | |
4285 | const char *name; | |
4286 | ||
e5caa5e0 | 4287 | init_opb (); |
252b5132 RH |
4288 | for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++) |
4289 | print_space (); | |
4290 | ||
7fabd029 | 4291 | addr = data->output_offset; |
252b5132 RH |
4292 | if (data->output_section != NULL) |
4293 | addr += data->output_section->vma; | |
4294 | ||
4295 | switch (data->type) | |
4296 | { | |
4297 | default: | |
4298 | abort (); | |
4299 | case BYTE: | |
4300 | size = BYTE_SIZE; | |
4301 | name = "BYTE"; | |
4302 | break; | |
4303 | case SHORT: | |
4304 | size = SHORT_SIZE; | |
4305 | name = "SHORT"; | |
4306 | break; | |
4307 | case LONG: | |
4308 | size = LONG_SIZE; | |
4309 | name = "LONG"; | |
4310 | break; | |
4311 | case QUAD: | |
4312 | size = QUAD_SIZE; | |
4313 | name = "QUAD"; | |
4314 | break; | |
4315 | case SQUAD: | |
4316 | size = QUAD_SIZE; | |
4317 | name = "SQUAD"; | |
4318 | break; | |
4319 | } | |
4320 | ||
953dd97e DG |
4321 | if (size < TO_SIZE ((unsigned) 1)) |
4322 | size = TO_SIZE ((unsigned) 1); | |
4323 | minfo ("0x%V %W %s 0x%v", addr, TO_ADDR (size), name, data->value); | |
252b5132 RH |
4324 | |
4325 | if (data->exp->type.node_class != etree_value) | |
4326 | { | |
4327 | print_space (); | |
4328 | exp_print_tree (data->exp); | |
4329 | } | |
4330 | ||
4331 | print_nl (); | |
4332 | ||
e5caa5e0 | 4333 | print_dot = addr + TO_ADDR (size); |
252b5132 RH |
4334 | } |
4335 | ||
4336 | /* Print an address statement. These are generated by options like | |
4337 | -Ttext. */ | |
4338 | ||
4339 | static void | |
1579bae1 | 4340 | print_address_statement (lang_address_statement_type *address) |
252b5132 RH |
4341 | { |
4342 | minfo (_("Address of section %s set to "), address->section_name); | |
4343 | exp_print_tree (address->address); | |
4344 | print_nl (); | |
4345 | } | |
4346 | ||
4347 | /* Print a reloc statement. */ | |
4348 | ||
4349 | static void | |
1579bae1 | 4350 | print_reloc_statement (lang_reloc_statement_type *reloc) |
252b5132 RH |
4351 | { |
4352 | int i; | |
4353 | bfd_vma addr; | |
4354 | bfd_size_type size; | |
4355 | ||
e5caa5e0 | 4356 | init_opb (); |
252b5132 RH |
4357 | for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++) |
4358 | print_space (); | |
4359 | ||
7fabd029 | 4360 | addr = reloc->output_offset; |
252b5132 RH |
4361 | if (reloc->output_section != NULL) |
4362 | addr += reloc->output_section->vma; | |
4363 | ||
4364 | size = bfd_get_reloc_size (reloc->howto); | |
4365 | ||
953dd97e | 4366 | minfo ("0x%V %W RELOC %s ", addr, TO_ADDR (size), reloc->howto->name); |
252b5132 RH |
4367 | |
4368 | if (reloc->name != NULL) | |
4369 | minfo ("%s+", reloc->name); | |
4370 | else | |
4371 | minfo ("%s+", reloc->section->name); | |
4372 | ||
4373 | exp_print_tree (reloc->addend_exp); | |
4374 | ||
4375 | print_nl (); | |
4376 | ||
e5caa5e0 | 4377 | print_dot = addr + TO_ADDR (size); |
5f992e62 | 4378 | } |
252b5132 RH |
4379 | |
4380 | static void | |
1579bae1 | 4381 | print_padding_statement (lang_padding_statement_type *s) |
252b5132 RH |
4382 | { |
4383 | int len; | |
4384 | bfd_vma addr; | |
4385 | ||
e5caa5e0 | 4386 | init_opb (); |
252b5132 RH |
4387 | minfo (" *fill*"); |
4388 | ||
4389 | len = sizeof " *fill*" - 1; | |
4390 | while (len < SECTION_NAME_MAP_LENGTH) | |
4391 | { | |
4392 | print_space (); | |
4393 | ++len; | |
4394 | } | |
4395 | ||
4396 | addr = s->output_offset; | |
4397 | if (s->output_section != NULL) | |
4398 | addr += s->output_section->vma; | |
953dd97e | 4399 | minfo ("0x%V %W ", addr, TO_ADDR (s->size)); |
252b5132 | 4400 | |
2c382fb6 AM |
4401 | if (s->fill->size != 0) |
4402 | { | |
4403 | size_t size; | |
4404 | unsigned char *p; | |
4405 | for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--) | |
4406 | fprintf (config.map_file, "%02x", *p); | |
4407 | } | |
252b5132 RH |
4408 | |
4409 | print_nl (); | |
4410 | ||
e5caa5e0 | 4411 | print_dot = addr + TO_ADDR (s->size); |
252b5132 RH |
4412 | } |
4413 | ||
4414 | static void | |
1579bae1 AM |
4415 | print_wild_statement (lang_wild_statement_type *w, |
4416 | lang_output_section_statement_type *os) | |
252b5132 | 4417 | { |
b6bf44ba AM |
4418 | struct wildcard_list *sec; |
4419 | ||
252b5132 RH |
4420 | print_space (); |
4421 | ||
4422 | if (w->filenames_sorted) | |
4423 | minfo ("SORT("); | |
08da4cac | 4424 | if (w->filename != NULL) |
252b5132 RH |
4425 | minfo ("%s", w->filename); |
4426 | else | |
4427 | minfo ("*"); | |
4428 | if (w->filenames_sorted) | |
4429 | minfo (")"); | |
4430 | ||
4431 | minfo ("("); | |
b6bf44ba AM |
4432 | for (sec = w->section_list; sec; sec = sec->next) |
4433 | { | |
4434 | if (sec->spec.sorted) | |
4435 | minfo ("SORT("); | |
4436 | if (sec->spec.exclude_name_list != NULL) | |
4437 | { | |
4438 | name_list *tmp; | |
34786259 | 4439 | minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name); |
b6bf44ba | 4440 | for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next) |
34786259 AM |
4441 | minfo (" %s", tmp->name); |
4442 | minfo (") "); | |
b6bf44ba AM |
4443 | } |
4444 | if (sec->spec.name != NULL) | |
4445 | minfo ("%s", sec->spec.name); | |
4446 | else | |
4447 | minfo ("*"); | |
4448 | if (sec->spec.sorted) | |
4449 | minfo (")"); | |
34786259 AM |
4450 | if (sec->next) |
4451 | minfo (" "); | |
b6bf44ba | 4452 | } |
252b5132 RH |
4453 | minfo (")"); |
4454 | ||
4455 | print_nl (); | |
4456 | ||
4457 | print_statement_list (w->children.head, os); | |
4458 | } | |
4459 | ||
4460 | /* Print a group statement. */ | |
4461 | ||
4462 | static void | |
1579bae1 AM |
4463 | print_group (lang_group_statement_type *s, |
4464 | lang_output_section_statement_type *os) | |
252b5132 RH |
4465 | { |
4466 | fprintf (config.map_file, "START GROUP\n"); | |
4467 | print_statement_list (s->children.head, os); | |
4468 | fprintf (config.map_file, "END GROUP\n"); | |
4469 | } | |
4470 | ||
4471 | /* Print the list of statements in S. | |
4472 | This can be called for any statement type. */ | |
4473 | ||
4474 | static void | |
1579bae1 AM |
4475 | print_statement_list (lang_statement_union_type *s, |
4476 | lang_output_section_statement_type *os) | |
252b5132 RH |
4477 | { |
4478 | while (s != NULL) | |
4479 | { | |
4480 | print_statement (s, os); | |
bba1a0c0 | 4481 | s = s->header.next; |
252b5132 RH |
4482 | } |
4483 | } | |
4484 | ||
4485 | /* Print the first statement in statement list S. | |
4486 | This can be called for any statement type. */ | |
4487 | ||
4488 | static void | |
1579bae1 AM |
4489 | print_statement (lang_statement_union_type *s, |
4490 | lang_output_section_statement_type *os) | |
252b5132 RH |
4491 | { |
4492 | switch (s->header.type) | |
4493 | { | |
4494 | default: | |
4495 | fprintf (config.map_file, _("Fail with %d\n"), s->header.type); | |
4496 | FAIL (); | |
4497 | break; | |
4498 | case lang_constructors_statement_enum: | |
4499 | if (constructor_list.head != NULL) | |
4500 | { | |
4501 | if (constructors_sorted) | |
4502 | minfo (" SORT (CONSTRUCTORS)\n"); | |
4503 | else | |
4504 | minfo (" CONSTRUCTORS\n"); | |
4505 | print_statement_list (constructor_list.head, os); | |
4506 | } | |
4507 | break; | |
4508 | case lang_wild_statement_enum: | |
4509 | print_wild_statement (&s->wild_statement, os); | |
4510 | break; | |
4511 | case lang_address_statement_enum: | |
4512 | print_address_statement (&s->address_statement); | |
4513 | break; | |
4514 | case lang_object_symbols_statement_enum: | |
4515 | minfo (" CREATE_OBJECT_SYMBOLS\n"); | |
4516 | break; | |
4517 | case lang_fill_statement_enum: | |
4518 | print_fill_statement (&s->fill_statement); | |
4519 | break; | |
4520 | case lang_data_statement_enum: | |
4521 | print_data_statement (&s->data_statement); | |
4522 | break; | |
4523 | case lang_reloc_statement_enum: | |
4524 | print_reloc_statement (&s->reloc_statement); | |
4525 | break; | |
4526 | case lang_input_section_enum: | |
d64703c6 | 4527 | print_input_section (s->input_section.section, FALSE); |
252b5132 RH |
4528 | break; |
4529 | case lang_padding_statement_enum: | |
4530 | print_padding_statement (&s->padding_statement); | |
4531 | break; | |
4532 | case lang_output_section_statement_enum: | |
4533 | print_output_section_statement (&s->output_section_statement); | |
4534 | break; | |
4535 | case lang_assignment_statement_enum: | |
4536 | print_assignment (&s->assignment_statement, os); | |
4537 | break; | |
4538 | case lang_target_statement_enum: | |
4539 | fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target); | |
4540 | break; | |
4541 | case lang_output_statement_enum: | |
4542 | minfo ("OUTPUT(%s", s->output_statement.name); | |
4543 | if (output_target != NULL) | |
4544 | minfo (" %s", output_target); | |
4545 | minfo (")\n"); | |
4546 | break; | |
4547 | case lang_input_statement_enum: | |
4548 | print_input_statement (&s->input_statement); | |
4549 | break; | |
4550 | case lang_group_statement_enum: | |
4551 | print_group (&s->group_statement, os); | |
4552 | break; | |
53d25da6 AM |
4553 | case lang_insert_statement_enum: |
4554 | minfo ("INSERT %s %s\n", | |
4555 | s->insert_statement.is_before ? "BEFORE" : "AFTER", | |
4556 | s->insert_statement.where); | |
4557 | break; | |
252b5132 RH |
4558 | } |
4559 | } | |
4560 | ||
4561 | static void | |
1579bae1 | 4562 | print_statements (void) |
252b5132 RH |
4563 | { |
4564 | print_statement_list (statement_list.head, abs_output_section); | |
4565 | } | |
4566 | ||
4567 | /* Print the first N statements in statement list S to STDERR. | |
4568 | If N == 0, nothing is printed. | |
4569 | If N < 0, the entire list is printed. | |
4570 | Intended to be called from GDB. */ | |
4571 | ||
4572 | void | |
1579bae1 | 4573 | dprint_statement (lang_statement_union_type *s, int n) |
252b5132 RH |
4574 | { |
4575 | FILE *map_save = config.map_file; | |
4576 | ||
4577 | config.map_file = stderr; | |
4578 | ||
4579 | if (n < 0) | |
4580 | print_statement_list (s, abs_output_section); | |
4581 | else | |
4582 | { | |
4583 | while (s && --n >= 0) | |
4584 | { | |
4585 | print_statement (s, abs_output_section); | |
bba1a0c0 | 4586 | s = s->header.next; |
252b5132 RH |
4587 | } |
4588 | } | |
4589 | ||
4590 | config.map_file = map_save; | |
4591 | } | |
4592 | ||
b3327aad | 4593 | static void |
1579bae1 AM |
4594 | insert_pad (lang_statement_union_type **ptr, |
4595 | fill_type *fill, | |
1a69ff95 | 4596 | bfd_size_type alignment_needed, |
1579bae1 AM |
4597 | asection *output_section, |
4598 | bfd_vma dot) | |
252b5132 | 4599 | { |
b7761f11 | 4600 | static fill_type zero_fill; |
e9ee469a | 4601 | lang_statement_union_type *pad = NULL; |
b3327aad | 4602 | |
e9ee469a AM |
4603 | if (ptr != &statement_list.head) |
4604 | pad = ((lang_statement_union_type *) | |
4605 | ((char *) ptr - offsetof (lang_statement_union_type, header.next))); | |
4606 | if (pad != NULL | |
4607 | && pad->header.type == lang_padding_statement_enum | |
4608 | && pad->padding_statement.output_section == output_section) | |
4609 | { | |
4610 | /* Use the existing pad statement. */ | |
4611 | } | |
4612 | else if ((pad = *ptr) != NULL | |
906e58ca NC |
4613 | && pad->header.type == lang_padding_statement_enum |
4614 | && pad->padding_statement.output_section == output_section) | |
252b5132 | 4615 | { |
e9ee469a | 4616 | /* Use the existing pad statement. */ |
252b5132 | 4617 | } |
b3327aad | 4618 | else |
252b5132 | 4619 | { |
b3327aad | 4620 | /* Make a new padding statement, linked into existing chain. */ |
1e9cc1c2 | 4621 | pad = (lang_statement_union_type *) |
4724d37e | 4622 | stat_alloc (sizeof (lang_padding_statement_type)); |
b3327aad AM |
4623 | pad->header.next = *ptr; |
4624 | *ptr = pad; | |
4625 | pad->header.type = lang_padding_statement_enum; | |
4626 | pad->padding_statement.output_section = output_section; | |
1579bae1 | 4627 | if (fill == NULL) |
2c382fb6 | 4628 | fill = &zero_fill; |
b3327aad | 4629 | pad->padding_statement.fill = fill; |
252b5132 | 4630 | } |
b3327aad AM |
4631 | pad->padding_statement.output_offset = dot - output_section->vma; |
4632 | pad->padding_statement.size = alignment_needed; | |
aa4c3319 AM |
4633 | output_section->size = TO_SIZE (dot + TO_ADDR (alignment_needed) |
4634 | - output_section->vma); | |
252b5132 RH |
4635 | } |
4636 | ||
08da4cac KH |
4637 | /* Work out how much this section will move the dot point. */ |
4638 | ||
252b5132 | 4639 | static bfd_vma |
6feb9908 AM |
4640 | size_input_section |
4641 | (lang_statement_union_type **this_ptr, | |
4642 | lang_output_section_statement_type *output_section_statement, | |
4643 | fill_type *fill, | |
4644 | bfd_vma dot) | |
252b5132 RH |
4645 | { |
4646 | lang_input_section_type *is = &((*this_ptr)->input_section); | |
4647 | asection *i = is->section; | |
93d1b056 | 4648 | asection *o = output_section_statement->bfd_section; |
252b5132 | 4649 | |
93d1b056 AM |
4650 | if (i->sec_info_type == SEC_INFO_TYPE_JUST_SYMS) |
4651 | i->output_offset = i->vma - o->vma; | |
4652 | else if ((i->flags & SEC_EXCLUDE) != 0) | |
4653 | i->output_offset = dot - o->vma; | |
4654 | else | |
252b5132 | 4655 | { |
1a69ff95 | 4656 | bfd_size_type alignment_needed; |
b3327aad AM |
4657 | |
4658 | /* Align this section first to the input sections requirement, | |
4659 | then to the output section's requirement. If this alignment | |
4660 | is greater than any seen before, then record it too. Perform | |
4661 | the alignment by inserting a magic 'padding' statement. */ | |
4662 | ||
252b5132 | 4663 | if (output_section_statement->subsection_alignment != -1) |
b3327aad AM |
4664 | i->alignment_power = output_section_statement->subsection_alignment; |
4665 | ||
b3327aad AM |
4666 | if (o->alignment_power < i->alignment_power) |
4667 | o->alignment_power = i->alignment_power; | |
252b5132 | 4668 | |
b3327aad AM |
4669 | alignment_needed = align_power (dot, i->alignment_power) - dot; |
4670 | ||
4671 | if (alignment_needed != 0) | |
4672 | { | |
e5caa5e0 | 4673 | insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot); |
b3327aad AM |
4674 | dot += alignment_needed; |
4675 | } | |
252b5132 | 4676 | |
08da4cac | 4677 | /* Remember where in the output section this input section goes. */ |
b3327aad | 4678 | i->output_offset = dot - o->vma; |
252b5132 | 4679 | |
08da4cac | 4680 | /* Mark how big the output section must be to contain this now. */ |
eea6121a AM |
4681 | dot += TO_ADDR (i->size); |
4682 | o->size = TO_SIZE (dot - o->vma); | |
252b5132 | 4683 | } |
252b5132 RH |
4684 | |
4685 | return dot; | |
4686 | } | |
4687 | ||
a87dd97a AM |
4688 | struct check_sec |
4689 | { | |
4690 | asection *sec; | |
4691 | bfd_boolean warned; | |
4692 | }; | |
4693 | ||
5daa8fe7 L |
4694 | static int |
4695 | sort_sections_by_lma (const void *arg1, const void *arg2) | |
4696 | { | |
a87dd97a AM |
4697 | const asection *sec1 = ((const struct check_sec *) arg1)->sec; |
4698 | const asection *sec2 = ((const struct check_sec *) arg2)->sec; | |
4699 | ||
4700 | if (sec1->lma < sec2->lma) | |
4701 | return -1; | |
4702 | else if (sec1->lma > sec2->lma) | |
4703 | return 1; | |
4704 | else if (sec1->id < sec2->id) | |
4705 | return -1; | |
4706 | else if (sec1->id > sec2->id) | |
4707 | return 1; | |
4708 | ||
4709 | return 0; | |
4710 | } | |
4711 | ||
4712 | static int | |
4713 | sort_sections_by_vma (const void *arg1, const void *arg2) | |
4714 | { | |
4715 | const asection *sec1 = ((const struct check_sec *) arg1)->sec; | |
4716 | const asection *sec2 = ((const struct check_sec *) arg2)->sec; | |
5daa8fe7 | 4717 | |
a87dd97a | 4718 | if (sec1->vma < sec2->vma) |
5daa8fe7 | 4719 | return -1; |
a87dd97a | 4720 | else if (sec1->vma > sec2->vma) |
5daa8fe7 | 4721 | return 1; |
7f6a71ff JM |
4722 | else if (sec1->id < sec2->id) |
4723 | return -1; | |
4724 | else if (sec1->id > sec2->id) | |
4725 | return 1; | |
5daa8fe7 L |
4726 | |
4727 | return 0; | |
4728 | } | |
4729 | ||
2e4a7aea AM |
4730 | #define IS_TBSS(s) \ |
4731 | ((s->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == SEC_THREAD_LOCAL) | |
4732 | ||
eea6121a | 4733 | #define IGNORE_SECTION(s) \ |
2e4a7aea | 4734 | ((s->flags & SEC_ALLOC) == 0 || IS_TBSS (s)) |
d1778b88 | 4735 | |
252b5132 | 4736 | /* Check to see if any allocated sections overlap with other allocated |
afd7a018 | 4737 | sections. This can happen if a linker script specifies the output |
20e56351 DJ |
4738 | section addresses of the two sections. Also check whether any memory |
4739 | region has overflowed. */ | |
08da4cac | 4740 | |
252b5132 | 4741 | static void |
1579bae1 | 4742 | lang_check_section_addresses (void) |
252b5132 | 4743 | { |
f4427a75 | 4744 | asection *s, *p; |
a87dd97a AM |
4745 | struct check_sec *sections; |
4746 | size_t i, count; | |
5daa8fe7 L |
4747 | bfd_vma s_start; |
4748 | bfd_vma s_end; | |
a87dd97a AM |
4749 | bfd_vma p_start = 0; |
4750 | bfd_vma p_end = 0; | |
20e56351 | 4751 | lang_memory_region_type *m; |
136a43b7 | 4752 | bfd_boolean overlays; |
5daa8fe7 | 4753 | |
f13a99db | 4754 | if (bfd_count_sections (link_info.output_bfd) <= 1) |
5daa8fe7 L |
4755 | return; |
4756 | ||
a87dd97a AM |
4757 | count = bfd_count_sections (link_info.output_bfd); |
4758 | sections = XNEWVEC (struct check_sec, count); | |
252b5132 RH |
4759 | |
4760 | /* Scan all sections in the output list. */ | |
5daa8fe7 | 4761 | count = 0; |
f13a99db | 4762 | for (s = link_info.output_bfd->sections; s != NULL; s = s->next) |
33275c22 | 4763 | { |
a87dd97a | 4764 | if (IGNORE_SECTION (s) |
ec6d26be | 4765 | || s->size == 0) |
33275c22 | 4766 | continue; |
5f992e62 | 4767 | |
a87dd97a AM |
4768 | sections[count].sec = s; |
4769 | sections[count].warned = FALSE; | |
5daa8fe7 L |
4770 | count++; |
4771 | } | |
329c1c86 | 4772 | |
5daa8fe7 | 4773 | if (count <= 1) |
136a43b7 AM |
4774 | { |
4775 | free (sections); | |
4776 | return; | |
4777 | } | |
5f992e62 | 4778 | |
a87dd97a | 4779 | qsort (sections, count, sizeof (*sections), sort_sections_by_lma); |
5f992e62 | 4780 | |
136a43b7 | 4781 | /* First check section LMAs. There should be no overlap of LMAs on |
a87dd97a AM |
4782 | loadable sections, even with overlays. */ |
4783 | for (p = NULL, i = 0; i < count; i++) | |
5daa8fe7 | 4784 | { |
a87dd97a AM |
4785 | s = sections[i].sec; |
4786 | if ((s->flags & SEC_LOAD) != 0) | |
4787 | { | |
4788 | s_start = s->lma; | |
4789 | s_end = s_start + TO_ADDR (s->size) - 1; | |
4790 | ||
4791 | /* Look for an overlap. We have sorted sections by lma, so | |
4792 | we know that s_start >= p_start. Besides the obvious | |
4793 | case of overlap when the current section starts before | |
4794 | the previous one ends, we also must have overlap if the | |
4795 | previous section wraps around the address space. */ | |
4796 | if (p != NULL | |
4797 | && (s_start <= p_end | |
4798 | || p_end < p_start)) | |
4799 | { | |
4800 | einfo (_("%X%P: section %s LMA [%V,%V]" | |
4801 | " overlaps section %s LMA [%V,%V]\n"), | |
4802 | s->name, s_start, s_end, p->name, p_start, p_end); | |
4803 | sections[i].warned = TRUE; | |
4804 | } | |
4805 | p = s; | |
4806 | p_start = s_start; | |
4807 | p_end = s_end; | |
4808 | } | |
4809 | } | |
4810 | ||
136a43b7 AM |
4811 | /* If any non-zero size allocated section (excluding tbss) starts at |
4812 | exactly the same VMA as another such section, then we have | |
4813 | overlays. Overlays generated by the OVERLAY keyword will have | |
4814 | this property. It is possible to intentionally generate overlays | |
4815 | that fail this test, but it would be unusual. */ | |
4816 | qsort (sections, count, sizeof (*sections), sort_sections_by_vma); | |
4817 | overlays = FALSE; | |
4818 | p_start = sections[0].sec->vma; | |
4819 | for (i = 1; i < count; i++) | |
a87dd97a | 4820 | { |
136a43b7 AM |
4821 | s_start = sections[i].sec->vma; |
4822 | if (p_start == s_start) | |
4823 | { | |
4824 | overlays = TRUE; | |
4825 | break; | |
4826 | } | |
4827 | p_start = s_start; | |
4828 | } | |
a87dd97a | 4829 | |
136a43b7 AM |
4830 | /* Now check section VMAs if no overlays were detected. */ |
4831 | if (!overlays) | |
4832 | { | |
a87dd97a AM |
4833 | for (p = NULL, i = 0; i < count; i++) |
4834 | { | |
4835 | s = sections[i].sec; | |
4836 | s_start = s->vma; | |
4837 | s_end = s_start + TO_ADDR (s->size) - 1; | |
4838 | ||
4839 | if (p != NULL | |
4840 | && !sections[i].warned | |
4841 | && (s_start <= p_end | |
4842 | || p_end < p_start)) | |
4843 | einfo (_("%X%P: section %s VMA [%V,%V]" | |
4844 | " overlaps section %s VMA [%V,%V]\n"), | |
4845 | s->name, s_start, s_end, p->name, p_start, p_end); | |
4846 | p = s; | |
4847 | p_start = s_start; | |
4848 | p_end = s_end; | |
4849 | } | |
33275c22 | 4850 | } |
5daa8fe7 L |
4851 | |
4852 | free (sections); | |
20e56351 DJ |
4853 | |
4854 | /* If any memory region has overflowed, report by how much. | |
4855 | We do not issue this diagnostic for regions that had sections | |
4856 | explicitly placed outside their bounds; os_region_check's | |
4857 | diagnostics are adequate for that case. | |
4858 | ||
4859 | FIXME: It is conceivable that m->current - (m->origin + m->length) | |
4860 | might overflow a 32-bit integer. There is, alas, no way to print | |
4861 | a bfd_vma quantity in decimal. */ | |
4862 | for (m = lang_memory_region_list; m; m = m->next) | |
4863 | if (m->had_full_message) | |
4a93e180 NC |
4864 | einfo (_("%X%P: region `%s' overflowed by %ld bytes\n"), |
4865 | m->name_list.name, (long)(m->current - (m->origin + m->length))); | |
252b5132 RH |
4866 | } |
4867 | ||
562d3460 TW |
4868 | /* Make sure the new address is within the region. We explicitly permit the |
4869 | current address to be at the exact end of the region when the address is | |
4870 | non-zero, in case the region is at the end of addressable memory and the | |
5f992e62 | 4871 | calculation wraps around. */ |
562d3460 TW |
4872 | |
4873 | static void | |
1579bae1 | 4874 | os_region_check (lang_output_section_statement_type *os, |
6bdafbeb | 4875 | lang_memory_region_type *region, |
1579bae1 | 4876 | etree_type *tree, |
91d6fa6a | 4877 | bfd_vma rbase) |
562d3460 TW |
4878 | { |
4879 | if ((region->current < region->origin | |
4880 | || (region->current - region->origin > region->length)) | |
4881 | && ((region->current != region->origin + region->length) | |
91d6fa6a | 4882 | || rbase == 0)) |
562d3460 | 4883 | { |
1579bae1 | 4884 | if (tree != NULL) |
b7a26f91 | 4885 | { |
4a93e180 NC |
4886 | einfo (_("%X%P: address 0x%v of %B section `%s'" |
4887 | " is not within region `%s'\n"), | |
b7a26f91 KH |
4888 | region->current, |
4889 | os->bfd_section->owner, | |
4890 | os->bfd_section->name, | |
4a93e180 | 4891 | region->name_list.name); |
b7a26f91 | 4892 | } |
20e56351 | 4893 | else if (!region->had_full_message) |
b7a26f91 | 4894 | { |
20e56351 DJ |
4895 | region->had_full_message = TRUE; |
4896 | ||
4a93e180 | 4897 | einfo (_("%X%P: %B section `%s' will not fit in region `%s'\n"), |
b7a26f91 | 4898 | os->bfd_section->owner, |
20e56351 | 4899 | os->bfd_section->name, |
4a93e180 | 4900 | region->name_list.name); |
b7a26f91 | 4901 | } |
562d3460 TW |
4902 | } |
4903 | } | |
4904 | ||
252b5132 RH |
4905 | /* Set the sizes for all the output sections. */ |
4906 | ||
2d20f7bf | 4907 | static bfd_vma |
1579bae1 | 4908 | lang_size_sections_1 |
e535e147 | 4909 | (lang_statement_union_type **prev, |
1579bae1 | 4910 | lang_output_section_statement_type *output_section_statement, |
1579bae1 AM |
4911 | fill_type *fill, |
4912 | bfd_vma dot, | |
4913 | bfd_boolean *relax, | |
4914 | bfd_boolean check_regions) | |
252b5132 | 4915 | { |
e535e147 AM |
4916 | lang_statement_union_type *s; |
4917 | ||
252b5132 | 4918 | /* Size up the sections from their constituent parts. */ |
e535e147 | 4919 | for (s = *prev; s != NULL; s = s->header.next) |
252b5132 RH |
4920 | { |
4921 | switch (s->header.type) | |
4922 | { | |
4923 | case lang_output_section_statement_enum: | |
4924 | { | |
13075d04 | 4925 | bfd_vma newdot, after, dotdelta; |
d1778b88 | 4926 | lang_output_section_statement_type *os; |
cde9e0be | 4927 | lang_memory_region_type *r; |
c5b0a9ef | 4928 | int section_alignment = 0; |
252b5132 | 4929 | |
d1778b88 | 4930 | os = &s->output_section_statement; |
8658f989 AM |
4931 | if (os->constraint == -1) |
4932 | break; | |
4933 | ||
fd68d03d AM |
4934 | /* FIXME: We shouldn't need to zero section vmas for ld -r |
4935 | here, in lang_insert_orphan, or in the default linker scripts. | |
4936 | This is covering for coff backend linker bugs. See PR6945. */ | |
4937 | if (os->addr_tree == NULL | |
0e1862bb | 4938 | && bfd_link_relocatable (&link_info) |
fd68d03d AM |
4939 | && (bfd_get_flavour (link_info.output_bfd) |
4940 | == bfd_target_coff_flavour)) | |
eceda120 | 4941 | os->addr_tree = exp_intop (0); |
a5df8c84 AM |
4942 | if (os->addr_tree != NULL) |
4943 | { | |
cde9e0be | 4944 | os->processed_vma = FALSE; |
a5df8c84 | 4945 | exp_fold_tree (os->addr_tree, bfd_abs_section_ptr, &dot); |
a5df8c84 | 4946 | |
3bf9618b | 4947 | if (expld.result.valid_p) |
7542af2a AM |
4948 | { |
4949 | dot = expld.result.value; | |
4950 | if (expld.result.section != NULL) | |
4951 | dot += expld.result.section->vma; | |
4952 | } | |
3bf9618b | 4953 | else if (expld.phase != lang_mark_phase_enum) |
a5df8c84 AM |
4954 | einfo (_("%F%S: non constant or forward reference" |
4955 | " address expression for section %s\n"), | |
dab69f68 | 4956 | os->addr_tree, os->name); |
a5df8c84 AM |
4957 | } |
4958 | ||
e9ee469a | 4959 | if (os->bfd_section == NULL) |
75ff4589 | 4960 | /* This section was removed or never actually created. */ |
252b5132 RH |
4961 | break; |
4962 | ||
4963 | /* If this is a COFF shared library section, use the size and | |
4964 | address from the input section. FIXME: This is COFF | |
4965 | specific; it would be cleaner if there were some other way | |
4966 | to do this, but nothing simple comes to mind. */ | |
f13a99db AM |
4967 | if (((bfd_get_flavour (link_info.output_bfd) |
4968 | == bfd_target_ecoff_flavour) | |
4969 | || (bfd_get_flavour (link_info.output_bfd) | |
4970 | == bfd_target_coff_flavour)) | |
ebe372c1 | 4971 | && (os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0) |
252b5132 | 4972 | { |
08da4cac | 4973 | asection *input; |
252b5132 RH |
4974 | |
4975 | if (os->children.head == NULL | |
bba1a0c0 | 4976 | || os->children.head->header.next != NULL |
6feb9908 AM |
4977 | || (os->children.head->header.type |
4978 | != lang_input_section_enum)) | |
4979 | einfo (_("%P%X: Internal error on COFF shared library" | |
4980 | " section %s\n"), os->name); | |
252b5132 RH |
4981 | |
4982 | input = os->children.head->input_section.section; | |
4983 | bfd_set_section_vma (os->bfd_section->owner, | |
4984 | os->bfd_section, | |
4985 | bfd_section_vma (input->owner, input)); | |
eea6121a | 4986 | os->bfd_section->size = input->size; |
252b5132 RH |
4987 | break; |
4988 | } | |
4989 | ||
a5df8c84 | 4990 | newdot = dot; |
13075d04 | 4991 | dotdelta = 0; |
252b5132 RH |
4992 | if (bfd_is_abs_section (os->bfd_section)) |
4993 | { | |
4994 | /* No matter what happens, an abs section starts at zero. */ | |
4995 | ASSERT (os->bfd_section->vma == 0); | |
4996 | } | |
4997 | else | |
4998 | { | |
1579bae1 | 4999 | if (os->addr_tree == NULL) |
252b5132 RH |
5000 | { |
5001 | /* No address specified for this section, get one | |
5002 | from the region specification. */ | |
1579bae1 | 5003 | if (os->region == NULL |
6feb9908 | 5004 | || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD)) |
4a93e180 NC |
5005 | && os->region->name_list.name[0] == '*' |
5006 | && strcmp (os->region->name_list.name, | |
6feb9908 | 5007 | DEFAULT_MEMORY_REGION) == 0)) |
252b5132 RH |
5008 | { |
5009 | os->region = lang_memory_default (os->bfd_section); | |
5010 | } | |
5011 | ||
5012 | /* If a loadable section is using the default memory | |
5013 | region, and some non default memory regions were | |
66184979 | 5014 | defined, issue an error message. */ |
f0636a44 AM |
5015 | if (!os->ignored |
5016 | && !IGNORE_SECTION (os->bfd_section) | |
0e1862bb | 5017 | && !bfd_link_relocatable (&link_info) |
cf888e70 | 5018 | && check_regions |
4a93e180 | 5019 | && strcmp (os->region->name_list.name, |
6feb9908 | 5020 | DEFAULT_MEMORY_REGION) == 0 |
252b5132 | 5021 | && lang_memory_region_list != NULL |
4a93e180 | 5022 | && (strcmp (lang_memory_region_list->name_list.name, |
a747ee4d | 5023 | DEFAULT_MEMORY_REGION) != 0 |
e9ee469a AM |
5024 | || lang_memory_region_list->next != NULL) |
5025 | && expld.phase != lang_mark_phase_enum) | |
66184979 NC |
5026 | { |
5027 | /* By default this is an error rather than just a | |
5028 | warning because if we allocate the section to the | |
5029 | default memory region we can end up creating an | |
07f3b6ad KH |
5030 | excessively large binary, or even seg faulting when |
5031 | attempting to perform a negative seek. See | |
6feb9908 | 5032 | sources.redhat.com/ml/binutils/2003-04/msg00423.html |
66184979 NC |
5033 | for an example of this. This behaviour can be |
5034 | overridden by the using the --no-check-sections | |
5035 | switch. */ | |
5036 | if (command_line.check_section_addresses) | |
6feb9908 AM |
5037 | einfo (_("%P%F: error: no memory region specified" |
5038 | " for loadable section `%s'\n"), | |
f13a99db | 5039 | bfd_get_section_name (link_info.output_bfd, |
66184979 NC |
5040 | os->bfd_section)); |
5041 | else | |
6feb9908 AM |
5042 | einfo (_("%P: warning: no memory region specified" |
5043 | " for loadable section `%s'\n"), | |
f13a99db | 5044 | bfd_get_section_name (link_info.output_bfd, |
66184979 NC |
5045 | os->bfd_section)); |
5046 | } | |
252b5132 | 5047 | |
e9ee469a | 5048 | newdot = os->region->current; |
c5b0a9ef | 5049 | section_alignment = os->bfd_section->alignment_power; |
252b5132 | 5050 | } |
94b50910 | 5051 | else |
c5b0a9ef | 5052 | section_alignment = os->section_alignment; |
5f992e62 | 5053 | |
7270c5ed | 5054 | /* Align to what the section needs. */ |
c5b0a9ef | 5055 | if (section_alignment > 0) |
94b50910 AM |
5056 | { |
5057 | bfd_vma savedot = newdot; | |
c5b0a9ef | 5058 | newdot = align_power (newdot, section_alignment); |
252b5132 | 5059 | |
13075d04 SH |
5060 | dotdelta = newdot - savedot; |
5061 | if (dotdelta != 0 | |
94b50910 AM |
5062 | && (config.warn_section_align |
5063 | || os->addr_tree != NULL) | |
5064 | && expld.phase != lang_mark_phase_enum) | |
5065 | einfo (_("%P: warning: changing start of section" | |
5066 | " %s by %lu bytes\n"), | |
13075d04 | 5067 | os->name, (unsigned long) dotdelta); |
94b50910 | 5068 | } |
252b5132 | 5069 | |
eceda120 | 5070 | bfd_set_section_vma (0, os->bfd_section, newdot); |
5f992e62 | 5071 | |
252b5132 RH |
5072 | os->bfd_section->output_offset = 0; |
5073 | } | |
5074 | ||
e535e147 | 5075 | lang_size_sections_1 (&os->children.head, os, |
e9ee469a AM |
5076 | os->fill, newdot, relax, check_regions); |
5077 | ||
cde9e0be | 5078 | os->processed_vma = TRUE; |
e9ee469a AM |
5079 | |
5080 | if (bfd_is_abs_section (os->bfd_section) || os->ignored) | |
2f475487 AM |
5081 | /* Except for some special linker created sections, |
5082 | no output section should change from zero size | |
5083 | after strip_excluded_output_sections. A non-zero | |
5084 | size on an ignored section indicates that some | |
5085 | input section was not sized early enough. */ | |
5086 | ASSERT (os->bfd_section->size == 0); | |
cde9e0be | 5087 | else |
e9ee469a | 5088 | { |
cde9e0be AM |
5089 | dot = os->bfd_section->vma; |
5090 | ||
5091 | /* Put the section within the requested block size, or | |
5092 | align at the block boundary. */ | |
5093 | after = ((dot | |
5094 | + TO_ADDR (os->bfd_section->size) | |
5095 | + os->block_value - 1) | |
5096 | & - (bfd_vma) os->block_value); | |
5097 | ||
5098 | os->bfd_section->size = TO_SIZE (after - os->bfd_section->vma); | |
5099 | } | |
5100 | ||
5101 | /* Set section lma. */ | |
5102 | r = os->region; | |
5103 | if (r == NULL) | |
5104 | r = lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE); | |
5105 | ||
5106 | if (os->load_base) | |
5107 | { | |
5108 | bfd_vma lma = exp_get_abs_int (os->load_base, 0, "load base"); | |
5109 | os->bfd_section->lma = lma; | |
e9ee469a | 5110 | } |
07dfcf38 | 5111 | else if (os->lma_region != NULL) |
cde9e0be AM |
5112 | { |
5113 | bfd_vma lma = os->lma_region->current; | |
e9ee469a | 5114 | |
13075d04 SH |
5115 | if (os->align_lma_with_input) |
5116 | lma += dotdelta; | |
5117 | else | |
5118 | { | |
5119 | /* When LMA_REGION is the same as REGION, align the LMA | |
5120 | as we did for the VMA, possibly including alignment | |
5121 | from the bfd section. If a different region, then | |
5122 | only align according to the value in the output | |
5123 | statement. */ | |
5124 | if (os->lma_region != os->region) | |
5125 | section_alignment = os->section_alignment; | |
5126 | if (section_alignment > 0) | |
5127 | lma = align_power (lma, section_alignment); | |
5128 | } | |
cde9e0be AM |
5129 | os->bfd_section->lma = lma; |
5130 | } | |
dc0b6aa0 AM |
5131 | else if (r->last_os != NULL |
5132 | && (os->bfd_section->flags & SEC_ALLOC) != 0) | |
cde9e0be AM |
5133 | { |
5134 | bfd_vma lma; | |
5135 | asection *last; | |
5136 | ||
5137 | last = r->last_os->output_section_statement.bfd_section; | |
dc0b6aa0 AM |
5138 | |
5139 | /* A backwards move of dot should be accompanied by | |
5140 | an explicit assignment to the section LMA (ie. | |
91eb6c46 | 5141 | os->load_base set) because backwards moves can |
dc0b6aa0 | 5142 | create overlapping LMAs. */ |
264b6205 | 5143 | if (dot < last->vma |
91eb6c46 | 5144 | && os->bfd_section->size != 0 |
ca62bc4a | 5145 | && dot + TO_ADDR (os->bfd_section->size) <= last->vma) |
dc0b6aa0 | 5146 | { |
dc0b6aa0 AM |
5147 | /* If dot moved backwards then leave lma equal to |
5148 | vma. This is the old default lma, which might | |
5149 | just happen to work when the backwards move is | |
91eb6c46 AM |
5150 | sufficiently large. Nag if this changes anything, |
5151 | so people can fix their linker scripts. */ | |
5152 | ||
5153 | if (last->vma != last->lma) | |
0aa7f586 AM |
5154 | einfo (_("%P: warning: dot moved backwards " |
5155 | "before `%s'\n"), os->name); | |
dc0b6aa0 AM |
5156 | } |
5157 | else | |
cde9e0be | 5158 | { |
152d792f AM |
5159 | /* If this is an overlay, set the current lma to that |
5160 | at the end of the previous section. */ | |
5161 | if (os->sectype == overlay_section) | |
fc90c280 | 5162 | lma = last->lma + TO_ADDR (last->size); |
cde9e0be AM |
5163 | |
5164 | /* Otherwise, keep the same lma to vma relationship | |
5165 | as the previous section. */ | |
5166 | else | |
5167 | lma = dot + last->lma - last->vma; | |
5168 | ||
c5b0a9ef AM |
5169 | if (section_alignment > 0) |
5170 | lma = align_power (lma, section_alignment); | |
cde9e0be AM |
5171 | os->bfd_section->lma = lma; |
5172 | } | |
5173 | } | |
5174 | os->processed_lma = TRUE; | |
5f992e62 | 5175 | |
cde9e0be AM |
5176 | if (bfd_is_abs_section (os->bfd_section) || os->ignored) |
5177 | break; | |
252b5132 | 5178 | |
cde9e0be AM |
5179 | /* Keep track of normal sections using the default |
5180 | lma region. We use this to set the lma for | |
5181 | following sections. Overlays or other linker | |
5182 | script assignment to lma might mean that the | |
dc0b6aa0 AM |
5183 | default lma == vma is incorrect. |
5184 | To avoid warnings about dot moving backwards when using | |
5185 | -Ttext, don't start tracking sections until we find one | |
5186 | of non-zero size or with lma set differently to vma. */ | |
2e4a7aea | 5187 | if (!IGNORE_SECTION (os->bfd_section) |
dc0b6aa0 | 5188 | && (os->bfd_section->size != 0 |
264b6205 AM |
5189 | || (r->last_os == NULL |
5190 | && os->bfd_section->vma != os->bfd_section->lma) | |
5191 | || (r->last_os != NULL | |
5192 | && dot >= (r->last_os->output_section_statement | |
ea0c3cd5 | 5193 | .bfd_section->vma))) |
cde9e0be | 5194 | && os->lma_region == NULL |
0e1862bb | 5195 | && !bfd_link_relocatable (&link_info)) |
cde9e0be | 5196 | r->last_os = s; |
9f88b410 | 5197 | |
e5caec89 | 5198 | /* .tbss sections effectively have zero size. */ |
2e4a7aea | 5199 | if (!IS_TBSS (os->bfd_section) |
0e1862bb | 5200 | || bfd_link_relocatable (&link_info)) |
13075d04 SH |
5201 | dotdelta = TO_ADDR (os->bfd_section->size); |
5202 | else | |
5203 | dotdelta = 0; | |
5204 | dot += dotdelta; | |
e5caec89 | 5205 | |
9f88b410 | 5206 | if (os->update_dot_tree != 0) |
e9ee469a | 5207 | exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot); |
9f88b410 | 5208 | |
252b5132 RH |
5209 | /* Update dot in the region ? |
5210 | We only do this if the section is going to be allocated, | |
5211 | since unallocated sections do not contribute to the region's | |
2e76e85a | 5212 | overall size in memory. */ |
1579bae1 | 5213 | if (os->region != NULL |
2e76e85a | 5214 | && (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))) |
252b5132 RH |
5215 | { |
5216 | os->region->current = dot; | |
5f992e62 | 5217 | |
cf888e70 NC |
5218 | if (check_regions) |
5219 | /* Make sure the new address is within the region. */ | |
5220 | os_region_check (os, os->region, os->addr_tree, | |
5221 | os->bfd_section->vma); | |
08da4cac | 5222 | |
a2cab753 | 5223 | if (os->lma_region != NULL && os->lma_region != os->region |
13075d04 SH |
5224 | && ((os->bfd_section->flags & SEC_LOAD) |
5225 | || os->align_lma_with_input)) | |
08da4cac | 5226 | { |
13075d04 | 5227 | os->lma_region->current = os->bfd_section->lma + dotdelta; |
66e28d60 | 5228 | |
cf888e70 NC |
5229 | if (check_regions) |
5230 | os_region_check (os, os->lma_region, NULL, | |
cde9e0be | 5231 | os->bfd_section->lma); |
08da4cac | 5232 | } |
252b5132 RH |
5233 | } |
5234 | } | |
5235 | break; | |
5236 | ||
5237 | case lang_constructors_statement_enum: | |
e535e147 | 5238 | dot = lang_size_sections_1 (&constructor_list.head, |
2d20f7bf | 5239 | output_section_statement, |
cf888e70 | 5240 | fill, dot, relax, check_regions); |
252b5132 RH |
5241 | break; |
5242 | ||
5243 | case lang_data_statement_enum: | |
5244 | { | |
5245 | unsigned int size = 0; | |
5246 | ||
7fabd029 | 5247 | s->data_statement.output_offset = |
08da4cac | 5248 | dot - output_section_statement->bfd_section->vma; |
252b5132 RH |
5249 | s->data_statement.output_section = |
5250 | output_section_statement->bfd_section; | |
5251 | ||
1b493742 NS |
5252 | /* We might refer to provided symbols in the expression, and |
5253 | need to mark them as needed. */ | |
e9ee469a | 5254 | exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot); |
1b493742 | 5255 | |
252b5132 RH |
5256 | switch (s->data_statement.type) |
5257 | { | |
08da4cac KH |
5258 | default: |
5259 | abort (); | |
252b5132 RH |
5260 | case QUAD: |
5261 | case SQUAD: | |
5262 | size = QUAD_SIZE; | |
5263 | break; | |
5264 | case LONG: | |
5265 | size = LONG_SIZE; | |
5266 | break; | |
5267 | case SHORT: | |
5268 | size = SHORT_SIZE; | |
5269 | break; | |
5270 | case BYTE: | |
5271 | size = BYTE_SIZE; | |
5272 | break; | |
5273 | } | |
e5caa5e0 AM |
5274 | if (size < TO_SIZE ((unsigned) 1)) |
5275 | size = TO_SIZE ((unsigned) 1); | |
5276 | dot += TO_ADDR (size); | |
aa4c3319 AM |
5277 | output_section_statement->bfd_section->size |
5278 | = TO_SIZE (dot - output_section_statement->bfd_section->vma); | |
5279 | ||
252b5132 RH |
5280 | } |
5281 | break; | |
5282 | ||
5283 | case lang_reloc_statement_enum: | |
5284 | { | |
5285 | int size; | |
5286 | ||
7fabd029 | 5287 | s->reloc_statement.output_offset = |
252b5132 RH |
5288 | dot - output_section_statement->bfd_section->vma; |
5289 | s->reloc_statement.output_section = | |
5290 | output_section_statement->bfd_section; | |
5291 | size = bfd_get_reloc_size (s->reloc_statement.howto); | |
e5caa5e0 | 5292 | dot += TO_ADDR (size); |
aa4c3319 AM |
5293 | output_section_statement->bfd_section->size |
5294 | = TO_SIZE (dot - output_section_statement->bfd_section->vma); | |
252b5132 RH |
5295 | } |
5296 | break; | |
5f992e62 | 5297 | |
252b5132 | 5298 | case lang_wild_statement_enum: |
e535e147 | 5299 | dot = lang_size_sections_1 (&s->wild_statement.children.head, |
2d20f7bf | 5300 | output_section_statement, |
cf888e70 | 5301 | fill, dot, relax, check_regions); |
252b5132 RH |
5302 | break; |
5303 | ||
5304 | case lang_object_symbols_statement_enum: | |
5305 | link_info.create_object_symbols_section = | |
5306 | output_section_statement->bfd_section; | |
5307 | break; | |
e9ee469a | 5308 | |
252b5132 RH |
5309 | case lang_output_statement_enum: |
5310 | case lang_target_statement_enum: | |
5311 | break; | |
e9ee469a | 5312 | |
252b5132 RH |
5313 | case lang_input_section_enum: |
5314 | { | |
5315 | asection *i; | |
5316 | ||
e535e147 | 5317 | i = s->input_section.section; |
eea6121a | 5318 | if (relax) |
252b5132 | 5319 | { |
b34976b6 | 5320 | bfd_boolean again; |
252b5132 | 5321 | |
0aa7f586 | 5322 | if (!bfd_relax_section (i->owner, i, &link_info, &again)) |
252b5132 RH |
5323 | einfo (_("%P%F: can't relax section: %E\n")); |
5324 | if (again) | |
b34976b6 | 5325 | *relax = TRUE; |
252b5132 | 5326 | } |
b3327aad | 5327 | dot = size_input_section (prev, output_section_statement, |
ffe54b37 | 5328 | fill, dot); |
252b5132 RH |
5329 | } |
5330 | break; | |
e9ee469a | 5331 | |
252b5132 RH |
5332 | case lang_input_statement_enum: |
5333 | break; | |
e9ee469a | 5334 | |
252b5132 | 5335 | case lang_fill_statement_enum: |
08da4cac KH |
5336 | s->fill_statement.output_section = |
5337 | output_section_statement->bfd_section; | |
252b5132 RH |
5338 | |
5339 | fill = s->fill_statement.fill; | |
5340 | break; | |
e9ee469a | 5341 | |
252b5132 RH |
5342 | case lang_assignment_statement_enum: |
5343 | { | |
5344 | bfd_vma newdot = dot; | |
49c13adb | 5345 | etree_type *tree = s->assignment_statement.exp; |
252b5132 | 5346 | |
b10a8ae0 L |
5347 | expld.dataseg.relro = exp_dataseg_relro_none; |
5348 | ||
49c13adb | 5349 | exp_fold_tree (tree, |
408082ec | 5350 | output_section_statement->bfd_section, |
252b5132 RH |
5351 | &newdot); |
5352 | ||
b10a8ae0 L |
5353 | if (expld.dataseg.relro == exp_dataseg_relro_start) |
5354 | { | |
5355 | if (!expld.dataseg.relro_start_stat) | |
5356 | expld.dataseg.relro_start_stat = s; | |
5357 | else | |
5358 | { | |
5359 | ASSERT (expld.dataseg.relro_start_stat == s); | |
5360 | } | |
5361 | } | |
5362 | else if (expld.dataseg.relro == exp_dataseg_relro_end) | |
5363 | { | |
5364 | if (!expld.dataseg.relro_end_stat) | |
5365 | expld.dataseg.relro_end_stat = s; | |
5366 | else | |
5367 | { | |
5368 | ASSERT (expld.dataseg.relro_end_stat == s); | |
5369 | } | |
5370 | } | |
5371 | expld.dataseg.relro = exp_dataseg_relro_none; | |
5372 | ||
d2667025 | 5373 | /* This symbol may be relative to this section. */ |
a14a5de3 | 5374 | if ((tree->type.node_class == etree_provided |
49c13adb L |
5375 | || tree->type.node_class == etree_assign) |
5376 | && (tree->assign.dst [0] != '.' | |
5377 | || tree->assign.dst [1] != '\0')) | |
6d8bf25d | 5378 | output_section_statement->update_dot = 1; |
49c13adb | 5379 | |
85852e36 | 5380 | if (!output_section_statement->ignored) |
252b5132 | 5381 | { |
252b5132 RH |
5382 | if (output_section_statement == abs_output_section) |
5383 | { | |
5384 | /* If we don't have an output section, then just adjust | |
5385 | the default memory address. */ | |
6feb9908 AM |
5386 | lang_memory_region_lookup (DEFAULT_MEMORY_REGION, |
5387 | FALSE)->current = newdot; | |
252b5132 | 5388 | } |
85852e36 | 5389 | else if (newdot != dot) |
252b5132 | 5390 | { |
b3327aad AM |
5391 | /* Insert a pad after this statement. We can't |
5392 | put the pad before when relaxing, in case the | |
5393 | assignment references dot. */ | |
e5caa5e0 | 5394 | insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot), |
b3327aad AM |
5395 | output_section_statement->bfd_section, dot); |
5396 | ||
5397 | /* Don't neuter the pad below when relaxing. */ | |
5398 | s = s->header.next; | |
9dfc8ab2 | 5399 | |
e9ee469a AM |
5400 | /* If dot is advanced, this implies that the section |
5401 | should have space allocated to it, unless the | |
5402 | user has explicitly stated that the section | |
2e76e85a | 5403 | should not be allocated. */ |
f4eaaf7f AM |
5404 | if (output_section_statement->sectype != noalloc_section |
5405 | && (output_section_statement->sectype != noload_section | |
5406 | || (bfd_get_flavour (link_info.output_bfd) | |
5407 | == bfd_target_elf_flavour))) | |
e9ee469a AM |
5408 | output_section_statement->bfd_section->flags |= SEC_ALLOC; |
5409 | } | |
252b5132 RH |
5410 | dot = newdot; |
5411 | } | |
5412 | } | |
5413 | break; | |
5414 | ||
5415 | case lang_padding_statement_enum: | |
c0c330a7 AM |
5416 | /* If this is the first time lang_size_sections is called, |
5417 | we won't have any padding statements. If this is the | |
5418 | second or later passes when relaxing, we should allow | |
5419 | padding to shrink. If padding is needed on this pass, it | |
5420 | will be added back in. */ | |
5421 | s->padding_statement.size = 0; | |
6e814ff8 AM |
5422 | |
5423 | /* Make sure output_offset is valid. If relaxation shrinks | |
5424 | the section and this pad isn't needed, it's possible to | |
5425 | have output_offset larger than the final size of the | |
5426 | section. bfd_set_section_contents will complain even for | |
5427 | a pad size of zero. */ | |
5428 | s->padding_statement.output_offset | |
5429 | = dot - output_section_statement->bfd_section->vma; | |
252b5132 RH |
5430 | break; |
5431 | ||
5432 | case lang_group_statement_enum: | |
e535e147 | 5433 | dot = lang_size_sections_1 (&s->group_statement.children.head, |
2d20f7bf | 5434 | output_section_statement, |
cf888e70 | 5435 | fill, dot, relax, check_regions); |
252b5132 RH |
5436 | break; |
5437 | ||
53d25da6 | 5438 | case lang_insert_statement_enum: |
252b5132 RH |
5439 | break; |
5440 | ||
c0c330a7 | 5441 | /* We can only get here when relaxing is turned on. */ |
252b5132 RH |
5442 | case lang_address_statement_enum: |
5443 | break; | |
53d25da6 AM |
5444 | |
5445 | default: | |
5446 | FAIL (); | |
5447 | break; | |
252b5132 RH |
5448 | } |
5449 | prev = &s->header.next; | |
5450 | } | |
5451 | return dot; | |
5452 | } | |
5453 | ||
591a748a NC |
5454 | /* Callback routine that is used in _bfd_elf_map_sections_to_segments. |
5455 | The BFD library has set NEW_SEGMENT to TRUE iff it thinks that | |
5456 | CURRENT_SECTION and PREVIOUS_SECTION ought to be placed into different | |
5457 | segments. We are allowed an opportunity to override this decision. */ | |
2889e75b NC |
5458 | |
5459 | bfd_boolean | |
0aa7f586 AM |
5460 | ldlang_override_segment_assignment (struct bfd_link_info *info ATTRIBUTE_UNUSED, |
5461 | bfd *abfd ATTRIBUTE_UNUSED, | |
5462 | asection *current_section, | |
5463 | asection *previous_section, | |
2889e75b NC |
5464 | bfd_boolean new_segment) |
5465 | { | |
0aa7f586 AM |
5466 | lang_output_section_statement_type *cur; |
5467 | lang_output_section_statement_type *prev; | |
591a748a NC |
5468 | |
5469 | /* The checks below are only necessary when the BFD library has decided | |
5470 | that the two sections ought to be placed into the same segment. */ | |
2889e75b NC |
5471 | if (new_segment) |
5472 | return TRUE; | |
5473 | ||
5474 | /* Paranoia checks. */ | |
5475 | if (current_section == NULL || previous_section == NULL) | |
5476 | return new_segment; | |
5477 | ||
4724d37e RM |
5478 | /* If this flag is set, the target never wants code and non-code |
5479 | sections comingled in the same segment. */ | |
5480 | if (config.separate_code | |
5481 | && ((current_section->flags ^ previous_section->flags) & SEC_CODE)) | |
5482 | return TRUE; | |
5483 | ||
2889e75b NC |
5484 | /* Find the memory regions associated with the two sections. |
5485 | We call lang_output_section_find() here rather than scanning the list | |
5486 | of output sections looking for a matching section pointer because if | |
591a748a | 5487 | we have a large number of sections then a hash lookup is faster. */ |
2889e75b NC |
5488 | cur = lang_output_section_find (current_section->name); |
5489 | prev = lang_output_section_find (previous_section->name); | |
5490 | ||
591a748a | 5491 | /* More paranoia. */ |
2889e75b NC |
5492 | if (cur == NULL || prev == NULL) |
5493 | return new_segment; | |
5494 | ||
5495 | /* If the regions are different then force the sections to live in | |
591a748a NC |
5496 | different segments. See the email thread starting at the following |
5497 | URL for the reasons why this is necessary: | |
2889e75b NC |
5498 | http://sourceware.org/ml/binutils/2007-02/msg00216.html */ |
5499 | return cur->region != prev->region; | |
5500 | } | |
5501 | ||
e9ee469a AM |
5502 | void |
5503 | one_lang_size_sections_pass (bfd_boolean *relax, bfd_boolean check_regions) | |
2d20f7bf | 5504 | { |
420e579c | 5505 | lang_statement_iteration++; |
e535e147 AM |
5506 | lang_size_sections_1 (&statement_list.head, abs_output_section, |
5507 | 0, 0, relax, check_regions); | |
e9ee469a | 5508 | } |
420e579c | 5509 | |
e9ee469a AM |
5510 | void |
5511 | lang_size_sections (bfd_boolean *relax, bfd_boolean check_regions) | |
5512 | { | |
5513 | expld.phase = lang_allocating_phase_enum; | |
5514 | expld.dataseg.phase = exp_dataseg_none; | |
5515 | ||
5516 | one_lang_size_sections_pass (relax, check_regions); | |
5517 | if (expld.dataseg.phase == exp_dataseg_end_seen | |
5518 | && link_info.relro && expld.dataseg.relro_end) | |
8c37241b | 5519 | { |
0e5fabeb AM |
5520 | bfd_vma initial_base, relro_end, desired_end; |
5521 | asection *sec; | |
8c37241b | 5522 | |
a4f5ad88 | 5523 | /* Compute the expected PT_GNU_RELRO segment end. */ |
967928e9 AM |
5524 | relro_end = ((expld.dataseg.relro_end + expld.dataseg.pagesize - 1) |
5525 | & ~(expld.dataseg.pagesize - 1)); | |
0e5fabeb AM |
5526 | |
5527 | /* Adjust by the offset arg of DATA_SEGMENT_RELRO_END. */ | |
5528 | desired_end = relro_end - expld.dataseg.relro_offset; | |
5529 | ||
5530 | /* For sections in the relro segment.. */ | |
5531 | for (sec = link_info.output_bfd->section_last; sec; sec = sec->prev) | |
b3991020 | 5532 | if ((sec->flags & SEC_ALLOC) != 0 |
0e5fabeb AM |
5533 | && sec->vma >= expld.dataseg.base |
5534 | && sec->vma < expld.dataseg.relro_end - expld.dataseg.relro_offset) | |
5535 | { | |
5536 | /* Where do we want to put this section so that it ends as | |
5537 | desired? */ | |
b3991020 AM |
5538 | bfd_vma start, end, bump; |
5539 | ||
5540 | end = start = sec->vma; | |
2e4a7aea | 5541 | if (!IS_TBSS (sec)) |
fc90c280 | 5542 | end += TO_ADDR (sec->size); |
b3991020 | 5543 | bump = desired_end - end; |
0e5fabeb AM |
5544 | /* We'd like to increase START by BUMP, but we must heed |
5545 | alignment so the increase might be less than optimum. */ | |
b3991020 AM |
5546 | start += bump; |
5547 | start &= ~(((bfd_vma) 1 << sec->alignment_power) - 1); | |
0e5fabeb AM |
5548 | /* This is now the desired end for the previous section. */ |
5549 | desired_end = start; | |
5550 | } | |
5551 | ||
5552 | expld.dataseg.phase = exp_dataseg_relro_adjust; | |
5553 | ASSERT (desired_end >= expld.dataseg.base); | |
5554 | initial_base = expld.dataseg.base; | |
5555 | expld.dataseg.base = desired_end; | |
f86a8756 | 5556 | lang_reset_memory_regions (); |
e9ee469a | 5557 | one_lang_size_sections_pass (relax, check_regions); |
0e5fabeb | 5558 | |
e9ee469a | 5559 | if (expld.dataseg.relro_end > relro_end) |
a4f5ad88 | 5560 | { |
0e5fabeb AM |
5561 | /* Assignments to dot, or to output section address in a |
5562 | user script have increased padding over the original. | |
5563 | Revert. */ | |
5564 | expld.dataseg.base = initial_base; | |
6c1aca3e AM |
5565 | lang_reset_memory_regions (); |
5566 | one_lang_size_sections_pass (relax, check_regions); | |
a4f5ad88 | 5567 | } |
0e5fabeb | 5568 | |
e9ee469a AM |
5569 | link_info.relro_start = expld.dataseg.base; |
5570 | link_info.relro_end = expld.dataseg.relro_end; | |
8c37241b | 5571 | } |
e9ee469a | 5572 | else if (expld.dataseg.phase == exp_dataseg_end_seen) |
2d20f7bf JJ |
5573 | { |
5574 | /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether | |
5575 | a page could be saved in the data segment. */ | |
5576 | bfd_vma first, last; | |
5577 | ||
e9ee469a AM |
5578 | first = -expld.dataseg.base & (expld.dataseg.pagesize - 1); |
5579 | last = expld.dataseg.end & (expld.dataseg.pagesize - 1); | |
2d20f7bf | 5580 | if (first && last |
e9ee469a AM |
5581 | && ((expld.dataseg.base & ~(expld.dataseg.pagesize - 1)) |
5582 | != (expld.dataseg.end & ~(expld.dataseg.pagesize - 1))) | |
5583 | && first + last <= expld.dataseg.pagesize) | |
2d20f7bf | 5584 | { |
e9ee469a | 5585 | expld.dataseg.phase = exp_dataseg_adjust; |
f86a8756 | 5586 | lang_reset_memory_regions (); |
e9ee469a | 5587 | one_lang_size_sections_pass (relax, check_regions); |
2d20f7bf | 5588 | } |
ea7c2e6c AM |
5589 | else |
5590 | expld.dataseg.phase = exp_dataseg_done; | |
2d20f7bf | 5591 | } |
ea7c2e6c AM |
5592 | else |
5593 | expld.dataseg.phase = exp_dataseg_done; | |
2d20f7bf JJ |
5594 | } |
5595 | ||
d2667025 AM |
5596 | static lang_output_section_statement_type *current_section; |
5597 | static lang_assignment_statement_type *current_assign; | |
5598 | static bfd_boolean prefer_next_section; | |
5599 | ||
420e579c HPN |
5600 | /* Worker function for lang_do_assignments. Recursiveness goes here. */ |
5601 | ||
5602 | static bfd_vma | |
66e28d60 AM |
5603 | lang_do_assignments_1 (lang_statement_union_type *s, |
5604 | lang_output_section_statement_type *current_os, | |
5605 | fill_type *fill, | |
d2667025 AM |
5606 | bfd_vma dot, |
5607 | bfd_boolean *found_end) | |
252b5132 | 5608 | { |
1579bae1 | 5609 | for (; s != NULL; s = s->header.next) |
252b5132 RH |
5610 | { |
5611 | switch (s->header.type) | |
5612 | { | |
5613 | case lang_constructors_statement_enum: | |
420e579c | 5614 | dot = lang_do_assignments_1 (constructor_list.head, |
d2667025 | 5615 | current_os, fill, dot, found_end); |
252b5132 RH |
5616 | break; |
5617 | ||
5618 | case lang_output_section_statement_enum: | |
5619 | { | |
d1778b88 | 5620 | lang_output_section_statement_type *os; |
f02cb058 | 5621 | bfd_vma newdot; |
252b5132 | 5622 | |
d1778b88 | 5623 | os = &(s->output_section_statement); |
d2667025 | 5624 | os->after_end = *found_end; |
75ff4589 | 5625 | if (os->bfd_section != NULL && !os->ignored) |
252b5132 | 5626 | { |
d2667025 AM |
5627 | if ((os->bfd_section->flags & SEC_ALLOC) != 0) |
5628 | { | |
5629 | current_section = os; | |
5630 | prefer_next_section = FALSE; | |
5631 | } | |
252b5132 | 5632 | dot = os->bfd_section->vma; |
f02cb058 AM |
5633 | } |
5634 | newdot = lang_do_assignments_1 (os->children.head, | |
5635 | os, os->fill, dot, found_end); | |
5636 | if (!os->ignored) | |
5637 | { | |
5638 | if (os->bfd_section != NULL) | |
5639 | { | |
5640 | /* .tbss sections effectively have zero size. */ | |
5641 | if (!IS_TBSS (os->bfd_section) | |
5642 | || bfd_link_relocatable (&link_info)) | |
5643 | dot += TO_ADDR (os->bfd_section->size); | |
5644 | ||
5645 | if (os->update_dot_tree != NULL) | |
5646 | exp_fold_tree (os->update_dot_tree, | |
5647 | bfd_abs_section_ptr, &dot); | |
5648 | } | |
5649 | else | |
5650 | dot = newdot; | |
252b5132 RH |
5651 | } |
5652 | } | |
5653 | break; | |
e9ee469a | 5654 | |
252b5132 RH |
5655 | case lang_wild_statement_enum: |
5656 | ||
420e579c | 5657 | dot = lang_do_assignments_1 (s->wild_statement.children.head, |
d2667025 | 5658 | current_os, fill, dot, found_end); |
252b5132 RH |
5659 | break; |
5660 | ||
5661 | case lang_object_symbols_statement_enum: | |
5662 | case lang_output_statement_enum: | |
5663 | case lang_target_statement_enum: | |
252b5132 | 5664 | break; |
e9ee469a | 5665 | |
252b5132 | 5666 | case lang_data_statement_enum: |
e9ee469a AM |
5667 | exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot); |
5668 | if (expld.result.valid_p) | |
7542af2a AM |
5669 | { |
5670 | s->data_statement.value = expld.result.value; | |
5671 | if (expld.result.section != NULL) | |
5672 | s->data_statement.value += expld.result.section->vma; | |
5673 | } | |
f02cb058 | 5674 | else if (expld.phase == lang_final_phase_enum) |
e9ee469a | 5675 | einfo (_("%F%P: invalid data statement\n")); |
b7a26f91 KH |
5676 | { |
5677 | unsigned int size; | |
08da4cac KH |
5678 | switch (s->data_statement.type) |
5679 | { | |
5680 | default: | |
5681 | abort (); | |
5682 | case QUAD: | |
5683 | case SQUAD: | |
5684 | size = QUAD_SIZE; | |
5685 | break; | |
5686 | case LONG: | |
5687 | size = LONG_SIZE; | |
5688 | break; | |
5689 | case SHORT: | |
5690 | size = SHORT_SIZE; | |
5691 | break; | |
5692 | case BYTE: | |
5693 | size = BYTE_SIZE; | |
5694 | break; | |
5695 | } | |
e5caa5e0 AM |
5696 | if (size < TO_SIZE ((unsigned) 1)) |
5697 | size = TO_SIZE ((unsigned) 1); | |
5698 | dot += TO_ADDR (size); | |
08da4cac | 5699 | } |
252b5132 RH |
5700 | break; |
5701 | ||
5702 | case lang_reloc_statement_enum: | |
e9ee469a AM |
5703 | exp_fold_tree (s->reloc_statement.addend_exp, |
5704 | bfd_abs_section_ptr, &dot); | |
5705 | if (expld.result.valid_p) | |
5706 | s->reloc_statement.addend_value = expld.result.value; | |
f02cb058 | 5707 | else if (expld.phase == lang_final_phase_enum) |
e9ee469a | 5708 | einfo (_("%F%P: invalid reloc statement\n")); |
e5caa5e0 | 5709 | dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto)); |
252b5132 RH |
5710 | break; |
5711 | ||
5712 | case lang_input_section_enum: | |
5713 | { | |
5714 | asection *in = s->input_section.section; | |
5715 | ||
57ceae94 | 5716 | if ((in->flags & SEC_EXCLUDE) == 0) |
eea6121a | 5717 | dot += TO_ADDR (in->size); |
252b5132 RH |
5718 | } |
5719 | break; | |
5720 | ||
5721 | case lang_input_statement_enum: | |
5722 | break; | |
e9ee469a | 5723 | |
252b5132 RH |
5724 | case lang_fill_statement_enum: |
5725 | fill = s->fill_statement.fill; | |
5726 | break; | |
252b5132 | 5727 | |
e9ee469a | 5728 | case lang_assignment_statement_enum: |
d2667025 AM |
5729 | current_assign = &s->assignment_statement; |
5730 | if (current_assign->exp->type.node_class != etree_assert) | |
5731 | { | |
5732 | const char *p = current_assign->exp->assign.dst; | |
5733 | ||
5734 | if (current_os == abs_output_section && p[0] == '.' && p[1] == 0) | |
5735 | prefer_next_section = TRUE; | |
5736 | ||
5737 | while (*p == '_') | |
5738 | ++p; | |
5739 | if (strcmp (p, "end") == 0) | |
5740 | *found_end = TRUE; | |
5741 | } | |
e9ee469a | 5742 | exp_fold_tree (s->assignment_statement.exp, |
f02cb058 AM |
5743 | (current_os->bfd_section != NULL |
5744 | ? current_os->bfd_section : bfd_und_section_ptr), | |
e9ee469a | 5745 | &dot); |
252b5132 | 5746 | break; |
e9ee469a | 5747 | |
252b5132 | 5748 | case lang_padding_statement_enum: |
e5caa5e0 | 5749 | dot += TO_ADDR (s->padding_statement.size); |
252b5132 RH |
5750 | break; |
5751 | ||
5752 | case lang_group_statement_enum: | |
420e579c | 5753 | dot = lang_do_assignments_1 (s->group_statement.children.head, |
d2667025 | 5754 | current_os, fill, dot, found_end); |
252b5132 RH |
5755 | break; |
5756 | ||
53d25da6 | 5757 | case lang_insert_statement_enum: |
252b5132 | 5758 | break; |
e9ee469a | 5759 | |
252b5132 RH |
5760 | case lang_address_statement_enum: |
5761 | break; | |
53d25da6 AM |
5762 | |
5763 | default: | |
5764 | FAIL (); | |
5765 | break; | |
252b5132 | 5766 | } |
252b5132 RH |
5767 | } |
5768 | return dot; | |
5769 | } | |
5770 | ||
f2241121 | 5771 | void |
2f65ac72 | 5772 | lang_do_assignments (lang_phase_type phase) |
420e579c | 5773 | { |
d2667025 AM |
5774 | bfd_boolean found_end = FALSE; |
5775 | ||
5776 | current_section = NULL; | |
5777 | prefer_next_section = FALSE; | |
2f65ac72 | 5778 | expld.phase = phase; |
420e579c | 5779 | lang_statement_iteration++; |
d2667025 AM |
5780 | lang_do_assignments_1 (statement_list.head, |
5781 | abs_output_section, NULL, 0, &found_end); | |
5782 | } | |
5783 | ||
5784 | /* For an assignment statement outside of an output section statement, | |
5785 | choose the best of neighbouring output sections to use for values | |
5786 | of "dot". */ | |
5787 | ||
5788 | asection * | |
5789 | section_for_dot (void) | |
5790 | { | |
5791 | asection *s; | |
5792 | ||
5793 | /* Assignments belong to the previous output section, unless there | |
5794 | has been an assignment to "dot", in which case following | |
5795 | assignments belong to the next output section. (The assumption | |
5796 | is that an assignment to "dot" is setting up the address for the | |
5797 | next output section.) Except that past the assignment to "_end" | |
5798 | we always associate with the previous section. This exception is | |
5799 | for targets like SH that define an alloc .stack or other | |
5800 | weirdness after non-alloc sections. */ | |
5801 | if (current_section == NULL || prefer_next_section) | |
5802 | { | |
5803 | lang_statement_union_type *stmt; | |
5804 | lang_output_section_statement_type *os; | |
5805 | ||
5806 | for (stmt = (lang_statement_union_type *) current_assign; | |
5807 | stmt != NULL; | |
5808 | stmt = stmt->header.next) | |
5809 | if (stmt->header.type == lang_output_section_statement_enum) | |
5810 | break; | |
5811 | ||
5812 | os = &stmt->output_section_statement; | |
5813 | while (os != NULL | |
5814 | && !os->after_end | |
5815 | && (os->bfd_section == NULL | |
5816 | || (os->bfd_section->flags & SEC_EXCLUDE) != 0 | |
5817 | || bfd_section_removed_from_list (link_info.output_bfd, | |
5818 | os->bfd_section))) | |
5819 | os = os->next; | |
5820 | ||
5821 | if (current_section == NULL || os == NULL || !os->after_end) | |
5822 | { | |
5823 | if (os != NULL) | |
5824 | s = os->bfd_section; | |
5825 | else | |
5826 | s = link_info.output_bfd->section_last; | |
5827 | while (s != NULL | |
5828 | && ((s->flags & SEC_ALLOC) == 0 | |
5829 | || (s->flags & SEC_THREAD_LOCAL) != 0)) | |
5830 | s = s->prev; | |
5831 | if (s != NULL) | |
5832 | return s; | |
5833 | ||
5834 | return bfd_abs_section_ptr; | |
5835 | } | |
5836 | } | |
5837 | ||
5838 | s = current_section->bfd_section; | |
5839 | ||
5840 | /* The section may have been stripped. */ | |
5841 | while (s != NULL | |
5842 | && ((s->flags & SEC_EXCLUDE) != 0 | |
5843 | || (s->flags & SEC_ALLOC) == 0 | |
5844 | || (s->flags & SEC_THREAD_LOCAL) != 0 | |
5845 | || bfd_section_removed_from_list (link_info.output_bfd, s))) | |
5846 | s = s->prev; | |
5847 | if (s == NULL) | |
5848 | s = link_info.output_bfd->sections; | |
5849 | while (s != NULL | |
5850 | && ((s->flags & SEC_ALLOC) == 0 | |
5851 | || (s->flags & SEC_THREAD_LOCAL) != 0)) | |
5852 | s = s->next; | |
5853 | if (s != NULL) | |
5854 | return s; | |
5855 | ||
5856 | return bfd_abs_section_ptr; | |
420e579c HPN |
5857 | } |
5858 | ||
252b5132 RH |
5859 | /* Fix any .startof. or .sizeof. symbols. When the assemblers see the |
5860 | operator .startof. (section_name), it produces an undefined symbol | |
5861 | .startof.section_name. Similarly, when it sees | |
5862 | .sizeof. (section_name), it produces an undefined symbol | |
5863 | .sizeof.section_name. For all the output sections, we look for | |
5864 | such symbols, and set them to the correct value. */ | |
5865 | ||
5866 | static void | |
1579bae1 | 5867 | lang_set_startof (void) |
252b5132 RH |
5868 | { |
5869 | asection *s; | |
5870 | ||
0e1862bb | 5871 | if (bfd_link_relocatable (&link_info)) |
252b5132 RH |
5872 | return; |
5873 | ||
f13a99db | 5874 | for (s = link_info.output_bfd->sections; s != NULL; s = s->next) |
252b5132 RH |
5875 | { |
5876 | const char *secname; | |
5877 | char *buf; | |
5878 | struct bfd_link_hash_entry *h; | |
5879 | ||
f13a99db | 5880 | secname = bfd_get_section_name (link_info.output_bfd, s); |
1e9cc1c2 | 5881 | buf = (char *) xmalloc (10 + strlen (secname)); |
252b5132 RH |
5882 | |
5883 | sprintf (buf, ".startof.%s", secname); | |
b34976b6 | 5884 | h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE); |
252b5132 RH |
5885 | if (h != NULL && h->type == bfd_link_hash_undefined) |
5886 | { | |
5887 | h->type = bfd_link_hash_defined; | |
d2667025 AM |
5888 | h->u.def.value = 0; |
5889 | h->u.def.section = s; | |
252b5132 RH |
5890 | } |
5891 | ||
5892 | sprintf (buf, ".sizeof.%s", secname); | |
b34976b6 | 5893 | h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE); |
252b5132 RH |
5894 | if (h != NULL && h->type == bfd_link_hash_undefined) |
5895 | { | |
5896 | h->type = bfd_link_hash_defined; | |
eea6121a | 5897 | h->u.def.value = TO_ADDR (s->size); |
252b5132 RH |
5898 | h->u.def.section = bfd_abs_section_ptr; |
5899 | } | |
5900 | ||
5901 | free (buf); | |
5902 | } | |
5903 | } | |
5904 | ||
5905 | static void | |
750877ba | 5906 | lang_end (void) |
252b5132 RH |
5907 | { |
5908 | struct bfd_link_hash_entry *h; | |
b34976b6 | 5909 | bfd_boolean warn; |
252b5132 | 5910 | |
0e1862bb L |
5911 | if ((bfd_link_relocatable (&link_info) && !link_info.gc_sections) |
5912 | || bfd_link_dll (&link_info)) | |
71934f94 | 5913 | warn = entry_from_cmdline; |
252b5132 | 5914 | else |
b34976b6 | 5915 | warn = TRUE; |
252b5132 | 5916 | |
ac69cbc6 TG |
5917 | /* Force the user to specify a root when generating a relocatable with |
5918 | --gc-sections. */ | |
0e1862bb | 5919 | if (link_info.gc_sections && bfd_link_relocatable (&link_info) |
24898b70 | 5920 | && !(entry_from_cmdline || undef_from_cmdline)) |
ac69cbc6 TG |
5921 | einfo (_("%P%F: gc-sections requires either an entry or " |
5922 | "an undefined symbol\n")); | |
5923 | ||
1579bae1 | 5924 | if (entry_symbol.name == NULL) |
252b5132 | 5925 | { |
a359509e ZW |
5926 | /* No entry has been specified. Look for the default entry, but |
5927 | don't warn if we don't find it. */ | |
5928 | entry_symbol.name = entry_symbol_default; | |
b34976b6 | 5929 | warn = FALSE; |
252b5132 RH |
5930 | } |
5931 | ||
e3e942e9 | 5932 | h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name, |
b34976b6 | 5933 | FALSE, FALSE, TRUE); |
1579bae1 | 5934 | if (h != NULL |
252b5132 RH |
5935 | && (h->type == bfd_link_hash_defined |
5936 | || h->type == bfd_link_hash_defweak) | |
5937 | && h->u.def.section->output_section != NULL) | |
5938 | { | |
5939 | bfd_vma val; | |
5940 | ||
5941 | val = (h->u.def.value | |
f13a99db | 5942 | + bfd_get_section_vma (link_info.output_bfd, |
252b5132 RH |
5943 | h->u.def.section->output_section) |
5944 | + h->u.def.section->output_offset); | |
0aa7f586 | 5945 | if (!bfd_set_start_address (link_info.output_bfd, val)) |
e3e942e9 | 5946 | einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name); |
252b5132 RH |
5947 | } |
5948 | else | |
5949 | { | |
5950 | bfd_vma val; | |
5f992e62 | 5951 | const char *send; |
252b5132 RH |
5952 | |
5953 | /* We couldn't find the entry symbol. Try parsing it as a | |
afd7a018 | 5954 | number. */ |
e3e942e9 | 5955 | val = bfd_scan_vma (entry_symbol.name, &send, 0); |
252b5132 RH |
5956 | if (*send == '\0') |
5957 | { | |
0aa7f586 | 5958 | if (!bfd_set_start_address (link_info.output_bfd, val)) |
252b5132 RH |
5959 | einfo (_("%P%F: can't set start address\n")); |
5960 | } | |
5961 | else | |
5962 | { | |
5963 | asection *ts; | |
5964 | ||
5965 | /* Can't find the entry symbol, and it's not a number. Use | |
5966 | the first address in the text section. */ | |
f13a99db | 5967 | ts = bfd_get_section_by_name (link_info.output_bfd, entry_section); |
1579bae1 | 5968 | if (ts != NULL) |
252b5132 RH |
5969 | { |
5970 | if (warn) | |
6feb9908 AM |
5971 | einfo (_("%P: warning: cannot find entry symbol %s;" |
5972 | " defaulting to %V\n"), | |
e3e942e9 | 5973 | entry_symbol.name, |
f13a99db AM |
5974 | bfd_get_section_vma (link_info.output_bfd, ts)); |
5975 | if (!(bfd_set_start_address | |
5976 | (link_info.output_bfd, | |
5977 | bfd_get_section_vma (link_info.output_bfd, ts)))) | |
252b5132 RH |
5978 | einfo (_("%P%F: can't set start address\n")); |
5979 | } | |
5980 | else | |
5981 | { | |
5982 | if (warn) | |
6feb9908 AM |
5983 | einfo (_("%P: warning: cannot find entry symbol %s;" |
5984 | " not setting start address\n"), | |
e3e942e9 | 5985 | entry_symbol.name); |
252b5132 RH |
5986 | } |
5987 | } | |
5988 | } | |
5989 | } | |
5990 | ||
5991 | /* This is a small function used when we want to ignore errors from | |
5992 | BFD. */ | |
5993 | ||
5994 | static void | |
52d45da3 AM |
5995 | ignore_bfd_errors (const char *fmt ATTRIBUTE_UNUSED, |
5996 | va_list ap ATTRIBUTE_UNUSED) | |
252b5132 RH |
5997 | { |
5998 | /* Don't do anything. */ | |
5999 | } | |
6000 | ||
6001 | /* Check that the architecture of all the input files is compatible | |
6002 | with the output file. Also call the backend to let it do any | |
6003 | other checking that is needed. */ | |
6004 | ||
6005 | static void | |
1579bae1 | 6006 | lang_check (void) |
252b5132 RH |
6007 | { |
6008 | lang_statement_union_type *file; | |
6009 | bfd *input_bfd; | |
5f992e62 | 6010 | const bfd_arch_info_type *compatible; |
252b5132 | 6011 | |
1579bae1 | 6012 | for (file = file_chain.head; file != NULL; file = file->input_statement.next) |
252b5132 | 6013 | { |
422b6f14 DK |
6014 | #ifdef ENABLE_PLUGINS |
6015 | /* Don't check format of files claimed by plugin. */ | |
66be1055 | 6016 | if (file->input_statement.flags.claimed) |
422b6f14 DK |
6017 | continue; |
6018 | #endif /* ENABLE_PLUGINS */ | |
252b5132 | 6019 | input_bfd = file->input_statement.the_bfd; |
6feb9908 | 6020 | compatible |
f13a99db | 6021 | = bfd_arch_get_compatible (input_bfd, link_info.output_bfd, |
6feb9908 | 6022 | command_line.accept_unknown_input_arch); |
30cba025 AM |
6023 | |
6024 | /* In general it is not possible to perform a relocatable | |
6025 | link between differing object formats when the input | |
6026 | file has relocations, because the relocations in the | |
6027 | input format may not have equivalent representations in | |
6028 | the output format (and besides BFD does not translate | |
6029 | relocs for other link purposes than a final link). */ | |
0e1862bb L |
6030 | if ((bfd_link_relocatable (&link_info) |
6031 | || link_info.emitrelocations) | |
30cba025 | 6032 | && (compatible == NULL |
f13a99db AM |
6033 | || (bfd_get_flavour (input_bfd) |
6034 | != bfd_get_flavour (link_info.output_bfd))) | |
30cba025 AM |
6035 | && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0) |
6036 | { | |
6feb9908 AM |
6037 | einfo (_("%P%F: Relocatable linking with relocations from" |
6038 | " format %s (%B) to format %s (%B) is not supported\n"), | |
30cba025 | 6039 | bfd_get_target (input_bfd), input_bfd, |
f13a99db | 6040 | bfd_get_target (link_info.output_bfd), link_info.output_bfd); |
30cba025 AM |
6041 | /* einfo with %F exits. */ |
6042 | } | |
6043 | ||
252b5132 RH |
6044 | if (compatible == NULL) |
6045 | { | |
6046 | if (command_line.warn_mismatch) | |
9e7750f2 | 6047 | einfo (_("%P%X: %s architecture of input file `%B'" |
6feb9908 | 6048 | " is incompatible with %s output\n"), |
252b5132 | 6049 | bfd_printable_name (input_bfd), input_bfd, |
f13a99db | 6050 | bfd_printable_name (link_info.output_bfd)); |
252b5132 | 6051 | } |
b9247304 | 6052 | else if (bfd_count_sections (input_bfd)) |
252b5132 | 6053 | { |
b9247304 | 6054 | /* If the input bfd has no contents, it shouldn't set the |
b7a26f91 | 6055 | private data of the output bfd. */ |
b9247304 | 6056 | |
252b5132 RH |
6057 | bfd_error_handler_type pfn = NULL; |
6058 | ||
6059 | /* If we aren't supposed to warn about mismatched input | |
afd7a018 AM |
6060 | files, temporarily set the BFD error handler to a |
6061 | function which will do nothing. We still want to call | |
6062 | bfd_merge_private_bfd_data, since it may set up | |
6063 | information which is needed in the output file. */ | |
0aa7f586 | 6064 | if (!command_line.warn_mismatch) |
252b5132 | 6065 | pfn = bfd_set_error_handler (ignore_bfd_errors); |
50e03d47 | 6066 | if (!bfd_merge_private_bfd_data (input_bfd, &link_info)) |
252b5132 RH |
6067 | { |
6068 | if (command_line.warn_mismatch) | |
6feb9908 AM |
6069 | einfo (_("%P%X: failed to merge target specific data" |
6070 | " of file %B\n"), input_bfd); | |
252b5132 | 6071 | } |
0aa7f586 | 6072 | if (!command_line.warn_mismatch) |
252b5132 RH |
6073 | bfd_set_error_handler (pfn); |
6074 | } | |
6075 | } | |
6076 | } | |
6077 | ||
6078 | /* Look through all the global common symbols and attach them to the | |
6079 | correct section. The -sort-common command line switch may be used | |
de7dd2bd | 6080 | to roughly sort the entries by alignment. */ |
252b5132 RH |
6081 | |
6082 | static void | |
1579bae1 | 6083 | lang_common (void) |
252b5132 | 6084 | { |
4818e05f AM |
6085 | if (command_line.inhibit_common_definition) |
6086 | return; | |
0e1862bb | 6087 | if (bfd_link_relocatable (&link_info) |
0aa7f586 | 6088 | && !command_line.force_common_definition) |
252b5132 RH |
6089 | return; |
6090 | ||
0aa7f586 | 6091 | if (!config.sort_common) |
1579bae1 | 6092 | bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL); |
252b5132 RH |
6093 | else |
6094 | { | |
de7dd2bd NC |
6095 | unsigned int power; |
6096 | ||
6097 | if (config.sort_common == sort_descending) | |
967928e9 AM |
6098 | { |
6099 | for (power = 4; power > 0; power--) | |
6100 | bfd_link_hash_traverse (link_info.hash, lang_one_common, &power); | |
6101 | ||
6102 | power = 0; | |
6103 | bfd_link_hash_traverse (link_info.hash, lang_one_common, &power); | |
6104 | } | |
de7dd2bd | 6105 | else |
967928e9 AM |
6106 | { |
6107 | for (power = 0; power <= 4; power++) | |
6108 | bfd_link_hash_traverse (link_info.hash, lang_one_common, &power); | |
252b5132 | 6109 | |
2dc0e7b4 | 6110 | power = (unsigned int) -1; |
de7dd2bd NC |
6111 | bfd_link_hash_traverse (link_info.hash, lang_one_common, &power); |
6112 | } | |
252b5132 RH |
6113 | } |
6114 | } | |
6115 | ||
6116 | /* Place one common symbol in the correct section. */ | |
6117 | ||
b34976b6 | 6118 | static bfd_boolean |
1579bae1 | 6119 | lang_one_common (struct bfd_link_hash_entry *h, void *info) |
252b5132 RH |
6120 | { |
6121 | unsigned int power_of_two; | |
6122 | bfd_vma size; | |
6123 | asection *section; | |
6124 | ||
6125 | if (h->type != bfd_link_hash_common) | |
b34976b6 | 6126 | return TRUE; |
252b5132 RH |
6127 | |
6128 | size = h->u.c.size; | |
6129 | power_of_two = h->u.c.p->alignment_power; | |
6130 | ||
de7dd2bd NC |
6131 | if (config.sort_common == sort_descending |
6132 | && power_of_two < *(unsigned int *) info) | |
6133 | return TRUE; | |
6134 | else if (config.sort_common == sort_ascending | |
967928e9 | 6135 | && power_of_two > *(unsigned int *) info) |
b34976b6 | 6136 | return TRUE; |
252b5132 RH |
6137 | |
6138 | section = h->u.c.p->section; | |
3023e3f6 RS |
6139 | if (!bfd_define_common_symbol (link_info.output_bfd, &link_info, h)) |
6140 | einfo (_("%P%F: Could not define common symbol `%T': %E\n"), | |
6141 | h->root.string); | |
252b5132 RH |
6142 | |
6143 | if (config.map_file != NULL) | |
6144 | { | |
b34976b6 | 6145 | static bfd_boolean header_printed; |
252b5132 RH |
6146 | int len; |
6147 | char *name; | |
6148 | char buf[50]; | |
6149 | ||
0aa7f586 | 6150 | if (!header_printed) |
252b5132 RH |
6151 | { |
6152 | minfo (_("\nAllocating common symbols\n")); | |
6153 | minfo (_("Common symbol size file\n\n")); | |
b34976b6 | 6154 | header_printed = TRUE; |
252b5132 RH |
6155 | } |
6156 | ||
f13a99db | 6157 | name = bfd_demangle (link_info.output_bfd, h->root.string, |
73705ac3 | 6158 | DMGL_ANSI | DMGL_PARAMS); |
d7d4c8de AM |
6159 | if (name == NULL) |
6160 | { | |
6161 | minfo ("%s", h->root.string); | |
6162 | len = strlen (h->root.string); | |
6163 | } | |
6164 | else | |
6165 | { | |
6166 | minfo ("%s", name); | |
6167 | len = strlen (name); | |
6168 | free (name); | |
6169 | } | |
252b5132 RH |
6170 | |
6171 | if (len >= 19) | |
6172 | { | |
6173 | print_nl (); | |
6174 | len = 0; | |
6175 | } | |
6176 | while (len < 20) | |
6177 | { | |
6178 | print_space (); | |
6179 | ++len; | |
6180 | } | |
6181 | ||
6182 | minfo ("0x"); | |
6183 | if (size <= 0xffffffff) | |
6184 | sprintf (buf, "%lx", (unsigned long) size); | |
6185 | else | |
6186 | sprintf_vma (buf, size); | |
6187 | minfo ("%s", buf); | |
6188 | len = strlen (buf); | |
6189 | ||
6190 | while (len < 16) | |
6191 | { | |
6192 | print_space (); | |
6193 | ++len; | |
6194 | } | |
6195 | ||
6196 | minfo ("%B\n", section->owner); | |
6197 | } | |
6198 | ||
b34976b6 | 6199 | return TRUE; |
252b5132 RH |
6200 | } |
6201 | ||
c005eb9e AB |
6202 | /* Handle a single orphan section S, placing the orphan into an appropriate |
6203 | output section. The effects of the --orphan-handling command line | |
6204 | option are handled here. */ | |
6205 | ||
6206 | static void | |
6207 | ldlang_place_orphan (asection *s) | |
6208 | { | |
6209 | if (config.orphan_handling == orphan_handling_discard) | |
6210 | { | |
6211 | lang_output_section_statement_type *os; | |
6212 | os = lang_output_section_statement_lookup (DISCARD_SECTION_NAME, 0, | |
6213 | TRUE); | |
6214 | if (os->addr_tree == NULL | |
6215 | && (bfd_link_relocatable (&link_info) | |
6216 | || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)) | |
6217 | os->addr_tree = exp_intop (0); | |
6218 | lang_add_section (&os->children, s, NULL, os); | |
6219 | } | |
6220 | else | |
6221 | { | |
6222 | lang_output_section_statement_type *os; | |
6223 | const char *name = s->name; | |
6224 | int constraint = 0; | |
6225 | ||
6226 | if (config.orphan_handling == orphan_handling_error) | |
6227 | einfo ("%X%P: error: unplaced orphan section `%A' from `%B'.\n", | |
6228 | s, s->owner); | |
6229 | ||
6230 | if (config.unique_orphan_sections || unique_section_p (s, NULL)) | |
6231 | constraint = SPECIAL; | |
6232 | ||
6233 | os = ldemul_place_orphan (s, name, constraint); | |
6234 | if (os == NULL) | |
6235 | { | |
6236 | os = lang_output_section_statement_lookup (name, constraint, TRUE); | |
6237 | if (os->addr_tree == NULL | |
6238 | && (bfd_link_relocatable (&link_info) | |
6239 | || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)) | |
6240 | os->addr_tree = exp_intop (0); | |
6241 | lang_add_section (&os->children, s, NULL, os); | |
6242 | } | |
6243 | ||
6244 | if (config.orphan_handling == orphan_handling_warn) | |
6245 | einfo ("%P: warning: orphan section `%A' from `%B' being " | |
6246 | "placed in section `%s'.\n", | |
6247 | s, s->owner, os->name); | |
6248 | } | |
6249 | } | |
6250 | ||
08da4cac KH |
6251 | /* Run through the input files and ensure that every input section has |
6252 | somewhere to go. If one is found without a destination then create | |
6253 | an input request and place it into the statement tree. */ | |
252b5132 RH |
6254 | |
6255 | static void | |
1579bae1 | 6256 | lang_place_orphans (void) |
252b5132 | 6257 | { |
e50d8076 | 6258 | LANG_FOR_EACH_INPUT_STATEMENT (file) |
252b5132 RH |
6259 | { |
6260 | asection *s; | |
6261 | ||
1579bae1 | 6262 | for (s = file->the_bfd->sections; s != NULL; s = s->next) |
252b5132 | 6263 | { |
1579bae1 | 6264 | if (s->output_section == NULL) |
252b5132 | 6265 | { |
396a2467 | 6266 | /* This section of the file is not attached, root |
afd7a018 | 6267 | around for a sensible place for it to go. */ |
252b5132 | 6268 | |
66be1055 | 6269 | if (file->flags.just_syms) |
1449d79b AM |
6270 | bfd_link_just_syms (file->the_bfd, s, &link_info); |
6271 | else if ((s->flags & SEC_EXCLUDE) != 0) | |
164e712d | 6272 | s->output_section = bfd_abs_section_ptr; |
252b5132 RH |
6273 | else if (strcmp (s->name, "COMMON") == 0) |
6274 | { | |
6275 | /* This is a lonely common section which must have | |
6276 | come from an archive. We attach to the section | |
6277 | with the wildcard. */ | |
0e1862bb | 6278 | if (!bfd_link_relocatable (&link_info) |
252b5132 RH |
6279 | || command_line.force_common_definition) |
6280 | { | |
6281 | if (default_common_section == NULL) | |
66c103b7 AM |
6282 | default_common_section |
6283 | = lang_output_section_statement_lookup (".bss", 0, | |
6284 | TRUE); | |
39dcfe18 | 6285 | lang_add_section (&default_common_section->children, s, |
b9c361e0 | 6286 | NULL, default_common_section); |
252b5132 RH |
6287 | } |
6288 | } | |
252b5132 | 6289 | else |
c005eb9e | 6290 | ldlang_place_orphan (s); |
252b5132 RH |
6291 | } |
6292 | } | |
6293 | } | |
6294 | } | |
6295 | ||
252b5132 | 6296 | void |
1579bae1 | 6297 | lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert) |
252b5132 | 6298 | { |
aa8804e4 | 6299 | flagword *ptr_flags; |
252b5132 | 6300 | |
aa8804e4 | 6301 | ptr_flags = invert ? &ptr->not_flags : &ptr->flags; |
f0673d20 | 6302 | |
252b5132 RH |
6303 | while (*flags) |
6304 | { | |
6305 | switch (*flags) | |
6306 | { | |
f0673d20 NC |
6307 | /* PR 17900: An exclamation mark in the attributes reverses |
6308 | the sense of any of the attributes that follow. */ | |
6309 | case '!': | |
0aa7f586 | 6310 | invert = !invert; |
f0673d20 NC |
6311 | ptr_flags = invert ? &ptr->not_flags : &ptr->flags; |
6312 | break; | |
6313 | ||
252b5132 RH |
6314 | case 'A': case 'a': |
6315 | *ptr_flags |= SEC_ALLOC; | |
6316 | break; | |
6317 | ||
6318 | case 'R': case 'r': | |
6319 | *ptr_flags |= SEC_READONLY; | |
6320 | break; | |
6321 | ||
6322 | case 'W': case 'w': | |
6323 | *ptr_flags |= SEC_DATA; | |
6324 | break; | |
6325 | ||
6326 | case 'X': case 'x': | |
6327 | *ptr_flags |= SEC_CODE; | |
6328 | break; | |
6329 | ||
6330 | case 'L': case 'l': | |
6331 | case 'I': case 'i': | |
6332 | *ptr_flags |= SEC_LOAD; | |
6333 | break; | |
6334 | ||
6335 | default: | |
0aa7f586 AM |
6336 | einfo (_("%P%F: invalid character %c (%d) in flags\n"), |
6337 | *flags, *flags); | |
252b5132 RH |
6338 | break; |
6339 | } | |
6340 | flags++; | |
6341 | } | |
6342 | } | |
6343 | ||
6344 | /* Call a function on each input file. This function will be called | |
6345 | on an archive, but not on the elements. */ | |
6346 | ||
6347 | void | |
1579bae1 | 6348 | lang_for_each_input_file (void (*func) (lang_input_statement_type *)) |
252b5132 RH |
6349 | { |
6350 | lang_input_statement_type *f; | |
6351 | ||
6352 | for (f = (lang_input_statement_type *) input_file_chain.head; | |
6353 | f != NULL; | |
6354 | f = (lang_input_statement_type *) f->next_real_file) | |
6355 | func (f); | |
6356 | } | |
6357 | ||
6358 | /* Call a function on each file. The function will be called on all | |
6359 | the elements of an archive which are included in the link, but will | |
6360 | not be called on the archive file itself. */ | |
6361 | ||
6362 | void | |
1579bae1 | 6363 | lang_for_each_file (void (*func) (lang_input_statement_type *)) |
252b5132 | 6364 | { |
e50d8076 | 6365 | LANG_FOR_EACH_INPUT_STATEMENT (f) |
252b5132 RH |
6366 | { |
6367 | func (f); | |
6368 | } | |
6369 | } | |
6370 | ||
252b5132 | 6371 | void |
1579bae1 | 6372 | ldlang_add_file (lang_input_statement_type *entry) |
252b5132 | 6373 | { |
252b5132 RH |
6374 | lang_statement_append (&file_chain, |
6375 | (lang_statement_union_type *) entry, | |
6376 | &entry->next); | |
6377 | ||
6378 | /* The BFD linker needs to have a list of all input BFDs involved in | |
6379 | a link. */ | |
c72f2fb2 | 6380 | ASSERT (entry->the_bfd->link.next == NULL); |
f13a99db | 6381 | ASSERT (entry->the_bfd != link_info.output_bfd); |
a9a4c53e AM |
6382 | |
6383 | *link_info.input_bfds_tail = entry->the_bfd; | |
c72f2fb2 | 6384 | link_info.input_bfds_tail = &entry->the_bfd->link.next; |
1579bae1 | 6385 | entry->the_bfd->usrdata = entry; |
252b5132 RH |
6386 | bfd_set_gp_size (entry->the_bfd, g_switch_value); |
6387 | ||
6388 | /* Look through the sections and check for any which should not be | |
6389 | included in the link. We need to do this now, so that we can | |
6390 | notice when the backend linker tries to report multiple | |
6391 | definition errors for symbols which are in sections we aren't | |
6392 | going to link. FIXME: It might be better to entirely ignore | |
6393 | symbols which are defined in sections which are going to be | |
6394 | discarded. This would require modifying the backend linker for | |
6395 | each backend which might set the SEC_LINK_ONCE flag. If we do | |
6396 | this, we should probably handle SEC_EXCLUDE in the same way. */ | |
6397 | ||
1579bae1 | 6398 | bfd_map_over_sections (entry->the_bfd, section_already_linked, entry); |
252b5132 RH |
6399 | } |
6400 | ||
6401 | void | |
1579bae1 | 6402 | lang_add_output (const char *name, int from_script) |
252b5132 RH |
6403 | { |
6404 | /* Make -o on command line override OUTPUT in script. */ | |
7c519c12 | 6405 | if (!had_output_filename || !from_script) |
252b5132 RH |
6406 | { |
6407 | output_filename = name; | |
b34976b6 | 6408 | had_output_filename = TRUE; |
252b5132 RH |
6409 | } |
6410 | } | |
6411 | ||
252b5132 | 6412 | static int |
1579bae1 | 6413 | topower (int x) |
252b5132 RH |
6414 | { |
6415 | unsigned int i = 1; | |
6416 | int l; | |
6417 | ||
6418 | if (x < 0) | |
6419 | return -1; | |
6420 | ||
5f992e62 | 6421 | for (l = 0; l < 32; l++) |
252b5132 RH |
6422 | { |
6423 | if (i >= (unsigned int) x) | |
6424 | return l; | |
6425 | i <<= 1; | |
6426 | } | |
6427 | ||
6428 | return 0; | |
6429 | } | |
6430 | ||
aea4bd9d | 6431 | lang_output_section_statement_type * |
1579bae1 AM |
6432 | lang_enter_output_section_statement (const char *output_section_statement_name, |
6433 | etree_type *address_exp, | |
6434 | enum section_type sectype, | |
1579bae1 AM |
6435 | etree_type *align, |
6436 | etree_type *subalign, | |
0841712e | 6437 | etree_type *ebase, |
1eec346e NC |
6438 | int constraint, |
6439 | int align_with_input) | |
252b5132 RH |
6440 | { |
6441 | lang_output_section_statement_type *os; | |
6442 | ||
66c103b7 AM |
6443 | os = lang_output_section_statement_lookup (output_section_statement_name, |
6444 | constraint, TRUE); | |
967928e9 | 6445 | current_section = os; |
252b5132 | 6446 | |
1579bae1 | 6447 | if (os->addr_tree == NULL) |
08da4cac KH |
6448 | { |
6449 | os->addr_tree = address_exp; | |
6450 | } | |
252b5132 RH |
6451 | os->sectype = sectype; |
6452 | if (sectype != noload_section) | |
6453 | os->flags = SEC_NO_FLAGS; | |
6454 | else | |
6455 | os->flags = SEC_NEVER_LOAD; | |
e5caa5e0 | 6456 | os->block_value = 1; |
66c103b7 AM |
6457 | |
6458 | /* Make next things chain into subchain of this. */ | |
bde18da4 | 6459 | push_stat_ptr (&os->children); |
252b5132 | 6460 | |
1eec346e NC |
6461 | os->align_lma_with_input = align_with_input == ALIGN_WITH_INPUT; |
6462 | if (os->align_lma_with_input && align != NULL) | |
0aa7f586 AM |
6463 | einfo (_("%F%P:%S: error: align with input and explicit align specified\n"), |
6464 | NULL); | |
1eec346e | 6465 | |
08da4cac | 6466 | os->subsection_alignment = |
e9ee469a | 6467 | topower (exp_get_value_int (subalign, -1, "subsection alignment")); |
08da4cac | 6468 | os->section_alignment = |
e9ee469a | 6469 | topower (exp_get_value_int (align, -1, "section alignment")); |
252b5132 RH |
6470 | |
6471 | os->load_base = ebase; | |
aea4bd9d | 6472 | return os; |
252b5132 RH |
6473 | } |
6474 | ||
252b5132 | 6475 | void |
1579bae1 | 6476 | lang_final (void) |
252b5132 | 6477 | { |
d3ce72d0 NC |
6478 | lang_output_statement_type *new_stmt; |
6479 | ||
6480 | new_stmt = new_stat (lang_output_statement, stat_ptr); | |
6481 | new_stmt->name = output_filename; | |
252b5132 RH |
6482 | } |
6483 | ||
08da4cac KH |
6484 | /* Reset the current counters in the regions. */ |
6485 | ||
e3dc8847 | 6486 | void |
1579bae1 | 6487 | lang_reset_memory_regions (void) |
252b5132 RH |
6488 | { |
6489 | lang_memory_region_type *p = lang_memory_region_list; | |
b3327aad | 6490 | asection *o; |
e9ee469a | 6491 | lang_output_section_statement_type *os; |
252b5132 | 6492 | |
1579bae1 | 6493 | for (p = lang_memory_region_list; p != NULL; p = p->next) |
252b5132 | 6494 | { |
252b5132 | 6495 | p->current = p->origin; |
66e28d60 | 6496 | p->last_os = NULL; |
252b5132 | 6497 | } |
b3327aad | 6498 | |
e9ee469a AM |
6499 | for (os = &lang_output_section_statement.head->output_section_statement; |
6500 | os != NULL; | |
6501 | os = os->next) | |
cde9e0be AM |
6502 | { |
6503 | os->processed_vma = FALSE; | |
6504 | os->processed_lma = FALSE; | |
6505 | } | |
e9ee469a | 6506 | |
f13a99db | 6507 | for (o = link_info.output_bfd->sections; o != NULL; o = o->next) |
1a23a9e6 AM |
6508 | { |
6509 | /* Save the last size for possible use by bfd_relax_section. */ | |
6510 | o->rawsize = o->size; | |
6511 | o->size = 0; | |
6512 | } | |
252b5132 RH |
6513 | } |
6514 | ||
164e712d | 6515 | /* Worker for lang_gc_sections_1. */ |
252b5132 RH |
6516 | |
6517 | static void | |
1579bae1 AM |
6518 | gc_section_callback (lang_wild_statement_type *ptr, |
6519 | struct wildcard_list *sec ATTRIBUTE_UNUSED, | |
6520 | asection *section, | |
b9c361e0 | 6521 | struct flag_info *sflag_info ATTRIBUTE_UNUSED, |
1579bae1 AM |
6522 | lang_input_statement_type *file ATTRIBUTE_UNUSED, |
6523 | void *data ATTRIBUTE_UNUSED) | |
252b5132 | 6524 | { |
164e712d AM |
6525 | /* If the wild pattern was marked KEEP, the member sections |
6526 | should be as well. */ | |
4dec4d4e RH |
6527 | if (ptr->keep_sections) |
6528 | section->flags |= SEC_KEEP; | |
252b5132 RH |
6529 | } |
6530 | ||
252b5132 RH |
6531 | /* Iterate over sections marking them against GC. */ |
6532 | ||
6533 | static void | |
1579bae1 | 6534 | lang_gc_sections_1 (lang_statement_union_type *s) |
252b5132 | 6535 | { |
1579bae1 | 6536 | for (; s != NULL; s = s->header.next) |
252b5132 RH |
6537 | { |
6538 | switch (s->header.type) | |
6539 | { | |
6540 | case lang_wild_statement_enum: | |
164e712d | 6541 | walk_wild (&s->wild_statement, gc_section_callback, NULL); |
abc6ab0a | 6542 | break; |
252b5132 RH |
6543 | case lang_constructors_statement_enum: |
6544 | lang_gc_sections_1 (constructor_list.head); | |
6545 | break; | |
6546 | case lang_output_section_statement_enum: | |
6547 | lang_gc_sections_1 (s->output_section_statement.children.head); | |
6548 | break; | |
6549 | case lang_group_statement_enum: | |
6550 | lang_gc_sections_1 (s->group_statement.children.head); | |
6551 | break; | |
6552 | default: | |
6553 | break; | |
6554 | } | |
6555 | } | |
6556 | } | |
6557 | ||
6558 | static void | |
1579bae1 | 6559 | lang_gc_sections (void) |
252b5132 | 6560 | { |
252b5132 | 6561 | /* Keep all sections so marked in the link script. */ |
252b5132 RH |
6562 | lang_gc_sections_1 (statement_list.head); |
6563 | ||
9ca57817 AM |
6564 | /* SEC_EXCLUDE is ignored when doing a relocatable link, except in |
6565 | the special case of debug info. (See bfd/stabs.c) | |
6566 | Twiddle the flag here, to simplify later linker code. */ | |
0e1862bb | 6567 | if (bfd_link_relocatable (&link_info)) |
9ca57817 AM |
6568 | { |
6569 | LANG_FOR_EACH_INPUT_STATEMENT (f) | |
6570 | { | |
6571 | asection *sec; | |
9e2278f5 | 6572 | #ifdef ENABLE_PLUGINS |
66be1055 | 6573 | if (f->flags.claimed) |
9e2278f5 AM |
6574 | continue; |
6575 | #endif | |
9ca57817 AM |
6576 | for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next) |
6577 | if ((sec->flags & SEC_DEBUGGING) == 0) | |
6578 | sec->flags &= ~SEC_EXCLUDE; | |
6579 | } | |
6580 | } | |
6581 | ||
57316bff | 6582 | if (link_info.gc_sections) |
f13a99db | 6583 | bfd_gc_sections (link_info.output_bfd, &link_info); |
252b5132 RH |
6584 | } |
6585 | ||
b10a8ae0 L |
6586 | /* Worker for lang_find_relro_sections_1. */ |
6587 | ||
6588 | static void | |
6589 | find_relro_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED, | |
6590 | struct wildcard_list *sec ATTRIBUTE_UNUSED, | |
6591 | asection *section, | |
b9c361e0 | 6592 | struct flag_info *sflag_info ATTRIBUTE_UNUSED, |
b10a8ae0 L |
6593 | lang_input_statement_type *file ATTRIBUTE_UNUSED, |
6594 | void *data) | |
6595 | { | |
6596 | /* Discarded, excluded and ignored sections effectively have zero | |
6597 | size. */ | |
6598 | if (section->output_section != NULL | |
f13a99db | 6599 | && section->output_section->owner == link_info.output_bfd |
b10a8ae0 L |
6600 | && (section->output_section->flags & SEC_EXCLUDE) == 0 |
6601 | && !IGNORE_SECTION (section) | |
6602 | && section->size != 0) | |
6603 | { | |
6604 | bfd_boolean *has_relro_section = (bfd_boolean *) data; | |
6605 | *has_relro_section = TRUE; | |
6606 | } | |
6607 | } | |
6608 | ||
6609 | /* Iterate over sections for relro sections. */ | |
6610 | ||
6611 | static void | |
6612 | lang_find_relro_sections_1 (lang_statement_union_type *s, | |
6613 | bfd_boolean *has_relro_section) | |
6614 | { | |
6615 | if (*has_relro_section) | |
6616 | return; | |
6617 | ||
6618 | for (; s != NULL; s = s->header.next) | |
6619 | { | |
6620 | if (s == expld.dataseg.relro_end_stat) | |
6621 | break; | |
6622 | ||
6623 | switch (s->header.type) | |
6624 | { | |
6625 | case lang_wild_statement_enum: | |
6626 | walk_wild (&s->wild_statement, | |
6627 | find_relro_section_callback, | |
6628 | has_relro_section); | |
6629 | break; | |
6630 | case lang_constructors_statement_enum: | |
6631 | lang_find_relro_sections_1 (constructor_list.head, | |
6632 | has_relro_section); | |
6633 | break; | |
6634 | case lang_output_section_statement_enum: | |
6635 | lang_find_relro_sections_1 (s->output_section_statement.children.head, | |
6636 | has_relro_section); | |
6637 | break; | |
6638 | case lang_group_statement_enum: | |
6639 | lang_find_relro_sections_1 (s->group_statement.children.head, | |
6640 | has_relro_section); | |
6641 | break; | |
6642 | default: | |
6643 | break; | |
6644 | } | |
6645 | } | |
6646 | } | |
6647 | ||
6648 | static void | |
6649 | lang_find_relro_sections (void) | |
6650 | { | |
6651 | bfd_boolean has_relro_section = FALSE; | |
6652 | ||
6653 | /* Check all sections in the link script. */ | |
6654 | ||
6655 | lang_find_relro_sections_1 (expld.dataseg.relro_start_stat, | |
6656 | &has_relro_section); | |
6657 | ||
6658 | if (!has_relro_section) | |
6659 | link_info.relro = FALSE; | |
6660 | } | |
6661 | ||
fbbc3759 L |
6662 | /* Relax all sections until bfd_relax_section gives up. */ |
6663 | ||
eaeb0a9d AM |
6664 | void |
6665 | lang_relax_sections (bfd_boolean need_layout) | |
fbbc3759 | 6666 | { |
28d5f677 | 6667 | if (RELAXATION_ENABLED) |
fbbc3759 | 6668 | { |
eaeb0a9d AM |
6669 | /* We may need more than one relaxation pass. */ |
6670 | int i = link_info.relax_pass; | |
fbbc3759 | 6671 | |
eaeb0a9d AM |
6672 | /* The backend can use it to determine the current pass. */ |
6673 | link_info.relax_pass = 0; | |
fbbc3759 | 6674 | |
eaeb0a9d AM |
6675 | while (i--) |
6676 | { | |
6677 | /* Keep relaxing until bfd_relax_section gives up. */ | |
6678 | bfd_boolean relax_again; | |
fbbc3759 | 6679 | |
eaeb0a9d AM |
6680 | link_info.relax_trip = -1; |
6681 | do | |
6682 | { | |
6683 | link_info.relax_trip++; | |
6684 | ||
6685 | /* Note: pe-dll.c does something like this also. If you find | |
6686 | you need to change this code, you probably need to change | |
6687 | pe-dll.c also. DJ */ | |
6688 | ||
6689 | /* Do all the assignments with our current guesses as to | |
6690 | section sizes. */ | |
2f65ac72 | 6691 | lang_do_assignments (lang_assigning_phase_enum); |
eaeb0a9d AM |
6692 | |
6693 | /* We must do this after lang_do_assignments, because it uses | |
6694 | size. */ | |
6695 | lang_reset_memory_regions (); | |
6696 | ||
6697 | /* Perform another relax pass - this time we know where the | |
6698 | globals are, so can make a better guess. */ | |
6699 | relax_again = FALSE; | |
6700 | lang_size_sections (&relax_again, FALSE); | |
6701 | } | |
6702 | while (relax_again); | |
6703 | ||
6704 | link_info.relax_pass++; | |
6705 | } | |
6706 | need_layout = TRUE; | |
6707 | } | |
fbbc3759 | 6708 | |
eaeb0a9d AM |
6709 | if (need_layout) |
6710 | { | |
6711 | /* Final extra sizing to report errors. */ | |
2f65ac72 | 6712 | lang_do_assignments (lang_assigning_phase_enum); |
eaeb0a9d AM |
6713 | lang_reset_memory_regions (); |
6714 | lang_size_sections (NULL, TRUE); | |
fbbc3759 | 6715 | } |
fbbc3759 L |
6716 | } |
6717 | ||
8543fde5 DK |
6718 | #ifdef ENABLE_PLUGINS |
6719 | /* Find the insert point for the plugin's replacement files. We | |
6720 | place them after the first claimed real object file, or if the | |
6721 | first claimed object is an archive member, after the last real | |
6722 | object file immediately preceding the archive. In the event | |
6723 | no objects have been claimed at all, we return the first dummy | |
6724 | object file on the list as the insert point; that works, but | |
6725 | the callee must be careful when relinking the file_chain as it | |
6726 | is not actually on that chain, only the statement_list and the | |
6727 | input_file list; in that case, the replacement files must be | |
6728 | inserted at the head of the file_chain. */ | |
6729 | ||
6730 | static lang_input_statement_type * | |
6731 | find_replacements_insert_point (void) | |
6732 | { | |
6733 | lang_input_statement_type *claim1, *lastobject; | |
6734 | lastobject = &input_file_chain.head->input_statement; | |
6735 | for (claim1 = &file_chain.head->input_statement; | |
6736 | claim1 != NULL; | |
6737 | claim1 = &claim1->next->input_statement) | |
6738 | { | |
66be1055 AM |
6739 | if (claim1->flags.claimed) |
6740 | return claim1->flags.claim_archive ? lastobject : claim1; | |
8543fde5 | 6741 | /* Update lastobject if this is a real object file. */ |
0aa7f586 | 6742 | if (claim1->the_bfd != NULL && claim1->the_bfd->my_archive == NULL) |
8543fde5 DK |
6743 | lastobject = claim1; |
6744 | } | |
6745 | /* No files were claimed by the plugin. Choose the last object | |
6746 | file found on the list (maybe the first, dummy entry) as the | |
6747 | insert point. */ | |
6748 | return lastobject; | |
6749 | } | |
9e2278f5 AM |
6750 | |
6751 | /* Insert SRCLIST into DESTLIST after given element by chaining | |
6752 | on FIELD as the next-pointer. (Counterintuitively does not need | |
6753 | a pointer to the actual after-node itself, just its chain field.) */ | |
6754 | ||
6755 | static void | |
6756 | lang_list_insert_after (lang_statement_list_type *destlist, | |
6757 | lang_statement_list_type *srclist, | |
6758 | lang_statement_union_type **field) | |
6759 | { | |
6760 | *(srclist->tail) = *field; | |
6761 | *field = srclist->head; | |
6762 | if (destlist->tail == field) | |
6763 | destlist->tail = srclist->tail; | |
6764 | } | |
6765 | ||
6766 | /* Detach new nodes added to DESTLIST since the time ORIGLIST | |
6767 | was taken as a copy of it and leave them in ORIGLIST. */ | |
6768 | ||
6769 | static void | |
6770 | lang_list_remove_tail (lang_statement_list_type *destlist, | |
6771 | lang_statement_list_type *origlist) | |
6772 | { | |
6773 | union lang_statement_union **savetail; | |
6774 | /* Check that ORIGLIST really is an earlier state of DESTLIST. */ | |
6775 | ASSERT (origlist->head == destlist->head); | |
6776 | savetail = origlist->tail; | |
6777 | origlist->head = *(savetail); | |
6778 | origlist->tail = destlist->tail; | |
6779 | destlist->tail = savetail; | |
6780 | *savetail = NULL; | |
6781 | } | |
8543fde5 DK |
6782 | #endif /* ENABLE_PLUGINS */ |
6783 | ||
4153b6db NC |
6784 | /* Add NAME to the list of garbage collection entry points. */ |
6785 | ||
6786 | void | |
0aa7f586 | 6787 | lang_add_gc_name (const char *name) |
4153b6db NC |
6788 | { |
6789 | struct bfd_sym_chain *sym; | |
6790 | ||
6791 | if (name == NULL) | |
6792 | return; | |
6793 | ||
6794 | sym = (struct bfd_sym_chain *) stat_alloc (sizeof (*sym)); | |
6795 | ||
6796 | sym->next = link_info.gc_sym_list; | |
6797 | sym->name = name; | |
6798 | link_info.gc_sym_list = sym; | |
6799 | } | |
6800 | ||
fbf05aa7 L |
6801 | /* Check relocations. */ |
6802 | ||
6803 | static void | |
6804 | lang_check_relocs (void) | |
6805 | { | |
4f3b23b3 | 6806 | if (link_info.check_relocs_after_open_input) |
fbf05aa7 L |
6807 | { |
6808 | bfd *abfd; | |
6809 | ||
6810 | for (abfd = link_info.input_bfds; | |
6811 | abfd != (bfd *) NULL; abfd = abfd->link.next) | |
4f3b23b3 | 6812 | if (!bfd_link_check_relocs (abfd, &link_info)) |
fbf05aa7 | 6813 | { |
4f3b23b3 | 6814 | /* No object output, fail return. */ |
fbf05aa7 | 6815 | config.make_executable = FALSE; |
4f3b23b3 NC |
6816 | /* Note: we do not abort the loop, but rather |
6817 | continue the scan in case there are other | |
6818 | bad relocations to report. */ | |
fbf05aa7 L |
6819 | } |
6820 | } | |
6821 | } | |
6822 | ||
252b5132 | 6823 | void |
1579bae1 | 6824 | lang_process (void) |
252b5132 | 6825 | { |
55255dae | 6826 | /* Finalize dynamic list. */ |
40b36307 L |
6827 | if (link_info.dynamic_list) |
6828 | lang_finalize_version_expr_head (&link_info.dynamic_list->head); | |
55255dae | 6829 | |
252b5132 RH |
6830 | current_target = default_target; |
6831 | ||
08da4cac KH |
6832 | /* Open the output file. */ |
6833 | lang_for_each_statement (ldlang_open_output); | |
e5caa5e0 | 6834 | init_opb (); |
252b5132 RH |
6835 | |
6836 | ldemul_create_output_section_statements (); | |
6837 | ||
08da4cac | 6838 | /* Add to the hash table all undefineds on the command line. */ |
252b5132 RH |
6839 | lang_place_undefineds (); |
6840 | ||
082b7297 L |
6841 | if (!bfd_section_already_linked_table_init ()) |
6842 | einfo (_("%P%F: Failed to create hash table\n")); | |
9503fd87 | 6843 | |
08da4cac | 6844 | /* Create a bfd for each input file. */ |
252b5132 | 6845 | current_target = default_target; |
486329aa | 6846 | open_input_bfds (statement_list.head, OPEN_BFD_NORMAL); |
252b5132 | 6847 | |
5d3236ee | 6848 | #ifdef ENABLE_PLUGINS |
716db898 | 6849 | if (link_info.lto_plugin_active) |
f84854b6 | 6850 | { |
8543fde5 DK |
6851 | lang_statement_list_type added; |
6852 | lang_statement_list_type files, inputfiles; | |
9e2278f5 | 6853 | |
f84854b6 L |
6854 | /* Now all files are read, let the plugin(s) decide if there |
6855 | are any more to be added to the link before we call the | |
8543fde5 DK |
6856 | emulation's after_open hook. We create a private list of |
6857 | input statements for this purpose, which we will eventually | |
6858 | insert into the global statment list after the first claimed | |
6859 | file. */ | |
6860 | added = *stat_ptr; | |
6861 | /* We need to manipulate all three chains in synchrony. */ | |
6862 | files = file_chain; | |
6863 | inputfiles = input_file_chain; | |
f84854b6 L |
6864 | if (plugin_call_all_symbols_read ()) |
6865 | einfo (_("%P%F: %s: plugin reported error after all symbols read\n"), | |
6866 | plugin_error_plugin ()); | |
8543fde5 | 6867 | /* Open any newly added files, updating the file chains. */ |
cdaa438c | 6868 | open_input_bfds (*added.tail, OPEN_BFD_NORMAL); |
8543fde5 DK |
6869 | /* Restore the global list pointer now they have all been added. */ |
6870 | lang_list_remove_tail (stat_ptr, &added); | |
6871 | /* And detach the fresh ends of the file lists. */ | |
6872 | lang_list_remove_tail (&file_chain, &files); | |
6873 | lang_list_remove_tail (&input_file_chain, &inputfiles); | |
6874 | /* Were any new files added? */ | |
6875 | if (added.head != NULL) | |
6876 | { | |
6877 | /* If so, we will insert them into the statement list immediately | |
6878 | after the first input file that was claimed by the plugin. */ | |
9e2278f5 | 6879 | plugin_insert = find_replacements_insert_point (); |
8543fde5 DK |
6880 | /* If a plugin adds input files without having claimed any, we |
6881 | don't really have a good idea where to place them. Just putting | |
6882 | them at the start or end of the list is liable to leave them | |
6883 | outside the crtbegin...crtend range. */ | |
9e2278f5 AM |
6884 | ASSERT (plugin_insert != NULL); |
6885 | /* Splice the new statement list into the old one. */ | |
6886 | lang_list_insert_after (stat_ptr, &added, | |
6887 | &plugin_insert->header.next); | |
8543fde5 DK |
6888 | /* Likewise for the file chains. */ |
6889 | lang_list_insert_after (&input_file_chain, &inputfiles, | |
9e2278f5 | 6890 | &plugin_insert->next_real_file); |
8543fde5 DK |
6891 | /* We must be careful when relinking file_chain; we may need to |
6892 | insert the new files at the head of the list if the insert | |
6893 | point chosen is the dummy first input file. */ | |
9e2278f5 AM |
6894 | if (plugin_insert->filename) |
6895 | lang_list_insert_after (&file_chain, &files, &plugin_insert->next); | |
8543fde5 DK |
6896 | else |
6897 | lang_list_insert_after (&file_chain, &files, &file_chain.head); | |
9e2278f5 AM |
6898 | |
6899 | /* Rescan archives in case new undefined symbols have appeared. */ | |
6900 | open_input_bfds (statement_list.head, OPEN_BFD_RESCAN); | |
8543fde5 | 6901 | } |
f84854b6 | 6902 | } |
5d3236ee DK |
6903 | #endif /* ENABLE_PLUGINS */ |
6904 | ||
0aa7f586 AM |
6905 | /* Make sure that nobody has tried to add a symbol to this list |
6906 | before now. */ | |
4153b6db NC |
6907 | ASSERT (link_info.gc_sym_list == NULL); |
6908 | ||
e3e942e9 | 6909 | link_info.gc_sym_list = &entry_symbol; |
41f46ed9 | 6910 | |
e3e942e9 | 6911 | if (entry_symbol.name == NULL) |
41f46ed9 SKS |
6912 | { |
6913 | link_info.gc_sym_list = ldlang_undef_chain_list_head; | |
6914 | ||
6915 | /* entry_symbol is normally initialied by a ENTRY definition in the | |
6916 | linker script or the -e command line option. But if neither of | |
6917 | these have been used, the target specific backend may still have | |
4153b6db | 6918 | provided an entry symbol via a call to lang_default_entry(). |
41f46ed9 SKS |
6919 | Unfortunately this value will not be processed until lang_end() |
6920 | is called, long after this function has finished. So detect this | |
6921 | case here and add the target's entry symbol to the list of starting | |
6922 | points for garbage collection resolution. */ | |
4153b6db | 6923 | lang_add_gc_name (entry_symbol_default); |
41f46ed9 SKS |
6924 | } |
6925 | ||
4153b6db NC |
6926 | lang_add_gc_name (link_info.init_function); |
6927 | lang_add_gc_name (link_info.fini_function); | |
e3e942e9 | 6928 | |
252b5132 | 6929 | ldemul_after_open (); |
16e4ecc0 AM |
6930 | if (config.map_file != NULL) |
6931 | lang_print_asneeded (); | |
252b5132 | 6932 | |
082b7297 | 6933 | bfd_section_already_linked_table_free (); |
9503fd87 | 6934 | |
252b5132 RH |
6935 | /* Make sure that we're not mixing architectures. We call this |
6936 | after all the input files have been opened, but before we do any | |
6937 | other processing, so that any operations merge_private_bfd_data | |
6938 | does on the output file will be known during the rest of the | |
6939 | link. */ | |
6940 | lang_check (); | |
6941 | ||
6942 | /* Handle .exports instead of a version script if we're told to do so. */ | |
6943 | if (command_line.version_exports_section) | |
6944 | lang_do_version_exports_section (); | |
6945 | ||
6946 | /* Build all sets based on the information gathered from the input | |
6947 | files. */ | |
6948 | ldctor_build_sets (); | |
6949 | ||
2aa9aad9 NC |
6950 | /* PR 13683: We must rerun the assignments prior to running garbage |
6951 | collection in order to make sure that all symbol aliases are resolved. */ | |
6952 | lang_do_assignments (lang_mark_phase_enum); | |
cc9ad334 SKS |
6953 | |
6954 | lang_do_memory_regions(); | |
2aa9aad9 NC |
6955 | expld.phase = lang_first_phase_enum; |
6956 | ||
08da4cac | 6957 | /* Size up the common data. */ |
252b5132 RH |
6958 | lang_common (); |
6959 | ||
c4621b33 AM |
6960 | /* Remove unreferenced sections if asked to. */ |
6961 | lang_gc_sections (); | |
6962 | ||
fbf05aa7 L |
6963 | /* Check relocations. */ |
6964 | lang_check_relocs (); | |
6965 | ||
bcaa7b3e L |
6966 | /* Update wild statements. */ |
6967 | update_wild_statements (statement_list.head); | |
6968 | ||
252b5132 | 6969 | /* Run through the contours of the script and attach input sections |
08da4cac | 6970 | to the correct output sections. */ |
e759c116 | 6971 | lang_statement_iteration++; |
1579bae1 | 6972 | map_input_to_output_sections (statement_list.head, NULL, NULL); |
252b5132 | 6973 | |
53d25da6 AM |
6974 | process_insert_statements (); |
6975 | ||
08da4cac | 6976 | /* Find any sections not attached explicitly and handle them. */ |
252b5132 RH |
6977 | lang_place_orphans (); |
6978 | ||
0e1862bb | 6979 | if (!bfd_link_relocatable (&link_info)) |
862120bd | 6980 | { |
57ceae94 AM |
6981 | asection *found; |
6982 | ||
6983 | /* Merge SEC_MERGE sections. This has to be done after GC of | |
6984 | sections, so that GCed sections are not merged, but before | |
6985 | assigning dynamic symbols, since removing whole input sections | |
6986 | is hard then. */ | |
f13a99db | 6987 | bfd_merge_sections (link_info.output_bfd, &link_info); |
57ceae94 | 6988 | |
862120bd | 6989 | /* Look for a text section and set the readonly attribute in it. */ |
f13a99db | 6990 | found = bfd_get_section_by_name (link_info.output_bfd, ".text"); |
862120bd | 6991 | |
1579bae1 | 6992 | if (found != NULL) |
862120bd AM |
6993 | { |
6994 | if (config.text_read_only) | |
6995 | found->flags |= SEC_READONLY; | |
6996 | else | |
6997 | found->flags &= ~SEC_READONLY; | |
6998 | } | |
6999 | } | |
7000 | ||
7001 | /* Do anything special before sizing sections. This is where ELF | |
7002 | and other back-ends size dynamic sections. */ | |
252b5132 RH |
7003 | ldemul_before_allocation (); |
7004 | ||
7005 | /* We must record the program headers before we try to fix the | |
7006 | section positions, since they will affect SIZEOF_HEADERS. */ | |
7007 | lang_record_phdrs (); | |
7008 | ||
b10a8ae0 | 7009 | /* Check relro sections. */ |
0e1862bb | 7010 | if (link_info.relro && !bfd_link_relocatable (&link_info)) |
b10a8ae0 L |
7011 | lang_find_relro_sections (); |
7012 | ||
b3327aad | 7013 | /* Size up the sections. */ |
0aa7f586 | 7014 | lang_size_sections (NULL, !RELAXATION_ENABLED); |
b3327aad | 7015 | |
252b5132 | 7016 | /* See if anything special should be done now we know how big |
eaeb0a9d | 7017 | everything is. This is where relaxation is done. */ |
252b5132 RH |
7018 | ldemul_after_allocation (); |
7019 | ||
7020 | /* Fix any .startof. or .sizeof. symbols. */ | |
7021 | lang_set_startof (); | |
7022 | ||
08da4cac KH |
7023 | /* Do all the assignments, now that we know the final resting places |
7024 | of all the symbols. */ | |
2f65ac72 | 7025 | lang_do_assignments (lang_final_phase_enum); |
252b5132 | 7026 | |
8ded5a0f AM |
7027 | ldemul_finish (); |
7028 | ||
975f8a9e AM |
7029 | /* Convert absolute symbols to section relative. */ |
7030 | ldexp_finalize_syms (); | |
7031 | ||
252b5132 | 7032 | /* Make sure that the section addresses make sense. */ |
662ef24b | 7033 | if (command_line.check_section_addresses) |
252b5132 | 7034 | lang_check_section_addresses (); |
5f992e62 | 7035 | |
0a618243 AB |
7036 | /* Check any required symbols are known. */ |
7037 | ldlang_check_require_defined_symbols (); | |
7038 | ||
750877ba | 7039 | lang_end (); |
252b5132 RH |
7040 | } |
7041 | ||
7042 | /* EXPORTED TO YACC */ | |
7043 | ||
7044 | void | |
1579bae1 AM |
7045 | lang_add_wild (struct wildcard_spec *filespec, |
7046 | struct wildcard_list *section_list, | |
7047 | bfd_boolean keep_sections) | |
252b5132 | 7048 | { |
b6bf44ba | 7049 | struct wildcard_list *curr, *next; |
d3ce72d0 | 7050 | lang_wild_statement_type *new_stmt; |
b6bf44ba AM |
7051 | |
7052 | /* Reverse the list as the parser puts it back to front. */ | |
7053 | for (curr = section_list, section_list = NULL; | |
7054 | curr != NULL; | |
7055 | section_list = curr, curr = next) | |
7056 | { | |
7057 | if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0) | |
b34976b6 | 7058 | placed_commons = TRUE; |
252b5132 | 7059 | |
b6bf44ba AM |
7060 | next = curr->next; |
7061 | curr->next = section_list; | |
7062 | } | |
7063 | ||
7064 | if (filespec != NULL && filespec->name != NULL) | |
252b5132 | 7065 | { |
b6bf44ba AM |
7066 | if (strcmp (filespec->name, "*") == 0) |
7067 | filespec->name = NULL; | |
0aa7f586 | 7068 | else if (!wildcardp (filespec->name)) |
b34976b6 | 7069 | lang_has_input_file = TRUE; |
252b5132 | 7070 | } |
b6bf44ba | 7071 | |
d3ce72d0 NC |
7072 | new_stmt = new_stat (lang_wild_statement, stat_ptr); |
7073 | new_stmt->filename = NULL; | |
7074 | new_stmt->filenames_sorted = FALSE; | |
ae17ab41 | 7075 | new_stmt->section_flag_list = NULL; |
b6bf44ba | 7076 | if (filespec != NULL) |
252b5132 | 7077 | { |
d3ce72d0 NC |
7078 | new_stmt->filename = filespec->name; |
7079 | new_stmt->filenames_sorted = filespec->sorted == by_name; | |
ae17ab41 | 7080 | new_stmt->section_flag_list = filespec->section_flag_list; |
252b5132 | 7081 | } |
d3ce72d0 NC |
7082 | new_stmt->section_list = section_list; |
7083 | new_stmt->keep_sections = keep_sections; | |
7084 | lang_list_init (&new_stmt->children); | |
7085 | analyze_walk_wild_section_handler (new_stmt); | |
252b5132 RH |
7086 | } |
7087 | ||
7088 | void | |
ba916c8a MM |
7089 | lang_section_start (const char *name, etree_type *address, |
7090 | const segment_type *segment) | |
252b5132 | 7091 | { |
d1778b88 | 7092 | lang_address_statement_type *ad; |
252b5132 | 7093 | |
d1778b88 | 7094 | ad = new_stat (lang_address_statement, stat_ptr); |
252b5132 RH |
7095 | ad->section_name = name; |
7096 | ad->address = address; | |
ba916c8a | 7097 | ad->segment = segment; |
252b5132 RH |
7098 | } |
7099 | ||
7100 | /* Set the start symbol to NAME. CMDLINE is nonzero if this is called | |
7101 | because of a -e argument on the command line, or zero if this is | |
7102 | called by ENTRY in a linker script. Command line arguments take | |
7103 | precedence. */ | |
7104 | ||
7105 | void | |
1579bae1 | 7106 | lang_add_entry (const char *name, bfd_boolean cmdline) |
252b5132 | 7107 | { |
e3e942e9 | 7108 | if (entry_symbol.name == NULL |
252b5132 | 7109 | || cmdline |
0aa7f586 | 7110 | || !entry_from_cmdline) |
252b5132 | 7111 | { |
e3e942e9 | 7112 | entry_symbol.name = name; |
252b5132 RH |
7113 | entry_from_cmdline = cmdline; |
7114 | } | |
7115 | } | |
7116 | ||
a359509e ZW |
7117 | /* Set the default start symbol to NAME. .em files should use this, |
7118 | not lang_add_entry, to override the use of "start" if neither the | |
7119 | linker script nor the command line specifies an entry point. NAME | |
7120 | must be permanently allocated. */ | |
7121 | void | |
7122 | lang_default_entry (const char *name) | |
7123 | { | |
7124 | entry_symbol_default = name; | |
7125 | } | |
7126 | ||
252b5132 | 7127 | void |
1579bae1 | 7128 | lang_add_target (const char *name) |
252b5132 | 7129 | { |
d3ce72d0 | 7130 | lang_target_statement_type *new_stmt; |
252b5132 | 7131 | |
d3ce72d0 NC |
7132 | new_stmt = new_stat (lang_target_statement, stat_ptr); |
7133 | new_stmt->target = name; | |
252b5132 RH |
7134 | } |
7135 | ||
7136 | void | |
1579bae1 | 7137 | lang_add_map (const char *name) |
252b5132 RH |
7138 | { |
7139 | while (*name) | |
7140 | { | |
7141 | switch (*name) | |
7142 | { | |
08da4cac | 7143 | case 'F': |
b34976b6 | 7144 | map_option_f = TRUE; |
252b5132 RH |
7145 | break; |
7146 | } | |
7147 | name++; | |
7148 | } | |
7149 | } | |
7150 | ||
7151 | void | |
1579bae1 | 7152 | lang_add_fill (fill_type *fill) |
252b5132 | 7153 | { |
d3ce72d0 | 7154 | lang_fill_statement_type *new_stmt; |
252b5132 | 7155 | |
d3ce72d0 NC |
7156 | new_stmt = new_stat (lang_fill_statement, stat_ptr); |
7157 | new_stmt->fill = fill; | |
252b5132 RH |
7158 | } |
7159 | ||
7160 | void | |
1579bae1 | 7161 | lang_add_data (int type, union etree_union *exp) |
252b5132 | 7162 | { |
d3ce72d0 | 7163 | lang_data_statement_type *new_stmt; |
252b5132 | 7164 | |
d3ce72d0 NC |
7165 | new_stmt = new_stat (lang_data_statement, stat_ptr); |
7166 | new_stmt->exp = exp; | |
7167 | new_stmt->type = type; | |
252b5132 RH |
7168 | } |
7169 | ||
7170 | /* Create a new reloc statement. RELOC is the BFD relocation type to | |
7171 | generate. HOWTO is the corresponding howto structure (we could | |
7172 | look this up, but the caller has already done so). SECTION is the | |
7173 | section to generate a reloc against, or NAME is the name of the | |
7174 | symbol to generate a reloc against. Exactly one of SECTION and | |
7175 | NAME must be NULL. ADDEND is an expression for the addend. */ | |
7176 | ||
7177 | void | |
1579bae1 AM |
7178 | lang_add_reloc (bfd_reloc_code_real_type reloc, |
7179 | reloc_howto_type *howto, | |
7180 | asection *section, | |
7181 | const char *name, | |
7182 | union etree_union *addend) | |
252b5132 RH |
7183 | { |
7184 | lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr); | |
5f992e62 | 7185 | |
252b5132 RH |
7186 | p->reloc = reloc; |
7187 | p->howto = howto; | |
7188 | p->section = section; | |
7189 | p->name = name; | |
7190 | p->addend_exp = addend; | |
7191 | ||
7192 | p->addend_value = 0; | |
7193 | p->output_section = NULL; | |
7fabd029 | 7194 | p->output_offset = 0; |
252b5132 RH |
7195 | } |
7196 | ||
7197 | lang_assignment_statement_type * | |
1579bae1 | 7198 | lang_add_assignment (etree_type *exp) |
252b5132 | 7199 | { |
d3ce72d0 | 7200 | lang_assignment_statement_type *new_stmt; |
252b5132 | 7201 | |
d3ce72d0 NC |
7202 | new_stmt = new_stat (lang_assignment_statement, stat_ptr); |
7203 | new_stmt->exp = exp; | |
7204 | return new_stmt; | |
252b5132 RH |
7205 | } |
7206 | ||
7207 | void | |
1579bae1 | 7208 | lang_add_attribute (enum statement_enum attribute) |
252b5132 | 7209 | { |
bd4d42c1 | 7210 | new_statement (attribute, sizeof (lang_statement_header_type), stat_ptr); |
252b5132 RH |
7211 | } |
7212 | ||
7213 | void | |
1579bae1 | 7214 | lang_startup (const char *name) |
252b5132 | 7215 | { |
1e915804 | 7216 | if (first_file->filename != NULL) |
252b5132 | 7217 | { |
4520f868 | 7218 | einfo (_("%P%F: multiple STARTUP files\n")); |
252b5132 RH |
7219 | } |
7220 | first_file->filename = name; | |
7221 | first_file->local_sym_name = name; | |
66be1055 | 7222 | first_file->flags.real = TRUE; |
252b5132 RH |
7223 | } |
7224 | ||
7225 | void | |
1579bae1 | 7226 | lang_float (bfd_boolean maybe) |
252b5132 RH |
7227 | { |
7228 | lang_float_flag = maybe; | |
7229 | } | |
7230 | ||
ee3cc2e2 RS |
7231 | |
7232 | /* Work out the load- and run-time regions from a script statement, and | |
7233 | store them in *LMA_REGION and *REGION respectively. | |
7234 | ||
a747ee4d NC |
7235 | MEMSPEC is the name of the run-time region, or the value of |
7236 | DEFAULT_MEMORY_REGION if the statement didn't specify one. | |
7237 | LMA_MEMSPEC is the name of the load-time region, or null if the | |
7238 | statement didn't specify one.HAVE_LMA_P is TRUE if the statement | |
7239 | had an explicit load address. | |
ee3cc2e2 RS |
7240 | |
7241 | It is an error to specify both a load region and a load address. */ | |
7242 | ||
7243 | static void | |
6bdafbeb NC |
7244 | lang_get_regions (lang_memory_region_type **region, |
7245 | lang_memory_region_type **lma_region, | |
1579bae1 AM |
7246 | const char *memspec, |
7247 | const char *lma_memspec, | |
6bdafbeb NC |
7248 | bfd_boolean have_lma, |
7249 | bfd_boolean have_vma) | |
ee3cc2e2 | 7250 | { |
a747ee4d | 7251 | *lma_region = lang_memory_region_lookup (lma_memspec, FALSE); |
ee3cc2e2 | 7252 | |
6feb9908 AM |
7253 | /* If no runtime region or VMA has been specified, but the load region |
7254 | has been specified, then use the load region for the runtime region | |
7255 | as well. */ | |
6bdafbeb | 7256 | if (lma_memspec != NULL |
0aa7f586 | 7257 | && !have_vma |
6bdafbeb | 7258 | && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0) |
ee3cc2e2 RS |
7259 | *region = *lma_region; |
7260 | else | |
a747ee4d | 7261 | *region = lang_memory_region_lookup (memspec, FALSE); |
ee3cc2e2 | 7262 | |
6bdafbeb | 7263 | if (have_lma && lma_memspec != 0) |
dab69f68 AM |
7264 | einfo (_("%X%P:%S: section has both a load address and a load region\n"), |
7265 | NULL); | |
ee3cc2e2 RS |
7266 | } |
7267 | ||
252b5132 | 7268 | void |
6bdafbeb NC |
7269 | lang_leave_output_section_statement (fill_type *fill, const char *memspec, |
7270 | lang_output_section_phdr_list *phdrs, | |
7271 | const char *lma_memspec) | |
252b5132 | 7272 | { |
ee3cc2e2 RS |
7273 | lang_get_regions (¤t_section->region, |
7274 | ¤t_section->lma_region, | |
7275 | memspec, lma_memspec, | |
6bdafbeb NC |
7276 | current_section->load_base != NULL, |
7277 | current_section->addr_tree != NULL); | |
113e6845 | 7278 | |
83e7bd17 | 7279 | /* If this section has no load region or base, but uses the same |
113e6845 NS |
7280 | region as the previous section, then propagate the previous |
7281 | section's load region. */ | |
7282 | ||
83e7bd17 AM |
7283 | if (current_section->lma_region == NULL |
7284 | && current_section->load_base == NULL | |
7285 | && current_section->addr_tree == NULL | |
113e6845 NS |
7286 | && current_section->region == current_section->prev->region) |
7287 | current_section->lma_region = current_section->prev->lma_region; | |
1e0061d2 | 7288 | |
252b5132 | 7289 | current_section->fill = fill; |
252b5132 | 7290 | current_section->phdrs = phdrs; |
bde18da4 | 7291 | pop_stat_ptr (); |
252b5132 RH |
7292 | } |
7293 | ||
252b5132 | 7294 | void |
1579bae1 AM |
7295 | lang_statement_append (lang_statement_list_type *list, |
7296 | lang_statement_union_type *element, | |
7297 | lang_statement_union_type **field) | |
252b5132 RH |
7298 | { |
7299 | *(list->tail) = element; | |
7300 | list->tail = field; | |
7301 | } | |
7302 | ||
7303 | /* Set the output format type. -oformat overrides scripts. */ | |
7304 | ||
7305 | void | |
1579bae1 AM |
7306 | lang_add_output_format (const char *format, |
7307 | const char *big, | |
7308 | const char *little, | |
7309 | int from_script) | |
252b5132 RH |
7310 | { |
7311 | if (output_target == NULL || !from_script) | |
7312 | { | |
7313 | if (command_line.endian == ENDIAN_BIG | |
7314 | && big != NULL) | |
7315 | format = big; | |
7316 | else if (command_line.endian == ENDIAN_LITTLE | |
7317 | && little != NULL) | |
7318 | format = little; | |
7319 | ||
7320 | output_target = format; | |
7321 | } | |
7322 | } | |
7323 | ||
53d25da6 AM |
7324 | void |
7325 | lang_add_insert (const char *where, int is_before) | |
7326 | { | |
d3ce72d0 | 7327 | lang_insert_statement_type *new_stmt; |
53d25da6 | 7328 | |
d3ce72d0 NC |
7329 | new_stmt = new_stat (lang_insert_statement, stat_ptr); |
7330 | new_stmt->where = where; | |
7331 | new_stmt->is_before = is_before; | |
53d25da6 AM |
7332 | saved_script_handle = previous_script_handle; |
7333 | } | |
7334 | ||
252b5132 RH |
7335 | /* Enter a group. This creates a new lang_group_statement, and sets |
7336 | stat_ptr to build new statements within the group. */ | |
7337 | ||
7338 | void | |
1579bae1 | 7339 | lang_enter_group (void) |
252b5132 RH |
7340 | { |
7341 | lang_group_statement_type *g; | |
7342 | ||
7343 | g = new_stat (lang_group_statement, stat_ptr); | |
7344 | lang_list_init (&g->children); | |
bde18da4 | 7345 | push_stat_ptr (&g->children); |
252b5132 RH |
7346 | } |
7347 | ||
7348 | /* Leave a group. This just resets stat_ptr to start writing to the | |
7349 | regular list of statements again. Note that this will not work if | |
7350 | groups can occur inside anything else which can adjust stat_ptr, | |
7351 | but currently they can't. */ | |
7352 | ||
7353 | void | |
1579bae1 | 7354 | lang_leave_group (void) |
252b5132 | 7355 | { |
bde18da4 | 7356 | pop_stat_ptr (); |
252b5132 RH |
7357 | } |
7358 | ||
7359 | /* Add a new program header. This is called for each entry in a PHDRS | |
7360 | command in a linker script. */ | |
7361 | ||
7362 | void | |
1579bae1 AM |
7363 | lang_new_phdr (const char *name, |
7364 | etree_type *type, | |
7365 | bfd_boolean filehdr, | |
7366 | bfd_boolean phdrs, | |
7367 | etree_type *at, | |
7368 | etree_type *flags) | |
252b5132 RH |
7369 | { |
7370 | struct lang_phdr *n, **pp; | |
5c1a3f0f | 7371 | bfd_boolean hdrs; |
252b5132 | 7372 | |
1e9cc1c2 | 7373 | n = (struct lang_phdr *) stat_alloc (sizeof (struct lang_phdr)); |
252b5132 RH |
7374 | n->next = NULL; |
7375 | n->name = name; | |
e9ee469a | 7376 | n->type = exp_get_value_int (type, 0, "program header type"); |
252b5132 RH |
7377 | n->filehdr = filehdr; |
7378 | n->phdrs = phdrs; | |
7379 | n->at = at; | |
7380 | n->flags = flags; | |
1e0061d2 | 7381 | |
5c1a3f0f | 7382 | hdrs = n->type == 1 && (phdrs || filehdr); |
252b5132 RH |
7383 | |
7384 | for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next) | |
4100cea3 AM |
7385 | if (hdrs |
7386 | && (*pp)->type == 1 | |
7387 | && !((*pp)->filehdr || (*pp)->phdrs)) | |
5c1a3f0f | 7388 | { |
dab69f68 AM |
7389 | einfo (_("%X%P:%S: PHDRS and FILEHDR are not supported" |
7390 | " when prior PT_LOAD headers lack them\n"), NULL); | |
5c1a3f0f NS |
7391 | hdrs = FALSE; |
7392 | } | |
7393 | ||
252b5132 RH |
7394 | *pp = n; |
7395 | } | |
7396 | ||
7397 | /* Record the program header information in the output BFD. FIXME: We | |
7398 | should not be calling an ELF specific function here. */ | |
7399 | ||
7400 | static void | |
1579bae1 | 7401 | lang_record_phdrs (void) |
252b5132 RH |
7402 | { |
7403 | unsigned int alc; | |
7404 | asection **secs; | |
6bdafbeb | 7405 | lang_output_section_phdr_list *last; |
252b5132 | 7406 | struct lang_phdr *l; |
afd7a018 | 7407 | lang_output_section_statement_type *os; |
252b5132 RH |
7408 | |
7409 | alc = 10; | |
1e9cc1c2 | 7410 | secs = (asection **) xmalloc (alc * sizeof (asection *)); |
252b5132 | 7411 | last = NULL; |
591a748a | 7412 | |
252b5132 RH |
7413 | for (l = lang_phdr_list; l != NULL; l = l->next) |
7414 | { | |
7415 | unsigned int c; | |
7416 | flagword flags; | |
7417 | bfd_vma at; | |
7418 | ||
7419 | c = 0; | |
afd7a018 AM |
7420 | for (os = &lang_output_section_statement.head->output_section_statement; |
7421 | os != NULL; | |
7422 | os = os->next) | |
252b5132 | 7423 | { |
6bdafbeb | 7424 | lang_output_section_phdr_list *pl; |
252b5132 | 7425 | |
66c103b7 | 7426 | if (os->constraint < 0) |
0841712e | 7427 | continue; |
252b5132 RH |
7428 | |
7429 | pl = os->phdrs; | |
7430 | if (pl != NULL) | |
7431 | last = pl; | |
7432 | else | |
7433 | { | |
7434 | if (os->sectype == noload_section | |
7435 | || os->bfd_section == NULL | |
7436 | || (os->bfd_section->flags & SEC_ALLOC) == 0) | |
7437 | continue; | |
591a748a | 7438 | |
7512c397 AM |
7439 | /* Don't add orphans to PT_INTERP header. */ |
7440 | if (l->type == 3) | |
7441 | continue; | |
7442 | ||
e9442572 | 7443 | if (last == NULL) |
591a748a | 7444 | { |
0aa7f586 | 7445 | lang_output_section_statement_type *tmp_os; |
591a748a NC |
7446 | |
7447 | /* If we have not run across a section with a program | |
7448 | header assigned to it yet, then scan forwards to find | |
7449 | one. This prevents inconsistencies in the linker's | |
7450 | behaviour when a script has specified just a single | |
7451 | header and there are sections in that script which are | |
7452 | not assigned to it, and which occur before the first | |
7453 | use of that header. See here for more details: | |
7454 | http://sourceware.org/ml/binutils/2007-02/msg00291.html */ | |
7455 | for (tmp_os = os; tmp_os; tmp_os = tmp_os->next) | |
7456 | if (tmp_os->phdrs) | |
e9442572 AM |
7457 | { |
7458 | last = tmp_os->phdrs; | |
7459 | break; | |
7460 | } | |
7461 | if (last == NULL) | |
7462 | einfo (_("%F%P: no sections assigned to phdrs\n")); | |
591a748a | 7463 | } |
e9442572 | 7464 | pl = last; |
252b5132 RH |
7465 | } |
7466 | ||
7467 | if (os->bfd_section == NULL) | |
7468 | continue; | |
7469 | ||
7470 | for (; pl != NULL; pl = pl->next) | |
7471 | { | |
7472 | if (strcmp (pl->name, l->name) == 0) | |
7473 | { | |
7474 | if (c >= alc) | |
7475 | { | |
7476 | alc *= 2; | |
1e9cc1c2 | 7477 | secs = (asection **) xrealloc (secs, |
4724d37e | 7478 | alc * sizeof (asection *)); |
252b5132 RH |
7479 | } |
7480 | secs[c] = os->bfd_section; | |
7481 | ++c; | |
b34976b6 | 7482 | pl->used = TRUE; |
252b5132 RH |
7483 | } |
7484 | } | |
7485 | } | |
7486 | ||
7487 | if (l->flags == NULL) | |
7488 | flags = 0; | |
7489 | else | |
e9ee469a | 7490 | flags = exp_get_vma (l->flags, 0, "phdr flags"); |
252b5132 RH |
7491 | |
7492 | if (l->at == NULL) | |
7493 | at = 0; | |
7494 | else | |
e9ee469a | 7495 | at = exp_get_vma (l->at, 0, "phdr load address"); |
252b5132 | 7496 | |
0aa7f586 AM |
7497 | if (!bfd_record_phdr (link_info.output_bfd, l->type, |
7498 | l->flags != NULL, flags, l->at != NULL, | |
7499 | at, l->filehdr, l->phdrs, c, secs)) | |
252b5132 RH |
7500 | einfo (_("%F%P: bfd_record_phdr failed: %E\n")); |
7501 | } | |
7502 | ||
7503 | free (secs); | |
7504 | ||
7505 | /* Make sure all the phdr assignments succeeded. */ | |
afd7a018 AM |
7506 | for (os = &lang_output_section_statement.head->output_section_statement; |
7507 | os != NULL; | |
7508 | os = os->next) | |
252b5132 | 7509 | { |
6bdafbeb | 7510 | lang_output_section_phdr_list *pl; |
252b5132 | 7511 | |
66c103b7 | 7512 | if (os->constraint < 0 |
afd7a018 | 7513 | || os->bfd_section == NULL) |
252b5132 RH |
7514 | continue; |
7515 | ||
afd7a018 | 7516 | for (pl = os->phdrs; |
252b5132 RH |
7517 | pl != NULL; |
7518 | pl = pl->next) | |
0aa7f586 | 7519 | if (!pl->used && strcmp (pl->name, "NONE") != 0) |
252b5132 | 7520 | einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"), |
afd7a018 | 7521 | os->name, pl->name); |
252b5132 RH |
7522 | } |
7523 | } | |
7524 | ||
7525 | /* Record a list of sections which may not be cross referenced. */ | |
7526 | ||
7527 | void | |
6bdafbeb | 7528 | lang_add_nocrossref (lang_nocrossref_type *l) |
252b5132 RH |
7529 | { |
7530 | struct lang_nocrossrefs *n; | |
7531 | ||
1e9cc1c2 | 7532 | n = (struct lang_nocrossrefs *) xmalloc (sizeof *n); |
252b5132 RH |
7533 | n->next = nocrossref_list; |
7534 | n->list = l; | |
cdf96953 | 7535 | n->onlyfirst = FALSE; |
252b5132 RH |
7536 | nocrossref_list = n; |
7537 | ||
7538 | /* Set notice_all so that we get informed about all symbols. */ | |
b34976b6 | 7539 | link_info.notice_all = TRUE; |
252b5132 | 7540 | } |
cdf96953 MF |
7541 | |
7542 | /* Record a section that cannot be referenced from a list of sections. */ | |
7543 | ||
7544 | void | |
7545 | lang_add_nocrossref_to (lang_nocrossref_type *l) | |
7546 | { | |
7547 | lang_add_nocrossref (l); | |
7548 | nocrossref_list->onlyfirst = TRUE; | |
7549 | } | |
252b5132 RH |
7550 | \f |
7551 | /* Overlay handling. We handle overlays with some static variables. */ | |
7552 | ||
7553 | /* The overlay virtual address. */ | |
7554 | static etree_type *overlay_vma; | |
7e7d5768 AM |
7555 | /* And subsection alignment. */ |
7556 | static etree_type *overlay_subalign; | |
252b5132 | 7557 | |
252b5132 RH |
7558 | /* An expression for the maximum section size seen so far. */ |
7559 | static etree_type *overlay_max; | |
7560 | ||
7561 | /* A list of all the sections in this overlay. */ | |
7562 | ||
89cdebba | 7563 | struct overlay_list { |
252b5132 RH |
7564 | struct overlay_list *next; |
7565 | lang_output_section_statement_type *os; | |
7566 | }; | |
7567 | ||
7568 | static struct overlay_list *overlay_list; | |
7569 | ||
7570 | /* Start handling an overlay. */ | |
7571 | ||
7572 | void | |
7e7d5768 | 7573 | lang_enter_overlay (etree_type *vma_expr, etree_type *subalign) |
252b5132 RH |
7574 | { |
7575 | /* The grammar should prevent nested overlays from occurring. */ | |
7e7d5768 AM |
7576 | ASSERT (overlay_vma == NULL |
7577 | && overlay_subalign == NULL | |
7578 | && overlay_max == NULL); | |
252b5132 RH |
7579 | |
7580 | overlay_vma = vma_expr; | |
7e7d5768 | 7581 | overlay_subalign = subalign; |
252b5132 RH |
7582 | } |
7583 | ||
7584 | /* Start a section in an overlay. We handle this by calling | |
9f88b410 RS |
7585 | lang_enter_output_section_statement with the correct VMA. |
7586 | lang_leave_overlay sets up the LMA and memory regions. */ | |
252b5132 RH |
7587 | |
7588 | void | |
1579bae1 | 7589 | lang_enter_overlay_section (const char *name) |
252b5132 RH |
7590 | { |
7591 | struct overlay_list *n; | |
7592 | etree_type *size; | |
7593 | ||
152d792f | 7594 | lang_enter_output_section_statement (name, overlay_vma, overlay_section, |
1eec346e | 7595 | 0, overlay_subalign, 0, 0, 0); |
252b5132 | 7596 | |
9f88b410 | 7597 | /* If this is the first section, then base the VMA of future |
252b5132 RH |
7598 | sections on this one. This will work correctly even if `.' is |
7599 | used in the addresses. */ | |
7600 | if (overlay_list == NULL) | |
9f88b410 | 7601 | overlay_vma = exp_nameop (ADDR, name); |
252b5132 RH |
7602 | |
7603 | /* Remember the section. */ | |
1e9cc1c2 | 7604 | n = (struct overlay_list *) xmalloc (sizeof *n); |
252b5132 RH |
7605 | n->os = current_section; |
7606 | n->next = overlay_list; | |
7607 | overlay_list = n; | |
7608 | ||
7609 | size = exp_nameop (SIZEOF, name); | |
7610 | ||
252b5132 RH |
7611 | /* Arrange to work out the maximum section end address. */ |
7612 | if (overlay_max == NULL) | |
7613 | overlay_max = size; | |
7614 | else | |
7615 | overlay_max = exp_binop (MAX_K, overlay_max, size); | |
7616 | } | |
7617 | ||
7618 | /* Finish a section in an overlay. There isn't any special to do | |
7619 | here. */ | |
7620 | ||
7621 | void | |
1579bae1 | 7622 | lang_leave_overlay_section (fill_type *fill, |
6bdafbeb | 7623 | lang_output_section_phdr_list *phdrs) |
252b5132 RH |
7624 | { |
7625 | const char *name; | |
7626 | char *clean, *s2; | |
7627 | const char *s1; | |
7628 | char *buf; | |
7629 | ||
7630 | name = current_section->name; | |
7631 | ||
a747ee4d NC |
7632 | /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory |
7633 | region and that no load-time region has been specified. It doesn't | |
7634 | really matter what we say here, since lang_leave_overlay will | |
7635 | override it. */ | |
7636 | lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0); | |
252b5132 RH |
7637 | |
7638 | /* Define the magic symbols. */ | |
7639 | ||
1e9cc1c2 | 7640 | clean = (char *) xmalloc (strlen (name) + 1); |
252b5132 RH |
7641 | s2 = clean; |
7642 | for (s1 = name; *s1 != '\0'; s1++) | |
3882b010 | 7643 | if (ISALNUM (*s1) || *s1 == '_') |
252b5132 RH |
7644 | *s2++ = *s1; |
7645 | *s2 = '\0'; | |
7646 | ||
1e9cc1c2 | 7647 | buf = (char *) xmalloc (strlen (clean) + sizeof "__load_start_"); |
252b5132 | 7648 | sprintf (buf, "__load_start_%s", clean); |
34711ca3 AM |
7649 | lang_add_assignment (exp_provide (buf, |
7650 | exp_nameop (LOADADDR, name), | |
7651 | FALSE)); | |
252b5132 | 7652 | |
1e9cc1c2 | 7653 | buf = (char *) xmalloc (strlen (clean) + sizeof "__load_stop_"); |
252b5132 | 7654 | sprintf (buf, "__load_stop_%s", clean); |
34711ca3 AM |
7655 | lang_add_assignment (exp_provide (buf, |
7656 | exp_binop ('+', | |
7657 | exp_nameop (LOADADDR, name), | |
7658 | exp_nameop (SIZEOF, name)), | |
7659 | FALSE)); | |
252b5132 RH |
7660 | |
7661 | free (clean); | |
7662 | } | |
7663 | ||
7664 | /* Finish an overlay. If there are any overlay wide settings, this | |
7665 | looks through all the sections in the overlay and sets them. */ | |
7666 | ||
7667 | void | |
1579bae1 AM |
7668 | lang_leave_overlay (etree_type *lma_expr, |
7669 | int nocrossrefs, | |
7670 | fill_type *fill, | |
7671 | const char *memspec, | |
6bdafbeb | 7672 | lang_output_section_phdr_list *phdrs, |
1579bae1 | 7673 | const char *lma_memspec) |
252b5132 RH |
7674 | { |
7675 | lang_memory_region_type *region; | |
562d3460 | 7676 | lang_memory_region_type *lma_region; |
252b5132 | 7677 | struct overlay_list *l; |
6bdafbeb | 7678 | lang_nocrossref_type *nocrossref; |
252b5132 | 7679 | |
ee3cc2e2 RS |
7680 | lang_get_regions (®ion, &lma_region, |
7681 | memspec, lma_memspec, | |
6bdafbeb | 7682 | lma_expr != NULL, FALSE); |
562d3460 | 7683 | |
252b5132 RH |
7684 | nocrossref = NULL; |
7685 | ||
9f88b410 RS |
7686 | /* After setting the size of the last section, set '.' to end of the |
7687 | overlay region. */ | |
7688 | if (overlay_list != NULL) | |
6d8bf25d AM |
7689 | { |
7690 | overlay_list->os->update_dot = 1; | |
7691 | overlay_list->os->update_dot_tree | |
eb8476a6 | 7692 | = exp_assign (".", exp_binop ('+', overlay_vma, overlay_max), FALSE); |
6d8bf25d | 7693 | } |
9f88b410 | 7694 | |
252b5132 RH |
7695 | l = overlay_list; |
7696 | while (l != NULL) | |
7697 | { | |
7698 | struct overlay_list *next; | |
7699 | ||
1579bae1 | 7700 | if (fill != NULL && l->os->fill == NULL) |
252b5132 | 7701 | l->os->fill = fill; |
1545243b | 7702 | |
9f88b410 RS |
7703 | l->os->region = region; |
7704 | l->os->lma_region = lma_region; | |
7705 | ||
7706 | /* The first section has the load address specified in the | |
7707 | OVERLAY statement. The rest are worked out from that. | |
7708 | The base address is not needed (and should be null) if | |
7709 | an LMA region was specified. */ | |
7710 | if (l->next == 0) | |
152d792f AM |
7711 | { |
7712 | l->os->load_base = lma_expr; | |
7713 | l->os->sectype = normal_section; | |
7714 | } | |
252b5132 RH |
7715 | if (phdrs != NULL && l->os->phdrs == NULL) |
7716 | l->os->phdrs = phdrs; | |
7717 | ||
9f88b410 | 7718 | if (nocrossrefs) |
252b5132 | 7719 | { |
6bdafbeb | 7720 | lang_nocrossref_type *nc; |
252b5132 | 7721 | |
1e9cc1c2 | 7722 | nc = (lang_nocrossref_type *) xmalloc (sizeof *nc); |
252b5132 RH |
7723 | nc->name = l->os->name; |
7724 | nc->next = nocrossref; | |
7725 | nocrossref = nc; | |
7726 | } | |
7727 | ||
7728 | next = l->next; | |
7729 | free (l); | |
7730 | l = next; | |
7731 | } | |
7732 | ||
7733 | if (nocrossref != NULL) | |
7734 | lang_add_nocrossref (nocrossref); | |
7735 | ||
252b5132 | 7736 | overlay_vma = NULL; |
252b5132 RH |
7737 | overlay_list = NULL; |
7738 | overlay_max = NULL; | |
7739 | } | |
7740 | \f | |
7741 | /* Version handling. This is only useful for ELF. */ | |
7742 | ||
108ba305 JJ |
7743 | /* If PREV is NULL, return first version pattern matching particular symbol. |
7744 | If PREV is non-NULL, return first version pattern matching particular | |
7745 | symbol after PREV (previously returned by lang_vers_match). */ | |
252b5132 | 7746 | |
108ba305 JJ |
7747 | static struct bfd_elf_version_expr * |
7748 | lang_vers_match (struct bfd_elf_version_expr_head *head, | |
7749 | struct bfd_elf_version_expr *prev, | |
7750 | const char *sym) | |
252b5132 | 7751 | { |
93252b1c | 7752 | const char *c_sym; |
108ba305 JJ |
7753 | const char *cxx_sym = sym; |
7754 | const char *java_sym = sym; | |
7755 | struct bfd_elf_version_expr *expr = NULL; | |
93252b1c MF |
7756 | enum demangling_styles curr_style; |
7757 | ||
7758 | curr_style = CURRENT_DEMANGLING_STYLE; | |
7759 | cplus_demangle_set_style (no_demangling); | |
7760 | c_sym = bfd_demangle (link_info.output_bfd, sym, DMGL_NO_OPTS); | |
7761 | if (!c_sym) | |
7762 | c_sym = sym; | |
7763 | cplus_demangle_set_style (curr_style); | |
252b5132 | 7764 | |
108ba305 | 7765 | if (head->mask & BFD_ELF_VERSION_CXX_TYPE) |
252b5132 | 7766 | { |
93252b1c MF |
7767 | cxx_sym = bfd_demangle (link_info.output_bfd, sym, |
7768 | DMGL_PARAMS | DMGL_ANSI); | |
108ba305 JJ |
7769 | if (!cxx_sym) |
7770 | cxx_sym = sym; | |
252b5132 | 7771 | } |
df816215 | 7772 | if (head->mask & BFD_ELF_VERSION_JAVA_TYPE) |
252b5132 | 7773 | { |
93252b1c | 7774 | java_sym = bfd_demangle (link_info.output_bfd, sym, DMGL_JAVA); |
108ba305 JJ |
7775 | if (!java_sym) |
7776 | java_sym = sym; | |
252b5132 RH |
7777 | } |
7778 | ||
ae5a3597 | 7779 | if (head->htab && (prev == NULL || prev->literal)) |
252b5132 | 7780 | { |
108ba305 JJ |
7781 | struct bfd_elf_version_expr e; |
7782 | ||
7783 | switch (prev ? prev->mask : 0) | |
7784 | { | |
967928e9 AM |
7785 | case 0: |
7786 | if (head->mask & BFD_ELF_VERSION_C_TYPE) | |
7787 | { | |
93252b1c | 7788 | e.pattern = c_sym; |
1e9cc1c2 | 7789 | expr = (struct bfd_elf_version_expr *) |
4724d37e | 7790 | htab_find ((htab_t) head->htab, &e); |
93252b1c | 7791 | while (expr && strcmp (expr->pattern, c_sym) == 0) |
967928e9 AM |
7792 | if (expr->mask == BFD_ELF_VERSION_C_TYPE) |
7793 | goto out_ret; | |
7794 | else | |
7795 | expr = expr->next; | |
7796 | } | |
7797 | /* Fallthrough */ | |
7798 | case BFD_ELF_VERSION_C_TYPE: | |
7799 | if (head->mask & BFD_ELF_VERSION_CXX_TYPE) | |
7800 | { | |
ae5a3597 | 7801 | e.pattern = cxx_sym; |
1e9cc1c2 | 7802 | expr = (struct bfd_elf_version_expr *) |
4724d37e | 7803 | htab_find ((htab_t) head->htab, &e); |
ae5a3597 | 7804 | while (expr && strcmp (expr->pattern, cxx_sym) == 0) |
967928e9 AM |
7805 | if (expr->mask == BFD_ELF_VERSION_CXX_TYPE) |
7806 | goto out_ret; | |
7807 | else | |
7808 | expr = expr->next; | |
7809 | } | |
7810 | /* Fallthrough */ | |
7811 | case BFD_ELF_VERSION_CXX_TYPE: | |
7812 | if (head->mask & BFD_ELF_VERSION_JAVA_TYPE) | |
7813 | { | |
ae5a3597 | 7814 | e.pattern = java_sym; |
1e9cc1c2 | 7815 | expr = (struct bfd_elf_version_expr *) |
4724d37e | 7816 | htab_find ((htab_t) head->htab, &e); |
ae5a3597 | 7817 | while (expr && strcmp (expr->pattern, java_sym) == 0) |
967928e9 AM |
7818 | if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE) |
7819 | goto out_ret; | |
7820 | else | |
7821 | expr = expr->next; | |
7822 | } | |
7823 | /* Fallthrough */ | |
7824 | default: | |
7825 | break; | |
108ba305 | 7826 | } |
252b5132 | 7827 | } |
108ba305 JJ |
7828 | |
7829 | /* Finally, try the wildcards. */ | |
ae5a3597 | 7830 | if (prev == NULL || prev->literal) |
108ba305 | 7831 | expr = head->remaining; |
252b5132 | 7832 | else |
108ba305 | 7833 | expr = prev->next; |
86043bbb | 7834 | for (; expr; expr = expr->next) |
252b5132 | 7835 | { |
108ba305 JJ |
7836 | const char *s; |
7837 | ||
86043bbb MM |
7838 | if (!expr->pattern) |
7839 | continue; | |
7840 | ||
108ba305 JJ |
7841 | if (expr->pattern[0] == '*' && expr->pattern[1] == '\0') |
7842 | break; | |
7843 | ||
7844 | if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE) | |
7845 | s = java_sym; | |
7846 | else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE) | |
7847 | s = cxx_sym; | |
7848 | else | |
93252b1c | 7849 | s = c_sym; |
5e35cbc2 | 7850 | if (fnmatch (expr->pattern, s, 0) == 0) |
108ba305 | 7851 | break; |
252b5132 RH |
7852 | } |
7853 | ||
967928e9 | 7854 | out_ret: |
93252b1c MF |
7855 | if (c_sym != sym) |
7856 | free ((char *) c_sym); | |
108ba305 JJ |
7857 | if (cxx_sym != sym) |
7858 | free ((char *) cxx_sym); | |
7859 | if (java_sym != sym) | |
7860 | free ((char *) java_sym); | |
7861 | return expr; | |
252b5132 RH |
7862 | } |
7863 | ||
5e35cbc2 | 7864 | /* Return NULL if the PATTERN argument is a glob pattern, otherwise, |
ae5a3597 | 7865 | return a pointer to the symbol name with any backslash quotes removed. */ |
5e35cbc2 L |
7866 | |
7867 | static const char * | |
7868 | realsymbol (const char *pattern) | |
7869 | { | |
7870 | const char *p; | |
7871 | bfd_boolean changed = FALSE, backslash = FALSE; | |
1e9cc1c2 | 7872 | char *s, *symbol = (char *) xmalloc (strlen (pattern) + 1); |
5e35cbc2 L |
7873 | |
7874 | for (p = pattern, s = symbol; *p != '\0'; ++p) | |
7875 | { | |
7876 | /* It is a glob pattern only if there is no preceding | |
7877 | backslash. */ | |
5e35cbc2 L |
7878 | if (backslash) |
7879 | { | |
7880 | /* Remove the preceding backslash. */ | |
7881 | *(s - 1) = *p; | |
ae5a3597 | 7882 | backslash = FALSE; |
5e35cbc2 L |
7883 | changed = TRUE; |
7884 | } | |
7885 | else | |
ae5a3597 AM |
7886 | { |
7887 | if (*p == '?' || *p == '*' || *p == '[') | |
7888 | { | |
7889 | free (symbol); | |
7890 | return NULL; | |
7891 | } | |
5e35cbc2 | 7892 | |
ae5a3597 AM |
7893 | *s++ = *p; |
7894 | backslash = *p == '\\'; | |
7895 | } | |
5e35cbc2 L |
7896 | } |
7897 | ||
7898 | if (changed) | |
7899 | { | |
7900 | *s = '\0'; | |
7901 | return symbol; | |
7902 | } | |
7903 | else | |
7904 | { | |
7905 | free (symbol); | |
7906 | return pattern; | |
7907 | } | |
7908 | } | |
7909 | ||
d3ce72d0 | 7910 | /* This is called for each variable name or match expression. NEW_NAME is |
86043bbb MM |
7911 | the name of the symbol to match, or, if LITERAL_P is FALSE, a glob |
7912 | pattern to be matched against symbol names. */ | |
252b5132 RH |
7913 | |
7914 | struct bfd_elf_version_expr * | |
1579bae1 | 7915 | lang_new_vers_pattern (struct bfd_elf_version_expr *orig, |
d3ce72d0 | 7916 | const char *new_name, |
86043bbb MM |
7917 | const char *lang, |
7918 | bfd_boolean literal_p) | |
252b5132 RH |
7919 | { |
7920 | struct bfd_elf_version_expr *ret; | |
7921 | ||
d3ce72d0 | 7922 | ret = (struct bfd_elf_version_expr *) xmalloc (sizeof *ret); |
252b5132 | 7923 | ret->next = orig; |
31941635 L |
7924 | ret->symver = 0; |
7925 | ret->script = 0; | |
ae5a3597 | 7926 | ret->literal = TRUE; |
d3ce72d0 | 7927 | ret->pattern = literal_p ? new_name : realsymbol (new_name); |
ae5a3597 AM |
7928 | if (ret->pattern == NULL) |
7929 | { | |
d3ce72d0 | 7930 | ret->pattern = new_name; |
ae5a3597 AM |
7931 | ret->literal = FALSE; |
7932 | } | |
252b5132 RH |
7933 | |
7934 | if (lang == NULL || strcasecmp (lang, "C") == 0) | |
108ba305 | 7935 | ret->mask = BFD_ELF_VERSION_C_TYPE; |
252b5132 | 7936 | else if (strcasecmp (lang, "C++") == 0) |
108ba305 | 7937 | ret->mask = BFD_ELF_VERSION_CXX_TYPE; |
252b5132 | 7938 | else if (strcasecmp (lang, "Java") == 0) |
108ba305 | 7939 | ret->mask = BFD_ELF_VERSION_JAVA_TYPE; |
252b5132 RH |
7940 | else |
7941 | { | |
7942 | einfo (_("%X%P: unknown language `%s' in version information\n"), | |
7943 | lang); | |
108ba305 | 7944 | ret->mask = BFD_ELF_VERSION_C_TYPE; |
252b5132 RH |
7945 | } |
7946 | ||
fac1652d | 7947 | return ldemul_new_vers_pattern (ret); |
252b5132 RH |
7948 | } |
7949 | ||
7950 | /* This is called for each set of variable names and match | |
7951 | expressions. */ | |
7952 | ||
7953 | struct bfd_elf_version_tree * | |
1579bae1 AM |
7954 | lang_new_vers_node (struct bfd_elf_version_expr *globals, |
7955 | struct bfd_elf_version_expr *locals) | |
252b5132 RH |
7956 | { |
7957 | struct bfd_elf_version_tree *ret; | |
7958 | ||
1e9cc1c2 | 7959 | ret = (struct bfd_elf_version_tree *) xcalloc (1, sizeof *ret); |
108ba305 JJ |
7960 | ret->globals.list = globals; |
7961 | ret->locals.list = locals; | |
7962 | ret->match = lang_vers_match; | |
252b5132 | 7963 | ret->name_indx = (unsigned int) -1; |
252b5132 RH |
7964 | return ret; |
7965 | } | |
7966 | ||
7967 | /* This static variable keeps track of version indices. */ | |
7968 | ||
7969 | static int version_index; | |
7970 | ||
108ba305 JJ |
7971 | static hashval_t |
7972 | version_expr_head_hash (const void *p) | |
7973 | { | |
1e9cc1c2 NC |
7974 | const struct bfd_elf_version_expr *e = |
7975 | (const struct bfd_elf_version_expr *) p; | |
108ba305 | 7976 | |
ae5a3597 | 7977 | return htab_hash_string (e->pattern); |
108ba305 JJ |
7978 | } |
7979 | ||
7980 | static int | |
7981 | version_expr_head_eq (const void *p1, const void *p2) | |
7982 | { | |
1e9cc1c2 NC |
7983 | const struct bfd_elf_version_expr *e1 = |
7984 | (const struct bfd_elf_version_expr *) p1; | |
7985 | const struct bfd_elf_version_expr *e2 = | |
7986 | (const struct bfd_elf_version_expr *) p2; | |
108ba305 | 7987 | |
ae5a3597 | 7988 | return strcmp (e1->pattern, e2->pattern) == 0; |
108ba305 JJ |
7989 | } |
7990 | ||
7991 | static void | |
7992 | lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head) | |
7993 | { | |
7994 | size_t count = 0; | |
7995 | struct bfd_elf_version_expr *e, *next; | |
7996 | struct bfd_elf_version_expr **list_loc, **remaining_loc; | |
7997 | ||
7998 | for (e = head->list; e; e = e->next) | |
7999 | { | |
ae5a3597 | 8000 | if (e->literal) |
108ba305 JJ |
8001 | count++; |
8002 | head->mask |= e->mask; | |
8003 | } | |
8004 | ||
8005 | if (count) | |
8006 | { | |
8007 | head->htab = htab_create (count * 2, version_expr_head_hash, | |
8008 | version_expr_head_eq, NULL); | |
8009 | list_loc = &head->list; | |
8010 | remaining_loc = &head->remaining; | |
8011 | for (e = head->list; e; e = next) | |
8012 | { | |
8013 | next = e->next; | |
ae5a3597 | 8014 | if (!e->literal) |
108ba305 JJ |
8015 | { |
8016 | *remaining_loc = e; | |
8017 | remaining_loc = &e->next; | |
8018 | } | |
8019 | else | |
8020 | { | |
1e9cc1c2 | 8021 | void **loc = htab_find_slot ((htab_t) head->htab, e, INSERT); |
108ba305 JJ |
8022 | |
8023 | if (*loc) | |
8024 | { | |
8025 | struct bfd_elf_version_expr *e1, *last; | |
8026 | ||
1e9cc1c2 | 8027 | e1 = (struct bfd_elf_version_expr *) *loc; |
108ba305 JJ |
8028 | last = NULL; |
8029 | do | |
8030 | { | |
8031 | if (e1->mask == e->mask) | |
8032 | { | |
8033 | last = NULL; | |
8034 | break; | |
8035 | } | |
8036 | last = e1; | |
8037 | e1 = e1->next; | |
8038 | } | |
ae5a3597 | 8039 | while (e1 && strcmp (e1->pattern, e->pattern) == 0); |
108ba305 JJ |
8040 | |
8041 | if (last == NULL) | |
8042 | { | |
8043 | /* This is a duplicate. */ | |
8044 | /* FIXME: Memory leak. Sometimes pattern is not | |
8045 | xmalloced alone, but in larger chunk of memory. */ | |
ae5a3597 | 8046 | /* free (e->pattern); */ |
108ba305 JJ |
8047 | free (e); |
8048 | } | |
8049 | else | |
8050 | { | |
8051 | e->next = last->next; | |
8052 | last->next = e; | |
8053 | } | |
8054 | } | |
8055 | else | |
8056 | { | |
8057 | *loc = e; | |
8058 | *list_loc = e; | |
8059 | list_loc = &e->next; | |
8060 | } | |
8061 | } | |
8062 | } | |
8063 | *remaining_loc = NULL; | |
8064 | *list_loc = head->remaining; | |
8065 | } | |
8066 | else | |
8067 | head->remaining = head->list; | |
8068 | } | |
8069 | ||
252b5132 RH |
8070 | /* This is called when we know the name and dependencies of the |
8071 | version. */ | |
8072 | ||
8073 | void | |
1579bae1 AM |
8074 | lang_register_vers_node (const char *name, |
8075 | struct bfd_elf_version_tree *version, | |
8076 | struct bfd_elf_version_deps *deps) | |
252b5132 RH |
8077 | { |
8078 | struct bfd_elf_version_tree *t, **pp; | |
8079 | struct bfd_elf_version_expr *e1; | |
8080 | ||
6b9b879a JJ |
8081 | if (name == NULL) |
8082 | name = ""; | |
8083 | ||
fd91d419 L |
8084 | if (link_info.version_info != NULL |
8085 | && (name[0] == '\0' || link_info.version_info->name[0] == '\0')) | |
6b9b879a | 8086 | { |
6feb9908 AM |
8087 | einfo (_("%X%P: anonymous version tag cannot be combined" |
8088 | " with other version tags\n")); | |
5ed6aba4 | 8089 | free (version); |
6b9b879a JJ |
8090 | return; |
8091 | } | |
8092 | ||
252b5132 | 8093 | /* Make sure this node has a unique name. */ |
fd91d419 | 8094 | for (t = link_info.version_info; t != NULL; t = t->next) |
252b5132 RH |
8095 | if (strcmp (t->name, name) == 0) |
8096 | einfo (_("%X%P: duplicate version tag `%s'\n"), name); | |
8097 | ||
108ba305 JJ |
8098 | lang_finalize_version_expr_head (&version->globals); |
8099 | lang_finalize_version_expr_head (&version->locals); | |
8100 | ||
252b5132 RH |
8101 | /* Check the global and local match names, and make sure there |
8102 | aren't any duplicates. */ | |
8103 | ||
108ba305 | 8104 | for (e1 = version->globals.list; e1 != NULL; e1 = e1->next) |
252b5132 | 8105 | { |
fd91d419 | 8106 | for (t = link_info.version_info; t != NULL; t = t->next) |
252b5132 RH |
8107 | { |
8108 | struct bfd_elf_version_expr *e2; | |
8109 | ||
ae5a3597 | 8110 | if (t->locals.htab && e1->literal) |
108ba305 | 8111 | { |
1e9cc1c2 | 8112 | e2 = (struct bfd_elf_version_expr *) |
4724d37e | 8113 | htab_find ((htab_t) t->locals.htab, e1); |
ae5a3597 | 8114 | while (e2 && strcmp (e1->pattern, e2->pattern) == 0) |
108ba305 JJ |
8115 | { |
8116 | if (e1->mask == e2->mask) | |
6feb9908 | 8117 | einfo (_("%X%P: duplicate expression `%s'" |
ae5a3597 | 8118 | " in version information\n"), e1->pattern); |
108ba305 JJ |
8119 | e2 = e2->next; |
8120 | } | |
8121 | } | |
ae5a3597 | 8122 | else if (!e1->literal) |
108ba305 | 8123 | for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next) |
6feb9908 AM |
8124 | if (strcmp (e1->pattern, e2->pattern) == 0 |
8125 | && e1->mask == e2->mask) | |
8126 | einfo (_("%X%P: duplicate expression `%s'" | |
8127 | " in version information\n"), e1->pattern); | |
252b5132 RH |
8128 | } |
8129 | } | |
8130 | ||
108ba305 | 8131 | for (e1 = version->locals.list; e1 != NULL; e1 = e1->next) |
252b5132 | 8132 | { |
fd91d419 | 8133 | for (t = link_info.version_info; t != NULL; t = t->next) |
252b5132 RH |
8134 | { |
8135 | struct bfd_elf_version_expr *e2; | |
8136 | ||
ae5a3597 | 8137 | if (t->globals.htab && e1->literal) |
108ba305 | 8138 | { |
1e9cc1c2 | 8139 | e2 = (struct bfd_elf_version_expr *) |
4724d37e | 8140 | htab_find ((htab_t) t->globals.htab, e1); |
ae5a3597 | 8141 | while (e2 && strcmp (e1->pattern, e2->pattern) == 0) |
108ba305 JJ |
8142 | { |
8143 | if (e1->mask == e2->mask) | |
6feb9908 AM |
8144 | einfo (_("%X%P: duplicate expression `%s'" |
8145 | " in version information\n"), | |
ae5a3597 | 8146 | e1->pattern); |
108ba305 JJ |
8147 | e2 = e2->next; |
8148 | } | |
8149 | } | |
ae5a3597 | 8150 | else if (!e1->literal) |
108ba305 | 8151 | for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next) |
6feb9908 AM |
8152 | if (strcmp (e1->pattern, e2->pattern) == 0 |
8153 | && e1->mask == e2->mask) | |
8154 | einfo (_("%X%P: duplicate expression `%s'" | |
8155 | " in version information\n"), e1->pattern); | |
252b5132 RH |
8156 | } |
8157 | } | |
8158 | ||
8159 | version->deps = deps; | |
8160 | version->name = name; | |
6b9b879a JJ |
8161 | if (name[0] != '\0') |
8162 | { | |
8163 | ++version_index; | |
8164 | version->vernum = version_index; | |
8165 | } | |
8166 | else | |
8167 | version->vernum = 0; | |
252b5132 | 8168 | |
fd91d419 | 8169 | for (pp = &link_info.version_info; *pp != NULL; pp = &(*pp)->next) |
252b5132 RH |
8170 | ; |
8171 | *pp = version; | |
8172 | } | |
8173 | ||
8174 | /* This is called when we see a version dependency. */ | |
8175 | ||
8176 | struct bfd_elf_version_deps * | |
1579bae1 | 8177 | lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name) |
252b5132 RH |
8178 | { |
8179 | struct bfd_elf_version_deps *ret; | |
8180 | struct bfd_elf_version_tree *t; | |
8181 | ||
1e9cc1c2 | 8182 | ret = (struct bfd_elf_version_deps *) xmalloc (sizeof *ret); |
252b5132 RH |
8183 | ret->next = list; |
8184 | ||
fd91d419 | 8185 | for (t = link_info.version_info; t != NULL; t = t->next) |
252b5132 RH |
8186 | { |
8187 | if (strcmp (t->name, name) == 0) | |
8188 | { | |
8189 | ret->version_needed = t; | |
8190 | return ret; | |
8191 | } | |
8192 | } | |
8193 | ||
8194 | einfo (_("%X%P: unable to find version dependency `%s'\n"), name); | |
8195 | ||
1e0061d2 | 8196 | ret->version_needed = NULL; |
252b5132 RH |
8197 | return ret; |
8198 | } | |
8199 | ||
8200 | static void | |
1579bae1 | 8201 | lang_do_version_exports_section (void) |
252b5132 RH |
8202 | { |
8203 | struct bfd_elf_version_expr *greg = NULL, *lreg; | |
8204 | ||
8205 | LANG_FOR_EACH_INPUT_STATEMENT (is) | |
8206 | { | |
8207 | asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports"); | |
8208 | char *contents, *p; | |
8209 | bfd_size_type len; | |
8210 | ||
8211 | if (sec == NULL) | |
b7a26f91 | 8212 | continue; |
252b5132 | 8213 | |
eea6121a | 8214 | len = sec->size; |
1e9cc1c2 | 8215 | contents = (char *) xmalloc (len); |
252b5132 | 8216 | if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len)) |
6f9efd97 | 8217 | einfo (_("%X%P: unable to read .exports section contents\n"), sec); |
252b5132 RH |
8218 | |
8219 | p = contents; | |
89cdebba | 8220 | while (p < contents + len) |
252b5132 | 8221 | { |
86043bbb | 8222 | greg = lang_new_vers_pattern (greg, p, NULL, FALSE); |
252b5132 RH |
8223 | p = strchr (p, '\0') + 1; |
8224 | } | |
8225 | ||
8226 | /* Do not free the contents, as we used them creating the regex. */ | |
8227 | ||
8228 | /* Do not include this section in the link. */ | |
a14a5de3 | 8229 | sec->flags |= SEC_EXCLUDE | SEC_KEEP; |
252b5132 RH |
8230 | } |
8231 | ||
86043bbb | 8232 | lreg = lang_new_vers_pattern (NULL, "*", NULL, FALSE); |
252b5132 RH |
8233 | lang_register_vers_node (command_line.version_exports_section, |
8234 | lang_new_vers_node (greg, lreg), NULL); | |
8235 | } | |
577a0623 | 8236 | |
cc9ad334 SKS |
8237 | /* Evaluate LENGTH and ORIGIN parts of MEMORY spec */ |
8238 | ||
8239 | static void | |
8240 | lang_do_memory_regions (void) | |
8241 | { | |
8242 | lang_memory_region_type *r = lang_memory_region_list; | |
8243 | ||
8244 | for (; r != NULL; r = r->next) | |
8245 | { | |
8246 | if (r->origin_exp) | |
0aa7f586 AM |
8247 | { |
8248 | exp_fold_tree_no_dot (r->origin_exp); | |
8249 | if (expld.result.valid_p) | |
8250 | { | |
8251 | r->origin = expld.result.value; | |
8252 | r->current = r->origin; | |
8253 | } | |
8254 | else | |
8255 | einfo (_("%F%P: invalid origin for memory region %s\n"), | |
8256 | r->name_list.name); | |
8257 | } | |
cc9ad334 | 8258 | if (r->length_exp) |
0aa7f586 AM |
8259 | { |
8260 | exp_fold_tree_no_dot (r->length_exp); | |
8261 | if (expld.result.valid_p) | |
8262 | r->length = expld.result.value; | |
8263 | else | |
8264 | einfo (_("%F%P: invalid length for memory region %s\n"), | |
8265 | r->name_list.name); | |
8266 | } | |
cc9ad334 SKS |
8267 | } |
8268 | } | |
8269 | ||
577a0623 | 8270 | void |
1579bae1 | 8271 | lang_add_unique (const char *name) |
577a0623 AM |
8272 | { |
8273 | struct unique_sections *ent; | |
8274 | ||
8275 | for (ent = unique_section_list; ent; ent = ent->next) | |
8276 | if (strcmp (ent->name, name) == 0) | |
8277 | return; | |
8278 | ||
1e9cc1c2 | 8279 | ent = (struct unique_sections *) xmalloc (sizeof *ent); |
577a0623 AM |
8280 | ent->name = xstrdup (name); |
8281 | ent->next = unique_section_list; | |
8282 | unique_section_list = ent; | |
8283 | } | |
55255dae L |
8284 | |
8285 | /* Append the list of dynamic symbols to the existing one. */ | |
8286 | ||
8287 | void | |
8288 | lang_append_dynamic_list (struct bfd_elf_version_expr *dynamic) | |
8289 | { | |
40b36307 | 8290 | if (link_info.dynamic_list) |
55255dae | 8291 | { |
07806542 JJ |
8292 | struct bfd_elf_version_expr *tail; |
8293 | for (tail = dynamic; tail->next != NULL; tail = tail->next) | |
8294 | ; | |
40b36307 L |
8295 | tail->next = link_info.dynamic_list->head.list; |
8296 | link_info.dynamic_list->head.list = dynamic; | |
55255dae L |
8297 | } |
8298 | else | |
8299 | { | |
8300 | struct bfd_elf_dynamic_list *d; | |
8301 | ||
1e9cc1c2 | 8302 | d = (struct bfd_elf_dynamic_list *) xcalloc (1, sizeof *d); |
55255dae L |
8303 | d->head.list = dynamic; |
8304 | d->match = lang_vers_match; | |
40b36307 | 8305 | link_info.dynamic_list = d; |
55255dae L |
8306 | } |
8307 | } | |
8308 | ||
8309 | /* Append the list of C++ typeinfo dynamic symbols to the existing | |
8310 | one. */ | |
8311 | ||
8312 | void | |
8313 | lang_append_dynamic_list_cpp_typeinfo (void) | |
8314 | { | |
0aa7f586 | 8315 | const char *symbols[] = |
55255dae L |
8316 | { |
8317 | "typeinfo name for*", | |
8318 | "typeinfo for*" | |
8319 | }; | |
8320 | struct bfd_elf_version_expr *dynamic = NULL; | |
8321 | unsigned int i; | |
8322 | ||
8323 | for (i = 0; i < ARRAY_SIZE (symbols); i++) | |
8324 | dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++", | |
8325 | FALSE); | |
8326 | ||
8327 | lang_append_dynamic_list (dynamic); | |
8328 | } | |
40b36307 L |
8329 | |
8330 | /* Append the list of C++ operator new and delete dynamic symbols to the | |
8331 | existing one. */ | |
8332 | ||
8333 | void | |
8334 | lang_append_dynamic_list_cpp_new (void) | |
8335 | { | |
0aa7f586 | 8336 | const char *symbols[] = |
40b36307 L |
8337 | { |
8338 | "operator new*", | |
8339 | "operator delete*" | |
8340 | }; | |
8341 | struct bfd_elf_version_expr *dynamic = NULL; | |
8342 | unsigned int i; | |
8343 | ||
8344 | for (i = 0; i < ARRAY_SIZE (symbols); i++) | |
8345 | dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++", | |
8346 | FALSE); | |
8347 | ||
8348 | lang_append_dynamic_list (dynamic); | |
8349 | } | |
01554a74 AM |
8350 | |
8351 | /* Scan a space and/or comma separated string of features. */ | |
8352 | ||
8353 | void | |
8354 | lang_ld_feature (char *str) | |
8355 | { | |
8356 | char *p, *q; | |
8357 | ||
8358 | p = str; | |
8359 | while (*p) | |
8360 | { | |
8361 | char sep; | |
8362 | while (*p == ',' || ISSPACE (*p)) | |
8363 | ++p; | |
8364 | if (!*p) | |
8365 | break; | |
8366 | q = p + 1; | |
8367 | while (*q && *q != ',' && !ISSPACE (*q)) | |
8368 | ++q; | |
8369 | sep = *q; | |
8370 | *q = 0; | |
8371 | if (strcasecmp (p, "SANE_EXPR") == 0) | |
8372 | config.sane_expr = TRUE; | |
8373 | else | |
8374 | einfo (_("%X%P: unknown feature `%s'\n"), p); | |
8375 | *q = sep; | |
8376 | p = q; | |
8377 | } | |
8378 | } | |
3604cb1f TG |
8379 | |
8380 | /* Pretty print memory amount. */ | |
8381 | ||
8382 | static void | |
8383 | lang_print_memory_size (bfd_vma sz) | |
8384 | { | |
8385 | if ((sz & 0x3fffffff) == 0) | |
8386 | printf ("%10" BFD_VMA_FMT "u GB", sz >> 30); | |
8387 | else if ((sz & 0xfffff) == 0) | |
8388 | printf ("%10" BFD_VMA_FMT "u MB", sz >> 20); | |
8389 | else if ((sz & 0x3ff) == 0) | |
8390 | printf ("%10" BFD_VMA_FMT "u KB", sz >> 10); | |
8391 | else | |
8392 | printf (" %10" BFD_VMA_FMT "u B", sz); | |
8393 | } | |
8394 | ||
8395 | /* Implement --print-memory-usage: disply per region memory usage. */ | |
8396 | ||
8397 | void | |
8398 | lang_print_memory_usage (void) | |
8399 | { | |
8400 | lang_memory_region_type *r; | |
8401 | ||
8402 | printf ("Memory region Used Size Region Size %%age Used\n"); | |
8403 | for (r = lang_memory_region_list; r->next != NULL; r = r->next) | |
8404 | { | |
8405 | bfd_vma used_length = r->current - r->origin; | |
8406 | double percent; | |
8407 | ||
8408 | printf ("%16s: ",r->name_list.name); | |
8409 | lang_print_memory_size (used_length); | |
8410 | lang_print_memory_size ((bfd_vma) r->length); | |
8411 | ||
8412 | percent = used_length * 100.0 / r->length; | |
8413 | ||
8414 | printf (" %6.2f%%\n", percent); | |
8415 | } | |
8416 | } |