Add a testcase for PR ld/12356.
[binutils.git] / ld / ldlang.c
blobc2a768ece39e3ea1b836cee5abb1cbff366f071a
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. */
23 #include "sysdep.h"
24 #include "bfd.h"
25 #include "libiberty.h"
26 #include "safe-ctype.h"
27 #include "obstack.h"
28 #include "bfdlink.h"
30 #include "ld.h"
31 #include "ldmain.h"
32 #include "ldexp.h"
33 #include "ldlang.h"
34 #include <ldgram.h>
35 #include "ldlex.h"
36 #include "ldmisc.h"
37 #include "ldctor.h"
38 #include "ldfile.h"
39 #include "ldemul.h"
40 #include "fnmatch.h"
41 #include "demangle.h"
42 #include "hashtab.h"
43 #include "libbfd.h"
44 #ifdef ENABLE_PLUGINS
45 #include "plugin.h"
46 #endif /* ENABLE_PLUGINS */
48 #ifndef offsetof
49 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
50 #endif
52 /* Locals variables. */
53 static struct obstack stat_obstack;
54 static struct obstack map_obstack;
56 #define obstack_chunk_alloc xmalloc
57 #define obstack_chunk_free free
58 static const char *entry_symbol_default = "start";
59 static bfd_boolean placed_commons = FALSE;
60 static bfd_boolean stripped_excluded_sections = FALSE;
61 static lang_output_section_statement_type *default_common_section;
62 static bfd_boolean map_option_f;
63 static bfd_vma print_dot;
64 static lang_input_statement_type *first_file;
65 static const char *current_target;
66 static lang_statement_list_type statement_list;
67 static struct bfd_hash_table lang_definedness_table;
68 static lang_statement_list_type *stat_save[10];
69 static lang_statement_list_type **stat_save_ptr = &stat_save[0];
70 static struct unique_sections *unique_section_list;
71 static bfd_boolean ldlang_sysrooted_script = FALSE;
73 /* Forward declarations. */
74 static void exp_init_os (etree_type *);
75 static void init_map_userdata (bfd *, asection *, void *);
76 static lang_input_statement_type *lookup_name (const char *);
77 static struct bfd_hash_entry *lang_definedness_newfunc
78 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
79 static void insert_undefined (const char *);
80 static bfd_boolean sort_def_symbol (struct bfd_link_hash_entry *, void *);
81 static void print_statement (lang_statement_union_type *,
82 lang_output_section_statement_type *);
83 static void print_statement_list (lang_statement_union_type *,
84 lang_output_section_statement_type *);
85 static void print_statements (void);
86 static void print_input_section (asection *, bfd_boolean);
87 static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
88 static void lang_record_phdrs (void);
89 static void lang_do_version_exports_section (void);
90 static void lang_finalize_version_expr_head
91 (struct bfd_elf_version_expr_head *);
93 /* Exported variables. */
94 const char *output_target;
95 lang_output_section_statement_type *abs_output_section;
96 lang_statement_list_type lang_output_section_statement;
97 lang_statement_list_type *stat_ptr = &statement_list;
98 lang_statement_list_type file_chain = { NULL, NULL };
99 lang_statement_list_type input_file_chain;
100 struct bfd_sym_chain entry_symbol = { NULL, NULL };
101 const char *entry_section = ".text";
102 bfd_boolean entry_from_cmdline;
103 bfd_boolean undef_from_cmdline;
104 bfd_boolean lang_has_input_file = FALSE;
105 bfd_boolean had_output_filename = FALSE;
106 bfd_boolean lang_float_flag = FALSE;
107 bfd_boolean delete_output_file_on_failure = FALSE;
108 struct lang_phdr *lang_phdr_list;
109 struct lang_nocrossrefs *nocrossref_list;
110 bfd_boolean missing_file = FALSE;
112 /* Functions that traverse the linker script and might evaluate
113 DEFINED() need to increment this. */
114 int lang_statement_iteration = 0;
116 etree_type *base; /* Relocation base - or null */
118 /* Return TRUE if the PATTERN argument is a wildcard pattern.
119 Although backslashes are treated specially if a pattern contains
120 wildcards, we do not consider the mere presence of a backslash to
121 be enough to cause the pattern to be treated as a wildcard.
122 That lets us handle DOS filenames more naturally. */
123 #define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL)
125 #define new_stat(x, y) \
126 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
128 #define outside_section_address(q) \
129 ((q)->output_offset + (q)->output_section->vma)
131 #define outside_symbol_address(q) \
132 ((q)->value + outside_section_address (q->section))
134 #define SECTION_NAME_MAP_LENGTH (16)
136 void *
137 stat_alloc (size_t size)
139 return obstack_alloc (&stat_obstack, size);
142 static int
143 name_match (const char *pattern, const char *name)
145 if (wildcardp (pattern))
146 return fnmatch (pattern, name, 0);
147 return strcmp (pattern, name);
150 /* If PATTERN is of the form archive:file, return a pointer to the
151 separator. If not, return NULL. */
153 static char *
154 archive_path (const char *pattern)
156 char *p = NULL;
158 if (link_info.path_separator == 0)
159 return p;
161 p = strchr (pattern, link_info.path_separator);
162 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
163 if (p == NULL || link_info.path_separator != ':')
164 return p;
166 /* Assume a match on the second char is part of drive specifier,
167 as in "c:\silly.dos". */
168 if (p == pattern + 1 && ISALPHA (*pattern))
169 p = strchr (p + 1, link_info.path_separator);
170 #endif
171 return p;
174 /* Given that FILE_SPEC results in a non-NULL SEP result from archive_path,
175 return whether F matches FILE_SPEC. */
177 static bfd_boolean
178 input_statement_is_archive_path (const char *file_spec, char *sep,
179 lang_input_statement_type *f)
181 bfd_boolean match = FALSE;
183 if ((*(sep + 1) == 0
184 || name_match (sep + 1, f->filename) == 0)
185 && ((sep != file_spec)
186 == (f->the_bfd != NULL && f->the_bfd->my_archive != NULL)))
188 match = TRUE;
190 if (sep != file_spec)
192 const char *aname = f->the_bfd->my_archive->filename;
193 *sep = 0;
194 match = name_match (file_spec, aname) == 0;
195 *sep = link_info.path_separator;
198 return match;
201 static bfd_boolean
202 unique_section_p (const asection *sec,
203 const lang_output_section_statement_type *os)
205 struct unique_sections *unam;
206 const char *secnam;
208 if (link_info.relocatable
209 && sec->owner != NULL
210 && bfd_is_group_section (sec->owner, sec))
211 return !(os != NULL
212 && strcmp (os->name, DISCARD_SECTION_NAME) == 0);
214 secnam = sec->name;
215 for (unam = unique_section_list; unam; unam = unam->next)
216 if (name_match (unam->name, secnam) == 0)
217 return TRUE;
219 return FALSE;
222 /* Generic traversal routines for finding matching sections. */
224 /* Try processing a section against a wildcard. This just calls
225 the callback unless the filename exclusion list is present
226 and excludes the file. It's hardly ever present so this
227 function is very fast. */
229 static void
230 walk_wild_consider_section (lang_wild_statement_type *ptr,
231 lang_input_statement_type *file,
232 asection *s,
233 struct wildcard_list *sec,
234 callback_t callback,
235 void *data)
237 struct name_list *list_tmp;
239 /* Don't process sections from files which were excluded. */
240 for (list_tmp = sec->spec.exclude_name_list;
241 list_tmp;
242 list_tmp = list_tmp->next)
244 char *p = archive_path (list_tmp->name);
246 if (p != NULL)
248 if (input_statement_is_archive_path (list_tmp->name, p, file))
249 return;
252 else if (name_match (list_tmp->name, file->filename) == 0)
253 return;
255 /* FIXME: Perhaps remove the following at some stage? Matching
256 unadorned archives like this was never documented and has
257 been superceded by the archive:path syntax. */
258 else if (file->the_bfd != NULL
259 && file->the_bfd->my_archive != NULL
260 && name_match (list_tmp->name,
261 file->the_bfd->my_archive->filename) == 0)
262 return;
265 (*callback) (ptr, sec, s, file, data);
268 /* Lowest common denominator routine that can handle everything correctly,
269 but slowly. */
271 static void
272 walk_wild_section_general (lang_wild_statement_type *ptr,
273 lang_input_statement_type *file,
274 callback_t callback,
275 void *data)
277 asection *s;
278 struct wildcard_list *sec;
280 for (s = file->the_bfd->sections; s != NULL; s = s->next)
282 sec = ptr->section_list;
283 if (sec == NULL)
284 (*callback) (ptr, sec, s, file, data);
286 while (sec != NULL)
288 bfd_boolean skip = FALSE;
290 if (sec->spec.name != NULL)
292 const char *sname = bfd_get_section_name (file->the_bfd, s);
294 skip = name_match (sec->spec.name, sname) != 0;
297 if (!skip)
298 walk_wild_consider_section (ptr, file, s, sec, callback, data);
300 sec = sec->next;
305 /* Routines to find a single section given its name. If there's more
306 than one section with that name, we report that. */
308 typedef struct
310 asection *found_section;
311 bfd_boolean multiple_sections_found;
312 } section_iterator_callback_data;
314 static bfd_boolean
315 section_iterator_callback (bfd *abfd ATTRIBUTE_UNUSED, asection *s, void *data)
317 section_iterator_callback_data *d = (section_iterator_callback_data *) data;
319 if (d->found_section != NULL)
321 d->multiple_sections_found = TRUE;
322 return TRUE;
325 d->found_section = s;
326 return FALSE;
329 static asection *
330 find_section (lang_input_statement_type *file,
331 struct wildcard_list *sec,
332 bfd_boolean *multiple_sections_found)
334 section_iterator_callback_data cb_data = { NULL, FALSE };
336 bfd_get_section_by_name_if (file->the_bfd, sec->spec.name,
337 section_iterator_callback, &cb_data);
338 *multiple_sections_found = cb_data.multiple_sections_found;
339 return cb_data.found_section;
342 /* Code for handling simple wildcards without going through fnmatch,
343 which can be expensive because of charset translations etc. */
345 /* A simple wild is a literal string followed by a single '*',
346 where the literal part is at least 4 characters long. */
348 static bfd_boolean
349 is_simple_wild (const char *name)
351 size_t len = strcspn (name, "*?[");
352 return len >= 4 && name[len] == '*' && name[len + 1] == '\0';
355 static bfd_boolean
356 match_simple_wild (const char *pattern, const char *name)
358 /* The first four characters of the pattern are guaranteed valid
359 non-wildcard characters. So we can go faster. */
360 if (pattern[0] != name[0] || pattern[1] != name[1]
361 || pattern[2] != name[2] || pattern[3] != name[3])
362 return FALSE;
364 pattern += 4;
365 name += 4;
366 while (*pattern != '*')
367 if (*name++ != *pattern++)
368 return FALSE;
370 return TRUE;
373 /* Return the numerical value of the init_priority attribute from
374 section name NAME. */
376 static unsigned long
377 get_init_priority (const char *name)
379 char *end;
380 unsigned long init_priority;
382 /* GCC uses the following section names for the init_priority
383 attribute with numerical values 101 and 65535 inclusive. A
384 lower value means a higher priority.
386 1: .init_array.NNNN/.fini_array.NNNN: Where NNNN is the
387 decimal numerical value of the init_priority attribute.
388 The order of execution in .init_array is forward and
389 .fini_array is backward.
390 2: .ctors.NNNN/.ctors.NNNN: Where NNNN is 65535 minus the
391 decimal numerical value of the init_priority attribute.
392 The order of execution in .ctors is backward and .dtors
393 is forward.
395 if (strncmp (name, ".init_array.", 12) == 0
396 || strncmp (name, ".fini_array.", 12) == 0)
398 init_priority = strtoul (name + 12, &end, 10);
399 return *end ? 0 : init_priority;
401 else if (strncmp (name, ".ctors.", 7) == 0
402 || strncmp (name, ".dtors.", 7) == 0)
404 init_priority = strtoul (name + 7, &end, 10);
405 return *end ? 0 : 65535 - init_priority;
408 return 0;
411 /* Compare sections ASEC and BSEC according to SORT. */
413 static int
414 compare_section (sort_type sort, asection *asec, asection *bsec)
416 int ret;
417 unsigned long ainit_priority, binit_priority;
419 switch (sort)
421 default:
422 abort ();
424 case by_init_priority:
425 ainit_priority
426 = get_init_priority (bfd_get_section_name (asec->owner, asec));
427 binit_priority
428 = get_init_priority (bfd_get_section_name (bsec->owner, bsec));
429 if (ainit_priority == 0 || binit_priority == 0)
430 goto sort_by_name;
431 ret = ainit_priority - binit_priority;
432 if (ret)
433 break;
434 else
435 goto sort_by_name;
437 case by_alignment_name:
438 ret = (bfd_section_alignment (bsec->owner, bsec)
439 - bfd_section_alignment (asec->owner, asec));
440 if (ret)
441 break;
442 /* Fall through. */
444 case by_name:
445 sort_by_name:
446 ret = strcmp (bfd_get_section_name (asec->owner, asec),
447 bfd_get_section_name (bsec->owner, bsec));
448 break;
450 case by_name_alignment:
451 ret = strcmp (bfd_get_section_name (asec->owner, asec),
452 bfd_get_section_name (bsec->owner, bsec));
453 if (ret)
454 break;
455 /* Fall through. */
457 case by_alignment:
458 ret = (bfd_section_alignment (bsec->owner, bsec)
459 - bfd_section_alignment (asec->owner, asec));
460 break;
463 return ret;
466 /* Build a Binary Search Tree to sort sections, unlike insertion sort
467 used in wild_sort(). BST is considerably faster if the number of
468 of sections are large. */
470 static lang_section_bst_type **
471 wild_sort_fast (lang_wild_statement_type *wild,
472 struct wildcard_list *sec,
473 lang_input_statement_type *file ATTRIBUTE_UNUSED,
474 asection *section)
476 lang_section_bst_type **tree;
478 tree = &wild->tree;
479 if (!wild->filenames_sorted
480 && (sec == NULL || sec->spec.sorted == none))
482 /* Append at the right end of tree. */
483 while (*tree)
484 tree = &((*tree)->right);
485 return tree;
488 while (*tree)
490 /* Find the correct node to append this section. */
491 if (compare_section (sec->spec.sorted, section, (*tree)->section) < 0)
492 tree = &((*tree)->left);
493 else
494 tree = &((*tree)->right);
497 return tree;
500 /* Use wild_sort_fast to build a BST to sort sections. */
502 static void
503 output_section_callback_fast (lang_wild_statement_type *ptr,
504 struct wildcard_list *sec,
505 asection *section,
506 lang_input_statement_type *file,
507 void *output)
509 lang_section_bst_type *node;
510 lang_section_bst_type **tree;
511 lang_output_section_statement_type *os;
513 os = (lang_output_section_statement_type *) output;
515 if (unique_section_p (section, os))
516 return;
518 node = (lang_section_bst_type *) xmalloc (sizeof (lang_section_bst_type));
519 node->left = 0;
520 node->right = 0;
521 node->section = section;
523 tree = wild_sort_fast (ptr, sec, file, section);
524 if (tree != NULL)
525 *tree = node;
528 /* Convert a sorted sections' BST back to list form. */
530 static void
531 output_section_callback_tree_to_list (lang_wild_statement_type *ptr,
532 lang_section_bst_type *tree,
533 void *output)
535 if (tree->left)
536 output_section_callback_tree_to_list (ptr, tree->left, output);
538 lang_add_section (&ptr->children, tree->section,
539 (lang_output_section_statement_type *) output);
541 if (tree->right)
542 output_section_callback_tree_to_list (ptr, tree->right, output);
544 free (tree);
547 /* Specialized, optimized routines for handling different kinds of
548 wildcards */
550 static void
551 walk_wild_section_specs1_wild0 (lang_wild_statement_type *ptr,
552 lang_input_statement_type *file,
553 callback_t callback,
554 void *data)
556 /* We can just do a hash lookup for the section with the right name.
557 But if that lookup discovers more than one section with the name
558 (should be rare), we fall back to the general algorithm because
559 we would otherwise have to sort the sections to make sure they
560 get processed in the bfd's order. */
561 bfd_boolean multiple_sections_found;
562 struct wildcard_list *sec0 = ptr->handler_data[0];
563 asection *s0 = find_section (file, sec0, &multiple_sections_found);
565 if (multiple_sections_found)
566 walk_wild_section_general (ptr, file, callback, data);
567 else if (s0)
568 walk_wild_consider_section (ptr, file, s0, sec0, callback, data);
571 static void
572 walk_wild_section_specs1_wild1 (lang_wild_statement_type *ptr,
573 lang_input_statement_type *file,
574 callback_t callback,
575 void *data)
577 asection *s;
578 struct wildcard_list *wildsec0 = ptr->handler_data[0];
580 for (s = file->the_bfd->sections; s != NULL; s = s->next)
582 const char *sname = bfd_get_section_name (file->the_bfd, s);
583 bfd_boolean skip = !match_simple_wild (wildsec0->spec.name, sname);
585 if (!skip)
586 walk_wild_consider_section (ptr, file, s, wildsec0, callback, data);
590 static void
591 walk_wild_section_specs2_wild1 (lang_wild_statement_type *ptr,
592 lang_input_statement_type *file,
593 callback_t callback,
594 void *data)
596 asection *s;
597 struct wildcard_list *sec0 = ptr->handler_data[0];
598 struct wildcard_list *wildsec1 = ptr->handler_data[1];
599 bfd_boolean multiple_sections_found;
600 asection *s0 = find_section (file, sec0, &multiple_sections_found);
602 if (multiple_sections_found)
604 walk_wild_section_general (ptr, file, callback, data);
605 return;
608 /* Note that if the section was not found, s0 is NULL and
609 we'll simply never succeed the s == s0 test below. */
610 for (s = file->the_bfd->sections; s != NULL; s = s->next)
612 /* Recall that in this code path, a section cannot satisfy more
613 than one spec, so if s == s0 then it cannot match
614 wildspec1. */
615 if (s == s0)
616 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
617 else
619 const char *sname = bfd_get_section_name (file->the_bfd, s);
620 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
622 if (!skip)
623 walk_wild_consider_section (ptr, file, s, wildsec1, callback,
624 data);
629 static void
630 walk_wild_section_specs3_wild2 (lang_wild_statement_type *ptr,
631 lang_input_statement_type *file,
632 callback_t callback,
633 void *data)
635 asection *s;
636 struct wildcard_list *sec0 = ptr->handler_data[0];
637 struct wildcard_list *wildsec1 = ptr->handler_data[1];
638 struct wildcard_list *wildsec2 = ptr->handler_data[2];
639 bfd_boolean multiple_sections_found;
640 asection *s0 = find_section (file, sec0, &multiple_sections_found);
642 if (multiple_sections_found)
644 walk_wild_section_general (ptr, file, callback, data);
645 return;
648 for (s = file->the_bfd->sections; s != NULL; s = s->next)
650 if (s == s0)
651 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
652 else
654 const char *sname = bfd_get_section_name (file->the_bfd, s);
655 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
657 if (!skip)
658 walk_wild_consider_section (ptr, file, s, wildsec1, callback, data);
659 else
661 skip = !match_simple_wild (wildsec2->spec.name, sname);
662 if (!skip)
663 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
664 data);
670 static void
671 walk_wild_section_specs4_wild2 (lang_wild_statement_type *ptr,
672 lang_input_statement_type *file,
673 callback_t callback,
674 void *data)
676 asection *s;
677 struct wildcard_list *sec0 = ptr->handler_data[0];
678 struct wildcard_list *sec1 = ptr->handler_data[1];
679 struct wildcard_list *wildsec2 = ptr->handler_data[2];
680 struct wildcard_list *wildsec3 = ptr->handler_data[3];
681 bfd_boolean multiple_sections_found;
682 asection *s0 = find_section (file, sec0, &multiple_sections_found), *s1;
684 if (multiple_sections_found)
686 walk_wild_section_general (ptr, file, callback, data);
687 return;
690 s1 = find_section (file, sec1, &multiple_sections_found);
691 if (multiple_sections_found)
693 walk_wild_section_general (ptr, file, callback, data);
694 return;
697 for (s = file->the_bfd->sections; s != NULL; s = s->next)
699 if (s == s0)
700 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
701 else
702 if (s == s1)
703 walk_wild_consider_section (ptr, file, s, sec1, callback, data);
704 else
706 const char *sname = bfd_get_section_name (file->the_bfd, s);
707 bfd_boolean skip = !match_simple_wild (wildsec2->spec.name,
708 sname);
710 if (!skip)
711 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
712 data);
713 else
715 skip = !match_simple_wild (wildsec3->spec.name, sname);
716 if (!skip)
717 walk_wild_consider_section (ptr, file, s, wildsec3,
718 callback, data);
724 static void
725 walk_wild_section (lang_wild_statement_type *ptr,
726 lang_input_statement_type *file,
727 callback_t callback,
728 void *data)
730 if (file->just_syms_flag)
731 return;
733 (*ptr->walk_wild_section_handler) (ptr, file, callback, data);
736 /* Returns TRUE when name1 is a wildcard spec that might match
737 something name2 can match. We're conservative: we return FALSE
738 only if the prefixes of name1 and name2 are different up to the
739 first wildcard character. */
741 static bfd_boolean
742 wild_spec_can_overlap (const char *name1, const char *name2)
744 size_t prefix1_len = strcspn (name1, "?*[");
745 size_t prefix2_len = strcspn (name2, "?*[");
746 size_t min_prefix_len;
748 /* Note that if there is no wildcard character, then we treat the
749 terminating 0 as part of the prefix. Thus ".text" won't match
750 ".text." or ".text.*", for example. */
751 if (name1[prefix1_len] == '\0')
752 prefix1_len++;
753 if (name2[prefix2_len] == '\0')
754 prefix2_len++;
756 min_prefix_len = prefix1_len < prefix2_len ? prefix1_len : prefix2_len;
758 return memcmp (name1, name2, min_prefix_len) == 0;
761 /* Select specialized code to handle various kinds of wildcard
762 statements. */
764 static void
765 analyze_walk_wild_section_handler (lang_wild_statement_type *ptr)
767 int sec_count = 0;
768 int wild_name_count = 0;
769 struct wildcard_list *sec;
770 int signature;
771 int data_counter;
773 ptr->walk_wild_section_handler = walk_wild_section_general;
774 ptr->handler_data[0] = NULL;
775 ptr->handler_data[1] = NULL;
776 ptr->handler_data[2] = NULL;
777 ptr->handler_data[3] = NULL;
778 ptr->tree = NULL;
780 /* Count how many wildcard_specs there are, and how many of those
781 actually use wildcards in the name. Also, bail out if any of the
782 wildcard names are NULL. (Can this actually happen?
783 walk_wild_section used to test for it.) And bail out if any
784 of the wildcards are more complex than a simple string
785 ending in a single '*'. */
786 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
788 ++sec_count;
789 if (sec->spec.name == NULL)
790 return;
791 if (wildcardp (sec->spec.name))
793 ++wild_name_count;
794 if (!is_simple_wild (sec->spec.name))
795 return;
799 /* The zero-spec case would be easy to optimize but it doesn't
800 happen in practice. Likewise, more than 4 specs doesn't
801 happen in practice. */
802 if (sec_count == 0 || sec_count > 4)
803 return;
805 /* Check that no two specs can match the same section. */
806 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
808 struct wildcard_list *sec2;
809 for (sec2 = sec->next; sec2 != NULL; sec2 = sec2->next)
811 if (wild_spec_can_overlap (sec->spec.name, sec2->spec.name))
812 return;
816 signature = (sec_count << 8) + wild_name_count;
817 switch (signature)
819 case 0x0100:
820 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild0;
821 break;
822 case 0x0101:
823 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild1;
824 break;
825 case 0x0201:
826 ptr->walk_wild_section_handler = walk_wild_section_specs2_wild1;
827 break;
828 case 0x0302:
829 ptr->walk_wild_section_handler = walk_wild_section_specs3_wild2;
830 break;
831 case 0x0402:
832 ptr->walk_wild_section_handler = walk_wild_section_specs4_wild2;
833 break;
834 default:
835 return;
838 /* Now fill the data array with pointers to the specs, first the
839 specs with non-wildcard names, then the specs with wildcard
840 names. It's OK to process the specs in different order from the
841 given order, because we've already determined that no section
842 will match more than one spec. */
843 data_counter = 0;
844 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
845 if (!wildcardp (sec->spec.name))
846 ptr->handler_data[data_counter++] = sec;
847 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
848 if (wildcardp (sec->spec.name))
849 ptr->handler_data[data_counter++] = sec;
852 /* Handle a wild statement for a single file F. */
854 static void
855 walk_wild_file (lang_wild_statement_type *s,
856 lang_input_statement_type *f,
857 callback_t callback,
858 void *data)
860 if (f->the_bfd == NULL
861 || ! bfd_check_format (f->the_bfd, bfd_archive))
862 walk_wild_section (s, f, callback, data);
863 else
865 bfd *member;
867 /* This is an archive file. We must map each member of the
868 archive separately. */
869 member = bfd_openr_next_archived_file (f->the_bfd, NULL);
870 while (member != NULL)
872 /* When lookup_name is called, it will call the add_symbols
873 entry point for the archive. For each element of the
874 archive which is included, BFD will call ldlang_add_file,
875 which will set the usrdata field of the member to the
876 lang_input_statement. */
877 if (member->usrdata != NULL)
879 walk_wild_section (s,
880 (lang_input_statement_type *) member->usrdata,
881 callback, data);
884 member = bfd_openr_next_archived_file (f->the_bfd, member);
889 static void
890 walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
892 const char *file_spec = s->filename;
893 char *p;
895 if (file_spec == NULL)
897 /* Perform the iteration over all files in the list. */
898 LANG_FOR_EACH_INPUT_STATEMENT (f)
900 walk_wild_file (s, f, callback, data);
903 else if ((p = archive_path (file_spec)) != NULL)
905 LANG_FOR_EACH_INPUT_STATEMENT (f)
907 if (input_statement_is_archive_path (file_spec, p, f))
908 walk_wild_file (s, f, callback, data);
911 else if (wildcardp (file_spec))
913 LANG_FOR_EACH_INPUT_STATEMENT (f)
915 if (fnmatch (file_spec, f->filename, 0) == 0)
916 walk_wild_file (s, f, callback, data);
919 else
921 lang_input_statement_type *f;
923 /* Perform the iteration over a single file. */
924 f = lookup_name (file_spec);
925 if (f)
926 walk_wild_file (s, f, callback, data);
930 /* lang_for_each_statement walks the parse tree and calls the provided
931 function for each node, except those inside output section statements
932 with constraint set to -1. */
934 void
935 lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
936 lang_statement_union_type *s)
938 for (; s != NULL; s = s->header.next)
940 func (s);
942 switch (s->header.type)
944 case lang_constructors_statement_enum:
945 lang_for_each_statement_worker (func, constructor_list.head);
946 break;
947 case lang_output_section_statement_enum:
948 if (s->output_section_statement.constraint != -1)
949 lang_for_each_statement_worker
950 (func, s->output_section_statement.children.head);
951 break;
952 case lang_wild_statement_enum:
953 lang_for_each_statement_worker (func,
954 s->wild_statement.children.head);
955 break;
956 case lang_group_statement_enum:
957 lang_for_each_statement_worker (func,
958 s->group_statement.children.head);
959 break;
960 case lang_data_statement_enum:
961 case lang_reloc_statement_enum:
962 case lang_object_symbols_statement_enum:
963 case lang_output_statement_enum:
964 case lang_target_statement_enum:
965 case lang_input_section_enum:
966 case lang_input_statement_enum:
967 case lang_assignment_statement_enum:
968 case lang_padding_statement_enum:
969 case lang_address_statement_enum:
970 case lang_fill_statement_enum:
971 case lang_insert_statement_enum:
972 break;
973 default:
974 FAIL ();
975 break;
980 void
981 lang_for_each_statement (void (*func) (lang_statement_union_type *))
983 lang_for_each_statement_worker (func, statement_list.head);
986 /*----------------------------------------------------------------------*/
988 void
989 lang_list_init (lang_statement_list_type *list)
991 list->head = NULL;
992 list->tail = &list->head;
995 void
996 push_stat_ptr (lang_statement_list_type *new_ptr)
998 if (stat_save_ptr >= stat_save + sizeof (stat_save) / sizeof (stat_save[0]))
999 abort ();
1000 *stat_save_ptr++ = stat_ptr;
1001 stat_ptr = new_ptr;
1004 void
1005 pop_stat_ptr (void)
1007 if (stat_save_ptr <= stat_save)
1008 abort ();
1009 stat_ptr = *--stat_save_ptr;
1012 /* Build a new statement node for the parse tree. */
1014 static lang_statement_union_type *
1015 new_statement (enum statement_enum type,
1016 size_t size,
1017 lang_statement_list_type *list)
1019 lang_statement_union_type *new_stmt;
1021 new_stmt = (lang_statement_union_type *) stat_alloc (size);
1022 new_stmt->header.type = type;
1023 new_stmt->header.next = NULL;
1024 lang_statement_append (list, new_stmt, &new_stmt->header.next);
1025 return new_stmt;
1028 /* Build a new input file node for the language. There are several
1029 ways in which we treat an input file, eg, we only look at symbols,
1030 or prefix it with a -l etc.
1032 We can be supplied with requests for input files more than once;
1033 they may, for example be split over several lines like foo.o(.text)
1034 foo.o(.data) etc, so when asked for a file we check that we haven't
1035 got it already so we don't duplicate the bfd. */
1037 static lang_input_statement_type *
1038 new_afile (const char *name,
1039 lang_input_file_enum_type file_type,
1040 const char *target,
1041 bfd_boolean add_to_list)
1043 lang_input_statement_type *p;
1045 if (add_to_list)
1046 p = (lang_input_statement_type *) new_stat (lang_input_statement, stat_ptr);
1047 else
1049 p = (lang_input_statement_type *)
1050 stat_alloc (sizeof (lang_input_statement_type));
1051 p->header.type = lang_input_statement_enum;
1052 p->header.next = NULL;
1055 lang_has_input_file = TRUE;
1056 p->target = target;
1057 p->sysrooted = FALSE;
1059 if (file_type == lang_input_file_is_l_enum
1060 && name[0] == ':' && name[1] != '\0')
1062 file_type = lang_input_file_is_search_file_enum;
1063 name = name + 1;
1066 switch (file_type)
1068 case lang_input_file_is_symbols_only_enum:
1069 p->filename = name;
1070 p->maybe_archive = FALSE;
1071 p->real = TRUE;
1072 p->local_sym_name = name;
1073 p->just_syms_flag = TRUE;
1074 p->search_dirs_flag = FALSE;
1075 break;
1076 case lang_input_file_is_fake_enum:
1077 p->filename = name;
1078 p->maybe_archive = FALSE;
1079 p->real = FALSE;
1080 p->local_sym_name = name;
1081 p->just_syms_flag = FALSE;
1082 p->search_dirs_flag = FALSE;
1083 break;
1084 case lang_input_file_is_l_enum:
1085 p->maybe_archive = TRUE;
1086 p->filename = name;
1087 p->real = TRUE;
1088 p->local_sym_name = concat ("-l", name, (const char *) NULL);
1089 p->just_syms_flag = FALSE;
1090 p->search_dirs_flag = TRUE;
1091 break;
1092 case lang_input_file_is_marker_enum:
1093 p->filename = name;
1094 p->maybe_archive = FALSE;
1095 p->real = FALSE;
1096 p->local_sym_name = name;
1097 p->just_syms_flag = FALSE;
1098 p->search_dirs_flag = TRUE;
1099 break;
1100 case lang_input_file_is_search_file_enum:
1101 p->sysrooted = ldlang_sysrooted_script;
1102 p->filename = name;
1103 p->maybe_archive = FALSE;
1104 p->real = TRUE;
1105 p->local_sym_name = name;
1106 p->just_syms_flag = FALSE;
1107 p->search_dirs_flag = TRUE;
1108 break;
1109 case lang_input_file_is_file_enum:
1110 p->filename = name;
1111 p->maybe_archive = FALSE;
1112 p->real = TRUE;
1113 p->local_sym_name = name;
1114 p->just_syms_flag = FALSE;
1115 p->search_dirs_flag = FALSE;
1116 break;
1117 default:
1118 FAIL ();
1120 p->the_bfd = NULL;
1121 p->next_real_file = NULL;
1122 p->next = NULL;
1123 p->dynamic = config.dynamic_link;
1124 p->add_DT_NEEDED_for_dynamic = add_DT_NEEDED_for_dynamic;
1125 p->add_DT_NEEDED_for_regular = add_DT_NEEDED_for_regular;
1126 p->whole_archive = whole_archive;
1127 p->loaded = FALSE;
1128 p->missing_file = FALSE;
1130 lang_statement_append (&input_file_chain,
1131 (lang_statement_union_type *) p,
1132 &p->next_real_file);
1133 return p;
1136 lang_input_statement_type *
1137 lang_add_input_file (const char *name,
1138 lang_input_file_enum_type file_type,
1139 const char *target)
1141 return new_afile (name, file_type, target, TRUE);
1144 struct out_section_hash_entry
1146 struct bfd_hash_entry root;
1147 lang_statement_union_type s;
1150 /* The hash table. */
1152 static struct bfd_hash_table output_section_statement_table;
1154 /* Support routines for the hash table used by lang_output_section_find,
1155 initialize the table, fill in an entry and remove the table. */
1157 static struct bfd_hash_entry *
1158 output_section_statement_newfunc (struct bfd_hash_entry *entry,
1159 struct bfd_hash_table *table,
1160 const char *string)
1162 lang_output_section_statement_type **nextp;
1163 struct out_section_hash_entry *ret;
1165 if (entry == NULL)
1167 entry = (struct bfd_hash_entry *) bfd_hash_allocate (table,
1168 sizeof (*ret));
1169 if (entry == NULL)
1170 return entry;
1173 entry = bfd_hash_newfunc (entry, table, string);
1174 if (entry == NULL)
1175 return entry;
1177 ret = (struct out_section_hash_entry *) entry;
1178 memset (&ret->s, 0, sizeof (ret->s));
1179 ret->s.header.type = lang_output_section_statement_enum;
1180 ret->s.output_section_statement.subsection_alignment = -1;
1181 ret->s.output_section_statement.section_alignment = -1;
1182 ret->s.output_section_statement.block_value = 1;
1183 lang_list_init (&ret->s.output_section_statement.children);
1184 lang_statement_append (stat_ptr, &ret->s, &ret->s.header.next);
1186 /* For every output section statement added to the list, except the
1187 first one, lang_output_section_statement.tail points to the "next"
1188 field of the last element of the list. */
1189 if (lang_output_section_statement.head != NULL)
1190 ret->s.output_section_statement.prev
1191 = ((lang_output_section_statement_type *)
1192 ((char *) lang_output_section_statement.tail
1193 - offsetof (lang_output_section_statement_type, next)));
1195 /* GCC's strict aliasing rules prevent us from just casting the
1196 address, so we store the pointer in a variable and cast that
1197 instead. */
1198 nextp = &ret->s.output_section_statement.next;
1199 lang_statement_append (&lang_output_section_statement,
1200 &ret->s,
1201 (lang_statement_union_type **) nextp);
1202 return &ret->root;
1205 static void
1206 output_section_statement_table_init (void)
1208 if (!bfd_hash_table_init_n (&output_section_statement_table,
1209 output_section_statement_newfunc,
1210 sizeof (struct out_section_hash_entry),
1211 61))
1212 einfo (_("%P%F: can not create hash table: %E\n"));
1215 static void
1216 output_section_statement_table_free (void)
1218 bfd_hash_table_free (&output_section_statement_table);
1221 /* Build enough state so that the parser can build its tree. */
1223 void
1224 lang_init (void)
1226 obstack_begin (&stat_obstack, 1000);
1228 stat_ptr = &statement_list;
1230 output_section_statement_table_init ();
1232 lang_list_init (stat_ptr);
1234 lang_list_init (&input_file_chain);
1235 lang_list_init (&lang_output_section_statement);
1236 lang_list_init (&file_chain);
1237 first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
1238 NULL);
1239 abs_output_section =
1240 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME, 0, TRUE);
1242 abs_output_section->bfd_section = bfd_abs_section_ptr;
1244 /* The value "3" is ad-hoc, somewhat related to the expected number of
1245 DEFINED expressions in a linker script. For most default linker
1246 scripts, there are none. Why a hash table then? Well, it's somewhat
1247 simpler to re-use working machinery than using a linked list in terms
1248 of code-complexity here in ld, besides the initialization which just
1249 looks like other code here. */
1250 if (!bfd_hash_table_init_n (&lang_definedness_table,
1251 lang_definedness_newfunc,
1252 sizeof (struct lang_definedness_hash_entry),
1254 einfo (_("%P%F: can not create hash table: %E\n"));
1257 void
1258 lang_finish (void)
1260 output_section_statement_table_free ();
1263 /*----------------------------------------------------------------------
1264 A region is an area of memory declared with the
1265 MEMORY { name:org=exp, len=exp ... }
1266 syntax.
1268 We maintain a list of all the regions here.
1270 If no regions are specified in the script, then the default is used
1271 which is created when looked up to be the entire data space.
1273 If create is true we are creating a region inside a MEMORY block.
1274 In this case it is probably an error to create a region that has
1275 already been created. If we are not inside a MEMORY block it is
1276 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
1277 and so we issue a warning.
1279 Each region has at least one name. The first name is either
1280 DEFAULT_MEMORY_REGION or the name given in the MEMORY block. You can add
1281 alias names to an existing region within a script with
1282 REGION_ALIAS (alias, region_name). Each name corresponds to at most one
1283 region. */
1285 static lang_memory_region_type *lang_memory_region_list;
1286 static lang_memory_region_type **lang_memory_region_list_tail
1287 = &lang_memory_region_list;
1289 lang_memory_region_type *
1290 lang_memory_region_lookup (const char *const name, bfd_boolean create)
1292 lang_memory_region_name *n;
1293 lang_memory_region_type *r;
1294 lang_memory_region_type *new_region;
1296 /* NAME is NULL for LMA memspecs if no region was specified. */
1297 if (name == NULL)
1298 return NULL;
1300 for (r = lang_memory_region_list; r != NULL; r = r->next)
1301 for (n = &r->name_list; n != NULL; n = n->next)
1302 if (strcmp (n->name, name) == 0)
1304 if (create)
1305 einfo (_("%P:%S: warning: redeclaration of memory region `%s'\n"),
1306 name);
1307 return r;
1310 if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
1311 einfo (_("%P:%S: warning: memory region `%s' not declared\n"), name);
1313 new_region = (lang_memory_region_type *)
1314 stat_alloc (sizeof (lang_memory_region_type));
1316 new_region->name_list.name = xstrdup (name);
1317 new_region->name_list.next = NULL;
1318 new_region->next = NULL;
1319 new_region->origin = 0;
1320 new_region->length = ~(bfd_size_type) 0;
1321 new_region->current = 0;
1322 new_region->last_os = NULL;
1323 new_region->flags = 0;
1324 new_region->not_flags = 0;
1325 new_region->had_full_message = FALSE;
1327 *lang_memory_region_list_tail = new_region;
1328 lang_memory_region_list_tail = &new_region->next;
1330 return new_region;
1333 void
1334 lang_memory_region_alias (const char * alias, const char * region_name)
1336 lang_memory_region_name * n;
1337 lang_memory_region_type * r;
1338 lang_memory_region_type * region;
1340 /* The default region must be unique. This ensures that it is not necessary
1341 to iterate through the name list if someone wants the check if a region is
1342 the default memory region. */
1343 if (strcmp (region_name, DEFAULT_MEMORY_REGION) == 0
1344 || strcmp (alias, DEFAULT_MEMORY_REGION) == 0)
1345 einfo (_("%F%P:%S: error: alias for default memory region\n"));
1347 /* Look for the target region and check if the alias is not already
1348 in use. */
1349 region = NULL;
1350 for (r = lang_memory_region_list; r != NULL; r = r->next)
1351 for (n = &r->name_list; n != NULL; n = n->next)
1353 if (region == NULL && strcmp (n->name, region_name) == 0)
1354 region = r;
1355 if (strcmp (n->name, alias) == 0)
1356 einfo (_("%F%P:%S: error: redefinition of memory region "
1357 "alias `%s'\n"),
1358 alias);
1361 /* Check if the target region exists. */
1362 if (region == NULL)
1363 einfo (_("%F%P:%S: error: memory region `%s' "
1364 "for alias `%s' does not exist\n"),
1365 region_name,
1366 alias);
1368 /* Add alias to region name list. */
1369 n = (lang_memory_region_name *) stat_alloc (sizeof (lang_memory_region_name));
1370 n->name = xstrdup (alias);
1371 n->next = region->name_list.next;
1372 region->name_list.next = n;
1375 static lang_memory_region_type *
1376 lang_memory_default (asection * section)
1378 lang_memory_region_type *p;
1380 flagword sec_flags = section->flags;
1382 /* Override SEC_DATA to mean a writable section. */
1383 if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
1384 sec_flags |= SEC_DATA;
1386 for (p = lang_memory_region_list; p != NULL; p = p->next)
1388 if ((p->flags & sec_flags) != 0
1389 && (p->not_flags & sec_flags) == 0)
1391 return p;
1394 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
1397 /* Find or create an output_section_statement with the given NAME.
1398 If CONSTRAINT is non-zero match one with that constraint, otherwise
1399 match any non-negative constraint. If CREATE, always make a
1400 new output_section_statement for SPECIAL CONSTRAINT. */
1402 lang_output_section_statement_type *
1403 lang_output_section_statement_lookup (const char *name,
1404 int constraint,
1405 bfd_boolean create)
1407 struct out_section_hash_entry *entry;
1409 entry = ((struct out_section_hash_entry *)
1410 bfd_hash_lookup (&output_section_statement_table, name,
1411 create, FALSE));
1412 if (entry == NULL)
1414 if (create)
1415 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1416 return NULL;
1419 if (entry->s.output_section_statement.name != NULL)
1421 /* We have a section of this name, but it might not have the correct
1422 constraint. */
1423 struct out_section_hash_entry *last_ent;
1425 name = entry->s.output_section_statement.name;
1426 if (create && constraint == SPECIAL)
1427 /* Not traversing to the end reverses the order of the second
1428 and subsequent SPECIAL sections in the hash table chain,
1429 but that shouldn't matter. */
1430 last_ent = entry;
1431 else
1434 if (constraint == entry->s.output_section_statement.constraint
1435 || (constraint == 0
1436 && entry->s.output_section_statement.constraint >= 0))
1437 return &entry->s.output_section_statement;
1438 last_ent = entry;
1439 entry = (struct out_section_hash_entry *) entry->root.next;
1441 while (entry != NULL
1442 && name == entry->s.output_section_statement.name);
1444 if (!create)
1445 return NULL;
1447 entry
1448 = ((struct out_section_hash_entry *)
1449 output_section_statement_newfunc (NULL,
1450 &output_section_statement_table,
1451 name));
1452 if (entry == NULL)
1454 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1455 return NULL;
1457 entry->root = last_ent->root;
1458 last_ent->root.next = &entry->root;
1461 entry->s.output_section_statement.name = name;
1462 entry->s.output_section_statement.constraint = constraint;
1463 return &entry->s.output_section_statement;
1466 /* Find the next output_section_statement with the same name as OS.
1467 If CONSTRAINT is non-zero, find one with that constraint otherwise
1468 match any non-negative constraint. */
1470 lang_output_section_statement_type *
1471 next_matching_output_section_statement (lang_output_section_statement_type *os,
1472 int constraint)
1474 /* All output_section_statements are actually part of a
1475 struct out_section_hash_entry. */
1476 struct out_section_hash_entry *entry = (struct out_section_hash_entry *)
1477 ((char *) os
1478 - offsetof (struct out_section_hash_entry, s.output_section_statement));
1479 const char *name = os->name;
1481 ASSERT (name == entry->root.string);
1484 entry = (struct out_section_hash_entry *) entry->root.next;
1485 if (entry == NULL
1486 || name != entry->s.output_section_statement.name)
1487 return NULL;
1489 while (constraint != entry->s.output_section_statement.constraint
1490 && (constraint != 0
1491 || entry->s.output_section_statement.constraint < 0));
1493 return &entry->s.output_section_statement;
1496 /* A variant of lang_output_section_find used by place_orphan.
1497 Returns the output statement that should precede a new output
1498 statement for SEC. If an exact match is found on certain flags,
1499 sets *EXACT too. */
1501 lang_output_section_statement_type *
1502 lang_output_section_find_by_flags (const asection *sec,
1503 lang_output_section_statement_type **exact,
1504 lang_match_sec_type_func match_type)
1506 lang_output_section_statement_type *first, *look, *found;
1507 flagword flags;
1509 /* We know the first statement on this list is *ABS*. May as well
1510 skip it. */
1511 first = &lang_output_section_statement.head->output_section_statement;
1512 first = first->next;
1514 /* First try for an exact match. */
1515 found = NULL;
1516 for (look = first; look; look = look->next)
1518 flags = look->flags;
1519 if (look->bfd_section != NULL)
1521 flags = look->bfd_section->flags;
1522 if (match_type && !match_type (link_info.output_bfd,
1523 look->bfd_section,
1524 sec->owner, sec))
1525 continue;
1527 flags ^= sec->flags;
1528 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY
1529 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1530 found = look;
1532 if (found != NULL)
1534 if (exact != NULL)
1535 *exact = found;
1536 return found;
1539 if ((sec->flags & SEC_CODE) != 0
1540 && (sec->flags & SEC_ALLOC) != 0)
1542 /* Try for a rw code section. */
1543 for (look = first; look; look = look->next)
1545 flags = look->flags;
1546 if (look->bfd_section != NULL)
1548 flags = look->bfd_section->flags;
1549 if (match_type && !match_type (link_info.output_bfd,
1550 look->bfd_section,
1551 sec->owner, sec))
1552 continue;
1554 flags ^= sec->flags;
1555 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1556 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1557 found = look;
1560 else if ((sec->flags & (SEC_READONLY | SEC_THREAD_LOCAL)) != 0
1561 && (sec->flags & SEC_ALLOC) != 0)
1563 /* .rodata can go after .text, .sdata2 after .rodata. */
1564 for (look = first; look; look = look->next)
1566 flags = look->flags;
1567 if (look->bfd_section != NULL)
1569 flags = look->bfd_section->flags;
1570 if (match_type && !match_type (link_info.output_bfd,
1571 look->bfd_section,
1572 sec->owner, sec))
1573 continue;
1575 flags ^= sec->flags;
1576 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1577 | SEC_READONLY))
1578 && !(look->flags & (SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1579 found = look;
1582 else if ((sec->flags & SEC_SMALL_DATA) != 0
1583 && (sec->flags & SEC_ALLOC) != 0)
1585 /* .sdata goes after .data, .sbss after .sdata. */
1586 for (look = first; look; look = look->next)
1588 flags = look->flags;
1589 if (look->bfd_section != NULL)
1591 flags = look->bfd_section->flags;
1592 if (match_type && !match_type (link_info.output_bfd,
1593 look->bfd_section,
1594 sec->owner, sec))
1595 continue;
1597 flags ^= sec->flags;
1598 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1599 | SEC_THREAD_LOCAL))
1600 || ((look->flags & SEC_SMALL_DATA)
1601 && !(sec->flags & SEC_HAS_CONTENTS)))
1602 found = look;
1605 else if ((sec->flags & SEC_HAS_CONTENTS) != 0
1606 && (sec->flags & SEC_ALLOC) != 0)
1608 /* .data goes after .rodata. */
1609 for (look = first; look; look = look->next)
1611 flags = look->flags;
1612 if (look->bfd_section != NULL)
1614 flags = look->bfd_section->flags;
1615 if (match_type && !match_type (link_info.output_bfd,
1616 look->bfd_section,
1617 sec->owner, sec))
1618 continue;
1620 flags ^= sec->flags;
1621 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1622 | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1623 found = look;
1626 else if ((sec->flags & SEC_ALLOC) != 0)
1628 /* .bss goes after any other alloc section. */
1629 for (look = first; look; look = look->next)
1631 flags = look->flags;
1632 if (look->bfd_section != NULL)
1634 flags = look->bfd_section->flags;
1635 if (match_type && !match_type (link_info.output_bfd,
1636 look->bfd_section,
1637 sec->owner, sec))
1638 continue;
1640 flags ^= sec->flags;
1641 if (!(flags & SEC_ALLOC))
1642 found = look;
1645 else
1647 /* non-alloc go last. */
1648 for (look = first; look; look = look->next)
1650 flags = look->flags;
1651 if (look->bfd_section != NULL)
1652 flags = look->bfd_section->flags;
1653 flags ^= sec->flags;
1654 if (!(flags & SEC_DEBUGGING))
1655 found = look;
1657 return found;
1660 if (found || !match_type)
1661 return found;
1663 return lang_output_section_find_by_flags (sec, NULL, NULL);
1666 /* Find the last output section before given output statement.
1667 Used by place_orphan. */
1669 static asection *
1670 output_prev_sec_find (lang_output_section_statement_type *os)
1672 lang_output_section_statement_type *lookup;
1674 for (lookup = os->prev; lookup != NULL; lookup = lookup->prev)
1676 if (lookup->constraint < 0)
1677 continue;
1679 if (lookup->bfd_section != NULL && lookup->bfd_section->owner != NULL)
1680 return lookup->bfd_section;
1683 return NULL;
1686 /* Look for a suitable place for a new output section statement. The
1687 idea is to skip over anything that might be inside a SECTIONS {}
1688 statement in a script, before we find another output section
1689 statement. Assignments to "dot" before an output section statement
1690 are assumed to belong to it, except in two cases; The first
1691 assignment to dot, and assignments before non-alloc sections.
1692 Otherwise we might put an orphan before . = . + SIZEOF_HEADERS or
1693 similar assignments that set the initial address, or we might
1694 insert non-alloc note sections among assignments setting end of
1695 image symbols. */
1697 static lang_statement_union_type **
1698 insert_os_after (lang_output_section_statement_type *after)
1700 lang_statement_union_type **where;
1701 lang_statement_union_type **assign = NULL;
1702 bfd_boolean ignore_first;
1704 ignore_first
1705 = after == &lang_output_section_statement.head->output_section_statement;
1707 for (where = &after->header.next;
1708 *where != NULL;
1709 where = &(*where)->header.next)
1711 switch ((*where)->header.type)
1713 case lang_assignment_statement_enum:
1714 if (assign == NULL)
1716 lang_assignment_statement_type *ass;
1718 ass = &(*where)->assignment_statement;
1719 if (ass->exp->type.node_class != etree_assert
1720 && ass->exp->assign.dst[0] == '.'
1721 && ass->exp->assign.dst[1] == 0
1722 && !ignore_first)
1723 assign = where;
1725 ignore_first = FALSE;
1726 continue;
1727 case lang_wild_statement_enum:
1728 case lang_input_section_enum:
1729 case lang_object_symbols_statement_enum:
1730 case lang_fill_statement_enum:
1731 case lang_data_statement_enum:
1732 case lang_reloc_statement_enum:
1733 case lang_padding_statement_enum:
1734 case lang_constructors_statement_enum:
1735 assign = NULL;
1736 continue;
1737 case lang_output_section_statement_enum:
1738 if (assign != NULL)
1740 asection *s = (*where)->output_section_statement.bfd_section;
1742 if (s == NULL
1743 || s->map_head.s == NULL
1744 || (s->flags & SEC_ALLOC) != 0)
1745 where = assign;
1747 break;
1748 case lang_input_statement_enum:
1749 case lang_address_statement_enum:
1750 case lang_target_statement_enum:
1751 case lang_output_statement_enum:
1752 case lang_group_statement_enum:
1753 case lang_insert_statement_enum:
1754 continue;
1756 break;
1759 return where;
1762 lang_output_section_statement_type *
1763 lang_insert_orphan (asection *s,
1764 const char *secname,
1765 int constraint,
1766 lang_output_section_statement_type *after,
1767 struct orphan_save *place,
1768 etree_type *address,
1769 lang_statement_list_type *add_child)
1771 lang_statement_list_type add;
1772 const char *ps;
1773 lang_output_section_statement_type *os;
1774 lang_output_section_statement_type **os_tail;
1776 /* If we have found an appropriate place for the output section
1777 statements for this orphan, add them to our own private list,
1778 inserting them later into the global statement list. */
1779 if (after != NULL)
1781 lang_list_init (&add);
1782 push_stat_ptr (&add);
1785 if (link_info.relocatable || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)
1786 address = exp_intop (0);
1788 os_tail = ((lang_output_section_statement_type **)
1789 lang_output_section_statement.tail);
1790 os = lang_enter_output_section_statement (secname, address, normal_section,
1791 NULL, NULL, NULL, constraint);
1793 ps = NULL;
1794 if (config.build_constructors && *os_tail == os)
1796 /* If the name of the section is representable in C, then create
1797 symbols to mark the start and the end of the section. */
1798 for (ps = secname; *ps != '\0'; ps++)
1799 if (! ISALNUM ((unsigned char) *ps) && *ps != '_')
1800 break;
1801 if (*ps == '\0')
1803 char *symname;
1804 etree_type *e_align;
1806 symname = (char *) xmalloc (ps - secname + sizeof "__start_" + 1);
1807 symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1808 sprintf (symname + (symname[0] != 0), "__start_%s", secname);
1809 e_align = exp_unop (ALIGN_K,
1810 exp_intop ((bfd_vma) 1 << s->alignment_power));
1811 lang_add_assignment (exp_assign (".", e_align));
1812 lang_add_assignment (exp_provide (symname,
1813 exp_unop (ABSOLUTE,
1814 exp_nameop (NAME, ".")),
1815 FALSE));
1819 if (add_child == NULL)
1820 add_child = &os->children;
1821 lang_add_section (add_child, s, os);
1823 if (after && (s->flags & (SEC_LOAD | SEC_ALLOC)) != 0)
1825 const char *region = (after->region
1826 ? after->region->name_list.name
1827 : DEFAULT_MEMORY_REGION);
1828 const char *lma_region = (after->lma_region
1829 ? after->lma_region->name_list.name
1830 : NULL);
1831 lang_leave_output_section_statement (NULL, region, after->phdrs,
1832 lma_region);
1834 else
1835 lang_leave_output_section_statement (NULL, DEFAULT_MEMORY_REGION, NULL,
1836 NULL);
1838 if (ps != NULL && *ps == '\0')
1840 char *symname;
1842 symname = (char *) xmalloc (ps - secname + sizeof "__stop_" + 1);
1843 symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1844 sprintf (symname + (symname[0] != 0), "__stop_%s", secname);
1845 lang_add_assignment (exp_provide (symname,
1846 exp_nameop (NAME, "."),
1847 FALSE));
1850 /* Restore the global list pointer. */
1851 if (after != NULL)
1852 pop_stat_ptr ();
1854 if (after != NULL && os->bfd_section != NULL)
1856 asection *snew, *as;
1858 snew = os->bfd_section;
1860 /* Shuffle the bfd section list to make the output file look
1861 neater. This is really only cosmetic. */
1862 if (place->section == NULL
1863 && after != (&lang_output_section_statement.head
1864 ->output_section_statement))
1866 asection *bfd_section = after->bfd_section;
1868 /* If the output statement hasn't been used to place any input
1869 sections (and thus doesn't have an output bfd_section),
1870 look for the closest prior output statement having an
1871 output section. */
1872 if (bfd_section == NULL)
1873 bfd_section = output_prev_sec_find (after);
1875 if (bfd_section != NULL && bfd_section != snew)
1876 place->section = &bfd_section->next;
1879 if (place->section == NULL)
1880 place->section = &link_info.output_bfd->sections;
1882 as = *place->section;
1884 if (!as)
1886 /* Put the section at the end of the list. */
1888 /* Unlink the section. */
1889 bfd_section_list_remove (link_info.output_bfd, snew);
1891 /* Now tack it back on in the right place. */
1892 bfd_section_list_append (link_info.output_bfd, snew);
1894 else if (as != snew && as->prev != snew)
1896 /* Unlink the section. */
1897 bfd_section_list_remove (link_info.output_bfd, snew);
1899 /* Now tack it back on in the right place. */
1900 bfd_section_list_insert_before (link_info.output_bfd, as, snew);
1903 /* Save the end of this list. Further ophans of this type will
1904 follow the one we've just added. */
1905 place->section = &snew->next;
1907 /* The following is non-cosmetic. We try to put the output
1908 statements in some sort of reasonable order here, because they
1909 determine the final load addresses of the orphan sections.
1910 In addition, placing output statements in the wrong order may
1911 require extra segments. For instance, given a typical
1912 situation of all read-only sections placed in one segment and
1913 following that a segment containing all the read-write
1914 sections, we wouldn't want to place an orphan read/write
1915 section before or amongst the read-only ones. */
1916 if (add.head != NULL)
1918 lang_output_section_statement_type *newly_added_os;
1920 if (place->stmt == NULL)
1922 lang_statement_union_type **where = insert_os_after (after);
1924 *add.tail = *where;
1925 *where = add.head;
1927 place->os_tail = &after->next;
1929 else
1931 /* Put it after the last orphan statement we added. */
1932 *add.tail = *place->stmt;
1933 *place->stmt = add.head;
1936 /* Fix the global list pointer if we happened to tack our
1937 new list at the tail. */
1938 if (*stat_ptr->tail == add.head)
1939 stat_ptr->tail = add.tail;
1941 /* Save the end of this list. */
1942 place->stmt = add.tail;
1944 /* Do the same for the list of output section statements. */
1945 newly_added_os = *os_tail;
1946 *os_tail = NULL;
1947 newly_added_os->prev = (lang_output_section_statement_type *)
1948 ((char *) place->os_tail
1949 - offsetof (lang_output_section_statement_type, next));
1950 newly_added_os->next = *place->os_tail;
1951 if (newly_added_os->next != NULL)
1952 newly_added_os->next->prev = newly_added_os;
1953 *place->os_tail = newly_added_os;
1954 place->os_tail = &newly_added_os->next;
1956 /* Fixing the global list pointer here is a little different.
1957 We added to the list in lang_enter_output_section_statement,
1958 trimmed off the new output_section_statment above when
1959 assigning *os_tail = NULL, but possibly added it back in
1960 the same place when assigning *place->os_tail. */
1961 if (*os_tail == NULL)
1962 lang_output_section_statement.tail
1963 = (lang_statement_union_type **) os_tail;
1966 return os;
1969 static void
1970 lang_map_flags (flagword flag)
1972 if (flag & SEC_ALLOC)
1973 minfo ("a");
1975 if (flag & SEC_CODE)
1976 minfo ("x");
1978 if (flag & SEC_READONLY)
1979 minfo ("r");
1981 if (flag & SEC_DATA)
1982 minfo ("w");
1984 if (flag & SEC_LOAD)
1985 minfo ("l");
1988 void
1989 lang_map (void)
1991 lang_memory_region_type *m;
1992 bfd_boolean dis_header_printed = FALSE;
1993 bfd *p;
1995 LANG_FOR_EACH_INPUT_STATEMENT (file)
1997 asection *s;
1999 if ((file->the_bfd->flags & (BFD_LINKER_CREATED | DYNAMIC)) != 0
2000 || file->just_syms_flag)
2001 continue;
2003 for (s = file->the_bfd->sections; s != NULL; s = s->next)
2004 if ((s->output_section == NULL
2005 || s->output_section->owner != link_info.output_bfd)
2006 && (s->flags & (SEC_LINKER_CREATED | SEC_KEEP)) == 0)
2008 if (! dis_header_printed)
2010 fprintf (config.map_file, _("\nDiscarded input sections\n\n"));
2011 dis_header_printed = TRUE;
2014 print_input_section (s, TRUE);
2018 minfo (_("\nMemory Configuration\n\n"));
2019 fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
2020 _("Name"), _("Origin"), _("Length"), _("Attributes"));
2022 for (m = lang_memory_region_list; m != NULL; m = m->next)
2024 char buf[100];
2025 int len;
2027 fprintf (config.map_file, "%-16s ", m->name_list.name);
2029 sprintf_vma (buf, m->origin);
2030 minfo ("0x%s ", buf);
2031 len = strlen (buf);
2032 while (len < 16)
2034 print_space ();
2035 ++len;
2038 minfo ("0x%V", m->length);
2039 if (m->flags || m->not_flags)
2041 #ifndef BFD64
2042 minfo (" ");
2043 #endif
2044 if (m->flags)
2046 print_space ();
2047 lang_map_flags (m->flags);
2050 if (m->not_flags)
2052 minfo (" !");
2053 lang_map_flags (m->not_flags);
2057 print_nl ();
2060 fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
2062 if (! link_info.reduce_memory_overheads)
2064 obstack_begin (&map_obstack, 1000);
2065 for (p = link_info.input_bfds; p != (bfd *) NULL; p = p->link_next)
2066 bfd_map_over_sections (p, init_map_userdata, 0);
2067 bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0);
2069 lang_statement_iteration ++;
2070 print_statements ();
2073 static void
2074 init_map_userdata (bfd *abfd ATTRIBUTE_UNUSED,
2075 asection *sec,
2076 void *data ATTRIBUTE_UNUSED)
2078 fat_section_userdata_type *new_data
2079 = ((fat_section_userdata_type *) (stat_alloc
2080 (sizeof (fat_section_userdata_type))));
2082 ASSERT (get_userdata (sec) == NULL);
2083 get_userdata (sec) = new_data;
2084 new_data->map_symbol_def_tail = &new_data->map_symbol_def_head;
2085 new_data->map_symbol_def_count = 0;
2088 static bfd_boolean
2089 sort_def_symbol (struct bfd_link_hash_entry *hash_entry,
2090 void *info ATTRIBUTE_UNUSED)
2092 if (hash_entry->type == bfd_link_hash_defined
2093 || hash_entry->type == bfd_link_hash_defweak)
2095 struct fat_user_section_struct *ud;
2096 struct map_symbol_def *def;
2098 ud = (struct fat_user_section_struct *)
2099 get_userdata (hash_entry->u.def.section);
2100 if (! ud)
2102 /* ??? What do we have to do to initialize this beforehand? */
2103 /* The first time we get here is bfd_abs_section... */
2104 init_map_userdata (0, hash_entry->u.def.section, 0);
2105 ud = (struct fat_user_section_struct *)
2106 get_userdata (hash_entry->u.def.section);
2108 else if (!ud->map_symbol_def_tail)
2109 ud->map_symbol_def_tail = &ud->map_symbol_def_head;
2111 def = (struct map_symbol_def *) obstack_alloc (&map_obstack, sizeof *def);
2112 def->entry = hash_entry;
2113 *(ud->map_symbol_def_tail) = def;
2114 ud->map_symbol_def_tail = &def->next;
2115 ud->map_symbol_def_count++;
2117 return TRUE;
2120 /* Initialize an output section. */
2122 static void
2123 init_os (lang_output_section_statement_type *s, flagword flags)
2125 if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
2126 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
2128 if (s->constraint != SPECIAL)
2129 s->bfd_section = bfd_get_section_by_name (link_info.output_bfd, s->name);
2130 if (s->bfd_section == NULL)
2131 s->bfd_section = bfd_make_section_anyway_with_flags (link_info.output_bfd,
2132 s->name, flags);
2133 if (s->bfd_section == NULL)
2135 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
2136 link_info.output_bfd->xvec->name, s->name);
2138 s->bfd_section->output_section = s->bfd_section;
2139 s->bfd_section->output_offset = 0;
2141 if (!link_info.reduce_memory_overheads)
2143 fat_section_userdata_type *new_userdata = (fat_section_userdata_type *)
2144 stat_alloc (sizeof (fat_section_userdata_type));
2145 memset (new_userdata, 0, sizeof (fat_section_userdata_type));
2146 get_userdata (s->bfd_section) = new_userdata;
2149 /* If there is a base address, make sure that any sections it might
2150 mention are initialized. */
2151 if (s->addr_tree != NULL)
2152 exp_init_os (s->addr_tree);
2154 if (s->load_base != NULL)
2155 exp_init_os (s->load_base);
2157 /* If supplied an alignment, set it. */
2158 if (s->section_alignment != -1)
2159 s->bfd_section->alignment_power = s->section_alignment;
2162 /* Make sure that all output sections mentioned in an expression are
2163 initialized. */
2165 static void
2166 exp_init_os (etree_type *exp)
2168 switch (exp->type.node_class)
2170 case etree_assign:
2171 case etree_provide:
2172 exp_init_os (exp->assign.src);
2173 break;
2175 case etree_binary:
2176 exp_init_os (exp->binary.lhs);
2177 exp_init_os (exp->binary.rhs);
2178 break;
2180 case etree_trinary:
2181 exp_init_os (exp->trinary.cond);
2182 exp_init_os (exp->trinary.lhs);
2183 exp_init_os (exp->trinary.rhs);
2184 break;
2186 case etree_assert:
2187 exp_init_os (exp->assert_s.child);
2188 break;
2190 case etree_unary:
2191 exp_init_os (exp->unary.child);
2192 break;
2194 case etree_name:
2195 switch (exp->type.node_code)
2197 case ADDR:
2198 case LOADADDR:
2199 case SIZEOF:
2201 lang_output_section_statement_type *os;
2203 os = lang_output_section_find (exp->name.name);
2204 if (os != NULL && os->bfd_section == NULL)
2205 init_os (os, 0);
2208 break;
2210 default:
2211 break;
2215 static void
2216 section_already_linked (bfd *abfd, asection *sec, void *data)
2218 lang_input_statement_type *entry = (lang_input_statement_type *) data;
2220 /* If we are only reading symbols from this object, then we want to
2221 discard all sections. */
2222 if (entry->just_syms_flag)
2224 bfd_link_just_syms (abfd, sec, &link_info);
2225 return;
2228 if (!(abfd->flags & DYNAMIC))
2229 bfd_section_already_linked (abfd, sec, &link_info);
2232 /* The wild routines.
2234 These expand statements like *(.text) and foo.o to a list of
2235 explicit actions, like foo.o(.text), bar.o(.text) and
2236 foo.o(.text, .data). */
2238 /* Add SECTION to the output section OUTPUT. Do this by creating a
2239 lang_input_section statement which is placed at PTR. FILE is the
2240 input file which holds SECTION. */
2242 void
2243 lang_add_section (lang_statement_list_type *ptr,
2244 asection *section,
2245 lang_output_section_statement_type *output)
2247 flagword flags = section->flags;
2248 bfd_boolean discard;
2249 lang_input_section_type *new_section;
2251 /* Discard sections marked with SEC_EXCLUDE. */
2252 discard = (flags & SEC_EXCLUDE) != 0;
2254 /* Discard input sections which are assigned to a section named
2255 DISCARD_SECTION_NAME. */
2256 if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
2257 discard = TRUE;
2259 /* Discard debugging sections if we are stripping debugging
2260 information. */
2261 if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
2262 && (flags & SEC_DEBUGGING) != 0)
2263 discard = TRUE;
2265 if (discard)
2267 if (section->output_section == NULL)
2269 /* This prevents future calls from assigning this section. */
2270 section->output_section = bfd_abs_section_ptr;
2272 return;
2275 if (section->output_section != NULL)
2276 return;
2278 /* We don't copy the SEC_NEVER_LOAD flag from an input section
2279 to an output section, because we want to be able to include a
2280 SEC_NEVER_LOAD section in the middle of an otherwise loaded
2281 section (I don't know why we want to do this, but we do).
2282 build_link_order in ldwrite.c handles this case by turning
2283 the embedded SEC_NEVER_LOAD section into a fill. */
2284 flags &= ~ SEC_NEVER_LOAD;
2286 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
2287 already been processed. One reason to do this is that on pe
2288 format targets, .text$foo sections go into .text and it's odd
2289 to see .text with SEC_LINK_ONCE set. */
2291 if (!link_info.relocatable)
2292 flags &= ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC);
2294 switch (output->sectype)
2296 case normal_section:
2297 case overlay_section:
2298 break;
2299 case noalloc_section:
2300 flags &= ~SEC_ALLOC;
2301 break;
2302 case noload_section:
2303 flags &= ~SEC_LOAD;
2304 flags |= SEC_NEVER_LOAD;
2305 /* Unfortunately GNU ld has managed to evolve two different
2306 meanings to NOLOAD in scripts. ELF gets a .bss style noload,
2307 alloc, no contents section. All others get a noload, noalloc
2308 section. */
2309 if (bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour)
2310 flags &= ~SEC_HAS_CONTENTS;
2311 else
2312 flags &= ~SEC_ALLOC;
2313 break;
2316 if (output->bfd_section == NULL)
2317 init_os (output, flags);
2319 /* If SEC_READONLY is not set in the input section, then clear
2320 it from the output section. */
2321 output->bfd_section->flags &= flags | ~SEC_READONLY;
2323 if (output->bfd_section->linker_has_input)
2325 /* Only set SEC_READONLY flag on the first input section. */
2326 flags &= ~ SEC_READONLY;
2328 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
2329 if ((output->bfd_section->flags & (SEC_MERGE | SEC_STRINGS))
2330 != (flags & (SEC_MERGE | SEC_STRINGS))
2331 || ((flags & SEC_MERGE) != 0
2332 && output->bfd_section->entsize != section->entsize))
2334 output->bfd_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
2335 flags &= ~ (SEC_MERGE | SEC_STRINGS);
2338 output->bfd_section->flags |= flags;
2340 if (!output->bfd_section->linker_has_input)
2342 output->bfd_section->linker_has_input = 1;
2343 /* This must happen after flags have been updated. The output
2344 section may have been created before we saw its first input
2345 section, eg. for a data statement. */
2346 bfd_init_private_section_data (section->owner, section,
2347 link_info.output_bfd,
2348 output->bfd_section,
2349 &link_info);
2350 if ((flags & SEC_MERGE) != 0)
2351 output->bfd_section->entsize = section->entsize;
2354 if ((flags & SEC_TIC54X_BLOCK) != 0
2355 && bfd_get_arch (section->owner) == bfd_arch_tic54x)
2357 /* FIXME: This value should really be obtained from the bfd... */
2358 output->block_value = 128;
2361 if (section->alignment_power > output->bfd_section->alignment_power)
2362 output->bfd_section->alignment_power = section->alignment_power;
2364 section->output_section = output->bfd_section;
2366 if (!link_info.relocatable
2367 && !stripped_excluded_sections)
2369 asection *s = output->bfd_section->map_tail.s;
2370 output->bfd_section->map_tail.s = section;
2371 section->map_head.s = NULL;
2372 section->map_tail.s = s;
2373 if (s != NULL)
2374 s->map_head.s = section;
2375 else
2376 output->bfd_section->map_head.s = section;
2379 /* Add a section reference to the list. */
2380 new_section = new_stat (lang_input_section, ptr);
2381 new_section->section = section;
2384 /* Handle wildcard sorting. This returns the lang_input_section which
2385 should follow the one we are going to create for SECTION and FILE,
2386 based on the sorting requirements of WILD. It returns NULL if the
2387 new section should just go at the end of the current list. */
2389 static lang_statement_union_type *
2390 wild_sort (lang_wild_statement_type *wild,
2391 struct wildcard_list *sec,
2392 lang_input_statement_type *file,
2393 asection *section)
2395 lang_statement_union_type *l;
2397 if (!wild->filenames_sorted
2398 && (sec == NULL || sec->spec.sorted == none))
2399 return NULL;
2401 for (l = wild->children.head; l != NULL; l = l->header.next)
2403 lang_input_section_type *ls;
2405 if (l->header.type != lang_input_section_enum)
2406 continue;
2407 ls = &l->input_section;
2409 /* Sorting by filename takes precedence over sorting by section
2410 name. */
2412 if (wild->filenames_sorted)
2414 const char *fn, *ln;
2415 bfd_boolean fa, la;
2416 int i;
2418 /* The PE support for the .idata section as generated by
2419 dlltool assumes that files will be sorted by the name of
2420 the archive and then the name of the file within the
2421 archive. */
2423 if (file->the_bfd != NULL
2424 && bfd_my_archive (file->the_bfd) != NULL)
2426 fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
2427 fa = TRUE;
2429 else
2431 fn = file->filename;
2432 fa = FALSE;
2435 if (bfd_my_archive (ls->section->owner) != NULL)
2437 ln = bfd_get_filename (bfd_my_archive (ls->section->owner));
2438 la = TRUE;
2440 else
2442 ln = ls->section->owner->filename;
2443 la = FALSE;
2446 i = strcmp (fn, ln);
2447 if (i > 0)
2448 continue;
2449 else if (i < 0)
2450 break;
2452 if (fa || la)
2454 if (fa)
2455 fn = file->filename;
2456 if (la)
2457 ln = ls->section->owner->filename;
2459 i = strcmp (fn, ln);
2460 if (i > 0)
2461 continue;
2462 else if (i < 0)
2463 break;
2467 /* Here either the files are not sorted by name, or we are
2468 looking at the sections for this file. */
2470 if (sec != NULL && sec->spec.sorted != none)
2471 if (compare_section (sec->spec.sorted, section, ls->section) < 0)
2472 break;
2475 return l;
2478 /* Expand a wild statement for a particular FILE. SECTION may be
2479 NULL, in which case it is a wild card. */
2481 static void
2482 output_section_callback (lang_wild_statement_type *ptr,
2483 struct wildcard_list *sec,
2484 asection *section,
2485 lang_input_statement_type *file,
2486 void *output)
2488 lang_statement_union_type *before;
2489 lang_output_section_statement_type *os;
2491 os = (lang_output_section_statement_type *) output;
2493 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2494 if (unique_section_p (section, os))
2495 return;
2497 before = wild_sort (ptr, sec, file, section);
2499 /* Here BEFORE points to the lang_input_section which
2500 should follow the one we are about to add. If BEFORE
2501 is NULL, then the section should just go at the end
2502 of the current list. */
2504 if (before == NULL)
2505 lang_add_section (&ptr->children, section, os);
2506 else
2508 lang_statement_list_type list;
2509 lang_statement_union_type **pp;
2511 lang_list_init (&list);
2512 lang_add_section (&list, section, os);
2514 /* If we are discarding the section, LIST.HEAD will
2515 be NULL. */
2516 if (list.head != NULL)
2518 ASSERT (list.head->header.next == NULL);
2520 for (pp = &ptr->children.head;
2521 *pp != before;
2522 pp = &(*pp)->header.next)
2523 ASSERT (*pp != NULL);
2525 list.head->header.next = *pp;
2526 *pp = list.head;
2531 /* Check if all sections in a wild statement for a particular FILE
2532 are readonly. */
2534 static void
2535 check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
2536 struct wildcard_list *sec ATTRIBUTE_UNUSED,
2537 asection *section,
2538 lang_input_statement_type *file ATTRIBUTE_UNUSED,
2539 void *output)
2541 lang_output_section_statement_type *os;
2543 os = (lang_output_section_statement_type *) output;
2545 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2546 if (unique_section_p (section, os))
2547 return;
2549 if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0)
2550 os->all_input_readonly = FALSE;
2553 /* This is passed a file name which must have been seen already and
2554 added to the statement tree. We will see if it has been opened
2555 already and had its symbols read. If not then we'll read it. */
2557 static lang_input_statement_type *
2558 lookup_name (const char *name)
2560 lang_input_statement_type *search;
2562 for (search = (lang_input_statement_type *) input_file_chain.head;
2563 search != NULL;
2564 search = (lang_input_statement_type *) search->next_real_file)
2566 /* Use the local_sym_name as the name of the file that has
2567 already been loaded as filename might have been transformed
2568 via the search directory lookup mechanism. */
2569 const char *filename = search->local_sym_name;
2571 if (filename != NULL
2572 && strcmp (filename, name) == 0)
2573 break;
2576 if (search == NULL)
2577 search = new_afile (name, lang_input_file_is_search_file_enum,
2578 default_target, FALSE);
2580 /* If we have already added this file, or this file is not real
2581 don't add this file. */
2582 if (search->loaded || !search->real)
2583 return search;
2585 if (! load_symbols (search, NULL))
2586 return NULL;
2588 return search;
2591 /* Save LIST as a list of libraries whose symbols should not be exported. */
2593 struct excluded_lib
2595 char *name;
2596 struct excluded_lib *next;
2598 static struct excluded_lib *excluded_libs;
2600 void
2601 add_excluded_libs (const char *list)
2603 const char *p = list, *end;
2605 while (*p != '\0')
2607 struct excluded_lib *entry;
2608 end = strpbrk (p, ",:");
2609 if (end == NULL)
2610 end = p + strlen (p);
2611 entry = (struct excluded_lib *) xmalloc (sizeof (*entry));
2612 entry->next = excluded_libs;
2613 entry->name = (char *) xmalloc (end - p + 1);
2614 memcpy (entry->name, p, end - p);
2615 entry->name[end - p] = '\0';
2616 excluded_libs = entry;
2617 if (*end == '\0')
2618 break;
2619 p = end + 1;
2623 static void
2624 check_excluded_libs (bfd *abfd)
2626 struct excluded_lib *lib = excluded_libs;
2628 while (lib)
2630 int len = strlen (lib->name);
2631 const char *filename = lbasename (abfd->filename);
2633 if (strcmp (lib->name, "ALL") == 0)
2635 abfd->no_export = TRUE;
2636 return;
2639 if (strncmp (lib->name, filename, len) == 0
2640 && (filename[len] == '\0'
2641 || (filename[len] == '.' && filename[len + 1] == 'a'
2642 && filename[len + 2] == '\0')))
2644 abfd->no_export = TRUE;
2645 return;
2648 lib = lib->next;
2652 /* Get the symbols for an input file. */
2654 bfd_boolean
2655 load_symbols (lang_input_statement_type *entry,
2656 lang_statement_list_type *place)
2658 char **matching;
2660 if (entry->loaded)
2661 return TRUE;
2663 ldfile_open_file (entry);
2665 /* Do not process further if the file was missing. */
2666 if (entry->missing_file)
2667 return TRUE;
2669 if (! bfd_check_format (entry->the_bfd, bfd_archive)
2670 && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
2672 bfd_error_type err;
2673 bfd_boolean save_ldlang_sysrooted_script;
2674 bfd_boolean save_add_DT_NEEDED_for_regular;
2675 bfd_boolean save_add_DT_NEEDED_for_dynamic;
2676 bfd_boolean save_whole_archive;
2678 err = bfd_get_error ();
2680 /* See if the emulation has some special knowledge. */
2681 if (ldemul_unrecognized_file (entry))
2682 return TRUE;
2684 if (err == bfd_error_file_ambiguously_recognized)
2686 char **p;
2688 einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
2689 einfo (_("%B: matching formats:"), entry->the_bfd);
2690 for (p = matching; *p != NULL; p++)
2691 einfo (" %s", *p);
2692 einfo ("%F\n");
2694 else if (err != bfd_error_file_not_recognized
2695 || place == NULL)
2696 einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
2698 bfd_close (entry->the_bfd);
2699 entry->the_bfd = NULL;
2701 /* Try to interpret the file as a linker script. */
2702 ldfile_open_command_file (entry->filename);
2704 push_stat_ptr (place);
2705 save_ldlang_sysrooted_script = ldlang_sysrooted_script;
2706 ldlang_sysrooted_script = entry->sysrooted;
2707 save_add_DT_NEEDED_for_regular = add_DT_NEEDED_for_regular;
2708 add_DT_NEEDED_for_regular = entry->add_DT_NEEDED_for_regular;
2709 save_add_DT_NEEDED_for_dynamic = add_DT_NEEDED_for_dynamic;
2710 add_DT_NEEDED_for_dynamic = entry->add_DT_NEEDED_for_dynamic;
2711 save_whole_archive = whole_archive;
2712 whole_archive = entry->whole_archive;
2714 ldfile_assumed_script = TRUE;
2715 parser_input = input_script;
2716 /* We want to use the same -Bdynamic/-Bstatic as the one for
2717 ENTRY. */
2718 config.dynamic_link = entry->dynamic;
2719 yyparse ();
2720 ldfile_assumed_script = FALSE;
2722 ldlang_sysrooted_script = save_ldlang_sysrooted_script;
2723 add_DT_NEEDED_for_regular = save_add_DT_NEEDED_for_regular;
2724 add_DT_NEEDED_for_dynamic = save_add_DT_NEEDED_for_dynamic;
2725 whole_archive = save_whole_archive;
2726 pop_stat_ptr ();
2728 return TRUE;
2731 if (ldemul_recognized_file (entry))
2732 return TRUE;
2734 /* We don't call ldlang_add_file for an archive. Instead, the
2735 add_symbols entry point will call ldlang_add_file, via the
2736 add_archive_element callback, for each element of the archive
2737 which is used. */
2738 switch (bfd_get_format (entry->the_bfd))
2740 default:
2741 break;
2743 case bfd_object:
2744 ldlang_add_file (entry);
2745 if (trace_files || trace_file_tries)
2746 info_msg ("%I\n", entry);
2747 break;
2749 case bfd_archive:
2750 check_excluded_libs (entry->the_bfd);
2752 if (entry->whole_archive)
2754 bfd *member = NULL;
2755 bfd_boolean loaded = TRUE;
2757 for (;;)
2759 bfd *subsbfd;
2760 member = bfd_openr_next_archived_file (entry->the_bfd, member);
2762 if (member == NULL)
2763 break;
2765 if (! bfd_check_format (member, bfd_object))
2767 einfo (_("%F%B: member %B in archive is not an object\n"),
2768 entry->the_bfd, member);
2769 loaded = FALSE;
2772 subsbfd = member;
2773 if (!(*link_info.callbacks
2774 ->add_archive_element) (&link_info, member,
2775 "--whole-archive", &subsbfd))
2776 abort ();
2778 /* Potentially, the add_archive_element hook may have set a
2779 substitute BFD for us. */
2780 if (!bfd_link_add_symbols (subsbfd, &link_info))
2782 einfo (_("%F%B: could not read symbols: %E\n"), member);
2783 loaded = FALSE;
2787 entry->loaded = loaded;
2788 return loaded;
2790 break;
2793 if (bfd_link_add_symbols (entry->the_bfd, &link_info))
2794 entry->loaded = TRUE;
2795 else
2796 einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
2798 return entry->loaded;
2801 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
2802 may be NULL, indicating that it is a wildcard. Separate
2803 lang_input_section statements are created for each part of the
2804 expansion; they are added after the wild statement S. OUTPUT is
2805 the output section. */
2807 static void
2808 wild (lang_wild_statement_type *s,
2809 const char *target ATTRIBUTE_UNUSED,
2810 lang_output_section_statement_type *output)
2812 struct wildcard_list *sec;
2814 if (s->handler_data[0]
2815 && s->handler_data[0]->spec.sorted == by_name
2816 && !s->filenames_sorted)
2818 lang_section_bst_type *tree;
2820 walk_wild (s, output_section_callback_fast, output);
2822 tree = s->tree;
2823 if (tree)
2825 output_section_callback_tree_to_list (s, tree, output);
2826 s->tree = NULL;
2829 else
2830 walk_wild (s, output_section_callback, output);
2832 if (default_common_section == NULL)
2833 for (sec = s->section_list; sec != NULL; sec = sec->next)
2834 if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
2836 /* Remember the section that common is going to in case we
2837 later get something which doesn't know where to put it. */
2838 default_common_section = output;
2839 break;
2843 /* Return TRUE iff target is the sought target. */
2845 static int
2846 get_target (const bfd_target *target, void *data)
2848 const char *sought = (const char *) data;
2850 return strcmp (target->name, sought) == 0;
2853 /* Like strcpy() but convert to lower case as well. */
2855 static void
2856 stricpy (char *dest, char *src)
2858 char c;
2860 while ((c = *src++) != 0)
2861 *dest++ = TOLOWER (c);
2863 *dest = 0;
2866 /* Remove the first occurrence of needle (if any) in haystack
2867 from haystack. */
2869 static void
2870 strcut (char *haystack, char *needle)
2872 haystack = strstr (haystack, needle);
2874 if (haystack)
2876 char *src;
2878 for (src = haystack + strlen (needle); *src;)
2879 *haystack++ = *src++;
2881 *haystack = 0;
2885 /* Compare two target format name strings.
2886 Return a value indicating how "similar" they are. */
2888 static int
2889 name_compare (char *first, char *second)
2891 char *copy1;
2892 char *copy2;
2893 int result;
2895 copy1 = (char *) xmalloc (strlen (first) + 1);
2896 copy2 = (char *) xmalloc (strlen (second) + 1);
2898 /* Convert the names to lower case. */
2899 stricpy (copy1, first);
2900 stricpy (copy2, second);
2902 /* Remove size and endian strings from the name. */
2903 strcut (copy1, "big");
2904 strcut (copy1, "little");
2905 strcut (copy2, "big");
2906 strcut (copy2, "little");
2908 /* Return a value based on how many characters match,
2909 starting from the beginning. If both strings are
2910 the same then return 10 * their length. */
2911 for (result = 0; copy1[result] == copy2[result]; result++)
2912 if (copy1[result] == 0)
2914 result *= 10;
2915 break;
2918 free (copy1);
2919 free (copy2);
2921 return result;
2924 /* Set by closest_target_match() below. */
2925 static const bfd_target *winner;
2927 /* Scan all the valid bfd targets looking for one that has the endianness
2928 requirement that was specified on the command line, and is the nearest
2929 match to the original output target. */
2931 static int
2932 closest_target_match (const bfd_target *target, void *data)
2934 const bfd_target *original = (const bfd_target *) data;
2936 if (command_line.endian == ENDIAN_BIG
2937 && target->byteorder != BFD_ENDIAN_BIG)
2938 return 0;
2940 if (command_line.endian == ENDIAN_LITTLE
2941 && target->byteorder != BFD_ENDIAN_LITTLE)
2942 return 0;
2944 /* Must be the same flavour. */
2945 if (target->flavour != original->flavour)
2946 return 0;
2948 /* Ignore generic big and little endian elf vectors. */
2949 if (strcmp (target->name, "elf32-big") == 0
2950 || strcmp (target->name, "elf64-big") == 0
2951 || strcmp (target->name, "elf32-little") == 0
2952 || strcmp (target->name, "elf64-little") == 0)
2953 return 0;
2955 /* If we have not found a potential winner yet, then record this one. */
2956 if (winner == NULL)
2958 winner = target;
2959 return 0;
2962 /* Oh dear, we now have two potential candidates for a successful match.
2963 Compare their names and choose the better one. */
2964 if (name_compare (target->name, original->name)
2965 > name_compare (winner->name, original->name))
2966 winner = target;
2968 /* Keep on searching until wqe have checked them all. */
2969 return 0;
2972 /* Return the BFD target format of the first input file. */
2974 static char *
2975 get_first_input_target (void)
2977 char *target = NULL;
2979 LANG_FOR_EACH_INPUT_STATEMENT (s)
2981 if (s->header.type == lang_input_statement_enum
2982 && s->real)
2984 ldfile_open_file (s);
2986 if (s->the_bfd != NULL
2987 && bfd_check_format (s->the_bfd, bfd_object))
2989 target = bfd_get_target (s->the_bfd);
2991 if (target != NULL)
2992 break;
2997 return target;
3000 const char *
3001 lang_get_output_target (void)
3003 const char *target;
3005 /* Has the user told us which output format to use? */
3006 if (output_target != NULL)
3007 return output_target;
3009 /* No - has the current target been set to something other than
3010 the default? */
3011 if (current_target != default_target)
3012 return current_target;
3014 /* No - can we determine the format of the first input file? */
3015 target = get_first_input_target ();
3016 if (target != NULL)
3017 return target;
3019 /* Failed - use the default output target. */
3020 return default_target;
3023 /* Open the output file. */
3025 static void
3026 open_output (const char *name)
3028 output_target = lang_get_output_target ();
3030 /* Has the user requested a particular endianness on the command
3031 line? */
3032 if (command_line.endian != ENDIAN_UNSET)
3034 const bfd_target *target;
3035 enum bfd_endian desired_endian;
3037 /* Get the chosen target. */
3038 target = bfd_search_for_target (get_target, (void *) output_target);
3040 /* If the target is not supported, we cannot do anything. */
3041 if (target != NULL)
3043 if (command_line.endian == ENDIAN_BIG)
3044 desired_endian = BFD_ENDIAN_BIG;
3045 else
3046 desired_endian = BFD_ENDIAN_LITTLE;
3048 /* See if the target has the wrong endianness. This should
3049 not happen if the linker script has provided big and
3050 little endian alternatives, but some scrips don't do
3051 this. */
3052 if (target->byteorder != desired_endian)
3054 /* If it does, then see if the target provides
3055 an alternative with the correct endianness. */
3056 if (target->alternative_target != NULL
3057 && (target->alternative_target->byteorder == desired_endian))
3058 output_target = target->alternative_target->name;
3059 else
3061 /* Try to find a target as similar as possible to
3062 the default target, but which has the desired
3063 endian characteristic. */
3064 bfd_search_for_target (closest_target_match,
3065 (void *) target);
3067 /* Oh dear - we could not find any targets that
3068 satisfy our requirements. */
3069 if (winner == NULL)
3070 einfo (_("%P: warning: could not find any targets"
3071 " that match endianness requirement\n"));
3072 else
3073 output_target = winner->name;
3079 link_info.output_bfd = bfd_openw (name, output_target);
3081 if (link_info.output_bfd == NULL)
3083 if (bfd_get_error () == bfd_error_invalid_target)
3084 einfo (_("%P%F: target %s not found\n"), output_target);
3086 einfo (_("%P%F: cannot open output file %s: %E\n"), name);
3089 delete_output_file_on_failure = TRUE;
3091 if (! bfd_set_format (link_info.output_bfd, bfd_object))
3092 einfo (_("%P%F:%s: can not make object file: %E\n"), name);
3093 if (! bfd_set_arch_mach (link_info.output_bfd,
3094 ldfile_output_architecture,
3095 ldfile_output_machine))
3096 einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
3098 link_info.hash = bfd_link_hash_table_create (link_info.output_bfd);
3099 if (link_info.hash == NULL)
3100 einfo (_("%P%F: can not create hash table: %E\n"));
3102 bfd_set_gp_size (link_info.output_bfd, g_switch_value);
3105 static void
3106 ldlang_open_output (lang_statement_union_type *statement)
3108 switch (statement->header.type)
3110 case lang_output_statement_enum:
3111 ASSERT (link_info.output_bfd == NULL);
3112 open_output (statement->output_statement.name);
3113 ldemul_set_output_arch ();
3114 if (config.magic_demand_paged && !link_info.relocatable)
3115 link_info.output_bfd->flags |= D_PAGED;
3116 else
3117 link_info.output_bfd->flags &= ~D_PAGED;
3118 if (config.text_read_only)
3119 link_info.output_bfd->flags |= WP_TEXT;
3120 else
3121 link_info.output_bfd->flags &= ~WP_TEXT;
3122 if (link_info.traditional_format)
3123 link_info.output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
3124 else
3125 link_info.output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
3126 break;
3128 case lang_target_statement_enum:
3129 current_target = statement->target_statement.target;
3130 break;
3131 default:
3132 break;
3136 /* Convert between addresses in bytes and sizes in octets.
3137 For currently supported targets, octets_per_byte is always a power
3138 of two, so we can use shifts. */
3139 #define TO_ADDR(X) ((X) >> opb_shift)
3140 #define TO_SIZE(X) ((X) << opb_shift)
3142 /* Support the above. */
3143 static unsigned int opb_shift = 0;
3145 static void
3146 init_opb (void)
3148 unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
3149 ldfile_output_machine);
3150 opb_shift = 0;
3151 if (x > 1)
3152 while ((x & 1) == 0)
3154 x >>= 1;
3155 ++opb_shift;
3157 ASSERT (x == 1);
3160 /* Open all the input files. */
3162 static void
3163 open_input_bfds (lang_statement_union_type *s, bfd_boolean force)
3165 for (; s != NULL; s = s->header.next)
3167 switch (s->header.type)
3169 case lang_constructors_statement_enum:
3170 open_input_bfds (constructor_list.head, force);
3171 break;
3172 case lang_output_section_statement_enum:
3173 open_input_bfds (s->output_section_statement.children.head, force);
3174 break;
3175 case lang_wild_statement_enum:
3176 /* Maybe we should load the file's symbols. */
3177 if (s->wild_statement.filename
3178 && !wildcardp (s->wild_statement.filename)
3179 && !archive_path (s->wild_statement.filename))
3180 lookup_name (s->wild_statement.filename);
3181 open_input_bfds (s->wild_statement.children.head, force);
3182 break;
3183 case lang_group_statement_enum:
3185 struct bfd_link_hash_entry *undefs;
3187 /* We must continually search the entries in the group
3188 until no new symbols are added to the list of undefined
3189 symbols. */
3193 undefs = link_info.hash->undefs_tail;
3194 open_input_bfds (s->group_statement.children.head, TRUE);
3196 while (undefs != link_info.hash->undefs_tail);
3198 break;
3199 case lang_target_statement_enum:
3200 current_target = s->target_statement.target;
3201 break;
3202 case lang_input_statement_enum:
3203 if (s->input_statement.real)
3205 lang_statement_union_type **os_tail;
3206 lang_statement_list_type add;
3208 s->input_statement.target = current_target;
3210 /* If we are being called from within a group, and this
3211 is an archive which has already been searched, then
3212 force it to be researched unless the whole archive
3213 has been loaded already. */
3214 if (force
3215 && !s->input_statement.whole_archive
3216 && s->input_statement.loaded
3217 && bfd_check_format (s->input_statement.the_bfd,
3218 bfd_archive))
3219 s->input_statement.loaded = FALSE;
3221 os_tail = lang_output_section_statement.tail;
3222 lang_list_init (&add);
3224 if (! load_symbols (&s->input_statement, &add))
3225 config.make_executable = FALSE;
3227 if (add.head != NULL)
3229 /* If this was a script with output sections then
3230 tack any added statements on to the end of the
3231 list. This avoids having to reorder the output
3232 section statement list. Very likely the user
3233 forgot -T, and whatever we do here will not meet
3234 naive user expectations. */
3235 if (os_tail != lang_output_section_statement.tail)
3237 einfo (_("%P: warning: %s contains output sections;"
3238 " did you forget -T?\n"),
3239 s->input_statement.filename);
3240 *stat_ptr->tail = add.head;
3241 stat_ptr->tail = add.tail;
3243 else
3245 *add.tail = s->header.next;
3246 s->header.next = add.head;
3250 break;
3251 case lang_assignment_statement_enum:
3252 if (s->assignment_statement.exp->assign.hidden)
3253 /* This is from a --defsym on the command line. */
3254 exp_fold_tree_no_dot (s->assignment_statement.exp);
3255 break;
3256 default:
3257 break;
3261 /* Exit if any of the files were missing. */
3262 if (missing_file)
3263 einfo ("%F");
3266 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
3268 void
3269 lang_track_definedness (const char *name)
3271 if (bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE) == NULL)
3272 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
3275 /* New-function for the definedness hash table. */
3277 static struct bfd_hash_entry *
3278 lang_definedness_newfunc (struct bfd_hash_entry *entry,
3279 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
3280 const char *name ATTRIBUTE_UNUSED)
3282 struct lang_definedness_hash_entry *ret
3283 = (struct lang_definedness_hash_entry *) entry;
3285 if (ret == NULL)
3286 ret = (struct lang_definedness_hash_entry *)
3287 bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
3289 if (ret == NULL)
3290 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
3292 ret->iteration = -1;
3293 return &ret->root;
3296 /* Return the iteration when the definition of NAME was last updated. A
3297 value of -1 means that the symbol is not defined in the linker script
3298 or the command line, but may be defined in the linker symbol table. */
3301 lang_symbol_definition_iteration (const char *name)
3303 struct lang_definedness_hash_entry *defentry
3304 = (struct lang_definedness_hash_entry *)
3305 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
3307 /* We've already created this one on the presence of DEFINED in the
3308 script, so it can't be NULL unless something is borked elsewhere in
3309 the code. */
3310 if (defentry == NULL)
3311 FAIL ();
3313 return defentry->iteration;
3316 /* Update the definedness state of NAME. */
3318 void
3319 lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
3321 struct lang_definedness_hash_entry *defentry
3322 = (struct lang_definedness_hash_entry *)
3323 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
3325 /* We don't keep track of symbols not tested with DEFINED. */
3326 if (defentry == NULL)
3327 return;
3329 /* If the symbol was already defined, and not from an earlier statement
3330 iteration, don't update the definedness iteration, because that'd
3331 make the symbol seem defined in the linker script at this point, and
3332 it wasn't; it was defined in some object. If we do anyway, DEFINED
3333 would start to yield false before this point and the construct "sym =
3334 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
3335 in an object. */
3336 if (h->type != bfd_link_hash_undefined
3337 && h->type != bfd_link_hash_common
3338 && h->type != bfd_link_hash_new
3339 && defentry->iteration == -1)
3340 return;
3342 defentry->iteration = lang_statement_iteration;
3345 /* Add the supplied name to the symbol table as an undefined reference.
3346 This is a two step process as the symbol table doesn't even exist at
3347 the time the ld command line is processed. First we put the name
3348 on a list, then, once the output file has been opened, transfer the
3349 name to the symbol table. */
3351 typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
3353 #define ldlang_undef_chain_list_head entry_symbol.next
3355 void
3356 ldlang_add_undef (const char *const name, bfd_boolean cmdline)
3358 ldlang_undef_chain_list_type *new_undef;
3360 undef_from_cmdline = undef_from_cmdline || cmdline;
3361 new_undef = (ldlang_undef_chain_list_type *) stat_alloc (sizeof (*new_undef));
3362 new_undef->next = ldlang_undef_chain_list_head;
3363 ldlang_undef_chain_list_head = new_undef;
3365 new_undef->name = xstrdup (name);
3367 if (link_info.output_bfd != NULL)
3368 insert_undefined (new_undef->name);
3371 /* Insert NAME as undefined in the symbol table. */
3373 static void
3374 insert_undefined (const char *name)
3376 struct bfd_link_hash_entry *h;
3378 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
3379 if (h == NULL)
3380 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
3381 if (h->type == bfd_link_hash_new)
3383 h->type = bfd_link_hash_undefined;
3384 h->u.undef.abfd = NULL;
3385 bfd_link_add_undef (link_info.hash, h);
3389 /* Run through the list of undefineds created above and place them
3390 into the linker hash table as undefined symbols belonging to the
3391 script file. */
3393 static void
3394 lang_place_undefineds (void)
3396 ldlang_undef_chain_list_type *ptr;
3398 for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
3399 insert_undefined (ptr->name);
3402 /* Check for all readonly or some readwrite sections. */
3404 static void
3405 check_input_sections
3406 (lang_statement_union_type *s,
3407 lang_output_section_statement_type *output_section_statement)
3409 for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
3411 switch (s->header.type)
3413 case lang_wild_statement_enum:
3414 walk_wild (&s->wild_statement, check_section_callback,
3415 output_section_statement);
3416 if (! output_section_statement->all_input_readonly)
3417 return;
3418 break;
3419 case lang_constructors_statement_enum:
3420 check_input_sections (constructor_list.head,
3421 output_section_statement);
3422 if (! output_section_statement->all_input_readonly)
3423 return;
3424 break;
3425 case lang_group_statement_enum:
3426 check_input_sections (s->group_statement.children.head,
3427 output_section_statement);
3428 if (! output_section_statement->all_input_readonly)
3429 return;
3430 break;
3431 default:
3432 break;
3437 /* Update wildcard statements if needed. */
3439 static void
3440 update_wild_statements (lang_statement_union_type *s)
3442 struct wildcard_list *sec;
3444 switch (sort_section)
3446 default:
3447 FAIL ();
3449 case none:
3450 break;
3452 case by_name:
3453 case by_alignment:
3454 for (; s != NULL; s = s->header.next)
3456 switch (s->header.type)
3458 default:
3459 break;
3461 case lang_wild_statement_enum:
3462 sec = s->wild_statement.section_list;
3463 for (sec = s->wild_statement.section_list; sec != NULL;
3464 sec = sec->next)
3466 switch (sec->spec.sorted)
3468 case none:
3469 sec->spec.sorted = sort_section;
3470 break;
3471 case by_name:
3472 if (sort_section == by_alignment)
3473 sec->spec.sorted = by_name_alignment;
3474 break;
3475 case by_alignment:
3476 if (sort_section == by_name)
3477 sec->spec.sorted = by_alignment_name;
3478 break;
3479 default:
3480 break;
3483 break;
3485 case lang_constructors_statement_enum:
3486 update_wild_statements (constructor_list.head);
3487 break;
3489 case lang_output_section_statement_enum:
3490 update_wild_statements
3491 (s->output_section_statement.children.head);
3492 break;
3494 case lang_group_statement_enum:
3495 update_wild_statements (s->group_statement.children.head);
3496 break;
3499 break;
3503 /* Open input files and attach to output sections. */
3505 static void
3506 map_input_to_output_sections
3507 (lang_statement_union_type *s, const char *target,
3508 lang_output_section_statement_type *os)
3510 for (; s != NULL; s = s->header.next)
3512 lang_output_section_statement_type *tos;
3513 flagword flags;
3515 switch (s->header.type)
3517 case lang_wild_statement_enum:
3518 wild (&s->wild_statement, target, os);
3519 break;
3520 case lang_constructors_statement_enum:
3521 map_input_to_output_sections (constructor_list.head,
3522 target,
3523 os);
3524 break;
3525 case lang_output_section_statement_enum:
3526 tos = &s->output_section_statement;
3527 if (tos->constraint != 0)
3529 if (tos->constraint != ONLY_IF_RW
3530 && tos->constraint != ONLY_IF_RO)
3531 break;
3532 tos->all_input_readonly = TRUE;
3533 check_input_sections (tos->children.head, tos);
3534 if (tos->all_input_readonly != (tos->constraint == ONLY_IF_RO))
3536 tos->constraint = -1;
3537 break;
3540 map_input_to_output_sections (tos->children.head,
3541 target,
3542 tos);
3543 break;
3544 case lang_output_statement_enum:
3545 break;
3546 case lang_target_statement_enum:
3547 target = s->target_statement.target;
3548 break;
3549 case lang_group_statement_enum:
3550 map_input_to_output_sections (s->group_statement.children.head,
3551 target,
3552 os);
3553 break;
3554 case lang_data_statement_enum:
3555 /* Make sure that any sections mentioned in the expression
3556 are initialized. */
3557 exp_init_os (s->data_statement.exp);
3558 /* The output section gets CONTENTS, ALLOC and LOAD, but
3559 these may be overridden by the script. */
3560 flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD;
3561 switch (os->sectype)
3563 case normal_section:
3564 case overlay_section:
3565 break;
3566 case noalloc_section:
3567 flags = SEC_HAS_CONTENTS;
3568 break;
3569 case noload_section:
3570 if (bfd_get_flavour (link_info.output_bfd)
3571 == bfd_target_elf_flavour)
3572 flags = SEC_NEVER_LOAD | SEC_ALLOC;
3573 else
3574 flags = SEC_NEVER_LOAD | SEC_HAS_CONTENTS;
3575 break;
3577 if (os->bfd_section == NULL)
3578 init_os (os, flags);
3579 else
3580 os->bfd_section->flags |= flags;
3581 break;
3582 case lang_input_section_enum:
3583 break;
3584 case lang_fill_statement_enum:
3585 case lang_object_symbols_statement_enum:
3586 case lang_reloc_statement_enum:
3587 case lang_padding_statement_enum:
3588 case lang_input_statement_enum:
3589 if (os != NULL && os->bfd_section == NULL)
3590 init_os (os, 0);
3591 break;
3592 case lang_assignment_statement_enum:
3593 if (os != NULL && os->bfd_section == NULL)
3594 init_os (os, 0);
3596 /* Make sure that any sections mentioned in the assignment
3597 are initialized. */
3598 exp_init_os (s->assignment_statement.exp);
3599 break;
3600 case lang_address_statement_enum:
3601 /* Mark the specified section with the supplied address.
3602 If this section was actually a segment marker, then the
3603 directive is ignored if the linker script explicitly
3604 processed the segment marker. Originally, the linker
3605 treated segment directives (like -Ttext on the
3606 command-line) as section directives. We honor the
3607 section directive semantics for backwards compatibilty;
3608 linker scripts that do not specifically check for
3609 SEGMENT_START automatically get the old semantics. */
3610 if (!s->address_statement.segment
3611 || !s->address_statement.segment->used)
3613 const char *name = s->address_statement.section_name;
3615 /* Create the output section statement here so that
3616 orphans with a set address will be placed after other
3617 script sections. If we let the orphan placement code
3618 place them in amongst other sections then the address
3619 will affect following script sections, which is
3620 likely to surprise naive users. */
3621 tos = lang_output_section_statement_lookup (name, 0, TRUE);
3622 tos->addr_tree = s->address_statement.address;
3623 if (tos->bfd_section == NULL)
3624 init_os (tos, 0);
3626 break;
3627 case lang_insert_statement_enum:
3628 break;
3633 /* An insert statement snips out all the linker statements from the
3634 start of the list and places them after the output section
3635 statement specified by the insert. This operation is complicated
3636 by the fact that we keep a doubly linked list of output section
3637 statements as well as the singly linked list of all statements. */
3639 static void
3640 process_insert_statements (void)
3642 lang_statement_union_type **s;
3643 lang_output_section_statement_type *first_os = NULL;
3644 lang_output_section_statement_type *last_os = NULL;
3645 lang_output_section_statement_type *os;
3647 /* "start of list" is actually the statement immediately after
3648 the special abs_section output statement, so that it isn't
3649 reordered. */
3650 s = &lang_output_section_statement.head;
3651 while (*(s = &(*s)->header.next) != NULL)
3653 if ((*s)->header.type == lang_output_section_statement_enum)
3655 /* Keep pointers to the first and last output section
3656 statement in the sequence we may be about to move. */
3657 os = &(*s)->output_section_statement;
3659 ASSERT (last_os == NULL || last_os->next == os);
3660 last_os = os;
3662 /* Set constraint negative so that lang_output_section_find
3663 won't match this output section statement. At this
3664 stage in linking constraint has values in the range
3665 [-1, ONLY_IN_RW]. */
3666 last_os->constraint = -2 - last_os->constraint;
3667 if (first_os == NULL)
3668 first_os = last_os;
3670 else if ((*s)->header.type == lang_insert_statement_enum)
3672 lang_insert_statement_type *i = &(*s)->insert_statement;
3673 lang_output_section_statement_type *where;
3674 lang_statement_union_type **ptr;
3675 lang_statement_union_type *first;
3677 where = lang_output_section_find (i->where);
3678 if (where != NULL && i->is_before)
3681 where = where->prev;
3682 while (where != NULL && where->constraint < 0);
3684 if (where == NULL)
3686 einfo (_("%F%P: %s not found for insert\n"), i->where);
3687 return;
3690 /* Deal with reordering the output section statement list. */
3691 if (last_os != NULL)
3693 asection *first_sec, *last_sec;
3694 struct lang_output_section_statement_struct **next;
3696 /* Snip out the output sections we are moving. */
3697 first_os->prev->next = last_os->next;
3698 if (last_os->next == NULL)
3700 next = &first_os->prev->next;
3701 lang_output_section_statement.tail
3702 = (lang_statement_union_type **) next;
3704 else
3705 last_os->next->prev = first_os->prev;
3706 /* Add them in at the new position. */
3707 last_os->next = where->next;
3708 if (where->next == NULL)
3710 next = &last_os->next;
3711 lang_output_section_statement.tail
3712 = (lang_statement_union_type **) next;
3714 else
3715 where->next->prev = last_os;
3716 first_os->prev = where;
3717 where->next = first_os;
3719 /* Move the bfd sections in the same way. */
3720 first_sec = NULL;
3721 last_sec = NULL;
3722 for (os = first_os; os != NULL; os = os->next)
3724 os->constraint = -2 - os->constraint;
3725 if (os->bfd_section != NULL
3726 && os->bfd_section->owner != NULL)
3728 last_sec = os->bfd_section;
3729 if (first_sec == NULL)
3730 first_sec = last_sec;
3732 if (os == last_os)
3733 break;
3735 if (last_sec != NULL)
3737 asection *sec = where->bfd_section;
3738 if (sec == NULL)
3739 sec = output_prev_sec_find (where);
3741 /* The place we want to insert must come after the
3742 sections we are moving. So if we find no
3743 section or if the section is the same as our
3744 last section, then no move is needed. */
3745 if (sec != NULL && sec != last_sec)
3747 /* Trim them off. */
3748 if (first_sec->prev != NULL)
3749 first_sec->prev->next = last_sec->next;
3750 else
3751 link_info.output_bfd->sections = last_sec->next;
3752 if (last_sec->next != NULL)
3753 last_sec->next->prev = first_sec->prev;
3754 else
3755 link_info.output_bfd->section_last = first_sec->prev;
3756 /* Add back. */
3757 last_sec->next = sec->next;
3758 if (sec->next != NULL)
3759 sec->next->prev = last_sec;
3760 else
3761 link_info.output_bfd->section_last = last_sec;
3762 first_sec->prev = sec;
3763 sec->next = first_sec;
3767 first_os = NULL;
3768 last_os = NULL;
3771 ptr = insert_os_after (where);
3772 /* Snip everything after the abs_section output statement we
3773 know is at the start of the list, up to and including
3774 the insert statement we are currently processing. */
3775 first = lang_output_section_statement.head->header.next;
3776 lang_output_section_statement.head->header.next = (*s)->header.next;
3777 /* Add them back where they belong. */
3778 *s = *ptr;
3779 if (*s == NULL)
3780 statement_list.tail = s;
3781 *ptr = first;
3782 s = &lang_output_section_statement.head;
3786 /* Undo constraint twiddling. */
3787 for (os = first_os; os != NULL; os = os->next)
3789 os->constraint = -2 - os->constraint;
3790 if (os == last_os)
3791 break;
3795 /* An output section might have been removed after its statement was
3796 added. For example, ldemul_before_allocation can remove dynamic
3797 sections if they turn out to be not needed. Clean them up here. */
3799 void
3800 strip_excluded_output_sections (void)
3802 lang_output_section_statement_type *os;
3804 /* Run lang_size_sections (if not already done). */
3805 if (expld.phase != lang_mark_phase_enum)
3807 expld.phase = lang_mark_phase_enum;
3808 expld.dataseg.phase = exp_dataseg_none;
3809 one_lang_size_sections_pass (NULL, FALSE);
3810 lang_reset_memory_regions ();
3813 for (os = &lang_output_section_statement.head->output_section_statement;
3814 os != NULL;
3815 os = os->next)
3817 asection *output_section;
3818 bfd_boolean exclude;
3820 if (os->constraint < 0)
3821 continue;
3823 output_section = os->bfd_section;
3824 if (output_section == NULL)
3825 continue;
3827 exclude = (output_section->rawsize == 0
3828 && (output_section->flags & SEC_KEEP) == 0
3829 && !bfd_section_removed_from_list (link_info.output_bfd,
3830 output_section));
3832 /* Some sections have not yet been sized, notably .gnu.version,
3833 .dynsym, .dynstr and .hash. These all have SEC_LINKER_CREATED
3834 input sections, so don't drop output sections that have such
3835 input sections unless they are also marked SEC_EXCLUDE. */
3836 if (exclude && output_section->map_head.s != NULL)
3838 asection *s;
3840 for (s = output_section->map_head.s; s != NULL; s = s->map_head.s)
3841 if ((s->flags & SEC_LINKER_CREATED) != 0
3842 && (s->flags & SEC_EXCLUDE) == 0)
3844 exclude = FALSE;
3845 break;
3849 /* TODO: Don't just junk map_head.s, turn them into link_orders. */
3850 output_section->map_head.link_order = NULL;
3851 output_section->map_tail.link_order = NULL;
3853 if (exclude)
3855 /* We don't set bfd_section to NULL since bfd_section of the
3856 removed output section statement may still be used. */
3857 if (!os->section_relative_symbol
3858 && !os->update_dot_tree)
3859 os->ignored = TRUE;
3860 output_section->flags |= SEC_EXCLUDE;
3861 bfd_section_list_remove (link_info.output_bfd, output_section);
3862 link_info.output_bfd->section_count--;
3866 /* Stop future calls to lang_add_section from messing with map_head
3867 and map_tail link_order fields. */
3868 stripped_excluded_sections = TRUE;
3871 static void
3872 print_output_section_statement
3873 (lang_output_section_statement_type *output_section_statement)
3875 asection *section = output_section_statement->bfd_section;
3876 int len;
3878 if (output_section_statement != abs_output_section)
3880 minfo ("\n%s", output_section_statement->name);
3882 if (section != NULL)
3884 print_dot = section->vma;
3886 len = strlen (output_section_statement->name);
3887 if (len >= SECTION_NAME_MAP_LENGTH - 1)
3889 print_nl ();
3890 len = 0;
3892 while (len < SECTION_NAME_MAP_LENGTH)
3894 print_space ();
3895 ++len;
3898 minfo ("0x%V %W", section->vma, section->size);
3900 if (section->vma != section->lma)
3901 minfo (_(" load address 0x%V"), section->lma);
3903 if (output_section_statement->update_dot_tree != NULL)
3904 exp_fold_tree (output_section_statement->update_dot_tree,
3905 bfd_abs_section_ptr, &print_dot);
3908 print_nl ();
3911 print_statement_list (output_section_statement->children.head,
3912 output_section_statement);
3915 /* Scan for the use of the destination in the right hand side
3916 of an expression. In such cases we will not compute the
3917 correct expression, since the value of DST that is used on
3918 the right hand side will be its final value, not its value
3919 just before this expression is evaluated. */
3921 static bfd_boolean
3922 scan_for_self_assignment (const char * dst, etree_type * rhs)
3924 if (rhs == NULL || dst == NULL)
3925 return FALSE;
3927 switch (rhs->type.node_class)
3929 case etree_binary:
3930 return (scan_for_self_assignment (dst, rhs->binary.lhs)
3931 || scan_for_self_assignment (dst, rhs->binary.rhs));
3933 case etree_trinary:
3934 return (scan_for_self_assignment (dst, rhs->trinary.lhs)
3935 || scan_for_self_assignment (dst, rhs->trinary.rhs));
3937 case etree_assign:
3938 case etree_provided:
3939 case etree_provide:
3940 if (strcmp (dst, rhs->assign.dst) == 0)
3941 return TRUE;
3942 return scan_for_self_assignment (dst, rhs->assign.src);
3944 case etree_unary:
3945 return scan_for_self_assignment (dst, rhs->unary.child);
3947 case etree_value:
3948 if (rhs->value.str)
3949 return strcmp (dst, rhs->value.str) == 0;
3950 return FALSE;
3952 case etree_name:
3953 if (rhs->name.name)
3954 return strcmp (dst, rhs->name.name) == 0;
3955 return FALSE;
3957 default:
3958 break;
3961 return FALSE;
3965 static void
3966 print_assignment (lang_assignment_statement_type *assignment,
3967 lang_output_section_statement_type *output_section)
3969 unsigned int i;
3970 bfd_boolean is_dot;
3971 bfd_boolean computation_is_valid = TRUE;
3972 etree_type *tree;
3973 asection *osec;
3975 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3976 print_space ();
3978 if (assignment->exp->type.node_class == etree_assert)
3980 is_dot = FALSE;
3981 tree = assignment->exp->assert_s.child;
3982 computation_is_valid = TRUE;
3984 else
3986 const char *dst = assignment->exp->assign.dst;
3988 is_dot = (dst[0] == '.' && dst[1] == 0);
3989 tree = assignment->exp->assign.src;
3990 computation_is_valid = is_dot || !scan_for_self_assignment (dst, tree);
3993 osec = output_section->bfd_section;
3994 if (osec == NULL)
3995 osec = bfd_abs_section_ptr;
3996 exp_fold_tree (tree, osec, &print_dot);
3997 if (expld.result.valid_p)
3999 bfd_vma value;
4001 if (computation_is_valid)
4003 value = expld.result.value;
4005 if (expld.result.section != NULL)
4006 value += expld.result.section->vma;
4008 minfo ("0x%V", value);
4009 if (is_dot)
4010 print_dot = value;
4012 else
4014 struct bfd_link_hash_entry *h;
4016 h = bfd_link_hash_lookup (link_info.hash, assignment->exp->assign.dst,
4017 FALSE, FALSE, TRUE);
4018 if (h)
4020 value = h->u.def.value;
4022 if (expld.result.section != NULL)
4023 value += expld.result.section->vma;
4025 minfo ("[0x%V]", value);
4027 else
4028 minfo ("[unresolved]");
4031 else
4033 minfo ("*undef* ");
4034 #ifdef BFD64
4035 minfo (" ");
4036 #endif
4039 minfo (" ");
4040 exp_print_tree (assignment->exp);
4041 print_nl ();
4044 static void
4045 print_input_statement (lang_input_statement_type *statm)
4047 if (statm->filename != NULL
4048 && (statm->the_bfd == NULL
4049 || (statm->the_bfd->flags & BFD_LINKER_CREATED) == 0))
4050 fprintf (config.map_file, "LOAD %s\n", statm->filename);
4053 /* Print all symbols defined in a particular section. This is called
4054 via bfd_link_hash_traverse, or by print_all_symbols. */
4056 static bfd_boolean
4057 print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
4059 asection *sec = (asection *) ptr;
4061 if ((hash_entry->type == bfd_link_hash_defined
4062 || hash_entry->type == bfd_link_hash_defweak)
4063 && sec == hash_entry->u.def.section)
4065 int i;
4067 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4068 print_space ();
4069 minfo ("0x%V ",
4070 (hash_entry->u.def.value
4071 + hash_entry->u.def.section->output_offset
4072 + hash_entry->u.def.section->output_section->vma));
4074 minfo (" %T\n", hash_entry->root.string);
4077 return TRUE;
4080 static int
4081 hash_entry_addr_cmp (const void *a, const void *b)
4083 const struct bfd_link_hash_entry *l = *(const struct bfd_link_hash_entry **)a;
4084 const struct bfd_link_hash_entry *r = *(const struct bfd_link_hash_entry **)b;
4086 if (l->u.def.value < r->u.def.value)
4087 return -1;
4088 else if (l->u.def.value > r->u.def.value)
4089 return 1;
4090 else
4091 return 0;
4094 static void
4095 print_all_symbols (asection *sec)
4097 struct fat_user_section_struct *ud =
4098 (struct fat_user_section_struct *) get_userdata (sec);
4099 struct map_symbol_def *def;
4100 struct bfd_link_hash_entry **entries;
4101 unsigned int i;
4103 if (!ud)
4104 return;
4106 *ud->map_symbol_def_tail = 0;
4108 /* Sort the symbols by address. */
4109 entries = (struct bfd_link_hash_entry **)
4110 obstack_alloc (&map_obstack, ud->map_symbol_def_count * sizeof (*entries));
4112 for (i = 0, def = ud->map_symbol_def_head; def; def = def->next, i++)
4113 entries[i] = def->entry;
4115 qsort (entries, ud->map_symbol_def_count, sizeof (*entries),
4116 hash_entry_addr_cmp);
4118 /* Print the symbols. */
4119 for (i = 0; i < ud->map_symbol_def_count; i++)
4120 print_one_symbol (entries[i], sec);
4122 obstack_free (&map_obstack, entries);
4125 /* Print information about an input section to the map file. */
4127 static void
4128 print_input_section (asection *i, bfd_boolean is_discarded)
4130 bfd_size_type size = i->size;
4131 int len;
4132 bfd_vma addr;
4134 init_opb ();
4136 print_space ();
4137 minfo ("%s", i->name);
4139 len = 1 + strlen (i->name);
4140 if (len >= SECTION_NAME_MAP_LENGTH - 1)
4142 print_nl ();
4143 len = 0;
4145 while (len < SECTION_NAME_MAP_LENGTH)
4147 print_space ();
4148 ++len;
4151 if (i->output_section != NULL
4152 && i->output_section->owner == link_info.output_bfd)
4153 addr = i->output_section->vma + i->output_offset;
4154 else
4156 addr = print_dot;
4157 if (!is_discarded)
4158 size = 0;
4161 minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
4163 if (size != i->rawsize && i->rawsize != 0)
4165 len = SECTION_NAME_MAP_LENGTH + 3;
4166 #ifdef BFD64
4167 len += 16;
4168 #else
4169 len += 8;
4170 #endif
4171 while (len > 0)
4173 print_space ();
4174 --len;
4177 minfo (_("%W (size before relaxing)\n"), i->rawsize);
4180 if (i->output_section != NULL
4181 && i->output_section->owner == link_info.output_bfd)
4183 if (link_info.reduce_memory_overheads)
4184 bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
4185 else
4186 print_all_symbols (i);
4188 /* Update print_dot, but make sure that we do not move it
4189 backwards - this could happen if we have overlays and a
4190 later overlay is shorter than an earier one. */
4191 if (addr + TO_ADDR (size) > print_dot)
4192 print_dot = addr + TO_ADDR (size);
4196 static void
4197 print_fill_statement (lang_fill_statement_type *fill)
4199 size_t size;
4200 unsigned char *p;
4201 fputs (" FILL mask 0x", config.map_file);
4202 for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
4203 fprintf (config.map_file, "%02x", *p);
4204 fputs ("\n", config.map_file);
4207 static void
4208 print_data_statement (lang_data_statement_type *data)
4210 int i;
4211 bfd_vma addr;
4212 bfd_size_type size;
4213 const char *name;
4215 init_opb ();
4216 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4217 print_space ();
4219 addr = data->output_offset;
4220 if (data->output_section != NULL)
4221 addr += data->output_section->vma;
4223 switch (data->type)
4225 default:
4226 abort ();
4227 case BYTE:
4228 size = BYTE_SIZE;
4229 name = "BYTE";
4230 break;
4231 case SHORT:
4232 size = SHORT_SIZE;
4233 name = "SHORT";
4234 break;
4235 case LONG:
4236 size = LONG_SIZE;
4237 name = "LONG";
4238 break;
4239 case QUAD:
4240 size = QUAD_SIZE;
4241 name = "QUAD";
4242 break;
4243 case SQUAD:
4244 size = QUAD_SIZE;
4245 name = "SQUAD";
4246 break;
4249 minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
4251 if (data->exp->type.node_class != etree_value)
4253 print_space ();
4254 exp_print_tree (data->exp);
4257 print_nl ();
4259 print_dot = addr + TO_ADDR (size);
4262 /* Print an address statement. These are generated by options like
4263 -Ttext. */
4265 static void
4266 print_address_statement (lang_address_statement_type *address)
4268 minfo (_("Address of section %s set to "), address->section_name);
4269 exp_print_tree (address->address);
4270 print_nl ();
4273 /* Print a reloc statement. */
4275 static void
4276 print_reloc_statement (lang_reloc_statement_type *reloc)
4278 int i;
4279 bfd_vma addr;
4280 bfd_size_type size;
4282 init_opb ();
4283 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4284 print_space ();
4286 addr = reloc->output_offset;
4287 if (reloc->output_section != NULL)
4288 addr += reloc->output_section->vma;
4290 size = bfd_get_reloc_size (reloc->howto);
4292 minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
4294 if (reloc->name != NULL)
4295 minfo ("%s+", reloc->name);
4296 else
4297 minfo ("%s+", reloc->section->name);
4299 exp_print_tree (reloc->addend_exp);
4301 print_nl ();
4303 print_dot = addr + TO_ADDR (size);
4306 static void
4307 print_padding_statement (lang_padding_statement_type *s)
4309 int len;
4310 bfd_vma addr;
4312 init_opb ();
4313 minfo (" *fill*");
4315 len = sizeof " *fill*" - 1;
4316 while (len < SECTION_NAME_MAP_LENGTH)
4318 print_space ();
4319 ++len;
4322 addr = s->output_offset;
4323 if (s->output_section != NULL)
4324 addr += s->output_section->vma;
4325 minfo ("0x%V %W ", addr, (bfd_vma) s->size);
4327 if (s->fill->size != 0)
4329 size_t size;
4330 unsigned char *p;
4331 for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
4332 fprintf (config.map_file, "%02x", *p);
4335 print_nl ();
4337 print_dot = addr + TO_ADDR (s->size);
4340 static void
4341 print_wild_statement (lang_wild_statement_type *w,
4342 lang_output_section_statement_type *os)
4344 struct wildcard_list *sec;
4346 print_space ();
4348 if (w->filenames_sorted)
4349 minfo ("SORT(");
4350 if (w->filename != NULL)
4351 minfo ("%s", w->filename);
4352 else
4353 minfo ("*");
4354 if (w->filenames_sorted)
4355 minfo (")");
4357 minfo ("(");
4358 for (sec = w->section_list; sec; sec = sec->next)
4360 if (sec->spec.sorted)
4361 minfo ("SORT(");
4362 if (sec->spec.exclude_name_list != NULL)
4364 name_list *tmp;
4365 minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
4366 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
4367 minfo (" %s", tmp->name);
4368 minfo (") ");
4370 if (sec->spec.name != NULL)
4371 minfo ("%s", sec->spec.name);
4372 else
4373 minfo ("*");
4374 if (sec->spec.sorted)
4375 minfo (")");
4376 if (sec->next)
4377 minfo (" ");
4379 minfo (")");
4381 print_nl ();
4383 print_statement_list (w->children.head, os);
4386 /* Print a group statement. */
4388 static void
4389 print_group (lang_group_statement_type *s,
4390 lang_output_section_statement_type *os)
4392 fprintf (config.map_file, "START GROUP\n");
4393 print_statement_list (s->children.head, os);
4394 fprintf (config.map_file, "END GROUP\n");
4397 /* Print the list of statements in S.
4398 This can be called for any statement type. */
4400 static void
4401 print_statement_list (lang_statement_union_type *s,
4402 lang_output_section_statement_type *os)
4404 while (s != NULL)
4406 print_statement (s, os);
4407 s = s->header.next;
4411 /* Print the first statement in statement list S.
4412 This can be called for any statement type. */
4414 static void
4415 print_statement (lang_statement_union_type *s,
4416 lang_output_section_statement_type *os)
4418 switch (s->header.type)
4420 default:
4421 fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
4422 FAIL ();
4423 break;
4424 case lang_constructors_statement_enum:
4425 if (constructor_list.head != NULL)
4427 if (constructors_sorted)
4428 minfo (" SORT (CONSTRUCTORS)\n");
4429 else
4430 minfo (" CONSTRUCTORS\n");
4431 print_statement_list (constructor_list.head, os);
4433 break;
4434 case lang_wild_statement_enum:
4435 print_wild_statement (&s->wild_statement, os);
4436 break;
4437 case lang_address_statement_enum:
4438 print_address_statement (&s->address_statement);
4439 break;
4440 case lang_object_symbols_statement_enum:
4441 minfo (" CREATE_OBJECT_SYMBOLS\n");
4442 break;
4443 case lang_fill_statement_enum:
4444 print_fill_statement (&s->fill_statement);
4445 break;
4446 case lang_data_statement_enum:
4447 print_data_statement (&s->data_statement);
4448 break;
4449 case lang_reloc_statement_enum:
4450 print_reloc_statement (&s->reloc_statement);
4451 break;
4452 case lang_input_section_enum:
4453 print_input_section (s->input_section.section, FALSE);
4454 break;
4455 case lang_padding_statement_enum:
4456 print_padding_statement (&s->padding_statement);
4457 break;
4458 case lang_output_section_statement_enum:
4459 print_output_section_statement (&s->output_section_statement);
4460 break;
4461 case lang_assignment_statement_enum:
4462 print_assignment (&s->assignment_statement, os);
4463 break;
4464 case lang_target_statement_enum:
4465 fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
4466 break;
4467 case lang_output_statement_enum:
4468 minfo ("OUTPUT(%s", s->output_statement.name);
4469 if (output_target != NULL)
4470 minfo (" %s", output_target);
4471 minfo (")\n");
4472 break;
4473 case lang_input_statement_enum:
4474 print_input_statement (&s->input_statement);
4475 break;
4476 case lang_group_statement_enum:
4477 print_group (&s->group_statement, os);
4478 break;
4479 case lang_insert_statement_enum:
4480 minfo ("INSERT %s %s\n",
4481 s->insert_statement.is_before ? "BEFORE" : "AFTER",
4482 s->insert_statement.where);
4483 break;
4487 static void
4488 print_statements (void)
4490 print_statement_list (statement_list.head, abs_output_section);
4493 /* Print the first N statements in statement list S to STDERR.
4494 If N == 0, nothing is printed.
4495 If N < 0, the entire list is printed.
4496 Intended to be called from GDB. */
4498 void
4499 dprint_statement (lang_statement_union_type *s, int n)
4501 FILE *map_save = config.map_file;
4503 config.map_file = stderr;
4505 if (n < 0)
4506 print_statement_list (s, abs_output_section);
4507 else
4509 while (s && --n >= 0)
4511 print_statement (s, abs_output_section);
4512 s = s->header.next;
4516 config.map_file = map_save;
4519 static void
4520 insert_pad (lang_statement_union_type **ptr,
4521 fill_type *fill,
4522 unsigned int alignment_needed,
4523 asection *output_section,
4524 bfd_vma dot)
4526 static fill_type zero_fill = { 1, { 0 } };
4527 lang_statement_union_type *pad = NULL;
4529 if (ptr != &statement_list.head)
4530 pad = ((lang_statement_union_type *)
4531 ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
4532 if (pad != NULL
4533 && pad->header.type == lang_padding_statement_enum
4534 && pad->padding_statement.output_section == output_section)
4536 /* Use the existing pad statement. */
4538 else if ((pad = *ptr) != NULL
4539 && pad->header.type == lang_padding_statement_enum
4540 && pad->padding_statement.output_section == output_section)
4542 /* Use the existing pad statement. */
4544 else
4546 /* Make a new padding statement, linked into existing chain. */
4547 pad = (lang_statement_union_type *)
4548 stat_alloc (sizeof (lang_padding_statement_type));
4549 pad->header.next = *ptr;
4550 *ptr = pad;
4551 pad->header.type = lang_padding_statement_enum;
4552 pad->padding_statement.output_section = output_section;
4553 if (fill == NULL)
4554 fill = &zero_fill;
4555 pad->padding_statement.fill = fill;
4557 pad->padding_statement.output_offset = dot - output_section->vma;
4558 pad->padding_statement.size = alignment_needed;
4559 output_section->size += alignment_needed;
4562 /* Work out how much this section will move the dot point. */
4564 static bfd_vma
4565 size_input_section
4566 (lang_statement_union_type **this_ptr,
4567 lang_output_section_statement_type *output_section_statement,
4568 fill_type *fill,
4569 bfd_vma dot)
4571 lang_input_section_type *is = &((*this_ptr)->input_section);
4572 asection *i = is->section;
4574 if (!((lang_input_statement_type *) i->owner->usrdata)->just_syms_flag
4575 && (i->flags & SEC_EXCLUDE) == 0)
4577 unsigned int alignment_needed;
4578 asection *o;
4580 /* Align this section first to the input sections requirement,
4581 then to the output section's requirement. If this alignment
4582 is greater than any seen before, then record it too. Perform
4583 the alignment by inserting a magic 'padding' statement. */
4585 if (output_section_statement->subsection_alignment != -1)
4586 i->alignment_power = output_section_statement->subsection_alignment;
4588 o = output_section_statement->bfd_section;
4589 if (o->alignment_power < i->alignment_power)
4590 o->alignment_power = i->alignment_power;
4592 alignment_needed = align_power (dot, i->alignment_power) - dot;
4594 if (alignment_needed != 0)
4596 insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
4597 dot += alignment_needed;
4600 /* Remember where in the output section this input section goes. */
4602 i->output_offset = dot - o->vma;
4604 /* Mark how big the output section must be to contain this now. */
4605 dot += TO_ADDR (i->size);
4606 o->size = TO_SIZE (dot - o->vma);
4608 else
4610 i->output_offset = i->vma - output_section_statement->bfd_section->vma;
4613 return dot;
4616 static int
4617 sort_sections_by_lma (const void *arg1, const void *arg2)
4619 const asection *sec1 = *(const asection **) arg1;
4620 const asection *sec2 = *(const asection **) arg2;
4622 if (bfd_section_lma (sec1->owner, sec1)
4623 < bfd_section_lma (sec2->owner, sec2))
4624 return -1;
4625 else if (bfd_section_lma (sec1->owner, sec1)
4626 > bfd_section_lma (sec2->owner, sec2))
4627 return 1;
4628 else if (sec1->id < sec2->id)
4629 return -1;
4630 else if (sec1->id > sec2->id)
4631 return 1;
4633 return 0;
4636 #define IGNORE_SECTION(s) \
4637 ((s->flags & SEC_ALLOC) == 0 \
4638 || ((s->flags & SEC_THREAD_LOCAL) != 0 \
4639 && (s->flags & SEC_LOAD) == 0))
4641 /* Check to see if any allocated sections overlap with other allocated
4642 sections. This can happen if a linker script specifies the output
4643 section addresses of the two sections. Also check whether any memory
4644 region has overflowed. */
4646 static void
4647 lang_check_section_addresses (void)
4649 asection *s, *p;
4650 asection **sections, **spp;
4651 unsigned int count;
4652 bfd_vma s_start;
4653 bfd_vma s_end;
4654 bfd_vma p_start;
4655 bfd_vma p_end;
4656 bfd_size_type amt;
4657 lang_memory_region_type *m;
4659 if (bfd_count_sections (link_info.output_bfd) <= 1)
4660 return;
4662 amt = bfd_count_sections (link_info.output_bfd) * sizeof (asection *);
4663 sections = (asection **) xmalloc (amt);
4665 /* Scan all sections in the output list. */
4666 count = 0;
4667 for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
4669 /* Only consider loadable sections with real contents. */
4670 if (!(s->flags & SEC_LOAD)
4671 || !(s->flags & SEC_ALLOC)
4672 || s->size == 0)
4673 continue;
4675 sections[count] = s;
4676 count++;
4679 if (count <= 1)
4680 return;
4682 qsort (sections, (size_t) count, sizeof (asection *),
4683 sort_sections_by_lma);
4685 spp = sections;
4686 s = *spp++;
4687 s_start = s->lma;
4688 s_end = s_start + TO_ADDR (s->size) - 1;
4689 for (count--; count; count--)
4691 /* We must check the sections' LMA addresses not their VMA
4692 addresses because overlay sections can have overlapping VMAs
4693 but they must have distinct LMAs. */
4694 p = s;
4695 p_start = s_start;
4696 p_end = s_end;
4697 s = *spp++;
4698 s_start = s->lma;
4699 s_end = s_start + TO_ADDR (s->size) - 1;
4701 /* Look for an overlap. We have sorted sections by lma, so we
4702 know that s_start >= p_start. Besides the obvious case of
4703 overlap when the current section starts before the previous
4704 one ends, we also must have overlap if the previous section
4705 wraps around the address space. */
4706 if (s_start <= p_end
4707 || p_end < p_start)
4708 einfo (_("%X%P: section %s loaded at [%V,%V] overlaps section %s loaded at [%V,%V]\n"),
4709 s->name, s_start, s_end, p->name, p_start, p_end);
4712 free (sections);
4714 /* If any memory region has overflowed, report by how much.
4715 We do not issue this diagnostic for regions that had sections
4716 explicitly placed outside their bounds; os_region_check's
4717 diagnostics are adequate for that case.
4719 FIXME: It is conceivable that m->current - (m->origin + m->length)
4720 might overflow a 32-bit integer. There is, alas, no way to print
4721 a bfd_vma quantity in decimal. */
4722 for (m = lang_memory_region_list; m; m = m->next)
4723 if (m->had_full_message)
4724 einfo (_("%X%P: region `%s' overflowed by %ld bytes\n"),
4725 m->name_list.name, (long)(m->current - (m->origin + m->length)));
4729 /* Make sure the new address is within the region. We explicitly permit the
4730 current address to be at the exact end of the region when the address is
4731 non-zero, in case the region is at the end of addressable memory and the
4732 calculation wraps around. */
4734 static void
4735 os_region_check (lang_output_section_statement_type *os,
4736 lang_memory_region_type *region,
4737 etree_type *tree,
4738 bfd_vma rbase)
4740 if ((region->current < region->origin
4741 || (region->current - region->origin > region->length))
4742 && ((region->current != region->origin + region->length)
4743 || rbase == 0))
4745 if (tree != NULL)
4747 einfo (_("%X%P: address 0x%v of %B section `%s'"
4748 " is not within region `%s'\n"),
4749 region->current,
4750 os->bfd_section->owner,
4751 os->bfd_section->name,
4752 region->name_list.name);
4754 else if (!region->had_full_message)
4756 region->had_full_message = TRUE;
4758 einfo (_("%X%P: %B section `%s' will not fit in region `%s'\n"),
4759 os->bfd_section->owner,
4760 os->bfd_section->name,
4761 region->name_list.name);
4766 /* Set the sizes for all the output sections. */
4768 static bfd_vma
4769 lang_size_sections_1
4770 (lang_statement_union_type **prev,
4771 lang_output_section_statement_type *output_section_statement,
4772 fill_type *fill,
4773 bfd_vma dot,
4774 bfd_boolean *relax,
4775 bfd_boolean check_regions)
4777 lang_statement_union_type *s;
4779 /* Size up the sections from their constituent parts. */
4780 for (s = *prev; s != NULL; s = s->header.next)
4782 switch (s->header.type)
4784 case lang_output_section_statement_enum:
4786 bfd_vma newdot, after;
4787 lang_output_section_statement_type *os;
4788 lang_memory_region_type *r;
4789 int section_alignment = 0;
4791 os = &s->output_section_statement;
4792 if (os->constraint == -1)
4793 break;
4795 /* FIXME: We shouldn't need to zero section vmas for ld -r
4796 here, in lang_insert_orphan, or in the default linker scripts.
4797 This is covering for coff backend linker bugs. See PR6945. */
4798 if (os->addr_tree == NULL
4799 && link_info.relocatable
4800 && (bfd_get_flavour (link_info.output_bfd)
4801 == bfd_target_coff_flavour))
4802 os->addr_tree = exp_intop (0);
4803 if (os->addr_tree != NULL)
4805 os->processed_vma = FALSE;
4806 exp_fold_tree (os->addr_tree, bfd_abs_section_ptr, &dot);
4808 if (expld.result.valid_p)
4810 dot = expld.result.value;
4811 if (expld.result.section != NULL)
4812 dot += expld.result.section->vma;
4814 else if (expld.phase != lang_mark_phase_enum)
4815 einfo (_("%F%S: non constant or forward reference"
4816 " address expression for section %s\n"),
4817 os->name);
4820 if (os->bfd_section == NULL)
4821 /* This section was removed or never actually created. */
4822 break;
4824 /* If this is a COFF shared library section, use the size and
4825 address from the input section. FIXME: This is COFF
4826 specific; it would be cleaner if there were some other way
4827 to do this, but nothing simple comes to mind. */
4828 if (((bfd_get_flavour (link_info.output_bfd)
4829 == bfd_target_ecoff_flavour)
4830 || (bfd_get_flavour (link_info.output_bfd)
4831 == bfd_target_coff_flavour))
4832 && (os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
4834 asection *input;
4836 if (os->children.head == NULL
4837 || os->children.head->header.next != NULL
4838 || (os->children.head->header.type
4839 != lang_input_section_enum))
4840 einfo (_("%P%X: Internal error on COFF shared library"
4841 " section %s\n"), os->name);
4843 input = os->children.head->input_section.section;
4844 bfd_set_section_vma (os->bfd_section->owner,
4845 os->bfd_section,
4846 bfd_section_vma (input->owner, input));
4847 os->bfd_section->size = input->size;
4848 break;
4851 newdot = dot;
4852 if (bfd_is_abs_section (os->bfd_section))
4854 /* No matter what happens, an abs section starts at zero. */
4855 ASSERT (os->bfd_section->vma == 0);
4857 else
4859 if (os->addr_tree == NULL)
4861 /* No address specified for this section, get one
4862 from the region specification. */
4863 if (os->region == NULL
4864 || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))
4865 && os->region->name_list.name[0] == '*'
4866 && strcmp (os->region->name_list.name,
4867 DEFAULT_MEMORY_REGION) == 0))
4869 os->region = lang_memory_default (os->bfd_section);
4872 /* If a loadable section is using the default memory
4873 region, and some non default memory regions were
4874 defined, issue an error message. */
4875 if (!os->ignored
4876 && !IGNORE_SECTION (os->bfd_section)
4877 && ! link_info.relocatable
4878 && check_regions
4879 && strcmp (os->region->name_list.name,
4880 DEFAULT_MEMORY_REGION) == 0
4881 && lang_memory_region_list != NULL
4882 && (strcmp (lang_memory_region_list->name_list.name,
4883 DEFAULT_MEMORY_REGION) != 0
4884 || lang_memory_region_list->next != NULL)
4885 && expld.phase != lang_mark_phase_enum)
4887 /* By default this is an error rather than just a
4888 warning because if we allocate the section to the
4889 default memory region we can end up creating an
4890 excessively large binary, or even seg faulting when
4891 attempting to perform a negative seek. See
4892 sources.redhat.com/ml/binutils/2003-04/msg00423.html
4893 for an example of this. This behaviour can be
4894 overridden by the using the --no-check-sections
4895 switch. */
4896 if (command_line.check_section_addresses)
4897 einfo (_("%P%F: error: no memory region specified"
4898 " for loadable section `%s'\n"),
4899 bfd_get_section_name (link_info.output_bfd,
4900 os->bfd_section));
4901 else
4902 einfo (_("%P: warning: no memory region specified"
4903 " for loadable section `%s'\n"),
4904 bfd_get_section_name (link_info.output_bfd,
4905 os->bfd_section));
4908 newdot = os->region->current;
4909 section_alignment = os->bfd_section->alignment_power;
4911 else
4912 section_alignment = os->section_alignment;
4914 /* Align to what the section needs. */
4915 if (section_alignment > 0)
4917 bfd_vma savedot = newdot;
4918 newdot = align_power (newdot, section_alignment);
4920 if (newdot != savedot
4921 && (config.warn_section_align
4922 || os->addr_tree != NULL)
4923 && expld.phase != lang_mark_phase_enum)
4924 einfo (_("%P: warning: changing start of section"
4925 " %s by %lu bytes\n"),
4926 os->name, (unsigned long) (newdot - savedot));
4929 bfd_set_section_vma (0, os->bfd_section, newdot);
4931 os->bfd_section->output_offset = 0;
4934 lang_size_sections_1 (&os->children.head, os,
4935 os->fill, newdot, relax, check_regions);
4937 os->processed_vma = TRUE;
4939 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
4940 /* Except for some special linker created sections,
4941 no output section should change from zero size
4942 after strip_excluded_output_sections. A non-zero
4943 size on an ignored section indicates that some
4944 input section was not sized early enough. */
4945 ASSERT (os->bfd_section->size == 0);
4946 else
4948 dot = os->bfd_section->vma;
4950 /* Put the section within the requested block size, or
4951 align at the block boundary. */
4952 after = ((dot
4953 + TO_ADDR (os->bfd_section->size)
4954 + os->block_value - 1)
4955 & - (bfd_vma) os->block_value);
4957 os->bfd_section->size = TO_SIZE (after - os->bfd_section->vma);
4960 /* Set section lma. */
4961 r = os->region;
4962 if (r == NULL)
4963 r = lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
4965 if (os->load_base)
4967 bfd_vma lma = exp_get_abs_int (os->load_base, 0, "load base");
4968 os->bfd_section->lma = lma;
4970 else if (os->lma_region != NULL)
4972 bfd_vma lma = os->lma_region->current;
4974 if (section_alignment > 0)
4975 lma = align_power (lma, section_alignment);
4976 os->bfd_section->lma = lma;
4978 else if (r->last_os != NULL
4979 && (os->bfd_section->flags & SEC_ALLOC) != 0)
4981 bfd_vma lma;
4982 asection *last;
4984 last = r->last_os->output_section_statement.bfd_section;
4986 /* A backwards move of dot should be accompanied by
4987 an explicit assignment to the section LMA (ie.
4988 os->load_base set) because backwards moves can
4989 create overlapping LMAs. */
4990 if (dot < last->vma
4991 && os->bfd_section->size != 0
4992 && dot + os->bfd_section->size <= last->vma)
4994 /* If dot moved backwards then leave lma equal to
4995 vma. This is the old default lma, which might
4996 just happen to work when the backwards move is
4997 sufficiently large. Nag if this changes anything,
4998 so people can fix their linker scripts. */
5000 if (last->vma != last->lma)
5001 einfo (_("%P: warning: dot moved backwards before `%s'\n"),
5002 os->name);
5004 else
5006 /* If this is an overlay, set the current lma to that
5007 at the end of the previous section. */
5008 if (os->sectype == overlay_section)
5009 lma = last->lma + last->size;
5011 /* Otherwise, keep the same lma to vma relationship
5012 as the previous section. */
5013 else
5014 lma = dot + last->lma - last->vma;
5016 if (section_alignment > 0)
5017 lma = align_power (lma, section_alignment);
5018 os->bfd_section->lma = lma;
5021 os->processed_lma = TRUE;
5023 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
5024 break;
5026 /* Keep track of normal sections using the default
5027 lma region. We use this to set the lma for
5028 following sections. Overlays or other linker
5029 script assignment to lma might mean that the
5030 default lma == vma is incorrect.
5031 To avoid warnings about dot moving backwards when using
5032 -Ttext, don't start tracking sections until we find one
5033 of non-zero size or with lma set differently to vma. */
5034 if (((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5035 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0)
5036 && (os->bfd_section->flags & SEC_ALLOC) != 0
5037 && (os->bfd_section->size != 0
5038 || (r->last_os == NULL
5039 && os->bfd_section->vma != os->bfd_section->lma)
5040 || (r->last_os != NULL
5041 && dot >= (r->last_os->output_section_statement
5042 .bfd_section->vma)))
5043 && os->lma_region == NULL
5044 && !link_info.relocatable)
5045 r->last_os = s;
5047 /* .tbss sections effectively have zero size. */
5048 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5049 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5050 || link_info.relocatable)
5051 dot += TO_ADDR (os->bfd_section->size);
5053 if (os->update_dot_tree != 0)
5054 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5056 /* Update dot in the region ?
5057 We only do this if the section is going to be allocated,
5058 since unallocated sections do not contribute to the region's
5059 overall size in memory. */
5060 if (os->region != NULL
5061 && (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD)))
5063 os->region->current = dot;
5065 if (check_regions)
5066 /* Make sure the new address is within the region. */
5067 os_region_check (os, os->region, os->addr_tree,
5068 os->bfd_section->vma);
5070 if (os->lma_region != NULL && os->lma_region != os->region
5071 && (os->bfd_section->flags & SEC_LOAD))
5073 os->lma_region->current
5074 = os->bfd_section->lma + TO_ADDR (os->bfd_section->size);
5076 if (check_regions)
5077 os_region_check (os, os->lma_region, NULL,
5078 os->bfd_section->lma);
5082 break;
5084 case lang_constructors_statement_enum:
5085 dot = lang_size_sections_1 (&constructor_list.head,
5086 output_section_statement,
5087 fill, dot, relax, check_regions);
5088 break;
5090 case lang_data_statement_enum:
5092 unsigned int size = 0;
5094 s->data_statement.output_offset =
5095 dot - output_section_statement->bfd_section->vma;
5096 s->data_statement.output_section =
5097 output_section_statement->bfd_section;
5099 /* We might refer to provided symbols in the expression, and
5100 need to mark them as needed. */
5101 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5103 switch (s->data_statement.type)
5105 default:
5106 abort ();
5107 case QUAD:
5108 case SQUAD:
5109 size = QUAD_SIZE;
5110 break;
5111 case LONG:
5112 size = LONG_SIZE;
5113 break;
5114 case SHORT:
5115 size = SHORT_SIZE;
5116 break;
5117 case BYTE:
5118 size = BYTE_SIZE;
5119 break;
5121 if (size < TO_SIZE ((unsigned) 1))
5122 size = TO_SIZE ((unsigned) 1);
5123 dot += TO_ADDR (size);
5124 output_section_statement->bfd_section->size += size;
5126 break;
5128 case lang_reloc_statement_enum:
5130 int size;
5132 s->reloc_statement.output_offset =
5133 dot - output_section_statement->bfd_section->vma;
5134 s->reloc_statement.output_section =
5135 output_section_statement->bfd_section;
5136 size = bfd_get_reloc_size (s->reloc_statement.howto);
5137 dot += TO_ADDR (size);
5138 output_section_statement->bfd_section->size += size;
5140 break;
5142 case lang_wild_statement_enum:
5143 dot = lang_size_sections_1 (&s->wild_statement.children.head,
5144 output_section_statement,
5145 fill, dot, relax, check_regions);
5146 break;
5148 case lang_object_symbols_statement_enum:
5149 link_info.create_object_symbols_section =
5150 output_section_statement->bfd_section;
5151 break;
5153 case lang_output_statement_enum:
5154 case lang_target_statement_enum:
5155 break;
5157 case lang_input_section_enum:
5159 asection *i;
5161 i = s->input_section.section;
5162 if (relax)
5164 bfd_boolean again;
5166 if (! bfd_relax_section (i->owner, i, &link_info, &again))
5167 einfo (_("%P%F: can't relax section: %E\n"));
5168 if (again)
5169 *relax = TRUE;
5171 dot = size_input_section (prev, output_section_statement,
5172 output_section_statement->fill, dot);
5174 break;
5176 case lang_input_statement_enum:
5177 break;
5179 case lang_fill_statement_enum:
5180 s->fill_statement.output_section =
5181 output_section_statement->bfd_section;
5183 fill = s->fill_statement.fill;
5184 break;
5186 case lang_assignment_statement_enum:
5188 bfd_vma newdot = dot;
5189 etree_type *tree = s->assignment_statement.exp;
5191 expld.dataseg.relro = exp_dataseg_relro_none;
5193 exp_fold_tree (tree,
5194 output_section_statement->bfd_section,
5195 &newdot);
5197 if (expld.dataseg.relro == exp_dataseg_relro_start)
5199 if (!expld.dataseg.relro_start_stat)
5200 expld.dataseg.relro_start_stat = s;
5201 else
5203 ASSERT (expld.dataseg.relro_start_stat == s);
5206 else if (expld.dataseg.relro == exp_dataseg_relro_end)
5208 if (!expld.dataseg.relro_end_stat)
5209 expld.dataseg.relro_end_stat = s;
5210 else
5212 ASSERT (expld.dataseg.relro_end_stat == s);
5215 expld.dataseg.relro = exp_dataseg_relro_none;
5217 /* This symbol is relative to this section. */
5218 if ((tree->type.node_class == etree_provided
5219 || tree->type.node_class == etree_assign)
5220 && (tree->assign.dst [0] != '.'
5221 || tree->assign.dst [1] != '\0'))
5222 output_section_statement->section_relative_symbol = 1;
5224 if (!output_section_statement->ignored)
5226 if (output_section_statement == abs_output_section)
5228 /* If we don't have an output section, then just adjust
5229 the default memory address. */
5230 lang_memory_region_lookup (DEFAULT_MEMORY_REGION,
5231 FALSE)->current = newdot;
5233 else if (newdot != dot)
5235 /* Insert a pad after this statement. We can't
5236 put the pad before when relaxing, in case the
5237 assignment references dot. */
5238 insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
5239 output_section_statement->bfd_section, dot);
5241 /* Don't neuter the pad below when relaxing. */
5242 s = s->header.next;
5244 /* If dot is advanced, this implies that the section
5245 should have space allocated to it, unless the
5246 user has explicitly stated that the section
5247 should not be allocated. */
5248 if (output_section_statement->sectype != noalloc_section
5249 && (output_section_statement->sectype != noload_section
5250 || (bfd_get_flavour (link_info.output_bfd)
5251 == bfd_target_elf_flavour)))
5252 output_section_statement->bfd_section->flags |= SEC_ALLOC;
5254 dot = newdot;
5257 break;
5259 case lang_padding_statement_enum:
5260 /* If this is the first time lang_size_sections is called,
5261 we won't have any padding statements. If this is the
5262 second or later passes when relaxing, we should allow
5263 padding to shrink. If padding is needed on this pass, it
5264 will be added back in. */
5265 s->padding_statement.size = 0;
5267 /* Make sure output_offset is valid. If relaxation shrinks
5268 the section and this pad isn't needed, it's possible to
5269 have output_offset larger than the final size of the
5270 section. bfd_set_section_contents will complain even for
5271 a pad size of zero. */
5272 s->padding_statement.output_offset
5273 = dot - output_section_statement->bfd_section->vma;
5274 break;
5276 case lang_group_statement_enum:
5277 dot = lang_size_sections_1 (&s->group_statement.children.head,
5278 output_section_statement,
5279 fill, dot, relax, check_regions);
5280 break;
5282 case lang_insert_statement_enum:
5283 break;
5285 /* We can only get here when relaxing is turned on. */
5286 case lang_address_statement_enum:
5287 break;
5289 default:
5290 FAIL ();
5291 break;
5293 prev = &s->header.next;
5295 return dot;
5298 /* Callback routine that is used in _bfd_elf_map_sections_to_segments.
5299 The BFD library has set NEW_SEGMENT to TRUE iff it thinks that
5300 CURRENT_SECTION and PREVIOUS_SECTION ought to be placed into different
5301 segments. We are allowed an opportunity to override this decision. */
5303 bfd_boolean
5304 ldlang_override_segment_assignment (struct bfd_link_info * info ATTRIBUTE_UNUSED,
5305 bfd * abfd ATTRIBUTE_UNUSED,
5306 asection * current_section,
5307 asection * previous_section,
5308 bfd_boolean new_segment)
5310 lang_output_section_statement_type * cur;
5311 lang_output_section_statement_type * prev;
5313 /* The checks below are only necessary when the BFD library has decided
5314 that the two sections ought to be placed into the same segment. */
5315 if (new_segment)
5316 return TRUE;
5318 /* Paranoia checks. */
5319 if (current_section == NULL || previous_section == NULL)
5320 return new_segment;
5322 /* Find the memory regions associated with the two sections.
5323 We call lang_output_section_find() here rather than scanning the list
5324 of output sections looking for a matching section pointer because if
5325 we have a large number of sections then a hash lookup is faster. */
5326 cur = lang_output_section_find (current_section->name);
5327 prev = lang_output_section_find (previous_section->name);
5329 /* More paranoia. */
5330 if (cur == NULL || prev == NULL)
5331 return new_segment;
5333 /* If the regions are different then force the sections to live in
5334 different segments. See the email thread starting at the following
5335 URL for the reasons why this is necessary:
5336 http://sourceware.org/ml/binutils/2007-02/msg00216.html */
5337 return cur->region != prev->region;
5340 void
5341 one_lang_size_sections_pass (bfd_boolean *relax, bfd_boolean check_regions)
5343 lang_statement_iteration++;
5344 lang_size_sections_1 (&statement_list.head, abs_output_section,
5345 0, 0, relax, check_regions);
5348 void
5349 lang_size_sections (bfd_boolean *relax, bfd_boolean check_regions)
5351 expld.phase = lang_allocating_phase_enum;
5352 expld.dataseg.phase = exp_dataseg_none;
5354 one_lang_size_sections_pass (relax, check_regions);
5355 if (expld.dataseg.phase == exp_dataseg_end_seen
5356 && link_info.relro && expld.dataseg.relro_end)
5358 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
5359 to put expld.dataseg.relro on a (common) page boundary. */
5360 bfd_vma min_base, old_base, relro_end, maxpage;
5362 expld.dataseg.phase = exp_dataseg_relro_adjust;
5363 maxpage = expld.dataseg.maxpagesize;
5364 /* MIN_BASE is the absolute minimum address we are allowed to start the
5365 read-write segment (byte before will be mapped read-only). */
5366 min_base = (expld.dataseg.min_base + maxpage - 1) & ~(maxpage - 1);
5367 /* OLD_BASE is the address for a feasible minimum address which will
5368 still not cause a data overlap inside MAXPAGE causing file offset skip
5369 by MAXPAGE. */
5370 old_base = expld.dataseg.base;
5371 expld.dataseg.base += (-expld.dataseg.relro_end
5372 & (expld.dataseg.pagesize - 1));
5373 /* Compute the expected PT_GNU_RELRO segment end. */
5374 relro_end = ((expld.dataseg.relro_end + expld.dataseg.pagesize - 1)
5375 & ~(expld.dataseg.pagesize - 1));
5376 if (min_base + maxpage < expld.dataseg.base)
5378 expld.dataseg.base -= maxpage;
5379 relro_end -= maxpage;
5381 lang_reset_memory_regions ();
5382 one_lang_size_sections_pass (relax, check_regions);
5383 if (expld.dataseg.relro_end > relro_end)
5385 /* The alignment of sections between DATA_SEGMENT_ALIGN
5386 and DATA_SEGMENT_RELRO_END caused huge padding to be
5387 inserted at DATA_SEGMENT_RELRO_END. Try to start a bit lower so
5388 that the section alignments will fit in. */
5389 asection *sec;
5390 unsigned int max_alignment_power = 0;
5392 /* Find maximum alignment power of sections between
5393 DATA_SEGMENT_ALIGN and DATA_SEGMENT_RELRO_END. */
5394 for (sec = link_info.output_bfd->sections; sec; sec = sec->next)
5395 if (sec->vma >= expld.dataseg.base
5396 && sec->vma < expld.dataseg.relro_end
5397 && sec->alignment_power > max_alignment_power)
5398 max_alignment_power = sec->alignment_power;
5400 if (((bfd_vma) 1 << max_alignment_power) < expld.dataseg.pagesize)
5402 if (expld.dataseg.base - (1 << max_alignment_power) < old_base)
5403 expld.dataseg.base += expld.dataseg.pagesize;
5404 expld.dataseg.base -= (1 << max_alignment_power);
5405 lang_reset_memory_regions ();
5406 one_lang_size_sections_pass (relax, check_regions);
5409 link_info.relro_start = expld.dataseg.base;
5410 link_info.relro_end = expld.dataseg.relro_end;
5412 else if (expld.dataseg.phase == exp_dataseg_end_seen)
5414 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
5415 a page could be saved in the data segment. */
5416 bfd_vma first, last;
5418 first = -expld.dataseg.base & (expld.dataseg.pagesize - 1);
5419 last = expld.dataseg.end & (expld.dataseg.pagesize - 1);
5420 if (first && last
5421 && ((expld.dataseg.base & ~(expld.dataseg.pagesize - 1))
5422 != (expld.dataseg.end & ~(expld.dataseg.pagesize - 1)))
5423 && first + last <= expld.dataseg.pagesize)
5425 expld.dataseg.phase = exp_dataseg_adjust;
5426 lang_reset_memory_regions ();
5427 one_lang_size_sections_pass (relax, check_regions);
5429 else
5430 expld.dataseg.phase = exp_dataseg_done;
5432 else
5433 expld.dataseg.phase = exp_dataseg_done;
5436 /* Worker function for lang_do_assignments. Recursiveness goes here. */
5438 static bfd_vma
5439 lang_do_assignments_1 (lang_statement_union_type *s,
5440 lang_output_section_statement_type *current_os,
5441 fill_type *fill,
5442 bfd_vma dot)
5444 for (; s != NULL; s = s->header.next)
5446 switch (s->header.type)
5448 case lang_constructors_statement_enum:
5449 dot = lang_do_assignments_1 (constructor_list.head,
5450 current_os, fill, dot);
5451 break;
5453 case lang_output_section_statement_enum:
5455 lang_output_section_statement_type *os;
5457 os = &(s->output_section_statement);
5458 if (os->bfd_section != NULL && !os->ignored)
5460 dot = os->bfd_section->vma;
5462 lang_do_assignments_1 (os->children.head, os, os->fill, dot);
5464 /* .tbss sections effectively have zero size. */
5465 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5466 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5467 || link_info.relocatable)
5468 dot += TO_ADDR (os->bfd_section->size);
5470 if (os->update_dot_tree != NULL)
5471 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5474 break;
5476 case lang_wild_statement_enum:
5478 dot = lang_do_assignments_1 (s->wild_statement.children.head,
5479 current_os, fill, dot);
5480 break;
5482 case lang_object_symbols_statement_enum:
5483 case lang_output_statement_enum:
5484 case lang_target_statement_enum:
5485 break;
5487 case lang_data_statement_enum:
5488 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5489 if (expld.result.valid_p)
5491 s->data_statement.value = expld.result.value;
5492 if (expld.result.section != NULL)
5493 s->data_statement.value += expld.result.section->vma;
5495 else
5496 einfo (_("%F%P: invalid data statement\n"));
5498 unsigned int size;
5499 switch (s->data_statement.type)
5501 default:
5502 abort ();
5503 case QUAD:
5504 case SQUAD:
5505 size = QUAD_SIZE;
5506 break;
5507 case LONG:
5508 size = LONG_SIZE;
5509 break;
5510 case SHORT:
5511 size = SHORT_SIZE;
5512 break;
5513 case BYTE:
5514 size = BYTE_SIZE;
5515 break;
5517 if (size < TO_SIZE ((unsigned) 1))
5518 size = TO_SIZE ((unsigned) 1);
5519 dot += TO_ADDR (size);
5521 break;
5523 case lang_reloc_statement_enum:
5524 exp_fold_tree (s->reloc_statement.addend_exp,
5525 bfd_abs_section_ptr, &dot);
5526 if (expld.result.valid_p)
5527 s->reloc_statement.addend_value = expld.result.value;
5528 else
5529 einfo (_("%F%P: invalid reloc statement\n"));
5530 dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
5531 break;
5533 case lang_input_section_enum:
5535 asection *in = s->input_section.section;
5537 if ((in->flags & SEC_EXCLUDE) == 0)
5538 dot += TO_ADDR (in->size);
5540 break;
5542 case lang_input_statement_enum:
5543 break;
5545 case lang_fill_statement_enum:
5546 fill = s->fill_statement.fill;
5547 break;
5549 case lang_assignment_statement_enum:
5550 exp_fold_tree (s->assignment_statement.exp,
5551 current_os->bfd_section,
5552 &dot);
5553 break;
5555 case lang_padding_statement_enum:
5556 dot += TO_ADDR (s->padding_statement.size);
5557 break;
5559 case lang_group_statement_enum:
5560 dot = lang_do_assignments_1 (s->group_statement.children.head,
5561 current_os, fill, dot);
5562 break;
5564 case lang_insert_statement_enum:
5565 break;
5567 case lang_address_statement_enum:
5568 break;
5570 default:
5571 FAIL ();
5572 break;
5575 return dot;
5578 void
5579 lang_do_assignments (void)
5581 lang_statement_iteration++;
5582 lang_do_assignments_1 (statement_list.head, abs_output_section, NULL, 0);
5585 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
5586 operator .startof. (section_name), it produces an undefined symbol
5587 .startof.section_name. Similarly, when it sees
5588 .sizeof. (section_name), it produces an undefined symbol
5589 .sizeof.section_name. For all the output sections, we look for
5590 such symbols, and set them to the correct value. */
5592 static void
5593 lang_set_startof (void)
5595 asection *s;
5597 if (link_info.relocatable)
5598 return;
5600 for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
5602 const char *secname;
5603 char *buf;
5604 struct bfd_link_hash_entry *h;
5606 secname = bfd_get_section_name (link_info.output_bfd, s);
5607 buf = (char *) xmalloc (10 + strlen (secname));
5609 sprintf (buf, ".startof.%s", secname);
5610 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5611 if (h != NULL && h->type == bfd_link_hash_undefined)
5613 h->type = bfd_link_hash_defined;
5614 h->u.def.value = bfd_get_section_vma (link_info.output_bfd, s);
5615 h->u.def.section = bfd_abs_section_ptr;
5618 sprintf (buf, ".sizeof.%s", secname);
5619 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5620 if (h != NULL && h->type == bfd_link_hash_undefined)
5622 h->type = bfd_link_hash_defined;
5623 h->u.def.value = TO_ADDR (s->size);
5624 h->u.def.section = bfd_abs_section_ptr;
5627 free (buf);
5631 static void
5632 lang_end (void)
5634 struct bfd_link_hash_entry *h;
5635 bfd_boolean warn;
5637 if ((link_info.relocatable && !link_info.gc_sections)
5638 || (link_info.shared && !link_info.executable))
5639 warn = entry_from_cmdline;
5640 else
5641 warn = TRUE;
5643 /* Force the user to specify a root when generating a relocatable with
5644 --gc-sections. */
5645 if (link_info.gc_sections && link_info.relocatable
5646 && !(entry_from_cmdline || undef_from_cmdline))
5647 einfo (_("%P%F: gc-sections requires either an entry or "
5648 "an undefined symbol\n"));
5650 if (entry_symbol.name == NULL)
5652 /* No entry has been specified. Look for the default entry, but
5653 don't warn if we don't find it. */
5654 entry_symbol.name = entry_symbol_default;
5655 warn = FALSE;
5658 h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
5659 FALSE, FALSE, TRUE);
5660 if (h != NULL
5661 && (h->type == bfd_link_hash_defined
5662 || h->type == bfd_link_hash_defweak)
5663 && h->u.def.section->output_section != NULL)
5665 bfd_vma val;
5667 val = (h->u.def.value
5668 + bfd_get_section_vma (link_info.output_bfd,
5669 h->u.def.section->output_section)
5670 + h->u.def.section->output_offset);
5671 if (! bfd_set_start_address (link_info.output_bfd, val))
5672 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
5674 else
5676 bfd_vma val;
5677 const char *send;
5679 /* We couldn't find the entry symbol. Try parsing it as a
5680 number. */
5681 val = bfd_scan_vma (entry_symbol.name, &send, 0);
5682 if (*send == '\0')
5684 if (! bfd_set_start_address (link_info.output_bfd, val))
5685 einfo (_("%P%F: can't set start address\n"));
5687 else
5689 asection *ts;
5691 /* Can't find the entry symbol, and it's not a number. Use
5692 the first address in the text section. */
5693 ts = bfd_get_section_by_name (link_info.output_bfd, entry_section);
5694 if (ts != NULL)
5696 if (warn)
5697 einfo (_("%P: warning: cannot find entry symbol %s;"
5698 " defaulting to %V\n"),
5699 entry_symbol.name,
5700 bfd_get_section_vma (link_info.output_bfd, ts));
5701 if (!(bfd_set_start_address
5702 (link_info.output_bfd,
5703 bfd_get_section_vma (link_info.output_bfd, ts))))
5704 einfo (_("%P%F: can't set start address\n"));
5706 else
5708 if (warn)
5709 einfo (_("%P: warning: cannot find entry symbol %s;"
5710 " not setting start address\n"),
5711 entry_symbol.name);
5716 /* Don't bfd_hash_table_free (&lang_definedness_table);
5717 map file output may result in a call of lang_track_definedness. */
5720 /* This is a small function used when we want to ignore errors from
5721 BFD. */
5723 static void
5724 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
5726 /* Don't do anything. */
5729 /* Check that the architecture of all the input files is compatible
5730 with the output file. Also call the backend to let it do any
5731 other checking that is needed. */
5733 static void
5734 lang_check (void)
5736 lang_statement_union_type *file;
5737 bfd *input_bfd;
5738 const bfd_arch_info_type *compatible;
5740 for (file = file_chain.head; file != NULL; file = file->input_statement.next)
5742 input_bfd = file->input_statement.the_bfd;
5743 compatible
5744 = bfd_arch_get_compatible (input_bfd, link_info.output_bfd,
5745 command_line.accept_unknown_input_arch);
5747 /* In general it is not possible to perform a relocatable
5748 link between differing object formats when the input
5749 file has relocations, because the relocations in the
5750 input format may not have equivalent representations in
5751 the output format (and besides BFD does not translate
5752 relocs for other link purposes than a final link). */
5753 if ((link_info.relocatable || link_info.emitrelocations)
5754 && (compatible == NULL
5755 || (bfd_get_flavour (input_bfd)
5756 != bfd_get_flavour (link_info.output_bfd)))
5757 && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
5759 einfo (_("%P%F: Relocatable linking with relocations from"
5760 " format %s (%B) to format %s (%B) is not supported\n"),
5761 bfd_get_target (input_bfd), input_bfd,
5762 bfd_get_target (link_info.output_bfd), link_info.output_bfd);
5763 /* einfo with %F exits. */
5766 if (compatible == NULL)
5768 if (command_line.warn_mismatch)
5769 einfo (_("%P%X: %s architecture of input file `%B'"
5770 " is incompatible with %s output\n"),
5771 bfd_printable_name (input_bfd), input_bfd,
5772 bfd_printable_name (link_info.output_bfd));
5774 else if (bfd_count_sections (input_bfd))
5776 /* If the input bfd has no contents, it shouldn't set the
5777 private data of the output bfd. */
5779 bfd_error_handler_type pfn = NULL;
5781 /* If we aren't supposed to warn about mismatched input
5782 files, temporarily set the BFD error handler to a
5783 function which will do nothing. We still want to call
5784 bfd_merge_private_bfd_data, since it may set up
5785 information which is needed in the output file. */
5786 if (! command_line.warn_mismatch)
5787 pfn = bfd_set_error_handler (ignore_bfd_errors);
5788 if (! bfd_merge_private_bfd_data (input_bfd, link_info.output_bfd))
5790 if (command_line.warn_mismatch)
5791 einfo (_("%P%X: failed to merge target specific data"
5792 " of file %B\n"), input_bfd);
5794 if (! command_line.warn_mismatch)
5795 bfd_set_error_handler (pfn);
5800 /* Look through all the global common symbols and attach them to the
5801 correct section. The -sort-common command line switch may be used
5802 to roughly sort the entries by alignment. */
5804 static void
5805 lang_common (void)
5807 if (command_line.inhibit_common_definition)
5808 return;
5809 if (link_info.relocatable
5810 && ! command_line.force_common_definition)
5811 return;
5813 if (! config.sort_common)
5814 bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
5815 else
5817 unsigned int power;
5819 if (config.sort_common == sort_descending)
5821 for (power = 4; power > 0; power--)
5822 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5824 power = 0;
5825 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5827 else
5829 for (power = 0; power <= 4; power++)
5830 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5832 power = UINT_MAX;
5833 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5838 /* Place one common symbol in the correct section. */
5840 static bfd_boolean
5841 lang_one_common (struct bfd_link_hash_entry *h, void *info)
5843 unsigned int power_of_two;
5844 bfd_vma size;
5845 asection *section;
5847 if (h->type != bfd_link_hash_common)
5848 return TRUE;
5850 size = h->u.c.size;
5851 power_of_two = h->u.c.p->alignment_power;
5853 if (config.sort_common == sort_descending
5854 && power_of_two < *(unsigned int *) info)
5855 return TRUE;
5856 else if (config.sort_common == sort_ascending
5857 && power_of_two > *(unsigned int *) info)
5858 return TRUE;
5860 section = h->u.c.p->section;
5861 if (!bfd_define_common_symbol (link_info.output_bfd, &link_info, h))
5862 einfo (_("%P%F: Could not define common symbol `%T': %E\n"),
5863 h->root.string);
5865 if (config.map_file != NULL)
5867 static bfd_boolean header_printed;
5868 int len;
5869 char *name;
5870 char buf[50];
5872 if (! header_printed)
5874 minfo (_("\nAllocating common symbols\n"));
5875 minfo (_("Common symbol size file\n\n"));
5876 header_printed = TRUE;
5879 name = bfd_demangle (link_info.output_bfd, h->root.string,
5880 DMGL_ANSI | DMGL_PARAMS);
5881 if (name == NULL)
5883 minfo ("%s", h->root.string);
5884 len = strlen (h->root.string);
5886 else
5888 minfo ("%s", name);
5889 len = strlen (name);
5890 free (name);
5893 if (len >= 19)
5895 print_nl ();
5896 len = 0;
5898 while (len < 20)
5900 print_space ();
5901 ++len;
5904 minfo ("0x");
5905 if (size <= 0xffffffff)
5906 sprintf (buf, "%lx", (unsigned long) size);
5907 else
5908 sprintf_vma (buf, size);
5909 minfo ("%s", buf);
5910 len = strlen (buf);
5912 while (len < 16)
5914 print_space ();
5915 ++len;
5918 minfo ("%B\n", section->owner);
5921 return TRUE;
5924 /* Run through the input files and ensure that every input section has
5925 somewhere to go. If one is found without a destination then create
5926 an input request and place it into the statement tree. */
5928 static void
5929 lang_place_orphans (void)
5931 LANG_FOR_EACH_INPUT_STATEMENT (file)
5933 asection *s;
5935 for (s = file->the_bfd->sections; s != NULL; s = s->next)
5937 if (s->output_section == NULL)
5939 /* This section of the file is not attached, root
5940 around for a sensible place for it to go. */
5942 if (file->just_syms_flag)
5943 bfd_link_just_syms (file->the_bfd, s, &link_info);
5944 else if ((s->flags & SEC_EXCLUDE) != 0)
5945 s->output_section = bfd_abs_section_ptr;
5946 else if (strcmp (s->name, "COMMON") == 0)
5948 /* This is a lonely common section which must have
5949 come from an archive. We attach to the section
5950 with the wildcard. */
5951 if (! link_info.relocatable
5952 || command_line.force_common_definition)
5954 if (default_common_section == NULL)
5955 default_common_section
5956 = lang_output_section_statement_lookup (".bss", 0,
5957 TRUE);
5958 lang_add_section (&default_common_section->children, s,
5959 default_common_section);
5962 else
5964 const char *name = s->name;
5965 int constraint = 0;
5967 if (config.unique_orphan_sections
5968 || unique_section_p (s, NULL))
5969 constraint = SPECIAL;
5971 if (!ldemul_place_orphan (s, name, constraint))
5973 lang_output_section_statement_type *os;
5974 os = lang_output_section_statement_lookup (name,
5975 constraint,
5976 TRUE);
5977 if (os->addr_tree == NULL
5978 && (link_info.relocatable
5979 || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0))
5980 os->addr_tree = exp_intop (0);
5981 lang_add_section (&os->children, s, os);
5989 void
5990 lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
5992 flagword *ptr_flags;
5994 ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
5995 while (*flags)
5997 switch (*flags)
5999 case 'A': case 'a':
6000 *ptr_flags |= SEC_ALLOC;
6001 break;
6003 case 'R': case 'r':
6004 *ptr_flags |= SEC_READONLY;
6005 break;
6007 case 'W': case 'w':
6008 *ptr_flags |= SEC_DATA;
6009 break;
6011 case 'X': case 'x':
6012 *ptr_flags |= SEC_CODE;
6013 break;
6015 case 'L': case 'l':
6016 case 'I': case 'i':
6017 *ptr_flags |= SEC_LOAD;
6018 break;
6020 default:
6021 einfo (_("%P%F: invalid syntax in flags\n"));
6022 break;
6024 flags++;
6028 /* Call a function on each input file. This function will be called
6029 on an archive, but not on the elements. */
6031 void
6032 lang_for_each_input_file (void (*func) (lang_input_statement_type *))
6034 lang_input_statement_type *f;
6036 for (f = (lang_input_statement_type *) input_file_chain.head;
6037 f != NULL;
6038 f = (lang_input_statement_type *) f->next_real_file)
6039 func (f);
6042 /* Call a function on each file. The function will be called on all
6043 the elements of an archive which are included in the link, but will
6044 not be called on the archive file itself. */
6046 void
6047 lang_for_each_file (void (*func) (lang_input_statement_type *))
6049 LANG_FOR_EACH_INPUT_STATEMENT (f)
6051 func (f);
6055 void
6056 ldlang_add_file (lang_input_statement_type *entry)
6058 lang_statement_append (&file_chain,
6059 (lang_statement_union_type *) entry,
6060 &entry->next);
6062 /* The BFD linker needs to have a list of all input BFDs involved in
6063 a link. */
6064 ASSERT (entry->the_bfd->link_next == NULL);
6065 ASSERT (entry->the_bfd != link_info.output_bfd);
6067 *link_info.input_bfds_tail = entry->the_bfd;
6068 link_info.input_bfds_tail = &entry->the_bfd->link_next;
6069 entry->the_bfd->usrdata = entry;
6070 bfd_set_gp_size (entry->the_bfd, g_switch_value);
6072 /* Look through the sections and check for any which should not be
6073 included in the link. We need to do this now, so that we can
6074 notice when the backend linker tries to report multiple
6075 definition errors for symbols which are in sections we aren't
6076 going to link. FIXME: It might be better to entirely ignore
6077 symbols which are defined in sections which are going to be
6078 discarded. This would require modifying the backend linker for
6079 each backend which might set the SEC_LINK_ONCE flag. If we do
6080 this, we should probably handle SEC_EXCLUDE in the same way. */
6082 bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
6085 void
6086 lang_add_output (const char *name, int from_script)
6088 /* Make -o on command line override OUTPUT in script. */
6089 if (!had_output_filename || !from_script)
6091 output_filename = name;
6092 had_output_filename = TRUE;
6096 static lang_output_section_statement_type *current_section;
6098 static int
6099 topower (int x)
6101 unsigned int i = 1;
6102 int l;
6104 if (x < 0)
6105 return -1;
6107 for (l = 0; l < 32; l++)
6109 if (i >= (unsigned int) x)
6110 return l;
6111 i <<= 1;
6114 return 0;
6117 lang_output_section_statement_type *
6118 lang_enter_output_section_statement (const char *output_section_statement_name,
6119 etree_type *address_exp,
6120 enum section_type sectype,
6121 etree_type *align,
6122 etree_type *subalign,
6123 etree_type *ebase,
6124 int constraint)
6126 lang_output_section_statement_type *os;
6128 os = lang_output_section_statement_lookup (output_section_statement_name,
6129 constraint, TRUE);
6130 current_section = os;
6132 if (os->addr_tree == NULL)
6134 os->addr_tree = address_exp;
6136 os->sectype = sectype;
6137 if (sectype != noload_section)
6138 os->flags = SEC_NO_FLAGS;
6139 else
6140 os->flags = SEC_NEVER_LOAD;
6141 os->block_value = 1;
6143 /* Make next things chain into subchain of this. */
6144 push_stat_ptr (&os->children);
6146 os->subsection_alignment =
6147 topower (exp_get_value_int (subalign, -1, "subsection alignment"));
6148 os->section_alignment =
6149 topower (exp_get_value_int (align, -1, "section alignment"));
6151 os->load_base = ebase;
6152 return os;
6155 void
6156 lang_final (void)
6158 lang_output_statement_type *new_stmt;
6160 new_stmt = new_stat (lang_output_statement, stat_ptr);
6161 new_stmt->name = output_filename;
6165 /* Reset the current counters in the regions. */
6167 void
6168 lang_reset_memory_regions (void)
6170 lang_memory_region_type *p = lang_memory_region_list;
6171 asection *o;
6172 lang_output_section_statement_type *os;
6174 for (p = lang_memory_region_list; p != NULL; p = p->next)
6176 p->current = p->origin;
6177 p->last_os = NULL;
6180 for (os = &lang_output_section_statement.head->output_section_statement;
6181 os != NULL;
6182 os = os->next)
6184 os->processed_vma = FALSE;
6185 os->processed_lma = FALSE;
6188 for (o = link_info.output_bfd->sections; o != NULL; o = o->next)
6190 /* Save the last size for possible use by bfd_relax_section. */
6191 o->rawsize = o->size;
6192 o->size = 0;
6196 /* Worker for lang_gc_sections_1. */
6198 static void
6199 gc_section_callback (lang_wild_statement_type *ptr,
6200 struct wildcard_list *sec ATTRIBUTE_UNUSED,
6201 asection *section,
6202 lang_input_statement_type *file ATTRIBUTE_UNUSED,
6203 void *data ATTRIBUTE_UNUSED)
6205 /* If the wild pattern was marked KEEP, the member sections
6206 should be as well. */
6207 if (ptr->keep_sections)
6208 section->flags |= SEC_KEEP;
6211 /* Iterate over sections marking them against GC. */
6213 static void
6214 lang_gc_sections_1 (lang_statement_union_type *s)
6216 for (; s != NULL; s = s->header.next)
6218 switch (s->header.type)
6220 case lang_wild_statement_enum:
6221 walk_wild (&s->wild_statement, gc_section_callback, NULL);
6222 break;
6223 case lang_constructors_statement_enum:
6224 lang_gc_sections_1 (constructor_list.head);
6225 break;
6226 case lang_output_section_statement_enum:
6227 lang_gc_sections_1 (s->output_section_statement.children.head);
6228 break;
6229 case lang_group_statement_enum:
6230 lang_gc_sections_1 (s->group_statement.children.head);
6231 break;
6232 default:
6233 break;
6238 static void
6239 lang_gc_sections (void)
6241 /* Keep all sections so marked in the link script. */
6243 lang_gc_sections_1 (statement_list.head);
6245 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
6246 the special case of debug info. (See bfd/stabs.c)
6247 Twiddle the flag here, to simplify later linker code. */
6248 if (link_info.relocatable)
6250 LANG_FOR_EACH_INPUT_STATEMENT (f)
6252 asection *sec;
6253 for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next)
6254 if ((sec->flags & SEC_DEBUGGING) == 0)
6255 sec->flags &= ~SEC_EXCLUDE;
6259 if (link_info.gc_sections)
6260 bfd_gc_sections (link_info.output_bfd, &link_info);
6263 /* Worker for lang_find_relro_sections_1. */
6265 static void
6266 find_relro_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
6267 struct wildcard_list *sec ATTRIBUTE_UNUSED,
6268 asection *section,
6269 lang_input_statement_type *file ATTRIBUTE_UNUSED,
6270 void *data)
6272 /* Discarded, excluded and ignored sections effectively have zero
6273 size. */
6274 if (section->output_section != NULL
6275 && section->output_section->owner == link_info.output_bfd
6276 && (section->output_section->flags & SEC_EXCLUDE) == 0
6277 && !IGNORE_SECTION (section)
6278 && section->size != 0)
6280 bfd_boolean *has_relro_section = (bfd_boolean *) data;
6281 *has_relro_section = TRUE;
6285 /* Iterate over sections for relro sections. */
6287 static void
6288 lang_find_relro_sections_1 (lang_statement_union_type *s,
6289 bfd_boolean *has_relro_section)
6291 if (*has_relro_section)
6292 return;
6294 for (; s != NULL; s = s->header.next)
6296 if (s == expld.dataseg.relro_end_stat)
6297 break;
6299 switch (s->header.type)
6301 case lang_wild_statement_enum:
6302 walk_wild (&s->wild_statement,
6303 find_relro_section_callback,
6304 has_relro_section);
6305 break;
6306 case lang_constructors_statement_enum:
6307 lang_find_relro_sections_1 (constructor_list.head,
6308 has_relro_section);
6309 break;
6310 case lang_output_section_statement_enum:
6311 lang_find_relro_sections_1 (s->output_section_statement.children.head,
6312 has_relro_section);
6313 break;
6314 case lang_group_statement_enum:
6315 lang_find_relro_sections_1 (s->group_statement.children.head,
6316 has_relro_section);
6317 break;
6318 default:
6319 break;
6324 static void
6325 lang_find_relro_sections (void)
6327 bfd_boolean has_relro_section = FALSE;
6329 /* Check all sections in the link script. */
6331 lang_find_relro_sections_1 (expld.dataseg.relro_start_stat,
6332 &has_relro_section);
6334 if (!has_relro_section)
6335 link_info.relro = FALSE;
6338 /* Relax all sections until bfd_relax_section gives up. */
6340 void
6341 lang_relax_sections (bfd_boolean need_layout)
6343 if (RELAXATION_ENABLED)
6345 /* We may need more than one relaxation pass. */
6346 int i = link_info.relax_pass;
6348 /* The backend can use it to determine the current pass. */
6349 link_info.relax_pass = 0;
6351 while (i--)
6353 /* Keep relaxing until bfd_relax_section gives up. */
6354 bfd_boolean relax_again;
6356 link_info.relax_trip = -1;
6359 link_info.relax_trip++;
6361 /* Note: pe-dll.c does something like this also. If you find
6362 you need to change this code, you probably need to change
6363 pe-dll.c also. DJ */
6365 /* Do all the assignments with our current guesses as to
6366 section sizes. */
6367 lang_do_assignments ();
6369 /* We must do this after lang_do_assignments, because it uses
6370 size. */
6371 lang_reset_memory_regions ();
6373 /* Perform another relax pass - this time we know where the
6374 globals are, so can make a better guess. */
6375 relax_again = FALSE;
6376 lang_size_sections (&relax_again, FALSE);
6378 while (relax_again);
6380 link_info.relax_pass++;
6382 need_layout = TRUE;
6385 if (need_layout)
6387 /* Final extra sizing to report errors. */
6388 lang_do_assignments ();
6389 lang_reset_memory_regions ();
6390 lang_size_sections (NULL, TRUE);
6394 void
6395 lang_process (void)
6397 /* Finalize dynamic list. */
6398 if (link_info.dynamic_list)
6399 lang_finalize_version_expr_head (&link_info.dynamic_list->head);
6401 current_target = default_target;
6403 /* Open the output file. */
6404 lang_for_each_statement (ldlang_open_output);
6405 init_opb ();
6407 ldemul_create_output_section_statements ();
6409 /* Add to the hash table all undefineds on the command line. */
6410 lang_place_undefineds ();
6412 if (!bfd_section_already_linked_table_init ())
6413 einfo (_("%P%F: Failed to create hash table\n"));
6415 /* Create a bfd for each input file. */
6416 current_target = default_target;
6417 open_input_bfds (statement_list.head, FALSE);
6419 #ifdef ENABLE_PLUGINS
6421 union lang_statement_union **listend;
6422 /* Now all files are read, let the plugin(s) decide if there
6423 are any more to be added to the link before we call the
6424 emulation's after_open hook. */
6425 listend = statement_list.tail;
6426 ASSERT (!*listend);
6427 if (plugin_call_all_symbols_read ())
6428 einfo (_("%P%F: %s: plugin reported error after all symbols read\n"),
6429 plugin_error_plugin ());
6430 /* If any new files were added, they will be on the end of the
6431 statement list, and we can open them now by getting open_input_bfds
6432 to carry on from where it ended last time. */
6433 if (*listend)
6434 open_input_bfds (*listend, FALSE);
6436 #endif /* ENABLE_PLUGINS */
6438 link_info.gc_sym_list = &entry_symbol;
6439 if (entry_symbol.name == NULL)
6440 link_info.gc_sym_list = ldlang_undef_chain_list_head;
6442 ldemul_after_open ();
6444 bfd_section_already_linked_table_free ();
6446 /* Make sure that we're not mixing architectures. We call this
6447 after all the input files have been opened, but before we do any
6448 other processing, so that any operations merge_private_bfd_data
6449 does on the output file will be known during the rest of the
6450 link. */
6451 lang_check ();
6453 /* Handle .exports instead of a version script if we're told to do so. */
6454 if (command_line.version_exports_section)
6455 lang_do_version_exports_section ();
6457 /* Build all sets based on the information gathered from the input
6458 files. */
6459 ldctor_build_sets ();
6461 /* Remove unreferenced sections if asked to. */
6462 lang_gc_sections ();
6464 /* Size up the common data. */
6465 lang_common ();
6467 /* Update wild statements. */
6468 update_wild_statements (statement_list.head);
6470 /* Run through the contours of the script and attach input sections
6471 to the correct output sections. */
6472 lang_statement_iteration++;
6473 map_input_to_output_sections (statement_list.head, NULL, NULL);
6475 process_insert_statements ();
6477 /* Find any sections not attached explicitly and handle them. */
6478 lang_place_orphans ();
6480 if (! link_info.relocatable)
6482 asection *found;
6484 /* Merge SEC_MERGE sections. This has to be done after GC of
6485 sections, so that GCed sections are not merged, but before
6486 assigning dynamic symbols, since removing whole input sections
6487 is hard then. */
6488 bfd_merge_sections (link_info.output_bfd, &link_info);
6490 /* Look for a text section and set the readonly attribute in it. */
6491 found = bfd_get_section_by_name (link_info.output_bfd, ".text");
6493 if (found != NULL)
6495 if (config.text_read_only)
6496 found->flags |= SEC_READONLY;
6497 else
6498 found->flags &= ~SEC_READONLY;
6502 /* Do anything special before sizing sections. This is where ELF
6503 and other back-ends size dynamic sections. */
6504 ldemul_before_allocation ();
6506 /* We must record the program headers before we try to fix the
6507 section positions, since they will affect SIZEOF_HEADERS. */
6508 lang_record_phdrs ();
6510 /* Check relro sections. */
6511 if (link_info.relro && ! link_info.relocatable)
6512 lang_find_relro_sections ();
6514 /* Size up the sections. */
6515 lang_size_sections (NULL, ! RELAXATION_ENABLED);
6517 /* See if anything special should be done now we know how big
6518 everything is. This is where relaxation is done. */
6519 ldemul_after_allocation ();
6521 /* Fix any .startof. or .sizeof. symbols. */
6522 lang_set_startof ();
6524 /* Do all the assignments, now that we know the final resting places
6525 of all the symbols. */
6526 expld.phase = lang_final_phase_enum;
6527 lang_do_assignments ();
6529 ldemul_finish ();
6531 /* Make sure that the section addresses make sense. */
6532 if (command_line.check_section_addresses)
6533 lang_check_section_addresses ();
6535 lang_end ();
6538 /* EXPORTED TO YACC */
6540 void
6541 lang_add_wild (struct wildcard_spec *filespec,
6542 struct wildcard_list *section_list,
6543 bfd_boolean keep_sections)
6545 struct wildcard_list *curr, *next;
6546 lang_wild_statement_type *new_stmt;
6548 /* Reverse the list as the parser puts it back to front. */
6549 for (curr = section_list, section_list = NULL;
6550 curr != NULL;
6551 section_list = curr, curr = next)
6553 if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
6554 placed_commons = TRUE;
6556 next = curr->next;
6557 curr->next = section_list;
6560 if (filespec != NULL && filespec->name != NULL)
6562 if (strcmp (filespec->name, "*") == 0)
6563 filespec->name = NULL;
6564 else if (! wildcardp (filespec->name))
6565 lang_has_input_file = TRUE;
6568 new_stmt = new_stat (lang_wild_statement, stat_ptr);
6569 new_stmt->filename = NULL;
6570 new_stmt->filenames_sorted = FALSE;
6571 if (filespec != NULL)
6573 new_stmt->filename = filespec->name;
6574 new_stmt->filenames_sorted = filespec->sorted == by_name;
6576 new_stmt->section_list = section_list;
6577 new_stmt->keep_sections = keep_sections;
6578 lang_list_init (&new_stmt->children);
6579 analyze_walk_wild_section_handler (new_stmt);
6582 void
6583 lang_section_start (const char *name, etree_type *address,
6584 const segment_type *segment)
6586 lang_address_statement_type *ad;
6588 ad = new_stat (lang_address_statement, stat_ptr);
6589 ad->section_name = name;
6590 ad->address = address;
6591 ad->segment = segment;
6594 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
6595 because of a -e argument on the command line, or zero if this is
6596 called by ENTRY in a linker script. Command line arguments take
6597 precedence. */
6599 void
6600 lang_add_entry (const char *name, bfd_boolean cmdline)
6602 if (entry_symbol.name == NULL
6603 || cmdline
6604 || ! entry_from_cmdline)
6606 entry_symbol.name = name;
6607 entry_from_cmdline = cmdline;
6611 /* Set the default start symbol to NAME. .em files should use this,
6612 not lang_add_entry, to override the use of "start" if neither the
6613 linker script nor the command line specifies an entry point. NAME
6614 must be permanently allocated. */
6615 void
6616 lang_default_entry (const char *name)
6618 entry_symbol_default = name;
6621 void
6622 lang_add_target (const char *name)
6624 lang_target_statement_type *new_stmt;
6626 new_stmt = new_stat (lang_target_statement, stat_ptr);
6627 new_stmt->target = name;
6630 void
6631 lang_add_map (const char *name)
6633 while (*name)
6635 switch (*name)
6637 case 'F':
6638 map_option_f = TRUE;
6639 break;
6641 name++;
6645 void
6646 lang_add_fill (fill_type *fill)
6648 lang_fill_statement_type *new_stmt;
6650 new_stmt = new_stat (lang_fill_statement, stat_ptr);
6651 new_stmt->fill = fill;
6654 void
6655 lang_add_data (int type, union etree_union *exp)
6657 lang_data_statement_type *new_stmt;
6659 new_stmt = new_stat (lang_data_statement, stat_ptr);
6660 new_stmt->exp = exp;
6661 new_stmt->type = type;
6664 /* Create a new reloc statement. RELOC is the BFD relocation type to
6665 generate. HOWTO is the corresponding howto structure (we could
6666 look this up, but the caller has already done so). SECTION is the
6667 section to generate a reloc against, or NAME is the name of the
6668 symbol to generate a reloc against. Exactly one of SECTION and
6669 NAME must be NULL. ADDEND is an expression for the addend. */
6671 void
6672 lang_add_reloc (bfd_reloc_code_real_type reloc,
6673 reloc_howto_type *howto,
6674 asection *section,
6675 const char *name,
6676 union etree_union *addend)
6678 lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
6680 p->reloc = reloc;
6681 p->howto = howto;
6682 p->section = section;
6683 p->name = name;
6684 p->addend_exp = addend;
6686 p->addend_value = 0;
6687 p->output_section = NULL;
6688 p->output_offset = 0;
6691 lang_assignment_statement_type *
6692 lang_add_assignment (etree_type *exp)
6694 lang_assignment_statement_type *new_stmt;
6696 new_stmt = new_stat (lang_assignment_statement, stat_ptr);
6697 new_stmt->exp = exp;
6698 return new_stmt;
6701 void
6702 lang_add_attribute (enum statement_enum attribute)
6704 new_statement (attribute, sizeof (lang_statement_header_type), stat_ptr);
6707 void
6708 lang_startup (const char *name)
6710 if (first_file->filename != NULL)
6712 einfo (_("%P%F: multiple STARTUP files\n"));
6714 first_file->filename = name;
6715 first_file->local_sym_name = name;
6716 first_file->real = TRUE;
6719 void
6720 lang_float (bfd_boolean maybe)
6722 lang_float_flag = maybe;
6726 /* Work out the load- and run-time regions from a script statement, and
6727 store them in *LMA_REGION and *REGION respectively.
6729 MEMSPEC is the name of the run-time region, or the value of
6730 DEFAULT_MEMORY_REGION if the statement didn't specify one.
6731 LMA_MEMSPEC is the name of the load-time region, or null if the
6732 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
6733 had an explicit load address.
6735 It is an error to specify both a load region and a load address. */
6737 static void
6738 lang_get_regions (lang_memory_region_type **region,
6739 lang_memory_region_type **lma_region,
6740 const char *memspec,
6741 const char *lma_memspec,
6742 bfd_boolean have_lma,
6743 bfd_boolean have_vma)
6745 *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
6747 /* If no runtime region or VMA has been specified, but the load region
6748 has been specified, then use the load region for the runtime region
6749 as well. */
6750 if (lma_memspec != NULL
6751 && ! have_vma
6752 && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
6753 *region = *lma_region;
6754 else
6755 *region = lang_memory_region_lookup (memspec, FALSE);
6757 if (have_lma && lma_memspec != 0)
6758 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
6761 void
6762 lang_leave_output_section_statement (fill_type *fill, const char *memspec,
6763 lang_output_section_phdr_list *phdrs,
6764 const char *lma_memspec)
6766 lang_get_regions (&current_section->region,
6767 &current_section->lma_region,
6768 memspec, lma_memspec,
6769 current_section->load_base != NULL,
6770 current_section->addr_tree != NULL);
6772 /* If this section has no load region or base, but has the same
6773 region as the previous section, then propagate the previous
6774 section's load region. */
6776 if (!current_section->lma_region && !current_section->load_base
6777 && current_section->region == current_section->prev->region)
6778 current_section->lma_region = current_section->prev->lma_region;
6780 current_section->fill = fill;
6781 current_section->phdrs = phdrs;
6782 pop_stat_ptr ();
6785 /* Create an absolute symbol with the given name with the value of the
6786 address of first byte of the section named.
6788 If the symbol already exists, then do nothing. */
6790 void
6791 lang_abs_symbol_at_beginning_of (const char *secname, const char *name)
6793 struct bfd_link_hash_entry *h;
6795 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
6796 if (h == NULL)
6797 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6799 if (h->type == bfd_link_hash_new
6800 || h->type == bfd_link_hash_undefined)
6802 asection *sec;
6804 h->type = bfd_link_hash_defined;
6806 sec = bfd_get_section_by_name (link_info.output_bfd, secname);
6807 if (sec == NULL)
6808 h->u.def.value = 0;
6809 else
6810 h->u.def.value = bfd_get_section_vma (link_info.output_bfd, sec);
6812 h->u.def.section = bfd_abs_section_ptr;
6816 /* Create an absolute symbol with the given name with the value of the
6817 address of the first byte after the end of the section named.
6819 If the symbol already exists, then do nothing. */
6821 void
6822 lang_abs_symbol_at_end_of (const char *secname, const char *name)
6824 struct bfd_link_hash_entry *h;
6826 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
6827 if (h == NULL)
6828 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6830 if (h->type == bfd_link_hash_new
6831 || h->type == bfd_link_hash_undefined)
6833 asection *sec;
6835 h->type = bfd_link_hash_defined;
6837 sec = bfd_get_section_by_name (link_info.output_bfd, secname);
6838 if (sec == NULL)
6839 h->u.def.value = 0;
6840 else
6841 h->u.def.value = (bfd_get_section_vma (link_info.output_bfd, sec)
6842 + TO_ADDR (sec->size));
6844 h->u.def.section = bfd_abs_section_ptr;
6848 void
6849 lang_statement_append (lang_statement_list_type *list,
6850 lang_statement_union_type *element,
6851 lang_statement_union_type **field)
6853 *(list->tail) = element;
6854 list->tail = field;
6857 /* Set the output format type. -oformat overrides scripts. */
6859 void
6860 lang_add_output_format (const char *format,
6861 const char *big,
6862 const char *little,
6863 int from_script)
6865 if (output_target == NULL || !from_script)
6867 if (command_line.endian == ENDIAN_BIG
6868 && big != NULL)
6869 format = big;
6870 else if (command_line.endian == ENDIAN_LITTLE
6871 && little != NULL)
6872 format = little;
6874 output_target = format;
6878 void
6879 lang_add_insert (const char *where, int is_before)
6881 lang_insert_statement_type *new_stmt;
6883 new_stmt = new_stat (lang_insert_statement, stat_ptr);
6884 new_stmt->where = where;
6885 new_stmt->is_before = is_before;
6886 saved_script_handle = previous_script_handle;
6889 /* Enter a group. This creates a new lang_group_statement, and sets
6890 stat_ptr to build new statements within the group. */
6892 void
6893 lang_enter_group (void)
6895 lang_group_statement_type *g;
6897 g = new_stat (lang_group_statement, stat_ptr);
6898 lang_list_init (&g->children);
6899 push_stat_ptr (&g->children);
6902 /* Leave a group. This just resets stat_ptr to start writing to the
6903 regular list of statements again. Note that this will not work if
6904 groups can occur inside anything else which can adjust stat_ptr,
6905 but currently they can't. */
6907 void
6908 lang_leave_group (void)
6910 pop_stat_ptr ();
6913 /* Add a new program header. This is called for each entry in a PHDRS
6914 command in a linker script. */
6916 void
6917 lang_new_phdr (const char *name,
6918 etree_type *type,
6919 bfd_boolean filehdr,
6920 bfd_boolean phdrs,
6921 etree_type *at,
6922 etree_type *flags)
6924 struct lang_phdr *n, **pp;
6925 bfd_boolean hdrs;
6927 n = (struct lang_phdr *) stat_alloc (sizeof (struct lang_phdr));
6928 n->next = NULL;
6929 n->name = name;
6930 n->type = exp_get_value_int (type, 0, "program header type");
6931 n->filehdr = filehdr;
6932 n->phdrs = phdrs;
6933 n->at = at;
6934 n->flags = flags;
6936 hdrs = n->type == 1 && (phdrs || filehdr);
6938 for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
6939 if (hdrs
6940 && (*pp)->type == 1
6941 && !((*pp)->filehdr || (*pp)->phdrs))
6943 einfo (_("%X%P:%S: PHDRS and FILEHDR are not supported when prior PT_LOAD headers lack them\n"));
6944 hdrs = FALSE;
6947 *pp = n;
6950 /* Record the program header information in the output BFD. FIXME: We
6951 should not be calling an ELF specific function here. */
6953 static void
6954 lang_record_phdrs (void)
6956 unsigned int alc;
6957 asection **secs;
6958 lang_output_section_phdr_list *last;
6959 struct lang_phdr *l;
6960 lang_output_section_statement_type *os;
6962 alc = 10;
6963 secs = (asection **) xmalloc (alc * sizeof (asection *));
6964 last = NULL;
6966 for (l = lang_phdr_list; l != NULL; l = l->next)
6968 unsigned int c;
6969 flagword flags;
6970 bfd_vma at;
6972 c = 0;
6973 for (os = &lang_output_section_statement.head->output_section_statement;
6974 os != NULL;
6975 os = os->next)
6977 lang_output_section_phdr_list *pl;
6979 if (os->constraint < 0)
6980 continue;
6982 pl = os->phdrs;
6983 if (pl != NULL)
6984 last = pl;
6985 else
6987 if (os->sectype == noload_section
6988 || os->bfd_section == NULL
6989 || (os->bfd_section->flags & SEC_ALLOC) == 0)
6990 continue;
6992 /* Don't add orphans to PT_INTERP header. */
6993 if (l->type == 3)
6994 continue;
6996 if (last == NULL)
6998 lang_output_section_statement_type * tmp_os;
7000 /* If we have not run across a section with a program
7001 header assigned to it yet, then scan forwards to find
7002 one. This prevents inconsistencies in the linker's
7003 behaviour when a script has specified just a single
7004 header and there are sections in that script which are
7005 not assigned to it, and which occur before the first
7006 use of that header. See here for more details:
7007 http://sourceware.org/ml/binutils/2007-02/msg00291.html */
7008 for (tmp_os = os; tmp_os; tmp_os = tmp_os->next)
7009 if (tmp_os->phdrs)
7011 last = tmp_os->phdrs;
7012 break;
7014 if (last == NULL)
7015 einfo (_("%F%P: no sections assigned to phdrs\n"));
7017 pl = last;
7020 if (os->bfd_section == NULL)
7021 continue;
7023 for (; pl != NULL; pl = pl->next)
7025 if (strcmp (pl->name, l->name) == 0)
7027 if (c >= alc)
7029 alc *= 2;
7030 secs = (asection **) xrealloc (secs,
7031 alc * sizeof (asection *));
7033 secs[c] = os->bfd_section;
7034 ++c;
7035 pl->used = TRUE;
7040 if (l->flags == NULL)
7041 flags = 0;
7042 else
7043 flags = exp_get_vma (l->flags, 0, "phdr flags");
7045 if (l->at == NULL)
7046 at = 0;
7047 else
7048 at = exp_get_vma (l->at, 0, "phdr load address");
7050 if (! bfd_record_phdr (link_info.output_bfd, l->type,
7051 l->flags != NULL, flags, l->at != NULL,
7052 at, l->filehdr, l->phdrs, c, secs))
7053 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
7056 free (secs);
7058 /* Make sure all the phdr assignments succeeded. */
7059 for (os = &lang_output_section_statement.head->output_section_statement;
7060 os != NULL;
7061 os = os->next)
7063 lang_output_section_phdr_list *pl;
7065 if (os->constraint < 0
7066 || os->bfd_section == NULL)
7067 continue;
7069 for (pl = os->phdrs;
7070 pl != NULL;
7071 pl = pl->next)
7072 if (! pl->used && strcmp (pl->name, "NONE") != 0)
7073 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
7074 os->name, pl->name);
7078 /* Record a list of sections which may not be cross referenced. */
7080 void
7081 lang_add_nocrossref (lang_nocrossref_type *l)
7083 struct lang_nocrossrefs *n;
7085 n = (struct lang_nocrossrefs *) xmalloc (sizeof *n);
7086 n->next = nocrossref_list;
7087 n->list = l;
7088 nocrossref_list = n;
7090 /* Set notice_all so that we get informed about all symbols. */
7091 link_info.notice_all = TRUE;
7094 /* Overlay handling. We handle overlays with some static variables. */
7096 /* The overlay virtual address. */
7097 static etree_type *overlay_vma;
7098 /* And subsection alignment. */
7099 static etree_type *overlay_subalign;
7101 /* An expression for the maximum section size seen so far. */
7102 static etree_type *overlay_max;
7104 /* A list of all the sections in this overlay. */
7106 struct overlay_list {
7107 struct overlay_list *next;
7108 lang_output_section_statement_type *os;
7111 static struct overlay_list *overlay_list;
7113 /* Start handling an overlay. */
7115 void
7116 lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
7118 /* The grammar should prevent nested overlays from occurring. */
7119 ASSERT (overlay_vma == NULL
7120 && overlay_subalign == NULL
7121 && overlay_max == NULL);
7123 overlay_vma = vma_expr;
7124 overlay_subalign = subalign;
7127 /* Start a section in an overlay. We handle this by calling
7128 lang_enter_output_section_statement with the correct VMA.
7129 lang_leave_overlay sets up the LMA and memory regions. */
7131 void
7132 lang_enter_overlay_section (const char *name)
7134 struct overlay_list *n;
7135 etree_type *size;
7137 lang_enter_output_section_statement (name, overlay_vma, overlay_section,
7138 0, overlay_subalign, 0, 0);
7140 /* If this is the first section, then base the VMA of future
7141 sections on this one. This will work correctly even if `.' is
7142 used in the addresses. */
7143 if (overlay_list == NULL)
7144 overlay_vma = exp_nameop (ADDR, name);
7146 /* Remember the section. */
7147 n = (struct overlay_list *) xmalloc (sizeof *n);
7148 n->os = current_section;
7149 n->next = overlay_list;
7150 overlay_list = n;
7152 size = exp_nameop (SIZEOF, name);
7154 /* Arrange to work out the maximum section end address. */
7155 if (overlay_max == NULL)
7156 overlay_max = size;
7157 else
7158 overlay_max = exp_binop (MAX_K, overlay_max, size);
7161 /* Finish a section in an overlay. There isn't any special to do
7162 here. */
7164 void
7165 lang_leave_overlay_section (fill_type *fill,
7166 lang_output_section_phdr_list *phdrs)
7168 const char *name;
7169 char *clean, *s2;
7170 const char *s1;
7171 char *buf;
7173 name = current_section->name;
7175 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
7176 region and that no load-time region has been specified. It doesn't
7177 really matter what we say here, since lang_leave_overlay will
7178 override it. */
7179 lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
7181 /* Define the magic symbols. */
7183 clean = (char *) xmalloc (strlen (name) + 1);
7184 s2 = clean;
7185 for (s1 = name; *s1 != '\0'; s1++)
7186 if (ISALNUM (*s1) || *s1 == '_')
7187 *s2++ = *s1;
7188 *s2 = '\0';
7190 buf = (char *) xmalloc (strlen (clean) + sizeof "__load_start_");
7191 sprintf (buf, "__load_start_%s", clean);
7192 lang_add_assignment (exp_provide (buf,
7193 exp_nameop (LOADADDR, name),
7194 FALSE));
7196 buf = (char *) xmalloc (strlen (clean) + sizeof "__load_stop_");
7197 sprintf (buf, "__load_stop_%s", clean);
7198 lang_add_assignment (exp_provide (buf,
7199 exp_binop ('+',
7200 exp_nameop (LOADADDR, name),
7201 exp_nameop (SIZEOF, name)),
7202 FALSE));
7204 free (clean);
7207 /* Finish an overlay. If there are any overlay wide settings, this
7208 looks through all the sections in the overlay and sets them. */
7210 void
7211 lang_leave_overlay (etree_type *lma_expr,
7212 int nocrossrefs,
7213 fill_type *fill,
7214 const char *memspec,
7215 lang_output_section_phdr_list *phdrs,
7216 const char *lma_memspec)
7218 lang_memory_region_type *region;
7219 lang_memory_region_type *lma_region;
7220 struct overlay_list *l;
7221 lang_nocrossref_type *nocrossref;
7223 lang_get_regions (&region, &lma_region,
7224 memspec, lma_memspec,
7225 lma_expr != NULL, FALSE);
7227 nocrossref = NULL;
7229 /* After setting the size of the last section, set '.' to end of the
7230 overlay region. */
7231 if (overlay_list != NULL)
7232 overlay_list->os->update_dot_tree
7233 = exp_assign (".", exp_binop ('+', overlay_vma, overlay_max));
7235 l = overlay_list;
7236 while (l != NULL)
7238 struct overlay_list *next;
7240 if (fill != NULL && l->os->fill == NULL)
7241 l->os->fill = fill;
7243 l->os->region = region;
7244 l->os->lma_region = lma_region;
7246 /* The first section has the load address specified in the
7247 OVERLAY statement. The rest are worked out from that.
7248 The base address is not needed (and should be null) if
7249 an LMA region was specified. */
7250 if (l->next == 0)
7252 l->os->load_base = lma_expr;
7253 l->os->sectype = normal_section;
7255 if (phdrs != NULL && l->os->phdrs == NULL)
7256 l->os->phdrs = phdrs;
7258 if (nocrossrefs)
7260 lang_nocrossref_type *nc;
7262 nc = (lang_nocrossref_type *) xmalloc (sizeof *nc);
7263 nc->name = l->os->name;
7264 nc->next = nocrossref;
7265 nocrossref = nc;
7268 next = l->next;
7269 free (l);
7270 l = next;
7273 if (nocrossref != NULL)
7274 lang_add_nocrossref (nocrossref);
7276 overlay_vma = NULL;
7277 overlay_list = NULL;
7278 overlay_max = NULL;
7281 /* Version handling. This is only useful for ELF. */
7283 /* This global variable holds the version tree that we build. */
7285 struct bfd_elf_version_tree *lang_elf_version_info;
7287 /* If PREV is NULL, return first version pattern matching particular symbol.
7288 If PREV is non-NULL, return first version pattern matching particular
7289 symbol after PREV (previously returned by lang_vers_match). */
7291 static struct bfd_elf_version_expr *
7292 lang_vers_match (struct bfd_elf_version_expr_head *head,
7293 struct bfd_elf_version_expr *prev,
7294 const char *sym)
7296 const char *cxx_sym = sym;
7297 const char *java_sym = sym;
7298 struct bfd_elf_version_expr *expr = NULL;
7300 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7302 cxx_sym = cplus_demangle (sym, DMGL_PARAMS | DMGL_ANSI);
7303 if (!cxx_sym)
7304 cxx_sym = sym;
7306 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7308 java_sym = cplus_demangle (sym, DMGL_JAVA);
7309 if (!java_sym)
7310 java_sym = sym;
7313 if (head->htab && (prev == NULL || prev->literal))
7315 struct bfd_elf_version_expr e;
7317 switch (prev ? prev->mask : 0)
7319 case 0:
7320 if (head->mask & BFD_ELF_VERSION_C_TYPE)
7322 e.pattern = sym;
7323 expr = (struct bfd_elf_version_expr *)
7324 htab_find ((htab_t) head->htab, &e);
7325 while (expr && strcmp (expr->pattern, sym) == 0)
7326 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
7327 goto out_ret;
7328 else
7329 expr = expr->next;
7331 /* Fallthrough */
7332 case BFD_ELF_VERSION_C_TYPE:
7333 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7335 e.pattern = cxx_sym;
7336 expr = (struct bfd_elf_version_expr *)
7337 htab_find ((htab_t) head->htab, &e);
7338 while (expr && strcmp (expr->pattern, cxx_sym) == 0)
7339 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7340 goto out_ret;
7341 else
7342 expr = expr->next;
7344 /* Fallthrough */
7345 case BFD_ELF_VERSION_CXX_TYPE:
7346 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7348 e.pattern = java_sym;
7349 expr = (struct bfd_elf_version_expr *)
7350 htab_find ((htab_t) head->htab, &e);
7351 while (expr && strcmp (expr->pattern, java_sym) == 0)
7352 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7353 goto out_ret;
7354 else
7355 expr = expr->next;
7357 /* Fallthrough */
7358 default:
7359 break;
7363 /* Finally, try the wildcards. */
7364 if (prev == NULL || prev->literal)
7365 expr = head->remaining;
7366 else
7367 expr = prev->next;
7368 for (; expr; expr = expr->next)
7370 const char *s;
7372 if (!expr->pattern)
7373 continue;
7375 if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
7376 break;
7378 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7379 s = java_sym;
7380 else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7381 s = cxx_sym;
7382 else
7383 s = sym;
7384 if (fnmatch (expr->pattern, s, 0) == 0)
7385 break;
7388 out_ret:
7389 if (cxx_sym != sym)
7390 free ((char *) cxx_sym);
7391 if (java_sym != sym)
7392 free ((char *) java_sym);
7393 return expr;
7396 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
7397 return a pointer to the symbol name with any backslash quotes removed. */
7399 static const char *
7400 realsymbol (const char *pattern)
7402 const char *p;
7403 bfd_boolean changed = FALSE, backslash = FALSE;
7404 char *s, *symbol = (char *) xmalloc (strlen (pattern) + 1);
7406 for (p = pattern, s = symbol; *p != '\0'; ++p)
7408 /* It is a glob pattern only if there is no preceding
7409 backslash. */
7410 if (backslash)
7412 /* Remove the preceding backslash. */
7413 *(s - 1) = *p;
7414 backslash = FALSE;
7415 changed = TRUE;
7417 else
7419 if (*p == '?' || *p == '*' || *p == '[')
7421 free (symbol);
7422 return NULL;
7425 *s++ = *p;
7426 backslash = *p == '\\';
7430 if (changed)
7432 *s = '\0';
7433 return symbol;
7435 else
7437 free (symbol);
7438 return pattern;
7442 /* This is called for each variable name or match expression. NEW_NAME is
7443 the name of the symbol to match, or, if LITERAL_P is FALSE, a glob
7444 pattern to be matched against symbol names. */
7446 struct bfd_elf_version_expr *
7447 lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
7448 const char *new_name,
7449 const char *lang,
7450 bfd_boolean literal_p)
7452 struct bfd_elf_version_expr *ret;
7454 ret = (struct bfd_elf_version_expr *) xmalloc (sizeof *ret);
7455 ret->next = orig;
7456 ret->symver = 0;
7457 ret->script = 0;
7458 ret->literal = TRUE;
7459 ret->pattern = literal_p ? new_name : realsymbol (new_name);
7460 if (ret->pattern == NULL)
7462 ret->pattern = new_name;
7463 ret->literal = FALSE;
7466 if (lang == NULL || strcasecmp (lang, "C") == 0)
7467 ret->mask = BFD_ELF_VERSION_C_TYPE;
7468 else if (strcasecmp (lang, "C++") == 0)
7469 ret->mask = BFD_ELF_VERSION_CXX_TYPE;
7470 else if (strcasecmp (lang, "Java") == 0)
7471 ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
7472 else
7474 einfo (_("%X%P: unknown language `%s' in version information\n"),
7475 lang);
7476 ret->mask = BFD_ELF_VERSION_C_TYPE;
7479 return ldemul_new_vers_pattern (ret);
7482 /* This is called for each set of variable names and match
7483 expressions. */
7485 struct bfd_elf_version_tree *
7486 lang_new_vers_node (struct bfd_elf_version_expr *globals,
7487 struct bfd_elf_version_expr *locals)
7489 struct bfd_elf_version_tree *ret;
7491 ret = (struct bfd_elf_version_tree *) xcalloc (1, sizeof *ret);
7492 ret->globals.list = globals;
7493 ret->locals.list = locals;
7494 ret->match = lang_vers_match;
7495 ret->name_indx = (unsigned int) -1;
7496 return ret;
7499 /* This static variable keeps track of version indices. */
7501 static int version_index;
7503 static hashval_t
7504 version_expr_head_hash (const void *p)
7506 const struct bfd_elf_version_expr *e =
7507 (const struct bfd_elf_version_expr *) p;
7509 return htab_hash_string (e->pattern);
7512 static int
7513 version_expr_head_eq (const void *p1, const void *p2)
7515 const struct bfd_elf_version_expr *e1 =
7516 (const struct bfd_elf_version_expr *) p1;
7517 const struct bfd_elf_version_expr *e2 =
7518 (const struct bfd_elf_version_expr *) p2;
7520 return strcmp (e1->pattern, e2->pattern) == 0;
7523 static void
7524 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
7526 size_t count = 0;
7527 struct bfd_elf_version_expr *e, *next;
7528 struct bfd_elf_version_expr **list_loc, **remaining_loc;
7530 for (e = head->list; e; e = e->next)
7532 if (e->literal)
7533 count++;
7534 head->mask |= e->mask;
7537 if (count)
7539 head->htab = htab_create (count * 2, version_expr_head_hash,
7540 version_expr_head_eq, NULL);
7541 list_loc = &head->list;
7542 remaining_loc = &head->remaining;
7543 for (e = head->list; e; e = next)
7545 next = e->next;
7546 if (!e->literal)
7548 *remaining_loc = e;
7549 remaining_loc = &e->next;
7551 else
7553 void **loc = htab_find_slot ((htab_t) head->htab, e, INSERT);
7555 if (*loc)
7557 struct bfd_elf_version_expr *e1, *last;
7559 e1 = (struct bfd_elf_version_expr *) *loc;
7560 last = NULL;
7563 if (e1->mask == e->mask)
7565 last = NULL;
7566 break;
7568 last = e1;
7569 e1 = e1->next;
7571 while (e1 && strcmp (e1->pattern, e->pattern) == 0);
7573 if (last == NULL)
7575 /* This is a duplicate. */
7576 /* FIXME: Memory leak. Sometimes pattern is not
7577 xmalloced alone, but in larger chunk of memory. */
7578 /* free (e->pattern); */
7579 free (e);
7581 else
7583 e->next = last->next;
7584 last->next = e;
7587 else
7589 *loc = e;
7590 *list_loc = e;
7591 list_loc = &e->next;
7595 *remaining_loc = NULL;
7596 *list_loc = head->remaining;
7598 else
7599 head->remaining = head->list;
7602 /* This is called when we know the name and dependencies of the
7603 version. */
7605 void
7606 lang_register_vers_node (const char *name,
7607 struct bfd_elf_version_tree *version,
7608 struct bfd_elf_version_deps *deps)
7610 struct bfd_elf_version_tree *t, **pp;
7611 struct bfd_elf_version_expr *e1;
7613 if (name == NULL)
7614 name = "";
7616 if ((name[0] == '\0' && lang_elf_version_info != NULL)
7617 || (lang_elf_version_info && lang_elf_version_info->name[0] == '\0'))
7619 einfo (_("%X%P: anonymous version tag cannot be combined"
7620 " with other version tags\n"));
7621 free (version);
7622 return;
7625 /* Make sure this node has a unique name. */
7626 for (t = lang_elf_version_info; t != NULL; t = t->next)
7627 if (strcmp (t->name, name) == 0)
7628 einfo (_("%X%P: duplicate version tag `%s'\n"), name);
7630 lang_finalize_version_expr_head (&version->globals);
7631 lang_finalize_version_expr_head (&version->locals);
7633 /* Check the global and local match names, and make sure there
7634 aren't any duplicates. */
7636 for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
7638 for (t = lang_elf_version_info; t != NULL; t = t->next)
7640 struct bfd_elf_version_expr *e2;
7642 if (t->locals.htab && e1->literal)
7644 e2 = (struct bfd_elf_version_expr *)
7645 htab_find ((htab_t) t->locals.htab, e1);
7646 while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7648 if (e1->mask == e2->mask)
7649 einfo (_("%X%P: duplicate expression `%s'"
7650 " in version information\n"), e1->pattern);
7651 e2 = e2->next;
7654 else if (!e1->literal)
7655 for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
7656 if (strcmp (e1->pattern, e2->pattern) == 0
7657 && e1->mask == e2->mask)
7658 einfo (_("%X%P: duplicate expression `%s'"
7659 " in version information\n"), e1->pattern);
7663 for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
7665 for (t = lang_elf_version_info; t != NULL; t = t->next)
7667 struct bfd_elf_version_expr *e2;
7669 if (t->globals.htab && e1->literal)
7671 e2 = (struct bfd_elf_version_expr *)
7672 htab_find ((htab_t) t->globals.htab, e1);
7673 while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7675 if (e1->mask == e2->mask)
7676 einfo (_("%X%P: duplicate expression `%s'"
7677 " in version information\n"),
7678 e1->pattern);
7679 e2 = e2->next;
7682 else if (!e1->literal)
7683 for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
7684 if (strcmp (e1->pattern, e2->pattern) == 0
7685 && e1->mask == e2->mask)
7686 einfo (_("%X%P: duplicate expression `%s'"
7687 " in version information\n"), e1->pattern);
7691 version->deps = deps;
7692 version->name = name;
7693 if (name[0] != '\0')
7695 ++version_index;
7696 version->vernum = version_index;
7698 else
7699 version->vernum = 0;
7701 for (pp = &lang_elf_version_info; *pp != NULL; pp = &(*pp)->next)
7703 *pp = version;
7706 /* This is called when we see a version dependency. */
7708 struct bfd_elf_version_deps *
7709 lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
7711 struct bfd_elf_version_deps *ret;
7712 struct bfd_elf_version_tree *t;
7714 ret = (struct bfd_elf_version_deps *) xmalloc (sizeof *ret);
7715 ret->next = list;
7717 for (t = lang_elf_version_info; t != NULL; t = t->next)
7719 if (strcmp (t->name, name) == 0)
7721 ret->version_needed = t;
7722 return ret;
7726 einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
7728 ret->version_needed = NULL;
7729 return ret;
7732 static void
7733 lang_do_version_exports_section (void)
7735 struct bfd_elf_version_expr *greg = NULL, *lreg;
7737 LANG_FOR_EACH_INPUT_STATEMENT (is)
7739 asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
7740 char *contents, *p;
7741 bfd_size_type len;
7743 if (sec == NULL)
7744 continue;
7746 len = sec->size;
7747 contents = (char *) xmalloc (len);
7748 if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
7749 einfo (_("%X%P: unable to read .exports section contents\n"), sec);
7751 p = contents;
7752 while (p < contents + len)
7754 greg = lang_new_vers_pattern (greg, p, NULL, FALSE);
7755 p = strchr (p, '\0') + 1;
7758 /* Do not free the contents, as we used them creating the regex. */
7760 /* Do not include this section in the link. */
7761 sec->flags |= SEC_EXCLUDE | SEC_KEEP;
7764 lreg = lang_new_vers_pattern (NULL, "*", NULL, FALSE);
7765 lang_register_vers_node (command_line.version_exports_section,
7766 lang_new_vers_node (greg, lreg), NULL);
7769 void
7770 lang_add_unique (const char *name)
7772 struct unique_sections *ent;
7774 for (ent = unique_section_list; ent; ent = ent->next)
7775 if (strcmp (ent->name, name) == 0)
7776 return;
7778 ent = (struct unique_sections *) xmalloc (sizeof *ent);
7779 ent->name = xstrdup (name);
7780 ent->next = unique_section_list;
7781 unique_section_list = ent;
7784 /* Append the list of dynamic symbols to the existing one. */
7786 void
7787 lang_append_dynamic_list (struct bfd_elf_version_expr *dynamic)
7789 if (link_info.dynamic_list)
7791 struct bfd_elf_version_expr *tail;
7792 for (tail = dynamic; tail->next != NULL; tail = tail->next)
7794 tail->next = link_info.dynamic_list->head.list;
7795 link_info.dynamic_list->head.list = dynamic;
7797 else
7799 struct bfd_elf_dynamic_list *d;
7801 d = (struct bfd_elf_dynamic_list *) xcalloc (1, sizeof *d);
7802 d->head.list = dynamic;
7803 d->match = lang_vers_match;
7804 link_info.dynamic_list = d;
7808 /* Append the list of C++ typeinfo dynamic symbols to the existing
7809 one. */
7811 void
7812 lang_append_dynamic_list_cpp_typeinfo (void)
7814 const char * symbols [] =
7816 "typeinfo name for*",
7817 "typeinfo for*"
7819 struct bfd_elf_version_expr *dynamic = NULL;
7820 unsigned int i;
7822 for (i = 0; i < ARRAY_SIZE (symbols); i++)
7823 dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
7824 FALSE);
7826 lang_append_dynamic_list (dynamic);
7829 /* Append the list of C++ operator new and delete dynamic symbols to the
7830 existing one. */
7832 void
7833 lang_append_dynamic_list_cpp_new (void)
7835 const char * symbols [] =
7837 "operator new*",
7838 "operator delete*"
7840 struct bfd_elf_version_expr *dynamic = NULL;
7841 unsigned int i;
7843 for (i = 0; i < ARRAY_SIZE (symbols); i++)
7844 dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
7845 FALSE);
7847 lang_append_dynamic_list (dynamic);
7850 /* Scan a space and/or comma separated string of features. */
7852 void
7853 lang_ld_feature (char *str)
7855 char *p, *q;
7857 p = str;
7858 while (*p)
7860 char sep;
7861 while (*p == ',' || ISSPACE (*p))
7862 ++p;
7863 if (!*p)
7864 break;
7865 q = p + 1;
7866 while (*q && *q != ',' && !ISSPACE (*q))
7867 ++q;
7868 sep = *q;
7869 *q = 0;
7870 if (strcasecmp (p, "SANE_EXPR") == 0)
7871 config.sane_expr = TRUE;
7872 else
7873 einfo (_("%X%P: unknown feature `%s'\n"), p);
7874 *q = sep;
7875 p = q;