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, 2010, 2011
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. */
25 #include "libiberty.h"
26 #include "filenames.h"
27 #include "safe-ctype.h"
47 #endif /* ENABLE_PLUGINS */
50 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
53 /* Locals variables. */
54 static struct obstack stat_obstack;
55 static struct obstack map_obstack;
57 #define obstack_chunk_alloc xmalloc
58 #define obstack_chunk_free free
59 static const char *entry_symbol_default = "start";
60 static bfd_boolean placed_commons = FALSE;
61 static bfd_boolean stripped_excluded_sections = FALSE;
62 static lang_output_section_statement_type *default_common_section;
63 static bfd_boolean map_option_f;
64 static bfd_vma print_dot;
65 static lang_input_statement_type *first_file;
66 static const char *current_target;
67 static lang_statement_list_type statement_list;
68 static struct bfd_hash_table lang_definedness_table;
69 static lang_statement_list_type *stat_save[10];
70 static lang_statement_list_type **stat_save_ptr = &stat_save[0];
71 static struct unique_sections *unique_section_list;
72 static bfd_boolean ldlang_sysrooted_script = FALSE;
74 /* Forward declarations. */
75 static void exp_init_os (etree_type *);
76 static void init_map_userdata (bfd *, asection *, void *);
77 static lang_input_statement_type *lookup_name (const char *);
78 static struct bfd_hash_entry *lang_definedness_newfunc
79 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
80 static void insert_undefined (const char *);
81 static bfd_boolean sort_def_symbol (struct bfd_link_hash_entry *, void *);
82 static void print_statement (lang_statement_union_type *,
83 lang_output_section_statement_type *);
84 static void print_statement_list (lang_statement_union_type *,
85 lang_output_section_statement_type *);
86 static void print_statements (void);
87 static void print_input_section (asection *, bfd_boolean);
88 static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
89 static void lang_record_phdrs (void);
90 static void lang_do_version_exports_section (void);
91 static void lang_finalize_version_expr_head
92 (struct bfd_elf_version_expr_head *);
94 /* Exported variables. */
95 const char *output_target;
96 lang_output_section_statement_type *abs_output_section;
97 lang_statement_list_type lang_output_section_statement;
98 lang_statement_list_type *stat_ptr = &statement_list;
99 lang_statement_list_type file_chain = { NULL, NULL };
100 lang_statement_list_type input_file_chain;
101 struct bfd_sym_chain entry_symbol = { NULL, NULL };
102 const char *entry_section = ".text";
103 bfd_boolean entry_from_cmdline;
104 bfd_boolean undef_from_cmdline;
105 bfd_boolean lang_has_input_file = FALSE;
106 bfd_boolean had_output_filename = FALSE;
107 bfd_boolean lang_float_flag = FALSE;
108 bfd_boolean delete_output_file_on_failure = FALSE;
109 struct lang_phdr *lang_phdr_list;
110 struct lang_nocrossrefs *nocrossref_list;
111 bfd_boolean missing_file = FALSE;
113 /* Functions that traverse the linker script and might evaluate
114 DEFINED() need to increment this. */
115 int lang_statement_iteration = 0;
117 etree_type *base; /* Relocation base - or null */
119 /* Return TRUE if the PATTERN argument is a wildcard pattern.
120 Although backslashes are treated specially if a pattern contains
121 wildcards, we do not consider the mere presence of a backslash to
122 be enough to cause the pattern to be treated as a wildcard.
123 That lets us handle DOS filenames more naturally. */
124 #define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL)
126 #define new_stat(x, y) \
127 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
129 #define outside_section_address(q) \
130 ((q)->output_offset + (q)->output_section->vma)
132 #define outside_symbol_address(q) \
133 ((q)->value + outside_section_address (q->section))
135 #define SECTION_NAME_MAP_LENGTH (16)
138 stat_alloc (size_t size)
140 return obstack_alloc (&stat_obstack, size);
144 name_match (const char *pattern, const char *name)
146 if (wildcardp (pattern))
147 return fnmatch (pattern, name, 0);
148 return strcmp (pattern, name);
151 /* If PATTERN is of the form archive:file, return a pointer to the
152 separator. If not, return NULL. */
155 archive_path (const char *pattern)
159 if (link_info.path_separator == 0)
162 p = strchr (pattern, link_info.path_separator);
163 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
164 if (p == NULL || link_info.path_separator != ':')
167 /* Assume a match on the second char is part of drive specifier,
168 as in "c:\silly.dos". */
169 if (p == pattern + 1 && ISALPHA (*pattern))
170 p = strchr (p + 1, link_info.path_separator);
175 /* Given that FILE_SPEC results in a non-NULL SEP result from archive_path,
176 return whether F matches FILE_SPEC. */
179 input_statement_is_archive_path (const char *file_spec, char *sep,
180 lang_input_statement_type *f)
182 bfd_boolean match = FALSE;
185 || name_match (sep + 1, f->filename) == 0)
186 && ((sep != file_spec)
187 == (f->the_bfd != NULL && f->the_bfd->my_archive != NULL)))
191 if (sep != file_spec)
193 const char *aname = f->the_bfd->my_archive->filename;
195 match = name_match (file_spec, aname) == 0;
196 *sep = link_info.path_separator;
203 unique_section_p (const asection *sec,
204 const lang_output_section_statement_type *os)
206 struct unique_sections *unam;
209 if (link_info.relocatable
210 && sec->owner != NULL
211 && bfd_is_group_section (sec->owner, sec))
213 && strcmp (os->name, DISCARD_SECTION_NAME) == 0);
216 for (unam = unique_section_list; unam; unam = unam->next)
217 if (name_match (unam->name, secnam) == 0)
223 /* Generic traversal routines for finding matching sections. */
225 /* Try processing a section against a wildcard. This just calls
226 the callback unless the filename exclusion list is present
227 and excludes the file. It's hardly ever present so this
228 function is very fast. */
231 walk_wild_consider_section (lang_wild_statement_type *ptr,
232 lang_input_statement_type *file,
234 struct wildcard_list *sec,
238 struct name_list *list_tmp;
240 /* Propagate the section_flag_info from the wild statement to the section. */
241 s->section_flag_info = ptr->section_flag_list;
243 /* Don't process sections from files which were excluded. */
244 for (list_tmp = sec->spec.exclude_name_list;
246 list_tmp = list_tmp->next)
248 char *p = archive_path (list_tmp->name);
252 if (input_statement_is_archive_path (list_tmp->name, p, file))
256 else if (name_match (list_tmp->name, file->filename) == 0)
259 /* FIXME: Perhaps remove the following at some stage? Matching
260 unadorned archives like this was never documented and has
261 been superceded by the archive:path syntax. */
262 else if (file->the_bfd != NULL
263 && file->the_bfd->my_archive != NULL
264 && name_match (list_tmp->name,
265 file->the_bfd->my_archive->filename) == 0)
269 (*callback) (ptr, sec, s, file, data);
272 /* Lowest common denominator routine that can handle everything correctly,
276 walk_wild_section_general (lang_wild_statement_type *ptr,
277 lang_input_statement_type *file,
282 struct wildcard_list *sec;
284 for (s = file->the_bfd->sections; s != NULL; s = s->next)
286 sec = ptr->section_list;
288 (*callback) (ptr, sec, s, file, data);
292 bfd_boolean skip = FALSE;
294 if (sec->spec.name != NULL)
296 const char *sname = bfd_get_section_name (file->the_bfd, s);
298 skip = name_match (sec->spec.name, sname) != 0;
302 walk_wild_consider_section (ptr, file, s, sec, callback, data);
309 /* Routines to find a single section given its name. If there's more
310 than one section with that name, we report that. */
314 asection *found_section;
315 bfd_boolean multiple_sections_found;
316 } section_iterator_callback_data;
319 section_iterator_callback (bfd *abfd ATTRIBUTE_UNUSED, asection *s, void *data)
321 section_iterator_callback_data *d = (section_iterator_callback_data *) data;
323 if (d->found_section != NULL)
325 d->multiple_sections_found = TRUE;
329 d->found_section = s;
334 find_section (lang_input_statement_type *file,
335 struct wildcard_list *sec,
336 bfd_boolean *multiple_sections_found)
338 section_iterator_callback_data cb_data = { NULL, FALSE };
340 bfd_get_section_by_name_if (file->the_bfd, sec->spec.name,
341 section_iterator_callback, &cb_data);
342 *multiple_sections_found = cb_data.multiple_sections_found;
343 return cb_data.found_section;
346 /* Code for handling simple wildcards without going through fnmatch,
347 which can be expensive because of charset translations etc. */
349 /* A simple wild is a literal string followed by a single '*',
350 where the literal part is at least 4 characters long. */
353 is_simple_wild (const char *name)
355 size_t len = strcspn (name, "*?[");
356 return len >= 4 && name[len] == '*' && name[len + 1] == '\0';
360 match_simple_wild (const char *pattern, const char *name)
362 /* The first four characters of the pattern are guaranteed valid
363 non-wildcard characters. So we can go faster. */
364 if (pattern[0] != name[0] || pattern[1] != name[1]
365 || pattern[2] != name[2] || pattern[3] != name[3])
370 while (*pattern != '*')
371 if (*name++ != *pattern++)
377 /* Return the numerical value of the init_priority attribute from
378 section name NAME. */
381 get_init_priority (const char *name)
384 unsigned long init_priority;
386 /* GCC uses the following section names for the init_priority
387 attribute with numerical values 101 and 65535 inclusive. A
388 lower value means a higher priority.
390 1: .init_array.NNNN/.fini_array.NNNN: Where NNNN is the
391 decimal numerical value of the init_priority attribute.
392 The order of execution in .init_array is forward and
393 .fini_array is backward.
394 2: .ctors.NNNN/.ctors.NNNN: Where NNNN is 65535 minus the
395 decimal numerical value of the init_priority attribute.
396 The order of execution in .ctors is backward and .dtors
399 if (strncmp (name, ".init_array.", 12) == 0
400 || strncmp (name, ".fini_array.", 12) == 0)
402 init_priority = strtoul (name + 12, &end, 10);
403 return *end ? 0 : init_priority;
405 else if (strncmp (name, ".ctors.", 7) == 0
406 || strncmp (name, ".dtors.", 7) == 0)
408 init_priority = strtoul (name + 7, &end, 10);
409 return *end ? 0 : 65535 - init_priority;
415 /* Compare sections ASEC and BSEC according to SORT. */
418 compare_section (sort_type sort, asection *asec, asection *bsec)
421 unsigned long ainit_priority, binit_priority;
428 case by_init_priority:
430 = get_init_priority (bfd_get_section_name (asec->owner, asec));
432 = get_init_priority (bfd_get_section_name (bsec->owner, bsec));
433 if (ainit_priority == 0 || binit_priority == 0)
435 ret = ainit_priority - binit_priority;
441 case by_alignment_name:
442 ret = (bfd_section_alignment (bsec->owner, bsec)
443 - bfd_section_alignment (asec->owner, asec));
450 ret = strcmp (bfd_get_section_name (asec->owner, asec),
451 bfd_get_section_name (bsec->owner, bsec));
454 case by_name_alignment:
455 ret = strcmp (bfd_get_section_name (asec->owner, asec),
456 bfd_get_section_name (bsec->owner, bsec));
462 ret = (bfd_section_alignment (bsec->owner, bsec)
463 - bfd_section_alignment (asec->owner, asec));
470 /* Build a Binary Search Tree to sort sections, unlike insertion sort
471 used in wild_sort(). BST is considerably faster if the number of
472 of sections are large. */
474 static lang_section_bst_type **
475 wild_sort_fast (lang_wild_statement_type *wild,
476 struct wildcard_list *sec,
477 lang_input_statement_type *file ATTRIBUTE_UNUSED,
480 lang_section_bst_type **tree;
483 if (!wild->filenames_sorted
484 && (sec == NULL || sec->spec.sorted == none))
486 /* Append at the right end of tree. */
488 tree = &((*tree)->right);
494 /* Find the correct node to append this section. */
495 if (compare_section (sec->spec.sorted, section, (*tree)->section) < 0)
496 tree = &((*tree)->left);
498 tree = &((*tree)->right);
504 /* Use wild_sort_fast to build a BST to sort sections. */
507 output_section_callback_fast (lang_wild_statement_type *ptr,
508 struct wildcard_list *sec,
510 lang_input_statement_type *file,
513 lang_section_bst_type *node;
514 lang_section_bst_type **tree;
515 lang_output_section_statement_type *os;
517 os = (lang_output_section_statement_type *) output;
519 if (unique_section_p (section, os))
522 node = (lang_section_bst_type *) xmalloc (sizeof (lang_section_bst_type));
525 node->section = section;
527 tree = wild_sort_fast (ptr, sec, file, section);
532 /* Convert a sorted sections' BST back to list form. */
535 output_section_callback_tree_to_list (lang_wild_statement_type *ptr,
536 lang_section_bst_type *tree,
540 output_section_callback_tree_to_list (ptr, tree->left, output);
542 lang_add_section (&ptr->children, tree->section,
543 (lang_output_section_statement_type *) output);
546 output_section_callback_tree_to_list (ptr, tree->right, output);
551 /* Specialized, optimized routines for handling different kinds of
555 walk_wild_section_specs1_wild0 (lang_wild_statement_type *ptr,
556 lang_input_statement_type *file,
560 /* We can just do a hash lookup for the section with the right name.
561 But if that lookup discovers more than one section with the name
562 (should be rare), we fall back to the general algorithm because
563 we would otherwise have to sort the sections to make sure they
564 get processed in the bfd's order. */
565 bfd_boolean multiple_sections_found;
566 struct wildcard_list *sec0 = ptr->handler_data[0];
567 asection *s0 = find_section (file, sec0, &multiple_sections_found);
569 if (multiple_sections_found)
570 walk_wild_section_general (ptr, file, callback, data);
572 walk_wild_consider_section (ptr, file, s0, sec0, callback, data);
576 walk_wild_section_specs1_wild1 (lang_wild_statement_type *ptr,
577 lang_input_statement_type *file,
582 struct wildcard_list *wildsec0 = ptr->handler_data[0];
584 for (s = file->the_bfd->sections; s != NULL; s = s->next)
586 const char *sname = bfd_get_section_name (file->the_bfd, s);
587 bfd_boolean skip = !match_simple_wild (wildsec0->spec.name, sname);
590 walk_wild_consider_section (ptr, file, s, wildsec0, callback, data);
595 walk_wild_section_specs2_wild1 (lang_wild_statement_type *ptr,
596 lang_input_statement_type *file,
601 struct wildcard_list *sec0 = ptr->handler_data[0];
602 struct wildcard_list *wildsec1 = ptr->handler_data[1];
603 bfd_boolean multiple_sections_found;
604 asection *s0 = find_section (file, sec0, &multiple_sections_found);
606 if (multiple_sections_found)
608 walk_wild_section_general (ptr, file, callback, data);
612 /* Note that if the section was not found, s0 is NULL and
613 we'll simply never succeed the s == s0 test below. */
614 for (s = file->the_bfd->sections; s != NULL; s = s->next)
616 /* Recall that in this code path, a section cannot satisfy more
617 than one spec, so if s == s0 then it cannot match
620 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
623 const char *sname = bfd_get_section_name (file->the_bfd, s);
624 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
627 walk_wild_consider_section (ptr, file, s, wildsec1, callback,
634 walk_wild_section_specs3_wild2 (lang_wild_statement_type *ptr,
635 lang_input_statement_type *file,
640 struct wildcard_list *sec0 = ptr->handler_data[0];
641 struct wildcard_list *wildsec1 = ptr->handler_data[1];
642 struct wildcard_list *wildsec2 = ptr->handler_data[2];
643 bfd_boolean multiple_sections_found;
644 asection *s0 = find_section (file, sec0, &multiple_sections_found);
646 if (multiple_sections_found)
648 walk_wild_section_general (ptr, file, callback, data);
652 for (s = file->the_bfd->sections; s != NULL; s = s->next)
655 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
658 const char *sname = bfd_get_section_name (file->the_bfd, s);
659 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
662 walk_wild_consider_section (ptr, file, s, wildsec1, callback, data);
665 skip = !match_simple_wild (wildsec2->spec.name, sname);
667 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
675 walk_wild_section_specs4_wild2 (lang_wild_statement_type *ptr,
676 lang_input_statement_type *file,
681 struct wildcard_list *sec0 = ptr->handler_data[0];
682 struct wildcard_list *sec1 = ptr->handler_data[1];
683 struct wildcard_list *wildsec2 = ptr->handler_data[2];
684 struct wildcard_list *wildsec3 = ptr->handler_data[3];
685 bfd_boolean multiple_sections_found;
686 asection *s0 = find_section (file, sec0, &multiple_sections_found), *s1;
688 if (multiple_sections_found)
690 walk_wild_section_general (ptr, file, callback, data);
694 s1 = find_section (file, sec1, &multiple_sections_found);
695 if (multiple_sections_found)
697 walk_wild_section_general (ptr, file, callback, data);
701 for (s = file->the_bfd->sections; s != NULL; s = s->next)
704 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
707 walk_wild_consider_section (ptr, file, s, sec1, callback, data);
710 const char *sname = bfd_get_section_name (file->the_bfd, s);
711 bfd_boolean skip = !match_simple_wild (wildsec2->spec.name,
715 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
719 skip = !match_simple_wild (wildsec3->spec.name, sname);
721 walk_wild_consider_section (ptr, file, s, wildsec3,
729 walk_wild_section (lang_wild_statement_type *ptr,
730 lang_input_statement_type *file,
734 if (file->just_syms_flag)
737 (*ptr->walk_wild_section_handler) (ptr, file, callback, data);
740 /* Returns TRUE when name1 is a wildcard spec that might match
741 something name2 can match. We're conservative: we return FALSE
742 only if the prefixes of name1 and name2 are different up to the
743 first wildcard character. */
746 wild_spec_can_overlap (const char *name1, const char *name2)
748 size_t prefix1_len = strcspn (name1, "?*[");
749 size_t prefix2_len = strcspn (name2, "?*[");
750 size_t min_prefix_len;
752 /* Note that if there is no wildcard character, then we treat the
753 terminating 0 as part of the prefix. Thus ".text" won't match
754 ".text." or ".text.*", for example. */
755 if (name1[prefix1_len] == '\0')
757 if (name2[prefix2_len] == '\0')
760 min_prefix_len = prefix1_len < prefix2_len ? prefix1_len : prefix2_len;
762 return memcmp (name1, name2, min_prefix_len) == 0;
765 /* Select specialized code to handle various kinds of wildcard
769 analyze_walk_wild_section_handler (lang_wild_statement_type *ptr)
772 int wild_name_count = 0;
773 struct wildcard_list *sec;
777 ptr->walk_wild_section_handler = walk_wild_section_general;
778 ptr->handler_data[0] = NULL;
779 ptr->handler_data[1] = NULL;
780 ptr->handler_data[2] = NULL;
781 ptr->handler_data[3] = NULL;
784 /* Count how many wildcard_specs there are, and how many of those
785 actually use wildcards in the name. Also, bail out if any of the
786 wildcard names are NULL. (Can this actually happen?
787 walk_wild_section used to test for it.) And bail out if any
788 of the wildcards are more complex than a simple string
789 ending in a single '*'. */
790 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
793 if (sec->spec.name == NULL)
795 if (wildcardp (sec->spec.name))
798 if (!is_simple_wild (sec->spec.name))
803 /* The zero-spec case would be easy to optimize but it doesn't
804 happen in practice. Likewise, more than 4 specs doesn't
805 happen in practice. */
806 if (sec_count == 0 || sec_count > 4)
809 /* Check that no two specs can match the same section. */
810 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
812 struct wildcard_list *sec2;
813 for (sec2 = sec->next; sec2 != NULL; sec2 = sec2->next)
815 if (wild_spec_can_overlap (sec->spec.name, sec2->spec.name))
820 signature = (sec_count << 8) + wild_name_count;
824 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild0;
827 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild1;
830 ptr->walk_wild_section_handler = walk_wild_section_specs2_wild1;
833 ptr->walk_wild_section_handler = walk_wild_section_specs3_wild2;
836 ptr->walk_wild_section_handler = walk_wild_section_specs4_wild2;
842 /* Now fill the data array with pointers to the specs, first the
843 specs with non-wildcard names, then the specs with wildcard
844 names. It's OK to process the specs in different order from the
845 given order, because we've already determined that no section
846 will match more than one spec. */
848 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
849 if (!wildcardp (sec->spec.name))
850 ptr->handler_data[data_counter++] = sec;
851 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
852 if (wildcardp (sec->spec.name))
853 ptr->handler_data[data_counter++] = sec;
856 /* Handle a wild statement for a single file F. */
859 walk_wild_file (lang_wild_statement_type *s,
860 lang_input_statement_type *f,
864 if (f->the_bfd == NULL
865 || ! bfd_check_format (f->the_bfd, bfd_archive))
866 walk_wild_section (s, f, callback, data);
871 /* This is an archive file. We must map each member of the
872 archive separately. */
873 member = bfd_openr_next_archived_file (f->the_bfd, NULL);
874 while (member != NULL)
876 /* When lookup_name is called, it will call the add_symbols
877 entry point for the archive. For each element of the
878 archive which is included, BFD will call ldlang_add_file,
879 which will set the usrdata field of the member to the
880 lang_input_statement. */
881 if (member->usrdata != NULL)
883 walk_wild_section (s,
884 (lang_input_statement_type *) member->usrdata,
888 member = bfd_openr_next_archived_file (f->the_bfd, member);
894 walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
896 const char *file_spec = s->filename;
899 if (file_spec == NULL)
901 /* Perform the iteration over all files in the list. */
902 LANG_FOR_EACH_INPUT_STATEMENT (f)
904 walk_wild_file (s, f, callback, data);
907 else if ((p = archive_path (file_spec)) != NULL)
909 LANG_FOR_EACH_INPUT_STATEMENT (f)
911 if (input_statement_is_archive_path (file_spec, p, f))
912 walk_wild_file (s, f, callback, data);
915 else if (wildcardp (file_spec))
917 LANG_FOR_EACH_INPUT_STATEMENT (f)
919 if (fnmatch (file_spec, f->filename, 0) == 0)
920 walk_wild_file (s, f, callback, data);
925 lang_input_statement_type *f;
927 /* Perform the iteration over a single file. */
928 f = lookup_name (file_spec);
930 walk_wild_file (s, f, callback, data);
934 /* lang_for_each_statement walks the parse tree and calls the provided
935 function for each node, except those inside output section statements
936 with constraint set to -1. */
939 lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
940 lang_statement_union_type *s)
942 for (; s != NULL; s = s->header.next)
946 switch (s->header.type)
948 case lang_constructors_statement_enum:
949 lang_for_each_statement_worker (func, constructor_list.head);
951 case lang_output_section_statement_enum:
952 if (s->output_section_statement.constraint != -1)
953 lang_for_each_statement_worker
954 (func, s->output_section_statement.children.head);
956 case lang_wild_statement_enum:
957 lang_for_each_statement_worker (func,
958 s->wild_statement.children.head);
960 case lang_group_statement_enum:
961 lang_for_each_statement_worker (func,
962 s->group_statement.children.head);
964 case lang_data_statement_enum:
965 case lang_reloc_statement_enum:
966 case lang_object_symbols_statement_enum:
967 case lang_output_statement_enum:
968 case lang_target_statement_enum:
969 case lang_input_section_enum:
970 case lang_input_statement_enum:
971 case lang_assignment_statement_enum:
972 case lang_padding_statement_enum:
973 case lang_address_statement_enum:
974 case lang_fill_statement_enum:
975 case lang_insert_statement_enum:
985 lang_for_each_statement (void (*func) (lang_statement_union_type *))
987 lang_for_each_statement_worker (func, statement_list.head);
990 /*----------------------------------------------------------------------*/
993 lang_list_init (lang_statement_list_type *list)
996 list->tail = &list->head;
1000 push_stat_ptr (lang_statement_list_type *new_ptr)
1002 if (stat_save_ptr >= stat_save + sizeof (stat_save) / sizeof (stat_save[0]))
1004 *stat_save_ptr++ = stat_ptr;
1011 if (stat_save_ptr <= stat_save)
1013 stat_ptr = *--stat_save_ptr;
1016 /* Build a new statement node for the parse tree. */
1018 static lang_statement_union_type *
1019 new_statement (enum statement_enum type,
1021 lang_statement_list_type *list)
1023 lang_statement_union_type *new_stmt;
1025 new_stmt = (lang_statement_union_type *) stat_alloc (size);
1026 new_stmt->header.type = type;
1027 new_stmt->header.next = NULL;
1028 lang_statement_append (list, new_stmt, &new_stmt->header.next);
1032 /* Build a new input file node for the language. There are several
1033 ways in which we treat an input file, eg, we only look at symbols,
1034 or prefix it with a -l etc.
1036 We can be supplied with requests for input files more than once;
1037 they may, for example be split over several lines like foo.o(.text)
1038 foo.o(.data) etc, so when asked for a file we check that we haven't
1039 got it already so we don't duplicate the bfd. */
1041 static lang_input_statement_type *
1042 new_afile (const char *name,
1043 lang_input_file_enum_type file_type,
1045 bfd_boolean add_to_list)
1047 lang_input_statement_type *p;
1050 p = (lang_input_statement_type *) new_stat (lang_input_statement, stat_ptr);
1053 p = (lang_input_statement_type *)
1054 stat_alloc (sizeof (lang_input_statement_type));
1055 p->header.type = lang_input_statement_enum;
1056 p->header.next = NULL;
1059 lang_has_input_file = TRUE;
1061 p->sysrooted = FALSE;
1063 if (file_type == lang_input_file_is_l_enum
1064 && name[0] == ':' && name[1] != '\0')
1066 file_type = lang_input_file_is_search_file_enum;
1072 case lang_input_file_is_symbols_only_enum:
1074 p->maybe_archive = FALSE;
1076 p->local_sym_name = name;
1077 p->just_syms_flag = TRUE;
1078 p->search_dirs_flag = FALSE;
1080 case lang_input_file_is_fake_enum:
1082 p->maybe_archive = FALSE;
1084 p->local_sym_name = name;
1085 p->just_syms_flag = FALSE;
1086 p->search_dirs_flag = FALSE;
1088 case lang_input_file_is_l_enum:
1089 p->maybe_archive = TRUE;
1092 p->local_sym_name = concat ("-l", name, (const char *) NULL);
1093 p->just_syms_flag = FALSE;
1094 p->search_dirs_flag = TRUE;
1096 case lang_input_file_is_marker_enum:
1098 p->maybe_archive = FALSE;
1100 p->local_sym_name = name;
1101 p->just_syms_flag = FALSE;
1102 p->search_dirs_flag = TRUE;
1104 case lang_input_file_is_search_file_enum:
1105 p->sysrooted = ldlang_sysrooted_script;
1107 p->maybe_archive = FALSE;
1109 p->local_sym_name = name;
1110 p->just_syms_flag = FALSE;
1111 p->search_dirs_flag = TRUE;
1113 case lang_input_file_is_file_enum:
1115 p->maybe_archive = FALSE;
1117 p->local_sym_name = name;
1118 p->just_syms_flag = FALSE;
1119 p->search_dirs_flag = FALSE;
1125 p->next_real_file = NULL;
1127 p->dynamic = config.dynamic_link;
1128 p->add_DT_NEEDED_for_dynamic = add_DT_NEEDED_for_dynamic;
1129 p->add_DT_NEEDED_for_regular = add_DT_NEEDED_for_regular;
1130 p->whole_archive = whole_archive;
1132 p->missing_file = FALSE;
1133 #ifdef ENABLE_PLUGINS
1135 p->claim_archive = FALSE;
1137 #endif /* ENABLE_PLUGINS */
1139 lang_statement_append (&input_file_chain,
1140 (lang_statement_union_type *) p,
1141 &p->next_real_file);
1145 lang_input_statement_type *
1146 lang_add_input_file (const char *name,
1147 lang_input_file_enum_type file_type,
1150 return new_afile (name, file_type, target, TRUE);
1153 struct out_section_hash_entry
1155 struct bfd_hash_entry root;
1156 lang_statement_union_type s;
1159 /* The hash table. */
1161 static struct bfd_hash_table output_section_statement_table;
1163 /* Support routines for the hash table used by lang_output_section_find,
1164 initialize the table, fill in an entry and remove the table. */
1166 static struct bfd_hash_entry *
1167 output_section_statement_newfunc (struct bfd_hash_entry *entry,
1168 struct bfd_hash_table *table,
1171 lang_output_section_statement_type **nextp;
1172 struct out_section_hash_entry *ret;
1176 entry = (struct bfd_hash_entry *) bfd_hash_allocate (table,
1182 entry = bfd_hash_newfunc (entry, table, string);
1186 ret = (struct out_section_hash_entry *) entry;
1187 memset (&ret->s, 0, sizeof (ret->s));
1188 ret->s.header.type = lang_output_section_statement_enum;
1189 ret->s.output_section_statement.subsection_alignment = -1;
1190 ret->s.output_section_statement.section_alignment = -1;
1191 ret->s.output_section_statement.block_value = 1;
1192 lang_list_init (&ret->s.output_section_statement.children);
1193 lang_statement_append (stat_ptr, &ret->s, &ret->s.header.next);
1195 /* For every output section statement added to the list, except the
1196 first one, lang_output_section_statement.tail points to the "next"
1197 field of the last element of the list. */
1198 if (lang_output_section_statement.head != NULL)
1199 ret->s.output_section_statement.prev
1200 = ((lang_output_section_statement_type *)
1201 ((char *) lang_output_section_statement.tail
1202 - offsetof (lang_output_section_statement_type, next)));
1204 /* GCC's strict aliasing rules prevent us from just casting the
1205 address, so we store the pointer in a variable and cast that
1207 nextp = &ret->s.output_section_statement.next;
1208 lang_statement_append (&lang_output_section_statement,
1210 (lang_statement_union_type **) nextp);
1215 output_section_statement_table_init (void)
1217 if (!bfd_hash_table_init_n (&output_section_statement_table,
1218 output_section_statement_newfunc,
1219 sizeof (struct out_section_hash_entry),
1221 einfo (_("%P%F: can not create hash table: %E\n"));
1225 output_section_statement_table_free (void)
1227 bfd_hash_table_free (&output_section_statement_table);
1230 /* Build enough state so that the parser can build its tree. */
1235 obstack_begin (&stat_obstack, 1000);
1237 stat_ptr = &statement_list;
1239 output_section_statement_table_init ();
1241 lang_list_init (stat_ptr);
1243 lang_list_init (&input_file_chain);
1244 lang_list_init (&lang_output_section_statement);
1245 lang_list_init (&file_chain);
1246 first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
1248 abs_output_section =
1249 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME, 0, TRUE);
1251 abs_output_section->bfd_section = bfd_abs_section_ptr;
1253 /* The value "3" is ad-hoc, somewhat related to the expected number of
1254 DEFINED expressions in a linker script. For most default linker
1255 scripts, there are none. Why a hash table then? Well, it's somewhat
1256 simpler to re-use working machinery than using a linked list in terms
1257 of code-complexity here in ld, besides the initialization which just
1258 looks like other code here. */
1259 if (!bfd_hash_table_init_n (&lang_definedness_table,
1260 lang_definedness_newfunc,
1261 sizeof (struct lang_definedness_hash_entry),
1263 einfo (_("%P%F: can not create hash table: %E\n"));
1269 output_section_statement_table_free ();
1272 /*----------------------------------------------------------------------
1273 A region is an area of memory declared with the
1274 MEMORY { name:org=exp, len=exp ... }
1277 We maintain a list of all the regions here.
1279 If no regions are specified in the script, then the default is used
1280 which is created when looked up to be the entire data space.
1282 If create is true we are creating a region inside a MEMORY block.
1283 In this case it is probably an error to create a region that has
1284 already been created. If we are not inside a MEMORY block it is
1285 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
1286 and so we issue a warning.
1288 Each region has at least one name. The first name is either
1289 DEFAULT_MEMORY_REGION or the name given in the MEMORY block. You can add
1290 alias names to an existing region within a script with
1291 REGION_ALIAS (alias, region_name). Each name corresponds to at most one
1294 static lang_memory_region_type *lang_memory_region_list;
1295 static lang_memory_region_type **lang_memory_region_list_tail
1296 = &lang_memory_region_list;
1298 lang_memory_region_type *
1299 lang_memory_region_lookup (const char *const name, bfd_boolean create)
1301 lang_memory_region_name *n;
1302 lang_memory_region_type *r;
1303 lang_memory_region_type *new_region;
1305 /* NAME is NULL for LMA memspecs if no region was specified. */
1309 for (r = lang_memory_region_list; r != NULL; r = r->next)
1310 for (n = &r->name_list; n != NULL; n = n->next)
1311 if (strcmp (n->name, name) == 0)
1314 einfo (_("%P:%S: warning: redeclaration of memory region `%s'\n"),
1319 if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
1320 einfo (_("%P:%S: warning: memory region `%s' not declared\n"), name);
1322 new_region = (lang_memory_region_type *)
1323 stat_alloc (sizeof (lang_memory_region_type));
1325 new_region->name_list.name = xstrdup (name);
1326 new_region->name_list.next = NULL;
1327 new_region->next = NULL;
1328 new_region->origin = 0;
1329 new_region->length = ~(bfd_size_type) 0;
1330 new_region->current = 0;
1331 new_region->last_os = NULL;
1332 new_region->flags = 0;
1333 new_region->not_flags = 0;
1334 new_region->had_full_message = FALSE;
1336 *lang_memory_region_list_tail = new_region;
1337 lang_memory_region_list_tail = &new_region->next;
1343 lang_memory_region_alias (const char * alias, const char * region_name)
1345 lang_memory_region_name * n;
1346 lang_memory_region_type * r;
1347 lang_memory_region_type * region;
1349 /* The default region must be unique. This ensures that it is not necessary
1350 to iterate through the name list if someone wants the check if a region is
1351 the default memory region. */
1352 if (strcmp (region_name, DEFAULT_MEMORY_REGION) == 0
1353 || strcmp (alias, DEFAULT_MEMORY_REGION) == 0)
1354 einfo (_("%F%P:%S: error: alias for default memory region\n"));
1356 /* Look for the target region and check if the alias is not already
1359 for (r = lang_memory_region_list; r != NULL; r = r->next)
1360 for (n = &r->name_list; n != NULL; n = n->next)
1362 if (region == NULL && strcmp (n->name, region_name) == 0)
1364 if (strcmp (n->name, alias) == 0)
1365 einfo (_("%F%P:%S: error: redefinition of memory region "
1370 /* Check if the target region exists. */
1372 einfo (_("%F%P:%S: error: memory region `%s' "
1373 "for alias `%s' does not exist\n"),
1377 /* Add alias to region name list. */
1378 n = (lang_memory_region_name *) stat_alloc (sizeof (lang_memory_region_name));
1379 n->name = xstrdup (alias);
1380 n->next = region->name_list.next;
1381 region->name_list.next = n;
1384 static lang_memory_region_type *
1385 lang_memory_default (asection * section)
1387 lang_memory_region_type *p;
1389 flagword sec_flags = section->flags;
1391 /* Override SEC_DATA to mean a writable section. */
1392 if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
1393 sec_flags |= SEC_DATA;
1395 for (p = lang_memory_region_list; p != NULL; p = p->next)
1397 if ((p->flags & sec_flags) != 0
1398 && (p->not_flags & sec_flags) == 0)
1403 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
1406 /* Find or create an output_section_statement with the given NAME.
1407 If CONSTRAINT is non-zero match one with that constraint, otherwise
1408 match any non-negative constraint. If CREATE, always make a
1409 new output_section_statement for SPECIAL CONSTRAINT. */
1411 lang_output_section_statement_type *
1412 lang_output_section_statement_lookup (const char *name,
1416 struct out_section_hash_entry *entry;
1418 entry = ((struct out_section_hash_entry *)
1419 bfd_hash_lookup (&output_section_statement_table, name,
1424 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1428 if (entry->s.output_section_statement.name != NULL)
1430 /* We have a section of this name, but it might not have the correct
1432 struct out_section_hash_entry *last_ent;
1434 name = entry->s.output_section_statement.name;
1435 if (create && constraint == SPECIAL)
1436 /* Not traversing to the end reverses the order of the second
1437 and subsequent SPECIAL sections in the hash table chain,
1438 but that shouldn't matter. */
1443 if (constraint == entry->s.output_section_statement.constraint
1445 && entry->s.output_section_statement.constraint >= 0))
1446 return &entry->s.output_section_statement;
1448 entry = (struct out_section_hash_entry *) entry->root.next;
1450 while (entry != NULL
1451 && name == entry->s.output_section_statement.name);
1457 = ((struct out_section_hash_entry *)
1458 output_section_statement_newfunc (NULL,
1459 &output_section_statement_table,
1463 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1466 entry->root = last_ent->root;
1467 last_ent->root.next = &entry->root;
1470 entry->s.output_section_statement.name = name;
1471 entry->s.output_section_statement.constraint = constraint;
1472 return &entry->s.output_section_statement;
1475 /* Find the next output_section_statement with the same name as OS.
1476 If CONSTRAINT is non-zero, find one with that constraint otherwise
1477 match any non-negative constraint. */
1479 lang_output_section_statement_type *
1480 next_matching_output_section_statement (lang_output_section_statement_type *os,
1483 /* All output_section_statements are actually part of a
1484 struct out_section_hash_entry. */
1485 struct out_section_hash_entry *entry = (struct out_section_hash_entry *)
1487 - offsetof (struct out_section_hash_entry, s.output_section_statement));
1488 const char *name = os->name;
1490 ASSERT (name == entry->root.string);
1493 entry = (struct out_section_hash_entry *) entry->root.next;
1495 || name != entry->s.output_section_statement.name)
1498 while (constraint != entry->s.output_section_statement.constraint
1500 || entry->s.output_section_statement.constraint < 0));
1502 return &entry->s.output_section_statement;
1505 /* A variant of lang_output_section_find used by place_orphan.
1506 Returns the output statement that should precede a new output
1507 statement for SEC. If an exact match is found on certain flags,
1510 lang_output_section_statement_type *
1511 lang_output_section_find_by_flags (const asection *sec,
1512 lang_output_section_statement_type **exact,
1513 lang_match_sec_type_func match_type)
1515 lang_output_section_statement_type *first, *look, *found;
1518 /* We know the first statement on this list is *ABS*. May as well
1520 first = &lang_output_section_statement.head->output_section_statement;
1521 first = first->next;
1523 /* First try for an exact match. */
1525 for (look = first; look; look = look->next)
1527 flags = look->flags;
1528 if (look->bfd_section != NULL)
1530 flags = look->bfd_section->flags;
1531 if (match_type && !match_type (link_info.output_bfd,
1536 flags ^= sec->flags;
1537 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY
1538 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1548 if ((sec->flags & SEC_CODE) != 0
1549 && (sec->flags & SEC_ALLOC) != 0)
1551 /* Try for a rw code section. */
1552 for (look = first; look; look = look->next)
1554 flags = look->flags;
1555 if (look->bfd_section != NULL)
1557 flags = look->bfd_section->flags;
1558 if (match_type && !match_type (link_info.output_bfd,
1563 flags ^= sec->flags;
1564 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1565 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1569 else if ((sec->flags & (SEC_READONLY | SEC_THREAD_LOCAL)) != 0
1570 && (sec->flags & SEC_ALLOC) != 0)
1572 /* .rodata can go after .text, .sdata2 after .rodata. */
1573 for (look = first; look; look = look->next)
1575 flags = look->flags;
1576 if (look->bfd_section != NULL)
1578 flags = look->bfd_section->flags;
1579 if (match_type && !match_type (link_info.output_bfd,
1584 flags ^= sec->flags;
1585 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1586 | SEC_READONLY | SEC_SMALL_DATA))
1587 || (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1589 && !(look->flags & SEC_SMALL_DATA))
1590 || (!(flags & (SEC_THREAD_LOCAL | SEC_ALLOC))
1591 && (look->flags & SEC_THREAD_LOCAL)
1592 && (!(flags & SEC_LOAD)
1593 || (look->flags & SEC_LOAD))))
1597 else if ((sec->flags & SEC_SMALL_DATA) != 0
1598 && (sec->flags & SEC_ALLOC) != 0)
1600 /* .sdata goes after .data, .sbss after .sdata. */
1601 for (look = first; look; look = look->next)
1603 flags = look->flags;
1604 if (look->bfd_section != NULL)
1606 flags = look->bfd_section->flags;
1607 if (match_type && !match_type (link_info.output_bfd,
1612 flags ^= sec->flags;
1613 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1614 | SEC_THREAD_LOCAL))
1615 || ((look->flags & SEC_SMALL_DATA)
1616 && !(sec->flags & SEC_HAS_CONTENTS)))
1620 else if ((sec->flags & SEC_HAS_CONTENTS) != 0
1621 && (sec->flags & SEC_ALLOC) != 0)
1623 /* .data goes after .rodata. */
1624 for (look = first; look; look = look->next)
1626 flags = look->flags;
1627 if (look->bfd_section != NULL)
1629 flags = look->bfd_section->flags;
1630 if (match_type && !match_type (link_info.output_bfd,
1635 flags ^= sec->flags;
1636 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1637 | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1641 else if ((sec->flags & SEC_ALLOC) != 0)
1643 /* .bss goes after any other alloc section. */
1644 for (look = first; look; look = look->next)
1646 flags = look->flags;
1647 if (look->bfd_section != NULL)
1649 flags = look->bfd_section->flags;
1650 if (match_type && !match_type (link_info.output_bfd,
1655 flags ^= sec->flags;
1656 if (!(flags & SEC_ALLOC))
1662 /* non-alloc go last. */
1663 for (look = first; look; look = look->next)
1665 flags = look->flags;
1666 if (look->bfd_section != NULL)
1667 flags = look->bfd_section->flags;
1668 flags ^= sec->flags;
1669 if (!(flags & SEC_DEBUGGING))
1675 if (found || !match_type)
1678 return lang_output_section_find_by_flags (sec, NULL, NULL);
1681 /* Find the last output section before given output statement.
1682 Used by place_orphan. */
1685 output_prev_sec_find (lang_output_section_statement_type *os)
1687 lang_output_section_statement_type *lookup;
1689 for (lookup = os->prev; lookup != NULL; lookup = lookup->prev)
1691 if (lookup->constraint < 0)
1694 if (lookup->bfd_section != NULL && lookup->bfd_section->owner != NULL)
1695 return lookup->bfd_section;
1701 /* Look for a suitable place for a new output section statement. The
1702 idea is to skip over anything that might be inside a SECTIONS {}
1703 statement in a script, before we find another output section
1704 statement. Assignments to "dot" before an output section statement
1705 are assumed to belong to it, except in two cases; The first
1706 assignment to dot, and assignments before non-alloc sections.
1707 Otherwise we might put an orphan before . = . + SIZEOF_HEADERS or
1708 similar assignments that set the initial address, or we might
1709 insert non-alloc note sections among assignments setting end of
1712 static lang_statement_union_type **
1713 insert_os_after (lang_output_section_statement_type *after)
1715 lang_statement_union_type **where;
1716 lang_statement_union_type **assign = NULL;
1717 bfd_boolean ignore_first;
1720 = after == &lang_output_section_statement.head->output_section_statement;
1722 for (where = &after->header.next;
1724 where = &(*where)->header.next)
1726 switch ((*where)->header.type)
1728 case lang_assignment_statement_enum:
1731 lang_assignment_statement_type *ass;
1733 ass = &(*where)->assignment_statement;
1734 if (ass->exp->type.node_class != etree_assert
1735 && ass->exp->assign.dst[0] == '.'
1736 && ass->exp->assign.dst[1] == 0
1740 ignore_first = FALSE;
1742 case lang_wild_statement_enum:
1743 case lang_input_section_enum:
1744 case lang_object_symbols_statement_enum:
1745 case lang_fill_statement_enum:
1746 case lang_data_statement_enum:
1747 case lang_reloc_statement_enum:
1748 case lang_padding_statement_enum:
1749 case lang_constructors_statement_enum:
1752 case lang_output_section_statement_enum:
1755 asection *s = (*where)->output_section_statement.bfd_section;
1758 || s->map_head.s == NULL
1759 || (s->flags & SEC_ALLOC) != 0)
1763 case lang_input_statement_enum:
1764 case lang_address_statement_enum:
1765 case lang_target_statement_enum:
1766 case lang_output_statement_enum:
1767 case lang_group_statement_enum:
1768 case lang_insert_statement_enum:
1777 lang_output_section_statement_type *
1778 lang_insert_orphan (asection *s,
1779 const char *secname,
1781 lang_output_section_statement_type *after,
1782 struct orphan_save *place,
1783 etree_type *address,
1784 lang_statement_list_type *add_child)
1786 lang_statement_list_type add;
1788 lang_output_section_statement_type *os;
1789 lang_output_section_statement_type **os_tail;
1791 /* If we have found an appropriate place for the output section
1792 statements for this orphan, add them to our own private list,
1793 inserting them later into the global statement list. */
1796 lang_list_init (&add);
1797 push_stat_ptr (&add);
1800 if (link_info.relocatable || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)
1801 address = exp_intop (0);
1803 os_tail = ((lang_output_section_statement_type **)
1804 lang_output_section_statement.tail);
1805 os = lang_enter_output_section_statement (secname, address, normal_section,
1806 NULL, NULL, NULL, constraint);
1809 if (config.build_constructors && *os_tail == os)
1811 /* If the name of the section is representable in C, then create
1812 symbols to mark the start and the end of the section. */
1813 for (ps = secname; *ps != '\0'; ps++)
1814 if (! ISALNUM ((unsigned char) *ps) && *ps != '_')
1819 etree_type *e_align;
1821 symname = (char *) xmalloc (ps - secname + sizeof "__start_" + 1);
1822 symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1823 sprintf (symname + (symname[0] != 0), "__start_%s", secname);
1824 e_align = exp_unop (ALIGN_K,
1825 exp_intop ((bfd_vma) 1 << s->alignment_power));
1826 lang_add_assignment (exp_assign (".", e_align));
1827 lang_add_assignment (exp_provide (symname,
1829 exp_nameop (NAME, ".")),
1834 if (add_child == NULL)
1835 add_child = &os->children;
1836 lang_add_section (add_child, s, os);
1838 if (after && (s->flags & (SEC_LOAD | SEC_ALLOC)) != 0)
1840 const char *region = (after->region
1841 ? after->region->name_list.name
1842 : DEFAULT_MEMORY_REGION);
1843 const char *lma_region = (after->lma_region
1844 ? after->lma_region->name_list.name
1846 lang_leave_output_section_statement (NULL, region, after->phdrs,
1850 lang_leave_output_section_statement (NULL, DEFAULT_MEMORY_REGION, NULL,
1853 if (ps != NULL && *ps == '\0')
1857 symname = (char *) xmalloc (ps - secname + sizeof "__stop_" + 1);
1858 symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1859 sprintf (symname + (symname[0] != 0), "__stop_%s", secname);
1860 lang_add_assignment (exp_provide (symname,
1861 exp_nameop (NAME, "."),
1865 /* Restore the global list pointer. */
1869 if (after != NULL && os->bfd_section != NULL)
1871 asection *snew, *as;
1873 snew = os->bfd_section;
1875 /* Shuffle the bfd section list to make the output file look
1876 neater. This is really only cosmetic. */
1877 if (place->section == NULL
1878 && after != (&lang_output_section_statement.head
1879 ->output_section_statement))
1881 asection *bfd_section = after->bfd_section;
1883 /* If the output statement hasn't been used to place any input
1884 sections (and thus doesn't have an output bfd_section),
1885 look for the closest prior output statement having an
1887 if (bfd_section == NULL)
1888 bfd_section = output_prev_sec_find (after);
1890 if (bfd_section != NULL && bfd_section != snew)
1891 place->section = &bfd_section->next;
1894 if (place->section == NULL)
1895 place->section = &link_info.output_bfd->sections;
1897 as = *place->section;
1901 /* Put the section at the end of the list. */
1903 /* Unlink the section. */
1904 bfd_section_list_remove (link_info.output_bfd, snew);
1906 /* Now tack it back on in the right place. */
1907 bfd_section_list_append (link_info.output_bfd, snew);
1909 else if (as != snew && as->prev != snew)
1911 /* Unlink the section. */
1912 bfd_section_list_remove (link_info.output_bfd, snew);
1914 /* Now tack it back on in the right place. */
1915 bfd_section_list_insert_before (link_info.output_bfd, as, snew);
1918 /* Save the end of this list. Further ophans of this type will
1919 follow the one we've just added. */
1920 place->section = &snew->next;
1922 /* The following is non-cosmetic. We try to put the output
1923 statements in some sort of reasonable order here, because they
1924 determine the final load addresses of the orphan sections.
1925 In addition, placing output statements in the wrong order may
1926 require extra segments. For instance, given a typical
1927 situation of all read-only sections placed in one segment and
1928 following that a segment containing all the read-write
1929 sections, we wouldn't want to place an orphan read/write
1930 section before or amongst the read-only ones. */
1931 if (add.head != NULL)
1933 lang_output_section_statement_type *newly_added_os;
1935 if (place->stmt == NULL)
1937 lang_statement_union_type **where = insert_os_after (after);
1942 place->os_tail = &after->next;
1946 /* Put it after the last orphan statement we added. */
1947 *add.tail = *place->stmt;
1948 *place->stmt = add.head;
1951 /* Fix the global list pointer if we happened to tack our
1952 new list at the tail. */
1953 if (*stat_ptr->tail == add.head)
1954 stat_ptr->tail = add.tail;
1956 /* Save the end of this list. */
1957 place->stmt = add.tail;
1959 /* Do the same for the list of output section statements. */
1960 newly_added_os = *os_tail;
1962 newly_added_os->prev = (lang_output_section_statement_type *)
1963 ((char *) place->os_tail
1964 - offsetof (lang_output_section_statement_type, next));
1965 newly_added_os->next = *place->os_tail;
1966 if (newly_added_os->next != NULL)
1967 newly_added_os->next->prev = newly_added_os;
1968 *place->os_tail = newly_added_os;
1969 place->os_tail = &newly_added_os->next;
1971 /* Fixing the global list pointer here is a little different.
1972 We added to the list in lang_enter_output_section_statement,
1973 trimmed off the new output_section_statment above when
1974 assigning *os_tail = NULL, but possibly added it back in
1975 the same place when assigning *place->os_tail. */
1976 if (*os_tail == NULL)
1977 lang_output_section_statement.tail
1978 = (lang_statement_union_type **) os_tail;
1985 lang_map_flags (flagword flag)
1987 if (flag & SEC_ALLOC)
1990 if (flag & SEC_CODE)
1993 if (flag & SEC_READONLY)
1996 if (flag & SEC_DATA)
1999 if (flag & SEC_LOAD)
2006 lang_memory_region_type *m;
2007 bfd_boolean dis_header_printed = FALSE;
2010 LANG_FOR_EACH_INPUT_STATEMENT (file)
2014 if ((file->the_bfd->flags & (BFD_LINKER_CREATED | DYNAMIC)) != 0
2015 || file->just_syms_flag)
2018 for (s = file->the_bfd->sections; s != NULL; s = s->next)
2019 if ((s->output_section == NULL
2020 || s->output_section->owner != link_info.output_bfd)
2021 && (s->flags & (SEC_LINKER_CREATED | SEC_KEEP)) == 0)
2023 if (! dis_header_printed)
2025 fprintf (config.map_file, _("\nDiscarded input sections\n\n"));
2026 dis_header_printed = TRUE;
2029 print_input_section (s, TRUE);
2033 minfo (_("\nMemory Configuration\n\n"));
2034 fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
2035 _("Name"), _("Origin"), _("Length"), _("Attributes"));
2037 for (m = lang_memory_region_list; m != NULL; m = m->next)
2042 fprintf (config.map_file, "%-16s ", m->name_list.name);
2044 sprintf_vma (buf, m->origin);
2045 minfo ("0x%s ", buf);
2053 minfo ("0x%V", m->length);
2054 if (m->flags || m->not_flags)
2062 lang_map_flags (m->flags);
2068 lang_map_flags (m->not_flags);
2075 fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
2077 if (! link_info.reduce_memory_overheads)
2079 obstack_begin (&map_obstack, 1000);
2080 for (p = link_info.input_bfds; p != (bfd *) NULL; p = p->link_next)
2081 bfd_map_over_sections (p, init_map_userdata, 0);
2082 bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0);
2084 lang_statement_iteration ++;
2085 print_statements ();
2089 init_map_userdata (bfd *abfd ATTRIBUTE_UNUSED,
2091 void *data ATTRIBUTE_UNUSED)
2093 fat_section_userdata_type *new_data
2094 = ((fat_section_userdata_type *) (stat_alloc
2095 (sizeof (fat_section_userdata_type))));
2097 ASSERT (get_userdata (sec) == NULL);
2098 get_userdata (sec) = new_data;
2099 new_data->map_symbol_def_tail = &new_data->map_symbol_def_head;
2100 new_data->map_symbol_def_count = 0;
2104 sort_def_symbol (struct bfd_link_hash_entry *hash_entry,
2105 void *info ATTRIBUTE_UNUSED)
2107 if (hash_entry->type == bfd_link_hash_defined
2108 || hash_entry->type == bfd_link_hash_defweak)
2110 struct fat_user_section_struct *ud;
2111 struct map_symbol_def *def;
2113 ud = (struct fat_user_section_struct *)
2114 get_userdata (hash_entry->u.def.section);
2117 /* ??? What do we have to do to initialize this beforehand? */
2118 /* The first time we get here is bfd_abs_section... */
2119 init_map_userdata (0, hash_entry->u.def.section, 0);
2120 ud = (struct fat_user_section_struct *)
2121 get_userdata (hash_entry->u.def.section);
2123 else if (!ud->map_symbol_def_tail)
2124 ud->map_symbol_def_tail = &ud->map_symbol_def_head;
2126 def = (struct map_symbol_def *) obstack_alloc (&map_obstack, sizeof *def);
2127 def->entry = hash_entry;
2128 *(ud->map_symbol_def_tail) = def;
2129 ud->map_symbol_def_tail = &def->next;
2130 ud->map_symbol_def_count++;
2135 /* Initialize an output section. */
2138 init_os (lang_output_section_statement_type *s, flagword flags)
2140 if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
2141 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
2143 if (s->constraint != SPECIAL)
2144 s->bfd_section = bfd_get_section_by_name (link_info.output_bfd, s->name);
2145 if (s->bfd_section == NULL)
2146 s->bfd_section = bfd_make_section_anyway_with_flags (link_info.output_bfd,
2148 if (s->bfd_section == NULL)
2150 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
2151 link_info.output_bfd->xvec->name, s->name);
2153 s->bfd_section->output_section = s->bfd_section;
2154 s->bfd_section->output_offset = 0;
2156 if (!link_info.reduce_memory_overheads)
2158 fat_section_userdata_type *new_userdata = (fat_section_userdata_type *)
2159 stat_alloc (sizeof (fat_section_userdata_type));
2160 memset (new_userdata, 0, sizeof (fat_section_userdata_type));
2161 get_userdata (s->bfd_section) = new_userdata;
2164 /* If there is a base address, make sure that any sections it might
2165 mention are initialized. */
2166 if (s->addr_tree != NULL)
2167 exp_init_os (s->addr_tree);
2169 if (s->load_base != NULL)
2170 exp_init_os (s->load_base);
2172 /* If supplied an alignment, set it. */
2173 if (s->section_alignment != -1)
2174 s->bfd_section->alignment_power = s->section_alignment;
2177 /* Make sure that all output sections mentioned in an expression are
2181 exp_init_os (etree_type *exp)
2183 switch (exp->type.node_class)
2187 exp_init_os (exp->assign.src);
2191 exp_init_os (exp->binary.lhs);
2192 exp_init_os (exp->binary.rhs);
2196 exp_init_os (exp->trinary.cond);
2197 exp_init_os (exp->trinary.lhs);
2198 exp_init_os (exp->trinary.rhs);
2202 exp_init_os (exp->assert_s.child);
2206 exp_init_os (exp->unary.child);
2210 switch (exp->type.node_code)
2216 lang_output_section_statement_type *os;
2218 os = lang_output_section_find (exp->name.name);
2219 if (os != NULL && os->bfd_section == NULL)
2231 section_already_linked (bfd *abfd, asection *sec, void *data)
2233 lang_input_statement_type *entry = (lang_input_statement_type *) data;
2235 /* If we are only reading symbols from this object, then we want to
2236 discard all sections. */
2237 if (entry->just_syms_flag)
2239 bfd_link_just_syms (abfd, sec, &link_info);
2243 if (!(abfd->flags & DYNAMIC))
2244 bfd_section_already_linked (abfd, sec, &link_info);
2247 /* The wild routines.
2249 These expand statements like *(.text) and foo.o to a list of
2250 explicit actions, like foo.o(.text), bar.o(.text) and
2251 foo.o(.text, .data). */
2253 /* Add SECTION to the output section OUTPUT. Do this by creating a
2254 lang_input_section statement which is placed at PTR. FILE is the
2255 input file which holds SECTION. */
2258 lang_add_section (lang_statement_list_type *ptr,
2260 lang_output_section_statement_type *output)
2262 flagword flags = section->flags;
2263 struct flag_info *sflag_info = section->section_flag_info;
2265 bfd_boolean discard;
2266 lang_input_section_type *new_section;
2267 bfd *abfd = link_info.output_bfd;
2269 /* Discard sections marked with SEC_EXCLUDE. */
2270 discard = (flags & SEC_EXCLUDE) != 0;
2272 /* Discard input sections which are assigned to a section named
2273 DISCARD_SECTION_NAME. */
2274 if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
2277 /* Discard debugging sections if we are stripping debugging
2279 if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
2280 && (flags & SEC_DEBUGGING) != 0)
2285 if (section->output_section == NULL)
2287 /* This prevents future calls from assigning this section. */
2288 section->output_section = bfd_abs_section_ptr;
2295 if (sflag_info->flags_initialized == FALSE)
2296 bfd_lookup_section_flags (&link_info, sflag_info);
2298 if (sflag_info->only_with_flags != 0
2299 && sflag_info->not_with_flags != 0
2300 && ((sflag_info->not_with_flags & flags) != 0
2301 || (sflag_info->only_with_flags & flags)
2302 != sflag_info->only_with_flags))
2305 if (sflag_info->only_with_flags != 0
2306 && (sflag_info->only_with_flags & flags)
2307 != sflag_info->only_with_flags)
2310 if (sflag_info->not_with_flags != 0
2311 && (sflag_info->not_with_flags & flags) != 0)
2315 if (section->output_section != NULL)
2318 /* We don't copy the SEC_NEVER_LOAD flag from an input section
2319 to an output section, because we want to be able to include a
2320 SEC_NEVER_LOAD section in the middle of an otherwise loaded
2321 section (I don't know why we want to do this, but we do).
2322 build_link_order in ldwrite.c handles this case by turning
2323 the embedded SEC_NEVER_LOAD section into a fill. */
2324 flags &= ~ SEC_NEVER_LOAD;
2326 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
2327 already been processed. One reason to do this is that on pe
2328 format targets, .text$foo sections go into .text and it's odd
2329 to see .text with SEC_LINK_ONCE set. */
2331 if (!link_info.relocatable)
2332 flags &= ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC);
2334 switch (output->sectype)
2336 case normal_section:
2337 case overlay_section:
2339 case noalloc_section:
2340 flags &= ~SEC_ALLOC;
2342 case noload_section:
2344 flags |= SEC_NEVER_LOAD;
2345 /* Unfortunately GNU ld has managed to evolve two different
2346 meanings to NOLOAD in scripts. ELF gets a .bss style noload,
2347 alloc, no contents section. All others get a noload, noalloc
2349 if (bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour)
2350 flags &= ~SEC_HAS_CONTENTS;
2352 flags &= ~SEC_ALLOC;
2356 if (output->bfd_section == NULL)
2357 init_os (output, flags);
2359 /* If SEC_READONLY is not set in the input section, then clear
2360 it from the output section. */
2361 output->bfd_section->flags &= flags | ~SEC_READONLY;
2363 if (output->bfd_section->linker_has_input)
2365 /* Only set SEC_READONLY flag on the first input section. */
2366 flags &= ~ SEC_READONLY;
2368 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
2369 if ((output->bfd_section->flags & (SEC_MERGE | SEC_STRINGS))
2370 != (flags & (SEC_MERGE | SEC_STRINGS))
2371 || ((flags & SEC_MERGE) != 0
2372 && output->bfd_section->entsize != section->entsize))
2374 output->bfd_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
2375 flags &= ~ (SEC_MERGE | SEC_STRINGS);
2378 output->bfd_section->flags |= flags;
2380 if (!output->bfd_section->linker_has_input)
2382 output->bfd_section->linker_has_input = 1;
2383 /* This must happen after flags have been updated. The output
2384 section may have been created before we saw its first input
2385 section, eg. for a data statement. */
2386 bfd_init_private_section_data (section->owner, section,
2387 link_info.output_bfd,
2388 output->bfd_section,
2390 if ((flags & SEC_MERGE) != 0)
2391 output->bfd_section->entsize = section->entsize;
2394 if ((flags & SEC_TIC54X_BLOCK) != 0
2395 && bfd_get_arch (section->owner) == bfd_arch_tic54x)
2397 /* FIXME: This value should really be obtained from the bfd... */
2398 output->block_value = 128;
2401 if (section->alignment_power > output->bfd_section->alignment_power)
2402 output->bfd_section->alignment_power = section->alignment_power;
2404 section->output_section = output->bfd_section;
2406 if (!link_info.relocatable
2407 && !stripped_excluded_sections)
2409 asection *s = output->bfd_section->map_tail.s;
2410 output->bfd_section->map_tail.s = section;
2411 section->map_head.s = NULL;
2412 section->map_tail.s = s;
2414 s->map_head.s = section;
2416 output->bfd_section->map_head.s = section;
2419 /* Add a section reference to the list. */
2420 new_section = new_stat (lang_input_section, ptr);
2421 new_section->section = section;
2424 /* Handle wildcard sorting. This returns the lang_input_section which
2425 should follow the one we are going to create for SECTION and FILE,
2426 based on the sorting requirements of WILD. It returns NULL if the
2427 new section should just go at the end of the current list. */
2429 static lang_statement_union_type *
2430 wild_sort (lang_wild_statement_type *wild,
2431 struct wildcard_list *sec,
2432 lang_input_statement_type *file,
2435 lang_statement_union_type *l;
2437 if (!wild->filenames_sorted
2438 && (sec == NULL || sec->spec.sorted == none))
2441 for (l = wild->children.head; l != NULL; l = l->header.next)
2443 lang_input_section_type *ls;
2445 if (l->header.type != lang_input_section_enum)
2447 ls = &l->input_section;
2449 /* Sorting by filename takes precedence over sorting by section
2452 if (wild->filenames_sorted)
2454 const char *fn, *ln;
2458 /* The PE support for the .idata section as generated by
2459 dlltool assumes that files will be sorted by the name of
2460 the archive and then the name of the file within the
2463 if (file->the_bfd != NULL
2464 && bfd_my_archive (file->the_bfd) != NULL)
2466 fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
2471 fn = file->filename;
2475 if (bfd_my_archive (ls->section->owner) != NULL)
2477 ln = bfd_get_filename (bfd_my_archive (ls->section->owner));
2482 ln = ls->section->owner->filename;
2486 i = filename_cmp (fn, ln);
2495 fn = file->filename;
2497 ln = ls->section->owner->filename;
2499 i = filename_cmp (fn, ln);
2507 /* Here either the files are not sorted by name, or we are
2508 looking at the sections for this file. */
2510 if (sec != NULL && sec->spec.sorted != none)
2511 if (compare_section (sec->spec.sorted, section, ls->section) < 0)
2518 /* Expand a wild statement for a particular FILE. SECTION may be
2519 NULL, in which case it is a wild card. */
2522 output_section_callback (lang_wild_statement_type *ptr,
2523 struct wildcard_list *sec,
2525 lang_input_statement_type *file,
2528 lang_statement_union_type *before;
2529 lang_output_section_statement_type *os;
2531 os = (lang_output_section_statement_type *) output;
2533 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2534 if (unique_section_p (section, os))
2537 before = wild_sort (ptr, sec, file, section);
2539 /* Here BEFORE points to the lang_input_section which
2540 should follow the one we are about to add. If BEFORE
2541 is NULL, then the section should just go at the end
2542 of the current list. */
2545 lang_add_section (&ptr->children, section, os);
2548 lang_statement_list_type list;
2549 lang_statement_union_type **pp;
2551 lang_list_init (&list);
2552 lang_add_section (&list, section, os);
2554 /* If we are discarding the section, LIST.HEAD will
2556 if (list.head != NULL)
2558 ASSERT (list.head->header.next == NULL);
2560 for (pp = &ptr->children.head;
2562 pp = &(*pp)->header.next)
2563 ASSERT (*pp != NULL);
2565 list.head->header.next = *pp;
2571 /* Check if all sections in a wild statement for a particular FILE
2575 check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
2576 struct wildcard_list *sec ATTRIBUTE_UNUSED,
2578 lang_input_statement_type *file ATTRIBUTE_UNUSED,
2581 lang_output_section_statement_type *os;
2583 os = (lang_output_section_statement_type *) output;
2585 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2586 if (unique_section_p (section, os))
2589 if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0)
2590 os->all_input_readonly = FALSE;
2593 /* This is passed a file name which must have been seen already and
2594 added to the statement tree. We will see if it has been opened
2595 already and had its symbols read. If not then we'll read it. */
2597 static lang_input_statement_type *
2598 lookup_name (const char *name)
2600 lang_input_statement_type *search;
2602 for (search = (lang_input_statement_type *) input_file_chain.head;
2604 search = (lang_input_statement_type *) search->next_real_file)
2606 /* Use the local_sym_name as the name of the file that has
2607 already been loaded as filename might have been transformed
2608 via the search directory lookup mechanism. */
2609 const char *filename = search->local_sym_name;
2611 if (filename != NULL
2612 && filename_cmp (filename, name) == 0)
2617 search = new_afile (name, lang_input_file_is_search_file_enum,
2618 default_target, FALSE);
2620 /* If we have already added this file, or this file is not real
2621 don't add this file. */
2622 if (search->loaded || !search->real)
2625 if (! load_symbols (search, NULL))
2631 /* Save LIST as a list of libraries whose symbols should not be exported. */
2636 struct excluded_lib *next;
2638 static struct excluded_lib *excluded_libs;
2641 add_excluded_libs (const char *list)
2643 const char *p = list, *end;
2647 struct excluded_lib *entry;
2648 end = strpbrk (p, ",:");
2650 end = p + strlen (p);
2651 entry = (struct excluded_lib *) xmalloc (sizeof (*entry));
2652 entry->next = excluded_libs;
2653 entry->name = (char *) xmalloc (end - p + 1);
2654 memcpy (entry->name, p, end - p);
2655 entry->name[end - p] = '\0';
2656 excluded_libs = entry;
2664 check_excluded_libs (bfd *abfd)
2666 struct excluded_lib *lib = excluded_libs;
2670 int len = strlen (lib->name);
2671 const char *filename = lbasename (abfd->filename);
2673 if (strcmp (lib->name, "ALL") == 0)
2675 abfd->no_export = TRUE;
2679 if (filename_ncmp (lib->name, filename, len) == 0
2680 && (filename[len] == '\0'
2681 || (filename[len] == '.' && filename[len + 1] == 'a'
2682 && filename[len + 2] == '\0')))
2684 abfd->no_export = TRUE;
2692 /* Get the symbols for an input file. */
2695 load_symbols (lang_input_statement_type *entry,
2696 lang_statement_list_type *place)
2703 ldfile_open_file (entry);
2705 /* Do not process further if the file was missing. */
2706 if (entry->missing_file)
2709 if (! bfd_check_format (entry->the_bfd, bfd_archive)
2710 && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
2713 bfd_boolean save_ldlang_sysrooted_script;
2714 bfd_boolean save_add_DT_NEEDED_for_regular;
2715 bfd_boolean save_add_DT_NEEDED_for_dynamic;
2716 bfd_boolean save_whole_archive;
2718 err = bfd_get_error ();
2720 /* See if the emulation has some special knowledge. */
2721 if (ldemul_unrecognized_file (entry))
2724 if (err == bfd_error_file_ambiguously_recognized)
2728 einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
2729 einfo (_("%B: matching formats:"), entry->the_bfd);
2730 for (p = matching; *p != NULL; p++)
2734 else if (err != bfd_error_file_not_recognized
2736 einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
2738 bfd_close (entry->the_bfd);
2739 entry->the_bfd = NULL;
2741 /* Try to interpret the file as a linker script. */
2742 ldfile_open_command_file (entry->filename);
2744 push_stat_ptr (place);
2745 save_ldlang_sysrooted_script = ldlang_sysrooted_script;
2746 ldlang_sysrooted_script = entry->sysrooted;
2747 save_add_DT_NEEDED_for_regular = add_DT_NEEDED_for_regular;
2748 add_DT_NEEDED_for_regular = entry->add_DT_NEEDED_for_regular;
2749 save_add_DT_NEEDED_for_dynamic = add_DT_NEEDED_for_dynamic;
2750 add_DT_NEEDED_for_dynamic = entry->add_DT_NEEDED_for_dynamic;
2751 save_whole_archive = whole_archive;
2752 whole_archive = entry->whole_archive;
2754 ldfile_assumed_script = TRUE;
2755 parser_input = input_script;
2756 /* We want to use the same -Bdynamic/-Bstatic as the one for
2758 config.dynamic_link = entry->dynamic;
2760 ldfile_assumed_script = FALSE;
2762 ldlang_sysrooted_script = save_ldlang_sysrooted_script;
2763 add_DT_NEEDED_for_regular = save_add_DT_NEEDED_for_regular;
2764 add_DT_NEEDED_for_dynamic = save_add_DT_NEEDED_for_dynamic;
2765 whole_archive = save_whole_archive;
2771 if (ldemul_recognized_file (entry))
2774 /* We don't call ldlang_add_file for an archive. Instead, the
2775 add_symbols entry point will call ldlang_add_file, via the
2776 add_archive_element callback, for each element of the archive
2778 switch (bfd_get_format (entry->the_bfd))
2784 #ifdef ENABLE_PLUGINS
2787 ldlang_add_file (entry);
2788 if (trace_files || trace_file_tries)
2789 info_msg ("%I\n", entry);
2793 check_excluded_libs (entry->the_bfd);
2795 if (entry->whole_archive)
2798 bfd_boolean loaded = TRUE;
2803 member = bfd_openr_next_archived_file (entry->the_bfd, member);
2808 if (! bfd_check_format (member, bfd_object))
2810 einfo (_("%F%B: member %B in archive is not an object\n"),
2811 entry->the_bfd, member);
2816 if (!(*link_info.callbacks
2817 ->add_archive_element) (&link_info, member,
2818 "--whole-archive", &subsbfd))
2821 /* Potentially, the add_archive_element hook may have set a
2822 substitute BFD for us. */
2823 if (!bfd_link_add_symbols (subsbfd, &link_info))
2825 einfo (_("%F%B: could not read symbols: %E\n"), member);
2830 entry->loaded = loaded;
2836 if (bfd_link_add_symbols (entry->the_bfd, &link_info))
2837 entry->loaded = TRUE;
2839 einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
2841 return entry->loaded;
2844 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
2845 may be NULL, indicating that it is a wildcard. Separate
2846 lang_input_section statements are created for each part of the
2847 expansion; they are added after the wild statement S. OUTPUT is
2848 the output section. */
2851 wild (lang_wild_statement_type *s,
2852 const char *target ATTRIBUTE_UNUSED,
2853 lang_output_section_statement_type *output)
2855 struct wildcard_list *sec;
2857 if (s->handler_data[0]
2858 && s->handler_data[0]->spec.sorted == by_name
2859 && !s->filenames_sorted)
2861 lang_section_bst_type *tree;
2863 walk_wild (s, output_section_callback_fast, output);
2868 output_section_callback_tree_to_list (s, tree, output);
2873 walk_wild (s, output_section_callback, output);
2875 if (default_common_section == NULL)
2876 for (sec = s->section_list; sec != NULL; sec = sec->next)
2877 if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
2879 /* Remember the section that common is going to in case we
2880 later get something which doesn't know where to put it. */
2881 default_common_section = output;
2886 /* Return TRUE iff target is the sought target. */
2889 get_target (const bfd_target *target, void *data)
2891 const char *sought = (const char *) data;
2893 return strcmp (target->name, sought) == 0;
2896 /* Like strcpy() but convert to lower case as well. */
2899 stricpy (char *dest, char *src)
2903 while ((c = *src++) != 0)
2904 *dest++ = TOLOWER (c);
2909 /* Remove the first occurrence of needle (if any) in haystack
2913 strcut (char *haystack, char *needle)
2915 haystack = strstr (haystack, needle);
2921 for (src = haystack + strlen (needle); *src;)
2922 *haystack++ = *src++;
2928 /* Compare two target format name strings.
2929 Return a value indicating how "similar" they are. */
2932 name_compare (char *first, char *second)
2938 copy1 = (char *) xmalloc (strlen (first) + 1);
2939 copy2 = (char *) xmalloc (strlen (second) + 1);
2941 /* Convert the names to lower case. */
2942 stricpy (copy1, first);
2943 stricpy (copy2, second);
2945 /* Remove size and endian strings from the name. */
2946 strcut (copy1, "big");
2947 strcut (copy1, "little");
2948 strcut (copy2, "big");
2949 strcut (copy2, "little");
2951 /* Return a value based on how many characters match,
2952 starting from the beginning. If both strings are
2953 the same then return 10 * their length. */
2954 for (result = 0; copy1[result] == copy2[result]; result++)
2955 if (copy1[result] == 0)
2967 /* Set by closest_target_match() below. */
2968 static const bfd_target *winner;
2970 /* Scan all the valid bfd targets looking for one that has the endianness
2971 requirement that was specified on the command line, and is the nearest
2972 match to the original output target. */
2975 closest_target_match (const bfd_target *target, void *data)
2977 const bfd_target *original = (const bfd_target *) data;
2979 if (command_line.endian == ENDIAN_BIG
2980 && target->byteorder != BFD_ENDIAN_BIG)
2983 if (command_line.endian == ENDIAN_LITTLE
2984 && target->byteorder != BFD_ENDIAN_LITTLE)
2987 /* Must be the same flavour. */
2988 if (target->flavour != original->flavour)
2991 /* Ignore generic big and little endian elf vectors. */
2992 if (strcmp (target->name, "elf32-big") == 0
2993 || strcmp (target->name, "elf64-big") == 0
2994 || strcmp (target->name, "elf32-little") == 0
2995 || strcmp (target->name, "elf64-little") == 0)
2998 /* If we have not found a potential winner yet, then record this one. */
3005 /* Oh dear, we now have two potential candidates for a successful match.
3006 Compare their names and choose the better one. */
3007 if (name_compare (target->name, original->name)
3008 > name_compare (winner->name, original->name))
3011 /* Keep on searching until wqe have checked them all. */
3015 /* Return the BFD target format of the first input file. */
3018 get_first_input_target (void)
3020 char *target = NULL;
3022 LANG_FOR_EACH_INPUT_STATEMENT (s)
3024 if (s->header.type == lang_input_statement_enum
3027 ldfile_open_file (s);
3029 if (s->the_bfd != NULL
3030 && bfd_check_format (s->the_bfd, bfd_object))
3032 target = bfd_get_target (s->the_bfd);
3044 lang_get_output_target (void)
3048 /* Has the user told us which output format to use? */
3049 if (output_target != NULL)
3050 return output_target;
3052 /* No - has the current target been set to something other than
3054 if (current_target != default_target && current_target != NULL)
3055 return current_target;
3057 /* No - can we determine the format of the first input file? */
3058 target = get_first_input_target ();
3062 /* Failed - use the default output target. */
3063 return default_target;
3066 /* Open the output file. */
3069 open_output (const char *name)
3071 output_target = lang_get_output_target ();
3073 /* Has the user requested a particular endianness on the command
3075 if (command_line.endian != ENDIAN_UNSET)
3077 const bfd_target *target;
3078 enum bfd_endian desired_endian;
3080 /* Get the chosen target. */
3081 target = bfd_search_for_target (get_target, (void *) output_target);
3083 /* If the target is not supported, we cannot do anything. */
3086 if (command_line.endian == ENDIAN_BIG)
3087 desired_endian = BFD_ENDIAN_BIG;
3089 desired_endian = BFD_ENDIAN_LITTLE;
3091 /* See if the target has the wrong endianness. This should
3092 not happen if the linker script has provided big and
3093 little endian alternatives, but some scrips don't do
3095 if (target->byteorder != desired_endian)
3097 /* If it does, then see if the target provides
3098 an alternative with the correct endianness. */
3099 if (target->alternative_target != NULL
3100 && (target->alternative_target->byteorder == desired_endian))
3101 output_target = target->alternative_target->name;
3104 /* Try to find a target as similar as possible to
3105 the default target, but which has the desired
3106 endian characteristic. */
3107 bfd_search_for_target (closest_target_match,
3110 /* Oh dear - we could not find any targets that
3111 satisfy our requirements. */
3113 einfo (_("%P: warning: could not find any targets"
3114 " that match endianness requirement\n"));
3116 output_target = winner->name;
3122 link_info.output_bfd = bfd_openw (name, output_target);
3124 if (link_info.output_bfd == NULL)
3126 if (bfd_get_error () == bfd_error_invalid_target)
3127 einfo (_("%P%F: target %s not found\n"), output_target);
3129 einfo (_("%P%F: cannot open output file %s: %E\n"), name);
3132 delete_output_file_on_failure = TRUE;
3134 if (! bfd_set_format (link_info.output_bfd, bfd_object))
3135 einfo (_("%P%F:%s: can not make object file: %E\n"), name);
3136 if (! bfd_set_arch_mach (link_info.output_bfd,
3137 ldfile_output_architecture,
3138 ldfile_output_machine))
3139 einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
3141 link_info.hash = bfd_link_hash_table_create (link_info.output_bfd);
3142 if (link_info.hash == NULL)
3143 einfo (_("%P%F: can not create hash table: %E\n"));
3145 bfd_set_gp_size (link_info.output_bfd, g_switch_value);
3149 ldlang_open_output (lang_statement_union_type *statement)
3151 switch (statement->header.type)
3153 case lang_output_statement_enum:
3154 ASSERT (link_info.output_bfd == NULL);
3155 open_output (statement->output_statement.name);
3156 ldemul_set_output_arch ();
3157 if (config.magic_demand_paged && !link_info.relocatable)
3158 link_info.output_bfd->flags |= D_PAGED;
3160 link_info.output_bfd->flags &= ~D_PAGED;
3161 if (config.text_read_only)
3162 link_info.output_bfd->flags |= WP_TEXT;
3164 link_info.output_bfd->flags &= ~WP_TEXT;
3165 if (link_info.traditional_format)
3166 link_info.output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
3168 link_info.output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
3171 case lang_target_statement_enum:
3172 current_target = statement->target_statement.target;
3179 /* Convert between addresses in bytes and sizes in octets.
3180 For currently supported targets, octets_per_byte is always a power
3181 of two, so we can use shifts. */
3182 #define TO_ADDR(X) ((X) >> opb_shift)
3183 #define TO_SIZE(X) ((X) << opb_shift)
3185 /* Support the above. */
3186 static unsigned int opb_shift = 0;
3191 unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
3192 ldfile_output_machine);
3195 while ((x & 1) == 0)
3203 /* Open all the input files. */
3207 OPEN_BFD_NORMAL = 0,
3211 #ifdef ENABLE_PLUGINS
3212 static lang_input_statement_type *plugin_insert = NULL;
3216 open_input_bfds (lang_statement_union_type *s, enum open_bfd_mode mode)
3218 for (; s != NULL; s = s->header.next)
3220 switch (s->header.type)
3222 case lang_constructors_statement_enum:
3223 open_input_bfds (constructor_list.head, mode);
3225 case lang_output_section_statement_enum:
3226 open_input_bfds (s->output_section_statement.children.head, mode);
3228 case lang_wild_statement_enum:
3229 /* Maybe we should load the file's symbols. */
3230 if ((mode & OPEN_BFD_RESCAN) == 0
3231 && s->wild_statement.filename
3232 && !wildcardp (s->wild_statement.filename)
3233 && !archive_path (s->wild_statement.filename))
3234 lookup_name (s->wild_statement.filename);
3235 open_input_bfds (s->wild_statement.children.head, mode);
3237 case lang_group_statement_enum:
3239 struct bfd_link_hash_entry *undefs;
3241 /* We must continually search the entries in the group
3242 until no new symbols are added to the list of undefined
3247 undefs = link_info.hash->undefs_tail;
3248 open_input_bfds (s->group_statement.children.head,
3249 mode | OPEN_BFD_FORCE);
3251 while (undefs != link_info.hash->undefs_tail);
3254 case lang_target_statement_enum:
3255 current_target = s->target_statement.target;
3257 case lang_input_statement_enum:
3258 if (s->input_statement.real)
3260 lang_statement_union_type **os_tail;
3261 lang_statement_list_type add;
3263 s->input_statement.target = current_target;
3265 /* If we are being called from within a group, and this
3266 is an archive which has already been searched, then
3267 force it to be researched unless the whole archive
3268 has been loaded already. Do the same for a rescan. */
3269 if (mode != OPEN_BFD_NORMAL
3270 #ifdef ENABLE_PLUGINS
3271 && ((mode & OPEN_BFD_RESCAN) == 0
3272 || plugin_insert == NULL)
3274 && !s->input_statement.whole_archive
3275 && s->input_statement.loaded
3276 && bfd_check_format (s->input_statement.the_bfd,
3278 s->input_statement.loaded = FALSE;
3279 #ifdef ENABLE_PLUGINS
3280 /* When rescanning, reload --as-needed shared libs. */
3281 else if ((mode & OPEN_BFD_RESCAN) != 0
3282 && plugin_insert == NULL
3283 && s->input_statement.loaded
3284 && s->input_statement.add_DT_NEEDED_for_regular
3285 && ((s->input_statement.the_bfd->flags) & DYNAMIC) != 0
3286 && plugin_should_reload (s->input_statement.the_bfd))
3288 s->input_statement.loaded = FALSE;
3289 s->input_statement.reload = TRUE;
3293 os_tail = lang_output_section_statement.tail;
3294 lang_list_init (&add);
3296 if (! load_symbols (&s->input_statement, &add))
3297 config.make_executable = FALSE;
3299 if (add.head != NULL)
3301 /* If this was a script with output sections then
3302 tack any added statements on to the end of the
3303 list. This avoids having to reorder the output
3304 section statement list. Very likely the user
3305 forgot -T, and whatever we do here will not meet
3306 naive user expectations. */
3307 if (os_tail != lang_output_section_statement.tail)
3309 einfo (_("%P: warning: %s contains output sections;"
3310 " did you forget -T?\n"),
3311 s->input_statement.filename);
3312 *stat_ptr->tail = add.head;
3313 stat_ptr->tail = add.tail;
3317 *add.tail = s->header.next;
3318 s->header.next = add.head;
3322 #ifdef ENABLE_PLUGINS
3323 /* If we have found the point at which a plugin added new
3324 files, clear plugin_insert to enable archive rescan. */
3325 if (&s->input_statement == plugin_insert)
3326 plugin_insert = NULL;
3329 case lang_assignment_statement_enum:
3330 if (s->assignment_statement.exp->assign.hidden)
3331 /* This is from a --defsym on the command line. */
3332 exp_fold_tree_no_dot (s->assignment_statement.exp);
3339 /* Exit if any of the files were missing. */
3344 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
3347 lang_track_definedness (const char *name)
3349 if (bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE) == NULL)
3350 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
3353 /* New-function for the definedness hash table. */
3355 static struct bfd_hash_entry *
3356 lang_definedness_newfunc (struct bfd_hash_entry *entry,
3357 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
3358 const char *name ATTRIBUTE_UNUSED)
3360 struct lang_definedness_hash_entry *ret
3361 = (struct lang_definedness_hash_entry *) entry;
3364 ret = (struct lang_definedness_hash_entry *)
3365 bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
3368 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
3370 ret->iteration = -1;
3374 /* Return the iteration when the definition of NAME was last updated. A
3375 value of -1 means that the symbol is not defined in the linker script
3376 or the command line, but may be defined in the linker symbol table. */
3379 lang_symbol_definition_iteration (const char *name)
3381 struct lang_definedness_hash_entry *defentry
3382 = (struct lang_definedness_hash_entry *)
3383 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
3385 /* We've already created this one on the presence of DEFINED in the
3386 script, so it can't be NULL unless something is borked elsewhere in
3388 if (defentry == NULL)
3391 return defentry->iteration;
3394 /* Update the definedness state of NAME. */
3397 lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
3399 struct lang_definedness_hash_entry *defentry
3400 = (struct lang_definedness_hash_entry *)
3401 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
3403 /* We don't keep track of symbols not tested with DEFINED. */
3404 if (defentry == NULL)
3407 /* If the symbol was already defined, and not from an earlier statement
3408 iteration, don't update the definedness iteration, because that'd
3409 make the symbol seem defined in the linker script at this point, and
3410 it wasn't; it was defined in some object. If we do anyway, DEFINED
3411 would start to yield false before this point and the construct "sym =
3412 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
3414 if (h->type != bfd_link_hash_undefined
3415 && h->type != bfd_link_hash_common
3416 && h->type != bfd_link_hash_new
3417 && defentry->iteration == -1)
3420 defentry->iteration = lang_statement_iteration;
3423 /* Add the supplied name to the symbol table as an undefined reference.
3424 This is a two step process as the symbol table doesn't even exist at
3425 the time the ld command line is processed. First we put the name
3426 on a list, then, once the output file has been opened, transfer the
3427 name to the symbol table. */
3429 typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
3431 #define ldlang_undef_chain_list_head entry_symbol.next
3434 ldlang_add_undef (const char *const name, bfd_boolean cmdline)
3436 ldlang_undef_chain_list_type *new_undef;
3438 undef_from_cmdline = undef_from_cmdline || cmdline;
3439 new_undef = (ldlang_undef_chain_list_type *) stat_alloc (sizeof (*new_undef));
3440 new_undef->next = ldlang_undef_chain_list_head;
3441 ldlang_undef_chain_list_head = new_undef;
3443 new_undef->name = xstrdup (name);
3445 if (link_info.output_bfd != NULL)
3446 insert_undefined (new_undef->name);
3449 /* Insert NAME as undefined in the symbol table. */
3452 insert_undefined (const char *name)
3454 struct bfd_link_hash_entry *h;
3456 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
3458 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
3459 if (h->type == bfd_link_hash_new)
3461 h->type = bfd_link_hash_undefined;
3462 h->u.undef.abfd = NULL;
3463 bfd_link_add_undef (link_info.hash, h);
3467 /* Run through the list of undefineds created above and place them
3468 into the linker hash table as undefined symbols belonging to the
3472 lang_place_undefineds (void)
3474 ldlang_undef_chain_list_type *ptr;
3476 for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
3477 insert_undefined (ptr->name);
3480 /* Check for all readonly or some readwrite sections. */
3483 check_input_sections
3484 (lang_statement_union_type *s,
3485 lang_output_section_statement_type *output_section_statement)
3487 for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
3489 switch (s->header.type)
3491 case lang_wild_statement_enum:
3492 walk_wild (&s->wild_statement, check_section_callback,
3493 output_section_statement);
3494 if (! output_section_statement->all_input_readonly)
3497 case lang_constructors_statement_enum:
3498 check_input_sections (constructor_list.head,
3499 output_section_statement);
3500 if (! output_section_statement->all_input_readonly)
3503 case lang_group_statement_enum:
3504 check_input_sections (s->group_statement.children.head,
3505 output_section_statement);
3506 if (! output_section_statement->all_input_readonly)
3515 /* Update wildcard statements if needed. */
3518 update_wild_statements (lang_statement_union_type *s)
3520 struct wildcard_list *sec;
3522 switch (sort_section)
3532 for (; s != NULL; s = s->header.next)
3534 switch (s->header.type)
3539 case lang_wild_statement_enum:
3540 sec = s->wild_statement.section_list;
3541 for (sec = s->wild_statement.section_list; sec != NULL;
3544 switch (sec->spec.sorted)
3547 sec->spec.sorted = sort_section;
3550 if (sort_section == by_alignment)
3551 sec->spec.sorted = by_name_alignment;
3554 if (sort_section == by_name)
3555 sec->spec.sorted = by_alignment_name;
3563 case lang_constructors_statement_enum:
3564 update_wild_statements (constructor_list.head);
3567 case lang_output_section_statement_enum:
3568 update_wild_statements
3569 (s->output_section_statement.children.head);
3572 case lang_group_statement_enum:
3573 update_wild_statements (s->group_statement.children.head);
3581 /* Open input files and attach to output sections. */
3584 map_input_to_output_sections
3585 (lang_statement_union_type *s, const char *target,
3586 lang_output_section_statement_type *os)
3588 for (; s != NULL; s = s->header.next)
3590 lang_output_section_statement_type *tos;
3593 switch (s->header.type)
3595 case lang_wild_statement_enum:
3596 wild (&s->wild_statement, target, os);
3598 case lang_constructors_statement_enum:
3599 map_input_to_output_sections (constructor_list.head,
3603 case lang_output_section_statement_enum:
3604 tos = &s->output_section_statement;
3605 if (tos->constraint != 0)
3607 if (tos->constraint != ONLY_IF_RW
3608 && tos->constraint != ONLY_IF_RO)
3610 tos->all_input_readonly = TRUE;
3611 check_input_sections (tos->children.head, tos);
3612 if (tos->all_input_readonly != (tos->constraint == ONLY_IF_RO))
3614 tos->constraint = -1;
3618 map_input_to_output_sections (tos->children.head,
3622 case lang_output_statement_enum:
3624 case lang_target_statement_enum:
3625 target = s->target_statement.target;
3627 case lang_group_statement_enum:
3628 map_input_to_output_sections (s->group_statement.children.head,
3632 case lang_data_statement_enum:
3633 /* Make sure that any sections mentioned in the expression
3635 exp_init_os (s->data_statement.exp);
3636 /* The output section gets CONTENTS, ALLOC and LOAD, but
3637 these may be overridden by the script. */
3638 flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD;
3639 switch (os->sectype)
3641 case normal_section:
3642 case overlay_section:
3644 case noalloc_section:
3645 flags = SEC_HAS_CONTENTS;
3647 case noload_section:
3648 if (bfd_get_flavour (link_info.output_bfd)
3649 == bfd_target_elf_flavour)
3650 flags = SEC_NEVER_LOAD | SEC_ALLOC;
3652 flags = SEC_NEVER_LOAD | SEC_HAS_CONTENTS;
3655 if (os->bfd_section == NULL)
3656 init_os (os, flags);
3658 os->bfd_section->flags |= flags;
3660 case lang_input_section_enum:
3662 case lang_fill_statement_enum:
3663 case lang_object_symbols_statement_enum:
3664 case lang_reloc_statement_enum:
3665 case lang_padding_statement_enum:
3666 case lang_input_statement_enum:
3667 if (os != NULL && os->bfd_section == NULL)
3670 case lang_assignment_statement_enum:
3671 if (os != NULL && os->bfd_section == NULL)
3674 /* Make sure that any sections mentioned in the assignment
3676 exp_init_os (s->assignment_statement.exp);
3678 case lang_address_statement_enum:
3679 /* Mark the specified section with the supplied address.
3680 If this section was actually a segment marker, then the
3681 directive is ignored if the linker script explicitly
3682 processed the segment marker. Originally, the linker
3683 treated segment directives (like -Ttext on the
3684 command-line) as section directives. We honor the
3685 section directive semantics for backwards compatibilty;
3686 linker scripts that do not specifically check for
3687 SEGMENT_START automatically get the old semantics. */
3688 if (!s->address_statement.segment
3689 || !s->address_statement.segment->used)
3691 const char *name = s->address_statement.section_name;
3693 /* Create the output section statement here so that
3694 orphans with a set address will be placed after other
3695 script sections. If we let the orphan placement code
3696 place them in amongst other sections then the address
3697 will affect following script sections, which is
3698 likely to surprise naive users. */
3699 tos = lang_output_section_statement_lookup (name, 0, TRUE);
3700 tos->addr_tree = s->address_statement.address;
3701 if (tos->bfd_section == NULL)
3705 case lang_insert_statement_enum:
3711 /* An insert statement snips out all the linker statements from the
3712 start of the list and places them after the output section
3713 statement specified by the insert. This operation is complicated
3714 by the fact that we keep a doubly linked list of output section
3715 statements as well as the singly linked list of all statements. */
3718 process_insert_statements (void)
3720 lang_statement_union_type **s;
3721 lang_output_section_statement_type *first_os = NULL;
3722 lang_output_section_statement_type *last_os = NULL;
3723 lang_output_section_statement_type *os;
3725 /* "start of list" is actually the statement immediately after
3726 the special abs_section output statement, so that it isn't
3728 s = &lang_output_section_statement.head;
3729 while (*(s = &(*s)->header.next) != NULL)
3731 if ((*s)->header.type == lang_output_section_statement_enum)
3733 /* Keep pointers to the first and last output section
3734 statement in the sequence we may be about to move. */
3735 os = &(*s)->output_section_statement;
3737 ASSERT (last_os == NULL || last_os->next == os);
3740 /* Set constraint negative so that lang_output_section_find
3741 won't match this output section statement. At this
3742 stage in linking constraint has values in the range
3743 [-1, ONLY_IN_RW]. */
3744 last_os->constraint = -2 - last_os->constraint;
3745 if (first_os == NULL)
3748 else if ((*s)->header.type == lang_insert_statement_enum)
3750 lang_insert_statement_type *i = &(*s)->insert_statement;
3751 lang_output_section_statement_type *where;
3752 lang_statement_union_type **ptr;
3753 lang_statement_union_type *first;
3755 where = lang_output_section_find (i->where);
3756 if (where != NULL && i->is_before)
3759 where = where->prev;
3760 while (where != NULL && where->constraint < 0);
3764 einfo (_("%F%P: %s not found for insert\n"), i->where);
3768 /* Deal with reordering the output section statement list. */
3769 if (last_os != NULL)
3771 asection *first_sec, *last_sec;
3772 struct lang_output_section_statement_struct **next;
3774 /* Snip out the output sections we are moving. */
3775 first_os->prev->next = last_os->next;
3776 if (last_os->next == NULL)
3778 next = &first_os->prev->next;
3779 lang_output_section_statement.tail
3780 = (lang_statement_union_type **) next;
3783 last_os->next->prev = first_os->prev;
3784 /* Add them in at the new position. */
3785 last_os->next = where->next;
3786 if (where->next == NULL)
3788 next = &last_os->next;
3789 lang_output_section_statement.tail
3790 = (lang_statement_union_type **) next;
3793 where->next->prev = last_os;
3794 first_os->prev = where;
3795 where->next = first_os;
3797 /* Move the bfd sections in the same way. */
3800 for (os = first_os; os != NULL; os = os->next)
3802 os->constraint = -2 - os->constraint;
3803 if (os->bfd_section != NULL
3804 && os->bfd_section->owner != NULL)
3806 last_sec = os->bfd_section;
3807 if (first_sec == NULL)
3808 first_sec = last_sec;
3813 if (last_sec != NULL)
3815 asection *sec = where->bfd_section;
3817 sec = output_prev_sec_find (where);
3819 /* The place we want to insert must come after the
3820 sections we are moving. So if we find no
3821 section or if the section is the same as our
3822 last section, then no move is needed. */
3823 if (sec != NULL && sec != last_sec)
3825 /* Trim them off. */
3826 if (first_sec->prev != NULL)
3827 first_sec->prev->next = last_sec->next;
3829 link_info.output_bfd->sections = last_sec->next;
3830 if (last_sec->next != NULL)
3831 last_sec->next->prev = first_sec->prev;
3833 link_info.output_bfd->section_last = first_sec->prev;
3835 last_sec->next = sec->next;
3836 if (sec->next != NULL)
3837 sec->next->prev = last_sec;
3839 link_info.output_bfd->section_last = last_sec;
3840 first_sec->prev = sec;
3841 sec->next = first_sec;
3849 ptr = insert_os_after (where);
3850 /* Snip everything after the abs_section output statement we
3851 know is at the start of the list, up to and including
3852 the insert statement we are currently processing. */
3853 first = lang_output_section_statement.head->header.next;
3854 lang_output_section_statement.head->header.next = (*s)->header.next;
3855 /* Add them back where they belong. */
3858 statement_list.tail = s;
3860 s = &lang_output_section_statement.head;
3864 /* Undo constraint twiddling. */
3865 for (os = first_os; os != NULL; os = os->next)
3867 os->constraint = -2 - os->constraint;
3873 /* An output section might have been removed after its statement was
3874 added. For example, ldemul_before_allocation can remove dynamic
3875 sections if they turn out to be not needed. Clean them up here. */
3878 strip_excluded_output_sections (void)
3880 lang_output_section_statement_type *os;
3882 /* Run lang_size_sections (if not already done). */
3883 if (expld.phase != lang_mark_phase_enum)
3885 expld.phase = lang_mark_phase_enum;
3886 expld.dataseg.phase = exp_dataseg_none;
3887 one_lang_size_sections_pass (NULL, FALSE);
3888 lang_reset_memory_regions ();
3891 for (os = &lang_output_section_statement.head->output_section_statement;
3895 asection *output_section;
3896 bfd_boolean exclude;
3898 if (os->constraint < 0)
3901 output_section = os->bfd_section;
3902 if (output_section == NULL)
3905 exclude = (output_section->rawsize == 0
3906 && (output_section->flags & SEC_KEEP) == 0
3907 && !bfd_section_removed_from_list (link_info.output_bfd,
3910 /* Some sections have not yet been sized, notably .gnu.version,
3911 .dynsym, .dynstr and .hash. These all have SEC_LINKER_CREATED
3912 input sections, so don't drop output sections that have such
3913 input sections unless they are also marked SEC_EXCLUDE. */
3914 if (exclude && output_section->map_head.s != NULL)
3918 for (s = output_section->map_head.s; s != NULL; s = s->map_head.s)
3919 if ((s->flags & SEC_LINKER_CREATED) != 0
3920 && (s->flags & SEC_EXCLUDE) == 0)
3927 /* TODO: Don't just junk map_head.s, turn them into link_orders. */
3928 output_section->map_head.link_order = NULL;
3929 output_section->map_tail.link_order = NULL;
3933 /* We don't set bfd_section to NULL since bfd_section of the
3934 removed output section statement may still be used. */
3935 if (!os->section_relative_symbol
3936 && !os->update_dot_tree)
3938 output_section->flags |= SEC_EXCLUDE;
3939 bfd_section_list_remove (link_info.output_bfd, output_section);
3940 link_info.output_bfd->section_count--;
3944 /* Stop future calls to lang_add_section from messing with map_head
3945 and map_tail link_order fields. */
3946 stripped_excluded_sections = TRUE;
3950 print_output_section_statement
3951 (lang_output_section_statement_type *output_section_statement)
3953 asection *section = output_section_statement->bfd_section;
3956 if (output_section_statement != abs_output_section)
3958 minfo ("\n%s", output_section_statement->name);
3960 if (section != NULL)
3962 print_dot = section->vma;
3964 len = strlen (output_section_statement->name);
3965 if (len >= SECTION_NAME_MAP_LENGTH - 1)
3970 while (len < SECTION_NAME_MAP_LENGTH)
3976 minfo ("0x%V %W", section->vma, section->size);
3978 if (section->vma != section->lma)
3979 minfo (_(" load address 0x%V"), section->lma);
3981 if (output_section_statement->update_dot_tree != NULL)
3982 exp_fold_tree (output_section_statement->update_dot_tree,
3983 bfd_abs_section_ptr, &print_dot);
3989 print_statement_list (output_section_statement->children.head,
3990 output_section_statement);
3993 /* Scan for the use of the destination in the right hand side
3994 of an expression. In such cases we will not compute the
3995 correct expression, since the value of DST that is used on
3996 the right hand side will be its final value, not its value
3997 just before this expression is evaluated. */
4000 scan_for_self_assignment (const char * dst, etree_type * rhs)
4002 if (rhs == NULL || dst == NULL)
4005 switch (rhs->type.node_class)
4008 return (scan_for_self_assignment (dst, rhs->binary.lhs)
4009 || scan_for_self_assignment (dst, rhs->binary.rhs));
4012 return (scan_for_self_assignment (dst, rhs->trinary.lhs)
4013 || scan_for_self_assignment (dst, rhs->trinary.rhs));
4016 case etree_provided:
4018 if (strcmp (dst, rhs->assign.dst) == 0)
4020 return scan_for_self_assignment (dst, rhs->assign.src);
4023 return scan_for_self_assignment (dst, rhs->unary.child);
4027 return strcmp (dst, rhs->value.str) == 0;
4032 return strcmp (dst, rhs->name.name) == 0;
4044 print_assignment (lang_assignment_statement_type *assignment,
4045 lang_output_section_statement_type *output_section)
4049 bfd_boolean computation_is_valid = TRUE;
4053 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4056 if (assignment->exp->type.node_class == etree_assert)
4059 tree = assignment->exp->assert_s.child;
4060 computation_is_valid = TRUE;
4064 const char *dst = assignment->exp->assign.dst;
4066 is_dot = (dst[0] == '.' && dst[1] == 0);
4067 tree = assignment->exp->assign.src;
4068 computation_is_valid = is_dot || !scan_for_self_assignment (dst, tree);
4071 osec = output_section->bfd_section;
4073 osec = bfd_abs_section_ptr;
4074 exp_fold_tree (tree, osec, &print_dot);
4075 if (expld.result.valid_p)
4079 if (computation_is_valid)
4081 value = expld.result.value;
4083 if (expld.result.section != NULL)
4084 value += expld.result.section->vma;
4086 minfo ("0x%V", value);
4092 struct bfd_link_hash_entry *h;
4094 h = bfd_link_hash_lookup (link_info.hash, assignment->exp->assign.dst,
4095 FALSE, FALSE, TRUE);
4098 value = h->u.def.value;
4099 value += h->u.def.section->output_section->vma;
4100 value += h->u.def.section->output_offset;
4102 minfo ("[0x%V]", value);
4105 minfo ("[unresolved]");
4117 exp_print_tree (assignment->exp);
4122 print_input_statement (lang_input_statement_type *statm)
4124 if (statm->filename != NULL
4125 && (statm->the_bfd == NULL
4126 || (statm->the_bfd->flags & BFD_LINKER_CREATED) == 0))
4127 fprintf (config.map_file, "LOAD %s\n", statm->filename);
4130 /* Print all symbols defined in a particular section. This is called
4131 via bfd_link_hash_traverse, or by print_all_symbols. */
4134 print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
4136 asection *sec = (asection *) ptr;
4138 if ((hash_entry->type == bfd_link_hash_defined
4139 || hash_entry->type == bfd_link_hash_defweak)
4140 && sec == hash_entry->u.def.section)
4144 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4147 (hash_entry->u.def.value
4148 + hash_entry->u.def.section->output_offset
4149 + hash_entry->u.def.section->output_section->vma));
4151 minfo (" %T\n", hash_entry->root.string);
4158 hash_entry_addr_cmp (const void *a, const void *b)
4160 const struct bfd_link_hash_entry *l = *(const struct bfd_link_hash_entry **)a;
4161 const struct bfd_link_hash_entry *r = *(const struct bfd_link_hash_entry **)b;
4163 if (l->u.def.value < r->u.def.value)
4165 else if (l->u.def.value > r->u.def.value)
4172 print_all_symbols (asection *sec)
4174 struct fat_user_section_struct *ud =
4175 (struct fat_user_section_struct *) get_userdata (sec);
4176 struct map_symbol_def *def;
4177 struct bfd_link_hash_entry **entries;
4183 *ud->map_symbol_def_tail = 0;
4185 /* Sort the symbols by address. */
4186 entries = (struct bfd_link_hash_entry **)
4187 obstack_alloc (&map_obstack, ud->map_symbol_def_count * sizeof (*entries));
4189 for (i = 0, def = ud->map_symbol_def_head; def; def = def->next, i++)
4190 entries[i] = def->entry;
4192 qsort (entries, ud->map_symbol_def_count, sizeof (*entries),
4193 hash_entry_addr_cmp);
4195 /* Print the symbols. */
4196 for (i = 0; i < ud->map_symbol_def_count; i++)
4197 print_one_symbol (entries[i], sec);
4199 obstack_free (&map_obstack, entries);
4202 /* Print information about an input section to the map file. */
4205 print_input_section (asection *i, bfd_boolean is_discarded)
4207 bfd_size_type size = i->size;
4214 minfo ("%s", i->name);
4216 len = 1 + strlen (i->name);
4217 if (len >= SECTION_NAME_MAP_LENGTH - 1)
4222 while (len < SECTION_NAME_MAP_LENGTH)
4228 if (i->output_section != NULL
4229 && i->output_section->owner == link_info.output_bfd)
4230 addr = i->output_section->vma + i->output_offset;
4238 minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
4240 if (size != i->rawsize && i->rawsize != 0)
4242 len = SECTION_NAME_MAP_LENGTH + 3;
4254 minfo (_("%W (size before relaxing)\n"), i->rawsize);
4257 if (i->output_section != NULL
4258 && i->output_section->owner == link_info.output_bfd)
4260 if (link_info.reduce_memory_overheads)
4261 bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
4263 print_all_symbols (i);
4265 /* Update print_dot, but make sure that we do not move it
4266 backwards - this could happen if we have overlays and a
4267 later overlay is shorter than an earier one. */
4268 if (addr + TO_ADDR (size) > print_dot)
4269 print_dot = addr + TO_ADDR (size);
4274 print_fill_statement (lang_fill_statement_type *fill)
4278 fputs (" FILL mask 0x", config.map_file);
4279 for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
4280 fprintf (config.map_file, "%02x", *p);
4281 fputs ("\n", config.map_file);
4285 print_data_statement (lang_data_statement_type *data)
4293 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4296 addr = data->output_offset;
4297 if (data->output_section != NULL)
4298 addr += data->output_section->vma;
4326 minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
4328 if (data->exp->type.node_class != etree_value)
4331 exp_print_tree (data->exp);
4336 print_dot = addr + TO_ADDR (size);
4339 /* Print an address statement. These are generated by options like
4343 print_address_statement (lang_address_statement_type *address)
4345 minfo (_("Address of section %s set to "), address->section_name);
4346 exp_print_tree (address->address);
4350 /* Print a reloc statement. */
4353 print_reloc_statement (lang_reloc_statement_type *reloc)
4360 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4363 addr = reloc->output_offset;
4364 if (reloc->output_section != NULL)
4365 addr += reloc->output_section->vma;
4367 size = bfd_get_reloc_size (reloc->howto);
4369 minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
4371 if (reloc->name != NULL)
4372 minfo ("%s+", reloc->name);
4374 minfo ("%s+", reloc->section->name);
4376 exp_print_tree (reloc->addend_exp);
4380 print_dot = addr + TO_ADDR (size);
4384 print_padding_statement (lang_padding_statement_type *s)
4392 len = sizeof " *fill*" - 1;
4393 while (len < SECTION_NAME_MAP_LENGTH)
4399 addr = s->output_offset;
4400 if (s->output_section != NULL)
4401 addr += s->output_section->vma;
4402 minfo ("0x%V %W ", addr, (bfd_vma) s->size);
4404 if (s->fill->size != 0)
4408 for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
4409 fprintf (config.map_file, "%02x", *p);
4414 print_dot = addr + TO_ADDR (s->size);
4418 print_wild_statement (lang_wild_statement_type *w,
4419 lang_output_section_statement_type *os)
4421 struct wildcard_list *sec;
4425 if (w->filenames_sorted)
4427 if (w->filename != NULL)
4428 minfo ("%s", w->filename);
4431 if (w->filenames_sorted)
4435 for (sec = w->section_list; sec; sec = sec->next)
4437 if (sec->spec.sorted)
4439 if (sec->spec.exclude_name_list != NULL)
4442 minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
4443 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
4444 minfo (" %s", tmp->name);
4447 if (sec->spec.name != NULL)
4448 minfo ("%s", sec->spec.name);
4451 if (sec->spec.sorted)
4460 print_statement_list (w->children.head, os);
4463 /* Print a group statement. */
4466 print_group (lang_group_statement_type *s,
4467 lang_output_section_statement_type *os)
4469 fprintf (config.map_file, "START GROUP\n");
4470 print_statement_list (s->children.head, os);
4471 fprintf (config.map_file, "END GROUP\n");
4474 /* Print the list of statements in S.
4475 This can be called for any statement type. */
4478 print_statement_list (lang_statement_union_type *s,
4479 lang_output_section_statement_type *os)
4483 print_statement (s, os);
4488 /* Print the first statement in statement list S.
4489 This can be called for any statement type. */
4492 print_statement (lang_statement_union_type *s,
4493 lang_output_section_statement_type *os)
4495 switch (s->header.type)
4498 fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
4501 case lang_constructors_statement_enum:
4502 if (constructor_list.head != NULL)
4504 if (constructors_sorted)
4505 minfo (" SORT (CONSTRUCTORS)\n");
4507 minfo (" CONSTRUCTORS\n");
4508 print_statement_list (constructor_list.head, os);
4511 case lang_wild_statement_enum:
4512 print_wild_statement (&s->wild_statement, os);
4514 case lang_address_statement_enum:
4515 print_address_statement (&s->address_statement);
4517 case lang_object_symbols_statement_enum:
4518 minfo (" CREATE_OBJECT_SYMBOLS\n");
4520 case lang_fill_statement_enum:
4521 print_fill_statement (&s->fill_statement);
4523 case lang_data_statement_enum:
4524 print_data_statement (&s->data_statement);
4526 case lang_reloc_statement_enum:
4527 print_reloc_statement (&s->reloc_statement);
4529 case lang_input_section_enum:
4530 print_input_section (s->input_section.section, FALSE);
4532 case lang_padding_statement_enum:
4533 print_padding_statement (&s->padding_statement);
4535 case lang_output_section_statement_enum:
4536 print_output_section_statement (&s->output_section_statement);
4538 case lang_assignment_statement_enum:
4539 print_assignment (&s->assignment_statement, os);
4541 case lang_target_statement_enum:
4542 fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
4544 case lang_output_statement_enum:
4545 minfo ("OUTPUT(%s", s->output_statement.name);
4546 if (output_target != NULL)
4547 minfo (" %s", output_target);
4550 case lang_input_statement_enum:
4551 print_input_statement (&s->input_statement);
4553 case lang_group_statement_enum:
4554 print_group (&s->group_statement, os);
4556 case lang_insert_statement_enum:
4557 minfo ("INSERT %s %s\n",
4558 s->insert_statement.is_before ? "BEFORE" : "AFTER",
4559 s->insert_statement.where);
4565 print_statements (void)
4567 print_statement_list (statement_list.head, abs_output_section);
4570 /* Print the first N statements in statement list S to STDERR.
4571 If N == 0, nothing is printed.
4572 If N < 0, the entire list is printed.
4573 Intended to be called from GDB. */
4576 dprint_statement (lang_statement_union_type *s, int n)
4578 FILE *map_save = config.map_file;
4580 config.map_file = stderr;
4583 print_statement_list (s, abs_output_section);
4586 while (s && --n >= 0)
4588 print_statement (s, abs_output_section);
4593 config.map_file = map_save;
4597 insert_pad (lang_statement_union_type **ptr,
4599 bfd_size_type alignment_needed,
4600 asection *output_section,
4603 static fill_type zero_fill = { 1, { 0 } };
4604 lang_statement_union_type *pad = NULL;
4606 if (ptr != &statement_list.head)
4607 pad = ((lang_statement_union_type *)
4608 ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
4610 && pad->header.type == lang_padding_statement_enum
4611 && pad->padding_statement.output_section == output_section)
4613 /* Use the existing pad statement. */
4615 else if ((pad = *ptr) != NULL
4616 && pad->header.type == lang_padding_statement_enum
4617 && pad->padding_statement.output_section == output_section)
4619 /* Use the existing pad statement. */
4623 /* Make a new padding statement, linked into existing chain. */
4624 pad = (lang_statement_union_type *)
4625 stat_alloc (sizeof (lang_padding_statement_type));
4626 pad->header.next = *ptr;
4628 pad->header.type = lang_padding_statement_enum;
4629 pad->padding_statement.output_section = output_section;
4632 pad->padding_statement.fill = fill;
4634 pad->padding_statement.output_offset = dot - output_section->vma;
4635 pad->padding_statement.size = alignment_needed;
4636 output_section->size += alignment_needed;
4639 /* Work out how much this section will move the dot point. */
4643 (lang_statement_union_type **this_ptr,
4644 lang_output_section_statement_type *output_section_statement,
4648 lang_input_section_type *is = &((*this_ptr)->input_section);
4649 asection *i = is->section;
4651 if (!((lang_input_statement_type *) i->owner->usrdata)->just_syms_flag
4652 && (i->flags & SEC_EXCLUDE) == 0)
4654 bfd_size_type alignment_needed;
4657 /* Align this section first to the input sections requirement,
4658 then to the output section's requirement. If this alignment
4659 is greater than any seen before, then record it too. Perform
4660 the alignment by inserting a magic 'padding' statement. */
4662 if (output_section_statement->subsection_alignment != -1)
4663 i->alignment_power = output_section_statement->subsection_alignment;
4665 o = output_section_statement->bfd_section;
4666 if (o->alignment_power < i->alignment_power)
4667 o->alignment_power = i->alignment_power;
4669 alignment_needed = align_power (dot, i->alignment_power) - dot;
4671 if (alignment_needed != 0)
4673 insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
4674 dot += alignment_needed;
4677 /* Remember where in the output section this input section goes. */
4679 i->output_offset = dot - o->vma;
4681 /* Mark how big the output section must be to contain this now. */
4682 dot += TO_ADDR (i->size);
4683 o->size = TO_SIZE (dot - o->vma);
4687 i->output_offset = i->vma - output_section_statement->bfd_section->vma;
4694 sort_sections_by_lma (const void *arg1, const void *arg2)
4696 const asection *sec1 = *(const asection **) arg1;
4697 const asection *sec2 = *(const asection **) arg2;
4699 if (bfd_section_lma (sec1->owner, sec1)
4700 < bfd_section_lma (sec2->owner, sec2))
4702 else if (bfd_section_lma (sec1->owner, sec1)
4703 > bfd_section_lma (sec2->owner, sec2))
4705 else if (sec1->id < sec2->id)
4707 else if (sec1->id > sec2->id)
4713 #define IGNORE_SECTION(s) \
4714 ((s->flags & SEC_ALLOC) == 0 \
4715 || ((s->flags & SEC_THREAD_LOCAL) != 0 \
4716 && (s->flags & SEC_LOAD) == 0))
4718 /* Check to see if any allocated sections overlap with other allocated
4719 sections. This can happen if a linker script specifies the output
4720 section addresses of the two sections. Also check whether any memory
4721 region has overflowed. */
4724 lang_check_section_addresses (void)
4727 asection **sections, **spp;
4734 lang_memory_region_type *m;
4736 if (bfd_count_sections (link_info.output_bfd) <= 1)
4739 amt = bfd_count_sections (link_info.output_bfd) * sizeof (asection *);
4740 sections = (asection **) xmalloc (amt);
4742 /* Scan all sections in the output list. */
4744 for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
4746 /* Only consider loadable sections with real contents. */
4747 if (!(s->flags & SEC_LOAD)
4748 || !(s->flags & SEC_ALLOC)
4752 sections[count] = s;
4759 qsort (sections, (size_t) count, sizeof (asection *),
4760 sort_sections_by_lma);
4765 s_end = s_start + TO_ADDR (s->size) - 1;
4766 for (count--; count; count--)
4768 /* We must check the sections' LMA addresses not their VMA
4769 addresses because overlay sections can have overlapping VMAs
4770 but they must have distinct LMAs. */
4776 s_end = s_start + TO_ADDR (s->size) - 1;
4778 /* Look for an overlap. We have sorted sections by lma, so we
4779 know that s_start >= p_start. Besides the obvious case of
4780 overlap when the current section starts before the previous
4781 one ends, we also must have overlap if the previous section
4782 wraps around the address space. */
4783 if (s_start <= p_end
4785 einfo (_("%X%P: section %s loaded at [%V,%V] overlaps section %s loaded at [%V,%V]\n"),
4786 s->name, s_start, s_end, p->name, p_start, p_end);
4791 /* If any memory region has overflowed, report by how much.
4792 We do not issue this diagnostic for regions that had sections
4793 explicitly placed outside their bounds; os_region_check's
4794 diagnostics are adequate for that case.
4796 FIXME: It is conceivable that m->current - (m->origin + m->length)
4797 might overflow a 32-bit integer. There is, alas, no way to print
4798 a bfd_vma quantity in decimal. */
4799 for (m = lang_memory_region_list; m; m = m->next)
4800 if (m->had_full_message)
4801 einfo (_("%X%P: region `%s' overflowed by %ld bytes\n"),
4802 m->name_list.name, (long)(m->current - (m->origin + m->length)));
4806 /* Make sure the new address is within the region. We explicitly permit the
4807 current address to be at the exact end of the region when the address is
4808 non-zero, in case the region is at the end of addressable memory and the
4809 calculation wraps around. */
4812 os_region_check (lang_output_section_statement_type *os,
4813 lang_memory_region_type *region,
4817 if ((region->current < region->origin
4818 || (region->current - region->origin > region->length))
4819 && ((region->current != region->origin + region->length)
4824 einfo (_("%X%P: address 0x%v of %B section `%s'"
4825 " is not within region `%s'\n"),
4827 os->bfd_section->owner,
4828 os->bfd_section->name,
4829 region->name_list.name);
4831 else if (!region->had_full_message)
4833 region->had_full_message = TRUE;
4835 einfo (_("%X%P: %B section `%s' will not fit in region `%s'\n"),
4836 os->bfd_section->owner,
4837 os->bfd_section->name,
4838 region->name_list.name);
4843 /* Set the sizes for all the output sections. */
4846 lang_size_sections_1
4847 (lang_statement_union_type **prev,
4848 lang_output_section_statement_type *output_section_statement,
4852 bfd_boolean check_regions)
4854 lang_statement_union_type *s;
4856 /* Size up the sections from their constituent parts. */
4857 for (s = *prev; s != NULL; s = s->header.next)
4859 switch (s->header.type)
4861 case lang_output_section_statement_enum:
4863 bfd_vma newdot, after;
4864 lang_output_section_statement_type *os;
4865 lang_memory_region_type *r;
4866 int section_alignment = 0;
4868 os = &s->output_section_statement;
4869 if (os->constraint == -1)
4872 /* FIXME: We shouldn't need to zero section vmas for ld -r
4873 here, in lang_insert_orphan, or in the default linker scripts.
4874 This is covering for coff backend linker bugs. See PR6945. */
4875 if (os->addr_tree == NULL
4876 && link_info.relocatable
4877 && (bfd_get_flavour (link_info.output_bfd)
4878 == bfd_target_coff_flavour))
4879 os->addr_tree = exp_intop (0);
4880 if (os->addr_tree != NULL)
4882 os->processed_vma = FALSE;
4883 exp_fold_tree (os->addr_tree, bfd_abs_section_ptr, &dot);
4885 if (expld.result.valid_p)
4887 dot = expld.result.value;
4888 if (expld.result.section != NULL)
4889 dot += expld.result.section->vma;
4891 else if (expld.phase != lang_mark_phase_enum)
4892 einfo (_("%F%S: non constant or forward reference"
4893 " address expression for section %s\n"),
4897 if (os->bfd_section == NULL)
4898 /* This section was removed or never actually created. */
4901 /* If this is a COFF shared library section, use the size and
4902 address from the input section. FIXME: This is COFF
4903 specific; it would be cleaner if there were some other way
4904 to do this, but nothing simple comes to mind. */
4905 if (((bfd_get_flavour (link_info.output_bfd)
4906 == bfd_target_ecoff_flavour)
4907 || (bfd_get_flavour (link_info.output_bfd)
4908 == bfd_target_coff_flavour))
4909 && (os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
4913 if (os->children.head == NULL
4914 || os->children.head->header.next != NULL
4915 || (os->children.head->header.type
4916 != lang_input_section_enum))
4917 einfo (_("%P%X: Internal error on COFF shared library"
4918 " section %s\n"), os->name);
4920 input = os->children.head->input_section.section;
4921 bfd_set_section_vma (os->bfd_section->owner,
4923 bfd_section_vma (input->owner, input));
4924 os->bfd_section->size = input->size;
4929 if (bfd_is_abs_section (os->bfd_section))
4931 /* No matter what happens, an abs section starts at zero. */
4932 ASSERT (os->bfd_section->vma == 0);
4936 if (os->addr_tree == NULL)
4938 /* No address specified for this section, get one
4939 from the region specification. */
4940 if (os->region == NULL
4941 || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))
4942 && os->region->name_list.name[0] == '*'
4943 && strcmp (os->region->name_list.name,
4944 DEFAULT_MEMORY_REGION) == 0))
4946 os->region = lang_memory_default (os->bfd_section);
4949 /* If a loadable section is using the default memory
4950 region, and some non default memory regions were
4951 defined, issue an error message. */
4953 && !IGNORE_SECTION (os->bfd_section)
4954 && ! link_info.relocatable
4956 && strcmp (os->region->name_list.name,
4957 DEFAULT_MEMORY_REGION) == 0
4958 && lang_memory_region_list != NULL
4959 && (strcmp (lang_memory_region_list->name_list.name,
4960 DEFAULT_MEMORY_REGION) != 0
4961 || lang_memory_region_list->next != NULL)
4962 && expld.phase != lang_mark_phase_enum)
4964 /* By default this is an error rather than just a
4965 warning because if we allocate the section to the
4966 default memory region we can end up creating an
4967 excessively large binary, or even seg faulting when
4968 attempting to perform a negative seek. See
4969 sources.redhat.com/ml/binutils/2003-04/msg00423.html
4970 for an example of this. This behaviour can be
4971 overridden by the using the --no-check-sections
4973 if (command_line.check_section_addresses)
4974 einfo (_("%P%F: error: no memory region specified"
4975 " for loadable section `%s'\n"),
4976 bfd_get_section_name (link_info.output_bfd,
4979 einfo (_("%P: warning: no memory region specified"
4980 " for loadable section `%s'\n"),
4981 bfd_get_section_name (link_info.output_bfd,
4985 newdot = os->region->current;
4986 section_alignment = os->bfd_section->alignment_power;
4989 section_alignment = os->section_alignment;
4991 /* Align to what the section needs. */
4992 if (section_alignment > 0)
4994 bfd_vma savedot = newdot;
4995 newdot = align_power (newdot, section_alignment);
4997 if (newdot != savedot
4998 && (config.warn_section_align
4999 || os->addr_tree != NULL)
5000 && expld.phase != lang_mark_phase_enum)
5001 einfo (_("%P: warning: changing start of section"
5002 " %s by %lu bytes\n"),
5003 os->name, (unsigned long) (newdot - savedot));
5006 bfd_set_section_vma (0, os->bfd_section, newdot);
5008 os->bfd_section->output_offset = 0;
5011 lang_size_sections_1 (&os->children.head, os,
5012 os->fill, newdot, relax, check_regions);
5014 os->processed_vma = TRUE;
5016 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
5017 /* Except for some special linker created sections,
5018 no output section should change from zero size
5019 after strip_excluded_output_sections. A non-zero
5020 size on an ignored section indicates that some
5021 input section was not sized early enough. */
5022 ASSERT (os->bfd_section->size == 0);
5025 dot = os->bfd_section->vma;
5027 /* Put the section within the requested block size, or
5028 align at the block boundary. */
5030 + TO_ADDR (os->bfd_section->size)
5031 + os->block_value - 1)
5032 & - (bfd_vma) os->block_value);
5034 os->bfd_section->size = TO_SIZE (after - os->bfd_section->vma);
5037 /* Set section lma. */
5040 r = lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
5044 bfd_vma lma = exp_get_abs_int (os->load_base, 0, "load base");
5045 os->bfd_section->lma = lma;
5047 else if (os->lma_region != NULL)
5049 bfd_vma lma = os->lma_region->current;
5051 if (section_alignment > 0)
5052 lma = align_power (lma, section_alignment);
5053 os->bfd_section->lma = lma;
5055 else if (r->last_os != NULL
5056 && (os->bfd_section->flags & SEC_ALLOC) != 0)
5061 last = r->last_os->output_section_statement.bfd_section;
5063 /* A backwards move of dot should be accompanied by
5064 an explicit assignment to the section LMA (ie.
5065 os->load_base set) because backwards moves can
5066 create overlapping LMAs. */
5068 && os->bfd_section->size != 0
5069 && dot + os->bfd_section->size <= last->vma)
5071 /* If dot moved backwards then leave lma equal to
5072 vma. This is the old default lma, which might
5073 just happen to work when the backwards move is
5074 sufficiently large. Nag if this changes anything,
5075 so people can fix their linker scripts. */
5077 if (last->vma != last->lma)
5078 einfo (_("%P: warning: dot moved backwards before `%s'\n"),
5083 /* If this is an overlay, set the current lma to that
5084 at the end of the previous section. */
5085 if (os->sectype == overlay_section)
5086 lma = last->lma + last->size;
5088 /* Otherwise, keep the same lma to vma relationship
5089 as the previous section. */
5091 lma = dot + last->lma - last->vma;
5093 if (section_alignment > 0)
5094 lma = align_power (lma, section_alignment);
5095 os->bfd_section->lma = lma;
5098 os->processed_lma = TRUE;
5100 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
5103 /* Keep track of normal sections using the default
5104 lma region. We use this to set the lma for
5105 following sections. Overlays or other linker
5106 script assignment to lma might mean that the
5107 default lma == vma is incorrect.
5108 To avoid warnings about dot moving backwards when using
5109 -Ttext, don't start tracking sections until we find one
5110 of non-zero size or with lma set differently to vma. */
5111 if (((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5112 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0)
5113 && (os->bfd_section->flags & SEC_ALLOC) != 0
5114 && (os->bfd_section->size != 0
5115 || (r->last_os == NULL
5116 && os->bfd_section->vma != os->bfd_section->lma)
5117 || (r->last_os != NULL
5118 && dot >= (r->last_os->output_section_statement
5119 .bfd_section->vma)))
5120 && os->lma_region == NULL
5121 && !link_info.relocatable)
5124 /* .tbss sections effectively have zero size. */
5125 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5126 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5127 || link_info.relocatable)
5128 dot += TO_ADDR (os->bfd_section->size);
5130 if (os->update_dot_tree != 0)
5131 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5133 /* Update dot in the region ?
5134 We only do this if the section is going to be allocated,
5135 since unallocated sections do not contribute to the region's
5136 overall size in memory. */
5137 if (os->region != NULL
5138 && (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD)))
5140 os->region->current = dot;
5143 /* Make sure the new address is within the region. */
5144 os_region_check (os, os->region, os->addr_tree,
5145 os->bfd_section->vma);
5147 if (os->lma_region != NULL && os->lma_region != os->region
5148 && (os->bfd_section->flags & SEC_LOAD))
5150 os->lma_region->current
5151 = os->bfd_section->lma + TO_ADDR (os->bfd_section->size);
5154 os_region_check (os, os->lma_region, NULL,
5155 os->bfd_section->lma);
5161 case lang_constructors_statement_enum:
5162 dot = lang_size_sections_1 (&constructor_list.head,
5163 output_section_statement,
5164 fill, dot, relax, check_regions);
5167 case lang_data_statement_enum:
5169 unsigned int size = 0;
5171 s->data_statement.output_offset =
5172 dot - output_section_statement->bfd_section->vma;
5173 s->data_statement.output_section =
5174 output_section_statement->bfd_section;
5176 /* We might refer to provided symbols in the expression, and
5177 need to mark them as needed. */
5178 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5180 switch (s->data_statement.type)
5198 if (size < TO_SIZE ((unsigned) 1))
5199 size = TO_SIZE ((unsigned) 1);
5200 dot += TO_ADDR (size);
5201 output_section_statement->bfd_section->size += size;
5205 case lang_reloc_statement_enum:
5209 s->reloc_statement.output_offset =
5210 dot - output_section_statement->bfd_section->vma;
5211 s->reloc_statement.output_section =
5212 output_section_statement->bfd_section;
5213 size = bfd_get_reloc_size (s->reloc_statement.howto);
5214 dot += TO_ADDR (size);
5215 output_section_statement->bfd_section->size += size;
5219 case lang_wild_statement_enum:
5220 dot = lang_size_sections_1 (&s->wild_statement.children.head,
5221 output_section_statement,
5222 fill, dot, relax, check_regions);
5225 case lang_object_symbols_statement_enum:
5226 link_info.create_object_symbols_section =
5227 output_section_statement->bfd_section;
5230 case lang_output_statement_enum:
5231 case lang_target_statement_enum:
5234 case lang_input_section_enum:
5238 i = s->input_section.section;
5243 if (! bfd_relax_section (i->owner, i, &link_info, &again))
5244 einfo (_("%P%F: can't relax section: %E\n"));
5248 dot = size_input_section (prev, output_section_statement,
5249 output_section_statement->fill, dot);
5253 case lang_input_statement_enum:
5256 case lang_fill_statement_enum:
5257 s->fill_statement.output_section =
5258 output_section_statement->bfd_section;
5260 fill = s->fill_statement.fill;
5263 case lang_assignment_statement_enum:
5265 bfd_vma newdot = dot;
5266 etree_type *tree = s->assignment_statement.exp;
5268 expld.dataseg.relro = exp_dataseg_relro_none;
5270 exp_fold_tree (tree,
5271 output_section_statement->bfd_section,
5274 if (expld.dataseg.relro == exp_dataseg_relro_start)
5276 if (!expld.dataseg.relro_start_stat)
5277 expld.dataseg.relro_start_stat = s;
5280 ASSERT (expld.dataseg.relro_start_stat == s);
5283 else if (expld.dataseg.relro == exp_dataseg_relro_end)
5285 if (!expld.dataseg.relro_end_stat)
5286 expld.dataseg.relro_end_stat = s;
5289 ASSERT (expld.dataseg.relro_end_stat == s);
5292 expld.dataseg.relro = exp_dataseg_relro_none;
5294 /* This symbol is relative to this section. */
5295 if ((tree->type.node_class == etree_provided
5296 || tree->type.node_class == etree_assign)
5297 && (tree->assign.dst [0] != '.'
5298 || tree->assign.dst [1] != '\0'))
5299 output_section_statement->section_relative_symbol = 1;
5301 if (!output_section_statement->ignored)
5303 if (output_section_statement == abs_output_section)
5305 /* If we don't have an output section, then just adjust
5306 the default memory address. */
5307 lang_memory_region_lookup (DEFAULT_MEMORY_REGION,
5308 FALSE)->current = newdot;
5310 else if (newdot != dot)
5312 /* Insert a pad after this statement. We can't
5313 put the pad before when relaxing, in case the
5314 assignment references dot. */
5315 insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
5316 output_section_statement->bfd_section, dot);
5318 /* Don't neuter the pad below when relaxing. */
5321 /* If dot is advanced, this implies that the section
5322 should have space allocated to it, unless the
5323 user has explicitly stated that the section
5324 should not be allocated. */
5325 if (output_section_statement->sectype != noalloc_section
5326 && (output_section_statement->sectype != noload_section
5327 || (bfd_get_flavour (link_info.output_bfd)
5328 == bfd_target_elf_flavour)))
5329 output_section_statement->bfd_section->flags |= SEC_ALLOC;
5336 case lang_padding_statement_enum:
5337 /* If this is the first time lang_size_sections is called,
5338 we won't have any padding statements. If this is the
5339 second or later passes when relaxing, we should allow
5340 padding to shrink. If padding is needed on this pass, it
5341 will be added back in. */
5342 s->padding_statement.size = 0;
5344 /* Make sure output_offset is valid. If relaxation shrinks
5345 the section and this pad isn't needed, it's possible to
5346 have output_offset larger than the final size of the
5347 section. bfd_set_section_contents will complain even for
5348 a pad size of zero. */
5349 s->padding_statement.output_offset
5350 = dot - output_section_statement->bfd_section->vma;
5353 case lang_group_statement_enum:
5354 dot = lang_size_sections_1 (&s->group_statement.children.head,
5355 output_section_statement,
5356 fill, dot, relax, check_regions);
5359 case lang_insert_statement_enum:
5362 /* We can only get here when relaxing is turned on. */
5363 case lang_address_statement_enum:
5370 prev = &s->header.next;
5375 /* Callback routine that is used in _bfd_elf_map_sections_to_segments.
5376 The BFD library has set NEW_SEGMENT to TRUE iff it thinks that
5377 CURRENT_SECTION and PREVIOUS_SECTION ought to be placed into different
5378 segments. We are allowed an opportunity to override this decision. */
5381 ldlang_override_segment_assignment (struct bfd_link_info * info ATTRIBUTE_UNUSED,
5382 bfd * abfd ATTRIBUTE_UNUSED,
5383 asection * current_section,
5384 asection * previous_section,
5385 bfd_boolean new_segment)
5387 lang_output_section_statement_type * cur;
5388 lang_output_section_statement_type * prev;
5390 /* The checks below are only necessary when the BFD library has decided
5391 that the two sections ought to be placed into the same segment. */
5395 /* Paranoia checks. */
5396 if (current_section == NULL || previous_section == NULL)
5399 /* Find the memory regions associated with the two sections.
5400 We call lang_output_section_find() here rather than scanning the list
5401 of output sections looking for a matching section pointer because if
5402 we have a large number of sections then a hash lookup is faster. */
5403 cur = lang_output_section_find (current_section->name);
5404 prev = lang_output_section_find (previous_section->name);
5406 /* More paranoia. */
5407 if (cur == NULL || prev == NULL)
5410 /* If the regions are different then force the sections to live in
5411 different segments. See the email thread starting at the following
5412 URL for the reasons why this is necessary:
5413 http://sourceware.org/ml/binutils/2007-02/msg00216.html */
5414 return cur->region != prev->region;
5418 one_lang_size_sections_pass (bfd_boolean *relax, bfd_boolean check_regions)
5420 lang_statement_iteration++;
5421 lang_size_sections_1 (&statement_list.head, abs_output_section,
5422 0, 0, relax, check_regions);
5426 lang_size_sections (bfd_boolean *relax, bfd_boolean check_regions)
5428 expld.phase = lang_allocating_phase_enum;
5429 expld.dataseg.phase = exp_dataseg_none;
5431 one_lang_size_sections_pass (relax, check_regions);
5432 if (expld.dataseg.phase == exp_dataseg_end_seen
5433 && link_info.relro && expld.dataseg.relro_end)
5435 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
5436 to put expld.dataseg.relro on a (common) page boundary. */
5437 bfd_vma min_base, old_base, relro_end, maxpage;
5439 expld.dataseg.phase = exp_dataseg_relro_adjust;
5440 maxpage = expld.dataseg.maxpagesize;
5441 /* MIN_BASE is the absolute minimum address we are allowed to start the
5442 read-write segment (byte before will be mapped read-only). */
5443 min_base = (expld.dataseg.min_base + maxpage - 1) & ~(maxpage - 1);
5444 /* OLD_BASE is the address for a feasible minimum address which will
5445 still not cause a data overlap inside MAXPAGE causing file offset skip
5447 old_base = expld.dataseg.base;
5448 expld.dataseg.base += (-expld.dataseg.relro_end
5449 & (expld.dataseg.pagesize - 1));
5450 /* Compute the expected PT_GNU_RELRO segment end. */
5451 relro_end = ((expld.dataseg.relro_end + expld.dataseg.pagesize - 1)
5452 & ~(expld.dataseg.pagesize - 1));
5453 if (min_base + maxpage < expld.dataseg.base)
5455 expld.dataseg.base -= maxpage;
5456 relro_end -= maxpage;
5458 lang_reset_memory_regions ();
5459 one_lang_size_sections_pass (relax, check_regions);
5460 if (expld.dataseg.relro_end > relro_end)
5462 /* The alignment of sections between DATA_SEGMENT_ALIGN
5463 and DATA_SEGMENT_RELRO_END caused huge padding to be
5464 inserted at DATA_SEGMENT_RELRO_END. Try to start a bit lower so
5465 that the section alignments will fit in. */
5467 unsigned int max_alignment_power = 0;
5469 /* Find maximum alignment power of sections between
5470 DATA_SEGMENT_ALIGN and DATA_SEGMENT_RELRO_END. */
5471 for (sec = link_info.output_bfd->sections; sec; sec = sec->next)
5472 if (sec->vma >= expld.dataseg.base
5473 && sec->vma < expld.dataseg.relro_end
5474 && sec->alignment_power > max_alignment_power)
5475 max_alignment_power = sec->alignment_power;
5477 if (((bfd_vma) 1 << max_alignment_power) < expld.dataseg.pagesize)
5479 if (expld.dataseg.base - (1 << max_alignment_power) < old_base)
5480 expld.dataseg.base += expld.dataseg.pagesize;
5481 expld.dataseg.base -= (1 << max_alignment_power);
5482 lang_reset_memory_regions ();
5483 one_lang_size_sections_pass (relax, check_regions);
5486 link_info.relro_start = expld.dataseg.base;
5487 link_info.relro_end = expld.dataseg.relro_end;
5489 else if (expld.dataseg.phase == exp_dataseg_end_seen)
5491 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
5492 a page could be saved in the data segment. */
5493 bfd_vma first, last;
5495 first = -expld.dataseg.base & (expld.dataseg.pagesize - 1);
5496 last = expld.dataseg.end & (expld.dataseg.pagesize - 1);
5498 && ((expld.dataseg.base & ~(expld.dataseg.pagesize - 1))
5499 != (expld.dataseg.end & ~(expld.dataseg.pagesize - 1)))
5500 && first + last <= expld.dataseg.pagesize)
5502 expld.dataseg.phase = exp_dataseg_adjust;
5503 lang_reset_memory_regions ();
5504 one_lang_size_sections_pass (relax, check_regions);
5507 expld.dataseg.phase = exp_dataseg_done;
5510 expld.dataseg.phase = exp_dataseg_done;
5513 /* Worker function for lang_do_assignments. Recursiveness goes here. */
5516 lang_do_assignments_1 (lang_statement_union_type *s,
5517 lang_output_section_statement_type *current_os,
5521 for (; s != NULL; s = s->header.next)
5523 switch (s->header.type)
5525 case lang_constructors_statement_enum:
5526 dot = lang_do_assignments_1 (constructor_list.head,
5527 current_os, fill, dot);
5530 case lang_output_section_statement_enum:
5532 lang_output_section_statement_type *os;
5534 os = &(s->output_section_statement);
5535 if (os->bfd_section != NULL && !os->ignored)
5537 dot = os->bfd_section->vma;
5539 lang_do_assignments_1 (os->children.head, os, os->fill, dot);
5541 /* .tbss sections effectively have zero size. */
5542 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5543 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5544 || link_info.relocatable)
5545 dot += TO_ADDR (os->bfd_section->size);
5547 if (os->update_dot_tree != NULL)
5548 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5553 case lang_wild_statement_enum:
5555 dot = lang_do_assignments_1 (s->wild_statement.children.head,
5556 current_os, fill, dot);
5559 case lang_object_symbols_statement_enum:
5560 case lang_output_statement_enum:
5561 case lang_target_statement_enum:
5564 case lang_data_statement_enum:
5565 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5566 if (expld.result.valid_p)
5568 s->data_statement.value = expld.result.value;
5569 if (expld.result.section != NULL)
5570 s->data_statement.value += expld.result.section->vma;
5573 einfo (_("%F%P: invalid data statement\n"));
5576 switch (s->data_statement.type)
5594 if (size < TO_SIZE ((unsigned) 1))
5595 size = TO_SIZE ((unsigned) 1);
5596 dot += TO_ADDR (size);
5600 case lang_reloc_statement_enum:
5601 exp_fold_tree (s->reloc_statement.addend_exp,
5602 bfd_abs_section_ptr, &dot);
5603 if (expld.result.valid_p)
5604 s->reloc_statement.addend_value = expld.result.value;
5606 einfo (_("%F%P: invalid reloc statement\n"));
5607 dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
5610 case lang_input_section_enum:
5612 asection *in = s->input_section.section;
5614 if ((in->flags & SEC_EXCLUDE) == 0)
5615 dot += TO_ADDR (in->size);
5619 case lang_input_statement_enum:
5622 case lang_fill_statement_enum:
5623 fill = s->fill_statement.fill;
5626 case lang_assignment_statement_enum:
5627 exp_fold_tree (s->assignment_statement.exp,
5628 current_os->bfd_section,
5632 case lang_padding_statement_enum:
5633 dot += TO_ADDR (s->padding_statement.size);
5636 case lang_group_statement_enum:
5637 dot = lang_do_assignments_1 (s->group_statement.children.head,
5638 current_os, fill, dot);
5641 case lang_insert_statement_enum:
5644 case lang_address_statement_enum:
5656 lang_do_assignments (lang_phase_type phase)
5658 expld.phase = phase;
5659 lang_statement_iteration++;
5660 lang_do_assignments_1 (statement_list.head, abs_output_section, NULL, 0);
5663 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
5664 operator .startof. (section_name), it produces an undefined symbol
5665 .startof.section_name. Similarly, when it sees
5666 .sizeof. (section_name), it produces an undefined symbol
5667 .sizeof.section_name. For all the output sections, we look for
5668 such symbols, and set them to the correct value. */
5671 lang_set_startof (void)
5675 if (link_info.relocatable)
5678 for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
5680 const char *secname;
5682 struct bfd_link_hash_entry *h;
5684 secname = bfd_get_section_name (link_info.output_bfd, s);
5685 buf = (char *) xmalloc (10 + strlen (secname));
5687 sprintf (buf, ".startof.%s", secname);
5688 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5689 if (h != NULL && h->type == bfd_link_hash_undefined)
5691 h->type = bfd_link_hash_defined;
5692 h->u.def.value = bfd_get_section_vma (link_info.output_bfd, s);
5693 h->u.def.section = bfd_abs_section_ptr;
5696 sprintf (buf, ".sizeof.%s", secname);
5697 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5698 if (h != NULL && h->type == bfd_link_hash_undefined)
5700 h->type = bfd_link_hash_defined;
5701 h->u.def.value = TO_ADDR (s->size);
5702 h->u.def.section = bfd_abs_section_ptr;
5712 struct bfd_link_hash_entry *h;
5715 if ((link_info.relocatable && !link_info.gc_sections)
5716 || (link_info.shared && !link_info.executable))
5717 warn = entry_from_cmdline;
5721 /* Force the user to specify a root when generating a relocatable with
5723 if (link_info.gc_sections && link_info.relocatable
5724 && !(entry_from_cmdline || undef_from_cmdline))
5725 einfo (_("%P%F: gc-sections requires either an entry or "
5726 "an undefined symbol\n"));
5728 if (entry_symbol.name == NULL)
5730 /* No entry has been specified. Look for the default entry, but
5731 don't warn if we don't find it. */
5732 entry_symbol.name = entry_symbol_default;
5736 h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
5737 FALSE, FALSE, TRUE);
5739 && (h->type == bfd_link_hash_defined
5740 || h->type == bfd_link_hash_defweak)
5741 && h->u.def.section->output_section != NULL)
5745 val = (h->u.def.value
5746 + bfd_get_section_vma (link_info.output_bfd,
5747 h->u.def.section->output_section)
5748 + h->u.def.section->output_offset);
5749 if (! bfd_set_start_address (link_info.output_bfd, val))
5750 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
5757 /* We couldn't find the entry symbol. Try parsing it as a
5759 val = bfd_scan_vma (entry_symbol.name, &send, 0);
5762 if (! bfd_set_start_address (link_info.output_bfd, val))
5763 einfo (_("%P%F: can't set start address\n"));
5769 /* Can't find the entry symbol, and it's not a number. Use
5770 the first address in the text section. */
5771 ts = bfd_get_section_by_name (link_info.output_bfd, entry_section);
5775 einfo (_("%P: warning: cannot find entry symbol %s;"
5776 " defaulting to %V\n"),
5778 bfd_get_section_vma (link_info.output_bfd, ts));
5779 if (!(bfd_set_start_address
5780 (link_info.output_bfd,
5781 bfd_get_section_vma (link_info.output_bfd, ts))))
5782 einfo (_("%P%F: can't set start address\n"));
5787 einfo (_("%P: warning: cannot find entry symbol %s;"
5788 " not setting start address\n"),
5794 /* Don't bfd_hash_table_free (&lang_definedness_table);
5795 map file output may result in a call of lang_track_definedness. */
5798 /* This is a small function used when we want to ignore errors from
5802 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
5804 /* Don't do anything. */
5807 /* Check that the architecture of all the input files is compatible
5808 with the output file. Also call the backend to let it do any
5809 other checking that is needed. */
5814 lang_statement_union_type *file;
5816 const bfd_arch_info_type *compatible;
5818 for (file = file_chain.head; file != NULL; file = file->input_statement.next)
5820 #ifdef ENABLE_PLUGINS
5821 /* Don't check format of files claimed by plugin. */
5822 if (file->input_statement.claimed)
5824 #endif /* ENABLE_PLUGINS */
5825 input_bfd = file->input_statement.the_bfd;
5827 = bfd_arch_get_compatible (input_bfd, link_info.output_bfd,
5828 command_line.accept_unknown_input_arch);
5830 /* In general it is not possible to perform a relocatable
5831 link between differing object formats when the input
5832 file has relocations, because the relocations in the
5833 input format may not have equivalent representations in
5834 the output format (and besides BFD does not translate
5835 relocs for other link purposes than a final link). */
5836 if ((link_info.relocatable || link_info.emitrelocations)
5837 && (compatible == NULL
5838 || (bfd_get_flavour (input_bfd)
5839 != bfd_get_flavour (link_info.output_bfd)))
5840 && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
5842 einfo (_("%P%F: Relocatable linking with relocations from"
5843 " format %s (%B) to format %s (%B) is not supported\n"),
5844 bfd_get_target (input_bfd), input_bfd,
5845 bfd_get_target (link_info.output_bfd), link_info.output_bfd);
5846 /* einfo with %F exits. */
5849 if (compatible == NULL)
5851 if (command_line.warn_mismatch)
5852 einfo (_("%P%X: %s architecture of input file `%B'"
5853 " is incompatible with %s output\n"),
5854 bfd_printable_name (input_bfd), input_bfd,
5855 bfd_printable_name (link_info.output_bfd));
5857 else if (bfd_count_sections (input_bfd))
5859 /* If the input bfd has no contents, it shouldn't set the
5860 private data of the output bfd. */
5862 bfd_error_handler_type pfn = NULL;
5864 /* If we aren't supposed to warn about mismatched input
5865 files, temporarily set the BFD error handler to a
5866 function which will do nothing. We still want to call
5867 bfd_merge_private_bfd_data, since it may set up
5868 information which is needed in the output file. */
5869 if (! command_line.warn_mismatch)
5870 pfn = bfd_set_error_handler (ignore_bfd_errors);
5871 if (! bfd_merge_private_bfd_data (input_bfd, link_info.output_bfd))
5873 if (command_line.warn_mismatch)
5874 einfo (_("%P%X: failed to merge target specific data"
5875 " of file %B\n"), input_bfd);
5877 if (! command_line.warn_mismatch)
5878 bfd_set_error_handler (pfn);
5883 /* Look through all the global common symbols and attach them to the
5884 correct section. The -sort-common command line switch may be used
5885 to roughly sort the entries by alignment. */
5890 if (command_line.inhibit_common_definition)
5892 if (link_info.relocatable
5893 && ! command_line.force_common_definition)
5896 if (! config.sort_common)
5897 bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
5902 if (config.sort_common == sort_descending)
5904 for (power = 4; power > 0; power--)
5905 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5908 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5912 for (power = 0; power <= 4; power++)
5913 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5916 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5921 /* Place one common symbol in the correct section. */
5924 lang_one_common (struct bfd_link_hash_entry *h, void *info)
5926 unsigned int power_of_two;
5930 if (h->type != bfd_link_hash_common)
5934 power_of_two = h->u.c.p->alignment_power;
5936 if (config.sort_common == sort_descending
5937 && power_of_two < *(unsigned int *) info)
5939 else if (config.sort_common == sort_ascending
5940 && power_of_two > *(unsigned int *) info)
5943 section = h->u.c.p->section;
5944 if (!bfd_define_common_symbol (link_info.output_bfd, &link_info, h))
5945 einfo (_("%P%F: Could not define common symbol `%T': %E\n"),
5948 if (config.map_file != NULL)
5950 static bfd_boolean header_printed;
5955 if (! header_printed)
5957 minfo (_("\nAllocating common symbols\n"));
5958 minfo (_("Common symbol size file\n\n"));
5959 header_printed = TRUE;
5962 name = bfd_demangle (link_info.output_bfd, h->root.string,
5963 DMGL_ANSI | DMGL_PARAMS);
5966 minfo ("%s", h->root.string);
5967 len = strlen (h->root.string);
5972 len = strlen (name);
5988 if (size <= 0xffffffff)
5989 sprintf (buf, "%lx", (unsigned long) size);
5991 sprintf_vma (buf, size);
6001 minfo ("%B\n", section->owner);
6007 /* Run through the input files and ensure that every input section has
6008 somewhere to go. If one is found without a destination then create
6009 an input request and place it into the statement tree. */
6012 lang_place_orphans (void)
6014 LANG_FOR_EACH_INPUT_STATEMENT (file)
6018 for (s = file->the_bfd->sections; s != NULL; s = s->next)
6020 if (s->output_section == NULL)
6022 /* This section of the file is not attached, root
6023 around for a sensible place for it to go. */
6025 if (file->just_syms_flag)
6026 bfd_link_just_syms (file->the_bfd, s, &link_info);
6027 else if ((s->flags & SEC_EXCLUDE) != 0)
6028 s->output_section = bfd_abs_section_ptr;
6029 else if (strcmp (s->name, "COMMON") == 0)
6031 /* This is a lonely common section which must have
6032 come from an archive. We attach to the section
6033 with the wildcard. */
6034 if (! link_info.relocatable
6035 || command_line.force_common_definition)
6037 if (default_common_section == NULL)
6038 default_common_section
6039 = lang_output_section_statement_lookup (".bss", 0,
6041 lang_add_section (&default_common_section->children, s,
6042 default_common_section);
6047 const char *name = s->name;
6050 if (config.unique_orphan_sections
6051 || unique_section_p (s, NULL))
6052 constraint = SPECIAL;
6054 if (!ldemul_place_orphan (s, name, constraint))
6056 lang_output_section_statement_type *os;
6057 os = lang_output_section_statement_lookup (name,
6060 if (os->addr_tree == NULL
6061 && (link_info.relocatable
6062 || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0))
6063 os->addr_tree = exp_intop (0);
6064 lang_add_section (&os->children, s, os);
6073 lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
6075 flagword *ptr_flags;
6077 ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
6083 *ptr_flags |= SEC_ALLOC;
6087 *ptr_flags |= SEC_READONLY;
6091 *ptr_flags |= SEC_DATA;
6095 *ptr_flags |= SEC_CODE;
6100 *ptr_flags |= SEC_LOAD;
6104 einfo (_("%P%F: invalid syntax in flags\n"));
6111 /* Call a function on each input file. This function will be called
6112 on an archive, but not on the elements. */
6115 lang_for_each_input_file (void (*func) (lang_input_statement_type *))
6117 lang_input_statement_type *f;
6119 for (f = (lang_input_statement_type *) input_file_chain.head;
6121 f = (lang_input_statement_type *) f->next_real_file)
6125 /* Call a function on each file. The function will be called on all
6126 the elements of an archive which are included in the link, but will
6127 not be called on the archive file itself. */
6130 lang_for_each_file (void (*func) (lang_input_statement_type *))
6132 LANG_FOR_EACH_INPUT_STATEMENT (f)
6139 ldlang_add_file (lang_input_statement_type *entry)
6141 lang_statement_append (&file_chain,
6142 (lang_statement_union_type *) entry,
6145 /* The BFD linker needs to have a list of all input BFDs involved in
6147 ASSERT (entry->the_bfd->link_next == NULL);
6148 ASSERT (entry->the_bfd != link_info.output_bfd);
6150 *link_info.input_bfds_tail = entry->the_bfd;
6151 link_info.input_bfds_tail = &entry->the_bfd->link_next;
6152 entry->the_bfd->usrdata = entry;
6153 bfd_set_gp_size (entry->the_bfd, g_switch_value);
6155 /* Look through the sections and check for any which should not be
6156 included in the link. We need to do this now, so that we can
6157 notice when the backend linker tries to report multiple
6158 definition errors for symbols which are in sections we aren't
6159 going to link. FIXME: It might be better to entirely ignore
6160 symbols which are defined in sections which are going to be
6161 discarded. This would require modifying the backend linker for
6162 each backend which might set the SEC_LINK_ONCE flag. If we do
6163 this, we should probably handle SEC_EXCLUDE in the same way. */
6165 bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
6169 lang_add_output (const char *name, int from_script)
6171 /* Make -o on command line override OUTPUT in script. */
6172 if (!had_output_filename || !from_script)
6174 output_filename = name;
6175 had_output_filename = TRUE;
6179 static lang_output_section_statement_type *current_section;
6190 for (l = 0; l < 32; l++)
6192 if (i >= (unsigned int) x)
6200 lang_output_section_statement_type *
6201 lang_enter_output_section_statement (const char *output_section_statement_name,
6202 etree_type *address_exp,
6203 enum section_type sectype,
6205 etree_type *subalign,
6209 lang_output_section_statement_type *os;
6211 os = lang_output_section_statement_lookup (output_section_statement_name,
6213 current_section = os;
6215 if (os->addr_tree == NULL)
6217 os->addr_tree = address_exp;
6219 os->sectype = sectype;
6220 if (sectype != noload_section)
6221 os->flags = SEC_NO_FLAGS;
6223 os->flags = SEC_NEVER_LOAD;
6224 os->block_value = 1;
6226 /* Make next things chain into subchain of this. */
6227 push_stat_ptr (&os->children);
6229 os->subsection_alignment =
6230 topower (exp_get_value_int (subalign, -1, "subsection alignment"));
6231 os->section_alignment =
6232 topower (exp_get_value_int (align, -1, "section alignment"));
6234 os->load_base = ebase;
6241 lang_output_statement_type *new_stmt;
6243 new_stmt = new_stat (lang_output_statement, stat_ptr);
6244 new_stmt->name = output_filename;
6248 /* Reset the current counters in the regions. */
6251 lang_reset_memory_regions (void)
6253 lang_memory_region_type *p = lang_memory_region_list;
6255 lang_output_section_statement_type *os;
6257 for (p = lang_memory_region_list; p != NULL; p = p->next)
6259 p->current = p->origin;
6263 for (os = &lang_output_section_statement.head->output_section_statement;
6267 os->processed_vma = FALSE;
6268 os->processed_lma = FALSE;
6271 for (o = link_info.output_bfd->sections; o != NULL; o = o->next)
6273 /* Save the last size for possible use by bfd_relax_section. */
6274 o->rawsize = o->size;
6279 /* Worker for lang_gc_sections_1. */
6282 gc_section_callback (lang_wild_statement_type *ptr,
6283 struct wildcard_list *sec ATTRIBUTE_UNUSED,
6285 lang_input_statement_type *file ATTRIBUTE_UNUSED,
6286 void *data ATTRIBUTE_UNUSED)
6288 /* If the wild pattern was marked KEEP, the member sections
6289 should be as well. */
6290 if (ptr->keep_sections)
6291 section->flags |= SEC_KEEP;
6294 /* Iterate over sections marking them against GC. */
6297 lang_gc_sections_1 (lang_statement_union_type *s)
6299 for (; s != NULL; s = s->header.next)
6301 switch (s->header.type)
6303 case lang_wild_statement_enum:
6304 walk_wild (&s->wild_statement, gc_section_callback, NULL);
6306 case lang_constructors_statement_enum:
6307 lang_gc_sections_1 (constructor_list.head);
6309 case lang_output_section_statement_enum:
6310 lang_gc_sections_1 (s->output_section_statement.children.head);
6312 case lang_group_statement_enum:
6313 lang_gc_sections_1 (s->group_statement.children.head);
6322 lang_gc_sections (void)
6324 /* Keep all sections so marked in the link script. */
6326 lang_gc_sections_1 (statement_list.head);
6328 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
6329 the special case of debug info. (See bfd/stabs.c)
6330 Twiddle the flag here, to simplify later linker code. */
6331 if (link_info.relocatable)
6333 LANG_FOR_EACH_INPUT_STATEMENT (f)
6336 #ifdef ENABLE_PLUGINS
6340 for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next)
6341 if ((sec->flags & SEC_DEBUGGING) == 0)
6342 sec->flags &= ~SEC_EXCLUDE;
6346 if (link_info.gc_sections)
6347 bfd_gc_sections (link_info.output_bfd, &link_info);
6350 /* Worker for lang_find_relro_sections_1. */
6353 find_relro_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
6354 struct wildcard_list *sec ATTRIBUTE_UNUSED,
6356 lang_input_statement_type *file ATTRIBUTE_UNUSED,
6359 /* Discarded, excluded and ignored sections effectively have zero
6361 if (section->output_section != NULL
6362 && section->output_section->owner == link_info.output_bfd
6363 && (section->output_section->flags & SEC_EXCLUDE) == 0
6364 && !IGNORE_SECTION (section)
6365 && section->size != 0)
6367 bfd_boolean *has_relro_section = (bfd_boolean *) data;
6368 *has_relro_section = TRUE;
6372 /* Iterate over sections for relro sections. */
6375 lang_find_relro_sections_1 (lang_statement_union_type *s,
6376 bfd_boolean *has_relro_section)
6378 if (*has_relro_section)
6381 for (; s != NULL; s = s->header.next)
6383 if (s == expld.dataseg.relro_end_stat)
6386 switch (s->header.type)
6388 case lang_wild_statement_enum:
6389 walk_wild (&s->wild_statement,
6390 find_relro_section_callback,
6393 case lang_constructors_statement_enum:
6394 lang_find_relro_sections_1 (constructor_list.head,
6397 case lang_output_section_statement_enum:
6398 lang_find_relro_sections_1 (s->output_section_statement.children.head,
6401 case lang_group_statement_enum:
6402 lang_find_relro_sections_1 (s->group_statement.children.head,
6412 lang_find_relro_sections (void)
6414 bfd_boolean has_relro_section = FALSE;
6416 /* Check all sections in the link script. */
6418 lang_find_relro_sections_1 (expld.dataseg.relro_start_stat,
6419 &has_relro_section);
6421 if (!has_relro_section)
6422 link_info.relro = FALSE;
6425 /* Relax all sections until bfd_relax_section gives up. */
6428 lang_relax_sections (bfd_boolean need_layout)
6430 if (RELAXATION_ENABLED)
6432 /* We may need more than one relaxation pass. */
6433 int i = link_info.relax_pass;
6435 /* The backend can use it to determine the current pass. */
6436 link_info.relax_pass = 0;
6440 /* Keep relaxing until bfd_relax_section gives up. */
6441 bfd_boolean relax_again;
6443 link_info.relax_trip = -1;
6446 link_info.relax_trip++;
6448 /* Note: pe-dll.c does something like this also. If you find
6449 you need to change this code, you probably need to change
6450 pe-dll.c also. DJ */
6452 /* Do all the assignments with our current guesses as to
6454 lang_do_assignments (lang_assigning_phase_enum);
6456 /* We must do this after lang_do_assignments, because it uses
6458 lang_reset_memory_regions ();
6460 /* Perform another relax pass - this time we know where the
6461 globals are, so can make a better guess. */
6462 relax_again = FALSE;
6463 lang_size_sections (&relax_again, FALSE);
6465 while (relax_again);
6467 link_info.relax_pass++;
6474 /* Final extra sizing to report errors. */
6475 lang_do_assignments (lang_assigning_phase_enum);
6476 lang_reset_memory_regions ();
6477 lang_size_sections (NULL, TRUE);
6481 #ifdef ENABLE_PLUGINS
6482 /* Find the insert point for the plugin's replacement files. We
6483 place them after the first claimed real object file, or if the
6484 first claimed object is an archive member, after the last real
6485 object file immediately preceding the archive. In the event
6486 no objects have been claimed at all, we return the first dummy
6487 object file on the list as the insert point; that works, but
6488 the callee must be careful when relinking the file_chain as it
6489 is not actually on that chain, only the statement_list and the
6490 input_file list; in that case, the replacement files must be
6491 inserted at the head of the file_chain. */
6493 static lang_input_statement_type *
6494 find_replacements_insert_point (void)
6496 lang_input_statement_type *claim1, *lastobject;
6497 lastobject = &input_file_chain.head->input_statement;
6498 for (claim1 = &file_chain.head->input_statement;
6500 claim1 = &claim1->next->input_statement)
6502 if (claim1->claimed)
6503 return claim1->claim_archive ? lastobject : claim1;
6504 /* Update lastobject if this is a real object file. */
6505 if (claim1->the_bfd && (claim1->the_bfd->my_archive == NULL))
6506 lastobject = claim1;
6508 /* No files were claimed by the plugin. Choose the last object
6509 file found on the list (maybe the first, dummy entry) as the
6514 /* Insert SRCLIST into DESTLIST after given element by chaining
6515 on FIELD as the next-pointer. (Counterintuitively does not need
6516 a pointer to the actual after-node itself, just its chain field.) */
6519 lang_list_insert_after (lang_statement_list_type *destlist,
6520 lang_statement_list_type *srclist,
6521 lang_statement_union_type **field)
6523 *(srclist->tail) = *field;
6524 *field = srclist->head;
6525 if (destlist->tail == field)
6526 destlist->tail = srclist->tail;
6529 /* Detach new nodes added to DESTLIST since the time ORIGLIST
6530 was taken as a copy of it and leave them in ORIGLIST. */
6533 lang_list_remove_tail (lang_statement_list_type *destlist,
6534 lang_statement_list_type *origlist)
6536 union lang_statement_union **savetail;
6537 /* Check that ORIGLIST really is an earlier state of DESTLIST. */
6538 ASSERT (origlist->head == destlist->head);
6539 savetail = origlist->tail;
6540 origlist->head = *(savetail);
6541 origlist->tail = destlist->tail;
6542 destlist->tail = savetail;
6545 #endif /* ENABLE_PLUGINS */
6550 /* Finalize dynamic list. */
6551 if (link_info.dynamic_list)
6552 lang_finalize_version_expr_head (&link_info.dynamic_list->head);
6554 current_target = default_target;
6556 /* Open the output file. */
6557 lang_for_each_statement (ldlang_open_output);
6560 ldemul_create_output_section_statements ();
6562 /* Add to the hash table all undefineds on the command line. */
6563 lang_place_undefineds ();
6565 if (!bfd_section_already_linked_table_init ())
6566 einfo (_("%P%F: Failed to create hash table\n"));
6568 /* Create a bfd for each input file. */
6569 current_target = default_target;
6570 open_input_bfds (statement_list.head, OPEN_BFD_NORMAL);
6572 #ifdef ENABLE_PLUGINS
6573 if (plugin_active_plugins_p ())
6575 lang_statement_list_type added;
6576 lang_statement_list_type files, inputfiles;
6578 /* Now all files are read, let the plugin(s) decide if there
6579 are any more to be added to the link before we call the
6580 emulation's after_open hook. We create a private list of
6581 input statements for this purpose, which we will eventually
6582 insert into the global statment list after the first claimed
6585 /* We need to manipulate all three chains in synchrony. */
6587 inputfiles = input_file_chain;
6588 if (plugin_call_all_symbols_read ())
6589 einfo (_("%P%F: %s: plugin reported error after all symbols read\n"),
6590 plugin_error_plugin ());
6591 /* Open any newly added files, updating the file chains. */
6592 link_info.loading_lto_outputs = TRUE;
6593 open_input_bfds (added.head, OPEN_BFD_NORMAL);
6594 /* Restore the global list pointer now they have all been added. */
6595 lang_list_remove_tail (stat_ptr, &added);
6596 /* And detach the fresh ends of the file lists. */
6597 lang_list_remove_tail (&file_chain, &files);
6598 lang_list_remove_tail (&input_file_chain, &inputfiles);
6599 /* Were any new files added? */
6600 if (added.head != NULL)
6602 /* If so, we will insert them into the statement list immediately
6603 after the first input file that was claimed by the plugin. */
6604 plugin_insert = find_replacements_insert_point ();
6605 /* If a plugin adds input files without having claimed any, we
6606 don't really have a good idea where to place them. Just putting
6607 them at the start or end of the list is liable to leave them
6608 outside the crtbegin...crtend range. */
6609 ASSERT (plugin_insert != NULL);
6610 /* Splice the new statement list into the old one. */
6611 lang_list_insert_after (stat_ptr, &added,
6612 &plugin_insert->header.next);
6613 /* Likewise for the file chains. */
6614 lang_list_insert_after (&input_file_chain, &inputfiles,
6615 &plugin_insert->next_real_file);
6616 /* We must be careful when relinking file_chain; we may need to
6617 insert the new files at the head of the list if the insert
6618 point chosen is the dummy first input file. */
6619 if (plugin_insert->filename)
6620 lang_list_insert_after (&file_chain, &files, &plugin_insert->next);
6622 lang_list_insert_after (&file_chain, &files, &file_chain.head);
6624 /* Rescan archives in case new undefined symbols have appeared. */
6625 open_input_bfds (statement_list.head, OPEN_BFD_RESCAN);
6628 #endif /* ENABLE_PLUGINS */
6630 link_info.gc_sym_list = &entry_symbol;
6631 if (entry_symbol.name == NULL)
6632 link_info.gc_sym_list = ldlang_undef_chain_list_head;
6634 ldemul_after_open ();
6636 bfd_section_already_linked_table_free ();
6638 /* Make sure that we're not mixing architectures. We call this
6639 after all the input files have been opened, but before we do any
6640 other processing, so that any operations merge_private_bfd_data
6641 does on the output file will be known during the rest of the
6645 /* Handle .exports instead of a version script if we're told to do so. */
6646 if (command_line.version_exports_section)
6647 lang_do_version_exports_section ();
6649 /* Build all sets based on the information gathered from the input
6651 ldctor_build_sets ();
6653 /* Remove unreferenced sections if asked to. */
6654 lang_gc_sections ();
6656 /* Size up the common data. */
6659 /* Update wild statements. */
6660 update_wild_statements (statement_list.head);
6662 /* Run through the contours of the script and attach input sections
6663 to the correct output sections. */
6664 lang_statement_iteration++;
6665 map_input_to_output_sections (statement_list.head, NULL, NULL);
6667 process_insert_statements ();
6669 /* Find any sections not attached explicitly and handle them. */
6670 lang_place_orphans ();
6672 if (! link_info.relocatable)
6676 /* Merge SEC_MERGE sections. This has to be done after GC of
6677 sections, so that GCed sections are not merged, but before
6678 assigning dynamic symbols, since removing whole input sections
6680 bfd_merge_sections (link_info.output_bfd, &link_info);
6682 /* Look for a text section and set the readonly attribute in it. */
6683 found = bfd_get_section_by_name (link_info.output_bfd, ".text");
6687 if (config.text_read_only)
6688 found->flags |= SEC_READONLY;
6690 found->flags &= ~SEC_READONLY;
6694 /* Do anything special before sizing sections. This is where ELF
6695 and other back-ends size dynamic sections. */
6696 ldemul_before_allocation ();
6698 /* We must record the program headers before we try to fix the
6699 section positions, since they will affect SIZEOF_HEADERS. */
6700 lang_record_phdrs ();
6702 /* Check relro sections. */
6703 if (link_info.relro && ! link_info.relocatable)
6704 lang_find_relro_sections ();
6706 /* Size up the sections. */
6707 lang_size_sections (NULL, ! RELAXATION_ENABLED);
6709 /* See if anything special should be done now we know how big
6710 everything is. This is where relaxation is done. */
6711 ldemul_after_allocation ();
6713 /* Fix any .startof. or .sizeof. symbols. */
6714 lang_set_startof ();
6716 /* Do all the assignments, now that we know the final resting places
6717 of all the symbols. */
6718 lang_do_assignments (lang_final_phase_enum);
6722 /* Make sure that the section addresses make sense. */
6723 if (command_line.check_section_addresses)
6724 lang_check_section_addresses ();
6729 /* EXPORTED TO YACC */
6732 lang_add_wild (struct wildcard_spec *filespec,
6733 struct wildcard_list *section_list,
6734 bfd_boolean keep_sections)
6736 struct wildcard_list *curr, *next;
6737 lang_wild_statement_type *new_stmt;
6739 /* Reverse the list as the parser puts it back to front. */
6740 for (curr = section_list, section_list = NULL;
6742 section_list = curr, curr = next)
6744 if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
6745 placed_commons = TRUE;
6748 curr->next = section_list;
6751 if (filespec != NULL && filespec->name != NULL)
6753 if (strcmp (filespec->name, "*") == 0)
6754 filespec->name = NULL;
6755 else if (! wildcardp (filespec->name))
6756 lang_has_input_file = TRUE;
6759 new_stmt = new_stat (lang_wild_statement, stat_ptr);
6760 new_stmt->filename = NULL;
6761 new_stmt->filenames_sorted = FALSE;
6762 new_stmt->section_flag_list = NULL;
6763 if (filespec != NULL)
6765 new_stmt->filename = filespec->name;
6766 new_stmt->filenames_sorted = filespec->sorted == by_name;
6767 new_stmt->section_flag_list = filespec->section_flag_list;
6769 new_stmt->section_list = section_list;
6770 new_stmt->keep_sections = keep_sections;
6771 lang_list_init (&new_stmt->children);
6772 analyze_walk_wild_section_handler (new_stmt);
6776 lang_section_start (const char *name, etree_type *address,
6777 const segment_type *segment)
6779 lang_address_statement_type *ad;
6781 ad = new_stat (lang_address_statement, stat_ptr);
6782 ad->section_name = name;
6783 ad->address = address;
6784 ad->segment = segment;
6787 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
6788 because of a -e argument on the command line, or zero if this is
6789 called by ENTRY in a linker script. Command line arguments take
6793 lang_add_entry (const char *name, bfd_boolean cmdline)
6795 if (entry_symbol.name == NULL
6797 || ! entry_from_cmdline)
6799 entry_symbol.name = name;
6800 entry_from_cmdline = cmdline;
6804 /* Set the default start symbol to NAME. .em files should use this,
6805 not lang_add_entry, to override the use of "start" if neither the
6806 linker script nor the command line specifies an entry point. NAME
6807 must be permanently allocated. */
6809 lang_default_entry (const char *name)
6811 entry_symbol_default = name;
6815 lang_add_target (const char *name)
6817 lang_target_statement_type *new_stmt;
6819 new_stmt = new_stat (lang_target_statement, stat_ptr);
6820 new_stmt->target = name;
6824 lang_add_map (const char *name)
6831 map_option_f = TRUE;
6839 lang_add_fill (fill_type *fill)
6841 lang_fill_statement_type *new_stmt;
6843 new_stmt = new_stat (lang_fill_statement, stat_ptr);
6844 new_stmt->fill = fill;
6848 lang_add_data (int type, union etree_union *exp)
6850 lang_data_statement_type *new_stmt;
6852 new_stmt = new_stat (lang_data_statement, stat_ptr);
6853 new_stmt->exp = exp;
6854 new_stmt->type = type;
6857 /* Create a new reloc statement. RELOC is the BFD relocation type to
6858 generate. HOWTO is the corresponding howto structure (we could
6859 look this up, but the caller has already done so). SECTION is the
6860 section to generate a reloc against, or NAME is the name of the
6861 symbol to generate a reloc against. Exactly one of SECTION and
6862 NAME must be NULL. ADDEND is an expression for the addend. */
6865 lang_add_reloc (bfd_reloc_code_real_type reloc,
6866 reloc_howto_type *howto,
6869 union etree_union *addend)
6871 lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
6875 p->section = section;
6877 p->addend_exp = addend;
6879 p->addend_value = 0;
6880 p->output_section = NULL;
6881 p->output_offset = 0;
6884 lang_assignment_statement_type *
6885 lang_add_assignment (etree_type *exp)
6887 lang_assignment_statement_type *new_stmt;
6889 new_stmt = new_stat (lang_assignment_statement, stat_ptr);
6890 new_stmt->exp = exp;
6895 lang_add_attribute (enum statement_enum attribute)
6897 new_statement (attribute, sizeof (lang_statement_header_type), stat_ptr);
6901 lang_startup (const char *name)
6903 if (first_file->filename != NULL)
6905 einfo (_("%P%F: multiple STARTUP files\n"));
6907 first_file->filename = name;
6908 first_file->local_sym_name = name;
6909 first_file->real = TRUE;
6913 lang_float (bfd_boolean maybe)
6915 lang_float_flag = maybe;
6919 /* Work out the load- and run-time regions from a script statement, and
6920 store them in *LMA_REGION and *REGION respectively.
6922 MEMSPEC is the name of the run-time region, or the value of
6923 DEFAULT_MEMORY_REGION if the statement didn't specify one.
6924 LMA_MEMSPEC is the name of the load-time region, or null if the
6925 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
6926 had an explicit load address.
6928 It is an error to specify both a load region and a load address. */
6931 lang_get_regions (lang_memory_region_type **region,
6932 lang_memory_region_type **lma_region,
6933 const char *memspec,
6934 const char *lma_memspec,
6935 bfd_boolean have_lma,
6936 bfd_boolean have_vma)
6938 *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
6940 /* If no runtime region or VMA has been specified, but the load region
6941 has been specified, then use the load region for the runtime region
6943 if (lma_memspec != NULL
6945 && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
6946 *region = *lma_region;
6948 *region = lang_memory_region_lookup (memspec, FALSE);
6950 if (have_lma && lma_memspec != 0)
6951 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
6955 lang_leave_output_section_statement (fill_type *fill, const char *memspec,
6956 lang_output_section_phdr_list *phdrs,
6957 const char *lma_memspec)
6959 lang_get_regions (¤t_section->region,
6960 ¤t_section->lma_region,
6961 memspec, lma_memspec,
6962 current_section->load_base != NULL,
6963 current_section->addr_tree != NULL);
6965 /* If this section has no load region or base, but uses the same
6966 region as the previous section, then propagate the previous
6967 section's load region. */
6969 if (current_section->lma_region == NULL
6970 && current_section->load_base == NULL
6971 && current_section->addr_tree == NULL
6972 && current_section->region == current_section->prev->region)
6973 current_section->lma_region = current_section->prev->lma_region;
6975 current_section->fill = fill;
6976 current_section->phdrs = phdrs;
6980 /* Create an absolute symbol with the given name with the value of the
6981 address of first byte of the section named.
6983 If the symbol already exists, then do nothing. */
6986 lang_abs_symbol_at_beginning_of (const char *secname, const char *name)
6988 struct bfd_link_hash_entry *h;
6990 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
6992 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6994 if (h->type == bfd_link_hash_new
6995 || h->type == bfd_link_hash_undefined)
6999 h->type = bfd_link_hash_defined;
7001 sec = bfd_get_section_by_name (link_info.output_bfd, secname);
7005 h->u.def.value = bfd_get_section_vma (link_info.output_bfd, sec);
7007 h->u.def.section = bfd_abs_section_ptr;
7011 /* Create an absolute symbol with the given name with the value of the
7012 address of the first byte after the end of the section named.
7014 If the symbol already exists, then do nothing. */
7017 lang_abs_symbol_at_end_of (const char *secname, const char *name)
7019 struct bfd_link_hash_entry *h;
7021 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
7023 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
7025 if (h->type == bfd_link_hash_new
7026 || h->type == bfd_link_hash_undefined)
7030 h->type = bfd_link_hash_defined;
7032 sec = bfd_get_section_by_name (link_info.output_bfd, secname);
7036 h->u.def.value = (bfd_get_section_vma (link_info.output_bfd, sec)
7037 + TO_ADDR (sec->size));
7039 h->u.def.section = bfd_abs_section_ptr;
7044 lang_statement_append (lang_statement_list_type *list,
7045 lang_statement_union_type *element,
7046 lang_statement_union_type **field)
7048 *(list->tail) = element;
7052 /* Set the output format type. -oformat overrides scripts. */
7055 lang_add_output_format (const char *format,
7060 if (output_target == NULL || !from_script)
7062 if (command_line.endian == ENDIAN_BIG
7065 else if (command_line.endian == ENDIAN_LITTLE
7069 output_target = format;
7074 lang_add_insert (const char *where, int is_before)
7076 lang_insert_statement_type *new_stmt;
7078 new_stmt = new_stat (lang_insert_statement, stat_ptr);
7079 new_stmt->where = where;
7080 new_stmt->is_before = is_before;
7081 saved_script_handle = previous_script_handle;
7084 /* Enter a group. This creates a new lang_group_statement, and sets
7085 stat_ptr to build new statements within the group. */
7088 lang_enter_group (void)
7090 lang_group_statement_type *g;
7092 g = new_stat (lang_group_statement, stat_ptr);
7093 lang_list_init (&g->children);
7094 push_stat_ptr (&g->children);
7097 /* Leave a group. This just resets stat_ptr to start writing to the
7098 regular list of statements again. Note that this will not work if
7099 groups can occur inside anything else which can adjust stat_ptr,
7100 but currently they can't. */
7103 lang_leave_group (void)
7108 /* Add a new program header. This is called for each entry in a PHDRS
7109 command in a linker script. */
7112 lang_new_phdr (const char *name,
7114 bfd_boolean filehdr,
7119 struct lang_phdr *n, **pp;
7122 n = (struct lang_phdr *) stat_alloc (sizeof (struct lang_phdr));
7125 n->type = exp_get_value_int (type, 0, "program header type");
7126 n->filehdr = filehdr;
7131 hdrs = n->type == 1 && (phdrs || filehdr);
7133 for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
7136 && !((*pp)->filehdr || (*pp)->phdrs))
7138 einfo (_("%X%P:%S: PHDRS and FILEHDR are not supported when prior PT_LOAD headers lack them\n"));
7145 /* Record the program header information in the output BFD. FIXME: We
7146 should not be calling an ELF specific function here. */
7149 lang_record_phdrs (void)
7153 lang_output_section_phdr_list *last;
7154 struct lang_phdr *l;
7155 lang_output_section_statement_type *os;
7158 secs = (asection **) xmalloc (alc * sizeof (asection *));
7161 for (l = lang_phdr_list; l != NULL; l = l->next)
7168 for (os = &lang_output_section_statement.head->output_section_statement;
7172 lang_output_section_phdr_list *pl;
7174 if (os->constraint < 0)
7182 if (os->sectype == noload_section
7183 || os->bfd_section == NULL
7184 || (os->bfd_section->flags & SEC_ALLOC) == 0)
7187 /* Don't add orphans to PT_INTERP header. */
7193 lang_output_section_statement_type * tmp_os;
7195 /* If we have not run across a section with a program
7196 header assigned to it yet, then scan forwards to find
7197 one. This prevents inconsistencies in the linker's
7198 behaviour when a script has specified just a single
7199 header and there are sections in that script which are
7200 not assigned to it, and which occur before the first
7201 use of that header. See here for more details:
7202 http://sourceware.org/ml/binutils/2007-02/msg00291.html */
7203 for (tmp_os = os; tmp_os; tmp_os = tmp_os->next)
7206 last = tmp_os->phdrs;
7210 einfo (_("%F%P: no sections assigned to phdrs\n"));
7215 if (os->bfd_section == NULL)
7218 for (; pl != NULL; pl = pl->next)
7220 if (strcmp (pl->name, l->name) == 0)
7225 secs = (asection **) xrealloc (secs,
7226 alc * sizeof (asection *));
7228 secs[c] = os->bfd_section;
7235 if (l->flags == NULL)
7238 flags = exp_get_vma (l->flags, 0, "phdr flags");
7243 at = exp_get_vma (l->at, 0, "phdr load address");
7245 if (! bfd_record_phdr (link_info.output_bfd, l->type,
7246 l->flags != NULL, flags, l->at != NULL,
7247 at, l->filehdr, l->phdrs, c, secs))
7248 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
7253 /* Make sure all the phdr assignments succeeded. */
7254 for (os = &lang_output_section_statement.head->output_section_statement;
7258 lang_output_section_phdr_list *pl;
7260 if (os->constraint < 0
7261 || os->bfd_section == NULL)
7264 for (pl = os->phdrs;
7267 if (! pl->used && strcmp (pl->name, "NONE") != 0)
7268 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
7269 os->name, pl->name);
7273 /* Record a list of sections which may not be cross referenced. */
7276 lang_add_nocrossref (lang_nocrossref_type *l)
7278 struct lang_nocrossrefs *n;
7280 n = (struct lang_nocrossrefs *) xmalloc (sizeof *n);
7281 n->next = nocrossref_list;
7283 nocrossref_list = n;
7285 /* Set notice_all so that we get informed about all symbols. */
7286 link_info.notice_all = TRUE;
7289 /* Overlay handling. We handle overlays with some static variables. */
7291 /* The overlay virtual address. */
7292 static etree_type *overlay_vma;
7293 /* And subsection alignment. */
7294 static etree_type *overlay_subalign;
7296 /* An expression for the maximum section size seen so far. */
7297 static etree_type *overlay_max;
7299 /* A list of all the sections in this overlay. */
7301 struct overlay_list {
7302 struct overlay_list *next;
7303 lang_output_section_statement_type *os;
7306 static struct overlay_list *overlay_list;
7308 /* Start handling an overlay. */
7311 lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
7313 /* The grammar should prevent nested overlays from occurring. */
7314 ASSERT (overlay_vma == NULL
7315 && overlay_subalign == NULL
7316 && overlay_max == NULL);
7318 overlay_vma = vma_expr;
7319 overlay_subalign = subalign;
7322 /* Start a section in an overlay. We handle this by calling
7323 lang_enter_output_section_statement with the correct VMA.
7324 lang_leave_overlay sets up the LMA and memory regions. */
7327 lang_enter_overlay_section (const char *name)
7329 struct overlay_list *n;
7332 lang_enter_output_section_statement (name, overlay_vma, overlay_section,
7333 0, overlay_subalign, 0, 0);
7335 /* If this is the first section, then base the VMA of future
7336 sections on this one. This will work correctly even if `.' is
7337 used in the addresses. */
7338 if (overlay_list == NULL)
7339 overlay_vma = exp_nameop (ADDR, name);
7341 /* Remember the section. */
7342 n = (struct overlay_list *) xmalloc (sizeof *n);
7343 n->os = current_section;
7344 n->next = overlay_list;
7347 size = exp_nameop (SIZEOF, name);
7349 /* Arrange to work out the maximum section end address. */
7350 if (overlay_max == NULL)
7353 overlay_max = exp_binop (MAX_K, overlay_max, size);
7356 /* Finish a section in an overlay. There isn't any special to do
7360 lang_leave_overlay_section (fill_type *fill,
7361 lang_output_section_phdr_list *phdrs)
7368 name = current_section->name;
7370 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
7371 region and that no load-time region has been specified. It doesn't
7372 really matter what we say here, since lang_leave_overlay will
7374 lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
7376 /* Define the magic symbols. */
7378 clean = (char *) xmalloc (strlen (name) + 1);
7380 for (s1 = name; *s1 != '\0'; s1++)
7381 if (ISALNUM (*s1) || *s1 == '_')
7385 buf = (char *) xmalloc (strlen (clean) + sizeof "__load_start_");
7386 sprintf (buf, "__load_start_%s", clean);
7387 lang_add_assignment (exp_provide (buf,
7388 exp_nameop (LOADADDR, name),
7391 buf = (char *) xmalloc (strlen (clean) + sizeof "__load_stop_");
7392 sprintf (buf, "__load_stop_%s", clean);
7393 lang_add_assignment (exp_provide (buf,
7395 exp_nameop (LOADADDR, name),
7396 exp_nameop (SIZEOF, name)),
7402 /* Finish an overlay. If there are any overlay wide settings, this
7403 looks through all the sections in the overlay and sets them. */
7406 lang_leave_overlay (etree_type *lma_expr,
7409 const char *memspec,
7410 lang_output_section_phdr_list *phdrs,
7411 const char *lma_memspec)
7413 lang_memory_region_type *region;
7414 lang_memory_region_type *lma_region;
7415 struct overlay_list *l;
7416 lang_nocrossref_type *nocrossref;
7418 lang_get_regions (®ion, &lma_region,
7419 memspec, lma_memspec,
7420 lma_expr != NULL, FALSE);
7424 /* After setting the size of the last section, set '.' to end of the
7426 if (overlay_list != NULL)
7427 overlay_list->os->update_dot_tree
7428 = exp_assign (".", exp_binop ('+', overlay_vma, overlay_max));
7433 struct overlay_list *next;
7435 if (fill != NULL && l->os->fill == NULL)
7438 l->os->region = region;
7439 l->os->lma_region = lma_region;
7441 /* The first section has the load address specified in the
7442 OVERLAY statement. The rest are worked out from that.
7443 The base address is not needed (and should be null) if
7444 an LMA region was specified. */
7447 l->os->load_base = lma_expr;
7448 l->os->sectype = normal_section;
7450 if (phdrs != NULL && l->os->phdrs == NULL)
7451 l->os->phdrs = phdrs;
7455 lang_nocrossref_type *nc;
7457 nc = (lang_nocrossref_type *) xmalloc (sizeof *nc);
7458 nc->name = l->os->name;
7459 nc->next = nocrossref;
7468 if (nocrossref != NULL)
7469 lang_add_nocrossref (nocrossref);
7472 overlay_list = NULL;
7476 /* Version handling. This is only useful for ELF. */
7478 /* If PREV is NULL, return first version pattern matching particular symbol.
7479 If PREV is non-NULL, return first version pattern matching particular
7480 symbol after PREV (previously returned by lang_vers_match). */
7482 static struct bfd_elf_version_expr *
7483 lang_vers_match (struct bfd_elf_version_expr_head *head,
7484 struct bfd_elf_version_expr *prev,
7488 const char *cxx_sym = sym;
7489 const char *java_sym = sym;
7490 struct bfd_elf_version_expr *expr = NULL;
7491 enum demangling_styles curr_style;
7493 curr_style = CURRENT_DEMANGLING_STYLE;
7494 cplus_demangle_set_style (no_demangling);
7495 c_sym = bfd_demangle (link_info.output_bfd, sym, DMGL_NO_OPTS);
7498 cplus_demangle_set_style (curr_style);
7500 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7502 cxx_sym = bfd_demangle (link_info.output_bfd, sym,
7503 DMGL_PARAMS | DMGL_ANSI);
7507 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7509 java_sym = bfd_demangle (link_info.output_bfd, sym, DMGL_JAVA);
7514 if (head->htab && (prev == NULL || prev->literal))
7516 struct bfd_elf_version_expr e;
7518 switch (prev ? prev->mask : 0)
7521 if (head->mask & BFD_ELF_VERSION_C_TYPE)
7524 expr = (struct bfd_elf_version_expr *)
7525 htab_find ((htab_t) head->htab, &e);
7526 while (expr && strcmp (expr->pattern, c_sym) == 0)
7527 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
7533 case BFD_ELF_VERSION_C_TYPE:
7534 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7536 e.pattern = cxx_sym;
7537 expr = (struct bfd_elf_version_expr *)
7538 htab_find ((htab_t) head->htab, &e);
7539 while (expr && strcmp (expr->pattern, cxx_sym) == 0)
7540 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7546 case BFD_ELF_VERSION_CXX_TYPE:
7547 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7549 e.pattern = java_sym;
7550 expr = (struct bfd_elf_version_expr *)
7551 htab_find ((htab_t) head->htab, &e);
7552 while (expr && strcmp (expr->pattern, java_sym) == 0)
7553 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7564 /* Finally, try the wildcards. */
7565 if (prev == NULL || prev->literal)
7566 expr = head->remaining;
7569 for (; expr; expr = expr->next)
7576 if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
7579 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7581 else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7585 if (fnmatch (expr->pattern, s, 0) == 0)
7591 free ((char *) c_sym);
7593 free ((char *) cxx_sym);
7594 if (java_sym != sym)
7595 free ((char *) java_sym);
7599 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
7600 return a pointer to the symbol name with any backslash quotes removed. */
7603 realsymbol (const char *pattern)
7606 bfd_boolean changed = FALSE, backslash = FALSE;
7607 char *s, *symbol = (char *) xmalloc (strlen (pattern) + 1);
7609 for (p = pattern, s = symbol; *p != '\0'; ++p)
7611 /* It is a glob pattern only if there is no preceding
7615 /* Remove the preceding backslash. */
7622 if (*p == '?' || *p == '*' || *p == '[')
7629 backslash = *p == '\\';
7645 /* This is called for each variable name or match expression. NEW_NAME is
7646 the name of the symbol to match, or, if LITERAL_P is FALSE, a glob
7647 pattern to be matched against symbol names. */
7649 struct bfd_elf_version_expr *
7650 lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
7651 const char *new_name,
7653 bfd_boolean literal_p)
7655 struct bfd_elf_version_expr *ret;
7657 ret = (struct bfd_elf_version_expr *) xmalloc (sizeof *ret);
7661 ret->literal = TRUE;
7662 ret->pattern = literal_p ? new_name : realsymbol (new_name);
7663 if (ret->pattern == NULL)
7665 ret->pattern = new_name;
7666 ret->literal = FALSE;
7669 if (lang == NULL || strcasecmp (lang, "C") == 0)
7670 ret->mask = BFD_ELF_VERSION_C_TYPE;
7671 else if (strcasecmp (lang, "C++") == 0)
7672 ret->mask = BFD_ELF_VERSION_CXX_TYPE;
7673 else if (strcasecmp (lang, "Java") == 0)
7674 ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
7677 einfo (_("%X%P: unknown language `%s' in version information\n"),
7679 ret->mask = BFD_ELF_VERSION_C_TYPE;
7682 return ldemul_new_vers_pattern (ret);
7685 /* This is called for each set of variable names and match
7688 struct bfd_elf_version_tree *
7689 lang_new_vers_node (struct bfd_elf_version_expr *globals,
7690 struct bfd_elf_version_expr *locals)
7692 struct bfd_elf_version_tree *ret;
7694 ret = (struct bfd_elf_version_tree *) xcalloc (1, sizeof *ret);
7695 ret->globals.list = globals;
7696 ret->locals.list = locals;
7697 ret->match = lang_vers_match;
7698 ret->name_indx = (unsigned int) -1;
7702 /* This static variable keeps track of version indices. */
7704 static int version_index;
7707 version_expr_head_hash (const void *p)
7709 const struct bfd_elf_version_expr *e =
7710 (const struct bfd_elf_version_expr *) p;
7712 return htab_hash_string (e->pattern);
7716 version_expr_head_eq (const void *p1, const void *p2)
7718 const struct bfd_elf_version_expr *e1 =
7719 (const struct bfd_elf_version_expr *) p1;
7720 const struct bfd_elf_version_expr *e2 =
7721 (const struct bfd_elf_version_expr *) p2;
7723 return strcmp (e1->pattern, e2->pattern) == 0;
7727 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
7730 struct bfd_elf_version_expr *e, *next;
7731 struct bfd_elf_version_expr **list_loc, **remaining_loc;
7733 for (e = head->list; e; e = e->next)
7737 head->mask |= e->mask;
7742 head->htab = htab_create (count * 2, version_expr_head_hash,
7743 version_expr_head_eq, NULL);
7744 list_loc = &head->list;
7745 remaining_loc = &head->remaining;
7746 for (e = head->list; e; e = next)
7752 remaining_loc = &e->next;
7756 void **loc = htab_find_slot ((htab_t) head->htab, e, INSERT);
7760 struct bfd_elf_version_expr *e1, *last;
7762 e1 = (struct bfd_elf_version_expr *) *loc;
7766 if (e1->mask == e->mask)
7774 while (e1 && strcmp (e1->pattern, e->pattern) == 0);
7778 /* This is a duplicate. */
7779 /* FIXME: Memory leak. Sometimes pattern is not
7780 xmalloced alone, but in larger chunk of memory. */
7781 /* free (e->pattern); */
7786 e->next = last->next;
7794 list_loc = &e->next;
7798 *remaining_loc = NULL;
7799 *list_loc = head->remaining;
7802 head->remaining = head->list;
7805 /* This is called when we know the name and dependencies of the
7809 lang_register_vers_node (const char *name,
7810 struct bfd_elf_version_tree *version,
7811 struct bfd_elf_version_deps *deps)
7813 struct bfd_elf_version_tree *t, **pp;
7814 struct bfd_elf_version_expr *e1;
7819 if (link_info.version_info != NULL
7820 && (name[0] == '\0' || link_info.version_info->name[0] == '\0'))
7822 einfo (_("%X%P: anonymous version tag cannot be combined"
7823 " with other version tags\n"));
7828 /* Make sure this node has a unique name. */
7829 for (t = link_info.version_info; t != NULL; t = t->next)
7830 if (strcmp (t->name, name) == 0)
7831 einfo (_("%X%P: duplicate version tag `%s'\n"), name);
7833 lang_finalize_version_expr_head (&version->globals);
7834 lang_finalize_version_expr_head (&version->locals);
7836 /* Check the global and local match names, and make sure there
7837 aren't any duplicates. */
7839 for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
7841 for (t = link_info.version_info; t != NULL; t = t->next)
7843 struct bfd_elf_version_expr *e2;
7845 if (t->locals.htab && e1->literal)
7847 e2 = (struct bfd_elf_version_expr *)
7848 htab_find ((htab_t) t->locals.htab, e1);
7849 while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7851 if (e1->mask == e2->mask)
7852 einfo (_("%X%P: duplicate expression `%s'"
7853 " in version information\n"), e1->pattern);
7857 else if (!e1->literal)
7858 for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
7859 if (strcmp (e1->pattern, e2->pattern) == 0
7860 && e1->mask == e2->mask)
7861 einfo (_("%X%P: duplicate expression `%s'"
7862 " in version information\n"), e1->pattern);
7866 for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
7868 for (t = link_info.version_info; t != NULL; t = t->next)
7870 struct bfd_elf_version_expr *e2;
7872 if (t->globals.htab && e1->literal)
7874 e2 = (struct bfd_elf_version_expr *)
7875 htab_find ((htab_t) t->globals.htab, e1);
7876 while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7878 if (e1->mask == e2->mask)
7879 einfo (_("%X%P: duplicate expression `%s'"
7880 " in version information\n"),
7885 else if (!e1->literal)
7886 for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
7887 if (strcmp (e1->pattern, e2->pattern) == 0
7888 && e1->mask == e2->mask)
7889 einfo (_("%X%P: duplicate expression `%s'"
7890 " in version information\n"), e1->pattern);
7894 version->deps = deps;
7895 version->name = name;
7896 if (name[0] != '\0')
7899 version->vernum = version_index;
7902 version->vernum = 0;
7904 for (pp = &link_info.version_info; *pp != NULL; pp = &(*pp)->next)
7909 /* This is called when we see a version dependency. */
7911 struct bfd_elf_version_deps *
7912 lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
7914 struct bfd_elf_version_deps *ret;
7915 struct bfd_elf_version_tree *t;
7917 ret = (struct bfd_elf_version_deps *) xmalloc (sizeof *ret);
7920 for (t = link_info.version_info; t != NULL; t = t->next)
7922 if (strcmp (t->name, name) == 0)
7924 ret->version_needed = t;
7929 einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
7931 ret->version_needed = NULL;
7936 lang_do_version_exports_section (void)
7938 struct bfd_elf_version_expr *greg = NULL, *lreg;
7940 LANG_FOR_EACH_INPUT_STATEMENT (is)
7942 asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
7950 contents = (char *) xmalloc (len);
7951 if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
7952 einfo (_("%X%P: unable to read .exports section contents\n"), sec);
7955 while (p < contents + len)
7957 greg = lang_new_vers_pattern (greg, p, NULL, FALSE);
7958 p = strchr (p, '\0') + 1;
7961 /* Do not free the contents, as we used them creating the regex. */
7963 /* Do not include this section in the link. */
7964 sec->flags |= SEC_EXCLUDE | SEC_KEEP;
7967 lreg = lang_new_vers_pattern (NULL, "*", NULL, FALSE);
7968 lang_register_vers_node (command_line.version_exports_section,
7969 lang_new_vers_node (greg, lreg), NULL);
7973 lang_add_unique (const char *name)
7975 struct unique_sections *ent;
7977 for (ent = unique_section_list; ent; ent = ent->next)
7978 if (strcmp (ent->name, name) == 0)
7981 ent = (struct unique_sections *) xmalloc (sizeof *ent);
7982 ent->name = xstrdup (name);
7983 ent->next = unique_section_list;
7984 unique_section_list = ent;
7987 /* Append the list of dynamic symbols to the existing one. */
7990 lang_append_dynamic_list (struct bfd_elf_version_expr *dynamic)
7992 if (link_info.dynamic_list)
7994 struct bfd_elf_version_expr *tail;
7995 for (tail = dynamic; tail->next != NULL; tail = tail->next)
7997 tail->next = link_info.dynamic_list->head.list;
7998 link_info.dynamic_list->head.list = dynamic;
8002 struct bfd_elf_dynamic_list *d;
8004 d = (struct bfd_elf_dynamic_list *) xcalloc (1, sizeof *d);
8005 d->head.list = dynamic;
8006 d->match = lang_vers_match;
8007 link_info.dynamic_list = d;
8011 /* Append the list of C++ typeinfo dynamic symbols to the existing
8015 lang_append_dynamic_list_cpp_typeinfo (void)
8017 const char * symbols [] =
8019 "typeinfo name for*",
8022 struct bfd_elf_version_expr *dynamic = NULL;
8025 for (i = 0; i < ARRAY_SIZE (symbols); i++)
8026 dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
8029 lang_append_dynamic_list (dynamic);
8032 /* Append the list of C++ operator new and delete dynamic symbols to the
8036 lang_append_dynamic_list_cpp_new (void)
8038 const char * symbols [] =
8043 struct bfd_elf_version_expr *dynamic = NULL;
8046 for (i = 0; i < ARRAY_SIZE (symbols); i++)
8047 dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
8050 lang_append_dynamic_list (dynamic);
8053 /* Scan a space and/or comma separated string of features. */
8056 lang_ld_feature (char *str)
8064 while (*p == ',' || ISSPACE (*p))
8069 while (*q && *q != ',' && !ISSPACE (*q))
8073 if (strcasecmp (p, "SANE_EXPR") == 0)
8074 config.sane_expr = TRUE;
8076 einfo (_("%X%P: unknown feature `%s'\n"), p);