* gas/mips/e32-rel2.d: Adjust expected output to remove the 0x4000
[binutils.git] / ld / ldlang.c
blobcc390b0b4119e12bdf6ed3464806d515f78380f4
1 /* Linker command language support.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
6 This file is part of the GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
23 #include <limits.h>
25 #include "sysdep.h"
26 #include "bfd.h"
27 #include "libiberty.h"
28 #include "safe-ctype.h"
29 #include "obstack.h"
30 #include "bfdlink.h"
32 #include "ld.h"
33 #include "ldmain.h"
34 #include "ldexp.h"
35 #include "ldlang.h"
36 #include <ldgram.h>
37 #include "ldlex.h"
38 #include "ldmisc.h"
39 #include "ldctor.h"
40 #include "ldfile.h"
41 #include "ldemul.h"
42 #include "fnmatch.h"
43 #include "demangle.h"
44 #include "hashtab.h"
46 #ifndef offsetof
47 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
48 #endif
50 /* Locals variables. */
51 static struct obstack stat_obstack;
52 static struct obstack map_obstack;
54 #define obstack_chunk_alloc xmalloc
55 #define obstack_chunk_free free
56 static const char *startup_file;
57 static bfd_boolean placed_commons = FALSE;
58 static bfd_boolean stripped_excluded_sections = FALSE;
59 static lang_output_section_statement_type *default_common_section;
60 static bfd_boolean map_option_f;
61 static bfd_vma print_dot;
62 static lang_input_statement_type *first_file;
63 static const char *current_target;
64 static const char *output_target;
65 static lang_statement_list_type statement_list;
66 static struct bfd_hash_table lang_definedness_table;
67 static lang_statement_list_type *stat_save[10];
68 static lang_statement_list_type **stat_save_ptr = &stat_save[0];
70 /* Forward declarations. */
71 static void exp_init_os (etree_type *);
72 static void init_map_userdata (bfd *, asection *, void *);
73 static lang_input_statement_type *lookup_name (const char *);
74 static struct bfd_hash_entry *lang_definedness_newfunc
75 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
76 static void insert_undefined (const char *);
77 static bfd_boolean sort_def_symbol (struct bfd_link_hash_entry *, void *);
78 static void print_statement (lang_statement_union_type *,
79 lang_output_section_statement_type *);
80 static void print_statement_list (lang_statement_union_type *,
81 lang_output_section_statement_type *);
82 static void print_statements (void);
83 static void print_input_section (asection *);
84 static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
85 static void lang_record_phdrs (void);
86 static void lang_do_version_exports_section (void);
87 static void lang_finalize_version_expr_head
88 (struct bfd_elf_version_expr_head *);
90 /* Exported variables. */
91 lang_output_section_statement_type *abs_output_section;
92 lang_statement_list_type lang_output_section_statement;
93 lang_statement_list_type *stat_ptr = &statement_list;
94 lang_statement_list_type file_chain = { NULL, NULL };
95 lang_statement_list_type input_file_chain;
96 struct bfd_sym_chain entry_symbol = { NULL, NULL };
97 static const char *entry_symbol_default = "start";
98 const char *entry_section = ".text";
99 bfd_boolean entry_from_cmdline;
100 bfd_boolean lang_has_input_file = FALSE;
101 bfd_boolean had_output_filename = FALSE;
102 bfd_boolean lang_float_flag = FALSE;
103 bfd_boolean delete_output_file_on_failure = FALSE;
104 struct lang_phdr *lang_phdr_list;
105 struct lang_nocrossrefs *nocrossref_list;
106 static struct unique_sections *unique_section_list;
107 static bfd_boolean ldlang_sysrooted_script = FALSE;
109 /* Functions that traverse the linker script and might evaluate
110 DEFINED() need to increment this. */
111 int lang_statement_iteration = 0;
113 etree_type *base; /* Relocation base - or null */
115 /* Return TRUE if the PATTERN argument is a wildcard pattern.
116 Although backslashes are treated specially if a pattern contains
117 wildcards, we do not consider the mere presence of a backslash to
118 be enough to cause the pattern to be treated as a wildcard.
119 That lets us handle DOS filenames more naturally. */
120 #define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL)
122 #define new_stat(x, y) \
123 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
125 #define outside_section_address(q) \
126 ((q)->output_offset + (q)->output_section->vma)
128 #define outside_symbol_address(q) \
129 ((q)->value + outside_section_address (q->section))
131 #define SECTION_NAME_MAP_LENGTH (16)
133 void *
134 stat_alloc (size_t size)
136 return obstack_alloc (&stat_obstack, size);
139 static int
140 name_match (const char *pattern, const char *name)
142 if (wildcardp (pattern))
143 return fnmatch (pattern, name, 0);
144 return strcmp (pattern, name);
147 /* If PATTERN is of the form archive:file, return a pointer to the
148 separator. If not, return NULL. */
150 static char *
151 archive_path (const char *pattern)
153 char *p = NULL;
155 if (link_info.path_separator == 0)
156 return p;
158 p = strchr (pattern, link_info.path_separator);
159 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
160 if (p == NULL || link_info.path_separator != ':')
161 return p;
163 /* Assume a match on the second char is part of drive specifier,
164 as in "c:\silly.dos". */
165 if (p == pattern + 1 && ISALPHA (*pattern))
166 p = strchr (p + 1, link_info.path_separator);
167 #endif
168 return p;
171 /* Given that FILE_SPEC results in a non-NULL SEP result from archive_path,
172 return whether F matches FILE_SPEC. */
174 static bfd_boolean
175 input_statement_is_archive_path (const char *file_spec, char *sep,
176 lang_input_statement_type *f)
178 bfd_boolean match = FALSE;
180 if ((*(sep + 1) == 0
181 || name_match (sep + 1, f->filename) == 0)
182 && ((sep != file_spec)
183 == (f->the_bfd != NULL && f->the_bfd->my_archive != NULL)))
185 match = TRUE;
187 if (sep != file_spec)
189 const char *aname = f->the_bfd->my_archive->filename;
190 *sep = 0;
191 match = name_match (file_spec, aname) == 0;
192 *sep = link_info.path_separator;
195 return match;
198 static bfd_boolean
199 unique_section_p (const asection *sec)
201 struct unique_sections *unam;
202 const char *secnam;
204 if (link_info.relocatable
205 && sec->owner != NULL
206 && bfd_is_group_section (sec->owner, sec))
207 return TRUE;
209 secnam = sec->name;
210 for (unam = unique_section_list; unam; unam = unam->next)
211 if (name_match (unam->name, secnam) == 0)
212 return TRUE;
214 return FALSE;
217 /* Generic traversal routines for finding matching sections. */
219 /* Try processing a section against a wildcard. This just calls
220 the callback unless the filename exclusion list is present
221 and excludes the file. It's hardly ever present so this
222 function is very fast. */
224 static void
225 walk_wild_consider_section (lang_wild_statement_type *ptr,
226 lang_input_statement_type *file,
227 asection *s,
228 struct wildcard_list *sec,
229 callback_t callback,
230 void *data)
232 struct name_list *list_tmp;
234 /* Don't process sections from files which were excluded. */
235 for (list_tmp = sec->spec.exclude_name_list;
236 list_tmp;
237 list_tmp = list_tmp->next)
239 char *p = archive_path (list_tmp->name);
241 if (p != NULL)
243 if (input_statement_is_archive_path (list_tmp->name, p, file))
244 return;
247 else if (name_match (list_tmp->name, file->filename) == 0)
248 return;
250 /* FIXME: Perhaps remove the following at some stage? Matching
251 unadorned archives like this was never documented and has
252 been superceded by the archive:path syntax. */
253 else if (file->the_bfd != NULL
254 && file->the_bfd->my_archive != NULL
255 && name_match (list_tmp->name,
256 file->the_bfd->my_archive->filename) == 0)
257 return;
260 (*callback) (ptr, sec, s, file, data);
263 /* Lowest common denominator routine that can handle everything correctly,
264 but slowly. */
266 static void
267 walk_wild_section_general (lang_wild_statement_type *ptr,
268 lang_input_statement_type *file,
269 callback_t callback,
270 void *data)
272 asection *s;
273 struct wildcard_list *sec;
275 for (s = file->the_bfd->sections; s != NULL; s = s->next)
277 sec = ptr->section_list;
278 if (sec == NULL)
279 (*callback) (ptr, sec, s, file, data);
281 while (sec != NULL)
283 bfd_boolean skip = FALSE;
285 if (sec->spec.name != NULL)
287 const char *sname = bfd_get_section_name (file->the_bfd, s);
289 skip = name_match (sec->spec.name, sname) != 0;
292 if (!skip)
293 walk_wild_consider_section (ptr, file, s, sec, callback, data);
295 sec = sec->next;
300 /* Routines to find a single section given its name. If there's more
301 than one section with that name, we report that. */
303 typedef struct
305 asection *found_section;
306 bfd_boolean multiple_sections_found;
307 } section_iterator_callback_data;
309 static bfd_boolean
310 section_iterator_callback (bfd *bfd ATTRIBUTE_UNUSED, asection *s, void *data)
312 section_iterator_callback_data *d = data;
314 if (d->found_section != NULL)
316 d->multiple_sections_found = TRUE;
317 return TRUE;
320 d->found_section = s;
321 return FALSE;
324 static asection *
325 find_section (lang_input_statement_type *file,
326 struct wildcard_list *sec,
327 bfd_boolean *multiple_sections_found)
329 section_iterator_callback_data cb_data = { NULL, FALSE };
331 bfd_get_section_by_name_if (file->the_bfd, sec->spec.name,
332 section_iterator_callback, &cb_data);
333 *multiple_sections_found = cb_data.multiple_sections_found;
334 return cb_data.found_section;
337 /* Code for handling simple wildcards without going through fnmatch,
338 which can be expensive because of charset translations etc. */
340 /* A simple wild is a literal string followed by a single '*',
341 where the literal part is at least 4 characters long. */
343 static bfd_boolean
344 is_simple_wild (const char *name)
346 size_t len = strcspn (name, "*?[");
347 return len >= 4 && name[len] == '*' && name[len + 1] == '\0';
350 static bfd_boolean
351 match_simple_wild (const char *pattern, const char *name)
353 /* The first four characters of the pattern are guaranteed valid
354 non-wildcard characters. So we can go faster. */
355 if (pattern[0] != name[0] || pattern[1] != name[1]
356 || pattern[2] != name[2] || pattern[3] != name[3])
357 return FALSE;
359 pattern += 4;
360 name += 4;
361 while (*pattern != '*')
362 if (*name++ != *pattern++)
363 return FALSE;
365 return TRUE;
368 /* Compare sections ASEC and BSEC according to SORT. */
370 static int
371 compare_section (sort_type sort, asection *asec, asection *bsec)
373 int ret;
375 switch (sort)
377 default:
378 abort ();
380 case by_alignment_name:
381 ret = (bfd_section_alignment (bsec->owner, bsec)
382 - bfd_section_alignment (asec->owner, asec));
383 if (ret)
384 break;
385 /* Fall through. */
387 case by_name:
388 ret = strcmp (bfd_get_section_name (asec->owner, asec),
389 bfd_get_section_name (bsec->owner, bsec));
390 break;
392 case by_name_alignment:
393 ret = strcmp (bfd_get_section_name (asec->owner, asec),
394 bfd_get_section_name (bsec->owner, bsec));
395 if (ret)
396 break;
397 /* Fall through. */
399 case by_alignment:
400 ret = (bfd_section_alignment (bsec->owner, bsec)
401 - bfd_section_alignment (asec->owner, asec));
402 break;
405 return ret;
408 /* Build a Binary Search Tree to sort sections, unlike insertion sort
409 used in wild_sort(). BST is considerably faster if the number of
410 of sections are large. */
412 static lang_section_bst_type **
413 wild_sort_fast (lang_wild_statement_type *wild,
414 struct wildcard_list *sec,
415 lang_input_statement_type *file ATTRIBUTE_UNUSED,
416 asection *section)
418 lang_section_bst_type **tree;
420 tree = &wild->tree;
421 if (!wild->filenames_sorted
422 && (sec == NULL || sec->spec.sorted == none))
424 /* Append at the right end of tree. */
425 while (*tree)
426 tree = &((*tree)->right);
427 return tree;
430 while (*tree)
432 /* Find the correct node to append this section. */
433 if (compare_section (sec->spec.sorted, section, (*tree)->section) < 0)
434 tree = &((*tree)->left);
435 else
436 tree = &((*tree)->right);
439 return tree;
442 /* Use wild_sort_fast to build a BST to sort sections. */
444 static void
445 output_section_callback_fast (lang_wild_statement_type *ptr,
446 struct wildcard_list *sec,
447 asection *section,
448 lang_input_statement_type *file,
449 void *output ATTRIBUTE_UNUSED)
451 lang_section_bst_type *node;
452 lang_section_bst_type **tree;
454 if (unique_section_p (section))
455 return;
457 node = xmalloc (sizeof (lang_section_bst_type));
458 node->left = 0;
459 node->right = 0;
460 node->section = section;
462 tree = wild_sort_fast (ptr, sec, file, section);
463 if (tree != NULL)
464 *tree = node;
467 /* Convert a sorted sections' BST back to list form. */
469 static void
470 output_section_callback_tree_to_list (lang_wild_statement_type *ptr,
471 lang_section_bst_type *tree,
472 void *output)
474 if (tree->left)
475 output_section_callback_tree_to_list (ptr, tree->left, output);
477 lang_add_section (&ptr->children, tree->section,
478 (lang_output_section_statement_type *) output);
480 if (tree->right)
481 output_section_callback_tree_to_list (ptr, tree->right, output);
483 free (tree);
486 /* Specialized, optimized routines for handling different kinds of
487 wildcards */
489 static void
490 walk_wild_section_specs1_wild0 (lang_wild_statement_type *ptr,
491 lang_input_statement_type *file,
492 callback_t callback,
493 void *data)
495 /* We can just do a hash lookup for the section with the right name.
496 But if that lookup discovers more than one section with the name
497 (should be rare), we fall back to the general algorithm because
498 we would otherwise have to sort the sections to make sure they
499 get processed in the bfd's order. */
500 bfd_boolean multiple_sections_found;
501 struct wildcard_list *sec0 = ptr->handler_data[0];
502 asection *s0 = find_section (file, sec0, &multiple_sections_found);
504 if (multiple_sections_found)
505 walk_wild_section_general (ptr, file, callback, data);
506 else if (s0)
507 walk_wild_consider_section (ptr, file, s0, sec0, callback, data);
510 static void
511 walk_wild_section_specs1_wild1 (lang_wild_statement_type *ptr,
512 lang_input_statement_type *file,
513 callback_t callback,
514 void *data)
516 asection *s;
517 struct wildcard_list *wildsec0 = ptr->handler_data[0];
519 for (s = file->the_bfd->sections; s != NULL; s = s->next)
521 const char *sname = bfd_get_section_name (file->the_bfd, s);
522 bfd_boolean skip = !match_simple_wild (wildsec0->spec.name, sname);
524 if (!skip)
525 walk_wild_consider_section (ptr, file, s, wildsec0, callback, data);
529 static void
530 walk_wild_section_specs2_wild1 (lang_wild_statement_type *ptr,
531 lang_input_statement_type *file,
532 callback_t callback,
533 void *data)
535 asection *s;
536 struct wildcard_list *sec0 = ptr->handler_data[0];
537 struct wildcard_list *wildsec1 = ptr->handler_data[1];
538 bfd_boolean multiple_sections_found;
539 asection *s0 = find_section (file, sec0, &multiple_sections_found);
541 if (multiple_sections_found)
543 walk_wild_section_general (ptr, file, callback, data);
544 return;
547 /* Note that if the section was not found, s0 is NULL and
548 we'll simply never succeed the s == s0 test below. */
549 for (s = file->the_bfd->sections; s != NULL; s = s->next)
551 /* Recall that in this code path, a section cannot satisfy more
552 than one spec, so if s == s0 then it cannot match
553 wildspec1. */
554 if (s == s0)
555 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
556 else
558 const char *sname = bfd_get_section_name (file->the_bfd, s);
559 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
561 if (!skip)
562 walk_wild_consider_section (ptr, file, s, wildsec1, callback,
563 data);
568 static void
569 walk_wild_section_specs3_wild2 (lang_wild_statement_type *ptr,
570 lang_input_statement_type *file,
571 callback_t callback,
572 void *data)
574 asection *s;
575 struct wildcard_list *sec0 = ptr->handler_data[0];
576 struct wildcard_list *wildsec1 = ptr->handler_data[1];
577 struct wildcard_list *wildsec2 = ptr->handler_data[2];
578 bfd_boolean multiple_sections_found;
579 asection *s0 = find_section (file, sec0, &multiple_sections_found);
581 if (multiple_sections_found)
583 walk_wild_section_general (ptr, file, callback, data);
584 return;
587 for (s = file->the_bfd->sections; s != NULL; s = s->next)
589 if (s == s0)
590 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
591 else
593 const char *sname = bfd_get_section_name (file->the_bfd, s);
594 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
596 if (!skip)
597 walk_wild_consider_section (ptr, file, s, wildsec1, callback, data);
598 else
600 skip = !match_simple_wild (wildsec2->spec.name, sname);
601 if (!skip)
602 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
603 data);
609 static void
610 walk_wild_section_specs4_wild2 (lang_wild_statement_type *ptr,
611 lang_input_statement_type *file,
612 callback_t callback,
613 void *data)
615 asection *s;
616 struct wildcard_list *sec0 = ptr->handler_data[0];
617 struct wildcard_list *sec1 = ptr->handler_data[1];
618 struct wildcard_list *wildsec2 = ptr->handler_data[2];
619 struct wildcard_list *wildsec3 = ptr->handler_data[3];
620 bfd_boolean multiple_sections_found;
621 asection *s0 = find_section (file, sec0, &multiple_sections_found), *s1;
623 if (multiple_sections_found)
625 walk_wild_section_general (ptr, file, callback, data);
626 return;
629 s1 = find_section (file, sec1, &multiple_sections_found);
630 if (multiple_sections_found)
632 walk_wild_section_general (ptr, file, callback, data);
633 return;
636 for (s = file->the_bfd->sections; s != NULL; s = s->next)
638 if (s == s0)
639 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
640 else
641 if (s == s1)
642 walk_wild_consider_section (ptr, file, s, sec1, callback, data);
643 else
645 const char *sname = bfd_get_section_name (file->the_bfd, s);
646 bfd_boolean skip = !match_simple_wild (wildsec2->spec.name,
647 sname);
649 if (!skip)
650 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
651 data);
652 else
654 skip = !match_simple_wild (wildsec3->spec.name, sname);
655 if (!skip)
656 walk_wild_consider_section (ptr, file, s, wildsec3,
657 callback, data);
663 static void
664 walk_wild_section (lang_wild_statement_type *ptr,
665 lang_input_statement_type *file,
666 callback_t callback,
667 void *data)
669 if (file->just_syms_flag)
670 return;
672 (*ptr->walk_wild_section_handler) (ptr, file, callback, data);
675 /* Returns TRUE when name1 is a wildcard spec that might match
676 something name2 can match. We're conservative: we return FALSE
677 only if the prefixes of name1 and name2 are different up to the
678 first wildcard character. */
680 static bfd_boolean
681 wild_spec_can_overlap (const char *name1, const char *name2)
683 size_t prefix1_len = strcspn (name1, "?*[");
684 size_t prefix2_len = strcspn (name2, "?*[");
685 size_t min_prefix_len;
687 /* Note that if there is no wildcard character, then we treat the
688 terminating 0 as part of the prefix. Thus ".text" won't match
689 ".text." or ".text.*", for example. */
690 if (name1[prefix1_len] == '\0')
691 prefix1_len++;
692 if (name2[prefix2_len] == '\0')
693 prefix2_len++;
695 min_prefix_len = prefix1_len < prefix2_len ? prefix1_len : prefix2_len;
697 return memcmp (name1, name2, min_prefix_len) == 0;
700 /* Select specialized code to handle various kinds of wildcard
701 statements. */
703 static void
704 analyze_walk_wild_section_handler (lang_wild_statement_type *ptr)
706 int sec_count = 0;
707 int wild_name_count = 0;
708 struct wildcard_list *sec;
709 int signature;
710 int data_counter;
712 ptr->walk_wild_section_handler = walk_wild_section_general;
713 ptr->handler_data[0] = NULL;
714 ptr->handler_data[1] = NULL;
715 ptr->handler_data[2] = NULL;
716 ptr->handler_data[3] = NULL;
717 ptr->tree = NULL;
719 /* Count how many wildcard_specs there are, and how many of those
720 actually use wildcards in the name. Also, bail out if any of the
721 wildcard names are NULL. (Can this actually happen?
722 walk_wild_section used to test for it.) And bail out if any
723 of the wildcards are more complex than a simple string
724 ending in a single '*'. */
725 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
727 ++sec_count;
728 if (sec->spec.name == NULL)
729 return;
730 if (wildcardp (sec->spec.name))
732 ++wild_name_count;
733 if (!is_simple_wild (sec->spec.name))
734 return;
738 /* The zero-spec case would be easy to optimize but it doesn't
739 happen in practice. Likewise, more than 4 specs doesn't
740 happen in practice. */
741 if (sec_count == 0 || sec_count > 4)
742 return;
744 /* Check that no two specs can match the same section. */
745 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
747 struct wildcard_list *sec2;
748 for (sec2 = sec->next; sec2 != NULL; sec2 = sec2->next)
750 if (wild_spec_can_overlap (sec->spec.name, sec2->spec.name))
751 return;
755 signature = (sec_count << 8) + wild_name_count;
756 switch (signature)
758 case 0x0100:
759 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild0;
760 break;
761 case 0x0101:
762 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild1;
763 break;
764 case 0x0201:
765 ptr->walk_wild_section_handler = walk_wild_section_specs2_wild1;
766 break;
767 case 0x0302:
768 ptr->walk_wild_section_handler = walk_wild_section_specs3_wild2;
769 break;
770 case 0x0402:
771 ptr->walk_wild_section_handler = walk_wild_section_specs4_wild2;
772 break;
773 default:
774 return;
777 /* Now fill the data array with pointers to the specs, first the
778 specs with non-wildcard names, then the specs with wildcard
779 names. It's OK to process the specs in different order from the
780 given order, because we've already determined that no section
781 will match more than one spec. */
782 data_counter = 0;
783 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
784 if (!wildcardp (sec->spec.name))
785 ptr->handler_data[data_counter++] = sec;
786 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
787 if (wildcardp (sec->spec.name))
788 ptr->handler_data[data_counter++] = sec;
791 /* Handle a wild statement for a single file F. */
793 static void
794 walk_wild_file (lang_wild_statement_type *s,
795 lang_input_statement_type *f,
796 callback_t callback,
797 void *data)
799 if (f->the_bfd == NULL
800 || ! bfd_check_format (f->the_bfd, bfd_archive))
801 walk_wild_section (s, f, callback, data);
802 else
804 bfd *member;
806 /* This is an archive file. We must map each member of the
807 archive separately. */
808 member = bfd_openr_next_archived_file (f->the_bfd, NULL);
809 while (member != NULL)
811 /* When lookup_name is called, it will call the add_symbols
812 entry point for the archive. For each element of the
813 archive which is included, BFD will call ldlang_add_file,
814 which will set the usrdata field of the member to the
815 lang_input_statement. */
816 if (member->usrdata != NULL)
818 walk_wild_section (s, member->usrdata, callback, data);
821 member = bfd_openr_next_archived_file (f->the_bfd, member);
826 static void
827 walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
829 const char *file_spec = s->filename;
830 char *p;
832 if (file_spec == NULL)
834 /* Perform the iteration over all files in the list. */
835 LANG_FOR_EACH_INPUT_STATEMENT (f)
837 walk_wild_file (s, f, callback, data);
840 else if ((p = archive_path (file_spec)) != NULL)
842 LANG_FOR_EACH_INPUT_STATEMENT (f)
844 if (input_statement_is_archive_path (file_spec, p, f))
845 walk_wild_file (s, f, callback, data);
848 else if (wildcardp (file_spec))
850 LANG_FOR_EACH_INPUT_STATEMENT (f)
852 if (fnmatch (file_spec, f->filename, 0) == 0)
853 walk_wild_file (s, f, callback, data);
856 else
858 lang_input_statement_type *f;
860 /* Perform the iteration over a single file. */
861 f = lookup_name (file_spec);
862 if (f)
863 walk_wild_file (s, f, callback, data);
867 /* lang_for_each_statement walks the parse tree and calls the provided
868 function for each node. */
870 static void
871 lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
872 lang_statement_union_type *s)
874 for (; s != NULL; s = s->header.next)
876 func (s);
878 switch (s->header.type)
880 case lang_constructors_statement_enum:
881 lang_for_each_statement_worker (func, constructor_list.head);
882 break;
883 case lang_output_section_statement_enum:
884 lang_for_each_statement_worker
885 (func, s->output_section_statement.children.head);
886 break;
887 case lang_wild_statement_enum:
888 lang_for_each_statement_worker (func,
889 s->wild_statement.children.head);
890 break;
891 case lang_group_statement_enum:
892 lang_for_each_statement_worker (func,
893 s->group_statement.children.head);
894 break;
895 case lang_data_statement_enum:
896 case lang_reloc_statement_enum:
897 case lang_object_symbols_statement_enum:
898 case lang_output_statement_enum:
899 case lang_target_statement_enum:
900 case lang_input_section_enum:
901 case lang_input_statement_enum:
902 case lang_assignment_statement_enum:
903 case lang_padding_statement_enum:
904 case lang_address_statement_enum:
905 case lang_fill_statement_enum:
906 case lang_insert_statement_enum:
907 break;
908 default:
909 FAIL ();
910 break;
915 void
916 lang_for_each_statement (void (*func) (lang_statement_union_type *))
918 lang_for_each_statement_worker (func, statement_list.head);
921 /*----------------------------------------------------------------------*/
923 void
924 lang_list_init (lang_statement_list_type *list)
926 list->head = NULL;
927 list->tail = &list->head;
930 void
931 push_stat_ptr (lang_statement_list_type *new_ptr)
933 if (stat_save_ptr >= stat_save + sizeof (stat_save) / sizeof (stat_save[0]))
934 abort ();
935 *stat_save_ptr++ = stat_ptr;
936 stat_ptr = new_ptr;
939 void
940 pop_stat_ptr (void)
942 if (stat_save_ptr <= stat_save)
943 abort ();
944 stat_ptr = *--stat_save_ptr;
947 /* Build a new statement node for the parse tree. */
949 static lang_statement_union_type *
950 new_statement (enum statement_enum type,
951 size_t size,
952 lang_statement_list_type *list)
954 lang_statement_union_type *new;
956 new = stat_alloc (size);
957 new->header.type = type;
958 new->header.next = NULL;
959 lang_statement_append (list, new, &new->header.next);
960 return new;
963 /* Build a new input file node for the language. There are several
964 ways in which we treat an input file, eg, we only look at symbols,
965 or prefix it with a -l etc.
967 We can be supplied with requests for input files more than once;
968 they may, for example be split over several lines like foo.o(.text)
969 foo.o(.data) etc, so when asked for a file we check that we haven't
970 got it already so we don't duplicate the bfd. */
972 static lang_input_statement_type *
973 new_afile (const char *name,
974 lang_input_file_enum_type file_type,
975 const char *target,
976 bfd_boolean add_to_list)
978 lang_input_statement_type *p;
980 if (add_to_list)
981 p = new_stat (lang_input_statement, stat_ptr);
982 else
984 p = stat_alloc (sizeof (lang_input_statement_type));
985 p->header.type = lang_input_statement_enum;
986 p->header.next = NULL;
989 lang_has_input_file = TRUE;
990 p->target = target;
991 p->sysrooted = FALSE;
993 if (file_type == lang_input_file_is_l_enum
994 && name[0] == ':' && name[1] != '\0')
996 file_type = lang_input_file_is_search_file_enum;
997 name = name + 1;
1000 switch (file_type)
1002 case lang_input_file_is_symbols_only_enum:
1003 p->filename = name;
1004 p->is_archive = FALSE;
1005 p->real = TRUE;
1006 p->local_sym_name = name;
1007 p->just_syms_flag = TRUE;
1008 p->search_dirs_flag = FALSE;
1009 break;
1010 case lang_input_file_is_fake_enum:
1011 p->filename = name;
1012 p->is_archive = FALSE;
1013 p->real = FALSE;
1014 p->local_sym_name = name;
1015 p->just_syms_flag = FALSE;
1016 p->search_dirs_flag = FALSE;
1017 break;
1018 case lang_input_file_is_l_enum:
1019 p->is_archive = TRUE;
1020 p->filename = name;
1021 p->real = TRUE;
1022 p->local_sym_name = concat ("-l", name, (const char *) NULL);
1023 p->just_syms_flag = FALSE;
1024 p->search_dirs_flag = TRUE;
1025 break;
1026 case lang_input_file_is_marker_enum:
1027 p->filename = name;
1028 p->is_archive = FALSE;
1029 p->real = FALSE;
1030 p->local_sym_name = name;
1031 p->just_syms_flag = FALSE;
1032 p->search_dirs_flag = TRUE;
1033 break;
1034 case lang_input_file_is_search_file_enum:
1035 p->sysrooted = ldlang_sysrooted_script;
1036 p->filename = name;
1037 p->is_archive = FALSE;
1038 p->real = TRUE;
1039 p->local_sym_name = name;
1040 p->just_syms_flag = FALSE;
1041 p->search_dirs_flag = TRUE;
1042 break;
1043 case lang_input_file_is_file_enum:
1044 p->filename = name;
1045 p->is_archive = FALSE;
1046 p->real = TRUE;
1047 p->local_sym_name = name;
1048 p->just_syms_flag = FALSE;
1049 p->search_dirs_flag = FALSE;
1050 break;
1051 default:
1052 FAIL ();
1054 p->the_bfd = NULL;
1055 p->next_real_file = NULL;
1056 p->next = NULL;
1057 p->dynamic = config.dynamic_link;
1058 p->add_needed = add_needed;
1059 p->as_needed = as_needed;
1060 p->whole_archive = whole_archive;
1061 p->loaded = FALSE;
1062 lang_statement_append (&input_file_chain,
1063 (lang_statement_union_type *) p,
1064 &p->next_real_file);
1065 return p;
1068 lang_input_statement_type *
1069 lang_add_input_file (const char *name,
1070 lang_input_file_enum_type file_type,
1071 const char *target)
1073 return new_afile (name, file_type, target, TRUE);
1076 struct out_section_hash_entry
1078 struct bfd_hash_entry root;
1079 lang_statement_union_type s;
1082 /* The hash table. */
1084 static struct bfd_hash_table output_section_statement_table;
1086 /* Support routines for the hash table used by lang_output_section_find,
1087 initialize the table, fill in an entry and remove the table. */
1089 static struct bfd_hash_entry *
1090 output_section_statement_newfunc (struct bfd_hash_entry *entry,
1091 struct bfd_hash_table *table,
1092 const char *string)
1094 lang_output_section_statement_type **nextp;
1095 struct out_section_hash_entry *ret;
1097 if (entry == NULL)
1099 entry = bfd_hash_allocate (table, sizeof (*ret));
1100 if (entry == NULL)
1101 return entry;
1104 entry = bfd_hash_newfunc (entry, table, string);
1105 if (entry == NULL)
1106 return entry;
1108 ret = (struct out_section_hash_entry *) entry;
1109 memset (&ret->s, 0, sizeof (ret->s));
1110 ret->s.header.type = lang_output_section_statement_enum;
1111 ret->s.output_section_statement.subsection_alignment = -1;
1112 ret->s.output_section_statement.section_alignment = -1;
1113 ret->s.output_section_statement.block_value = 1;
1114 lang_list_init (&ret->s.output_section_statement.children);
1115 lang_statement_append (stat_ptr, &ret->s, &ret->s.header.next);
1117 /* For every output section statement added to the list, except the
1118 first one, lang_output_section_statement.tail points to the "next"
1119 field of the last element of the list. */
1120 if (lang_output_section_statement.head != NULL)
1121 ret->s.output_section_statement.prev
1122 = ((lang_output_section_statement_type *)
1123 ((char *) lang_output_section_statement.tail
1124 - offsetof (lang_output_section_statement_type, next)));
1126 /* GCC's strict aliasing rules prevent us from just casting the
1127 address, so we store the pointer in a variable and cast that
1128 instead. */
1129 nextp = &ret->s.output_section_statement.next;
1130 lang_statement_append (&lang_output_section_statement,
1131 &ret->s,
1132 (lang_statement_union_type **) nextp);
1133 return &ret->root;
1136 static void
1137 output_section_statement_table_init (void)
1139 if (!bfd_hash_table_init_n (&output_section_statement_table,
1140 output_section_statement_newfunc,
1141 sizeof (struct out_section_hash_entry),
1142 61))
1143 einfo (_("%P%F: can not create hash table: %E\n"));
1146 static void
1147 output_section_statement_table_free (void)
1149 bfd_hash_table_free (&output_section_statement_table);
1152 /* Build enough state so that the parser can build its tree. */
1154 void
1155 lang_init (void)
1157 obstack_begin (&stat_obstack, 1000);
1159 stat_ptr = &statement_list;
1161 output_section_statement_table_init ();
1163 lang_list_init (stat_ptr);
1165 lang_list_init (&input_file_chain);
1166 lang_list_init (&lang_output_section_statement);
1167 lang_list_init (&file_chain);
1168 first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
1169 NULL);
1170 abs_output_section =
1171 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME, 0, TRUE);
1173 abs_output_section->bfd_section = bfd_abs_section_ptr;
1175 /* The value "3" is ad-hoc, somewhat related to the expected number of
1176 DEFINED expressions in a linker script. For most default linker
1177 scripts, there are none. Why a hash table then? Well, it's somewhat
1178 simpler to re-use working machinery than using a linked list in terms
1179 of code-complexity here in ld, besides the initialization which just
1180 looks like other code here. */
1181 if (!bfd_hash_table_init_n (&lang_definedness_table,
1182 lang_definedness_newfunc,
1183 sizeof (struct lang_definedness_hash_entry),
1185 einfo (_("%P%F: can not create hash table: %E\n"));
1188 void
1189 lang_finish (void)
1191 output_section_statement_table_free ();
1194 /*----------------------------------------------------------------------
1195 A region is an area of memory declared with the
1196 MEMORY { name:org=exp, len=exp ... }
1197 syntax.
1199 We maintain a list of all the regions here.
1201 If no regions are specified in the script, then the default is used
1202 which is created when looked up to be the entire data space.
1204 If create is true we are creating a region inside a MEMORY block.
1205 In this case it is probably an error to create a region that has
1206 already been created. If we are not inside a MEMORY block it is
1207 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
1208 and so we issue a warning. */
1210 static lang_memory_region_type *lang_memory_region_list;
1211 static lang_memory_region_type **lang_memory_region_list_tail
1212 = &lang_memory_region_list;
1214 lang_memory_region_type *
1215 lang_memory_region_lookup (const char *const name, bfd_boolean create)
1217 lang_memory_region_type *p;
1218 lang_memory_region_type *new;
1220 /* NAME is NULL for LMA memspecs if no region was specified. */
1221 if (name == NULL)
1222 return NULL;
1224 for (p = lang_memory_region_list; p != NULL; p = p->next)
1225 if (strcmp (p->name, name) == 0)
1227 if (create)
1228 einfo (_("%P:%S: warning: redeclaration of memory region '%s'\n"),
1229 name);
1230 return p;
1233 if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
1234 einfo (_("%P:%S: warning: memory region %s not declared\n"), name);
1236 new = stat_alloc (sizeof (lang_memory_region_type));
1238 new->name = xstrdup (name);
1239 new->next = NULL;
1240 new->origin = 0;
1241 new->length = ~(bfd_size_type) 0;
1242 new->current = 0;
1243 new->last_os = NULL;
1244 new->flags = 0;
1245 new->not_flags = 0;
1246 new->had_full_message = FALSE;
1248 *lang_memory_region_list_tail = new;
1249 lang_memory_region_list_tail = &new->next;
1251 return new;
1254 static lang_memory_region_type *
1255 lang_memory_default (asection *section)
1257 lang_memory_region_type *p;
1259 flagword sec_flags = section->flags;
1261 /* Override SEC_DATA to mean a writable section. */
1262 if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
1263 sec_flags |= SEC_DATA;
1265 for (p = lang_memory_region_list; p != NULL; p = p->next)
1267 if ((p->flags & sec_flags) != 0
1268 && (p->not_flags & sec_flags) == 0)
1270 return p;
1273 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
1276 lang_output_section_statement_type *
1277 lang_output_section_statement_lookup (const char *const name,
1278 int constraint,
1279 bfd_boolean create)
1281 struct out_section_hash_entry *entry;
1283 entry = ((struct out_section_hash_entry *)
1284 bfd_hash_lookup (&output_section_statement_table, name,
1285 create, FALSE));
1286 if (entry == NULL)
1288 if (create)
1289 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1290 return NULL;
1293 if (entry->s.output_section_statement.name != NULL)
1295 /* We have a section of this name, but it might not have the correct
1296 constraint. */
1297 struct out_section_hash_entry *last_ent;
1298 unsigned long hash = entry->root.hash;
1300 if (create && constraint == SPECIAL)
1301 /* Not traversing to the end reverses the order of the second
1302 and subsequent SPECIAL sections in the hash table chain,
1303 but that shouldn't matter. */
1304 last_ent = entry;
1305 else
1308 if (entry->s.output_section_statement.constraint >= 0
1309 && (constraint == 0
1310 || (constraint
1311 == entry->s.output_section_statement.constraint)))
1312 return &entry->s.output_section_statement;
1313 last_ent = entry;
1314 entry = (struct out_section_hash_entry *) entry->root.next;
1316 while (entry != NULL
1317 && entry->root.hash == hash
1318 && strcmp (name, entry->s.output_section_statement.name) == 0);
1320 if (!create)
1321 return NULL;
1323 entry
1324 = ((struct out_section_hash_entry *)
1325 output_section_statement_newfunc (NULL,
1326 &output_section_statement_table,
1327 name));
1328 if (entry == NULL)
1330 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1331 return NULL;
1333 entry->root = last_ent->root;
1334 last_ent->root.next = &entry->root;
1337 entry->s.output_section_statement.name = name;
1338 entry->s.output_section_statement.constraint = constraint;
1339 return &entry->s.output_section_statement;
1342 /* A variant of lang_output_section_find used by place_orphan.
1343 Returns the output statement that should precede a new output
1344 statement for SEC. If an exact match is found on certain flags,
1345 sets *EXACT too. */
1347 lang_output_section_statement_type *
1348 lang_output_section_find_by_flags (const asection *sec,
1349 lang_output_section_statement_type **exact,
1350 lang_match_sec_type_func match_type)
1352 lang_output_section_statement_type *first, *look, *found;
1353 flagword flags;
1355 /* We know the first statement on this list is *ABS*. May as well
1356 skip it. */
1357 first = &lang_output_section_statement.head->output_section_statement;
1358 first = first->next;
1360 /* First try for an exact match. */
1361 found = NULL;
1362 for (look = first; look; look = look->next)
1364 flags = look->flags;
1365 if (look->bfd_section != NULL)
1367 flags = look->bfd_section->flags;
1368 if (match_type && !match_type (link_info.output_bfd,
1369 look->bfd_section,
1370 sec->owner, sec))
1371 continue;
1373 flags ^= sec->flags;
1374 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY
1375 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1376 found = look;
1378 if (found != NULL)
1380 if (exact != NULL)
1381 *exact = found;
1382 return found;
1385 if ((sec->flags & SEC_CODE) != 0
1386 && (sec->flags & SEC_ALLOC) != 0)
1388 /* Try for a rw code section. */
1389 for (look = first; look; look = look->next)
1391 flags = look->flags;
1392 if (look->bfd_section != NULL)
1394 flags = look->bfd_section->flags;
1395 if (match_type && !match_type (link_info.output_bfd,
1396 look->bfd_section,
1397 sec->owner, sec))
1398 continue;
1400 flags ^= sec->flags;
1401 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1402 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1403 found = look;
1406 else if ((sec->flags & (SEC_READONLY | SEC_THREAD_LOCAL)) != 0
1407 && (sec->flags & SEC_ALLOC) != 0)
1409 /* .rodata can go after .text, .sdata2 after .rodata. */
1410 for (look = first; look; look = look->next)
1412 flags = look->flags;
1413 if (look->bfd_section != NULL)
1415 flags = look->bfd_section->flags;
1416 if (match_type && !match_type (link_info.output_bfd,
1417 look->bfd_section,
1418 sec->owner, sec))
1419 continue;
1421 flags ^= sec->flags;
1422 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1423 | SEC_READONLY))
1424 && !(look->flags & (SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1425 found = look;
1428 else if ((sec->flags & SEC_SMALL_DATA) != 0
1429 && (sec->flags & SEC_ALLOC) != 0)
1431 /* .sdata goes after .data, .sbss after .sdata. */
1432 for (look = first; look; look = look->next)
1434 flags = look->flags;
1435 if (look->bfd_section != NULL)
1437 flags = look->bfd_section->flags;
1438 if (match_type && !match_type (link_info.output_bfd,
1439 look->bfd_section,
1440 sec->owner, sec))
1441 continue;
1443 flags ^= sec->flags;
1444 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1445 | SEC_THREAD_LOCAL))
1446 || ((look->flags & SEC_SMALL_DATA)
1447 && !(sec->flags & SEC_HAS_CONTENTS)))
1448 found = look;
1451 else if ((sec->flags & SEC_HAS_CONTENTS) != 0
1452 && (sec->flags & SEC_ALLOC) != 0)
1454 /* .data goes after .rodata. */
1455 for (look = first; look; look = look->next)
1457 flags = look->flags;
1458 if (look->bfd_section != NULL)
1460 flags = look->bfd_section->flags;
1461 if (match_type && !match_type (link_info.output_bfd,
1462 look->bfd_section,
1463 sec->owner, sec))
1464 continue;
1466 flags ^= sec->flags;
1467 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1468 | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1469 found = look;
1472 else if ((sec->flags & SEC_ALLOC) != 0)
1474 /* .bss goes after any other alloc section. */
1475 for (look = first; look; look = look->next)
1477 flags = look->flags;
1478 if (look->bfd_section != NULL)
1480 flags = look->bfd_section->flags;
1481 if (match_type && !match_type (link_info.output_bfd,
1482 look->bfd_section,
1483 sec->owner, sec))
1484 continue;
1486 flags ^= sec->flags;
1487 if (!(flags & SEC_ALLOC))
1488 found = look;
1491 else
1493 /* non-alloc go last. */
1494 for (look = first; look; look = look->next)
1496 flags = look->flags;
1497 if (look->bfd_section != NULL)
1498 flags = look->bfd_section->flags;
1499 flags ^= sec->flags;
1500 if (!(flags & SEC_DEBUGGING))
1501 found = look;
1503 return found;
1506 if (found || !match_type)
1507 return found;
1509 return lang_output_section_find_by_flags (sec, NULL, NULL);
1512 /* Find the last output section before given output statement.
1513 Used by place_orphan. */
1515 static asection *
1516 output_prev_sec_find (lang_output_section_statement_type *os)
1518 lang_output_section_statement_type *lookup;
1520 for (lookup = os->prev; lookup != NULL; lookup = lookup->prev)
1522 if (lookup->constraint < 0)
1523 continue;
1525 if (lookup->bfd_section != NULL && lookup->bfd_section->owner != NULL)
1526 return lookup->bfd_section;
1529 return NULL;
1532 /* Look for a suitable place for a new output section statement. The
1533 idea is to skip over anything that might be inside a SECTIONS {}
1534 statement in a script, before we find another output section
1535 statement. Assignments to "dot" before an output section statement
1536 are assumed to belong to it. An exception to this rule is made for
1537 the first assignment to dot, otherwise we might put an orphan
1538 before . = . + SIZEOF_HEADERS or similar assignments that set the
1539 initial address. */
1541 static lang_statement_union_type **
1542 insert_os_after (lang_output_section_statement_type *after)
1544 lang_statement_union_type **where;
1545 lang_statement_union_type **assign = NULL;
1546 bfd_boolean ignore_first;
1548 ignore_first
1549 = after == &lang_output_section_statement.head->output_section_statement;
1551 for (where = &after->header.next;
1552 *where != NULL;
1553 where = &(*where)->header.next)
1555 switch ((*where)->header.type)
1557 case lang_assignment_statement_enum:
1558 if (assign == NULL)
1560 lang_assignment_statement_type *ass;
1562 ass = &(*where)->assignment_statement;
1563 if (ass->exp->type.node_class != etree_assert
1564 && ass->exp->assign.dst[0] == '.'
1565 && ass->exp->assign.dst[1] == 0
1566 && !ignore_first)
1567 assign = where;
1569 ignore_first = FALSE;
1570 continue;
1571 case lang_wild_statement_enum:
1572 case lang_input_section_enum:
1573 case lang_object_symbols_statement_enum:
1574 case lang_fill_statement_enum:
1575 case lang_data_statement_enum:
1576 case lang_reloc_statement_enum:
1577 case lang_padding_statement_enum:
1578 case lang_constructors_statement_enum:
1579 assign = NULL;
1580 continue;
1581 case lang_output_section_statement_enum:
1582 if (assign != NULL)
1583 where = assign;
1584 break;
1585 case lang_input_statement_enum:
1586 case lang_address_statement_enum:
1587 case lang_target_statement_enum:
1588 case lang_output_statement_enum:
1589 case lang_group_statement_enum:
1590 case lang_insert_statement_enum:
1591 continue;
1593 break;
1596 return where;
1599 lang_output_section_statement_type *
1600 lang_insert_orphan (asection *s,
1601 const char *secname,
1602 int constraint,
1603 lang_output_section_statement_type *after,
1604 struct orphan_save *place,
1605 etree_type *address,
1606 lang_statement_list_type *add_child)
1608 lang_statement_list_type add;
1609 const char *ps;
1610 lang_output_section_statement_type *os;
1611 lang_output_section_statement_type **os_tail;
1613 /* If we have found an appropriate place for the output section
1614 statements for this orphan, add them to our own private list,
1615 inserting them later into the global statement list. */
1616 if (after != NULL)
1618 lang_list_init (&add);
1619 push_stat_ptr (&add);
1622 ps = NULL;
1623 if (config.build_constructors)
1625 /* If the name of the section is representable in C, then create
1626 symbols to mark the start and the end of the section. */
1627 for (ps = secname; *ps != '\0'; ps++)
1628 if (! ISALNUM ((unsigned char) *ps) && *ps != '_')
1629 break;
1630 if (*ps == '\0')
1632 char *symname;
1633 etree_type *e_align;
1635 symname = (char *) xmalloc (ps - secname + sizeof "__start_" + 1);
1636 symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1637 sprintf (symname + (symname[0] != 0), "__start_%s", secname);
1638 e_align = exp_unop (ALIGN_K,
1639 exp_intop ((bfd_vma) 1 << s->alignment_power));
1640 lang_add_assignment (exp_assop ('=', ".", e_align));
1641 lang_add_assignment (exp_provide (symname,
1642 exp_nameop (NAME, "."),
1643 FALSE));
1647 if (link_info.relocatable || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)
1648 address = exp_intop (0);
1650 os_tail = ((lang_output_section_statement_type **)
1651 lang_output_section_statement.tail);
1652 os = lang_enter_output_section_statement (secname, address, 0, NULL, NULL,
1653 NULL, constraint);
1655 if (add_child == NULL)
1656 add_child = &os->children;
1657 lang_add_section (add_child, s, os);
1659 lang_leave_output_section_statement (0, "*default*", NULL, NULL);
1661 if (config.build_constructors && *ps == '\0')
1663 char *symname;
1665 symname = (char *) xmalloc (ps - secname + sizeof "__stop_" + 1);
1666 symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1667 sprintf (symname + (symname[0] != 0), "__stop_%s", secname);
1668 lang_add_assignment (exp_provide (symname,
1669 exp_nameop (NAME, "."),
1670 FALSE));
1673 /* Restore the global list pointer. */
1674 if (after != NULL)
1675 pop_stat_ptr ();
1677 if (after != NULL && os->bfd_section != NULL)
1679 asection *snew, *as;
1681 snew = os->bfd_section;
1683 /* Shuffle the bfd section list to make the output file look
1684 neater. This is really only cosmetic. */
1685 if (place->section == NULL
1686 && after != (&lang_output_section_statement.head
1687 ->output_section_statement))
1689 asection *bfd_section = after->bfd_section;
1691 /* If the output statement hasn't been used to place any input
1692 sections (and thus doesn't have an output bfd_section),
1693 look for the closest prior output statement having an
1694 output section. */
1695 if (bfd_section == NULL)
1696 bfd_section = output_prev_sec_find (after);
1698 if (bfd_section != NULL && bfd_section != snew)
1699 place->section = &bfd_section->next;
1702 if (place->section == NULL)
1703 place->section = &link_info.output_bfd->sections;
1705 as = *place->section;
1707 if (!as)
1709 /* Put the section at the end of the list. */
1711 /* Unlink the section. */
1712 bfd_section_list_remove (link_info.output_bfd, snew);
1714 /* Now tack it back on in the right place. */
1715 bfd_section_list_append (link_info.output_bfd, snew);
1717 else if (as != snew && as->prev != snew)
1719 /* Unlink the section. */
1720 bfd_section_list_remove (link_info.output_bfd, snew);
1722 /* Now tack it back on in the right place. */
1723 bfd_section_list_insert_before (link_info.output_bfd, as, snew);
1726 /* Save the end of this list. Further ophans of this type will
1727 follow the one we've just added. */
1728 place->section = &snew->next;
1730 /* The following is non-cosmetic. We try to put the output
1731 statements in some sort of reasonable order here, because they
1732 determine the final load addresses of the orphan sections.
1733 In addition, placing output statements in the wrong order may
1734 require extra segments. For instance, given a typical
1735 situation of all read-only sections placed in one segment and
1736 following that a segment containing all the read-write
1737 sections, we wouldn't want to place an orphan read/write
1738 section before or amongst the read-only ones. */
1739 if (add.head != NULL)
1741 lang_output_section_statement_type *newly_added_os;
1743 if (place->stmt == NULL)
1745 lang_statement_union_type **where = insert_os_after (after);
1747 *add.tail = *where;
1748 *where = add.head;
1750 place->os_tail = &after->next;
1752 else
1754 /* Put it after the last orphan statement we added. */
1755 *add.tail = *place->stmt;
1756 *place->stmt = add.head;
1759 /* Fix the global list pointer if we happened to tack our
1760 new list at the tail. */
1761 if (*stat_ptr->tail == add.head)
1762 stat_ptr->tail = add.tail;
1764 /* Save the end of this list. */
1765 place->stmt = add.tail;
1767 /* Do the same for the list of output section statements. */
1768 newly_added_os = *os_tail;
1769 *os_tail = NULL;
1770 newly_added_os->prev = (lang_output_section_statement_type *)
1771 ((char *) place->os_tail
1772 - offsetof (lang_output_section_statement_type, next));
1773 newly_added_os->next = *place->os_tail;
1774 if (newly_added_os->next != NULL)
1775 newly_added_os->next->prev = newly_added_os;
1776 *place->os_tail = newly_added_os;
1777 place->os_tail = &newly_added_os->next;
1779 /* Fixing the global list pointer here is a little different.
1780 We added to the list in lang_enter_output_section_statement,
1781 trimmed off the new output_section_statment above when
1782 assigning *os_tail = NULL, but possibly added it back in
1783 the same place when assigning *place->os_tail. */
1784 if (*os_tail == NULL)
1785 lang_output_section_statement.tail
1786 = (lang_statement_union_type **) os_tail;
1789 return os;
1792 static void
1793 lang_map_flags (flagword flag)
1795 if (flag & SEC_ALLOC)
1796 minfo ("a");
1798 if (flag & SEC_CODE)
1799 minfo ("x");
1801 if (flag & SEC_READONLY)
1802 minfo ("r");
1804 if (flag & SEC_DATA)
1805 minfo ("w");
1807 if (flag & SEC_LOAD)
1808 minfo ("l");
1811 void
1812 lang_map (void)
1814 lang_memory_region_type *m;
1815 bfd_boolean dis_header_printed = FALSE;
1816 bfd *p;
1818 LANG_FOR_EACH_INPUT_STATEMENT (file)
1820 asection *s;
1822 if ((file->the_bfd->flags & (BFD_LINKER_CREATED | DYNAMIC)) != 0
1823 || file->just_syms_flag)
1824 continue;
1826 for (s = file->the_bfd->sections; s != NULL; s = s->next)
1827 if ((s->output_section == NULL
1828 || s->output_section->owner != link_info.output_bfd)
1829 && (s->flags & (SEC_LINKER_CREATED | SEC_KEEP)) == 0)
1831 if (! dis_header_printed)
1833 fprintf (config.map_file, _("\nDiscarded input sections\n\n"));
1834 dis_header_printed = TRUE;
1837 print_input_section (s);
1841 minfo (_("\nMemory Configuration\n\n"));
1842 fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
1843 _("Name"), _("Origin"), _("Length"), _("Attributes"));
1845 for (m = lang_memory_region_list; m != NULL; m = m->next)
1847 char buf[100];
1848 int len;
1850 fprintf (config.map_file, "%-16s ", m->name);
1852 sprintf_vma (buf, m->origin);
1853 minfo ("0x%s ", buf);
1854 len = strlen (buf);
1855 while (len < 16)
1857 print_space ();
1858 ++len;
1861 minfo ("0x%V", m->length);
1862 if (m->flags || m->not_flags)
1864 #ifndef BFD64
1865 minfo (" ");
1866 #endif
1867 if (m->flags)
1869 print_space ();
1870 lang_map_flags (m->flags);
1873 if (m->not_flags)
1875 minfo (" !");
1876 lang_map_flags (m->not_flags);
1880 print_nl ();
1883 fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
1885 if (! link_info.reduce_memory_overheads)
1887 obstack_begin (&map_obstack, 1000);
1888 for (p = link_info.input_bfds; p != (bfd *) NULL; p = p->link_next)
1889 bfd_map_over_sections (p, init_map_userdata, 0);
1890 bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0);
1892 lang_statement_iteration ++;
1893 print_statements ();
1896 static void
1897 init_map_userdata (bfd *abfd ATTRIBUTE_UNUSED,
1898 asection *sec,
1899 void *data ATTRIBUTE_UNUSED)
1901 fat_section_userdata_type *new_data
1902 = ((fat_section_userdata_type *) (stat_alloc
1903 (sizeof (fat_section_userdata_type))));
1905 ASSERT (get_userdata (sec) == NULL);
1906 get_userdata (sec) = new_data;
1907 new_data->map_symbol_def_tail = &new_data->map_symbol_def_head;
1910 static bfd_boolean
1911 sort_def_symbol (struct bfd_link_hash_entry *hash_entry,
1912 void *info ATTRIBUTE_UNUSED)
1914 if (hash_entry->type == bfd_link_hash_defined
1915 || hash_entry->type == bfd_link_hash_defweak)
1917 struct fat_user_section_struct *ud;
1918 struct map_symbol_def *def;
1920 ud = get_userdata (hash_entry->u.def.section);
1921 if (! ud)
1923 /* ??? What do we have to do to initialize this beforehand? */
1924 /* The first time we get here is bfd_abs_section... */
1925 init_map_userdata (0, hash_entry->u.def.section, 0);
1926 ud = get_userdata (hash_entry->u.def.section);
1928 else if (!ud->map_symbol_def_tail)
1929 ud->map_symbol_def_tail = &ud->map_symbol_def_head;
1931 def = obstack_alloc (&map_obstack, sizeof *def);
1932 def->entry = hash_entry;
1933 *(ud->map_symbol_def_tail) = def;
1934 ud->map_symbol_def_tail = &def->next;
1936 return TRUE;
1939 /* Initialize an output section. */
1941 static void
1942 init_os (lang_output_section_statement_type *s, asection *isec,
1943 flagword flags)
1945 if (s->bfd_section != NULL)
1946 return;
1948 if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
1949 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
1951 if (s->constraint != SPECIAL)
1952 s->bfd_section = bfd_get_section_by_name (link_info.output_bfd, s->name);
1953 if (s->bfd_section == NULL)
1954 s->bfd_section = bfd_make_section_anyway_with_flags (link_info.output_bfd,
1955 s->name, flags);
1956 if (s->bfd_section == NULL)
1958 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
1959 link_info.output_bfd->xvec->name, s->name);
1961 s->bfd_section->output_section = s->bfd_section;
1962 s->bfd_section->output_offset = 0;
1964 if (!link_info.reduce_memory_overheads)
1966 fat_section_userdata_type *new
1967 = stat_alloc (sizeof (fat_section_userdata_type));
1968 memset (new, 0, sizeof (fat_section_userdata_type));
1969 get_userdata (s->bfd_section) = new;
1972 /* If there is a base address, make sure that any sections it might
1973 mention are initialized. */
1974 if (s->addr_tree != NULL)
1975 exp_init_os (s->addr_tree);
1977 if (s->load_base != NULL)
1978 exp_init_os (s->load_base);
1980 /* If supplied an alignment, set it. */
1981 if (s->section_alignment != -1)
1982 s->bfd_section->alignment_power = s->section_alignment;
1984 if (isec)
1985 bfd_init_private_section_data (isec->owner, isec,
1986 link_info.output_bfd, s->bfd_section,
1987 &link_info);
1990 /* Make sure that all output sections mentioned in an expression are
1991 initialized. */
1993 static void
1994 exp_init_os (etree_type *exp)
1996 switch (exp->type.node_class)
1998 case etree_assign:
1999 case etree_provide:
2000 exp_init_os (exp->assign.src);
2001 break;
2003 case etree_binary:
2004 exp_init_os (exp->binary.lhs);
2005 exp_init_os (exp->binary.rhs);
2006 break;
2008 case etree_trinary:
2009 exp_init_os (exp->trinary.cond);
2010 exp_init_os (exp->trinary.lhs);
2011 exp_init_os (exp->trinary.rhs);
2012 break;
2014 case etree_assert:
2015 exp_init_os (exp->assert_s.child);
2016 break;
2018 case etree_unary:
2019 exp_init_os (exp->unary.child);
2020 break;
2022 case etree_name:
2023 switch (exp->type.node_code)
2025 case ADDR:
2026 case LOADADDR:
2027 case SIZEOF:
2029 lang_output_section_statement_type *os;
2031 os = lang_output_section_find (exp->name.name);
2032 if (os != NULL && os->bfd_section == NULL)
2033 init_os (os, NULL, 0);
2036 break;
2038 default:
2039 break;
2043 static void
2044 section_already_linked (bfd *abfd, asection *sec, void *data)
2046 lang_input_statement_type *entry = data;
2048 /* If we are only reading symbols from this object, then we want to
2049 discard all sections. */
2050 if (entry->just_syms_flag)
2052 bfd_link_just_syms (abfd, sec, &link_info);
2053 return;
2056 if (!(abfd->flags & DYNAMIC))
2057 bfd_section_already_linked (abfd, sec, &link_info);
2060 /* The wild routines.
2062 These expand statements like *(.text) and foo.o to a list of
2063 explicit actions, like foo.o(.text), bar.o(.text) and
2064 foo.o(.text, .data). */
2066 /* Add SECTION to the output section OUTPUT. Do this by creating a
2067 lang_input_section statement which is placed at PTR. FILE is the
2068 input file which holds SECTION. */
2070 void
2071 lang_add_section (lang_statement_list_type *ptr,
2072 asection *section,
2073 lang_output_section_statement_type *output)
2075 flagword flags = section->flags;
2076 bfd_boolean discard;
2078 /* Discard sections marked with SEC_EXCLUDE. */
2079 discard = (flags & SEC_EXCLUDE) != 0;
2081 /* Discard input sections which are assigned to a section named
2082 DISCARD_SECTION_NAME. */
2083 if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
2084 discard = TRUE;
2086 /* Discard debugging sections if we are stripping debugging
2087 information. */
2088 if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
2089 && (flags & SEC_DEBUGGING) != 0)
2090 discard = TRUE;
2092 if (discard)
2094 if (section->output_section == NULL)
2096 /* This prevents future calls from assigning this section. */
2097 section->output_section = bfd_abs_section_ptr;
2099 return;
2102 if (section->output_section == NULL)
2104 bfd_boolean first;
2105 lang_input_section_type *new;
2106 flagword flags;
2108 flags = section->flags;
2110 /* We don't copy the SEC_NEVER_LOAD flag from an input section
2111 to an output section, because we want to be able to include a
2112 SEC_NEVER_LOAD section in the middle of an otherwise loaded
2113 section (I don't know why we want to do this, but we do).
2114 build_link_order in ldwrite.c handles this case by turning
2115 the embedded SEC_NEVER_LOAD section into a fill. */
2117 flags &= ~ SEC_NEVER_LOAD;
2119 switch (output->sectype)
2121 case normal_section:
2122 case overlay_section:
2123 break;
2124 case noalloc_section:
2125 flags &= ~SEC_ALLOC;
2126 break;
2127 case noload_section:
2128 flags &= ~SEC_LOAD;
2129 flags |= SEC_NEVER_LOAD;
2130 break;
2133 if (output->bfd_section == NULL)
2134 init_os (output, section, flags);
2136 first = ! output->bfd_section->linker_has_input;
2137 output->bfd_section->linker_has_input = 1;
2139 if (!link_info.relocatable
2140 && !stripped_excluded_sections)
2142 asection *s = output->bfd_section->map_tail.s;
2143 output->bfd_section->map_tail.s = section;
2144 section->map_head.s = NULL;
2145 section->map_tail.s = s;
2146 if (s != NULL)
2147 s->map_head.s = section;
2148 else
2149 output->bfd_section->map_head.s = section;
2152 /* Add a section reference to the list. */
2153 new = new_stat (lang_input_section, ptr);
2155 new->section = section;
2156 section->output_section = output->bfd_section;
2158 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
2159 already been processed. One reason to do this is that on pe
2160 format targets, .text$foo sections go into .text and it's odd
2161 to see .text with SEC_LINK_ONCE set. */
2163 if (! link_info.relocatable)
2164 flags &= ~ (SEC_LINK_ONCE | SEC_LINK_DUPLICATES);
2166 /* If this is not the first input section, and the SEC_READONLY
2167 flag is not currently set, then don't set it just because the
2168 input section has it set. */
2170 if (! first && (output->bfd_section->flags & SEC_READONLY) == 0)
2171 flags &= ~ SEC_READONLY;
2173 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
2174 if (! first
2175 && ((output->bfd_section->flags & (SEC_MERGE | SEC_STRINGS))
2176 != (flags & (SEC_MERGE | SEC_STRINGS))
2177 || ((flags & SEC_MERGE)
2178 && output->bfd_section->entsize != section->entsize)))
2180 output->bfd_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
2181 flags &= ~ (SEC_MERGE | SEC_STRINGS);
2184 output->bfd_section->flags |= flags;
2186 if (flags & SEC_MERGE)
2187 output->bfd_section->entsize = section->entsize;
2189 /* If SEC_READONLY is not set in the input section, then clear
2190 it from the output section. */
2191 if ((section->flags & SEC_READONLY) == 0)
2192 output->bfd_section->flags &= ~SEC_READONLY;
2194 /* Copy over SEC_SMALL_DATA. */
2195 if (section->flags & SEC_SMALL_DATA)
2196 output->bfd_section->flags |= SEC_SMALL_DATA;
2198 if (section->alignment_power > output->bfd_section->alignment_power)
2199 output->bfd_section->alignment_power = section->alignment_power;
2201 if (bfd_get_arch (section->owner) == bfd_arch_tic54x
2202 && (section->flags & SEC_TIC54X_BLOCK) != 0)
2204 output->bfd_section->flags |= SEC_TIC54X_BLOCK;
2205 /* FIXME: This value should really be obtained from the bfd... */
2206 output->block_value = 128;
2211 /* Handle wildcard sorting. This returns the lang_input_section which
2212 should follow the one we are going to create for SECTION and FILE,
2213 based on the sorting requirements of WILD. It returns NULL if the
2214 new section should just go at the end of the current list. */
2216 static lang_statement_union_type *
2217 wild_sort (lang_wild_statement_type *wild,
2218 struct wildcard_list *sec,
2219 lang_input_statement_type *file,
2220 asection *section)
2222 const char *section_name;
2223 lang_statement_union_type *l;
2225 if (!wild->filenames_sorted
2226 && (sec == NULL || sec->spec.sorted == none))
2227 return NULL;
2229 section_name = bfd_get_section_name (file->the_bfd, section);
2230 for (l = wild->children.head; l != NULL; l = l->header.next)
2232 lang_input_section_type *ls;
2234 if (l->header.type != lang_input_section_enum)
2235 continue;
2236 ls = &l->input_section;
2238 /* Sorting by filename takes precedence over sorting by section
2239 name. */
2241 if (wild->filenames_sorted)
2243 const char *fn, *ln;
2244 bfd_boolean fa, la;
2245 int i;
2247 /* The PE support for the .idata section as generated by
2248 dlltool assumes that files will be sorted by the name of
2249 the archive and then the name of the file within the
2250 archive. */
2252 if (file->the_bfd != NULL
2253 && bfd_my_archive (file->the_bfd) != NULL)
2255 fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
2256 fa = TRUE;
2258 else
2260 fn = file->filename;
2261 fa = FALSE;
2264 if (bfd_my_archive (ls->section->owner) != NULL)
2266 ln = bfd_get_filename (bfd_my_archive (ls->section->owner));
2267 la = TRUE;
2269 else
2271 ln = ls->section->owner->filename;
2272 la = FALSE;
2275 i = strcmp (fn, ln);
2276 if (i > 0)
2277 continue;
2278 else if (i < 0)
2279 break;
2281 if (fa || la)
2283 if (fa)
2284 fn = file->filename;
2285 if (la)
2286 ln = ls->section->owner->filename;
2288 i = strcmp (fn, ln);
2289 if (i > 0)
2290 continue;
2291 else if (i < 0)
2292 break;
2296 /* Here either the files are not sorted by name, or we are
2297 looking at the sections for this file. */
2299 if (sec != NULL && sec->spec.sorted != none)
2300 if (compare_section (sec->spec.sorted, section, ls->section) < 0)
2301 break;
2304 return l;
2307 /* Expand a wild statement for a particular FILE. SECTION may be
2308 NULL, in which case it is a wild card. */
2310 static void
2311 output_section_callback (lang_wild_statement_type *ptr,
2312 struct wildcard_list *sec,
2313 asection *section,
2314 lang_input_statement_type *file,
2315 void *output)
2317 lang_statement_union_type *before;
2319 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2320 if (unique_section_p (section))
2321 return;
2323 before = wild_sort (ptr, sec, file, section);
2325 /* Here BEFORE points to the lang_input_section which
2326 should follow the one we are about to add. If BEFORE
2327 is NULL, then the section should just go at the end
2328 of the current list. */
2330 if (before == NULL)
2331 lang_add_section (&ptr->children, section,
2332 (lang_output_section_statement_type *) output);
2333 else
2335 lang_statement_list_type list;
2336 lang_statement_union_type **pp;
2338 lang_list_init (&list);
2339 lang_add_section (&list, section,
2340 (lang_output_section_statement_type *) output);
2342 /* If we are discarding the section, LIST.HEAD will
2343 be NULL. */
2344 if (list.head != NULL)
2346 ASSERT (list.head->header.next == NULL);
2348 for (pp = &ptr->children.head;
2349 *pp != before;
2350 pp = &(*pp)->header.next)
2351 ASSERT (*pp != NULL);
2353 list.head->header.next = *pp;
2354 *pp = list.head;
2359 /* Check if all sections in a wild statement for a particular FILE
2360 are readonly. */
2362 static void
2363 check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
2364 struct wildcard_list *sec ATTRIBUTE_UNUSED,
2365 asection *section,
2366 lang_input_statement_type *file ATTRIBUTE_UNUSED,
2367 void *data)
2369 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2370 if (unique_section_p (section))
2371 return;
2373 if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0)
2374 ((lang_output_section_statement_type *) data)->all_input_readonly = FALSE;
2377 /* This is passed a file name which must have been seen already and
2378 added to the statement tree. We will see if it has been opened
2379 already and had its symbols read. If not then we'll read it. */
2381 static lang_input_statement_type *
2382 lookup_name (const char *name)
2384 lang_input_statement_type *search;
2386 for (search = (lang_input_statement_type *) input_file_chain.head;
2387 search != NULL;
2388 search = (lang_input_statement_type *) search->next_real_file)
2390 /* Use the local_sym_name as the name of the file that has
2391 already been loaded as filename might have been transformed
2392 via the search directory lookup mechanism. */
2393 const char *filename = search->local_sym_name;
2395 if (filename != NULL
2396 && strcmp (filename, name) == 0)
2397 break;
2400 if (search == NULL)
2401 search = new_afile (name, lang_input_file_is_search_file_enum,
2402 default_target, FALSE);
2404 /* If we have already added this file, or this file is not real
2405 don't add this file. */
2406 if (search->loaded || !search->real)
2407 return search;
2409 if (! load_symbols (search, NULL))
2410 return NULL;
2412 return search;
2415 /* Save LIST as a list of libraries whose symbols should not be exported. */
2417 struct excluded_lib
2419 char *name;
2420 struct excluded_lib *next;
2422 static struct excluded_lib *excluded_libs;
2424 void
2425 add_excluded_libs (const char *list)
2427 const char *p = list, *end;
2429 while (*p != '\0')
2431 struct excluded_lib *entry;
2432 end = strpbrk (p, ",:");
2433 if (end == NULL)
2434 end = p + strlen (p);
2435 entry = xmalloc (sizeof (*entry));
2436 entry->next = excluded_libs;
2437 entry->name = xmalloc (end - p + 1);
2438 memcpy (entry->name, p, end - p);
2439 entry->name[end - p] = '\0';
2440 excluded_libs = entry;
2441 if (*end == '\0')
2442 break;
2443 p = end + 1;
2447 static void
2448 check_excluded_libs (bfd *abfd)
2450 struct excluded_lib *lib = excluded_libs;
2452 while (lib)
2454 int len = strlen (lib->name);
2455 const char *filename = lbasename (abfd->filename);
2457 if (strcmp (lib->name, "ALL") == 0)
2459 abfd->no_export = TRUE;
2460 return;
2463 if (strncmp (lib->name, filename, len) == 0
2464 && (filename[len] == '\0'
2465 || (filename[len] == '.' && filename[len + 1] == 'a'
2466 && filename[len + 2] == '\0')))
2468 abfd->no_export = TRUE;
2469 return;
2472 lib = lib->next;
2476 /* Get the symbols for an input file. */
2478 bfd_boolean
2479 load_symbols (lang_input_statement_type *entry,
2480 lang_statement_list_type *place)
2482 char **matching;
2484 if (entry->loaded)
2485 return TRUE;
2487 ldfile_open_file (entry);
2489 if (! bfd_check_format (entry->the_bfd, bfd_archive)
2490 && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
2492 bfd_error_type err;
2493 bfd_boolean save_ldlang_sysrooted_script;
2494 bfd_boolean save_as_needed, save_add_needed;
2496 err = bfd_get_error ();
2498 /* See if the emulation has some special knowledge. */
2499 if (ldemul_unrecognized_file (entry))
2500 return TRUE;
2502 if (err == bfd_error_file_ambiguously_recognized)
2504 char **p;
2506 einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
2507 einfo (_("%B: matching formats:"), entry->the_bfd);
2508 for (p = matching; *p != NULL; p++)
2509 einfo (" %s", *p);
2510 einfo ("%F\n");
2512 else if (err != bfd_error_file_not_recognized
2513 || place == NULL)
2514 einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
2516 bfd_close (entry->the_bfd);
2517 entry->the_bfd = NULL;
2519 /* Try to interpret the file as a linker script. */
2520 ldfile_open_command_file (entry->filename);
2522 push_stat_ptr (place);
2523 save_ldlang_sysrooted_script = ldlang_sysrooted_script;
2524 ldlang_sysrooted_script = entry->sysrooted;
2525 save_as_needed = as_needed;
2526 as_needed = entry->as_needed;
2527 save_add_needed = add_needed;
2528 add_needed = entry->add_needed;
2530 ldfile_assumed_script = TRUE;
2531 parser_input = input_script;
2532 /* We want to use the same -Bdynamic/-Bstatic as the one for
2533 ENTRY. */
2534 config.dynamic_link = entry->dynamic;
2535 yyparse ();
2536 ldfile_assumed_script = FALSE;
2538 ldlang_sysrooted_script = save_ldlang_sysrooted_script;
2539 as_needed = save_as_needed;
2540 add_needed = save_add_needed;
2541 pop_stat_ptr ();
2543 return TRUE;
2546 if (ldemul_recognized_file (entry))
2547 return TRUE;
2549 /* We don't call ldlang_add_file for an archive. Instead, the
2550 add_symbols entry point will call ldlang_add_file, via the
2551 add_archive_element callback, for each element of the archive
2552 which is used. */
2553 switch (bfd_get_format (entry->the_bfd))
2555 default:
2556 break;
2558 case bfd_object:
2559 ldlang_add_file (entry);
2560 if (trace_files || trace_file_tries)
2561 info_msg ("%I\n", entry);
2562 break;
2564 case bfd_archive:
2565 check_excluded_libs (entry->the_bfd);
2567 if (entry->whole_archive)
2569 bfd *member = NULL;
2570 bfd_boolean loaded = TRUE;
2572 for (;;)
2574 member = bfd_openr_next_archived_file (entry->the_bfd, member);
2576 if (member == NULL)
2577 break;
2579 if (! bfd_check_format (member, bfd_object))
2581 einfo (_("%F%B: member %B in archive is not an object\n"),
2582 entry->the_bfd, member);
2583 loaded = FALSE;
2586 if (! ((*link_info.callbacks->add_archive_element)
2587 (&link_info, member, "--whole-archive")))
2588 abort ();
2590 if (! bfd_link_add_symbols (member, &link_info))
2592 einfo (_("%F%B: could not read symbols: %E\n"), member);
2593 loaded = FALSE;
2597 entry->loaded = loaded;
2598 return loaded;
2600 break;
2603 if (bfd_link_add_symbols (entry->the_bfd, &link_info))
2604 entry->loaded = TRUE;
2605 else
2606 einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
2608 return entry->loaded;
2611 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
2612 may be NULL, indicating that it is a wildcard. Separate
2613 lang_input_section statements are created for each part of the
2614 expansion; they are added after the wild statement S. OUTPUT is
2615 the output section. */
2617 static void
2618 wild (lang_wild_statement_type *s,
2619 const char *target ATTRIBUTE_UNUSED,
2620 lang_output_section_statement_type *output)
2622 struct wildcard_list *sec;
2624 if (s->handler_data[0]
2625 && s->handler_data[0]->spec.sorted == by_name
2626 && !s->filenames_sorted)
2628 lang_section_bst_type *tree;
2630 walk_wild (s, output_section_callback_fast, output);
2632 tree = s->tree;
2633 if (tree)
2635 output_section_callback_tree_to_list (s, tree, output);
2636 s->tree = NULL;
2639 else
2640 walk_wild (s, output_section_callback, output);
2642 if (default_common_section == NULL)
2643 for (sec = s->section_list; sec != NULL; sec = sec->next)
2644 if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
2646 /* Remember the section that common is going to in case we
2647 later get something which doesn't know where to put it. */
2648 default_common_section = output;
2649 break;
2653 /* Return TRUE iff target is the sought target. */
2655 static int
2656 get_target (const bfd_target *target, void *data)
2658 const char *sought = data;
2660 return strcmp (target->name, sought) == 0;
2663 /* Like strcpy() but convert to lower case as well. */
2665 static void
2666 stricpy (char *dest, char *src)
2668 char c;
2670 while ((c = *src++) != 0)
2671 *dest++ = TOLOWER (c);
2673 *dest = 0;
2676 /* Remove the first occurrence of needle (if any) in haystack
2677 from haystack. */
2679 static void
2680 strcut (char *haystack, char *needle)
2682 haystack = strstr (haystack, needle);
2684 if (haystack)
2686 char *src;
2688 for (src = haystack + strlen (needle); *src;)
2689 *haystack++ = *src++;
2691 *haystack = 0;
2695 /* Compare two target format name strings.
2696 Return a value indicating how "similar" they are. */
2698 static int
2699 name_compare (char *first, char *second)
2701 char *copy1;
2702 char *copy2;
2703 int result;
2705 copy1 = xmalloc (strlen (first) + 1);
2706 copy2 = xmalloc (strlen (second) + 1);
2708 /* Convert the names to lower case. */
2709 stricpy (copy1, first);
2710 stricpy (copy2, second);
2712 /* Remove size and endian strings from the name. */
2713 strcut (copy1, "big");
2714 strcut (copy1, "little");
2715 strcut (copy2, "big");
2716 strcut (copy2, "little");
2718 /* Return a value based on how many characters match,
2719 starting from the beginning. If both strings are
2720 the same then return 10 * their length. */
2721 for (result = 0; copy1[result] == copy2[result]; result++)
2722 if (copy1[result] == 0)
2724 result *= 10;
2725 break;
2728 free (copy1);
2729 free (copy2);
2731 return result;
2734 /* Set by closest_target_match() below. */
2735 static const bfd_target *winner;
2737 /* Scan all the valid bfd targets looking for one that has the endianness
2738 requirement that was specified on the command line, and is the nearest
2739 match to the original output target. */
2741 static int
2742 closest_target_match (const bfd_target *target, void *data)
2744 const bfd_target *original = data;
2746 if (command_line.endian == ENDIAN_BIG
2747 && target->byteorder != BFD_ENDIAN_BIG)
2748 return 0;
2750 if (command_line.endian == ENDIAN_LITTLE
2751 && target->byteorder != BFD_ENDIAN_LITTLE)
2752 return 0;
2754 /* Must be the same flavour. */
2755 if (target->flavour != original->flavour)
2756 return 0;
2758 /* Ignore generic big and little endian elf vectors. */
2759 if (strcmp (target->name, "elf32-big") == 0
2760 || strcmp (target->name, "elf64-big") == 0
2761 || strcmp (target->name, "elf32-little") == 0
2762 || strcmp (target->name, "elf64-little") == 0)
2763 return 0;
2765 /* If we have not found a potential winner yet, then record this one. */
2766 if (winner == NULL)
2768 winner = target;
2769 return 0;
2772 /* Oh dear, we now have two potential candidates for a successful match.
2773 Compare their names and choose the better one. */
2774 if (name_compare (target->name, original->name)
2775 > name_compare (winner->name, original->name))
2776 winner = target;
2778 /* Keep on searching until wqe have checked them all. */
2779 return 0;
2782 /* Return the BFD target format of the first input file. */
2784 static char *
2785 get_first_input_target (void)
2787 char *target = NULL;
2789 LANG_FOR_EACH_INPUT_STATEMENT (s)
2791 if (s->header.type == lang_input_statement_enum
2792 && s->real)
2794 ldfile_open_file (s);
2796 if (s->the_bfd != NULL
2797 && bfd_check_format (s->the_bfd, bfd_object))
2799 target = bfd_get_target (s->the_bfd);
2801 if (target != NULL)
2802 break;
2807 return target;
2810 const char *
2811 lang_get_output_target (void)
2813 const char *target;
2815 /* Has the user told us which output format to use? */
2816 if (output_target != NULL)
2817 return output_target;
2819 /* No - has the current target been set to something other than
2820 the default? */
2821 if (current_target != default_target)
2822 return current_target;
2824 /* No - can we determine the format of the first input file? */
2825 target = get_first_input_target ();
2826 if (target != NULL)
2827 return target;
2829 /* Failed - use the default output target. */
2830 return default_target;
2833 /* Open the output file. */
2835 static void
2836 open_output (const char *name)
2838 output_target = lang_get_output_target ();
2840 /* Has the user requested a particular endianness on the command
2841 line? */
2842 if (command_line.endian != ENDIAN_UNSET)
2844 const bfd_target *target;
2845 enum bfd_endian desired_endian;
2847 /* Get the chosen target. */
2848 target = bfd_search_for_target (get_target, (void *) output_target);
2850 /* If the target is not supported, we cannot do anything. */
2851 if (target != NULL)
2853 if (command_line.endian == ENDIAN_BIG)
2854 desired_endian = BFD_ENDIAN_BIG;
2855 else
2856 desired_endian = BFD_ENDIAN_LITTLE;
2858 /* See if the target has the wrong endianness. This should
2859 not happen if the linker script has provided big and
2860 little endian alternatives, but some scrips don't do
2861 this. */
2862 if (target->byteorder != desired_endian)
2864 /* If it does, then see if the target provides
2865 an alternative with the correct endianness. */
2866 if (target->alternative_target != NULL
2867 && (target->alternative_target->byteorder == desired_endian))
2868 output_target = target->alternative_target->name;
2869 else
2871 /* Try to find a target as similar as possible to
2872 the default target, but which has the desired
2873 endian characteristic. */
2874 bfd_search_for_target (closest_target_match,
2875 (void *) target);
2877 /* Oh dear - we could not find any targets that
2878 satisfy our requirements. */
2879 if (winner == NULL)
2880 einfo (_("%P: warning: could not find any targets"
2881 " that match endianness requirement\n"));
2882 else
2883 output_target = winner->name;
2889 link_info.output_bfd = bfd_openw (name, output_target);
2891 if (link_info.output_bfd == NULL)
2893 if (bfd_get_error () == bfd_error_invalid_target)
2894 einfo (_("%P%F: target %s not found\n"), output_target);
2896 einfo (_("%P%F: cannot open output file %s: %E\n"), name);
2899 delete_output_file_on_failure = TRUE;
2901 if (! bfd_set_format (link_info.output_bfd, bfd_object))
2902 einfo (_("%P%F:%s: can not make object file: %E\n"), name);
2903 if (! bfd_set_arch_mach (link_info.output_bfd,
2904 ldfile_output_architecture,
2905 ldfile_output_machine))
2906 einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
2908 link_info.hash = bfd_link_hash_table_create (link_info.output_bfd);
2909 if (link_info.hash == NULL)
2910 einfo (_("%P%F: can not create hash table: %E\n"));
2912 bfd_set_gp_size (link_info.output_bfd, g_switch_value);
2915 static void
2916 ldlang_open_output (lang_statement_union_type *statement)
2918 switch (statement->header.type)
2920 case lang_output_statement_enum:
2921 ASSERT (link_info.output_bfd == NULL);
2922 open_output (statement->output_statement.name);
2923 ldemul_set_output_arch ();
2924 if (config.magic_demand_paged && !link_info.relocatable)
2925 link_info.output_bfd->flags |= D_PAGED;
2926 else
2927 link_info.output_bfd->flags &= ~D_PAGED;
2928 if (config.text_read_only)
2929 link_info.output_bfd->flags |= WP_TEXT;
2930 else
2931 link_info.output_bfd->flags &= ~WP_TEXT;
2932 if (link_info.traditional_format)
2933 link_info.output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
2934 else
2935 link_info.output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
2936 break;
2938 case lang_target_statement_enum:
2939 current_target = statement->target_statement.target;
2940 break;
2941 default:
2942 break;
2946 /* Convert between addresses in bytes and sizes in octets.
2947 For currently supported targets, octets_per_byte is always a power
2948 of two, so we can use shifts. */
2949 #define TO_ADDR(X) ((X) >> opb_shift)
2950 #define TO_SIZE(X) ((X) << opb_shift)
2952 /* Support the above. */
2953 static unsigned int opb_shift = 0;
2955 static void
2956 init_opb (void)
2958 unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
2959 ldfile_output_machine);
2960 opb_shift = 0;
2961 if (x > 1)
2962 while ((x & 1) == 0)
2964 x >>= 1;
2965 ++opb_shift;
2967 ASSERT (x == 1);
2970 /* Open all the input files. */
2972 static void
2973 open_input_bfds (lang_statement_union_type *s, bfd_boolean force)
2975 for (; s != NULL; s = s->header.next)
2977 switch (s->header.type)
2979 case lang_constructors_statement_enum:
2980 open_input_bfds (constructor_list.head, force);
2981 break;
2982 case lang_output_section_statement_enum:
2983 open_input_bfds (s->output_section_statement.children.head, force);
2984 break;
2985 case lang_wild_statement_enum:
2986 /* Maybe we should load the file's symbols. */
2987 if (s->wild_statement.filename
2988 && !wildcardp (s->wild_statement.filename)
2989 && !archive_path (s->wild_statement.filename))
2990 lookup_name (s->wild_statement.filename);
2991 open_input_bfds (s->wild_statement.children.head, force);
2992 break;
2993 case lang_group_statement_enum:
2995 struct bfd_link_hash_entry *undefs;
2997 /* We must continually search the entries in the group
2998 until no new symbols are added to the list of undefined
2999 symbols. */
3003 undefs = link_info.hash->undefs_tail;
3004 open_input_bfds (s->group_statement.children.head, TRUE);
3006 while (undefs != link_info.hash->undefs_tail);
3008 break;
3009 case lang_target_statement_enum:
3010 current_target = s->target_statement.target;
3011 break;
3012 case lang_input_statement_enum:
3013 if (s->input_statement.real)
3015 lang_statement_union_type **os_tail;
3016 lang_statement_list_type add;
3018 s->input_statement.target = current_target;
3020 /* If we are being called from within a group, and this
3021 is an archive which has already been searched, then
3022 force it to be researched unless the whole archive
3023 has been loaded already. */
3024 if (force
3025 && !s->input_statement.whole_archive
3026 && s->input_statement.loaded
3027 && bfd_check_format (s->input_statement.the_bfd,
3028 bfd_archive))
3029 s->input_statement.loaded = FALSE;
3031 os_tail = lang_output_section_statement.tail;
3032 lang_list_init (&add);
3034 if (! load_symbols (&s->input_statement, &add))
3035 config.make_executable = FALSE;
3037 if (add.head != NULL)
3039 /* If this was a script with output sections then
3040 tack any added statements on to the end of the
3041 list. This avoids having to reorder the output
3042 section statement list. Very likely the user
3043 forgot -T, and whatever we do here will not meet
3044 naive user expectations. */
3045 if (os_tail != lang_output_section_statement.tail)
3047 einfo (_("%P: warning: %s contains output sections;"
3048 " did you forget -T?\n"),
3049 s->input_statement.filename);
3050 *stat_ptr->tail = add.head;
3051 stat_ptr->tail = add.tail;
3053 else
3055 *add.tail = s->header.next;
3056 s->header.next = add.head;
3060 break;
3061 default:
3062 break;
3067 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
3069 void
3070 lang_track_definedness (const char *name)
3072 if (bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE) == NULL)
3073 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
3076 /* New-function for the definedness hash table. */
3078 static struct bfd_hash_entry *
3079 lang_definedness_newfunc (struct bfd_hash_entry *entry,
3080 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
3081 const char *name ATTRIBUTE_UNUSED)
3083 struct lang_definedness_hash_entry *ret
3084 = (struct lang_definedness_hash_entry *) entry;
3086 if (ret == NULL)
3087 ret = (struct lang_definedness_hash_entry *)
3088 bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
3090 if (ret == NULL)
3091 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
3093 ret->iteration = -1;
3094 return &ret->root;
3097 /* Return the iteration when the definition of NAME was last updated. A
3098 value of -1 means that the symbol is not defined in the linker script
3099 or the command line, but may be defined in the linker symbol table. */
3102 lang_symbol_definition_iteration (const char *name)
3104 struct lang_definedness_hash_entry *defentry
3105 = (struct lang_definedness_hash_entry *)
3106 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
3108 /* We've already created this one on the presence of DEFINED in the
3109 script, so it can't be NULL unless something is borked elsewhere in
3110 the code. */
3111 if (defentry == NULL)
3112 FAIL ();
3114 return defentry->iteration;
3117 /* Update the definedness state of NAME. */
3119 void
3120 lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
3122 struct lang_definedness_hash_entry *defentry
3123 = (struct lang_definedness_hash_entry *)
3124 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
3126 /* We don't keep track of symbols not tested with DEFINED. */
3127 if (defentry == NULL)
3128 return;
3130 /* If the symbol was already defined, and not from an earlier statement
3131 iteration, don't update the definedness iteration, because that'd
3132 make the symbol seem defined in the linker script at this point, and
3133 it wasn't; it was defined in some object. If we do anyway, DEFINED
3134 would start to yield false before this point and the construct "sym =
3135 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
3136 in an object. */
3137 if (h->type != bfd_link_hash_undefined
3138 && h->type != bfd_link_hash_common
3139 && h->type != bfd_link_hash_new
3140 && defentry->iteration == -1)
3141 return;
3143 defentry->iteration = lang_statement_iteration;
3146 /* Add the supplied name to the symbol table as an undefined reference.
3147 This is a two step process as the symbol table doesn't even exist at
3148 the time the ld command line is processed. First we put the name
3149 on a list, then, once the output file has been opened, transfer the
3150 name to the symbol table. */
3152 typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
3154 #define ldlang_undef_chain_list_head entry_symbol.next
3156 void
3157 ldlang_add_undef (const char *const name)
3159 ldlang_undef_chain_list_type *new =
3160 stat_alloc (sizeof (ldlang_undef_chain_list_type));
3162 new->next = ldlang_undef_chain_list_head;
3163 ldlang_undef_chain_list_head = new;
3165 new->name = xstrdup (name);
3167 if (link_info.output_bfd != NULL)
3168 insert_undefined (new->name);
3171 /* Insert NAME as undefined in the symbol table. */
3173 static void
3174 insert_undefined (const char *name)
3176 struct bfd_link_hash_entry *h;
3178 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
3179 if (h == NULL)
3180 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
3181 if (h->type == bfd_link_hash_new)
3183 h->type = bfd_link_hash_undefined;
3184 h->u.undef.abfd = NULL;
3185 bfd_link_add_undef (link_info.hash, h);
3189 /* Run through the list of undefineds created above and place them
3190 into the linker hash table as undefined symbols belonging to the
3191 script file. */
3193 static void
3194 lang_place_undefineds (void)
3196 ldlang_undef_chain_list_type *ptr;
3198 for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
3199 insert_undefined (ptr->name);
3202 /* Check for all readonly or some readwrite sections. */
3204 static void
3205 check_input_sections
3206 (lang_statement_union_type *s,
3207 lang_output_section_statement_type *output_section_statement)
3209 for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
3211 switch (s->header.type)
3213 case lang_wild_statement_enum:
3214 walk_wild (&s->wild_statement, check_section_callback,
3215 output_section_statement);
3216 if (! output_section_statement->all_input_readonly)
3217 return;
3218 break;
3219 case lang_constructors_statement_enum:
3220 check_input_sections (constructor_list.head,
3221 output_section_statement);
3222 if (! output_section_statement->all_input_readonly)
3223 return;
3224 break;
3225 case lang_group_statement_enum:
3226 check_input_sections (s->group_statement.children.head,
3227 output_section_statement);
3228 if (! output_section_statement->all_input_readonly)
3229 return;
3230 break;
3231 default:
3232 break;
3237 /* Update wildcard statements if needed. */
3239 static void
3240 update_wild_statements (lang_statement_union_type *s)
3242 struct wildcard_list *sec;
3244 switch (sort_section)
3246 default:
3247 FAIL ();
3249 case none:
3250 break;
3252 case by_name:
3253 case by_alignment:
3254 for (; s != NULL; s = s->header.next)
3256 switch (s->header.type)
3258 default:
3259 break;
3261 case lang_wild_statement_enum:
3262 sec = s->wild_statement.section_list;
3263 for (sec = s->wild_statement.section_list; sec != NULL;
3264 sec = sec->next)
3266 switch (sec->spec.sorted)
3268 case none:
3269 sec->spec.sorted = sort_section;
3270 break;
3271 case by_name:
3272 if (sort_section == by_alignment)
3273 sec->spec.sorted = by_name_alignment;
3274 break;
3275 case by_alignment:
3276 if (sort_section == by_name)
3277 sec->spec.sorted = by_alignment_name;
3278 break;
3279 default:
3280 break;
3283 break;
3285 case lang_constructors_statement_enum:
3286 update_wild_statements (constructor_list.head);
3287 break;
3289 case lang_output_section_statement_enum:
3290 update_wild_statements
3291 (s->output_section_statement.children.head);
3292 break;
3294 case lang_group_statement_enum:
3295 update_wild_statements (s->group_statement.children.head);
3296 break;
3299 break;
3303 /* Open input files and attach to output sections. */
3305 static void
3306 map_input_to_output_sections
3307 (lang_statement_union_type *s, const char *target,
3308 lang_output_section_statement_type *os)
3310 flagword flags;
3312 for (; s != NULL; s = s->header.next)
3314 switch (s->header.type)
3316 case lang_wild_statement_enum:
3317 wild (&s->wild_statement, target, os);
3318 break;
3319 case lang_constructors_statement_enum:
3320 map_input_to_output_sections (constructor_list.head,
3321 target,
3322 os);
3323 break;
3324 case lang_output_section_statement_enum:
3325 if (s->output_section_statement.constraint)
3327 if (s->output_section_statement.constraint != ONLY_IF_RW
3328 && s->output_section_statement.constraint != ONLY_IF_RO)
3329 break;
3330 s->output_section_statement.all_input_readonly = TRUE;
3331 check_input_sections (s->output_section_statement.children.head,
3332 &s->output_section_statement);
3333 if ((s->output_section_statement.all_input_readonly
3334 && s->output_section_statement.constraint == ONLY_IF_RW)
3335 || (!s->output_section_statement.all_input_readonly
3336 && s->output_section_statement.constraint == ONLY_IF_RO))
3338 s->output_section_statement.constraint = -1;
3339 break;
3343 map_input_to_output_sections (s->output_section_statement.children.head,
3344 target,
3345 &s->output_section_statement);
3346 break;
3347 case lang_output_statement_enum:
3348 break;
3349 case lang_target_statement_enum:
3350 target = s->target_statement.target;
3351 break;
3352 case lang_group_statement_enum:
3353 map_input_to_output_sections (s->group_statement.children.head,
3354 target,
3355 os);
3356 break;
3357 case lang_data_statement_enum:
3358 /* Make sure that any sections mentioned in the expression
3359 are initialized. */
3360 exp_init_os (s->data_statement.exp);
3361 flags = SEC_HAS_CONTENTS;
3362 /* The output section gets contents, and then we inspect for
3363 any flags set in the input script which override any ALLOC. */
3364 if (!(os->flags & SEC_NEVER_LOAD))
3365 flags |= SEC_ALLOC | SEC_LOAD;
3366 if (os->bfd_section == NULL)
3367 init_os (os, NULL, flags);
3368 else
3369 os->bfd_section->flags |= flags;
3370 break;
3371 case lang_input_section_enum:
3372 break;
3373 case lang_fill_statement_enum:
3374 case lang_object_symbols_statement_enum:
3375 case lang_reloc_statement_enum:
3376 case lang_padding_statement_enum:
3377 case lang_input_statement_enum:
3378 if (os != NULL && os->bfd_section == NULL)
3379 init_os (os, NULL, 0);
3380 break;
3381 case lang_assignment_statement_enum:
3382 if (os != NULL && os->bfd_section == NULL)
3383 init_os (os, NULL, 0);
3385 /* Make sure that any sections mentioned in the assignment
3386 are initialized. */
3387 exp_init_os (s->assignment_statement.exp);
3388 break;
3389 case lang_address_statement_enum:
3390 /* Mark the specified section with the supplied address.
3391 If this section was actually a segment marker, then the
3392 directive is ignored if the linker script explicitly
3393 processed the segment marker. Originally, the linker
3394 treated segment directives (like -Ttext on the
3395 command-line) as section directives. We honor the
3396 section directive semantics for backwards compatibilty;
3397 linker scripts that do not specifically check for
3398 SEGMENT_START automatically get the old semantics. */
3399 if (!s->address_statement.segment
3400 || !s->address_statement.segment->used)
3402 lang_output_section_statement_type *aos
3403 = (lang_output_section_statement_lookup
3404 (s->address_statement.section_name, 0, TRUE));
3406 if (aos->bfd_section == NULL)
3407 init_os (aos, NULL, 0);
3408 aos->addr_tree = s->address_statement.address;
3410 break;
3411 case lang_insert_statement_enum:
3412 break;
3417 /* An insert statement snips out all the linker statements from the
3418 start of the list and places them after the output section
3419 statement specified by the insert. This operation is complicated
3420 by the fact that we keep a doubly linked list of output section
3421 statements as well as the singly linked list of all statements. */
3423 static void
3424 process_insert_statements (void)
3426 lang_statement_union_type **s;
3427 lang_output_section_statement_type *first_os = NULL;
3428 lang_output_section_statement_type *last_os = NULL;
3429 lang_output_section_statement_type *os;
3431 /* "start of list" is actually the statement immediately after
3432 the special abs_section output statement, so that it isn't
3433 reordered. */
3434 s = &lang_output_section_statement.head;
3435 while (*(s = &(*s)->header.next) != NULL)
3437 if ((*s)->header.type == lang_output_section_statement_enum)
3439 /* Keep pointers to the first and last output section
3440 statement in the sequence we may be about to move. */
3441 os = &(*s)->output_section_statement;
3443 ASSERT (last_os == NULL || last_os->next == os);
3444 last_os = os;
3446 /* Set constraint negative so that lang_output_section_find
3447 won't match this output section statement. At this
3448 stage in linking constraint has values in the range
3449 [-1, ONLY_IN_RW]. */
3450 last_os->constraint = -2 - last_os->constraint;
3451 if (first_os == NULL)
3452 first_os = last_os;
3454 else if ((*s)->header.type == lang_insert_statement_enum)
3456 lang_insert_statement_type *i = &(*s)->insert_statement;
3457 lang_output_section_statement_type *where;
3458 lang_statement_union_type **ptr;
3459 lang_statement_union_type *first;
3461 where = lang_output_section_find (i->where);
3462 if (where != NULL && i->is_before)
3465 where = where->prev;
3466 while (where != NULL && where->constraint < 0);
3468 if (where == NULL)
3470 einfo (_("%F%P: %s not found for insert\n"), i->where);
3471 return;
3474 /* Deal with reordering the output section statement list. */
3475 if (last_os != NULL)
3477 asection *first_sec, *last_sec;
3478 struct lang_output_section_statement_struct **next;
3480 /* Snip out the output sections we are moving. */
3481 first_os->prev->next = last_os->next;
3482 if (last_os->next == NULL)
3484 next = &first_os->prev->next;
3485 lang_output_section_statement.tail
3486 = (lang_statement_union_type **) next;
3488 else
3489 last_os->next->prev = first_os->prev;
3490 /* Add them in at the new position. */
3491 last_os->next = where->next;
3492 if (where->next == NULL)
3494 next = &last_os->next;
3495 lang_output_section_statement.tail
3496 = (lang_statement_union_type **) next;
3498 else
3499 where->next->prev = last_os;
3500 first_os->prev = where;
3501 where->next = first_os;
3503 /* Move the bfd sections in the same way. */
3504 first_sec = NULL;
3505 last_sec = NULL;
3506 for (os = first_os; os != NULL; os = os->next)
3508 os->constraint = -2 - os->constraint;
3509 if (os->bfd_section != NULL
3510 && os->bfd_section->owner != NULL)
3512 last_sec = os->bfd_section;
3513 if (first_sec == NULL)
3514 first_sec = last_sec;
3516 if (os == last_os)
3517 break;
3519 if (last_sec != NULL)
3521 asection *sec = where->bfd_section;
3522 if (sec == NULL)
3523 sec = output_prev_sec_find (where);
3525 /* The place we want to insert must come after the
3526 sections we are moving. So if we find no
3527 section or if the section is the same as our
3528 last section, then no move is needed. */
3529 if (sec != NULL && sec != last_sec)
3531 /* Trim them off. */
3532 if (first_sec->prev != NULL)
3533 first_sec->prev->next = last_sec->next;
3534 else
3535 link_info.output_bfd->sections = last_sec->next;
3536 if (last_sec->next != NULL)
3537 last_sec->next->prev = first_sec->prev;
3538 else
3539 link_info.output_bfd->section_last = first_sec->prev;
3540 /* Add back. */
3541 last_sec->next = sec->next;
3542 if (sec->next != NULL)
3543 sec->next->prev = last_sec;
3544 else
3545 link_info.output_bfd->section_last = last_sec;
3546 first_sec->prev = sec;
3547 sec->next = first_sec;
3551 first_os = NULL;
3552 last_os = NULL;
3555 ptr = insert_os_after (where);
3556 /* Snip everything after the abs_section output statement we
3557 know is at the start of the list, up to and including
3558 the insert statement we are currently processing. */
3559 first = lang_output_section_statement.head->header.next;
3560 lang_output_section_statement.head->header.next = (*s)->header.next;
3561 /* Add them back where they belong. */
3562 *s = *ptr;
3563 if (*s == NULL)
3564 statement_list.tail = s;
3565 *ptr = first;
3566 s = &lang_output_section_statement.head;
3570 /* Undo constraint twiddling. */
3571 for (os = first_os; os != NULL; os = os->next)
3573 os->constraint = -2 - os->constraint;
3574 if (os == last_os)
3575 break;
3579 /* An output section might have been removed after its statement was
3580 added. For example, ldemul_before_allocation can remove dynamic
3581 sections if they turn out to be not needed. Clean them up here. */
3583 void
3584 strip_excluded_output_sections (void)
3586 lang_output_section_statement_type *os;
3588 /* Run lang_size_sections (if not already done). */
3589 if (expld.phase != lang_mark_phase_enum)
3591 expld.phase = lang_mark_phase_enum;
3592 expld.dataseg.phase = exp_dataseg_none;
3593 one_lang_size_sections_pass (NULL, FALSE);
3594 lang_reset_memory_regions ();
3597 for (os = &lang_output_section_statement.head->output_section_statement;
3598 os != NULL;
3599 os = os->next)
3601 asection *output_section;
3602 bfd_boolean exclude;
3604 if (os->constraint < 0)
3605 continue;
3607 output_section = os->bfd_section;
3608 if (output_section == NULL)
3609 continue;
3611 exclude = (output_section->rawsize == 0
3612 && (output_section->flags & SEC_KEEP) == 0
3613 && !bfd_section_removed_from_list (link_info.output_bfd,
3614 output_section));
3616 /* Some sections have not yet been sized, notably .gnu.version,
3617 .dynsym, .dynstr and .hash. These all have SEC_LINKER_CREATED
3618 input sections, so don't drop output sections that have such
3619 input sections unless they are also marked SEC_EXCLUDE. */
3620 if (exclude && output_section->map_head.s != NULL)
3622 asection *s;
3624 for (s = output_section->map_head.s; s != NULL; s = s->map_head.s)
3625 if ((s->flags & SEC_LINKER_CREATED) != 0
3626 && (s->flags & SEC_EXCLUDE) == 0)
3628 exclude = FALSE;
3629 break;
3633 /* TODO: Don't just junk map_head.s, turn them into link_orders. */
3634 output_section->map_head.link_order = NULL;
3635 output_section->map_tail.link_order = NULL;
3637 if (exclude)
3639 /* We don't set bfd_section to NULL since bfd_section of the
3640 removed output section statement may still be used. */
3641 if (!os->section_relative_symbol
3642 && !os->update_dot_tree)
3643 os->ignored = TRUE;
3644 output_section->flags |= SEC_EXCLUDE;
3645 bfd_section_list_remove (link_info.output_bfd, output_section);
3646 link_info.output_bfd->section_count--;
3650 /* Stop future calls to lang_add_section from messing with map_head
3651 and map_tail link_order fields. */
3652 stripped_excluded_sections = TRUE;
3655 static void
3656 print_output_section_statement
3657 (lang_output_section_statement_type *output_section_statement)
3659 asection *section = output_section_statement->bfd_section;
3660 int len;
3662 if (output_section_statement != abs_output_section)
3664 minfo ("\n%s", output_section_statement->name);
3666 if (section != NULL)
3668 print_dot = section->vma;
3670 len = strlen (output_section_statement->name);
3671 if (len >= SECTION_NAME_MAP_LENGTH - 1)
3673 print_nl ();
3674 len = 0;
3676 while (len < SECTION_NAME_MAP_LENGTH)
3678 print_space ();
3679 ++len;
3682 minfo ("0x%V %W", section->vma, section->size);
3684 if (section->vma != section->lma)
3685 minfo (_(" load address 0x%V"), section->lma);
3687 if (output_section_statement->update_dot_tree != NULL)
3688 exp_fold_tree (output_section_statement->update_dot_tree,
3689 bfd_abs_section_ptr, &print_dot);
3692 print_nl ();
3695 print_statement_list (output_section_statement->children.head,
3696 output_section_statement);
3699 /* Scan for the use of the destination in the right hand side
3700 of an expression. In such cases we will not compute the
3701 correct expression, since the value of DST that is used on
3702 the right hand side will be its final value, not its value
3703 just before this expression is evaluated. */
3705 static bfd_boolean
3706 scan_for_self_assignment (const char * dst, etree_type * rhs)
3708 if (rhs == NULL || dst == NULL)
3709 return FALSE;
3711 switch (rhs->type.node_class)
3713 case etree_binary:
3714 return scan_for_self_assignment (dst, rhs->binary.lhs)
3715 || scan_for_self_assignment (dst, rhs->binary.rhs);
3717 case etree_trinary:
3718 return scan_for_self_assignment (dst, rhs->trinary.lhs)
3719 || scan_for_self_assignment (dst, rhs->trinary.rhs);
3721 case etree_assign:
3722 case etree_provided:
3723 case etree_provide:
3724 if (strcmp (dst, rhs->assign.dst) == 0)
3725 return TRUE;
3726 return scan_for_self_assignment (dst, rhs->assign.src);
3728 case etree_unary:
3729 return scan_for_self_assignment (dst, rhs->unary.child);
3731 case etree_value:
3732 if (rhs->value.str)
3733 return strcmp (dst, rhs->value.str) == 0;
3734 return FALSE;
3736 case etree_name:
3737 if (rhs->name.name)
3738 return strcmp (dst, rhs->name.name) == 0;
3739 return FALSE;
3741 default:
3742 break;
3745 return FALSE;
3749 static void
3750 print_assignment (lang_assignment_statement_type *assignment,
3751 lang_output_section_statement_type *output_section)
3753 unsigned int i;
3754 bfd_boolean is_dot;
3755 bfd_boolean computation_is_valid = TRUE;
3756 etree_type *tree;
3758 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3759 print_space ();
3761 if (assignment->exp->type.node_class == etree_assert)
3763 is_dot = FALSE;
3764 tree = assignment->exp->assert_s.child;
3765 computation_is_valid = TRUE;
3767 else
3769 const char *dst = assignment->exp->assign.dst;
3771 is_dot = (dst[0] == '.' && dst[1] == 0);
3772 tree = assignment->exp->assign.src;
3773 computation_is_valid = is_dot || (scan_for_self_assignment (dst, tree) == FALSE);
3776 exp_fold_tree (tree, output_section->bfd_section, &print_dot);
3777 if (expld.result.valid_p)
3779 bfd_vma value;
3781 if (computation_is_valid)
3783 value = expld.result.value;
3785 if (expld.result.section)
3786 value += expld.result.section->vma;
3788 minfo ("0x%V", value);
3789 if (is_dot)
3790 print_dot = value;
3792 else
3794 struct bfd_link_hash_entry *h;
3796 h = bfd_link_hash_lookup (link_info.hash, assignment->exp->assign.dst,
3797 FALSE, FALSE, TRUE);
3798 if (h)
3800 value = h->u.def.value;
3802 if (expld.result.section)
3803 value += expld.result.section->vma;
3805 minfo ("[0x%V]", value);
3807 else
3808 minfo ("[unresolved]");
3811 else
3813 minfo ("*undef* ");
3814 #ifdef BFD64
3815 minfo (" ");
3816 #endif
3819 minfo (" ");
3820 exp_print_tree (assignment->exp);
3821 print_nl ();
3824 static void
3825 print_input_statement (lang_input_statement_type *statm)
3827 if (statm->filename != NULL
3828 && (statm->the_bfd == NULL
3829 || (statm->the_bfd->flags & BFD_LINKER_CREATED) == 0))
3830 fprintf (config.map_file, "LOAD %s\n", statm->filename);
3833 /* Print all symbols defined in a particular section. This is called
3834 via bfd_link_hash_traverse, or by print_all_symbols. */
3836 static bfd_boolean
3837 print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
3839 asection *sec = ptr;
3841 if ((hash_entry->type == bfd_link_hash_defined
3842 || hash_entry->type == bfd_link_hash_defweak)
3843 && sec == hash_entry->u.def.section)
3845 int i;
3847 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3848 print_space ();
3849 minfo ("0x%V ",
3850 (hash_entry->u.def.value
3851 + hash_entry->u.def.section->output_offset
3852 + hash_entry->u.def.section->output_section->vma));
3854 minfo (" %T\n", hash_entry->root.string);
3857 return TRUE;
3860 static void
3861 print_all_symbols (asection *sec)
3863 struct fat_user_section_struct *ud = get_userdata (sec);
3864 struct map_symbol_def *def;
3866 if (!ud)
3867 return;
3869 *ud->map_symbol_def_tail = 0;
3870 for (def = ud->map_symbol_def_head; def; def = def->next)
3871 print_one_symbol (def->entry, sec);
3874 /* Print information about an input section to the map file. */
3876 static void
3877 print_input_section (asection *i)
3879 bfd_size_type size = i->size;
3880 int len;
3881 bfd_vma addr;
3883 init_opb ();
3885 print_space ();
3886 minfo ("%s", i->name);
3888 len = 1 + strlen (i->name);
3889 if (len >= SECTION_NAME_MAP_LENGTH - 1)
3891 print_nl ();
3892 len = 0;
3894 while (len < SECTION_NAME_MAP_LENGTH)
3896 print_space ();
3897 ++len;
3900 if (i->output_section != NULL
3901 && i->output_section->owner == link_info.output_bfd)
3902 addr = i->output_section->vma + i->output_offset;
3903 else
3905 addr = print_dot;
3906 size = 0;
3909 minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
3911 if (size != i->rawsize && i->rawsize != 0)
3913 len = SECTION_NAME_MAP_LENGTH + 3;
3914 #ifdef BFD64
3915 len += 16;
3916 #else
3917 len += 8;
3918 #endif
3919 while (len > 0)
3921 print_space ();
3922 --len;
3925 minfo (_("%W (size before relaxing)\n"), i->rawsize);
3928 if (i->output_section != NULL
3929 && i->output_section->owner == link_info.output_bfd)
3931 if (link_info.reduce_memory_overheads)
3932 bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
3933 else
3934 print_all_symbols (i);
3936 /* Update print_dot, but make sure that we do not move it
3937 backwards - this could happen if we have overlays and a
3938 later overlay is shorter than an earier one. */
3939 if (addr + TO_ADDR (size) > print_dot)
3940 print_dot = addr + TO_ADDR (size);
3944 static void
3945 print_fill_statement (lang_fill_statement_type *fill)
3947 size_t size;
3948 unsigned char *p;
3949 fputs (" FILL mask 0x", config.map_file);
3950 for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
3951 fprintf (config.map_file, "%02x", *p);
3952 fputs ("\n", config.map_file);
3955 static void
3956 print_data_statement (lang_data_statement_type *data)
3958 int i;
3959 bfd_vma addr;
3960 bfd_size_type size;
3961 const char *name;
3963 init_opb ();
3964 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3965 print_space ();
3967 addr = data->output_offset;
3968 if (data->output_section != NULL)
3969 addr += data->output_section->vma;
3971 switch (data->type)
3973 default:
3974 abort ();
3975 case BYTE:
3976 size = BYTE_SIZE;
3977 name = "BYTE";
3978 break;
3979 case SHORT:
3980 size = SHORT_SIZE;
3981 name = "SHORT";
3982 break;
3983 case LONG:
3984 size = LONG_SIZE;
3985 name = "LONG";
3986 break;
3987 case QUAD:
3988 size = QUAD_SIZE;
3989 name = "QUAD";
3990 break;
3991 case SQUAD:
3992 size = QUAD_SIZE;
3993 name = "SQUAD";
3994 break;
3997 minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
3999 if (data->exp->type.node_class != etree_value)
4001 print_space ();
4002 exp_print_tree (data->exp);
4005 print_nl ();
4007 print_dot = addr + TO_ADDR (size);
4010 /* Print an address statement. These are generated by options like
4011 -Ttext. */
4013 static void
4014 print_address_statement (lang_address_statement_type *address)
4016 minfo (_("Address of section %s set to "), address->section_name);
4017 exp_print_tree (address->address);
4018 print_nl ();
4021 /* Print a reloc statement. */
4023 static void
4024 print_reloc_statement (lang_reloc_statement_type *reloc)
4026 int i;
4027 bfd_vma addr;
4028 bfd_size_type size;
4030 init_opb ();
4031 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4032 print_space ();
4034 addr = reloc->output_offset;
4035 if (reloc->output_section != NULL)
4036 addr += reloc->output_section->vma;
4038 size = bfd_get_reloc_size (reloc->howto);
4040 minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
4042 if (reloc->name != NULL)
4043 minfo ("%s+", reloc->name);
4044 else
4045 minfo ("%s+", reloc->section->name);
4047 exp_print_tree (reloc->addend_exp);
4049 print_nl ();
4051 print_dot = addr + TO_ADDR (size);
4054 static void
4055 print_padding_statement (lang_padding_statement_type *s)
4057 int len;
4058 bfd_vma addr;
4060 init_opb ();
4061 minfo (" *fill*");
4063 len = sizeof " *fill*" - 1;
4064 while (len < SECTION_NAME_MAP_LENGTH)
4066 print_space ();
4067 ++len;
4070 addr = s->output_offset;
4071 if (s->output_section != NULL)
4072 addr += s->output_section->vma;
4073 minfo ("0x%V %W ", addr, (bfd_vma) s->size);
4075 if (s->fill->size != 0)
4077 size_t size;
4078 unsigned char *p;
4079 for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
4080 fprintf (config.map_file, "%02x", *p);
4083 print_nl ();
4085 print_dot = addr + TO_ADDR (s->size);
4088 static void
4089 print_wild_statement (lang_wild_statement_type *w,
4090 lang_output_section_statement_type *os)
4092 struct wildcard_list *sec;
4094 print_space ();
4096 if (w->filenames_sorted)
4097 minfo ("SORT(");
4098 if (w->filename != NULL)
4099 minfo ("%s", w->filename);
4100 else
4101 minfo ("*");
4102 if (w->filenames_sorted)
4103 minfo (")");
4105 minfo ("(");
4106 for (sec = w->section_list; sec; sec = sec->next)
4108 if (sec->spec.sorted)
4109 minfo ("SORT(");
4110 if (sec->spec.exclude_name_list != NULL)
4112 name_list *tmp;
4113 minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
4114 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
4115 minfo (" %s", tmp->name);
4116 minfo (") ");
4118 if (sec->spec.name != NULL)
4119 minfo ("%s", sec->spec.name);
4120 else
4121 minfo ("*");
4122 if (sec->spec.sorted)
4123 minfo (")");
4124 if (sec->next)
4125 minfo (" ");
4127 minfo (")");
4129 print_nl ();
4131 print_statement_list (w->children.head, os);
4134 /* Print a group statement. */
4136 static void
4137 print_group (lang_group_statement_type *s,
4138 lang_output_section_statement_type *os)
4140 fprintf (config.map_file, "START GROUP\n");
4141 print_statement_list (s->children.head, os);
4142 fprintf (config.map_file, "END GROUP\n");
4145 /* Print the list of statements in S.
4146 This can be called for any statement type. */
4148 static void
4149 print_statement_list (lang_statement_union_type *s,
4150 lang_output_section_statement_type *os)
4152 while (s != NULL)
4154 print_statement (s, os);
4155 s = s->header.next;
4159 /* Print the first statement in statement list S.
4160 This can be called for any statement type. */
4162 static void
4163 print_statement (lang_statement_union_type *s,
4164 lang_output_section_statement_type *os)
4166 switch (s->header.type)
4168 default:
4169 fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
4170 FAIL ();
4171 break;
4172 case lang_constructors_statement_enum:
4173 if (constructor_list.head != NULL)
4175 if (constructors_sorted)
4176 minfo (" SORT (CONSTRUCTORS)\n");
4177 else
4178 minfo (" CONSTRUCTORS\n");
4179 print_statement_list (constructor_list.head, os);
4181 break;
4182 case lang_wild_statement_enum:
4183 print_wild_statement (&s->wild_statement, os);
4184 break;
4185 case lang_address_statement_enum:
4186 print_address_statement (&s->address_statement);
4187 break;
4188 case lang_object_symbols_statement_enum:
4189 minfo (" CREATE_OBJECT_SYMBOLS\n");
4190 break;
4191 case lang_fill_statement_enum:
4192 print_fill_statement (&s->fill_statement);
4193 break;
4194 case lang_data_statement_enum:
4195 print_data_statement (&s->data_statement);
4196 break;
4197 case lang_reloc_statement_enum:
4198 print_reloc_statement (&s->reloc_statement);
4199 break;
4200 case lang_input_section_enum:
4201 print_input_section (s->input_section.section);
4202 break;
4203 case lang_padding_statement_enum:
4204 print_padding_statement (&s->padding_statement);
4205 break;
4206 case lang_output_section_statement_enum:
4207 print_output_section_statement (&s->output_section_statement);
4208 break;
4209 case lang_assignment_statement_enum:
4210 print_assignment (&s->assignment_statement, os);
4211 break;
4212 case lang_target_statement_enum:
4213 fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
4214 break;
4215 case lang_output_statement_enum:
4216 minfo ("OUTPUT(%s", s->output_statement.name);
4217 if (output_target != NULL)
4218 minfo (" %s", output_target);
4219 minfo (")\n");
4220 break;
4221 case lang_input_statement_enum:
4222 print_input_statement (&s->input_statement);
4223 break;
4224 case lang_group_statement_enum:
4225 print_group (&s->group_statement, os);
4226 break;
4227 case lang_insert_statement_enum:
4228 minfo ("INSERT %s %s\n",
4229 s->insert_statement.is_before ? "BEFORE" : "AFTER",
4230 s->insert_statement.where);
4231 break;
4235 static void
4236 print_statements (void)
4238 print_statement_list (statement_list.head, abs_output_section);
4241 /* Print the first N statements in statement list S to STDERR.
4242 If N == 0, nothing is printed.
4243 If N < 0, the entire list is printed.
4244 Intended to be called from GDB. */
4246 void
4247 dprint_statement (lang_statement_union_type *s, int n)
4249 FILE *map_save = config.map_file;
4251 config.map_file = stderr;
4253 if (n < 0)
4254 print_statement_list (s, abs_output_section);
4255 else
4257 while (s && --n >= 0)
4259 print_statement (s, abs_output_section);
4260 s = s->header.next;
4264 config.map_file = map_save;
4267 static void
4268 insert_pad (lang_statement_union_type **ptr,
4269 fill_type *fill,
4270 unsigned int alignment_needed,
4271 asection *output_section,
4272 bfd_vma dot)
4274 static fill_type zero_fill = { 1, { 0 } };
4275 lang_statement_union_type *pad = NULL;
4277 if (ptr != &statement_list.head)
4278 pad = ((lang_statement_union_type *)
4279 ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
4280 if (pad != NULL
4281 && pad->header.type == lang_padding_statement_enum
4282 && pad->padding_statement.output_section == output_section)
4284 /* Use the existing pad statement. */
4286 else if ((pad = *ptr) != NULL
4287 && pad->header.type == lang_padding_statement_enum
4288 && pad->padding_statement.output_section == output_section)
4290 /* Use the existing pad statement. */
4292 else
4294 /* Make a new padding statement, linked into existing chain. */
4295 pad = stat_alloc (sizeof (lang_padding_statement_type));
4296 pad->header.next = *ptr;
4297 *ptr = pad;
4298 pad->header.type = lang_padding_statement_enum;
4299 pad->padding_statement.output_section = output_section;
4300 if (fill == NULL)
4301 fill = &zero_fill;
4302 pad->padding_statement.fill = fill;
4304 pad->padding_statement.output_offset = dot - output_section->vma;
4305 pad->padding_statement.size = alignment_needed;
4306 output_section->size += alignment_needed;
4309 /* Work out how much this section will move the dot point. */
4311 static bfd_vma
4312 size_input_section
4313 (lang_statement_union_type **this_ptr,
4314 lang_output_section_statement_type *output_section_statement,
4315 fill_type *fill,
4316 bfd_vma dot)
4318 lang_input_section_type *is = &((*this_ptr)->input_section);
4319 asection *i = is->section;
4321 if (!((lang_input_statement_type *) i->owner->usrdata)->just_syms_flag
4322 && (i->flags & SEC_EXCLUDE) == 0)
4324 unsigned int alignment_needed;
4325 asection *o;
4327 /* Align this section first to the input sections requirement,
4328 then to the output section's requirement. If this alignment
4329 is greater than any seen before, then record it too. Perform
4330 the alignment by inserting a magic 'padding' statement. */
4332 if (output_section_statement->subsection_alignment != -1)
4333 i->alignment_power = output_section_statement->subsection_alignment;
4335 o = output_section_statement->bfd_section;
4336 if (o->alignment_power < i->alignment_power)
4337 o->alignment_power = i->alignment_power;
4339 alignment_needed = align_power (dot, i->alignment_power) - dot;
4341 if (alignment_needed != 0)
4343 insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
4344 dot += alignment_needed;
4347 /* Remember where in the output section this input section goes. */
4349 i->output_offset = dot - o->vma;
4351 /* Mark how big the output section must be to contain this now. */
4352 dot += TO_ADDR (i->size);
4353 o->size = TO_SIZE (dot - o->vma);
4355 else
4357 i->output_offset = i->vma - output_section_statement->bfd_section->vma;
4360 return dot;
4363 static int
4364 sort_sections_by_lma (const void *arg1, const void *arg2)
4366 const asection *sec1 = *(const asection **) arg1;
4367 const asection *sec2 = *(const asection **) arg2;
4369 if (bfd_section_lma (sec1->owner, sec1)
4370 < bfd_section_lma (sec2->owner, sec2))
4371 return -1;
4372 else if (bfd_section_lma (sec1->owner, sec1)
4373 > bfd_section_lma (sec2->owner, sec2))
4374 return 1;
4375 else if (sec1->id < sec2->id)
4376 return -1;
4377 else if (sec1->id > sec2->id)
4378 return 1;
4380 return 0;
4383 #define IGNORE_SECTION(s) \
4384 ((s->flags & SEC_NEVER_LOAD) != 0 \
4385 || (s->flags & SEC_ALLOC) == 0 \
4386 || ((s->flags & SEC_THREAD_LOCAL) != 0 \
4387 && (s->flags & SEC_LOAD) == 0))
4389 /* Check to see if any allocated sections overlap with other allocated
4390 sections. This can happen if a linker script specifies the output
4391 section addresses of the two sections. Also check whether any memory
4392 region has overflowed. */
4394 static void
4395 lang_check_section_addresses (void)
4397 asection *s, *os;
4398 asection **sections, **spp;
4399 unsigned int count;
4400 bfd_vma s_start;
4401 bfd_vma s_end;
4402 bfd_vma os_start;
4403 bfd_vma os_end;
4404 bfd_size_type amt;
4405 lang_memory_region_type *m;
4407 if (bfd_count_sections (link_info.output_bfd) <= 1)
4408 return;
4410 amt = bfd_count_sections (link_info.output_bfd) * sizeof (asection *);
4411 sections = xmalloc (amt);
4413 /* Scan all sections in the output list. */
4414 count = 0;
4415 for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
4417 /* Only consider loadable sections with real contents. */
4418 if (IGNORE_SECTION (s) || s->size == 0)
4419 continue;
4421 sections[count] = s;
4422 count++;
4425 if (count <= 1)
4426 return;
4428 qsort (sections, (size_t) count, sizeof (asection *),
4429 sort_sections_by_lma);
4431 spp = sections;
4432 s = *spp++;
4433 s_start = bfd_section_lma (link_info.output_bfd, s);
4434 s_end = s_start + TO_ADDR (s->size) - 1;
4435 for (count--; count; count--)
4437 /* We must check the sections' LMA addresses not their VMA
4438 addresses because overlay sections can have overlapping VMAs
4439 but they must have distinct LMAs. */
4440 os = s;
4441 os_start = s_start;
4442 os_end = s_end;
4443 s = *spp++;
4444 s_start = bfd_section_lma (link_info.output_bfd, s);
4445 s_end = s_start + TO_ADDR (s->size) - 1;
4447 /* Look for an overlap. */
4448 if (s_end >= os_start && s_start <= os_end)
4449 einfo (_("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
4450 s->name, s_start, s_end, os->name, os_start, os_end);
4453 free (sections);
4455 /* If any memory region has overflowed, report by how much.
4456 We do not issue this diagnostic for regions that had sections
4457 explicitly placed outside their bounds; os_region_check's
4458 diagnostics are adequate for that case.
4460 FIXME: It is conceivable that m->current - (m->origin + m->length)
4461 might overflow a 32-bit integer. There is, alas, no way to print
4462 a bfd_vma quantity in decimal. */
4463 for (m = lang_memory_region_list; m; m = m->next)
4464 if (m->had_full_message)
4465 einfo (_("%X%P: region %s overflowed by %ld bytes\n"),
4466 m->name, (long)(m->current - (m->origin + m->length)));
4470 /* Make sure the new address is within the region. We explicitly permit the
4471 current address to be at the exact end of the region when the address is
4472 non-zero, in case the region is at the end of addressable memory and the
4473 calculation wraps around. */
4475 static void
4476 os_region_check (lang_output_section_statement_type *os,
4477 lang_memory_region_type *region,
4478 etree_type *tree,
4479 bfd_vma base)
4481 if ((region->current < region->origin
4482 || (region->current - region->origin > region->length))
4483 && ((region->current != region->origin + region->length)
4484 || base == 0))
4486 if (tree != NULL)
4488 einfo (_("%X%P: address 0x%v of %B section %s"
4489 " is not within region %s\n"),
4490 region->current,
4491 os->bfd_section->owner,
4492 os->bfd_section->name,
4493 region->name);
4495 else if (!region->had_full_message)
4497 region->had_full_message = TRUE;
4499 einfo (_("%X%P: %B section %s will not fit in region %s\n"),
4500 os->bfd_section->owner,
4501 os->bfd_section->name,
4502 region->name);
4507 /* Set the sizes for all the output sections. */
4509 static bfd_vma
4510 lang_size_sections_1
4511 (lang_statement_union_type *s,
4512 lang_output_section_statement_type *output_section_statement,
4513 lang_statement_union_type **prev,
4514 fill_type *fill,
4515 bfd_vma dot,
4516 bfd_boolean *relax,
4517 bfd_boolean check_regions)
4519 /* Size up the sections from their constituent parts. */
4520 for (; s != NULL; s = s->header.next)
4522 switch (s->header.type)
4524 case lang_output_section_statement_enum:
4526 bfd_vma newdot, after;
4527 lang_output_section_statement_type *os;
4528 lang_memory_region_type *r;
4530 os = &s->output_section_statement;
4531 if (os->addr_tree != NULL)
4533 os->processed_vma = FALSE;
4534 exp_fold_tree (os->addr_tree, bfd_abs_section_ptr, &dot);
4536 if (expld.result.valid_p)
4537 dot = expld.result.value + expld.result.section->vma;
4538 else if (expld.phase != lang_mark_phase_enum)
4539 einfo (_("%F%S: non constant or forward reference"
4540 " address expression for section %s\n"),
4541 os->name);
4544 if (os->bfd_section == NULL)
4545 /* This section was removed or never actually created. */
4546 break;
4548 /* If this is a COFF shared library section, use the size and
4549 address from the input section. FIXME: This is COFF
4550 specific; it would be cleaner if there were some other way
4551 to do this, but nothing simple comes to mind. */
4552 if (((bfd_get_flavour (link_info.output_bfd)
4553 == bfd_target_ecoff_flavour)
4554 || (bfd_get_flavour (link_info.output_bfd)
4555 == bfd_target_coff_flavour))
4556 && (os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
4558 asection *input;
4560 if (os->children.head == NULL
4561 || os->children.head->header.next != NULL
4562 || (os->children.head->header.type
4563 != lang_input_section_enum))
4564 einfo (_("%P%X: Internal error on COFF shared library"
4565 " section %s\n"), os->name);
4567 input = os->children.head->input_section.section;
4568 bfd_set_section_vma (os->bfd_section->owner,
4569 os->bfd_section,
4570 bfd_section_vma (input->owner, input));
4571 os->bfd_section->size = input->size;
4572 break;
4575 newdot = dot;
4576 if (bfd_is_abs_section (os->bfd_section))
4578 /* No matter what happens, an abs section starts at zero. */
4579 ASSERT (os->bfd_section->vma == 0);
4581 else
4583 int align;
4585 if (os->addr_tree == NULL)
4587 /* No address specified for this section, get one
4588 from the region specification. */
4589 if (os->region == NULL
4590 || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))
4591 && os->region->name[0] == '*'
4592 && strcmp (os->region->name,
4593 DEFAULT_MEMORY_REGION) == 0))
4595 os->region = lang_memory_default (os->bfd_section);
4598 /* If a loadable section is using the default memory
4599 region, and some non default memory regions were
4600 defined, issue an error message. */
4601 if (!os->ignored
4602 && !IGNORE_SECTION (os->bfd_section)
4603 && ! link_info.relocatable
4604 && check_regions
4605 && strcmp (os->region->name,
4606 DEFAULT_MEMORY_REGION) == 0
4607 && lang_memory_region_list != NULL
4608 && (strcmp (lang_memory_region_list->name,
4609 DEFAULT_MEMORY_REGION) != 0
4610 || lang_memory_region_list->next != NULL)
4611 && expld.phase != lang_mark_phase_enum)
4613 /* By default this is an error rather than just a
4614 warning because if we allocate the section to the
4615 default memory region we can end up creating an
4616 excessively large binary, or even seg faulting when
4617 attempting to perform a negative seek. See
4618 sources.redhat.com/ml/binutils/2003-04/msg00423.html
4619 for an example of this. This behaviour can be
4620 overridden by the using the --no-check-sections
4621 switch. */
4622 if (command_line.check_section_addresses)
4623 einfo (_("%P%F: error: no memory region specified"
4624 " for loadable section `%s'\n"),
4625 bfd_get_section_name (link_info.output_bfd,
4626 os->bfd_section));
4627 else
4628 einfo (_("%P: warning: no memory region specified"
4629 " for loadable section `%s'\n"),
4630 bfd_get_section_name (link_info.output_bfd,
4631 os->bfd_section));
4634 newdot = os->region->current;
4635 align = os->bfd_section->alignment_power;
4637 else
4638 align = os->section_alignment;
4640 /* Align to what the section needs. */
4641 if (align > 0)
4643 bfd_vma savedot = newdot;
4644 newdot = align_power (newdot, align);
4646 if (newdot != savedot
4647 && (config.warn_section_align
4648 || os->addr_tree != NULL)
4649 && expld.phase != lang_mark_phase_enum)
4650 einfo (_("%P: warning: changing start of section"
4651 " %s by %lu bytes\n"),
4652 os->name, (unsigned long) (newdot - savedot));
4655 /* PR 6945: Do not update the vma's of output sections
4656 when performing a relocatable link on COFF objects. */
4657 if (! link_info.relocatable
4658 || (bfd_get_flavour (link_info.output_bfd)
4659 != bfd_target_coff_flavour))
4660 bfd_set_section_vma (0, os->bfd_section, newdot);
4662 os->bfd_section->output_offset = 0;
4665 lang_size_sections_1 (os->children.head, os, &os->children.head,
4666 os->fill, newdot, relax, check_regions);
4668 os->processed_vma = TRUE;
4670 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
4671 /* Except for some special linker created sections,
4672 no output section should change from zero size
4673 after strip_excluded_output_sections. A non-zero
4674 size on an ignored section indicates that some
4675 input section was not sized early enough. */
4676 ASSERT (os->bfd_section->size == 0);
4677 else
4679 dot = os->bfd_section->vma;
4681 /* Put the section within the requested block size, or
4682 align at the block boundary. */
4683 after = ((dot
4684 + TO_ADDR (os->bfd_section->size)
4685 + os->block_value - 1)
4686 & - (bfd_vma) os->block_value);
4688 os->bfd_section->size = TO_SIZE (after - os->bfd_section->vma);
4691 /* Set section lma. */
4692 r = os->region;
4693 if (r == NULL)
4694 r = lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
4696 if (os->load_base)
4698 bfd_vma lma = exp_get_abs_int (os->load_base, 0, "load base");
4699 os->bfd_section->lma = lma;
4701 else if (os->lma_region != NULL)
4703 bfd_vma lma = os->lma_region->current;
4705 if (os->section_alignment != -1)
4706 lma = align_power (lma, os->section_alignment);
4707 os->bfd_section->lma = lma;
4709 else if (r->last_os != NULL
4710 && (os->bfd_section->flags & SEC_ALLOC) != 0)
4712 bfd_vma lma;
4713 asection *last;
4715 last = r->last_os->output_section_statement.bfd_section;
4717 /* A backwards move of dot should be accompanied by
4718 an explicit assignment to the section LMA (ie.
4719 os->load_base set) because backwards moves can
4720 create overlapping LMAs. */
4721 if (dot < last->vma
4722 && os->bfd_section->size != 0
4723 && dot + os->bfd_section->size <= last->vma)
4725 /* If dot moved backwards then leave lma equal to
4726 vma. This is the old default lma, which might
4727 just happen to work when the backwards move is
4728 sufficiently large. Nag if this changes anything,
4729 so people can fix their linker scripts. */
4731 if (last->vma != last->lma)
4732 einfo (_("%P: warning: dot moved backwards before `%s'\n"),
4733 os->name);
4735 else
4737 /* If this is an overlay, set the current lma to that
4738 at the end of the previous section. */
4739 if (os->sectype == overlay_section)
4740 lma = last->lma + last->size;
4742 /* Otherwise, keep the same lma to vma relationship
4743 as the previous section. */
4744 else
4745 lma = dot + last->lma - last->vma;
4747 if (os->section_alignment != -1)
4748 lma = align_power (lma, os->section_alignment);
4749 os->bfd_section->lma = lma;
4752 os->processed_lma = TRUE;
4754 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
4755 break;
4757 /* Keep track of normal sections using the default
4758 lma region. We use this to set the lma for
4759 following sections. Overlays or other linker
4760 script assignment to lma might mean that the
4761 default lma == vma is incorrect.
4762 To avoid warnings about dot moving backwards when using
4763 -Ttext, don't start tracking sections until we find one
4764 of non-zero size or with lma set differently to vma. */
4765 if (((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
4766 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0)
4767 && (os->bfd_section->flags & SEC_ALLOC) != 0
4768 && (os->bfd_section->size != 0
4769 || (r->last_os == NULL
4770 && os->bfd_section->vma != os->bfd_section->lma)
4771 || (r->last_os != NULL
4772 && dot >= (r->last_os->output_section_statement
4773 .bfd_section->vma)))
4774 && os->lma_region == NULL
4775 && !link_info.relocatable)
4776 r->last_os = s;
4778 /* .tbss sections effectively have zero size. */
4779 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
4780 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
4781 || link_info.relocatable)
4782 dot += TO_ADDR (os->bfd_section->size);
4784 if (os->update_dot_tree != 0)
4785 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
4787 /* Update dot in the region ?
4788 We only do this if the section is going to be allocated,
4789 since unallocated sections do not contribute to the region's
4790 overall size in memory.
4792 If the SEC_NEVER_LOAD bit is not set, it will affect the
4793 addresses of sections after it. We have to update
4794 dot. */
4795 if (os->region != NULL
4796 && ((os->bfd_section->flags & SEC_NEVER_LOAD) == 0
4797 || (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))))
4799 os->region->current = dot;
4801 if (check_regions)
4802 /* Make sure the new address is within the region. */
4803 os_region_check (os, os->region, os->addr_tree,
4804 os->bfd_section->vma);
4806 if (os->lma_region != NULL && os->lma_region != os->region
4807 && (os->bfd_section->flags & SEC_LOAD))
4809 os->lma_region->current
4810 = os->bfd_section->lma + TO_ADDR (os->bfd_section->size);
4812 if (check_regions)
4813 os_region_check (os, os->lma_region, NULL,
4814 os->bfd_section->lma);
4818 break;
4820 case lang_constructors_statement_enum:
4821 dot = lang_size_sections_1 (constructor_list.head,
4822 output_section_statement,
4823 &s->wild_statement.children.head,
4824 fill, dot, relax, check_regions);
4825 break;
4827 case lang_data_statement_enum:
4829 unsigned int size = 0;
4831 s->data_statement.output_offset =
4832 dot - output_section_statement->bfd_section->vma;
4833 s->data_statement.output_section =
4834 output_section_statement->bfd_section;
4836 /* We might refer to provided symbols in the expression, and
4837 need to mark them as needed. */
4838 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
4840 switch (s->data_statement.type)
4842 default:
4843 abort ();
4844 case QUAD:
4845 case SQUAD:
4846 size = QUAD_SIZE;
4847 break;
4848 case LONG:
4849 size = LONG_SIZE;
4850 break;
4851 case SHORT:
4852 size = SHORT_SIZE;
4853 break;
4854 case BYTE:
4855 size = BYTE_SIZE;
4856 break;
4858 if (size < TO_SIZE ((unsigned) 1))
4859 size = TO_SIZE ((unsigned) 1);
4860 dot += TO_ADDR (size);
4861 output_section_statement->bfd_section->size += size;
4863 break;
4865 case lang_reloc_statement_enum:
4867 int size;
4869 s->reloc_statement.output_offset =
4870 dot - output_section_statement->bfd_section->vma;
4871 s->reloc_statement.output_section =
4872 output_section_statement->bfd_section;
4873 size = bfd_get_reloc_size (s->reloc_statement.howto);
4874 dot += TO_ADDR (size);
4875 output_section_statement->bfd_section->size += size;
4877 break;
4879 case lang_wild_statement_enum:
4880 dot = lang_size_sections_1 (s->wild_statement.children.head,
4881 output_section_statement,
4882 &s->wild_statement.children.head,
4883 fill, dot, relax, check_regions);
4884 break;
4886 case lang_object_symbols_statement_enum:
4887 link_info.create_object_symbols_section =
4888 output_section_statement->bfd_section;
4889 break;
4891 case lang_output_statement_enum:
4892 case lang_target_statement_enum:
4893 break;
4895 case lang_input_section_enum:
4897 asection *i;
4899 i = (*prev)->input_section.section;
4900 if (relax)
4902 bfd_boolean again;
4904 if (! bfd_relax_section (i->owner, i, &link_info, &again))
4905 einfo (_("%P%F: can't relax section: %E\n"));
4906 if (again)
4907 *relax = TRUE;
4909 dot = size_input_section (prev, output_section_statement,
4910 output_section_statement->fill, dot);
4912 break;
4914 case lang_input_statement_enum:
4915 break;
4917 case lang_fill_statement_enum:
4918 s->fill_statement.output_section =
4919 output_section_statement->bfd_section;
4921 fill = s->fill_statement.fill;
4922 break;
4924 case lang_assignment_statement_enum:
4926 bfd_vma newdot = dot;
4927 etree_type *tree = s->assignment_statement.exp;
4929 expld.dataseg.relro = exp_dataseg_relro_none;
4931 exp_fold_tree (tree,
4932 output_section_statement->bfd_section,
4933 &newdot);
4935 if (expld.dataseg.relro == exp_dataseg_relro_start)
4937 if (!expld.dataseg.relro_start_stat)
4938 expld.dataseg.relro_start_stat = s;
4939 else
4941 ASSERT (expld.dataseg.relro_start_stat == s);
4944 else if (expld.dataseg.relro == exp_dataseg_relro_end)
4946 if (!expld.dataseg.relro_end_stat)
4947 expld.dataseg.relro_end_stat = s;
4948 else
4950 ASSERT (expld.dataseg.relro_end_stat == s);
4953 expld.dataseg.relro = exp_dataseg_relro_none;
4955 /* This symbol is relative to this section. */
4956 if ((tree->type.node_class == etree_provided
4957 || tree->type.node_class == etree_assign)
4958 && (tree->assign.dst [0] != '.'
4959 || tree->assign.dst [1] != '\0'))
4960 output_section_statement->section_relative_symbol = 1;
4962 if (!output_section_statement->ignored)
4964 if (output_section_statement == abs_output_section)
4966 /* If we don't have an output section, then just adjust
4967 the default memory address. */
4968 lang_memory_region_lookup (DEFAULT_MEMORY_REGION,
4969 FALSE)->current = newdot;
4971 else if (newdot != dot)
4973 /* Insert a pad after this statement. We can't
4974 put the pad before when relaxing, in case the
4975 assignment references dot. */
4976 insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
4977 output_section_statement->bfd_section, dot);
4979 /* Don't neuter the pad below when relaxing. */
4980 s = s->header.next;
4982 /* If dot is advanced, this implies that the section
4983 should have space allocated to it, unless the
4984 user has explicitly stated that the section
4985 should never be loaded. */
4986 if (!(output_section_statement->flags & SEC_NEVER_LOAD))
4987 output_section_statement->bfd_section->flags |= SEC_ALLOC;
4989 dot = newdot;
4992 break;
4994 case lang_padding_statement_enum:
4995 /* If this is the first time lang_size_sections is called,
4996 we won't have any padding statements. If this is the
4997 second or later passes when relaxing, we should allow
4998 padding to shrink. If padding is needed on this pass, it
4999 will be added back in. */
5000 s->padding_statement.size = 0;
5002 /* Make sure output_offset is valid. If relaxation shrinks
5003 the section and this pad isn't needed, it's possible to
5004 have output_offset larger than the final size of the
5005 section. bfd_set_section_contents will complain even for
5006 a pad size of zero. */
5007 s->padding_statement.output_offset
5008 = dot - output_section_statement->bfd_section->vma;
5009 break;
5011 case lang_group_statement_enum:
5012 dot = lang_size_sections_1 (s->group_statement.children.head,
5013 output_section_statement,
5014 &s->group_statement.children.head,
5015 fill, dot, relax, check_regions);
5016 break;
5018 case lang_insert_statement_enum:
5019 break;
5021 /* We can only get here when relaxing is turned on. */
5022 case lang_address_statement_enum:
5023 break;
5025 default:
5026 FAIL ();
5027 break;
5029 prev = &s->header.next;
5031 return dot;
5034 /* Callback routine that is used in _bfd_elf_map_sections_to_segments.
5035 The BFD library has set NEW_SEGMENT to TRUE iff it thinks that
5036 CURRENT_SECTION and PREVIOUS_SECTION ought to be placed into different
5037 segments. We are allowed an opportunity to override this decision. */
5039 bfd_boolean
5040 ldlang_override_segment_assignment (struct bfd_link_info * info ATTRIBUTE_UNUSED,
5041 bfd * abfd ATTRIBUTE_UNUSED,
5042 asection * current_section,
5043 asection * previous_section,
5044 bfd_boolean new_segment)
5046 lang_output_section_statement_type * cur;
5047 lang_output_section_statement_type * prev;
5049 /* The checks below are only necessary when the BFD library has decided
5050 that the two sections ought to be placed into the same segment. */
5051 if (new_segment)
5052 return TRUE;
5054 /* Paranoia checks. */
5055 if (current_section == NULL || previous_section == NULL)
5056 return new_segment;
5058 /* Find the memory regions associated with the two sections.
5059 We call lang_output_section_find() here rather than scanning the list
5060 of output sections looking for a matching section pointer because if
5061 we have a large number of sections then a hash lookup is faster. */
5062 cur = lang_output_section_find (current_section->name);
5063 prev = lang_output_section_find (previous_section->name);
5065 /* More paranoia. */
5066 if (cur == NULL || prev == NULL)
5067 return new_segment;
5069 /* If the regions are different then force the sections to live in
5070 different segments. See the email thread starting at the following
5071 URL for the reasons why this is necessary:
5072 http://sourceware.org/ml/binutils/2007-02/msg00216.html */
5073 return cur->region != prev->region;
5076 void
5077 one_lang_size_sections_pass (bfd_boolean *relax, bfd_boolean check_regions)
5079 lang_statement_iteration++;
5080 lang_size_sections_1 (statement_list.head, abs_output_section,
5081 &statement_list.head, 0, 0, relax, check_regions);
5084 void
5085 lang_size_sections (bfd_boolean *relax, bfd_boolean check_regions)
5087 expld.phase = lang_allocating_phase_enum;
5088 expld.dataseg.phase = exp_dataseg_none;
5090 one_lang_size_sections_pass (relax, check_regions);
5091 if (expld.dataseg.phase == exp_dataseg_end_seen
5092 && link_info.relro && expld.dataseg.relro_end)
5094 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
5095 to put expld.dataseg.relro on a (common) page boundary. */
5096 bfd_vma min_base, old_base, relro_end, maxpage;
5098 expld.dataseg.phase = exp_dataseg_relro_adjust;
5099 maxpage = expld.dataseg.maxpagesize;
5100 /* MIN_BASE is the absolute minimum address we are allowed to start the
5101 read-write segment (byte before will be mapped read-only). */
5102 min_base = (expld.dataseg.min_base + maxpage - 1) & ~(maxpage - 1);
5103 /* OLD_BASE is the address for a feasible minimum address which will
5104 still not cause a data overlap inside MAXPAGE causing file offset skip
5105 by MAXPAGE. */
5106 old_base = expld.dataseg.base;
5107 expld.dataseg.base += (-expld.dataseg.relro_end
5108 & (expld.dataseg.pagesize - 1));
5109 /* Compute the expected PT_GNU_RELRO segment end. */
5110 relro_end = ((expld.dataseg.relro_end + expld.dataseg.pagesize - 1)
5111 & ~(expld.dataseg.pagesize - 1));
5112 if (min_base + maxpage < expld.dataseg.base)
5114 expld.dataseg.base -= maxpage;
5115 relro_end -= maxpage;
5117 lang_reset_memory_regions ();
5118 one_lang_size_sections_pass (relax, check_regions);
5119 if (expld.dataseg.relro_end > relro_end)
5121 /* The alignment of sections between DATA_SEGMENT_ALIGN
5122 and DATA_SEGMENT_RELRO_END caused huge padding to be
5123 inserted at DATA_SEGMENT_RELRO_END. Try to start a bit lower so
5124 that the section alignments will fit in. */
5125 asection *sec;
5126 unsigned int max_alignment_power = 0;
5128 /* Find maximum alignment power of sections between
5129 DATA_SEGMENT_ALIGN and DATA_SEGMENT_RELRO_END. */
5130 for (sec = link_info.output_bfd->sections; sec; sec = sec->next)
5131 if (sec->vma >= expld.dataseg.base
5132 && sec->vma < expld.dataseg.relro_end
5133 && sec->alignment_power > max_alignment_power)
5134 max_alignment_power = sec->alignment_power;
5136 if (((bfd_vma) 1 << max_alignment_power) < expld.dataseg.pagesize)
5138 if (expld.dataseg.base - (1 << max_alignment_power) < old_base)
5139 expld.dataseg.base += expld.dataseg.pagesize;
5140 expld.dataseg.base -= (1 << max_alignment_power);
5141 lang_reset_memory_regions ();
5142 one_lang_size_sections_pass (relax, check_regions);
5145 link_info.relro_start = expld.dataseg.base;
5146 link_info.relro_end = expld.dataseg.relro_end;
5148 else if (expld.dataseg.phase == exp_dataseg_end_seen)
5150 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
5151 a page could be saved in the data segment. */
5152 bfd_vma first, last;
5154 first = -expld.dataseg.base & (expld.dataseg.pagesize - 1);
5155 last = expld.dataseg.end & (expld.dataseg.pagesize - 1);
5156 if (first && last
5157 && ((expld.dataseg.base & ~(expld.dataseg.pagesize - 1))
5158 != (expld.dataseg.end & ~(expld.dataseg.pagesize - 1)))
5159 && first + last <= expld.dataseg.pagesize)
5161 expld.dataseg.phase = exp_dataseg_adjust;
5162 lang_reset_memory_regions ();
5163 one_lang_size_sections_pass (relax, check_regions);
5167 expld.phase = lang_final_phase_enum;
5170 /* Worker function for lang_do_assignments. Recursiveness goes here. */
5172 static bfd_vma
5173 lang_do_assignments_1 (lang_statement_union_type *s,
5174 lang_output_section_statement_type *current_os,
5175 fill_type *fill,
5176 bfd_vma dot)
5178 for (; s != NULL; s = s->header.next)
5180 switch (s->header.type)
5182 case lang_constructors_statement_enum:
5183 dot = lang_do_assignments_1 (constructor_list.head,
5184 current_os, fill, dot);
5185 break;
5187 case lang_output_section_statement_enum:
5189 lang_output_section_statement_type *os;
5191 os = &(s->output_section_statement);
5192 if (os->bfd_section != NULL && !os->ignored)
5194 dot = os->bfd_section->vma;
5196 lang_do_assignments_1 (os->children.head, os, os->fill, dot);
5198 /* .tbss sections effectively have zero size. */
5199 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5200 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5201 || link_info.relocatable)
5202 dot += TO_ADDR (os->bfd_section->size);
5204 if (os->update_dot_tree != NULL)
5205 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5208 break;
5210 case lang_wild_statement_enum:
5212 dot = lang_do_assignments_1 (s->wild_statement.children.head,
5213 current_os, fill, dot);
5214 break;
5216 case lang_object_symbols_statement_enum:
5217 case lang_output_statement_enum:
5218 case lang_target_statement_enum:
5219 break;
5221 case lang_data_statement_enum:
5222 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5223 if (expld.result.valid_p)
5224 s->data_statement.value = (expld.result.value
5225 + expld.result.section->vma);
5226 else
5227 einfo (_("%F%P: invalid data statement\n"));
5229 unsigned int size;
5230 switch (s->data_statement.type)
5232 default:
5233 abort ();
5234 case QUAD:
5235 case SQUAD:
5236 size = QUAD_SIZE;
5237 break;
5238 case LONG:
5239 size = LONG_SIZE;
5240 break;
5241 case SHORT:
5242 size = SHORT_SIZE;
5243 break;
5244 case BYTE:
5245 size = BYTE_SIZE;
5246 break;
5248 if (size < TO_SIZE ((unsigned) 1))
5249 size = TO_SIZE ((unsigned) 1);
5250 dot += TO_ADDR (size);
5252 break;
5254 case lang_reloc_statement_enum:
5255 exp_fold_tree (s->reloc_statement.addend_exp,
5256 bfd_abs_section_ptr, &dot);
5257 if (expld.result.valid_p)
5258 s->reloc_statement.addend_value = expld.result.value;
5259 else
5260 einfo (_("%F%P: invalid reloc statement\n"));
5261 dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
5262 break;
5264 case lang_input_section_enum:
5266 asection *in = s->input_section.section;
5268 if ((in->flags & SEC_EXCLUDE) == 0)
5269 dot += TO_ADDR (in->size);
5271 break;
5273 case lang_input_statement_enum:
5274 break;
5276 case lang_fill_statement_enum:
5277 fill = s->fill_statement.fill;
5278 break;
5280 case lang_assignment_statement_enum:
5281 exp_fold_tree (s->assignment_statement.exp,
5282 current_os->bfd_section,
5283 &dot);
5284 break;
5286 case lang_padding_statement_enum:
5287 dot += TO_ADDR (s->padding_statement.size);
5288 break;
5290 case lang_group_statement_enum:
5291 dot = lang_do_assignments_1 (s->group_statement.children.head,
5292 current_os, fill, dot);
5293 break;
5295 case lang_insert_statement_enum:
5296 break;
5298 case lang_address_statement_enum:
5299 break;
5301 default:
5302 FAIL ();
5303 break;
5306 return dot;
5309 void
5310 lang_do_assignments (void)
5312 lang_statement_iteration++;
5313 lang_do_assignments_1 (statement_list.head, abs_output_section, NULL, 0);
5316 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
5317 operator .startof. (section_name), it produces an undefined symbol
5318 .startof.section_name. Similarly, when it sees
5319 .sizeof. (section_name), it produces an undefined symbol
5320 .sizeof.section_name. For all the output sections, we look for
5321 such symbols, and set them to the correct value. */
5323 static void
5324 lang_set_startof (void)
5326 asection *s;
5328 if (link_info.relocatable)
5329 return;
5331 for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
5333 const char *secname;
5334 char *buf;
5335 struct bfd_link_hash_entry *h;
5337 secname = bfd_get_section_name (link_info.output_bfd, s);
5338 buf = xmalloc (10 + strlen (secname));
5340 sprintf (buf, ".startof.%s", secname);
5341 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5342 if (h != NULL && h->type == bfd_link_hash_undefined)
5344 h->type = bfd_link_hash_defined;
5345 h->u.def.value = bfd_get_section_vma (link_info.output_bfd, s);
5346 h->u.def.section = bfd_abs_section_ptr;
5349 sprintf (buf, ".sizeof.%s", secname);
5350 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5351 if (h != NULL && h->type == bfd_link_hash_undefined)
5353 h->type = bfd_link_hash_defined;
5354 h->u.def.value = TO_ADDR (s->size);
5355 h->u.def.section = bfd_abs_section_ptr;
5358 free (buf);
5362 static void
5363 lang_end (void)
5365 struct bfd_link_hash_entry *h;
5366 bfd_boolean warn;
5368 if ((link_info.relocatable && !link_info.gc_sections)
5369 || link_info.shared)
5370 warn = entry_from_cmdline;
5371 else
5372 warn = TRUE;
5374 /* Force the user to specify a root when generating a relocatable with
5375 --gc-sections. */
5376 if (link_info.gc_sections && link_info.relocatable
5377 && (entry_symbol.name == NULL
5378 && ldlang_undef_chain_list_head == NULL))
5379 einfo (_("%P%F: gc-sections requires either an entry or "
5380 "an undefined symbol\n"));
5382 if (entry_symbol.name == NULL)
5384 /* No entry has been specified. Look for the default entry, but
5385 don't warn if we don't find it. */
5386 entry_symbol.name = entry_symbol_default;
5387 warn = FALSE;
5390 h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
5391 FALSE, FALSE, TRUE);
5392 if (h != NULL
5393 && (h->type == bfd_link_hash_defined
5394 || h->type == bfd_link_hash_defweak)
5395 && h->u.def.section->output_section != NULL)
5397 bfd_vma val;
5399 val = (h->u.def.value
5400 + bfd_get_section_vma (link_info.output_bfd,
5401 h->u.def.section->output_section)
5402 + h->u.def.section->output_offset);
5403 if (! bfd_set_start_address (link_info.output_bfd, val))
5404 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
5406 else
5408 bfd_vma val;
5409 const char *send;
5411 /* We couldn't find the entry symbol. Try parsing it as a
5412 number. */
5413 val = bfd_scan_vma (entry_symbol.name, &send, 0);
5414 if (*send == '\0')
5416 if (! bfd_set_start_address (link_info.output_bfd, val))
5417 einfo (_("%P%F: can't set start address\n"));
5419 else
5421 asection *ts;
5423 /* Can't find the entry symbol, and it's not a number. Use
5424 the first address in the text section. */
5425 ts = bfd_get_section_by_name (link_info.output_bfd, entry_section);
5426 if (ts != NULL)
5428 if (warn)
5429 einfo (_("%P: warning: cannot find entry symbol %s;"
5430 " defaulting to %V\n"),
5431 entry_symbol.name,
5432 bfd_get_section_vma (link_info.output_bfd, ts));
5433 if (!(bfd_set_start_address
5434 (link_info.output_bfd,
5435 bfd_get_section_vma (link_info.output_bfd, ts))))
5436 einfo (_("%P%F: can't set start address\n"));
5438 else
5440 if (warn)
5441 einfo (_("%P: warning: cannot find entry symbol %s;"
5442 " not setting start address\n"),
5443 entry_symbol.name);
5448 /* Don't bfd_hash_table_free (&lang_definedness_table);
5449 map file output may result in a call of lang_track_definedness. */
5452 /* This is a small function used when we want to ignore errors from
5453 BFD. */
5455 static void
5456 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
5458 /* Don't do anything. */
5461 /* Check that the architecture of all the input files is compatible
5462 with the output file. Also call the backend to let it do any
5463 other checking that is needed. */
5465 static void
5466 lang_check (void)
5468 lang_statement_union_type *file;
5469 bfd *input_bfd;
5470 const bfd_arch_info_type *compatible;
5472 for (file = file_chain.head; file != NULL; file = file->input_statement.next)
5474 input_bfd = file->input_statement.the_bfd;
5475 compatible
5476 = bfd_arch_get_compatible (input_bfd, link_info.output_bfd,
5477 command_line.accept_unknown_input_arch);
5479 /* In general it is not possible to perform a relocatable
5480 link between differing object formats when the input
5481 file has relocations, because the relocations in the
5482 input format may not have equivalent representations in
5483 the output format (and besides BFD does not translate
5484 relocs for other link purposes than a final link). */
5485 if ((link_info.relocatable || link_info.emitrelocations)
5486 && (compatible == NULL
5487 || (bfd_get_flavour (input_bfd)
5488 != bfd_get_flavour (link_info.output_bfd)))
5489 && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
5491 einfo (_("%P%F: Relocatable linking with relocations from"
5492 " format %s (%B) to format %s (%B) is not supported\n"),
5493 bfd_get_target (input_bfd), input_bfd,
5494 bfd_get_target (link_info.output_bfd), link_info.output_bfd);
5495 /* einfo with %F exits. */
5498 if (compatible == NULL)
5500 if (command_line.warn_mismatch)
5501 einfo (_("%P%X: %s architecture of input file `%B'"
5502 " is incompatible with %s output\n"),
5503 bfd_printable_name (input_bfd), input_bfd,
5504 bfd_printable_name (link_info.output_bfd));
5506 else if (bfd_count_sections (input_bfd))
5508 /* If the input bfd has no contents, it shouldn't set the
5509 private data of the output bfd. */
5511 bfd_error_handler_type pfn = NULL;
5513 /* If we aren't supposed to warn about mismatched input
5514 files, temporarily set the BFD error handler to a
5515 function which will do nothing. We still want to call
5516 bfd_merge_private_bfd_data, since it may set up
5517 information which is needed in the output file. */
5518 if (! command_line.warn_mismatch)
5519 pfn = bfd_set_error_handler (ignore_bfd_errors);
5520 if (! bfd_merge_private_bfd_data (input_bfd, link_info.output_bfd))
5522 if (command_line.warn_mismatch)
5523 einfo (_("%P%X: failed to merge target specific data"
5524 " of file %B\n"), input_bfd);
5526 if (! command_line.warn_mismatch)
5527 bfd_set_error_handler (pfn);
5532 /* Look through all the global common symbols and attach them to the
5533 correct section. The -sort-common command line switch may be used
5534 to roughly sort the entries by alignment. */
5536 static void
5537 lang_common (void)
5539 if (command_line.inhibit_common_definition)
5540 return;
5541 if (link_info.relocatable
5542 && ! command_line.force_common_definition)
5543 return;
5545 if (! config.sort_common)
5546 bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
5547 else
5549 unsigned int power;
5551 if (config.sort_common == sort_descending)
5553 for (power = 4; power > 0; power--)
5554 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5556 power = 0;
5557 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5559 else
5561 for (power = 0; power <= 4; power++)
5562 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5564 power = UINT_MAX;
5565 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5570 /* Place one common symbol in the correct section. */
5572 static bfd_boolean
5573 lang_one_common (struct bfd_link_hash_entry *h, void *info)
5575 unsigned int power_of_two;
5576 bfd_vma size;
5577 asection *section;
5579 if (h->type != bfd_link_hash_common)
5580 return TRUE;
5582 size = h->u.c.size;
5583 power_of_two = h->u.c.p->alignment_power;
5585 if (config.sort_common == sort_descending
5586 && power_of_two < *(unsigned int *) info)
5587 return TRUE;
5588 else if (config.sort_common == sort_ascending
5589 && power_of_two > *(unsigned int *) info)
5590 return TRUE;
5592 section = h->u.c.p->section;
5594 /* Increase the size of the section to align the common sym. */
5595 section->size += ((bfd_vma) 1 << (power_of_two + opb_shift)) - 1;
5596 section->size &= (- (bfd_vma) 1 << (power_of_two + opb_shift));
5598 /* Adjust the alignment if necessary. */
5599 if (power_of_two > section->alignment_power)
5600 section->alignment_power = power_of_two;
5602 /* Change the symbol from common to defined. */
5603 h->type = bfd_link_hash_defined;
5604 h->u.def.section = section;
5605 h->u.def.value = section->size;
5607 /* Increase the size of the section. */
5608 section->size += size;
5610 /* Make sure the section is allocated in memory, and make sure that
5611 it is no longer a common section. */
5612 section->flags |= SEC_ALLOC;
5613 section->flags &= ~SEC_IS_COMMON;
5615 if (config.map_file != NULL)
5617 static bfd_boolean header_printed;
5618 int len;
5619 char *name;
5620 char buf[50];
5622 if (! header_printed)
5624 minfo (_("\nAllocating common symbols\n"));
5625 minfo (_("Common symbol size file\n\n"));
5626 header_printed = TRUE;
5629 name = bfd_demangle (link_info.output_bfd, h->root.string,
5630 DMGL_ANSI | DMGL_PARAMS);
5631 if (name == NULL)
5633 minfo ("%s", h->root.string);
5634 len = strlen (h->root.string);
5636 else
5638 minfo ("%s", name);
5639 len = strlen (name);
5640 free (name);
5643 if (len >= 19)
5645 print_nl ();
5646 len = 0;
5648 while (len < 20)
5650 print_space ();
5651 ++len;
5654 minfo ("0x");
5655 if (size <= 0xffffffff)
5656 sprintf (buf, "%lx", (unsigned long) size);
5657 else
5658 sprintf_vma (buf, size);
5659 minfo ("%s", buf);
5660 len = strlen (buf);
5662 while (len < 16)
5664 print_space ();
5665 ++len;
5668 minfo ("%B\n", section->owner);
5671 return TRUE;
5674 /* Run through the input files and ensure that every input section has
5675 somewhere to go. If one is found without a destination then create
5676 an input request and place it into the statement tree. */
5678 static void
5679 lang_place_orphans (void)
5681 LANG_FOR_EACH_INPUT_STATEMENT (file)
5683 asection *s;
5685 for (s = file->the_bfd->sections; s != NULL; s = s->next)
5687 if (s->output_section == NULL)
5689 /* This section of the file is not attached, root
5690 around for a sensible place for it to go. */
5692 if (file->just_syms_flag)
5693 bfd_link_just_syms (file->the_bfd, s, &link_info);
5694 else if ((s->flags & SEC_EXCLUDE) != 0)
5695 s->output_section = bfd_abs_section_ptr;
5696 else if (strcmp (s->name, "COMMON") == 0)
5698 /* This is a lonely common section which must have
5699 come from an archive. We attach to the section
5700 with the wildcard. */
5701 if (! link_info.relocatable
5702 || command_line.force_common_definition)
5704 if (default_common_section == NULL)
5705 default_common_section
5706 = lang_output_section_statement_lookup (".bss", 0,
5707 TRUE);
5708 lang_add_section (&default_common_section->children, s,
5709 default_common_section);
5712 else
5714 const char *name = s->name;
5715 int constraint = 0;
5717 if (config.unique_orphan_sections || unique_section_p (s))
5718 constraint = SPECIAL;
5720 if (!ldemul_place_orphan (s, name, constraint))
5722 lang_output_section_statement_type *os;
5723 os = lang_output_section_statement_lookup (name,
5724 constraint,
5725 TRUE);
5726 lang_add_section (&os->children, s, os);
5734 void
5735 lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
5737 flagword *ptr_flags;
5739 ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
5740 while (*flags)
5742 switch (*flags)
5744 case 'A': case 'a':
5745 *ptr_flags |= SEC_ALLOC;
5746 break;
5748 case 'R': case 'r':
5749 *ptr_flags |= SEC_READONLY;
5750 break;
5752 case 'W': case 'w':
5753 *ptr_flags |= SEC_DATA;
5754 break;
5756 case 'X': case 'x':
5757 *ptr_flags |= SEC_CODE;
5758 break;
5760 case 'L': case 'l':
5761 case 'I': case 'i':
5762 *ptr_flags |= SEC_LOAD;
5763 break;
5765 default:
5766 einfo (_("%P%F: invalid syntax in flags\n"));
5767 break;
5769 flags++;
5773 /* Call a function on each input file. This function will be called
5774 on an archive, but not on the elements. */
5776 void
5777 lang_for_each_input_file (void (*func) (lang_input_statement_type *))
5779 lang_input_statement_type *f;
5781 for (f = (lang_input_statement_type *) input_file_chain.head;
5782 f != NULL;
5783 f = (lang_input_statement_type *) f->next_real_file)
5784 func (f);
5787 /* Call a function on each file. The function will be called on all
5788 the elements of an archive which are included in the link, but will
5789 not be called on the archive file itself. */
5791 void
5792 lang_for_each_file (void (*func) (lang_input_statement_type *))
5794 LANG_FOR_EACH_INPUT_STATEMENT (f)
5796 func (f);
5800 void
5801 ldlang_add_file (lang_input_statement_type *entry)
5803 lang_statement_append (&file_chain,
5804 (lang_statement_union_type *) entry,
5805 &entry->next);
5807 /* The BFD linker needs to have a list of all input BFDs involved in
5808 a link. */
5809 ASSERT (entry->the_bfd->link_next == NULL);
5810 ASSERT (entry->the_bfd != link_info.output_bfd);
5812 *link_info.input_bfds_tail = entry->the_bfd;
5813 link_info.input_bfds_tail = &entry->the_bfd->link_next;
5814 entry->the_bfd->usrdata = entry;
5815 bfd_set_gp_size (entry->the_bfd, g_switch_value);
5817 /* Look through the sections and check for any which should not be
5818 included in the link. We need to do this now, so that we can
5819 notice when the backend linker tries to report multiple
5820 definition errors for symbols which are in sections we aren't
5821 going to link. FIXME: It might be better to entirely ignore
5822 symbols which are defined in sections which are going to be
5823 discarded. This would require modifying the backend linker for
5824 each backend which might set the SEC_LINK_ONCE flag. If we do
5825 this, we should probably handle SEC_EXCLUDE in the same way. */
5827 bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
5830 void
5831 lang_add_output (const char *name, int from_script)
5833 /* Make -o on command line override OUTPUT in script. */
5834 if (!had_output_filename || !from_script)
5836 output_filename = name;
5837 had_output_filename = TRUE;
5841 static lang_output_section_statement_type *current_section;
5843 static int
5844 topower (int x)
5846 unsigned int i = 1;
5847 int l;
5849 if (x < 0)
5850 return -1;
5852 for (l = 0; l < 32; l++)
5854 if (i >= (unsigned int) x)
5855 return l;
5856 i <<= 1;
5859 return 0;
5862 lang_output_section_statement_type *
5863 lang_enter_output_section_statement (const char *output_section_statement_name,
5864 etree_type *address_exp,
5865 enum section_type sectype,
5866 etree_type *align,
5867 etree_type *subalign,
5868 etree_type *ebase,
5869 int constraint)
5871 lang_output_section_statement_type *os;
5873 os = lang_output_section_statement_lookup (output_section_statement_name,
5874 constraint, TRUE);
5875 current_section = os;
5877 if (os->addr_tree == NULL)
5879 os->addr_tree = address_exp;
5881 os->sectype = sectype;
5882 if (sectype != noload_section)
5883 os->flags = SEC_NO_FLAGS;
5884 else
5885 os->flags = SEC_NEVER_LOAD;
5886 os->block_value = 1;
5888 /* Make next things chain into subchain of this. */
5889 push_stat_ptr (&os->children);
5891 os->subsection_alignment =
5892 topower (exp_get_value_int (subalign, -1, "subsection alignment"));
5893 os->section_alignment =
5894 topower (exp_get_value_int (align, -1, "section alignment"));
5896 os->load_base = ebase;
5897 return os;
5900 void
5901 lang_final (void)
5903 lang_output_statement_type *new;
5905 new = new_stat (lang_output_statement, stat_ptr);
5906 new->name = output_filename;
5909 /* Reset the current counters in the regions. */
5911 void
5912 lang_reset_memory_regions (void)
5914 lang_memory_region_type *p = lang_memory_region_list;
5915 asection *o;
5916 lang_output_section_statement_type *os;
5918 for (p = lang_memory_region_list; p != NULL; p = p->next)
5920 p->current = p->origin;
5921 p->last_os = NULL;
5924 for (os = &lang_output_section_statement.head->output_section_statement;
5925 os != NULL;
5926 os = os->next)
5928 os->processed_vma = FALSE;
5929 os->processed_lma = FALSE;
5932 for (o = link_info.output_bfd->sections; o != NULL; o = o->next)
5934 /* Save the last size for possible use by bfd_relax_section. */
5935 o->rawsize = o->size;
5936 o->size = 0;
5940 /* Worker for lang_gc_sections_1. */
5942 static void
5943 gc_section_callback (lang_wild_statement_type *ptr,
5944 struct wildcard_list *sec ATTRIBUTE_UNUSED,
5945 asection *section,
5946 lang_input_statement_type *file ATTRIBUTE_UNUSED,
5947 void *data ATTRIBUTE_UNUSED)
5949 /* If the wild pattern was marked KEEP, the member sections
5950 should be as well. */
5951 if (ptr->keep_sections)
5952 section->flags |= SEC_KEEP;
5955 /* Iterate over sections marking them against GC. */
5957 static void
5958 lang_gc_sections_1 (lang_statement_union_type *s)
5960 for (; s != NULL; s = s->header.next)
5962 switch (s->header.type)
5964 case lang_wild_statement_enum:
5965 walk_wild (&s->wild_statement, gc_section_callback, NULL);
5966 break;
5967 case lang_constructors_statement_enum:
5968 lang_gc_sections_1 (constructor_list.head);
5969 break;
5970 case lang_output_section_statement_enum:
5971 lang_gc_sections_1 (s->output_section_statement.children.head);
5972 break;
5973 case lang_group_statement_enum:
5974 lang_gc_sections_1 (s->group_statement.children.head);
5975 break;
5976 default:
5977 break;
5982 static void
5983 lang_gc_sections (void)
5985 /* Keep all sections so marked in the link script. */
5987 lang_gc_sections_1 (statement_list.head);
5989 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
5990 the special case of debug info. (See bfd/stabs.c)
5991 Twiddle the flag here, to simplify later linker code. */
5992 if (link_info.relocatable)
5994 LANG_FOR_EACH_INPUT_STATEMENT (f)
5996 asection *sec;
5997 for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next)
5998 if ((sec->flags & SEC_DEBUGGING) == 0)
5999 sec->flags &= ~SEC_EXCLUDE;
6003 if (link_info.gc_sections)
6004 bfd_gc_sections (link_info.output_bfd, &link_info);
6007 /* Worker for lang_find_relro_sections_1. */
6009 static void
6010 find_relro_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
6011 struct wildcard_list *sec ATTRIBUTE_UNUSED,
6012 asection *section,
6013 lang_input_statement_type *file ATTRIBUTE_UNUSED,
6014 void *data)
6016 /* Discarded, excluded and ignored sections effectively have zero
6017 size. */
6018 if (section->output_section != NULL
6019 && section->output_section->owner == link_info.output_bfd
6020 && (section->output_section->flags & SEC_EXCLUDE) == 0
6021 && !IGNORE_SECTION (section)
6022 && section->size != 0)
6024 bfd_boolean *has_relro_section = (bfd_boolean *) data;
6025 *has_relro_section = TRUE;
6029 /* Iterate over sections for relro sections. */
6031 static void
6032 lang_find_relro_sections_1 (lang_statement_union_type *s,
6033 bfd_boolean *has_relro_section)
6035 if (*has_relro_section)
6036 return;
6038 for (; s != NULL; s = s->header.next)
6040 if (s == expld.dataseg.relro_end_stat)
6041 break;
6043 switch (s->header.type)
6045 case lang_wild_statement_enum:
6046 walk_wild (&s->wild_statement,
6047 find_relro_section_callback,
6048 has_relro_section);
6049 break;
6050 case lang_constructors_statement_enum:
6051 lang_find_relro_sections_1 (constructor_list.head,
6052 has_relro_section);
6053 break;
6054 case lang_output_section_statement_enum:
6055 lang_find_relro_sections_1 (s->output_section_statement.children.head,
6056 has_relro_section);
6057 break;
6058 case lang_group_statement_enum:
6059 lang_find_relro_sections_1 (s->group_statement.children.head,
6060 has_relro_section);
6061 break;
6062 default:
6063 break;
6068 static void
6069 lang_find_relro_sections (void)
6071 bfd_boolean has_relro_section = FALSE;
6073 /* Check all sections in the link script. */
6075 lang_find_relro_sections_1 (expld.dataseg.relro_start_stat,
6076 &has_relro_section);
6078 if (!has_relro_section)
6079 link_info.relro = FALSE;
6082 /* Relax all sections until bfd_relax_section gives up. */
6084 static void
6085 relax_sections (void)
6087 /* Keep relaxing until bfd_relax_section gives up. */
6088 bfd_boolean relax_again;
6090 link_info.relax_trip = -1;
6093 relax_again = FALSE;
6094 link_info.relax_trip++;
6096 /* Note: pe-dll.c does something like this also. If you find
6097 you need to change this code, you probably need to change
6098 pe-dll.c also. DJ */
6100 /* Do all the assignments with our current guesses as to
6101 section sizes. */
6102 lang_do_assignments ();
6104 /* We must do this after lang_do_assignments, because it uses
6105 size. */
6106 lang_reset_memory_regions ();
6108 /* Perform another relax pass - this time we know where the
6109 globals are, so can make a better guess. */
6110 lang_size_sections (&relax_again, FALSE);
6112 while (relax_again);
6115 void
6116 lang_process (void)
6118 /* Finalize dynamic list. */
6119 if (link_info.dynamic_list)
6120 lang_finalize_version_expr_head (&link_info.dynamic_list->head);
6122 current_target = default_target;
6124 /* Open the output file. */
6125 lang_for_each_statement (ldlang_open_output);
6126 init_opb ();
6128 ldemul_create_output_section_statements ();
6130 /* Add to the hash table all undefineds on the command line. */
6131 lang_place_undefineds ();
6133 if (!bfd_section_already_linked_table_init ())
6134 einfo (_("%P%F: Failed to create hash table\n"));
6136 /* Create a bfd for each input file. */
6137 current_target = default_target;
6138 open_input_bfds (statement_list.head, FALSE);
6140 link_info.gc_sym_list = &entry_symbol;
6141 if (entry_symbol.name == NULL)
6142 link_info.gc_sym_list = ldlang_undef_chain_list_head;
6144 ldemul_after_open ();
6146 bfd_section_already_linked_table_free ();
6148 /* Make sure that we're not mixing architectures. We call this
6149 after all the input files have been opened, but before we do any
6150 other processing, so that any operations merge_private_bfd_data
6151 does on the output file will be known during the rest of the
6152 link. */
6153 lang_check ();
6155 /* Handle .exports instead of a version script if we're told to do so. */
6156 if (command_line.version_exports_section)
6157 lang_do_version_exports_section ();
6159 /* Build all sets based on the information gathered from the input
6160 files. */
6161 ldctor_build_sets ();
6163 /* Remove unreferenced sections if asked to. */
6164 lang_gc_sections ();
6166 /* Size up the common data. */
6167 lang_common ();
6169 /* Update wild statements. */
6170 update_wild_statements (statement_list.head);
6172 /* Run through the contours of the script and attach input sections
6173 to the correct output sections. */
6174 map_input_to_output_sections (statement_list.head, NULL, NULL);
6176 process_insert_statements ();
6178 /* Find any sections not attached explicitly and handle them. */
6179 lang_place_orphans ();
6181 if (! link_info.relocatable)
6183 asection *found;
6185 /* Merge SEC_MERGE sections. This has to be done after GC of
6186 sections, so that GCed sections are not merged, but before
6187 assigning dynamic symbols, since removing whole input sections
6188 is hard then. */
6189 bfd_merge_sections (link_info.output_bfd, &link_info);
6191 /* Look for a text section and set the readonly attribute in it. */
6192 found = bfd_get_section_by_name (link_info.output_bfd, ".text");
6194 if (found != NULL)
6196 if (config.text_read_only)
6197 found->flags |= SEC_READONLY;
6198 else
6199 found->flags &= ~SEC_READONLY;
6203 /* Do anything special before sizing sections. This is where ELF
6204 and other back-ends size dynamic sections. */
6205 ldemul_before_allocation ();
6207 /* We must record the program headers before we try to fix the
6208 section positions, since they will affect SIZEOF_HEADERS. */
6209 lang_record_phdrs ();
6211 /* Check relro sections. */
6212 if (link_info.relro && ! link_info.relocatable)
6213 lang_find_relro_sections ();
6215 /* Size up the sections. */
6216 lang_size_sections (NULL, !command_line.relax);
6218 /* Now run around and relax if we can. */
6219 if (command_line.relax)
6221 /* We may need more than one relaxation pass. */
6222 int i = link_info.relax_pass;
6224 /* The backend can use it to determine the current pass. */
6225 link_info.relax_pass = 0;
6227 while (i--)
6229 relax_sections ();
6230 link_info.relax_pass++;
6233 /* Final extra sizing to report errors. */
6234 lang_do_assignments ();
6235 lang_reset_memory_regions ();
6236 lang_size_sections (NULL, TRUE);
6239 /* See if anything special should be done now we know how big
6240 everything is. */
6241 ldemul_after_allocation ();
6243 /* Fix any .startof. or .sizeof. symbols. */
6244 lang_set_startof ();
6246 /* Do all the assignments, now that we know the final resting places
6247 of all the symbols. */
6249 lang_do_assignments ();
6251 ldemul_finish ();
6253 /* Make sure that the section addresses make sense. */
6254 if (command_line.check_section_addresses)
6255 lang_check_section_addresses ();
6257 lang_end ();
6260 /* EXPORTED TO YACC */
6262 void
6263 lang_add_wild (struct wildcard_spec *filespec,
6264 struct wildcard_list *section_list,
6265 bfd_boolean keep_sections)
6267 struct wildcard_list *curr, *next;
6268 lang_wild_statement_type *new;
6270 /* Reverse the list as the parser puts it back to front. */
6271 for (curr = section_list, section_list = NULL;
6272 curr != NULL;
6273 section_list = curr, curr = next)
6275 if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
6276 placed_commons = TRUE;
6278 next = curr->next;
6279 curr->next = section_list;
6282 if (filespec != NULL && filespec->name != NULL)
6284 if (strcmp (filespec->name, "*") == 0)
6285 filespec->name = NULL;
6286 else if (! wildcardp (filespec->name))
6287 lang_has_input_file = TRUE;
6290 new = new_stat (lang_wild_statement, stat_ptr);
6291 new->filename = NULL;
6292 new->filenames_sorted = FALSE;
6293 if (filespec != NULL)
6295 new->filename = filespec->name;
6296 new->filenames_sorted = filespec->sorted == by_name;
6298 new->section_list = section_list;
6299 new->keep_sections = keep_sections;
6300 lang_list_init (&new->children);
6301 analyze_walk_wild_section_handler (new);
6304 void
6305 lang_section_start (const char *name, etree_type *address,
6306 const segment_type *segment)
6308 lang_address_statement_type *ad;
6310 ad = new_stat (lang_address_statement, stat_ptr);
6311 ad->section_name = name;
6312 ad->address = address;
6313 ad->segment = segment;
6316 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
6317 because of a -e argument on the command line, or zero if this is
6318 called by ENTRY in a linker script. Command line arguments take
6319 precedence. */
6321 void
6322 lang_add_entry (const char *name, bfd_boolean cmdline)
6324 if (entry_symbol.name == NULL
6325 || cmdline
6326 || ! entry_from_cmdline)
6328 entry_symbol.name = name;
6329 entry_from_cmdline = cmdline;
6333 /* Set the default start symbol to NAME. .em files should use this,
6334 not lang_add_entry, to override the use of "start" if neither the
6335 linker script nor the command line specifies an entry point. NAME
6336 must be permanently allocated. */
6337 void
6338 lang_default_entry (const char *name)
6340 entry_symbol_default = name;
6343 void
6344 lang_add_target (const char *name)
6346 lang_target_statement_type *new;
6348 new = new_stat (lang_target_statement, stat_ptr);
6349 new->target = name;
6352 void
6353 lang_add_map (const char *name)
6355 while (*name)
6357 switch (*name)
6359 case 'F':
6360 map_option_f = TRUE;
6361 break;
6363 name++;
6367 void
6368 lang_add_fill (fill_type *fill)
6370 lang_fill_statement_type *new;
6372 new = new_stat (lang_fill_statement, stat_ptr);
6373 new->fill = fill;
6376 void
6377 lang_add_data (int type, union etree_union *exp)
6379 lang_data_statement_type *new;
6381 new = new_stat (lang_data_statement, stat_ptr);
6382 new->exp = exp;
6383 new->type = type;
6386 /* Create a new reloc statement. RELOC is the BFD relocation type to
6387 generate. HOWTO is the corresponding howto structure (we could
6388 look this up, but the caller has already done so). SECTION is the
6389 section to generate a reloc against, or NAME is the name of the
6390 symbol to generate a reloc against. Exactly one of SECTION and
6391 NAME must be NULL. ADDEND is an expression for the addend. */
6393 void
6394 lang_add_reloc (bfd_reloc_code_real_type reloc,
6395 reloc_howto_type *howto,
6396 asection *section,
6397 const char *name,
6398 union etree_union *addend)
6400 lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
6402 p->reloc = reloc;
6403 p->howto = howto;
6404 p->section = section;
6405 p->name = name;
6406 p->addend_exp = addend;
6408 p->addend_value = 0;
6409 p->output_section = NULL;
6410 p->output_offset = 0;
6413 lang_assignment_statement_type *
6414 lang_add_assignment (etree_type *exp)
6416 lang_assignment_statement_type *new;
6418 new = new_stat (lang_assignment_statement, stat_ptr);
6419 new->exp = exp;
6420 return new;
6423 void
6424 lang_add_attribute (enum statement_enum attribute)
6426 new_statement (attribute, sizeof (lang_statement_header_type), stat_ptr);
6429 void
6430 lang_startup (const char *name)
6432 if (startup_file != NULL)
6434 einfo (_("%P%F: multiple STARTUP files\n"));
6436 first_file->filename = name;
6437 first_file->local_sym_name = name;
6438 first_file->real = TRUE;
6440 startup_file = name;
6443 void
6444 lang_float (bfd_boolean maybe)
6446 lang_float_flag = maybe;
6450 /* Work out the load- and run-time regions from a script statement, and
6451 store them in *LMA_REGION and *REGION respectively.
6453 MEMSPEC is the name of the run-time region, or the value of
6454 DEFAULT_MEMORY_REGION if the statement didn't specify one.
6455 LMA_MEMSPEC is the name of the load-time region, or null if the
6456 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
6457 had an explicit load address.
6459 It is an error to specify both a load region and a load address. */
6461 static void
6462 lang_get_regions (lang_memory_region_type **region,
6463 lang_memory_region_type **lma_region,
6464 const char *memspec,
6465 const char *lma_memspec,
6466 bfd_boolean have_lma,
6467 bfd_boolean have_vma)
6469 *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
6471 /* If no runtime region or VMA has been specified, but the load region
6472 has been specified, then use the load region for the runtime region
6473 as well. */
6474 if (lma_memspec != NULL
6475 && ! have_vma
6476 && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
6477 *region = *lma_region;
6478 else
6479 *region = lang_memory_region_lookup (memspec, FALSE);
6481 if (have_lma && lma_memspec != 0)
6482 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
6485 void
6486 lang_leave_output_section_statement (fill_type *fill, const char *memspec,
6487 lang_output_section_phdr_list *phdrs,
6488 const char *lma_memspec)
6490 lang_get_regions (&current_section->region,
6491 &current_section->lma_region,
6492 memspec, lma_memspec,
6493 current_section->load_base != NULL,
6494 current_section->addr_tree != NULL);
6495 current_section->fill = fill;
6496 current_section->phdrs = phdrs;
6497 pop_stat_ptr ();
6500 /* Create an absolute symbol with the given name with the value of the
6501 address of first byte of the section named.
6503 If the symbol already exists, then do nothing. */
6505 void
6506 lang_abs_symbol_at_beginning_of (const char *secname, const char *name)
6508 struct bfd_link_hash_entry *h;
6510 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
6511 if (h == NULL)
6512 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6514 if (h->type == bfd_link_hash_new
6515 || h->type == bfd_link_hash_undefined)
6517 asection *sec;
6519 h->type = bfd_link_hash_defined;
6521 sec = bfd_get_section_by_name (link_info.output_bfd, secname);
6522 if (sec == NULL)
6523 h->u.def.value = 0;
6524 else
6525 h->u.def.value = bfd_get_section_vma (link_info.output_bfd, sec);
6527 h->u.def.section = bfd_abs_section_ptr;
6531 /* Create an absolute symbol with the given name with the value of the
6532 address of the first byte after the end of the section named.
6534 If the symbol already exists, then do nothing. */
6536 void
6537 lang_abs_symbol_at_end_of (const char *secname, const char *name)
6539 struct bfd_link_hash_entry *h;
6541 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
6542 if (h == NULL)
6543 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6545 if (h->type == bfd_link_hash_new
6546 || h->type == bfd_link_hash_undefined)
6548 asection *sec;
6550 h->type = bfd_link_hash_defined;
6552 sec = bfd_get_section_by_name (link_info.output_bfd, secname);
6553 if (sec == NULL)
6554 h->u.def.value = 0;
6555 else
6556 h->u.def.value = (bfd_get_section_vma (link_info.output_bfd, sec)
6557 + TO_ADDR (sec->size));
6559 h->u.def.section = bfd_abs_section_ptr;
6563 void
6564 lang_statement_append (lang_statement_list_type *list,
6565 lang_statement_union_type *element,
6566 lang_statement_union_type **field)
6568 *(list->tail) = element;
6569 list->tail = field;
6572 /* Set the output format type. -oformat overrides scripts. */
6574 void
6575 lang_add_output_format (const char *format,
6576 const char *big,
6577 const char *little,
6578 int from_script)
6580 if (output_target == NULL || !from_script)
6582 if (command_line.endian == ENDIAN_BIG
6583 && big != NULL)
6584 format = big;
6585 else if (command_line.endian == ENDIAN_LITTLE
6586 && little != NULL)
6587 format = little;
6589 output_target = format;
6593 void
6594 lang_add_insert (const char *where, int is_before)
6596 lang_insert_statement_type *new;
6598 new = new_stat (lang_insert_statement, stat_ptr);
6599 new->where = where;
6600 new->is_before = is_before;
6601 saved_script_handle = previous_script_handle;
6604 /* Enter a group. This creates a new lang_group_statement, and sets
6605 stat_ptr to build new statements within the group. */
6607 void
6608 lang_enter_group (void)
6610 lang_group_statement_type *g;
6612 g = new_stat (lang_group_statement, stat_ptr);
6613 lang_list_init (&g->children);
6614 push_stat_ptr (&g->children);
6617 /* Leave a group. This just resets stat_ptr to start writing to the
6618 regular list of statements again. Note that this will not work if
6619 groups can occur inside anything else which can adjust stat_ptr,
6620 but currently they can't. */
6622 void
6623 lang_leave_group (void)
6625 pop_stat_ptr ();
6628 /* Add a new program header. This is called for each entry in a PHDRS
6629 command in a linker script. */
6631 void
6632 lang_new_phdr (const char *name,
6633 etree_type *type,
6634 bfd_boolean filehdr,
6635 bfd_boolean phdrs,
6636 etree_type *at,
6637 etree_type *flags)
6639 struct lang_phdr *n, **pp;
6641 n = stat_alloc (sizeof (struct lang_phdr));
6642 n->next = NULL;
6643 n->name = name;
6644 n->type = exp_get_value_int (type, 0, "program header type");
6645 n->filehdr = filehdr;
6646 n->phdrs = phdrs;
6647 n->at = at;
6648 n->flags = flags;
6650 for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
6652 *pp = n;
6655 /* Record the program header information in the output BFD. FIXME: We
6656 should not be calling an ELF specific function here. */
6658 static void
6659 lang_record_phdrs (void)
6661 unsigned int alc;
6662 asection **secs;
6663 lang_output_section_phdr_list *last;
6664 struct lang_phdr *l;
6665 lang_output_section_statement_type *os;
6667 alc = 10;
6668 secs = xmalloc (alc * sizeof (asection *));
6669 last = NULL;
6671 for (l = lang_phdr_list; l != NULL; l = l->next)
6673 unsigned int c;
6674 flagword flags;
6675 bfd_vma at;
6677 c = 0;
6678 for (os = &lang_output_section_statement.head->output_section_statement;
6679 os != NULL;
6680 os = os->next)
6682 lang_output_section_phdr_list *pl;
6684 if (os->constraint < 0)
6685 continue;
6687 pl = os->phdrs;
6688 if (pl != NULL)
6689 last = pl;
6690 else
6692 if (os->sectype == noload_section
6693 || os->bfd_section == NULL
6694 || (os->bfd_section->flags & SEC_ALLOC) == 0)
6695 continue;
6697 /* Don't add orphans to PT_INTERP header. */
6698 if (l->type == 3)
6699 continue;
6701 if (last == NULL)
6703 lang_output_section_statement_type * tmp_os;
6705 /* If we have not run across a section with a program
6706 header assigned to it yet, then scan forwards to find
6707 one. This prevents inconsistencies in the linker's
6708 behaviour when a script has specified just a single
6709 header and there are sections in that script which are
6710 not assigned to it, and which occur before the first
6711 use of that header. See here for more details:
6712 http://sourceware.org/ml/binutils/2007-02/msg00291.html */
6713 for (tmp_os = os; tmp_os; tmp_os = tmp_os->next)
6714 if (tmp_os->phdrs)
6716 last = tmp_os->phdrs;
6717 break;
6719 if (last == NULL)
6720 einfo (_("%F%P: no sections assigned to phdrs\n"));
6722 pl = last;
6725 if (os->bfd_section == NULL)
6726 continue;
6728 for (; pl != NULL; pl = pl->next)
6730 if (strcmp (pl->name, l->name) == 0)
6732 if (c >= alc)
6734 alc *= 2;
6735 secs = xrealloc (secs, alc * sizeof (asection *));
6737 secs[c] = os->bfd_section;
6738 ++c;
6739 pl->used = TRUE;
6744 if (l->flags == NULL)
6745 flags = 0;
6746 else
6747 flags = exp_get_vma (l->flags, 0, "phdr flags");
6749 if (l->at == NULL)
6750 at = 0;
6751 else
6752 at = exp_get_vma (l->at, 0, "phdr load address");
6754 if (! bfd_record_phdr (link_info.output_bfd, l->type,
6755 l->flags != NULL, flags, l->at != NULL,
6756 at, l->filehdr, l->phdrs, c, secs))
6757 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
6760 free (secs);
6762 /* Make sure all the phdr assignments succeeded. */
6763 for (os = &lang_output_section_statement.head->output_section_statement;
6764 os != NULL;
6765 os = os->next)
6767 lang_output_section_phdr_list *pl;
6769 if (os->constraint < 0
6770 || os->bfd_section == NULL)
6771 continue;
6773 for (pl = os->phdrs;
6774 pl != NULL;
6775 pl = pl->next)
6776 if (! pl->used && strcmp (pl->name, "NONE") != 0)
6777 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
6778 os->name, pl->name);
6782 /* Record a list of sections which may not be cross referenced. */
6784 void
6785 lang_add_nocrossref (lang_nocrossref_type *l)
6787 struct lang_nocrossrefs *n;
6789 n = xmalloc (sizeof *n);
6790 n->next = nocrossref_list;
6791 n->list = l;
6792 nocrossref_list = n;
6794 /* Set notice_all so that we get informed about all symbols. */
6795 link_info.notice_all = TRUE;
6798 /* Overlay handling. We handle overlays with some static variables. */
6800 /* The overlay virtual address. */
6801 static etree_type *overlay_vma;
6802 /* And subsection alignment. */
6803 static etree_type *overlay_subalign;
6805 /* An expression for the maximum section size seen so far. */
6806 static etree_type *overlay_max;
6808 /* A list of all the sections in this overlay. */
6810 struct overlay_list {
6811 struct overlay_list *next;
6812 lang_output_section_statement_type *os;
6815 static struct overlay_list *overlay_list;
6817 /* Start handling an overlay. */
6819 void
6820 lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
6822 /* The grammar should prevent nested overlays from occurring. */
6823 ASSERT (overlay_vma == NULL
6824 && overlay_subalign == NULL
6825 && overlay_max == NULL);
6827 overlay_vma = vma_expr;
6828 overlay_subalign = subalign;
6831 /* Start a section in an overlay. We handle this by calling
6832 lang_enter_output_section_statement with the correct VMA.
6833 lang_leave_overlay sets up the LMA and memory regions. */
6835 void
6836 lang_enter_overlay_section (const char *name)
6838 struct overlay_list *n;
6839 etree_type *size;
6841 lang_enter_output_section_statement (name, overlay_vma, overlay_section,
6842 0, overlay_subalign, 0, 0);
6844 /* If this is the first section, then base the VMA of future
6845 sections on this one. This will work correctly even if `.' is
6846 used in the addresses. */
6847 if (overlay_list == NULL)
6848 overlay_vma = exp_nameop (ADDR, name);
6850 /* Remember the section. */
6851 n = xmalloc (sizeof *n);
6852 n->os = current_section;
6853 n->next = overlay_list;
6854 overlay_list = n;
6856 size = exp_nameop (SIZEOF, name);
6858 /* Arrange to work out the maximum section end address. */
6859 if (overlay_max == NULL)
6860 overlay_max = size;
6861 else
6862 overlay_max = exp_binop (MAX_K, overlay_max, size);
6865 /* Finish a section in an overlay. There isn't any special to do
6866 here. */
6868 void
6869 lang_leave_overlay_section (fill_type *fill,
6870 lang_output_section_phdr_list *phdrs)
6872 const char *name;
6873 char *clean, *s2;
6874 const char *s1;
6875 char *buf;
6877 name = current_section->name;
6879 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
6880 region and that no load-time region has been specified. It doesn't
6881 really matter what we say here, since lang_leave_overlay will
6882 override it. */
6883 lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
6885 /* Define the magic symbols. */
6887 clean = xmalloc (strlen (name) + 1);
6888 s2 = clean;
6889 for (s1 = name; *s1 != '\0'; s1++)
6890 if (ISALNUM (*s1) || *s1 == '_')
6891 *s2++ = *s1;
6892 *s2 = '\0';
6894 buf = xmalloc (strlen (clean) + sizeof "__load_start_");
6895 sprintf (buf, "__load_start_%s", clean);
6896 lang_add_assignment (exp_provide (buf,
6897 exp_nameop (LOADADDR, name),
6898 FALSE));
6900 buf = xmalloc (strlen (clean) + sizeof "__load_stop_");
6901 sprintf (buf, "__load_stop_%s", clean);
6902 lang_add_assignment (exp_provide (buf,
6903 exp_binop ('+',
6904 exp_nameop (LOADADDR, name),
6905 exp_nameop (SIZEOF, name)),
6906 FALSE));
6908 free (clean);
6911 /* Finish an overlay. If there are any overlay wide settings, this
6912 looks through all the sections in the overlay and sets them. */
6914 void
6915 lang_leave_overlay (etree_type *lma_expr,
6916 int nocrossrefs,
6917 fill_type *fill,
6918 const char *memspec,
6919 lang_output_section_phdr_list *phdrs,
6920 const char *lma_memspec)
6922 lang_memory_region_type *region;
6923 lang_memory_region_type *lma_region;
6924 struct overlay_list *l;
6925 lang_nocrossref_type *nocrossref;
6927 lang_get_regions (&region, &lma_region,
6928 memspec, lma_memspec,
6929 lma_expr != NULL, FALSE);
6931 nocrossref = NULL;
6933 /* After setting the size of the last section, set '.' to end of the
6934 overlay region. */
6935 if (overlay_list != NULL)
6936 overlay_list->os->update_dot_tree
6937 = exp_assop ('=', ".", exp_binop ('+', overlay_vma, overlay_max));
6939 l = overlay_list;
6940 while (l != NULL)
6942 struct overlay_list *next;
6944 if (fill != NULL && l->os->fill == NULL)
6945 l->os->fill = fill;
6947 l->os->region = region;
6948 l->os->lma_region = lma_region;
6950 /* The first section has the load address specified in the
6951 OVERLAY statement. The rest are worked out from that.
6952 The base address is not needed (and should be null) if
6953 an LMA region was specified. */
6954 if (l->next == 0)
6956 l->os->load_base = lma_expr;
6957 l->os->sectype = normal_section;
6959 if (phdrs != NULL && l->os->phdrs == NULL)
6960 l->os->phdrs = phdrs;
6962 if (nocrossrefs)
6964 lang_nocrossref_type *nc;
6966 nc = xmalloc (sizeof *nc);
6967 nc->name = l->os->name;
6968 nc->next = nocrossref;
6969 nocrossref = nc;
6972 next = l->next;
6973 free (l);
6974 l = next;
6977 if (nocrossref != NULL)
6978 lang_add_nocrossref (nocrossref);
6980 overlay_vma = NULL;
6981 overlay_list = NULL;
6982 overlay_max = NULL;
6985 /* Version handling. This is only useful for ELF. */
6987 /* This global variable holds the version tree that we build. */
6989 struct bfd_elf_version_tree *lang_elf_version_info;
6991 /* If PREV is NULL, return first version pattern matching particular symbol.
6992 If PREV is non-NULL, return first version pattern matching particular
6993 symbol after PREV (previously returned by lang_vers_match). */
6995 static struct bfd_elf_version_expr *
6996 lang_vers_match (struct bfd_elf_version_expr_head *head,
6997 struct bfd_elf_version_expr *prev,
6998 const char *sym)
7000 const char *cxx_sym = sym;
7001 const char *java_sym = sym;
7002 struct bfd_elf_version_expr *expr = NULL;
7004 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7006 cxx_sym = cplus_demangle (sym, DMGL_PARAMS | DMGL_ANSI);
7007 if (!cxx_sym)
7008 cxx_sym = sym;
7010 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7012 java_sym = cplus_demangle (sym, DMGL_JAVA);
7013 if (!java_sym)
7014 java_sym = sym;
7017 if (head->htab && (prev == NULL || prev->literal))
7019 struct bfd_elf_version_expr e;
7021 switch (prev ? prev->mask : 0)
7023 case 0:
7024 if (head->mask & BFD_ELF_VERSION_C_TYPE)
7026 e.pattern = sym;
7027 expr = htab_find (head->htab, &e);
7028 while (expr && strcmp (expr->pattern, sym) == 0)
7029 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
7030 goto out_ret;
7031 else
7032 expr = expr->next;
7034 /* Fallthrough */
7035 case BFD_ELF_VERSION_C_TYPE:
7036 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7038 e.pattern = cxx_sym;
7039 expr = htab_find (head->htab, &e);
7040 while (expr && strcmp (expr->pattern, cxx_sym) == 0)
7041 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7042 goto out_ret;
7043 else
7044 expr = expr->next;
7046 /* Fallthrough */
7047 case BFD_ELF_VERSION_CXX_TYPE:
7048 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7050 e.pattern = java_sym;
7051 expr = htab_find (head->htab, &e);
7052 while (expr && strcmp (expr->pattern, java_sym) == 0)
7053 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7054 goto out_ret;
7055 else
7056 expr = expr->next;
7058 /* Fallthrough */
7059 default:
7060 break;
7064 /* Finally, try the wildcards. */
7065 if (prev == NULL || prev->literal)
7066 expr = head->remaining;
7067 else
7068 expr = prev->next;
7069 for (; expr; expr = expr->next)
7071 const char *s;
7073 if (!expr->pattern)
7074 continue;
7076 if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
7077 break;
7079 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7080 s = java_sym;
7081 else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7082 s = cxx_sym;
7083 else
7084 s = sym;
7085 if (fnmatch (expr->pattern, s, 0) == 0)
7086 break;
7089 out_ret:
7090 if (cxx_sym != sym)
7091 free ((char *) cxx_sym);
7092 if (java_sym != sym)
7093 free ((char *) java_sym);
7094 return expr;
7097 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
7098 return a pointer to the symbol name with any backslash quotes removed. */
7100 static const char *
7101 realsymbol (const char *pattern)
7103 const char *p;
7104 bfd_boolean changed = FALSE, backslash = FALSE;
7105 char *s, *symbol = xmalloc (strlen (pattern) + 1);
7107 for (p = pattern, s = symbol; *p != '\0'; ++p)
7109 /* It is a glob pattern only if there is no preceding
7110 backslash. */
7111 if (backslash)
7113 /* Remove the preceding backslash. */
7114 *(s - 1) = *p;
7115 backslash = FALSE;
7116 changed = TRUE;
7118 else
7120 if (*p == '?' || *p == '*' || *p == '[')
7122 free (symbol);
7123 return NULL;
7126 *s++ = *p;
7127 backslash = *p == '\\';
7131 if (changed)
7133 *s = '\0';
7134 return symbol;
7136 else
7138 free (symbol);
7139 return pattern;
7143 /* This is called for each variable name or match expression. NEW is
7144 the name of the symbol to match, or, if LITERAL_P is FALSE, a glob
7145 pattern to be matched against symbol names. */
7147 struct bfd_elf_version_expr *
7148 lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
7149 const char *new,
7150 const char *lang,
7151 bfd_boolean literal_p)
7153 struct bfd_elf_version_expr *ret;
7155 ret = xmalloc (sizeof *ret);
7156 ret->next = orig;
7157 ret->symver = 0;
7158 ret->script = 0;
7159 ret->literal = TRUE;
7160 ret->pattern = literal_p ? new : realsymbol (new);
7161 if (ret->pattern == NULL)
7163 ret->pattern = new;
7164 ret->literal = FALSE;
7167 if (lang == NULL || strcasecmp (lang, "C") == 0)
7168 ret->mask = BFD_ELF_VERSION_C_TYPE;
7169 else if (strcasecmp (lang, "C++") == 0)
7170 ret->mask = BFD_ELF_VERSION_CXX_TYPE;
7171 else if (strcasecmp (lang, "Java") == 0)
7172 ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
7173 else
7175 einfo (_("%X%P: unknown language `%s' in version information\n"),
7176 lang);
7177 ret->mask = BFD_ELF_VERSION_C_TYPE;
7180 return ldemul_new_vers_pattern (ret);
7183 /* This is called for each set of variable names and match
7184 expressions. */
7186 struct bfd_elf_version_tree *
7187 lang_new_vers_node (struct bfd_elf_version_expr *globals,
7188 struct bfd_elf_version_expr *locals)
7190 struct bfd_elf_version_tree *ret;
7192 ret = xcalloc (1, sizeof *ret);
7193 ret->globals.list = globals;
7194 ret->locals.list = locals;
7195 ret->match = lang_vers_match;
7196 ret->name_indx = (unsigned int) -1;
7197 return ret;
7200 /* This static variable keeps track of version indices. */
7202 static int version_index;
7204 static hashval_t
7205 version_expr_head_hash (const void *p)
7207 const struct bfd_elf_version_expr *e = p;
7209 return htab_hash_string (e->pattern);
7212 static int
7213 version_expr_head_eq (const void *p1, const void *p2)
7215 const struct bfd_elf_version_expr *e1 = p1;
7216 const struct bfd_elf_version_expr *e2 = p2;
7218 return strcmp (e1->pattern, e2->pattern) == 0;
7221 static void
7222 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
7224 size_t count = 0;
7225 struct bfd_elf_version_expr *e, *next;
7226 struct bfd_elf_version_expr **list_loc, **remaining_loc;
7228 for (e = head->list; e; e = e->next)
7230 if (e->literal)
7231 count++;
7232 head->mask |= e->mask;
7235 if (count)
7237 head->htab = htab_create (count * 2, version_expr_head_hash,
7238 version_expr_head_eq, NULL);
7239 list_loc = &head->list;
7240 remaining_loc = &head->remaining;
7241 for (e = head->list; e; e = next)
7243 next = e->next;
7244 if (!e->literal)
7246 *remaining_loc = e;
7247 remaining_loc = &e->next;
7249 else
7251 void **loc = htab_find_slot (head->htab, e, INSERT);
7253 if (*loc)
7255 struct bfd_elf_version_expr *e1, *last;
7257 e1 = *loc;
7258 last = NULL;
7261 if (e1->mask == e->mask)
7263 last = NULL;
7264 break;
7266 last = e1;
7267 e1 = e1->next;
7269 while (e1 && strcmp (e1->pattern, e->pattern) == 0);
7271 if (last == NULL)
7273 /* This is a duplicate. */
7274 /* FIXME: Memory leak. Sometimes pattern is not
7275 xmalloced alone, but in larger chunk of memory. */
7276 /* free (e->pattern); */
7277 free (e);
7279 else
7281 e->next = last->next;
7282 last->next = e;
7285 else
7287 *loc = e;
7288 *list_loc = e;
7289 list_loc = &e->next;
7293 *remaining_loc = NULL;
7294 *list_loc = head->remaining;
7296 else
7297 head->remaining = head->list;
7300 /* This is called when we know the name and dependencies of the
7301 version. */
7303 void
7304 lang_register_vers_node (const char *name,
7305 struct bfd_elf_version_tree *version,
7306 struct bfd_elf_version_deps *deps)
7308 struct bfd_elf_version_tree *t, **pp;
7309 struct bfd_elf_version_expr *e1;
7311 if (name == NULL)
7312 name = "";
7314 if ((name[0] == '\0' && lang_elf_version_info != NULL)
7315 || (lang_elf_version_info && lang_elf_version_info->name[0] == '\0'))
7317 einfo (_("%X%P: anonymous version tag cannot be combined"
7318 " with other version tags\n"));
7319 free (version);
7320 return;
7323 /* Make sure this node has a unique name. */
7324 for (t = lang_elf_version_info; t != NULL; t = t->next)
7325 if (strcmp (t->name, name) == 0)
7326 einfo (_("%X%P: duplicate version tag `%s'\n"), name);
7328 lang_finalize_version_expr_head (&version->globals);
7329 lang_finalize_version_expr_head (&version->locals);
7331 /* Check the global and local match names, and make sure there
7332 aren't any duplicates. */
7334 for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
7336 for (t = lang_elf_version_info; t != NULL; t = t->next)
7338 struct bfd_elf_version_expr *e2;
7340 if (t->locals.htab && e1->literal)
7342 e2 = htab_find (t->locals.htab, e1);
7343 while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7345 if (e1->mask == e2->mask)
7346 einfo (_("%X%P: duplicate expression `%s'"
7347 " in version information\n"), e1->pattern);
7348 e2 = e2->next;
7351 else if (!e1->literal)
7352 for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
7353 if (strcmp (e1->pattern, e2->pattern) == 0
7354 && e1->mask == e2->mask)
7355 einfo (_("%X%P: duplicate expression `%s'"
7356 " in version information\n"), e1->pattern);
7360 for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
7362 for (t = lang_elf_version_info; t != NULL; t = t->next)
7364 struct bfd_elf_version_expr *e2;
7366 if (t->globals.htab && e1->literal)
7368 e2 = htab_find (t->globals.htab, e1);
7369 while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7371 if (e1->mask == e2->mask)
7372 einfo (_("%X%P: duplicate expression `%s'"
7373 " in version information\n"),
7374 e1->pattern);
7375 e2 = e2->next;
7378 else if (!e1->literal)
7379 for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
7380 if (strcmp (e1->pattern, e2->pattern) == 0
7381 && e1->mask == e2->mask)
7382 einfo (_("%X%P: duplicate expression `%s'"
7383 " in version information\n"), e1->pattern);
7387 version->deps = deps;
7388 version->name = name;
7389 if (name[0] != '\0')
7391 ++version_index;
7392 version->vernum = version_index;
7394 else
7395 version->vernum = 0;
7397 for (pp = &lang_elf_version_info; *pp != NULL; pp = &(*pp)->next)
7399 *pp = version;
7402 /* This is called when we see a version dependency. */
7404 struct bfd_elf_version_deps *
7405 lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
7407 struct bfd_elf_version_deps *ret;
7408 struct bfd_elf_version_tree *t;
7410 ret = xmalloc (sizeof *ret);
7411 ret->next = list;
7413 for (t = lang_elf_version_info; t != NULL; t = t->next)
7415 if (strcmp (t->name, name) == 0)
7417 ret->version_needed = t;
7418 return ret;
7422 einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
7424 return ret;
7427 static void
7428 lang_do_version_exports_section (void)
7430 struct bfd_elf_version_expr *greg = NULL, *lreg;
7432 LANG_FOR_EACH_INPUT_STATEMENT (is)
7434 asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
7435 char *contents, *p;
7436 bfd_size_type len;
7438 if (sec == NULL)
7439 continue;
7441 len = sec->size;
7442 contents = xmalloc (len);
7443 if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
7444 einfo (_("%X%P: unable to read .exports section contents\n"), sec);
7446 p = contents;
7447 while (p < contents + len)
7449 greg = lang_new_vers_pattern (greg, p, NULL, FALSE);
7450 p = strchr (p, '\0') + 1;
7453 /* Do not free the contents, as we used them creating the regex. */
7455 /* Do not include this section in the link. */
7456 sec->flags |= SEC_EXCLUDE | SEC_KEEP;
7459 lreg = lang_new_vers_pattern (NULL, "*", NULL, FALSE);
7460 lang_register_vers_node (command_line.version_exports_section,
7461 lang_new_vers_node (greg, lreg), NULL);
7464 void
7465 lang_add_unique (const char *name)
7467 struct unique_sections *ent;
7469 for (ent = unique_section_list; ent; ent = ent->next)
7470 if (strcmp (ent->name, name) == 0)
7471 return;
7473 ent = xmalloc (sizeof *ent);
7474 ent->name = xstrdup (name);
7475 ent->next = unique_section_list;
7476 unique_section_list = ent;
7479 /* Append the list of dynamic symbols to the existing one. */
7481 void
7482 lang_append_dynamic_list (struct bfd_elf_version_expr *dynamic)
7484 if (link_info.dynamic_list)
7486 struct bfd_elf_version_expr *tail;
7487 for (tail = dynamic; tail->next != NULL; tail = tail->next)
7489 tail->next = link_info.dynamic_list->head.list;
7490 link_info.dynamic_list->head.list = dynamic;
7492 else
7494 struct bfd_elf_dynamic_list *d;
7496 d = xcalloc (1, sizeof *d);
7497 d->head.list = dynamic;
7498 d->match = lang_vers_match;
7499 link_info.dynamic_list = d;
7503 /* Append the list of C++ typeinfo dynamic symbols to the existing
7504 one. */
7506 void
7507 lang_append_dynamic_list_cpp_typeinfo (void)
7509 const char * symbols [] =
7511 "typeinfo name for*",
7512 "typeinfo for*"
7514 struct bfd_elf_version_expr *dynamic = NULL;
7515 unsigned int i;
7517 for (i = 0; i < ARRAY_SIZE (symbols); i++)
7518 dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
7519 FALSE);
7521 lang_append_dynamic_list (dynamic);
7524 /* Append the list of C++ operator new and delete dynamic symbols to the
7525 existing one. */
7527 void
7528 lang_append_dynamic_list_cpp_new (void)
7530 const char * symbols [] =
7532 "operator new*",
7533 "operator delete*"
7535 struct bfd_elf_version_expr *dynamic = NULL;
7536 unsigned int i;
7538 for (i = 0; i < ARRAY_SIZE (symbols); i++)
7539 dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
7540 FALSE);
7542 lang_append_dynamic_list (dynamic);