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
4 Free Software Foundation, Inc.
6 This file is part of the GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
25 #include "libiberty.h"
26 #include "safe-ctype.h"
45 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
48 /* Locals variables. */
49 static struct obstack stat_obstack
;
50 static struct obstack map_obstack
;
52 #define obstack_chunk_alloc xmalloc
53 #define obstack_chunk_free free
54 static const char *startup_file
;
55 static bfd_boolean placed_commons
= FALSE
;
56 static bfd_boolean stripped_excluded_sections
= FALSE
;
57 static lang_output_section_statement_type
*default_common_section
;
58 static bfd_boolean map_option_f
;
59 static bfd_vma print_dot
;
60 static lang_input_statement_type
*first_file
;
61 static const char *current_target
;
62 static const char *output_target
;
63 static lang_statement_list_type statement_list
;
64 static struct bfd_hash_table lang_definedness_table
;
66 /* Forward declarations. */
67 static void exp_init_os (etree_type
*);
68 static void init_map_userdata (bfd
*, asection
*, void *);
69 static lang_input_statement_type
*lookup_name (const char *);
70 static struct bfd_hash_entry
*lang_definedness_newfunc
71 (struct bfd_hash_entry
*, struct bfd_hash_table
*, const char *);
72 static void insert_undefined (const char *);
73 static bfd_boolean
sort_def_symbol (struct bfd_link_hash_entry
*, void *);
74 static void print_statement (lang_statement_union_type
*,
75 lang_output_section_statement_type
*);
76 static void print_statement_list (lang_statement_union_type
*,
77 lang_output_section_statement_type
*);
78 static void print_statements (void);
79 static void print_input_section (asection
*);
80 static bfd_boolean
lang_one_common (struct bfd_link_hash_entry
*, void *);
81 static void lang_record_phdrs (void);
82 static void lang_do_version_exports_section (void);
83 static void lang_finalize_version_expr_head
84 (struct bfd_elf_version_expr_head
*);
86 /* Exported variables. */
87 lang_output_section_statement_type
*abs_output_section
;
88 lang_statement_list_type lang_output_section_statement
;
89 lang_statement_list_type
*stat_ptr
= &statement_list
;
90 lang_statement_list_type file_chain
= { NULL
, NULL
};
91 lang_statement_list_type input_file_chain
;
92 struct bfd_sym_chain entry_symbol
= { NULL
, NULL
};
93 static const char *entry_symbol_default
= "start";
94 const char *entry_section
= ".text";
95 bfd_boolean entry_from_cmdline
;
96 bfd_boolean lang_has_input_file
= FALSE
;
97 bfd_boolean had_output_filename
= FALSE
;
98 bfd_boolean lang_float_flag
= FALSE
;
99 bfd_boolean delete_output_file_on_failure
= FALSE
;
100 struct lang_phdr
*lang_phdr_list
;
101 struct lang_nocrossrefs
*nocrossref_list
;
102 static struct unique_sections
*unique_section_list
;
103 static bfd_boolean ldlang_sysrooted_script
= FALSE
;
105 /* Functions that traverse the linker script and might evaluate
106 DEFINED() need to increment this. */
107 int lang_statement_iteration
= 0;
109 etree_type
*base
; /* Relocation base - or null */
111 /* Return TRUE if the PATTERN argument is a wildcard pattern.
112 Although backslashes are treated specially if a pattern contains
113 wildcards, we do not consider the mere presence of a backslash to
114 be enough to cause the pattern to be treated as a wildcard.
115 That lets us handle DOS filenames more naturally. */
116 #define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL)
118 #define new_stat(x, y) \
119 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
121 #define outside_section_address(q) \
122 ((q)->output_offset + (q)->output_section->vma)
124 #define outside_symbol_address(q) \
125 ((q)->value + outside_section_address (q->section))
127 #define SECTION_NAME_MAP_LENGTH (16)
130 stat_alloc (size_t size
)
132 return obstack_alloc (&stat_obstack
, size
);
136 unique_section_p (const asection
*sec
)
138 struct unique_sections
*unam
;
141 if (link_info
.relocatable
142 && sec
->owner
!= NULL
143 && bfd_is_group_section (sec
->owner
, sec
))
147 for (unam
= unique_section_list
; unam
; unam
= unam
->next
)
148 if (wildcardp (unam
->name
)
149 ? fnmatch (unam
->name
, secnam
, 0) == 0
150 : strcmp (unam
->name
, secnam
) == 0)
158 /* Generic traversal routines for finding matching sections. */
160 /* Try processing a section against a wildcard. This just calls
161 the callback unless the filename exclusion list is present
162 and excludes the file. It's hardly ever present so this
163 function is very fast. */
166 walk_wild_consider_section (lang_wild_statement_type
*ptr
,
167 lang_input_statement_type
*file
,
169 struct wildcard_list
*sec
,
173 bfd_boolean skip
= FALSE
;
174 struct name_list
*list_tmp
;
176 /* Don't process sections from files which were
178 for (list_tmp
= sec
->spec
.exclude_name_list
;
180 list_tmp
= list_tmp
->next
)
182 bfd_boolean is_wildcard
= wildcardp (list_tmp
->name
);
184 skip
= fnmatch (list_tmp
->name
, file
->filename
, 0) == 0;
186 skip
= strcmp (list_tmp
->name
, file
->filename
) == 0;
188 /* If this file is part of an archive, and the archive is
189 excluded, exclude this file. */
190 if (! skip
&& file
->the_bfd
!= NULL
191 && file
->the_bfd
->my_archive
!= NULL
192 && file
->the_bfd
->my_archive
->filename
!= NULL
)
195 skip
= fnmatch (list_tmp
->name
,
196 file
->the_bfd
->my_archive
->filename
,
199 skip
= strcmp (list_tmp
->name
,
200 file
->the_bfd
->my_archive
->filename
) == 0;
208 (*callback
) (ptr
, sec
, s
, file
, data
);
211 /* Lowest common denominator routine that can handle everything correctly,
215 walk_wild_section_general (lang_wild_statement_type
*ptr
,
216 lang_input_statement_type
*file
,
221 struct wildcard_list
*sec
;
223 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
225 sec
= ptr
->section_list
;
227 (*callback
) (ptr
, sec
, s
, file
, data
);
231 bfd_boolean skip
= FALSE
;
233 if (sec
->spec
.name
!= NULL
)
235 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
237 if (wildcardp (sec
->spec
.name
))
238 skip
= fnmatch (sec
->spec
.name
, sname
, 0) != 0;
240 skip
= strcmp (sec
->spec
.name
, sname
) != 0;
244 walk_wild_consider_section (ptr
, file
, s
, sec
, callback
, data
);
251 /* Routines to find a single section given its name. If there's more
252 than one section with that name, we report that. */
256 asection
*found_section
;
257 bfd_boolean multiple_sections_found
;
258 } section_iterator_callback_data
;
261 section_iterator_callback (bfd
*bfd ATTRIBUTE_UNUSED
, asection
*s
, void *data
)
263 section_iterator_callback_data
*d
= data
;
265 if (d
->found_section
!= NULL
)
267 d
->multiple_sections_found
= TRUE
;
271 d
->found_section
= s
;
276 find_section (lang_input_statement_type
*file
,
277 struct wildcard_list
*sec
,
278 bfd_boolean
*multiple_sections_found
)
280 section_iterator_callback_data cb_data
= { NULL
, FALSE
};
282 bfd_get_section_by_name_if (file
->the_bfd
, sec
->spec
.name
,
283 section_iterator_callback
, &cb_data
);
284 *multiple_sections_found
= cb_data
.multiple_sections_found
;
285 return cb_data
.found_section
;
288 /* Code for handling simple wildcards without going through fnmatch,
289 which can be expensive because of charset translations etc. */
291 /* A simple wild is a literal string followed by a single '*',
292 where the literal part is at least 4 characters long. */
295 is_simple_wild (const char *name
)
297 size_t len
= strcspn (name
, "*?[");
298 return len
>= 4 && name
[len
] == '*' && name
[len
+ 1] == '\0';
302 match_simple_wild (const char *pattern
, const char *name
)
304 /* The first four characters of the pattern are guaranteed valid
305 non-wildcard characters. So we can go faster. */
306 if (pattern
[0] != name
[0] || pattern
[1] != name
[1]
307 || pattern
[2] != name
[2] || pattern
[3] != name
[3])
312 while (*pattern
!= '*')
313 if (*name
++ != *pattern
++)
319 /* Compare sections ASEC and BSEC according to SORT. */
322 compare_section (sort_type sort
, asection
*asec
, asection
*bsec
)
331 case by_alignment_name
:
332 ret
= (bfd_section_alignment (bsec
->owner
, bsec
)
333 - bfd_section_alignment (asec
->owner
, asec
));
339 ret
= strcmp (bfd_get_section_name (asec
->owner
, asec
),
340 bfd_get_section_name (bsec
->owner
, bsec
));
343 case by_name_alignment
:
344 ret
= strcmp (bfd_get_section_name (asec
->owner
, asec
),
345 bfd_get_section_name (bsec
->owner
, bsec
));
351 ret
= (bfd_section_alignment (bsec
->owner
, bsec
)
352 - bfd_section_alignment (asec
->owner
, asec
));
359 /* Build a Binary Search Tree to sort sections, unlike insertion sort
360 used in wild_sort(). BST is considerably faster if the number of
361 of sections are large. */
363 static lang_section_bst_type
**
364 wild_sort_fast (lang_wild_statement_type
*wild
,
365 struct wildcard_list
*sec
,
366 lang_input_statement_type
*file ATTRIBUTE_UNUSED
,
369 lang_section_bst_type
**tree
;
372 if (!wild
->filenames_sorted
373 && (sec
== NULL
|| sec
->spec
.sorted
== none
))
375 /* Append at the right end of tree. */
377 tree
= &((*tree
)->right
);
383 /* Find the correct node to append this section. */
384 if (compare_section (sec
->spec
.sorted
, section
, (*tree
)->section
) < 0)
385 tree
= &((*tree
)->left
);
387 tree
= &((*tree
)->right
);
393 /* Use wild_sort_fast to build a BST to sort sections. */
396 output_section_callback_fast (lang_wild_statement_type
*ptr
,
397 struct wildcard_list
*sec
,
399 lang_input_statement_type
*file
,
400 void *output ATTRIBUTE_UNUSED
)
402 lang_section_bst_type
*node
;
403 lang_section_bst_type
**tree
;
405 if (unique_section_p (section
))
408 node
= xmalloc (sizeof (lang_section_bst_type
));
411 node
->section
= section
;
413 tree
= wild_sort_fast (ptr
, sec
, file
, section
);
418 /* Convert a sorted sections' BST back to list form. */
421 output_section_callback_tree_to_list (lang_wild_statement_type
*ptr
,
422 lang_section_bst_type
*tree
,
426 output_section_callback_tree_to_list (ptr
, tree
->left
, output
);
428 lang_add_section (&ptr
->children
, tree
->section
,
429 (lang_output_section_statement_type
*) output
);
432 output_section_callback_tree_to_list (ptr
, tree
->right
, output
);
437 /* Specialized, optimized routines for handling different kinds of
441 walk_wild_section_specs1_wild0 (lang_wild_statement_type
*ptr
,
442 lang_input_statement_type
*file
,
446 /* We can just do a hash lookup for the section with the right name.
447 But if that lookup discovers more than one section with the name
448 (should be rare), we fall back to the general algorithm because
449 we would otherwise have to sort the sections to make sure they
450 get processed in the bfd's order. */
451 bfd_boolean multiple_sections_found
;
452 struct wildcard_list
*sec0
= ptr
->handler_data
[0];
453 asection
*s0
= find_section (file
, sec0
, &multiple_sections_found
);
455 if (multiple_sections_found
)
456 walk_wild_section_general (ptr
, file
, callback
, data
);
458 walk_wild_consider_section (ptr
, file
, s0
, sec0
, callback
, data
);
462 walk_wild_section_specs1_wild1 (lang_wild_statement_type
*ptr
,
463 lang_input_statement_type
*file
,
468 struct wildcard_list
*wildsec0
= ptr
->handler_data
[0];
470 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
472 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
473 bfd_boolean skip
= !match_simple_wild (wildsec0
->spec
.name
, sname
);
476 walk_wild_consider_section (ptr
, file
, s
, wildsec0
, callback
, data
);
481 walk_wild_section_specs2_wild1 (lang_wild_statement_type
*ptr
,
482 lang_input_statement_type
*file
,
487 struct wildcard_list
*sec0
= ptr
->handler_data
[0];
488 struct wildcard_list
*wildsec1
= ptr
->handler_data
[1];
489 bfd_boolean multiple_sections_found
;
490 asection
*s0
= find_section (file
, sec0
, &multiple_sections_found
);
492 if (multiple_sections_found
)
494 walk_wild_section_general (ptr
, file
, callback
, data
);
498 /* Note that if the section was not found, s0 is NULL and
499 we'll simply never succeed the s == s0 test below. */
500 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
502 /* Recall that in this code path, a section cannot satisfy more
503 than one spec, so if s == s0 then it cannot match
506 walk_wild_consider_section (ptr
, file
, s
, sec0
, callback
, data
);
509 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
510 bfd_boolean skip
= !match_simple_wild (wildsec1
->spec
.name
, sname
);
513 walk_wild_consider_section (ptr
, file
, s
, wildsec1
, callback
,
520 walk_wild_section_specs3_wild2 (lang_wild_statement_type
*ptr
,
521 lang_input_statement_type
*file
,
526 struct wildcard_list
*sec0
= ptr
->handler_data
[0];
527 struct wildcard_list
*wildsec1
= ptr
->handler_data
[1];
528 struct wildcard_list
*wildsec2
= ptr
->handler_data
[2];
529 bfd_boolean multiple_sections_found
;
530 asection
*s0
= find_section (file
, sec0
, &multiple_sections_found
);
532 if (multiple_sections_found
)
534 walk_wild_section_general (ptr
, file
, callback
, data
);
538 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
541 walk_wild_consider_section (ptr
, file
, s
, sec0
, callback
, data
);
544 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
545 bfd_boolean skip
= !match_simple_wild (wildsec1
->spec
.name
, sname
);
548 walk_wild_consider_section (ptr
, file
, s
, wildsec1
, callback
, data
);
551 skip
= !match_simple_wild (wildsec2
->spec
.name
, sname
);
553 walk_wild_consider_section (ptr
, file
, s
, wildsec2
, callback
,
561 walk_wild_section_specs4_wild2 (lang_wild_statement_type
*ptr
,
562 lang_input_statement_type
*file
,
567 struct wildcard_list
*sec0
= ptr
->handler_data
[0];
568 struct wildcard_list
*sec1
= ptr
->handler_data
[1];
569 struct wildcard_list
*wildsec2
= ptr
->handler_data
[2];
570 struct wildcard_list
*wildsec3
= ptr
->handler_data
[3];
571 bfd_boolean multiple_sections_found
;
572 asection
*s0
= find_section (file
, sec0
, &multiple_sections_found
), *s1
;
574 if (multiple_sections_found
)
576 walk_wild_section_general (ptr
, file
, callback
, data
);
580 s1
= find_section (file
, sec1
, &multiple_sections_found
);
581 if (multiple_sections_found
)
583 walk_wild_section_general (ptr
, file
, callback
, data
);
587 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
590 walk_wild_consider_section (ptr
, file
, s
, sec0
, callback
, data
);
593 walk_wild_consider_section (ptr
, file
, s
, sec1
, callback
, data
);
596 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
597 bfd_boolean skip
= !match_simple_wild (wildsec2
->spec
.name
,
601 walk_wild_consider_section (ptr
, file
, s
, wildsec2
, callback
,
605 skip
= !match_simple_wild (wildsec3
->spec
.name
, sname
);
607 walk_wild_consider_section (ptr
, file
, s
, wildsec3
,
615 walk_wild_section (lang_wild_statement_type
*ptr
,
616 lang_input_statement_type
*file
,
620 if (file
->just_syms_flag
)
623 (*ptr
->walk_wild_section_handler
) (ptr
, file
, callback
, data
);
626 /* Returns TRUE when name1 is a wildcard spec that might match
627 something name2 can match. We're conservative: we return FALSE
628 only if the prefixes of name1 and name2 are different up to the
629 first wildcard character. */
632 wild_spec_can_overlap (const char *name1
, const char *name2
)
634 size_t prefix1_len
= strcspn (name1
, "?*[");
635 size_t prefix2_len
= strcspn (name2
, "?*[");
636 size_t min_prefix_len
;
638 /* Note that if there is no wildcard character, then we treat the
639 terminating 0 as part of the prefix. Thus ".text" won't match
640 ".text." or ".text.*", for example. */
641 if (name1
[prefix1_len
] == '\0')
643 if (name2
[prefix2_len
] == '\0')
646 min_prefix_len
= prefix1_len
< prefix2_len
? prefix1_len
: prefix2_len
;
648 return memcmp (name1
, name2
, min_prefix_len
) == 0;
651 /* Select specialized code to handle various kinds of wildcard
655 analyze_walk_wild_section_handler (lang_wild_statement_type
*ptr
)
658 int wild_name_count
= 0;
659 struct wildcard_list
*sec
;
663 ptr
->walk_wild_section_handler
= walk_wild_section_general
;
664 ptr
->handler_data
[0] = NULL
;
665 ptr
->handler_data
[1] = NULL
;
666 ptr
->handler_data
[2] = NULL
;
667 ptr
->handler_data
[3] = NULL
;
670 /* Count how many wildcard_specs there are, and how many of those
671 actually use wildcards in the name. Also, bail out if any of the
672 wildcard names are NULL. (Can this actually happen?
673 walk_wild_section used to test for it.) And bail out if any
674 of the wildcards are more complex than a simple string
675 ending in a single '*'. */
676 for (sec
= ptr
->section_list
; sec
!= NULL
; sec
= sec
->next
)
679 if (sec
->spec
.name
== NULL
)
681 if (wildcardp (sec
->spec
.name
))
684 if (!is_simple_wild (sec
->spec
.name
))
689 /* The zero-spec case would be easy to optimize but it doesn't
690 happen in practice. Likewise, more than 4 specs doesn't
691 happen in practice. */
692 if (sec_count
== 0 || sec_count
> 4)
695 /* Check that no two specs can match the same section. */
696 for (sec
= ptr
->section_list
; sec
!= NULL
; sec
= sec
->next
)
698 struct wildcard_list
*sec2
;
699 for (sec2
= sec
->next
; sec2
!= NULL
; sec2
= sec2
->next
)
701 if (wild_spec_can_overlap (sec
->spec
.name
, sec2
->spec
.name
))
706 signature
= (sec_count
<< 8) + wild_name_count
;
710 ptr
->walk_wild_section_handler
= walk_wild_section_specs1_wild0
;
713 ptr
->walk_wild_section_handler
= walk_wild_section_specs1_wild1
;
716 ptr
->walk_wild_section_handler
= walk_wild_section_specs2_wild1
;
719 ptr
->walk_wild_section_handler
= walk_wild_section_specs3_wild2
;
722 ptr
->walk_wild_section_handler
= walk_wild_section_specs4_wild2
;
728 /* Now fill the data array with pointers to the specs, first the
729 specs with non-wildcard names, then the specs with wildcard
730 names. It's OK to process the specs in different order from the
731 given order, because we've already determined that no section
732 will match more than one spec. */
734 for (sec
= ptr
->section_list
; sec
!= NULL
; sec
= sec
->next
)
735 if (!wildcardp (sec
->spec
.name
))
736 ptr
->handler_data
[data_counter
++] = sec
;
737 for (sec
= ptr
->section_list
; sec
!= NULL
; sec
= sec
->next
)
738 if (wildcardp (sec
->spec
.name
))
739 ptr
->handler_data
[data_counter
++] = sec
;
742 /* Handle a wild statement for a single file F. */
745 walk_wild_file (lang_wild_statement_type
*s
,
746 lang_input_statement_type
*f
,
750 if (f
->the_bfd
== NULL
751 || ! bfd_check_format (f
->the_bfd
, bfd_archive
))
752 walk_wild_section (s
, f
, callback
, data
);
757 /* This is an archive file. We must map each member of the
758 archive separately. */
759 member
= bfd_openr_next_archived_file (f
->the_bfd
, NULL
);
760 while (member
!= NULL
)
762 /* When lookup_name is called, it will call the add_symbols
763 entry point for the archive. For each element of the
764 archive which is included, BFD will call ldlang_add_file,
765 which will set the usrdata field of the member to the
766 lang_input_statement. */
767 if (member
->usrdata
!= NULL
)
769 walk_wild_section (s
, member
->usrdata
, callback
, data
);
772 member
= bfd_openr_next_archived_file (f
->the_bfd
, member
);
778 walk_wild (lang_wild_statement_type
*s
, callback_t callback
, void *data
)
780 const char *file_spec
= s
->filename
;
782 if (file_spec
== NULL
)
784 /* Perform the iteration over all files in the list. */
785 LANG_FOR_EACH_INPUT_STATEMENT (f
)
787 walk_wild_file (s
, f
, callback
, data
);
790 else if (wildcardp (file_spec
))
792 LANG_FOR_EACH_INPUT_STATEMENT (f
)
794 if (fnmatch (file_spec
, f
->filename
, 0) == 0)
795 walk_wild_file (s
, f
, callback
, data
);
800 lang_input_statement_type
*f
;
802 /* Perform the iteration over a single file. */
803 f
= lookup_name (file_spec
);
805 walk_wild_file (s
, f
, callback
, data
);
809 /* lang_for_each_statement walks the parse tree and calls the provided
810 function for each node. */
813 lang_for_each_statement_worker (void (*func
) (lang_statement_union_type
*),
814 lang_statement_union_type
*s
)
816 for (; s
!= NULL
; s
= s
->header
.next
)
820 switch (s
->header
.type
)
822 case lang_constructors_statement_enum
:
823 lang_for_each_statement_worker (func
, constructor_list
.head
);
825 case lang_output_section_statement_enum
:
826 lang_for_each_statement_worker
827 (func
, s
->output_section_statement
.children
.head
);
829 case lang_wild_statement_enum
:
830 lang_for_each_statement_worker (func
,
831 s
->wild_statement
.children
.head
);
833 case lang_group_statement_enum
:
834 lang_for_each_statement_worker (func
,
835 s
->group_statement
.children
.head
);
837 case lang_data_statement_enum
:
838 case lang_reloc_statement_enum
:
839 case lang_object_symbols_statement_enum
:
840 case lang_output_statement_enum
:
841 case lang_target_statement_enum
:
842 case lang_input_section_enum
:
843 case lang_input_statement_enum
:
844 case lang_assignment_statement_enum
:
845 case lang_padding_statement_enum
:
846 case lang_address_statement_enum
:
847 case lang_fill_statement_enum
:
848 case lang_insert_statement_enum
:
858 lang_for_each_statement (void (*func
) (lang_statement_union_type
*))
860 lang_for_each_statement_worker (func
, statement_list
.head
);
863 /*----------------------------------------------------------------------*/
866 lang_list_init (lang_statement_list_type
*list
)
869 list
->tail
= &list
->head
;
872 /* Build a new statement node for the parse tree. */
874 static lang_statement_union_type
*
875 new_statement (enum statement_enum type
,
877 lang_statement_list_type
*list
)
879 lang_statement_union_type
*new;
881 new = stat_alloc (size
);
882 new->header
.type
= type
;
883 new->header
.next
= NULL
;
884 lang_statement_append (list
, new, &new->header
.next
);
888 /* Build a new input file node for the language. There are several
889 ways in which we treat an input file, eg, we only look at symbols,
890 or prefix it with a -l etc.
892 We can be supplied with requests for input files more than once;
893 they may, for example be split over several lines like foo.o(.text)
894 foo.o(.data) etc, so when asked for a file we check that we haven't
895 got it already so we don't duplicate the bfd. */
897 static lang_input_statement_type
*
898 new_afile (const char *name
,
899 lang_input_file_enum_type file_type
,
901 bfd_boolean add_to_list
)
903 lang_input_statement_type
*p
;
906 p
= new_stat (lang_input_statement
, stat_ptr
);
909 p
= stat_alloc (sizeof (lang_input_statement_type
));
910 p
->header
.type
= lang_input_statement_enum
;
911 p
->header
.next
= NULL
;
914 lang_has_input_file
= TRUE
;
916 p
->sysrooted
= FALSE
;
918 if (file_type
== lang_input_file_is_l_enum
919 && name
[0] == ':' && name
[1] != '\0')
921 file_type
= lang_input_file_is_search_file_enum
;
927 case lang_input_file_is_symbols_only_enum
:
929 p
->is_archive
= FALSE
;
931 p
->local_sym_name
= name
;
932 p
->just_syms_flag
= TRUE
;
933 p
->search_dirs_flag
= FALSE
;
935 case lang_input_file_is_fake_enum
:
937 p
->is_archive
= FALSE
;
939 p
->local_sym_name
= name
;
940 p
->just_syms_flag
= FALSE
;
941 p
->search_dirs_flag
= FALSE
;
943 case lang_input_file_is_l_enum
:
944 p
->is_archive
= TRUE
;
947 p
->local_sym_name
= concat ("-l", name
, (const char *) NULL
);
948 p
->just_syms_flag
= FALSE
;
949 p
->search_dirs_flag
= TRUE
;
951 case lang_input_file_is_marker_enum
:
953 p
->is_archive
= FALSE
;
955 p
->local_sym_name
= name
;
956 p
->just_syms_flag
= FALSE
;
957 p
->search_dirs_flag
= TRUE
;
959 case lang_input_file_is_search_file_enum
:
960 p
->sysrooted
= ldlang_sysrooted_script
;
962 p
->is_archive
= FALSE
;
964 p
->local_sym_name
= name
;
965 p
->just_syms_flag
= FALSE
;
966 p
->search_dirs_flag
= TRUE
;
968 case lang_input_file_is_file_enum
:
970 p
->is_archive
= FALSE
;
972 p
->local_sym_name
= name
;
973 p
->just_syms_flag
= FALSE
;
974 p
->search_dirs_flag
= FALSE
;
981 p
->next_real_file
= NULL
;
984 p
->dynamic
= config
.dynamic_link
;
985 p
->add_needed
= add_needed
;
986 p
->as_needed
= as_needed
;
987 p
->whole_archive
= whole_archive
;
989 lang_statement_append (&input_file_chain
,
990 (lang_statement_union_type
*) p
,
995 lang_input_statement_type
*
996 lang_add_input_file (const char *name
,
997 lang_input_file_enum_type file_type
,
1000 return new_afile (name
, file_type
, target
, TRUE
);
1003 struct out_section_hash_entry
1005 struct bfd_hash_entry root
;
1006 lang_statement_union_type s
;
1009 /* The hash table. */
1011 static struct bfd_hash_table output_section_statement_table
;
1013 /* Support routines for the hash table used by lang_output_section_find,
1014 initialize the table, fill in an entry and remove the table. */
1016 static struct bfd_hash_entry
*
1017 output_section_statement_newfunc (struct bfd_hash_entry
*entry
,
1018 struct bfd_hash_table
*table
,
1021 lang_output_section_statement_type
**nextp
;
1022 struct out_section_hash_entry
*ret
;
1026 entry
= bfd_hash_allocate (table
, sizeof (*ret
));
1031 entry
= bfd_hash_newfunc (entry
, table
, string
);
1035 ret
= (struct out_section_hash_entry
*) entry
;
1036 memset (&ret
->s
, 0, sizeof (ret
->s
));
1037 ret
->s
.header
.type
= lang_output_section_statement_enum
;
1038 ret
->s
.output_section_statement
.subsection_alignment
= -1;
1039 ret
->s
.output_section_statement
.section_alignment
= -1;
1040 ret
->s
.output_section_statement
.block_value
= 1;
1041 lang_list_init (&ret
->s
.output_section_statement
.children
);
1042 lang_statement_append (stat_ptr
, &ret
->s
, &ret
->s
.header
.next
);
1044 /* For every output section statement added to the list, except the
1045 first one, lang_output_section_statement.tail points to the "next"
1046 field of the last element of the list. */
1047 if (lang_output_section_statement
.head
!= NULL
)
1048 ret
->s
.output_section_statement
.prev
1049 = ((lang_output_section_statement_type
*)
1050 ((char *) lang_output_section_statement
.tail
1051 - offsetof (lang_output_section_statement_type
, next
)));
1053 /* GCC's strict aliasing rules prevent us from just casting the
1054 address, so we store the pointer in a variable and cast that
1056 nextp
= &ret
->s
.output_section_statement
.next
;
1057 lang_statement_append (&lang_output_section_statement
,
1059 (lang_statement_union_type
**) nextp
);
1064 output_section_statement_table_init (void)
1066 if (!bfd_hash_table_init_n (&output_section_statement_table
,
1067 output_section_statement_newfunc
,
1068 sizeof (struct out_section_hash_entry
),
1070 einfo (_("%P%F: can not create hash table: %E\n"));
1074 output_section_statement_table_free (void)
1076 bfd_hash_table_free (&output_section_statement_table
);
1079 /* Build enough state so that the parser can build its tree. */
1084 obstack_begin (&stat_obstack
, 1000);
1086 stat_ptr
= &statement_list
;
1088 output_section_statement_table_init ();
1090 lang_list_init (stat_ptr
);
1092 lang_list_init (&input_file_chain
);
1093 lang_list_init (&lang_output_section_statement
);
1094 lang_list_init (&file_chain
);
1095 first_file
= lang_add_input_file (NULL
, lang_input_file_is_marker_enum
,
1097 abs_output_section
=
1098 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME
);
1100 abs_output_section
->bfd_section
= bfd_abs_section_ptr
;
1102 /* The value "3" is ad-hoc, somewhat related to the expected number of
1103 DEFINED expressions in a linker script. For most default linker
1104 scripts, there are none. Why a hash table then? Well, it's somewhat
1105 simpler to re-use working machinery than using a linked list in terms
1106 of code-complexity here in ld, besides the initialization which just
1107 looks like other code here. */
1108 if (!bfd_hash_table_init_n (&lang_definedness_table
,
1109 lang_definedness_newfunc
,
1110 sizeof (struct lang_definedness_hash_entry
),
1112 einfo (_("%P%F: can not create hash table: %E\n"));
1118 output_section_statement_table_free ();
1121 /*----------------------------------------------------------------------
1122 A region is an area of memory declared with the
1123 MEMORY { name:org=exp, len=exp ... }
1126 We maintain a list of all the regions here.
1128 If no regions are specified in the script, then the default is used
1129 which is created when looked up to be the entire data space.
1131 If create is true we are creating a region inside a MEMORY block.
1132 In this case it is probably an error to create a region that has
1133 already been created. If we are not inside a MEMORY block it is
1134 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
1135 and so we issue a warning. */
1137 static lang_memory_region_type
*lang_memory_region_list
;
1138 static lang_memory_region_type
**lang_memory_region_list_tail
1139 = &lang_memory_region_list
;
1141 lang_memory_region_type
*
1142 lang_memory_region_lookup (const char *const name
, bfd_boolean create
)
1144 lang_memory_region_type
*p
;
1145 lang_memory_region_type
*new;
1147 /* NAME is NULL for LMA memspecs if no region was specified. */
1151 for (p
= lang_memory_region_list
; p
!= NULL
; p
= p
->next
)
1152 if (strcmp (p
->name
, name
) == 0)
1155 einfo (_("%P:%S: warning: redeclaration of memory region '%s'\n"),
1160 if (!create
&& strcmp (name
, DEFAULT_MEMORY_REGION
))
1161 einfo (_("%P:%S: warning: memory region %s not declared\n"), name
);
1163 new = stat_alloc (sizeof (lang_memory_region_type
));
1165 new->name
= xstrdup (name
);
1168 new->length
= ~(bfd_size_type
) 0;
1170 new->last_os
= NULL
;
1173 new->had_full_message
= FALSE
;
1175 *lang_memory_region_list_tail
= new;
1176 lang_memory_region_list_tail
= &new->next
;
1181 static lang_memory_region_type
*
1182 lang_memory_default (asection
*section
)
1184 lang_memory_region_type
*p
;
1186 flagword sec_flags
= section
->flags
;
1188 /* Override SEC_DATA to mean a writable section. */
1189 if ((sec_flags
& (SEC_ALLOC
| SEC_READONLY
| SEC_CODE
)) == SEC_ALLOC
)
1190 sec_flags
|= SEC_DATA
;
1192 for (p
= lang_memory_region_list
; p
!= NULL
; p
= p
->next
)
1194 if ((p
->flags
& sec_flags
) != 0
1195 && (p
->not_flags
& sec_flags
) == 0)
1200 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION
, FALSE
);
1203 lang_output_section_statement_type
*
1204 lang_output_section_find (const char *const name
)
1206 struct out_section_hash_entry
*entry
;
1209 entry
= ((struct out_section_hash_entry
*)
1210 bfd_hash_lookup (&output_section_statement_table
, name
,
1215 hash
= entry
->root
.hash
;
1218 if (entry
->s
.output_section_statement
.constraint
!= -1)
1219 return &entry
->s
.output_section_statement
;
1220 entry
= (struct out_section_hash_entry
*) entry
->root
.next
;
1222 while (entry
!= NULL
1223 && entry
->root
.hash
== hash
1224 && strcmp (name
, entry
->s
.output_section_statement
.name
) == 0);
1229 static lang_output_section_statement_type
*
1230 lang_output_section_statement_lookup_1 (const char *const name
, int constraint
)
1232 struct out_section_hash_entry
*entry
;
1233 struct out_section_hash_entry
*last_ent
;
1236 entry
= ((struct out_section_hash_entry
*)
1237 bfd_hash_lookup (&output_section_statement_table
, name
,
1241 einfo (_("%P%F: failed creating section `%s': %E\n"), name
);
1245 if (entry
->s
.output_section_statement
.name
!= NULL
)
1247 /* We have a section of this name, but it might not have the correct
1249 hash
= entry
->root
.hash
;
1252 if (entry
->s
.output_section_statement
.constraint
!= -1
1254 || (constraint
== entry
->s
.output_section_statement
.constraint
1255 && constraint
!= SPECIAL
)))
1256 return &entry
->s
.output_section_statement
;
1258 entry
= (struct out_section_hash_entry
*) entry
->root
.next
;
1260 while (entry
!= NULL
1261 && entry
->root
.hash
== hash
1262 && strcmp (name
, entry
->s
.output_section_statement
.name
) == 0);
1265 = ((struct out_section_hash_entry
*)
1266 output_section_statement_newfunc (NULL
,
1267 &output_section_statement_table
,
1271 einfo (_("%P%F: failed creating section `%s': %E\n"), name
);
1274 entry
->root
= last_ent
->root
;
1275 last_ent
->root
.next
= &entry
->root
;
1278 entry
->s
.output_section_statement
.name
= name
;
1279 entry
->s
.output_section_statement
.constraint
= constraint
;
1280 return &entry
->s
.output_section_statement
;
1283 lang_output_section_statement_type
*
1284 lang_output_section_statement_lookup (const char *const name
)
1286 return lang_output_section_statement_lookup_1 (name
, 0);
1289 /* A variant of lang_output_section_find used by place_orphan.
1290 Returns the output statement that should precede a new output
1291 statement for SEC. If an exact match is found on certain flags,
1294 lang_output_section_statement_type
*
1295 lang_output_section_find_by_flags (const asection
*sec
,
1296 lang_output_section_statement_type
**exact
,
1297 lang_match_sec_type_func match_type
)
1299 lang_output_section_statement_type
*first
, *look
, *found
;
1302 /* We know the first statement on this list is *ABS*. May as well
1304 first
= &lang_output_section_statement
.head
->output_section_statement
;
1305 first
= first
->next
;
1307 /* First try for an exact match. */
1309 for (look
= first
; look
; look
= look
->next
)
1311 flags
= look
->flags
;
1312 if (look
->bfd_section
!= NULL
)
1314 flags
= look
->bfd_section
->flags
;
1315 if (match_type
&& !match_type (link_info
.output_bfd
,
1320 flags
^= sec
->flags
;
1321 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
1322 | SEC_CODE
| SEC_SMALL_DATA
| SEC_THREAD_LOCAL
)))
1332 if (sec
->flags
& SEC_CODE
)
1334 /* Try for a rw code section. */
1335 for (look
= first
; look
; look
= look
->next
)
1337 flags
= look
->flags
;
1338 if (look
->bfd_section
!= NULL
)
1340 flags
= look
->bfd_section
->flags
;
1341 if (match_type
&& !match_type (link_info
.output_bfd
,
1346 flags
^= sec
->flags
;
1347 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
1348 | SEC_CODE
| SEC_SMALL_DATA
| SEC_THREAD_LOCAL
)))
1352 else if (sec
->flags
& (SEC_READONLY
| SEC_THREAD_LOCAL
))
1354 /* .rodata can go after .text, .sdata2 after .rodata. */
1355 for (look
= first
; look
; look
= look
->next
)
1357 flags
= look
->flags
;
1358 if (look
->bfd_section
!= NULL
)
1360 flags
= look
->bfd_section
->flags
;
1361 if (match_type
&& !match_type (link_info
.output_bfd
,
1366 flags
^= sec
->flags
;
1367 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
1369 && !(look
->flags
& (SEC_SMALL_DATA
| SEC_THREAD_LOCAL
)))
1373 else if (sec
->flags
& SEC_SMALL_DATA
)
1375 /* .sdata goes after .data, .sbss after .sdata. */
1376 for (look
= first
; look
; look
= look
->next
)
1378 flags
= look
->flags
;
1379 if (look
->bfd_section
!= NULL
)
1381 flags
= look
->bfd_section
->flags
;
1382 if (match_type
&& !match_type (link_info
.output_bfd
,
1387 flags
^= sec
->flags
;
1388 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
1389 | SEC_THREAD_LOCAL
))
1390 || ((look
->flags
& SEC_SMALL_DATA
)
1391 && !(sec
->flags
& SEC_HAS_CONTENTS
)))
1395 else if (sec
->flags
& SEC_HAS_CONTENTS
)
1397 /* .data goes after .rodata. */
1398 for (look
= first
; look
; look
= look
->next
)
1400 flags
= look
->flags
;
1401 if (look
->bfd_section
!= NULL
)
1403 flags
= look
->bfd_section
->flags
;
1404 if (match_type
&& !match_type (link_info
.output_bfd
,
1409 flags
^= sec
->flags
;
1410 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
1411 | SEC_SMALL_DATA
| SEC_THREAD_LOCAL
)))
1417 /* .bss goes last. */
1418 for (look
= first
; look
; look
= look
->next
)
1420 flags
= look
->flags
;
1421 if (look
->bfd_section
!= NULL
)
1423 flags
= look
->bfd_section
->flags
;
1424 if (match_type
&& !match_type (link_info
.output_bfd
,
1429 flags
^= sec
->flags
;
1430 if (!(flags
& SEC_ALLOC
))
1435 if (found
|| !match_type
)
1438 return lang_output_section_find_by_flags (sec
, NULL
, NULL
);
1441 /* Find the last output section before given output statement.
1442 Used by place_orphan. */
1445 output_prev_sec_find (lang_output_section_statement_type
*os
)
1447 lang_output_section_statement_type
*lookup
;
1449 for (lookup
= os
->prev
; lookup
!= NULL
; lookup
= lookup
->prev
)
1451 if (lookup
->constraint
== -1)
1454 if (lookup
->bfd_section
!= NULL
&& lookup
->bfd_section
->owner
!= NULL
)
1455 return lookup
->bfd_section
;
1461 /* Look for a suitable place for a new output section statement. The
1462 idea is to skip over anything that might be inside a SECTIONS {}
1463 statement in a script, before we find another output section
1464 statement. Assignments to "dot" before an output section statement
1465 are assumed to belong to it. An exception to this rule is made for
1466 the first assignment to dot, otherwise we might put an orphan
1467 before . = . + SIZEOF_HEADERS or similar assignments that set the
1470 static lang_statement_union_type
**
1471 insert_os_after (lang_output_section_statement_type
*after
)
1473 lang_statement_union_type
**where
;
1474 lang_statement_union_type
**assign
= NULL
;
1475 bfd_boolean ignore_first
;
1478 = after
== &lang_output_section_statement
.head
->output_section_statement
;
1480 for (where
= &after
->header
.next
;
1482 where
= &(*where
)->header
.next
)
1484 switch ((*where
)->header
.type
)
1486 case lang_assignment_statement_enum
:
1489 lang_assignment_statement_type
*ass
;
1491 ass
= &(*where
)->assignment_statement
;
1492 if (ass
->exp
->type
.node_class
!= etree_assert
1493 && ass
->exp
->assign
.dst
[0] == '.'
1494 && ass
->exp
->assign
.dst
[1] == 0
1498 ignore_first
= FALSE
;
1500 case lang_wild_statement_enum
:
1501 case lang_input_section_enum
:
1502 case lang_object_symbols_statement_enum
:
1503 case lang_fill_statement_enum
:
1504 case lang_data_statement_enum
:
1505 case lang_reloc_statement_enum
:
1506 case lang_padding_statement_enum
:
1507 case lang_constructors_statement_enum
:
1510 case lang_output_section_statement_enum
:
1514 case lang_input_statement_enum
:
1515 case lang_address_statement_enum
:
1516 case lang_target_statement_enum
:
1517 case lang_output_statement_enum
:
1518 case lang_group_statement_enum
:
1519 case lang_insert_statement_enum
:
1528 lang_output_section_statement_type
*
1529 lang_insert_orphan (asection
*s
,
1530 const char *secname
,
1531 lang_output_section_statement_type
*after
,
1532 struct orphan_save
*place
,
1533 etree_type
*address
,
1534 lang_statement_list_type
*add_child
)
1536 lang_statement_list_type
*old
;
1537 lang_statement_list_type add
;
1539 lang_output_section_statement_type
*os
;
1540 lang_output_section_statement_type
**os_tail
;
1542 /* Start building a list of statements for this section.
1543 First save the current statement pointer. */
1546 /* If we have found an appropriate place for the output section
1547 statements for this orphan, add them to our own private list,
1548 inserting them later into the global statement list. */
1552 lang_list_init (stat_ptr
);
1556 if (config
.build_constructors
)
1558 /* If the name of the section is representable in C, then create
1559 symbols to mark the start and the end of the section. */
1560 for (ps
= secname
; *ps
!= '\0'; ps
++)
1561 if (! ISALNUM ((unsigned char) *ps
) && *ps
!= '_')
1566 etree_type
*e_align
;
1568 symname
= (char *) xmalloc (ps
- secname
+ sizeof "__start_" + 1);
1569 symname
[0] = bfd_get_symbol_leading_char (link_info
.output_bfd
);
1570 sprintf (symname
+ (symname
[0] != 0), "__start_%s", secname
);
1571 e_align
= exp_unop (ALIGN_K
,
1572 exp_intop ((bfd_vma
) 1 << s
->alignment_power
));
1573 lang_add_assignment (exp_assop ('=', ".", e_align
));
1574 lang_add_assignment (exp_provide (symname
,
1575 exp_nameop (NAME
, "."),
1580 if (link_info
.relocatable
|| (s
->flags
& (SEC_LOAD
| SEC_ALLOC
)) == 0)
1581 address
= exp_intop (0);
1583 os_tail
= ((lang_output_section_statement_type
**)
1584 lang_output_section_statement
.tail
);
1585 os
= lang_enter_output_section_statement (secname
, address
, 0, NULL
, NULL
,
1588 if (add_child
== NULL
)
1589 add_child
= &os
->children
;
1590 lang_add_section (add_child
, s
, os
);
1592 lang_leave_output_section_statement (0, "*default*", NULL
, NULL
);
1594 if (config
.build_constructors
&& *ps
== '\0')
1598 /* lang_leave_ouput_section_statement resets stat_ptr.
1599 Put stat_ptr back where we want it. */
1603 symname
= (char *) xmalloc (ps
- secname
+ sizeof "__stop_" + 1);
1604 symname
[0] = bfd_get_symbol_leading_char (link_info
.output_bfd
);
1605 sprintf (symname
+ (symname
[0] != 0), "__stop_%s", secname
);
1606 lang_add_assignment (exp_provide (symname
,
1607 exp_nameop (NAME
, "."),
1611 /* Restore the global list pointer. */
1615 if (after
!= NULL
&& os
->bfd_section
!= NULL
)
1617 asection
*snew
, *as
;
1619 snew
= os
->bfd_section
;
1621 /* Shuffle the bfd section list to make the output file look
1622 neater. This is really only cosmetic. */
1623 if (place
->section
== NULL
1624 && after
!= (&lang_output_section_statement
.head
1625 ->output_section_statement
))
1627 asection
*bfd_section
= after
->bfd_section
;
1629 /* If the output statement hasn't been used to place any input
1630 sections (and thus doesn't have an output bfd_section),
1631 look for the closest prior output statement having an
1633 if (bfd_section
== NULL
)
1634 bfd_section
= output_prev_sec_find (after
);
1636 if (bfd_section
!= NULL
&& bfd_section
!= snew
)
1637 place
->section
= &bfd_section
->next
;
1640 if (place
->section
== NULL
)
1641 place
->section
= &link_info
.output_bfd
->sections
;
1643 as
= *place
->section
;
1647 /* Put the section at the end of the list. */
1649 /* Unlink the section. */
1650 bfd_section_list_remove (link_info
.output_bfd
, snew
);
1652 /* Now tack it back on in the right place. */
1653 bfd_section_list_append (link_info
.output_bfd
, snew
);
1655 else if (as
!= snew
&& as
->prev
!= snew
)
1657 /* Unlink the section. */
1658 bfd_section_list_remove (link_info
.output_bfd
, snew
);
1660 /* Now tack it back on in the right place. */
1661 bfd_section_list_insert_before (link_info
.output_bfd
, as
, snew
);
1664 /* Save the end of this list. Further ophans of this type will
1665 follow the one we've just added. */
1666 place
->section
= &snew
->next
;
1668 /* The following is non-cosmetic. We try to put the output
1669 statements in some sort of reasonable order here, because they
1670 determine the final load addresses of the orphan sections.
1671 In addition, placing output statements in the wrong order may
1672 require extra segments. For instance, given a typical
1673 situation of all read-only sections placed in one segment and
1674 following that a segment containing all the read-write
1675 sections, we wouldn't want to place an orphan read/write
1676 section before or amongst the read-only ones. */
1677 if (add
.head
!= NULL
)
1679 lang_output_section_statement_type
*newly_added_os
;
1681 if (place
->stmt
== NULL
)
1683 lang_statement_union_type
**where
= insert_os_after (after
);
1688 place
->os_tail
= &after
->next
;
1692 /* Put it after the last orphan statement we added. */
1693 *add
.tail
= *place
->stmt
;
1694 *place
->stmt
= add
.head
;
1697 /* Fix the global list pointer if we happened to tack our
1698 new list at the tail. */
1699 if (*old
->tail
== add
.head
)
1700 old
->tail
= add
.tail
;
1702 /* Save the end of this list. */
1703 place
->stmt
= add
.tail
;
1705 /* Do the same for the list of output section statements. */
1706 newly_added_os
= *os_tail
;
1708 newly_added_os
->prev
= (lang_output_section_statement_type
*)
1709 ((char *) place
->os_tail
1710 - offsetof (lang_output_section_statement_type
, next
));
1711 newly_added_os
->next
= *place
->os_tail
;
1712 if (newly_added_os
->next
!= NULL
)
1713 newly_added_os
->next
->prev
= newly_added_os
;
1714 *place
->os_tail
= newly_added_os
;
1715 place
->os_tail
= &newly_added_os
->next
;
1717 /* Fixing the global list pointer here is a little different.
1718 We added to the list in lang_enter_output_section_statement,
1719 trimmed off the new output_section_statment above when
1720 assigning *os_tail = NULL, but possibly added it back in
1721 the same place when assigning *place->os_tail. */
1722 if (*os_tail
== NULL
)
1723 lang_output_section_statement
.tail
1724 = (lang_statement_union_type
**) os_tail
;
1731 lang_map_flags (flagword flag
)
1733 if (flag
& SEC_ALLOC
)
1736 if (flag
& SEC_CODE
)
1739 if (flag
& SEC_READONLY
)
1742 if (flag
& SEC_DATA
)
1745 if (flag
& SEC_LOAD
)
1752 lang_memory_region_type
*m
;
1753 bfd_boolean dis_header_printed
= FALSE
;
1756 LANG_FOR_EACH_INPUT_STATEMENT (file
)
1760 if ((file
->the_bfd
->flags
& (BFD_LINKER_CREATED
| DYNAMIC
)) != 0
1761 || file
->just_syms_flag
)
1764 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
1765 if ((s
->output_section
== NULL
1766 || s
->output_section
->owner
!= link_info
.output_bfd
)
1767 && (s
->flags
& (SEC_LINKER_CREATED
| SEC_KEEP
)) == 0)
1769 if (! dis_header_printed
)
1771 fprintf (config
.map_file
, _("\nDiscarded input sections\n\n"));
1772 dis_header_printed
= TRUE
;
1775 print_input_section (s
);
1779 minfo (_("\nMemory Configuration\n\n"));
1780 fprintf (config
.map_file
, "%-16s %-18s %-18s %s\n",
1781 _("Name"), _("Origin"), _("Length"), _("Attributes"));
1783 for (m
= lang_memory_region_list
; m
!= NULL
; m
= m
->next
)
1788 fprintf (config
.map_file
, "%-16s ", m
->name
);
1790 sprintf_vma (buf
, m
->origin
);
1791 minfo ("0x%s ", buf
);
1799 minfo ("0x%V", m
->length
);
1800 if (m
->flags
|| m
->not_flags
)
1808 lang_map_flags (m
->flags
);
1814 lang_map_flags (m
->not_flags
);
1821 fprintf (config
.map_file
, _("\nLinker script and memory map\n\n"));
1823 if (! link_info
.reduce_memory_overheads
)
1825 obstack_begin (&map_obstack
, 1000);
1826 for (p
= link_info
.input_bfds
; p
!= (bfd
*) NULL
; p
= p
->link_next
)
1827 bfd_map_over_sections (p
, init_map_userdata
, 0);
1828 bfd_link_hash_traverse (link_info
.hash
, sort_def_symbol
, 0);
1830 lang_statement_iteration
++;
1831 print_statements ();
1835 init_map_userdata (abfd
, sec
, data
)
1836 bfd
*abfd ATTRIBUTE_UNUSED
;
1838 void *data ATTRIBUTE_UNUSED
;
1840 fat_section_userdata_type
*new_data
1841 = ((fat_section_userdata_type
*) (stat_alloc
1842 (sizeof (fat_section_userdata_type
))));
1844 ASSERT (get_userdata (sec
) == NULL
);
1845 get_userdata (sec
) = new_data
;
1846 new_data
->map_symbol_def_tail
= &new_data
->map_symbol_def_head
;
1850 sort_def_symbol (hash_entry
, info
)
1851 struct bfd_link_hash_entry
*hash_entry
;
1852 void *info ATTRIBUTE_UNUSED
;
1854 if (hash_entry
->type
== bfd_link_hash_defined
1855 || hash_entry
->type
== bfd_link_hash_defweak
)
1857 struct fat_user_section_struct
*ud
;
1858 struct map_symbol_def
*def
;
1860 ud
= get_userdata (hash_entry
->u
.def
.section
);
1863 /* ??? What do we have to do to initialize this beforehand? */
1864 /* The first time we get here is bfd_abs_section... */
1865 init_map_userdata (0, hash_entry
->u
.def
.section
, 0);
1866 ud
= get_userdata (hash_entry
->u
.def
.section
);
1868 else if (!ud
->map_symbol_def_tail
)
1869 ud
->map_symbol_def_tail
= &ud
->map_symbol_def_head
;
1871 def
= obstack_alloc (&map_obstack
, sizeof *def
);
1872 def
->entry
= hash_entry
;
1873 *(ud
->map_symbol_def_tail
) = def
;
1874 ud
->map_symbol_def_tail
= &def
->next
;
1879 /* Initialize an output section. */
1882 init_os (lang_output_section_statement_type
*s
, asection
*isec
,
1885 if (s
->bfd_section
!= NULL
)
1888 if (strcmp (s
->name
, DISCARD_SECTION_NAME
) == 0)
1889 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME
);
1891 s
->bfd_section
= bfd_get_section_by_name (link_info
.output_bfd
, s
->name
);
1892 if (s
->bfd_section
== NULL
)
1893 s
->bfd_section
= bfd_make_section_with_flags (link_info
.output_bfd
,
1895 if (s
->bfd_section
== NULL
)
1897 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
1898 link_info
.output_bfd
->xvec
->name
, s
->name
);
1900 s
->bfd_section
->output_section
= s
->bfd_section
;
1901 s
->bfd_section
->output_offset
= 0;
1903 if (!link_info
.reduce_memory_overheads
)
1905 fat_section_userdata_type
*new
1906 = stat_alloc (sizeof (fat_section_userdata_type
));
1907 memset (new, 0, sizeof (fat_section_userdata_type
));
1908 get_userdata (s
->bfd_section
) = new;
1911 /* If there is a base address, make sure that any sections it might
1912 mention are initialized. */
1913 if (s
->addr_tree
!= NULL
)
1914 exp_init_os (s
->addr_tree
);
1916 if (s
->load_base
!= NULL
)
1917 exp_init_os (s
->load_base
);
1919 /* If supplied an alignment, set it. */
1920 if (s
->section_alignment
!= -1)
1921 s
->bfd_section
->alignment_power
= s
->section_alignment
;
1924 bfd_init_private_section_data (isec
->owner
, isec
,
1925 link_info
.output_bfd
, s
->bfd_section
,
1929 /* Make sure that all output sections mentioned in an expression are
1933 exp_init_os (etree_type
*exp
)
1935 switch (exp
->type
.node_class
)
1939 exp_init_os (exp
->assign
.src
);
1943 exp_init_os (exp
->binary
.lhs
);
1944 exp_init_os (exp
->binary
.rhs
);
1948 exp_init_os (exp
->trinary
.cond
);
1949 exp_init_os (exp
->trinary
.lhs
);
1950 exp_init_os (exp
->trinary
.rhs
);
1954 exp_init_os (exp
->assert_s
.child
);
1958 exp_init_os (exp
->unary
.child
);
1962 switch (exp
->type
.node_code
)
1968 lang_output_section_statement_type
*os
;
1970 os
= lang_output_section_find (exp
->name
.name
);
1971 if (os
!= NULL
&& os
->bfd_section
== NULL
)
1972 init_os (os
, NULL
, 0);
1983 section_already_linked (bfd
*abfd
, asection
*sec
, void *data
)
1985 lang_input_statement_type
*entry
= data
;
1987 /* If we are only reading symbols from this object, then we want to
1988 discard all sections. */
1989 if (entry
->just_syms_flag
)
1991 bfd_link_just_syms (abfd
, sec
, &link_info
);
1995 if (!(abfd
->flags
& DYNAMIC
))
1996 bfd_section_already_linked (abfd
, sec
, &link_info
);
1999 /* The wild routines.
2001 These expand statements like *(.text) and foo.o to a list of
2002 explicit actions, like foo.o(.text), bar.o(.text) and
2003 foo.o(.text, .data). */
2005 /* Add SECTION to the output section OUTPUT. Do this by creating a
2006 lang_input_section statement which is placed at PTR. FILE is the
2007 input file which holds SECTION. */
2010 lang_add_section (lang_statement_list_type
*ptr
,
2012 lang_output_section_statement_type
*output
)
2014 flagword flags
= section
->flags
;
2015 bfd_boolean discard
;
2017 /* Discard sections marked with SEC_EXCLUDE. */
2018 discard
= (flags
& SEC_EXCLUDE
) != 0;
2020 /* Discard input sections which are assigned to a section named
2021 DISCARD_SECTION_NAME. */
2022 if (strcmp (output
->name
, DISCARD_SECTION_NAME
) == 0)
2025 /* Discard debugging sections if we are stripping debugging
2027 if ((link_info
.strip
== strip_debugger
|| link_info
.strip
== strip_all
)
2028 && (flags
& SEC_DEBUGGING
) != 0)
2033 if (section
->output_section
== NULL
)
2035 /* This prevents future calls from assigning this section. */
2036 section
->output_section
= bfd_abs_section_ptr
;
2041 if (section
->output_section
== NULL
)
2044 lang_input_section_type
*new;
2047 flags
= section
->flags
;
2049 /* We don't copy the SEC_NEVER_LOAD flag from an input section
2050 to an output section, because we want to be able to include a
2051 SEC_NEVER_LOAD section in the middle of an otherwise loaded
2052 section (I don't know why we want to do this, but we do).
2053 build_link_order in ldwrite.c handles this case by turning
2054 the embedded SEC_NEVER_LOAD section into a fill. */
2056 flags
&= ~ SEC_NEVER_LOAD
;
2058 switch (output
->sectype
)
2060 case normal_section
:
2061 case overlay_section
:
2063 case noalloc_section
:
2064 flags
&= ~SEC_ALLOC
;
2066 case noload_section
:
2068 flags
|= SEC_NEVER_LOAD
;
2072 if (output
->bfd_section
== NULL
)
2073 init_os (output
, section
, flags
);
2075 first
= ! output
->bfd_section
->linker_has_input
;
2076 output
->bfd_section
->linker_has_input
= 1;
2078 if (!link_info
.relocatable
2079 && !stripped_excluded_sections
)
2081 asection
*s
= output
->bfd_section
->map_tail
.s
;
2082 output
->bfd_section
->map_tail
.s
= section
;
2083 section
->map_head
.s
= NULL
;
2084 section
->map_tail
.s
= s
;
2086 s
->map_head
.s
= section
;
2088 output
->bfd_section
->map_head
.s
= section
;
2091 /* Add a section reference to the list. */
2092 new = new_stat (lang_input_section
, ptr
);
2094 new->section
= section
;
2095 section
->output_section
= output
->bfd_section
;
2097 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
2098 already been processed. One reason to do this is that on pe
2099 format targets, .text$foo sections go into .text and it's odd
2100 to see .text with SEC_LINK_ONCE set. */
2102 if (! link_info
.relocatable
)
2103 flags
&= ~ (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
);
2105 /* If this is not the first input section, and the SEC_READONLY
2106 flag is not currently set, then don't set it just because the
2107 input section has it set. */
2109 if (! first
&& (output
->bfd_section
->flags
& SEC_READONLY
) == 0)
2110 flags
&= ~ SEC_READONLY
;
2112 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
2114 && ((output
->bfd_section
->flags
& (SEC_MERGE
| SEC_STRINGS
))
2115 != (flags
& (SEC_MERGE
| SEC_STRINGS
))
2116 || ((flags
& SEC_MERGE
)
2117 && output
->bfd_section
->entsize
!= section
->entsize
)))
2119 output
->bfd_section
->flags
&= ~ (SEC_MERGE
| SEC_STRINGS
);
2120 flags
&= ~ (SEC_MERGE
| SEC_STRINGS
);
2123 output
->bfd_section
->flags
|= flags
;
2125 if (flags
& SEC_MERGE
)
2126 output
->bfd_section
->entsize
= section
->entsize
;
2128 /* If SEC_READONLY is not set in the input section, then clear
2129 it from the output section. */
2130 if ((section
->flags
& SEC_READONLY
) == 0)
2131 output
->bfd_section
->flags
&= ~SEC_READONLY
;
2133 /* Copy over SEC_SMALL_DATA. */
2134 if (section
->flags
& SEC_SMALL_DATA
)
2135 output
->bfd_section
->flags
|= SEC_SMALL_DATA
;
2137 if (section
->alignment_power
> output
->bfd_section
->alignment_power
)
2138 output
->bfd_section
->alignment_power
= section
->alignment_power
;
2140 if (bfd_get_arch (section
->owner
) == bfd_arch_tic54x
2141 && (section
->flags
& SEC_TIC54X_BLOCK
) != 0)
2143 output
->bfd_section
->flags
|= SEC_TIC54X_BLOCK
;
2144 /* FIXME: This value should really be obtained from the bfd... */
2145 output
->block_value
= 128;
2150 /* Handle wildcard sorting. This returns the lang_input_section which
2151 should follow the one we are going to create for SECTION and FILE,
2152 based on the sorting requirements of WILD. It returns NULL if the
2153 new section should just go at the end of the current list. */
2155 static lang_statement_union_type
*
2156 wild_sort (lang_wild_statement_type
*wild
,
2157 struct wildcard_list
*sec
,
2158 lang_input_statement_type
*file
,
2161 const char *section_name
;
2162 lang_statement_union_type
*l
;
2164 if (!wild
->filenames_sorted
2165 && (sec
== NULL
|| sec
->spec
.sorted
== none
))
2168 section_name
= bfd_get_section_name (file
->the_bfd
, section
);
2169 for (l
= wild
->children
.head
; l
!= NULL
; l
= l
->header
.next
)
2171 lang_input_section_type
*ls
;
2173 if (l
->header
.type
!= lang_input_section_enum
)
2175 ls
= &l
->input_section
;
2177 /* Sorting by filename takes precedence over sorting by section
2180 if (wild
->filenames_sorted
)
2182 const char *fn
, *ln
;
2186 /* The PE support for the .idata section as generated by
2187 dlltool assumes that files will be sorted by the name of
2188 the archive and then the name of the file within the
2191 if (file
->the_bfd
!= NULL
2192 && bfd_my_archive (file
->the_bfd
) != NULL
)
2194 fn
= bfd_get_filename (bfd_my_archive (file
->the_bfd
));
2199 fn
= file
->filename
;
2203 if (bfd_my_archive (ls
->section
->owner
) != NULL
)
2205 ln
= bfd_get_filename (bfd_my_archive (ls
->section
->owner
));
2210 ln
= ls
->section
->owner
->filename
;
2214 i
= strcmp (fn
, ln
);
2223 fn
= file
->filename
;
2225 ln
= ls
->section
->owner
->filename
;
2227 i
= strcmp (fn
, ln
);
2235 /* Here either the files are not sorted by name, or we are
2236 looking at the sections for this file. */
2238 if (sec
!= NULL
&& sec
->spec
.sorted
!= none
)
2239 if (compare_section (sec
->spec
.sorted
, section
, ls
->section
) < 0)
2246 /* Expand a wild statement for a particular FILE. SECTION may be
2247 NULL, in which case it is a wild card. */
2250 output_section_callback (lang_wild_statement_type
*ptr
,
2251 struct wildcard_list
*sec
,
2253 lang_input_statement_type
*file
,
2256 lang_statement_union_type
*before
;
2258 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2259 if (unique_section_p (section
))
2262 before
= wild_sort (ptr
, sec
, file
, section
);
2264 /* Here BEFORE points to the lang_input_section which
2265 should follow the one we are about to add. If BEFORE
2266 is NULL, then the section should just go at the end
2267 of the current list. */
2270 lang_add_section (&ptr
->children
, section
,
2271 (lang_output_section_statement_type
*) output
);
2274 lang_statement_list_type list
;
2275 lang_statement_union_type
**pp
;
2277 lang_list_init (&list
);
2278 lang_add_section (&list
, section
,
2279 (lang_output_section_statement_type
*) output
);
2281 /* If we are discarding the section, LIST.HEAD will
2283 if (list
.head
!= NULL
)
2285 ASSERT (list
.head
->header
.next
== NULL
);
2287 for (pp
= &ptr
->children
.head
;
2289 pp
= &(*pp
)->header
.next
)
2290 ASSERT (*pp
!= NULL
);
2292 list
.head
->header
.next
= *pp
;
2298 /* Check if all sections in a wild statement for a particular FILE
2302 check_section_callback (lang_wild_statement_type
*ptr ATTRIBUTE_UNUSED
,
2303 struct wildcard_list
*sec ATTRIBUTE_UNUSED
,
2305 lang_input_statement_type
*file ATTRIBUTE_UNUSED
,
2308 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2309 if (unique_section_p (section
))
2312 if (section
->output_section
== NULL
&& (section
->flags
& SEC_READONLY
) == 0)
2313 ((lang_output_section_statement_type
*) data
)->all_input_readonly
= FALSE
;
2316 /* This is passed a file name which must have been seen already and
2317 added to the statement tree. We will see if it has been opened
2318 already and had its symbols read. If not then we'll read it. */
2320 static lang_input_statement_type
*
2321 lookup_name (const char *name
)
2323 lang_input_statement_type
*search
;
2325 for (search
= (lang_input_statement_type
*) input_file_chain
.head
;
2327 search
= (lang_input_statement_type
*) search
->next_real_file
)
2329 /* Use the local_sym_name as the name of the file that has
2330 already been loaded as filename might have been transformed
2331 via the search directory lookup mechanism. */
2332 const char *filename
= search
->local_sym_name
;
2334 if (filename
!= NULL
2335 && strcmp (filename
, name
) == 0)
2340 search
= new_afile (name
, lang_input_file_is_search_file_enum
,
2341 default_target
, FALSE
);
2343 /* If we have already added this file, or this file is not real
2344 don't add this file. */
2345 if (search
->loaded
|| !search
->real
)
2348 if (! load_symbols (search
, NULL
))
2354 /* Save LIST as a list of libraries whose symbols should not be exported. */
2359 struct excluded_lib
*next
;
2361 static struct excluded_lib
*excluded_libs
;
2364 add_excluded_libs (const char *list
)
2366 const char *p
= list
, *end
;
2370 struct excluded_lib
*entry
;
2371 end
= strpbrk (p
, ",:");
2373 end
= p
+ strlen (p
);
2374 entry
= xmalloc (sizeof (*entry
));
2375 entry
->next
= excluded_libs
;
2376 entry
->name
= xmalloc (end
- p
+ 1);
2377 memcpy (entry
->name
, p
, end
- p
);
2378 entry
->name
[end
- p
] = '\0';
2379 excluded_libs
= entry
;
2387 check_excluded_libs (bfd
*abfd
)
2389 struct excluded_lib
*lib
= excluded_libs
;
2393 int len
= strlen (lib
->name
);
2394 const char *filename
= lbasename (abfd
->filename
);
2396 if (strcmp (lib
->name
, "ALL") == 0)
2398 abfd
->no_export
= TRUE
;
2402 if (strncmp (lib
->name
, filename
, len
) == 0
2403 && (filename
[len
] == '\0'
2404 || (filename
[len
] == '.' && filename
[len
+ 1] == 'a'
2405 && filename
[len
+ 2] == '\0')))
2407 abfd
->no_export
= TRUE
;
2415 /* Get the symbols for an input file. */
2418 load_symbols (lang_input_statement_type
*entry
,
2419 lang_statement_list_type
*place
)
2426 ldfile_open_file (entry
);
2428 if (! bfd_check_format (entry
->the_bfd
, bfd_archive
)
2429 && ! bfd_check_format_matches (entry
->the_bfd
, bfd_object
, &matching
))
2432 lang_statement_list_type
*hold
;
2433 bfd_boolean bad_load
= TRUE
;
2434 bfd_boolean save_ldlang_sysrooted_script
;
2435 bfd_boolean save_as_needed
, save_add_needed
;
2437 err
= bfd_get_error ();
2439 /* See if the emulation has some special knowledge. */
2440 if (ldemul_unrecognized_file (entry
))
2443 if (err
== bfd_error_file_ambiguously_recognized
)
2447 einfo (_("%B: file not recognized: %E\n"), entry
->the_bfd
);
2448 einfo (_("%B: matching formats:"), entry
->the_bfd
);
2449 for (p
= matching
; *p
!= NULL
; p
++)
2453 else if (err
!= bfd_error_file_not_recognized
2455 einfo (_("%F%B: file not recognized: %E\n"), entry
->the_bfd
);
2459 bfd_close (entry
->the_bfd
);
2460 entry
->the_bfd
= NULL
;
2462 /* Try to interpret the file as a linker script. */
2463 ldfile_open_command_file (entry
->filename
);
2467 save_ldlang_sysrooted_script
= ldlang_sysrooted_script
;
2468 ldlang_sysrooted_script
= entry
->sysrooted
;
2469 save_as_needed
= as_needed
;
2470 as_needed
= entry
->as_needed
;
2471 save_add_needed
= add_needed
;
2472 add_needed
= entry
->add_needed
;
2474 ldfile_assumed_script
= TRUE
;
2475 parser_input
= input_script
;
2476 /* We want to use the same -Bdynamic/-Bstatic as the one for
2478 config
.dynamic_link
= entry
->dynamic
;
2480 ldfile_assumed_script
= FALSE
;
2482 ldlang_sysrooted_script
= save_ldlang_sysrooted_script
;
2483 as_needed
= save_as_needed
;
2484 add_needed
= save_add_needed
;
2490 if (ldemul_recognized_file (entry
))
2493 /* We don't call ldlang_add_file for an archive. Instead, the
2494 add_symbols entry point will call ldlang_add_file, via the
2495 add_archive_element callback, for each element of the archive
2497 switch (bfd_get_format (entry
->the_bfd
))
2503 ldlang_add_file (entry
);
2504 if (trace_files
|| trace_file_tries
)
2505 info_msg ("%I\n", entry
);
2509 check_excluded_libs (entry
->the_bfd
);
2511 if (entry
->whole_archive
)
2514 bfd_boolean loaded
= TRUE
;
2518 member
= bfd_openr_next_archived_file (entry
->the_bfd
, member
);
2523 if (! bfd_check_format (member
, bfd_object
))
2525 einfo (_("%F%B: member %B in archive is not an object\n"),
2526 entry
->the_bfd
, member
);
2530 if (! ((*link_info
.callbacks
->add_archive_element
)
2531 (&link_info
, member
, "--whole-archive")))
2534 if (! bfd_link_add_symbols (member
, &link_info
))
2536 einfo (_("%F%B: could not read symbols: %E\n"), member
);
2541 entry
->loaded
= loaded
;
2547 if (bfd_link_add_symbols (entry
->the_bfd
, &link_info
))
2548 entry
->loaded
= TRUE
;
2550 einfo (_("%F%B: could not read symbols: %E\n"), entry
->the_bfd
);
2552 return entry
->loaded
;
2555 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
2556 may be NULL, indicating that it is a wildcard. Separate
2557 lang_input_section statements are created for each part of the
2558 expansion; they are added after the wild statement S. OUTPUT is
2559 the output section. */
2562 wild (lang_wild_statement_type
*s
,
2563 const char *target ATTRIBUTE_UNUSED
,
2564 lang_output_section_statement_type
*output
)
2566 struct wildcard_list
*sec
;
2568 if (s
->handler_data
[0]
2569 && s
->handler_data
[0]->spec
.sorted
== by_name
2570 && !s
->filenames_sorted
)
2572 lang_section_bst_type
*tree
;
2574 walk_wild (s
, output_section_callback_fast
, output
);
2579 output_section_callback_tree_to_list (s
, tree
, output
);
2584 walk_wild (s
, output_section_callback
, output
);
2586 if (default_common_section
== NULL
)
2587 for (sec
= s
->section_list
; sec
!= NULL
; sec
= sec
->next
)
2588 if (sec
->spec
.name
!= NULL
&& strcmp (sec
->spec
.name
, "COMMON") == 0)
2590 /* Remember the section that common is going to in case we
2591 later get something which doesn't know where to put it. */
2592 default_common_section
= output
;
2597 /* Return TRUE iff target is the sought target. */
2600 get_target (const bfd_target
*target
, void *data
)
2602 const char *sought
= data
;
2604 return strcmp (target
->name
, sought
) == 0;
2607 /* Like strcpy() but convert to lower case as well. */
2610 stricpy (char *dest
, char *src
)
2614 while ((c
= *src
++) != 0)
2615 *dest
++ = TOLOWER (c
);
2620 /* Remove the first occurrence of needle (if any) in haystack
2624 strcut (char *haystack
, char *needle
)
2626 haystack
= strstr (haystack
, needle
);
2632 for (src
= haystack
+ strlen (needle
); *src
;)
2633 *haystack
++ = *src
++;
2639 /* Compare two target format name strings.
2640 Return a value indicating how "similar" they are. */
2643 name_compare (char *first
, char *second
)
2649 copy1
= xmalloc (strlen (first
) + 1);
2650 copy2
= xmalloc (strlen (second
) + 1);
2652 /* Convert the names to lower case. */
2653 stricpy (copy1
, first
);
2654 stricpy (copy2
, second
);
2656 /* Remove size and endian strings from the name. */
2657 strcut (copy1
, "big");
2658 strcut (copy1
, "little");
2659 strcut (copy2
, "big");
2660 strcut (copy2
, "little");
2662 /* Return a value based on how many characters match,
2663 starting from the beginning. If both strings are
2664 the same then return 10 * their length. */
2665 for (result
= 0; copy1
[result
] == copy2
[result
]; result
++)
2666 if (copy1
[result
] == 0)
2678 /* Set by closest_target_match() below. */
2679 static const bfd_target
*winner
;
2681 /* Scan all the valid bfd targets looking for one that has the endianness
2682 requirement that was specified on the command line, and is the nearest
2683 match to the original output target. */
2686 closest_target_match (const bfd_target
*target
, void *data
)
2688 const bfd_target
*original
= data
;
2690 if (command_line
.endian
== ENDIAN_BIG
2691 && target
->byteorder
!= BFD_ENDIAN_BIG
)
2694 if (command_line
.endian
== ENDIAN_LITTLE
2695 && target
->byteorder
!= BFD_ENDIAN_LITTLE
)
2698 /* Must be the same flavour. */
2699 if (target
->flavour
!= original
->flavour
)
2702 /* If we have not found a potential winner yet, then record this one. */
2709 /* Oh dear, we now have two potential candidates for a successful match.
2710 Compare their names and choose the better one. */
2711 if (name_compare (target
->name
, original
->name
)
2712 > name_compare (winner
->name
, original
->name
))
2715 /* Keep on searching until wqe have checked them all. */
2719 /* Return the BFD target format of the first input file. */
2722 get_first_input_target (void)
2724 char *target
= NULL
;
2726 LANG_FOR_EACH_INPUT_STATEMENT (s
)
2728 if (s
->header
.type
== lang_input_statement_enum
2731 ldfile_open_file (s
);
2733 if (s
->the_bfd
!= NULL
2734 && bfd_check_format (s
->the_bfd
, bfd_object
))
2736 target
= bfd_get_target (s
->the_bfd
);
2748 lang_get_output_target (void)
2752 /* Has the user told us which output format to use? */
2753 if (output_target
!= NULL
)
2754 return output_target
;
2756 /* No - has the current target been set to something other than
2758 if (current_target
!= default_target
)
2759 return current_target
;
2761 /* No - can we determine the format of the first input file? */
2762 target
= get_first_input_target ();
2766 /* Failed - use the default output target. */
2767 return default_target
;
2770 /* Open the output file. */
2773 open_output (const char *name
)
2775 output_target
= lang_get_output_target ();
2777 /* Has the user requested a particular endianness on the command
2779 if (command_line
.endian
!= ENDIAN_UNSET
)
2781 const bfd_target
*target
;
2782 enum bfd_endian desired_endian
;
2784 /* Get the chosen target. */
2785 target
= bfd_search_for_target (get_target
, (void *) output_target
);
2787 /* If the target is not supported, we cannot do anything. */
2790 if (command_line
.endian
== ENDIAN_BIG
)
2791 desired_endian
= BFD_ENDIAN_BIG
;
2793 desired_endian
= BFD_ENDIAN_LITTLE
;
2795 /* See if the target has the wrong endianness. This should
2796 not happen if the linker script has provided big and
2797 little endian alternatives, but some scrips don't do
2799 if (target
->byteorder
!= desired_endian
)
2801 /* If it does, then see if the target provides
2802 an alternative with the correct endianness. */
2803 if (target
->alternative_target
!= NULL
2804 && (target
->alternative_target
->byteorder
== desired_endian
))
2805 output_target
= target
->alternative_target
->name
;
2808 /* Try to find a target as similar as possible to
2809 the default target, but which has the desired
2810 endian characteristic. */
2811 bfd_search_for_target (closest_target_match
,
2814 /* Oh dear - we could not find any targets that
2815 satisfy our requirements. */
2817 einfo (_("%P: warning: could not find any targets"
2818 " that match endianness requirement\n"));
2820 output_target
= winner
->name
;
2826 link_info
.output_bfd
= bfd_openw (name
, output_target
);
2828 if (link_info
.output_bfd
== NULL
)
2830 if (bfd_get_error () == bfd_error_invalid_target
)
2831 einfo (_("%P%F: target %s not found\n"), output_target
);
2833 einfo (_("%P%F: cannot open output file %s: %E\n"), name
);
2836 delete_output_file_on_failure
= TRUE
;
2838 if (! bfd_set_format (link_info
.output_bfd
, bfd_object
))
2839 einfo (_("%P%F:%s: can not make object file: %E\n"), name
);
2840 if (! bfd_set_arch_mach (link_info
.output_bfd
,
2841 ldfile_output_architecture
,
2842 ldfile_output_machine
))
2843 einfo (_("%P%F:%s: can not set architecture: %E\n"), name
);
2845 link_info
.hash
= bfd_link_hash_table_create (link_info
.output_bfd
);
2846 if (link_info
.hash
== NULL
)
2847 einfo (_("%P%F: can not create hash table: %E\n"));
2849 bfd_set_gp_size (link_info
.output_bfd
, g_switch_value
);
2853 ldlang_open_output (lang_statement_union_type
*statement
)
2855 switch (statement
->header
.type
)
2857 case lang_output_statement_enum
:
2858 ASSERT (link_info
.output_bfd
== NULL
);
2859 open_output (statement
->output_statement
.name
);
2860 ldemul_set_output_arch ();
2861 if (config
.magic_demand_paged
&& !link_info
.relocatable
)
2862 link_info
.output_bfd
->flags
|= D_PAGED
;
2864 link_info
.output_bfd
->flags
&= ~D_PAGED
;
2865 if (config
.text_read_only
)
2866 link_info
.output_bfd
->flags
|= WP_TEXT
;
2868 link_info
.output_bfd
->flags
&= ~WP_TEXT
;
2869 if (link_info
.traditional_format
)
2870 link_info
.output_bfd
->flags
|= BFD_TRADITIONAL_FORMAT
;
2872 link_info
.output_bfd
->flags
&= ~BFD_TRADITIONAL_FORMAT
;
2875 case lang_target_statement_enum
:
2876 current_target
= statement
->target_statement
.target
;
2883 /* Convert between addresses in bytes and sizes in octets.
2884 For currently supported targets, octets_per_byte is always a power
2885 of two, so we can use shifts. */
2886 #define TO_ADDR(X) ((X) >> opb_shift)
2887 #define TO_SIZE(X) ((X) << opb_shift)
2889 /* Support the above. */
2890 static unsigned int opb_shift
= 0;
2895 unsigned x
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2896 ldfile_output_machine
);
2899 while ((x
& 1) == 0)
2907 /* Open all the input files. */
2910 open_input_bfds (lang_statement_union_type
*s
, bfd_boolean force
)
2912 for (; s
!= NULL
; s
= s
->header
.next
)
2914 switch (s
->header
.type
)
2916 case lang_constructors_statement_enum
:
2917 open_input_bfds (constructor_list
.head
, force
);
2919 case lang_output_section_statement_enum
:
2920 open_input_bfds (s
->output_section_statement
.children
.head
, force
);
2922 case lang_wild_statement_enum
:
2923 /* Maybe we should load the file's symbols. */
2924 if (s
->wild_statement
.filename
2925 && ! wildcardp (s
->wild_statement
.filename
))
2926 lookup_name (s
->wild_statement
.filename
);
2927 open_input_bfds (s
->wild_statement
.children
.head
, force
);
2929 case lang_group_statement_enum
:
2931 struct bfd_link_hash_entry
*undefs
;
2933 /* We must continually search the entries in the group
2934 until no new symbols are added to the list of undefined
2939 undefs
= link_info
.hash
->undefs_tail
;
2940 open_input_bfds (s
->group_statement
.children
.head
, TRUE
);
2942 while (undefs
!= link_info
.hash
->undefs_tail
);
2945 case lang_target_statement_enum
:
2946 current_target
= s
->target_statement
.target
;
2948 case lang_input_statement_enum
:
2949 if (s
->input_statement
.real
)
2951 lang_statement_list_type add
;
2953 s
->input_statement
.target
= current_target
;
2955 /* If we are being called from within a group, and this
2956 is an archive which has already been searched, then
2957 force it to be researched unless the whole archive
2958 has been loaded already. */
2960 && !s
->input_statement
.whole_archive
2961 && s
->input_statement
.loaded
2962 && bfd_check_format (s
->input_statement
.the_bfd
,
2964 s
->input_statement
.loaded
= FALSE
;
2966 lang_list_init (&add
);
2968 if (! load_symbols (&s
->input_statement
, &add
))
2969 config
.make_executable
= FALSE
;
2971 if (add
.head
!= NULL
)
2973 *add
.tail
= s
->header
.next
;
2974 s
->header
.next
= add
.head
;
2984 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
2987 lang_track_definedness (const char *name
)
2989 if (bfd_hash_lookup (&lang_definedness_table
, name
, TRUE
, FALSE
) == NULL
)
2990 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name
);
2993 /* New-function for the definedness hash table. */
2995 static struct bfd_hash_entry
*
2996 lang_definedness_newfunc (struct bfd_hash_entry
*entry
,
2997 struct bfd_hash_table
*table ATTRIBUTE_UNUSED
,
2998 const char *name ATTRIBUTE_UNUSED
)
3000 struct lang_definedness_hash_entry
*ret
3001 = (struct lang_definedness_hash_entry
*) entry
;
3004 ret
= (struct lang_definedness_hash_entry
*)
3005 bfd_hash_allocate (table
, sizeof (struct lang_definedness_hash_entry
));
3008 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name
);
3010 ret
->iteration
= -1;
3014 /* Return the iteration when the definition of NAME was last updated. A
3015 value of -1 means that the symbol is not defined in the linker script
3016 or the command line, but may be defined in the linker symbol table. */
3019 lang_symbol_definition_iteration (const char *name
)
3021 struct lang_definedness_hash_entry
*defentry
3022 = (struct lang_definedness_hash_entry
*)
3023 bfd_hash_lookup (&lang_definedness_table
, name
, FALSE
, FALSE
);
3025 /* We've already created this one on the presence of DEFINED in the
3026 script, so it can't be NULL unless something is borked elsewhere in
3028 if (defentry
== NULL
)
3031 return defentry
->iteration
;
3034 /* Update the definedness state of NAME. */
3037 lang_update_definedness (const char *name
, struct bfd_link_hash_entry
*h
)
3039 struct lang_definedness_hash_entry
*defentry
3040 = (struct lang_definedness_hash_entry
*)
3041 bfd_hash_lookup (&lang_definedness_table
, name
, FALSE
, FALSE
);
3043 /* We don't keep track of symbols not tested with DEFINED. */
3044 if (defentry
== NULL
)
3047 /* If the symbol was already defined, and not from an earlier statement
3048 iteration, don't update the definedness iteration, because that'd
3049 make the symbol seem defined in the linker script at this point, and
3050 it wasn't; it was defined in some object. If we do anyway, DEFINED
3051 would start to yield false before this point and the construct "sym =
3052 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
3054 if (h
->type
!= bfd_link_hash_undefined
3055 && h
->type
!= bfd_link_hash_common
3056 && h
->type
!= bfd_link_hash_new
3057 && defentry
->iteration
== -1)
3060 defentry
->iteration
= lang_statement_iteration
;
3063 /* Add the supplied name to the symbol table as an undefined reference.
3064 This is a two step process as the symbol table doesn't even exist at
3065 the time the ld command line is processed. First we put the name
3066 on a list, then, once the output file has been opened, transfer the
3067 name to the symbol table. */
3069 typedef struct bfd_sym_chain ldlang_undef_chain_list_type
;
3071 #define ldlang_undef_chain_list_head entry_symbol.next
3074 ldlang_add_undef (const char *const name
)
3076 ldlang_undef_chain_list_type
*new =
3077 stat_alloc (sizeof (ldlang_undef_chain_list_type
));
3079 new->next
= ldlang_undef_chain_list_head
;
3080 ldlang_undef_chain_list_head
= new;
3082 new->name
= xstrdup (name
);
3084 if (link_info
.output_bfd
!= NULL
)
3085 insert_undefined (new->name
);
3088 /* Insert NAME as undefined in the symbol table. */
3091 insert_undefined (const char *name
)
3093 struct bfd_link_hash_entry
*h
;
3095 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, FALSE
, TRUE
);
3097 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
3098 if (h
->type
== bfd_link_hash_new
)
3100 h
->type
= bfd_link_hash_undefined
;
3101 h
->u
.undef
.abfd
= NULL
;
3102 bfd_link_add_undef (link_info
.hash
, h
);
3106 /* Run through the list of undefineds created above and place them
3107 into the linker hash table as undefined symbols belonging to the
3111 lang_place_undefineds (void)
3113 ldlang_undef_chain_list_type
*ptr
;
3115 for (ptr
= ldlang_undef_chain_list_head
; ptr
!= NULL
; ptr
= ptr
->next
)
3116 insert_undefined (ptr
->name
);
3119 /* Check for all readonly or some readwrite sections. */
3122 check_input_sections
3123 (lang_statement_union_type
*s
,
3124 lang_output_section_statement_type
*output_section_statement
)
3126 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->header
.next
)
3128 switch (s
->header
.type
)
3130 case lang_wild_statement_enum
:
3131 walk_wild (&s
->wild_statement
, check_section_callback
,
3132 output_section_statement
);
3133 if (! output_section_statement
->all_input_readonly
)
3136 case lang_constructors_statement_enum
:
3137 check_input_sections (constructor_list
.head
,
3138 output_section_statement
);
3139 if (! output_section_statement
->all_input_readonly
)
3142 case lang_group_statement_enum
:
3143 check_input_sections (s
->group_statement
.children
.head
,
3144 output_section_statement
);
3145 if (! output_section_statement
->all_input_readonly
)
3154 /* Update wildcard statements if needed. */
3157 update_wild_statements (lang_statement_union_type
*s
)
3159 struct wildcard_list
*sec
;
3161 switch (sort_section
)
3171 for (; s
!= NULL
; s
= s
->header
.next
)
3173 switch (s
->header
.type
)
3178 case lang_wild_statement_enum
:
3179 sec
= s
->wild_statement
.section_list
;
3180 for (sec
= s
->wild_statement
.section_list
; sec
!= NULL
;
3183 switch (sec
->spec
.sorted
)
3186 sec
->spec
.sorted
= sort_section
;
3189 if (sort_section
== by_alignment
)
3190 sec
->spec
.sorted
= by_name_alignment
;
3193 if (sort_section
== by_name
)
3194 sec
->spec
.sorted
= by_alignment_name
;
3202 case lang_constructors_statement_enum
:
3203 update_wild_statements (constructor_list
.head
);
3206 case lang_output_section_statement_enum
:
3207 update_wild_statements
3208 (s
->output_section_statement
.children
.head
);
3211 case lang_group_statement_enum
:
3212 update_wild_statements (s
->group_statement
.children
.head
);
3220 /* Open input files and attach to output sections. */
3223 map_input_to_output_sections
3224 (lang_statement_union_type
*s
, const char *target
,
3225 lang_output_section_statement_type
*os
)
3229 for (; s
!= NULL
; s
= s
->header
.next
)
3231 switch (s
->header
.type
)
3233 case lang_wild_statement_enum
:
3234 wild (&s
->wild_statement
, target
, os
);
3236 case lang_constructors_statement_enum
:
3237 map_input_to_output_sections (constructor_list
.head
,
3241 case lang_output_section_statement_enum
:
3242 if (s
->output_section_statement
.constraint
)
3244 if (s
->output_section_statement
.constraint
!= ONLY_IF_RW
3245 && s
->output_section_statement
.constraint
!= ONLY_IF_RO
)
3247 s
->output_section_statement
.all_input_readonly
= TRUE
;
3248 check_input_sections (s
->output_section_statement
.children
.head
,
3249 &s
->output_section_statement
);
3250 if ((s
->output_section_statement
.all_input_readonly
3251 && s
->output_section_statement
.constraint
== ONLY_IF_RW
)
3252 || (!s
->output_section_statement
.all_input_readonly
3253 && s
->output_section_statement
.constraint
== ONLY_IF_RO
))
3255 s
->output_section_statement
.constraint
= -1;
3260 map_input_to_output_sections (s
->output_section_statement
.children
.head
,
3262 &s
->output_section_statement
);
3264 case lang_output_statement_enum
:
3266 case lang_target_statement_enum
:
3267 target
= s
->target_statement
.target
;
3269 case lang_group_statement_enum
:
3270 map_input_to_output_sections (s
->group_statement
.children
.head
,
3274 case lang_data_statement_enum
:
3275 /* Make sure that any sections mentioned in the expression
3277 exp_init_os (s
->data_statement
.exp
);
3278 flags
= SEC_HAS_CONTENTS
;
3279 /* The output section gets contents, and then we inspect for
3280 any flags set in the input script which override any ALLOC. */
3281 if (!(os
->flags
& SEC_NEVER_LOAD
))
3282 flags
|= SEC_ALLOC
| SEC_LOAD
;
3283 if (os
->bfd_section
== NULL
)
3284 init_os (os
, NULL
, flags
);
3286 os
->bfd_section
->flags
|= flags
;
3288 case lang_input_section_enum
:
3290 case lang_fill_statement_enum
:
3291 case lang_object_symbols_statement_enum
:
3292 case lang_reloc_statement_enum
:
3293 case lang_padding_statement_enum
:
3294 case lang_input_statement_enum
:
3295 if (os
!= NULL
&& os
->bfd_section
== NULL
)
3296 init_os (os
, NULL
, 0);
3298 case lang_assignment_statement_enum
:
3299 if (os
!= NULL
&& os
->bfd_section
== NULL
)
3300 init_os (os
, NULL
, 0);
3302 /* Make sure that any sections mentioned in the assignment
3304 exp_init_os (s
->assignment_statement
.exp
);
3306 case lang_address_statement_enum
:
3307 /* Mark the specified section with the supplied address.
3309 If this section was actually a segment marker, then the
3310 directive is ignored if the linker script explicitly
3311 processed the segment marker. Originally, the linker
3312 treated segment directives (like -Ttext on the
3313 command-line) as section directives. We honor the
3314 section directive semantics for backwards compatibilty;
3315 linker scripts that do not specifically check for
3316 SEGMENT_START automatically get the old semantics. */
3317 if (!s
->address_statement
.segment
3318 || !s
->address_statement
.segment
->used
)
3320 lang_output_section_statement_type
*aos
3321 = (lang_output_section_statement_lookup
3322 (s
->address_statement
.section_name
));
3324 if (aos
->bfd_section
== NULL
)
3325 init_os (aos
, NULL
, 0);
3326 aos
->addr_tree
= s
->address_statement
.address
;
3329 case lang_insert_statement_enum
:
3335 /* An insert statement snips out all the linker statements from the
3336 start of the list and places them after the output section
3337 statement specified by the insert. This operation is complicated
3338 by the fact that we keep a doubly linked list of output section
3339 statements as well as the singly linked list of all statements. */
3342 process_insert_statements (void)
3344 lang_statement_union_type
**s
;
3345 lang_output_section_statement_type
*first_os
= NULL
;
3346 lang_output_section_statement_type
*last_os
= NULL
;
3348 /* "start of list" is actually the statement immediately after
3349 the special abs_section output statement, so that it isn't
3351 s
= &lang_output_section_statement
.head
;
3352 while (*(s
= &(*s
)->header
.next
) != NULL
)
3354 if ((*s
)->header
.type
== lang_output_section_statement_enum
)
3356 /* Keep pointers to the first and last output section
3357 statement in the sequence we may be about to move. */
3358 last_os
= &(*s
)->output_section_statement
;
3359 if (first_os
== NULL
)
3362 else if ((*s
)->header
.type
== lang_insert_statement_enum
)
3364 lang_insert_statement_type
*i
= &(*s
)->insert_statement
;
3365 lang_output_section_statement_type
*where
;
3366 lang_output_section_statement_type
*os
;
3367 lang_statement_union_type
**ptr
;
3368 lang_statement_union_type
*first
;
3370 where
= lang_output_section_find (i
->where
);
3371 if (where
!= NULL
&& i
->is_before
)
3374 where
= where
->prev
;
3375 while (where
!= NULL
&& where
->constraint
== -1);
3379 einfo (_("%X%P: %s not found for insert\n"), i
->where
);
3382 /* You can't insert into the list you are moving. */
3383 for (os
= first_os
; os
!= NULL
; os
= os
->next
)
3384 if (os
== where
|| os
== last_os
)
3388 einfo (_("%X%P: %s not found for insert\n"), i
->where
);
3392 /* Deal with reordering the output section statement list. */
3393 if (last_os
!= NULL
)
3395 asection
*first_sec
, *last_sec
;
3396 struct lang_output_section_statement_struct
**next
;
3398 /* Snip out the output sections we are moving. */
3399 first_os
->prev
->next
= last_os
->next
;
3400 if (last_os
->next
== NULL
)
3402 next
= &first_os
->prev
->next
;
3403 lang_output_section_statement
.tail
3404 = (lang_statement_union_type
**) next
;
3407 last_os
->next
->prev
= first_os
->prev
;
3408 /* Add them in at the new position. */
3409 last_os
->next
= where
->next
;
3410 if (where
->next
== NULL
)
3412 next
= &last_os
->next
;
3413 lang_output_section_statement
.tail
3414 = (lang_statement_union_type
**) next
;
3417 where
->next
->prev
= last_os
;
3418 first_os
->prev
= where
;
3419 where
->next
= first_os
;
3421 /* Move the bfd sections in the same way. */
3424 for (os
= first_os
; os
!= NULL
; os
= os
->next
)
3426 if (os
->bfd_section
!= NULL
3427 && os
->bfd_section
->owner
!= NULL
)
3429 last_sec
= os
->bfd_section
;
3430 if (first_sec
== NULL
)
3431 first_sec
= last_sec
;
3436 if (last_sec
!= NULL
)
3438 asection
*sec
= where
->bfd_section
;
3440 sec
= output_prev_sec_find (where
);
3442 /* The place we want to insert must come after the
3443 sections we are moving. So if we find no
3444 section or if the section is the same as our
3445 last section, then no move is needed. */
3446 if (sec
!= NULL
&& sec
!= last_sec
)
3448 /* Trim them off. */
3449 if (first_sec
->prev
!= NULL
)
3450 first_sec
->prev
->next
= last_sec
->next
;
3452 link_info
.output_bfd
->sections
= last_sec
->next
;
3453 if (last_sec
->next
!= NULL
)
3454 last_sec
->next
->prev
= first_sec
->prev
;
3456 link_info
.output_bfd
->section_last
= first_sec
->prev
;
3458 last_sec
->next
= sec
->next
;
3459 if (sec
->next
!= NULL
)
3460 sec
->next
->prev
= last_sec
;
3462 link_info
.output_bfd
->section_last
= last_sec
;
3463 first_sec
->prev
= sec
;
3464 sec
->next
= first_sec
;
3472 ptr
= insert_os_after (where
);
3473 /* Snip everything after the abs_section output statement we
3474 know is at the start of the list, up to and including
3475 the insert statement we are currently processing. */
3476 first
= lang_output_section_statement
.head
->header
.next
;
3477 lang_output_section_statement
.head
->header
.next
= (*s
)->header
.next
;
3478 /* Add them back where they belong. */
3481 statement_list
.tail
= s
;
3483 s
= &lang_output_section_statement
.head
;
3488 /* An output section might have been removed after its statement was
3489 added. For example, ldemul_before_allocation can remove dynamic
3490 sections if they turn out to be not needed. Clean them up here. */
3493 strip_excluded_output_sections (void)
3495 lang_output_section_statement_type
*os
;
3497 /* Run lang_size_sections (if not already done). */
3498 if (expld
.phase
!= lang_mark_phase_enum
)
3500 expld
.phase
= lang_mark_phase_enum
;
3501 expld
.dataseg
.phase
= exp_dataseg_none
;
3502 one_lang_size_sections_pass (NULL
, FALSE
);
3503 lang_reset_memory_regions ();
3506 for (os
= &lang_output_section_statement
.head
->output_section_statement
;
3510 asection
*output_section
;
3511 bfd_boolean exclude
;
3513 if (os
->constraint
== -1)
3516 output_section
= os
->bfd_section
;
3517 if (output_section
== NULL
)
3520 exclude
= (output_section
->rawsize
== 0
3521 && (output_section
->flags
& SEC_KEEP
) == 0
3522 && !bfd_section_removed_from_list (link_info
.output_bfd
,
3525 /* Some sections have not yet been sized, notably .gnu.version,
3526 .dynsym, .dynstr and .hash. These all have SEC_LINKER_CREATED
3527 input sections, so don't drop output sections that have such
3528 input sections unless they are also marked SEC_EXCLUDE. */
3529 if (exclude
&& output_section
->map_head
.s
!= NULL
)
3533 for (s
= output_section
->map_head
.s
; s
!= NULL
; s
= s
->map_head
.s
)
3534 if ((s
->flags
& SEC_LINKER_CREATED
) != 0
3535 && (s
->flags
& SEC_EXCLUDE
) == 0)
3542 /* TODO: Don't just junk map_head.s, turn them into link_orders. */
3543 output_section
->map_head
.link_order
= NULL
;
3544 output_section
->map_tail
.link_order
= NULL
;
3548 /* We don't set bfd_section to NULL since bfd_section of the
3549 removed output section statement may still be used. */
3550 if (!os
->section_relative_symbol
3551 && !os
->update_dot_tree
)
3553 output_section
->flags
|= SEC_EXCLUDE
;
3554 bfd_section_list_remove (link_info
.output_bfd
, output_section
);
3555 link_info
.output_bfd
->section_count
--;
3559 /* Stop future calls to lang_add_section from messing with map_head
3560 and map_tail link_order fields. */
3561 stripped_excluded_sections
= TRUE
;
3565 print_output_section_statement
3566 (lang_output_section_statement_type
*output_section_statement
)
3568 asection
*section
= output_section_statement
->bfd_section
;
3571 if (output_section_statement
!= abs_output_section
)
3573 minfo ("\n%s", output_section_statement
->name
);
3575 if (section
!= NULL
)
3577 print_dot
= section
->vma
;
3579 len
= strlen (output_section_statement
->name
);
3580 if (len
>= SECTION_NAME_MAP_LENGTH
- 1)
3585 while (len
< SECTION_NAME_MAP_LENGTH
)
3591 minfo ("0x%V %W", section
->vma
, section
->size
);
3593 if (section
->vma
!= section
->lma
)
3594 minfo (_(" load address 0x%V"), section
->lma
);
3600 print_statement_list (output_section_statement
->children
.head
,
3601 output_section_statement
);
3604 /* Scan for the use of the destination in the right hand side
3605 of an expression. In such cases we will not compute the
3606 correct expression, since the value of DST that is used on
3607 the right hand side will be its final value, not its value
3608 just before this expression is evaluated. */
3611 scan_for_self_assignment (const char * dst
, etree_type
* rhs
)
3613 if (rhs
== NULL
|| dst
== NULL
)
3616 switch (rhs
->type
.node_class
)
3619 return scan_for_self_assignment (dst
, rhs
->binary
.lhs
)
3620 || scan_for_self_assignment (dst
, rhs
->binary
.rhs
);
3623 return scan_for_self_assignment (dst
, rhs
->trinary
.lhs
)
3624 || scan_for_self_assignment (dst
, rhs
->trinary
.rhs
);
3627 case etree_provided
:
3629 if (strcmp (dst
, rhs
->assign
.dst
) == 0)
3631 return scan_for_self_assignment (dst
, rhs
->assign
.src
);
3634 return scan_for_self_assignment (dst
, rhs
->unary
.child
);
3638 return strcmp (dst
, rhs
->value
.str
) == 0;
3643 return strcmp (dst
, rhs
->name
.name
) == 0;
3655 print_assignment (lang_assignment_statement_type
*assignment
,
3656 lang_output_section_statement_type
*output_section
)
3660 bfd_boolean computation_is_valid
= TRUE
;
3663 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
3666 if (assignment
->exp
->type
.node_class
== etree_assert
)
3669 tree
= assignment
->exp
->assert_s
.child
;
3670 computation_is_valid
= TRUE
;
3674 const char *dst
= assignment
->exp
->assign
.dst
;
3676 is_dot
= (dst
[0] == '.' && dst
[1] == 0);
3677 tree
= assignment
->exp
->assign
.src
;
3678 computation_is_valid
= is_dot
|| (scan_for_self_assignment (dst
, tree
) == FALSE
);
3681 exp_fold_tree (tree
, output_section
->bfd_section
, &print_dot
);
3682 if (expld
.result
.valid_p
)
3686 if (computation_is_valid
)
3688 value
= expld
.result
.value
;
3690 if (expld
.result
.section
)
3691 value
+= expld
.result
.section
->vma
;
3693 minfo ("0x%V", value
);
3699 struct bfd_link_hash_entry
*h
;
3701 h
= bfd_link_hash_lookup (link_info
.hash
, assignment
->exp
->assign
.dst
,
3702 FALSE
, FALSE
, TRUE
);
3705 value
= h
->u
.def
.value
;
3707 if (expld
.result
.section
)
3708 value
+= expld
.result
.section
->vma
;
3710 minfo ("[0x%V]", value
);
3713 minfo ("[unresolved]");
3725 exp_print_tree (assignment
->exp
);
3730 print_input_statement (lang_input_statement_type
*statm
)
3732 if (statm
->filename
!= NULL
)
3734 fprintf (config
.map_file
, "LOAD %s\n", statm
->filename
);
3738 /* Print all symbols defined in a particular section. This is called
3739 via bfd_link_hash_traverse, or by print_all_symbols. */
3742 print_one_symbol (struct bfd_link_hash_entry
*hash_entry
, void *ptr
)
3744 asection
*sec
= ptr
;
3746 if ((hash_entry
->type
== bfd_link_hash_defined
3747 || hash_entry
->type
== bfd_link_hash_defweak
)
3748 && sec
== hash_entry
->u
.def
.section
)
3752 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
3755 (hash_entry
->u
.def
.value
3756 + hash_entry
->u
.def
.section
->output_offset
3757 + hash_entry
->u
.def
.section
->output_section
->vma
));
3759 minfo (" %T\n", hash_entry
->root
.string
);
3766 print_all_symbols (asection
*sec
)
3768 struct fat_user_section_struct
*ud
= get_userdata (sec
);
3769 struct map_symbol_def
*def
;
3774 *ud
->map_symbol_def_tail
= 0;
3775 for (def
= ud
->map_symbol_def_head
; def
; def
= def
->next
)
3776 print_one_symbol (def
->entry
, sec
);
3779 /* Print information about an input section to the map file. */
3782 print_input_section (asection
*i
)
3784 bfd_size_type size
= i
->size
;
3791 minfo ("%s", i
->name
);
3793 len
= 1 + strlen (i
->name
);
3794 if (len
>= SECTION_NAME_MAP_LENGTH
- 1)
3799 while (len
< SECTION_NAME_MAP_LENGTH
)
3805 if (i
->output_section
!= NULL
3806 && i
->output_section
->owner
== link_info
.output_bfd
)
3807 addr
= i
->output_section
->vma
+ i
->output_offset
;
3814 minfo ("0x%V %W %B\n", addr
, TO_ADDR (size
), i
->owner
);
3816 if (size
!= i
->rawsize
&& i
->rawsize
!= 0)
3818 len
= SECTION_NAME_MAP_LENGTH
+ 3;
3830 minfo (_("%W (size before relaxing)\n"), i
->rawsize
);
3833 if (i
->output_section
!= NULL
3834 && i
->output_section
->owner
== link_info
.output_bfd
)
3836 if (link_info
.reduce_memory_overheads
)
3837 bfd_link_hash_traverse (link_info
.hash
, print_one_symbol
, i
);
3839 print_all_symbols (i
);
3841 print_dot
= addr
+ TO_ADDR (size
);
3846 print_fill_statement (lang_fill_statement_type
*fill
)
3850 fputs (" FILL mask 0x", config
.map_file
);
3851 for (p
= fill
->fill
->data
, size
= fill
->fill
->size
; size
!= 0; p
++, size
--)
3852 fprintf (config
.map_file
, "%02x", *p
);
3853 fputs ("\n", config
.map_file
);
3857 print_data_statement (lang_data_statement_type
*data
)
3865 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
3868 addr
= data
->output_offset
;
3869 if (data
->output_section
!= NULL
)
3870 addr
+= data
->output_section
->vma
;
3898 minfo ("0x%V %W %s 0x%v", addr
, size
, name
, data
->value
);
3900 if (data
->exp
->type
.node_class
!= etree_value
)
3903 exp_print_tree (data
->exp
);
3908 print_dot
= addr
+ TO_ADDR (size
);
3911 /* Print an address statement. These are generated by options like
3915 print_address_statement (lang_address_statement_type
*address
)
3917 minfo (_("Address of section %s set to "), address
->section_name
);
3918 exp_print_tree (address
->address
);
3922 /* Print a reloc statement. */
3925 print_reloc_statement (lang_reloc_statement_type
*reloc
)
3932 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
3935 addr
= reloc
->output_offset
;
3936 if (reloc
->output_section
!= NULL
)
3937 addr
+= reloc
->output_section
->vma
;
3939 size
= bfd_get_reloc_size (reloc
->howto
);
3941 minfo ("0x%V %W RELOC %s ", addr
, size
, reloc
->howto
->name
);
3943 if (reloc
->name
!= NULL
)
3944 minfo ("%s+", reloc
->name
);
3946 minfo ("%s+", reloc
->section
->name
);
3948 exp_print_tree (reloc
->addend_exp
);
3952 print_dot
= addr
+ TO_ADDR (size
);
3956 print_padding_statement (lang_padding_statement_type
*s
)
3964 len
= sizeof " *fill*" - 1;
3965 while (len
< SECTION_NAME_MAP_LENGTH
)
3971 addr
= s
->output_offset
;
3972 if (s
->output_section
!= NULL
)
3973 addr
+= s
->output_section
->vma
;
3974 minfo ("0x%V %W ", addr
, (bfd_vma
) s
->size
);
3976 if (s
->fill
->size
!= 0)
3980 for (p
= s
->fill
->data
, size
= s
->fill
->size
; size
!= 0; p
++, size
--)
3981 fprintf (config
.map_file
, "%02x", *p
);
3986 print_dot
= addr
+ TO_ADDR (s
->size
);
3990 print_wild_statement (lang_wild_statement_type
*w
,
3991 lang_output_section_statement_type
*os
)
3993 struct wildcard_list
*sec
;
3997 if (w
->filenames_sorted
)
3999 if (w
->filename
!= NULL
)
4000 minfo ("%s", w
->filename
);
4003 if (w
->filenames_sorted
)
4007 for (sec
= w
->section_list
; sec
; sec
= sec
->next
)
4009 if (sec
->spec
.sorted
)
4011 if (sec
->spec
.exclude_name_list
!= NULL
)
4014 minfo ("EXCLUDE_FILE(%s", sec
->spec
.exclude_name_list
->name
);
4015 for (tmp
= sec
->spec
.exclude_name_list
->next
; tmp
; tmp
= tmp
->next
)
4016 minfo (" %s", tmp
->name
);
4019 if (sec
->spec
.name
!= NULL
)
4020 minfo ("%s", sec
->spec
.name
);
4023 if (sec
->spec
.sorted
)
4032 print_statement_list (w
->children
.head
, os
);
4035 /* Print a group statement. */
4038 print_group (lang_group_statement_type
*s
,
4039 lang_output_section_statement_type
*os
)
4041 fprintf (config
.map_file
, "START GROUP\n");
4042 print_statement_list (s
->children
.head
, os
);
4043 fprintf (config
.map_file
, "END GROUP\n");
4046 /* Print the list of statements in S.
4047 This can be called for any statement type. */
4050 print_statement_list (lang_statement_union_type
*s
,
4051 lang_output_section_statement_type
*os
)
4055 print_statement (s
, os
);
4060 /* Print the first statement in statement list S.
4061 This can be called for any statement type. */
4064 print_statement (lang_statement_union_type
*s
,
4065 lang_output_section_statement_type
*os
)
4067 switch (s
->header
.type
)
4070 fprintf (config
.map_file
, _("Fail with %d\n"), s
->header
.type
);
4073 case lang_constructors_statement_enum
:
4074 if (constructor_list
.head
!= NULL
)
4076 if (constructors_sorted
)
4077 minfo (" SORT (CONSTRUCTORS)\n");
4079 minfo (" CONSTRUCTORS\n");
4080 print_statement_list (constructor_list
.head
, os
);
4083 case lang_wild_statement_enum
:
4084 print_wild_statement (&s
->wild_statement
, os
);
4086 case lang_address_statement_enum
:
4087 print_address_statement (&s
->address_statement
);
4089 case lang_object_symbols_statement_enum
:
4090 minfo (" CREATE_OBJECT_SYMBOLS\n");
4092 case lang_fill_statement_enum
:
4093 print_fill_statement (&s
->fill_statement
);
4095 case lang_data_statement_enum
:
4096 print_data_statement (&s
->data_statement
);
4098 case lang_reloc_statement_enum
:
4099 print_reloc_statement (&s
->reloc_statement
);
4101 case lang_input_section_enum
:
4102 print_input_section (s
->input_section
.section
);
4104 case lang_padding_statement_enum
:
4105 print_padding_statement (&s
->padding_statement
);
4107 case lang_output_section_statement_enum
:
4108 print_output_section_statement (&s
->output_section_statement
);
4110 case lang_assignment_statement_enum
:
4111 print_assignment (&s
->assignment_statement
, os
);
4113 case lang_target_statement_enum
:
4114 fprintf (config
.map_file
, "TARGET(%s)\n", s
->target_statement
.target
);
4116 case lang_output_statement_enum
:
4117 minfo ("OUTPUT(%s", s
->output_statement
.name
);
4118 if (output_target
!= NULL
)
4119 minfo (" %s", output_target
);
4122 case lang_input_statement_enum
:
4123 print_input_statement (&s
->input_statement
);
4125 case lang_group_statement_enum
:
4126 print_group (&s
->group_statement
, os
);
4128 case lang_insert_statement_enum
:
4129 minfo ("INSERT %s %s\n",
4130 s
->insert_statement
.is_before
? "BEFORE" : "AFTER",
4131 s
->insert_statement
.where
);
4137 print_statements (void)
4139 print_statement_list (statement_list
.head
, abs_output_section
);
4142 /* Print the first N statements in statement list S to STDERR.
4143 If N == 0, nothing is printed.
4144 If N < 0, the entire list is printed.
4145 Intended to be called from GDB. */
4148 dprint_statement (lang_statement_union_type
*s
, int n
)
4150 FILE *map_save
= config
.map_file
;
4152 config
.map_file
= stderr
;
4155 print_statement_list (s
, abs_output_section
);
4158 while (s
&& --n
>= 0)
4160 print_statement (s
, abs_output_section
);
4165 config
.map_file
= map_save
;
4169 insert_pad (lang_statement_union_type
**ptr
,
4171 unsigned int alignment_needed
,
4172 asection
*output_section
,
4175 static fill_type zero_fill
= { 1, { 0 } };
4176 lang_statement_union_type
*pad
= NULL
;
4178 if (ptr
!= &statement_list
.head
)
4179 pad
= ((lang_statement_union_type
*)
4180 ((char *) ptr
- offsetof (lang_statement_union_type
, header
.next
)));
4182 && pad
->header
.type
== lang_padding_statement_enum
4183 && pad
->padding_statement
.output_section
== output_section
)
4185 /* Use the existing pad statement. */
4187 else if ((pad
= *ptr
) != NULL
4188 && pad
->header
.type
== lang_padding_statement_enum
4189 && pad
->padding_statement
.output_section
== output_section
)
4191 /* Use the existing pad statement. */
4195 /* Make a new padding statement, linked into existing chain. */
4196 pad
= stat_alloc (sizeof (lang_padding_statement_type
));
4197 pad
->header
.next
= *ptr
;
4199 pad
->header
.type
= lang_padding_statement_enum
;
4200 pad
->padding_statement
.output_section
= output_section
;
4203 pad
->padding_statement
.fill
= fill
;
4205 pad
->padding_statement
.output_offset
= dot
- output_section
->vma
;
4206 pad
->padding_statement
.size
= alignment_needed
;
4207 output_section
->size
+= alignment_needed
;
4210 /* Work out how much this section will move the dot point. */
4214 (lang_statement_union_type
**this_ptr
,
4215 lang_output_section_statement_type
*output_section_statement
,
4219 lang_input_section_type
*is
= &((*this_ptr
)->input_section
);
4220 asection
*i
= is
->section
;
4222 if (!((lang_input_statement_type
*) i
->owner
->usrdata
)->just_syms_flag
4223 && (i
->flags
& SEC_EXCLUDE
) == 0)
4225 unsigned int alignment_needed
;
4228 /* Align this section first to the input sections requirement,
4229 then to the output section's requirement. If this alignment
4230 is greater than any seen before, then record it too. Perform
4231 the alignment by inserting a magic 'padding' statement. */
4233 if (output_section_statement
->subsection_alignment
!= -1)
4234 i
->alignment_power
= output_section_statement
->subsection_alignment
;
4236 o
= output_section_statement
->bfd_section
;
4237 if (o
->alignment_power
< i
->alignment_power
)
4238 o
->alignment_power
= i
->alignment_power
;
4240 alignment_needed
= align_power (dot
, i
->alignment_power
) - dot
;
4242 if (alignment_needed
!= 0)
4244 insert_pad (this_ptr
, fill
, TO_SIZE (alignment_needed
), o
, dot
);
4245 dot
+= alignment_needed
;
4248 /* Remember where in the output section this input section goes. */
4250 i
->output_offset
= dot
- o
->vma
;
4252 /* Mark how big the output section must be to contain this now. */
4253 dot
+= TO_ADDR (i
->size
);
4254 o
->size
= TO_SIZE (dot
- o
->vma
);
4258 i
->output_offset
= i
->vma
- output_section_statement
->bfd_section
->vma
;
4265 sort_sections_by_lma (const void *arg1
, const void *arg2
)
4267 const asection
*sec1
= *(const asection
**) arg1
;
4268 const asection
*sec2
= *(const asection
**) arg2
;
4270 if (bfd_section_lma (sec1
->owner
, sec1
)
4271 < bfd_section_lma (sec2
->owner
, sec2
))
4273 else if (bfd_section_lma (sec1
->owner
, sec1
)
4274 > bfd_section_lma (sec2
->owner
, sec2
))
4276 else if (sec1
->id
< sec2
->id
)
4278 else if (sec1
->id
> sec2
->id
)
4284 #define IGNORE_SECTION(s) \
4285 ((s->flags & SEC_NEVER_LOAD) != 0 \
4286 || (s->flags & SEC_ALLOC) == 0 \
4287 || ((s->flags & SEC_THREAD_LOCAL) != 0 \
4288 && (s->flags & SEC_LOAD) == 0))
4290 /* Check to see if any allocated sections overlap with other allocated
4291 sections. This can happen if a linker script specifies the output
4292 section addresses of the two sections. Also check whether any memory
4293 region has overflowed. */
4296 lang_check_section_addresses (void)
4299 asection
**sections
, **spp
;
4306 lang_memory_region_type
*m
;
4308 if (bfd_count_sections (link_info
.output_bfd
) <= 1)
4311 amt
= bfd_count_sections (link_info
.output_bfd
) * sizeof (asection
*);
4312 sections
= xmalloc (amt
);
4314 /* Scan all sections in the output list. */
4316 for (s
= link_info
.output_bfd
->sections
; s
!= NULL
; s
= s
->next
)
4318 /* Only consider loadable sections with real contents. */
4319 if (IGNORE_SECTION (s
) || s
->size
== 0)
4322 sections
[count
] = s
;
4329 qsort (sections
, (size_t) count
, sizeof (asection
*),
4330 sort_sections_by_lma
);
4334 s_start
= bfd_section_lma (link_info
.output_bfd
, s
);
4335 s_end
= s_start
+ TO_ADDR (s
->size
) - 1;
4336 for (count
--; count
; count
--)
4338 /* We must check the sections' LMA addresses not their VMA
4339 addresses because overlay sections can have overlapping VMAs
4340 but they must have distinct LMAs. */
4345 s_start
= bfd_section_lma (link_info
.output_bfd
, s
);
4346 s_end
= s_start
+ TO_ADDR (s
->size
) - 1;
4348 /* Look for an overlap. */
4349 if (s_end
>= os_start
&& s_start
<= os_end
)
4350 einfo (_("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
4351 s
->name
, s_start
, s_end
, os
->name
, os_start
, os_end
);
4356 /* If any memory region has overflowed, report by how much.
4357 We do not issue this diagnostic for regions that had sections
4358 explicitly placed outside their bounds; os_region_check's
4359 diagnostics are adequate for that case.
4361 FIXME: It is conceivable that m->current - (m->origin + m->length)
4362 might overflow a 32-bit integer. There is, alas, no way to print
4363 a bfd_vma quantity in decimal. */
4364 for (m
= lang_memory_region_list
; m
; m
= m
->next
)
4365 if (m
->had_full_message
)
4366 einfo (_("%X%P: region %s overflowed by %ld bytes\n"),
4367 m
->name
, (long)(m
->current
- (m
->origin
+ m
->length
)));
4371 /* Make sure the new address is within the region. We explicitly permit the
4372 current address to be at the exact end of the region when the address is
4373 non-zero, in case the region is at the end of addressable memory and the
4374 calculation wraps around. */
4377 os_region_check (lang_output_section_statement_type
*os
,
4378 lang_memory_region_type
*region
,
4382 if ((region
->current
< region
->origin
4383 || (region
->current
- region
->origin
> region
->length
))
4384 && ((region
->current
!= region
->origin
+ region
->length
)
4389 einfo (_("%X%P: address 0x%v of %B section %s"
4390 " is not within region %s\n"),
4392 os
->bfd_section
->owner
,
4393 os
->bfd_section
->name
,
4396 else if (!region
->had_full_message
)
4398 region
->had_full_message
= TRUE
;
4400 einfo (_("%X%P: %B section %s will not fit in region %s\n"),
4401 os
->bfd_section
->owner
,
4402 os
->bfd_section
->name
,
4408 /* Set the sizes for all the output sections. */
4411 lang_size_sections_1
4412 (lang_statement_union_type
*s
,
4413 lang_output_section_statement_type
*output_section_statement
,
4414 lang_statement_union_type
**prev
,
4418 bfd_boolean check_regions
)
4420 /* Size up the sections from their constituent parts. */
4421 for (; s
!= NULL
; s
= s
->header
.next
)
4423 switch (s
->header
.type
)
4425 case lang_output_section_statement_enum
:
4427 bfd_vma newdot
, after
;
4428 lang_output_section_statement_type
*os
;
4429 lang_memory_region_type
*r
;
4431 os
= &s
->output_section_statement
;
4432 if (os
->addr_tree
!= NULL
)
4434 os
->processed_vma
= FALSE
;
4435 exp_fold_tree (os
->addr_tree
, bfd_abs_section_ptr
, &dot
);
4437 if (expld
.result
.valid_p
)
4438 dot
= expld
.result
.value
+ expld
.result
.section
->vma
;
4439 else if (expld
.phase
!= lang_mark_phase_enum
)
4440 einfo (_("%F%S: non constant or forward reference"
4441 " address expression for section %s\n"),
4445 if (os
->bfd_section
== NULL
)
4446 /* This section was removed or never actually created. */
4449 /* If this is a COFF shared library section, use the size and
4450 address from the input section. FIXME: This is COFF
4451 specific; it would be cleaner if there were some other way
4452 to do this, but nothing simple comes to mind. */
4453 if (((bfd_get_flavour (link_info
.output_bfd
)
4454 == bfd_target_ecoff_flavour
)
4455 || (bfd_get_flavour (link_info
.output_bfd
)
4456 == bfd_target_coff_flavour
))
4457 && (os
->bfd_section
->flags
& SEC_COFF_SHARED_LIBRARY
) != 0)
4461 if (os
->children
.head
== NULL
4462 || os
->children
.head
->header
.next
!= NULL
4463 || (os
->children
.head
->header
.type
4464 != lang_input_section_enum
))
4465 einfo (_("%P%X: Internal error on COFF shared library"
4466 " section %s\n"), os
->name
);
4468 input
= os
->children
.head
->input_section
.section
;
4469 bfd_set_section_vma (os
->bfd_section
->owner
,
4471 bfd_section_vma (input
->owner
, input
));
4472 os
->bfd_section
->size
= input
->size
;
4477 if (bfd_is_abs_section (os
->bfd_section
))
4479 /* No matter what happens, an abs section starts at zero. */
4480 ASSERT (os
->bfd_section
->vma
== 0);
4486 if (os
->addr_tree
== NULL
)
4488 /* No address specified for this section, get one
4489 from the region specification. */
4490 if (os
->region
== NULL
4491 || ((os
->bfd_section
->flags
& (SEC_ALLOC
| SEC_LOAD
))
4492 && os
->region
->name
[0] == '*'
4493 && strcmp (os
->region
->name
,
4494 DEFAULT_MEMORY_REGION
) == 0))
4496 os
->region
= lang_memory_default (os
->bfd_section
);
4499 /* If a loadable section is using the default memory
4500 region, and some non default memory regions were
4501 defined, issue an error message. */
4503 && !IGNORE_SECTION (os
->bfd_section
)
4504 && ! link_info
.relocatable
4506 && strcmp (os
->region
->name
,
4507 DEFAULT_MEMORY_REGION
) == 0
4508 && lang_memory_region_list
!= NULL
4509 && (strcmp (lang_memory_region_list
->name
,
4510 DEFAULT_MEMORY_REGION
) != 0
4511 || lang_memory_region_list
->next
!= NULL
)
4512 && expld
.phase
!= lang_mark_phase_enum
)
4514 /* By default this is an error rather than just a
4515 warning because if we allocate the section to the
4516 default memory region we can end up creating an
4517 excessively large binary, or even seg faulting when
4518 attempting to perform a negative seek. See
4519 sources.redhat.com/ml/binutils/2003-04/msg00423.html
4520 for an example of this. This behaviour can be
4521 overridden by the using the --no-check-sections
4523 if (command_line
.check_section_addresses
)
4524 einfo (_("%P%F: error: no memory region specified"
4525 " for loadable section `%s'\n"),
4526 bfd_get_section_name (link_info
.output_bfd
,
4529 einfo (_("%P: warning: no memory region specified"
4530 " for loadable section `%s'\n"),
4531 bfd_get_section_name (link_info
.output_bfd
,
4535 newdot
= os
->region
->current
;
4536 align
= os
->bfd_section
->alignment_power
;
4539 align
= os
->section_alignment
;
4541 /* Align to what the section needs. */
4544 bfd_vma savedot
= newdot
;
4545 newdot
= align_power (newdot
, align
);
4547 if (newdot
!= savedot
4548 && (config
.warn_section_align
4549 || os
->addr_tree
!= NULL
)
4550 && expld
.phase
!= lang_mark_phase_enum
)
4551 einfo (_("%P: warning: changing start of section"
4552 " %s by %lu bytes\n"),
4553 os
->name
, (unsigned long) (newdot
- savedot
));
4556 bfd_set_section_vma (0, os
->bfd_section
, newdot
);
4558 os
->bfd_section
->output_offset
= 0;
4561 lang_size_sections_1 (os
->children
.head
, os
, &os
->children
.head
,
4562 os
->fill
, newdot
, relax
, check_regions
);
4564 os
->processed_vma
= TRUE
;
4566 if (bfd_is_abs_section (os
->bfd_section
) || os
->ignored
)
4567 /* Except for some special linker created sections,
4568 no output section should change from zero size
4569 after strip_excluded_output_sections. A non-zero
4570 size on an ignored section indicates that some
4571 input section was not sized early enough. */
4572 ASSERT (os
->bfd_section
->size
== 0);
4575 dot
= os
->bfd_section
->vma
;
4577 /* Put the section within the requested block size, or
4578 align at the block boundary. */
4580 + TO_ADDR (os
->bfd_section
->size
)
4581 + os
->block_value
- 1)
4582 & - (bfd_vma
) os
->block_value
);
4584 os
->bfd_section
->size
= TO_SIZE (after
- os
->bfd_section
->vma
);
4587 /* Set section lma. */
4590 r
= lang_memory_region_lookup (DEFAULT_MEMORY_REGION
, FALSE
);
4594 bfd_vma lma
= exp_get_abs_int (os
->load_base
, 0, "load base");
4595 os
->bfd_section
->lma
= lma
;
4597 else if (os
->lma_region
!= NULL
)
4599 bfd_vma lma
= os
->lma_region
->current
;
4601 if (os
->section_alignment
!= -1)
4602 lma
= align_power (lma
, os
->section_alignment
);
4603 os
->bfd_section
->lma
= lma
;
4605 else if (r
->last_os
!= NULL
4606 && (os
->bfd_section
->flags
& SEC_ALLOC
) != 0)
4611 last
= r
->last_os
->output_section_statement
.bfd_section
;
4613 /* A backwards move of dot should be accompanied by
4614 an explicit assignment to the section LMA (ie.
4615 os->load_base set) because backwards moves can
4616 create overlapping LMAs. */
4618 && os
->bfd_section
->size
!= 0
4619 && dot
+ os
->bfd_section
->size
<= last
->vma
)
4621 /* If dot moved backwards then leave lma equal to
4622 vma. This is the old default lma, which might
4623 just happen to work when the backwards move is
4624 sufficiently large. Nag if this changes anything,
4625 so people can fix their linker scripts. */
4627 if (last
->vma
!= last
->lma
)
4628 einfo (_("%P: warning: dot moved backwards before `%s'\n"),
4633 /* If this is an overlay, set the current lma to that
4634 at the end of the previous section. */
4635 if (os
->sectype
== overlay_section
)
4636 lma
= last
->lma
+ last
->size
;
4638 /* Otherwise, keep the same lma to vma relationship
4639 as the previous section. */
4641 lma
= dot
+ last
->lma
- last
->vma
;
4643 if (os
->section_alignment
!= -1)
4644 lma
= align_power (lma
, os
->section_alignment
);
4645 os
->bfd_section
->lma
= lma
;
4648 os
->processed_lma
= TRUE
;
4650 if (bfd_is_abs_section (os
->bfd_section
) || os
->ignored
)
4653 /* Keep track of normal sections using the default
4654 lma region. We use this to set the lma for
4655 following sections. Overlays or other linker
4656 script assignment to lma might mean that the
4657 default lma == vma is incorrect.
4658 To avoid warnings about dot moving backwards when using
4659 -Ttext, don't start tracking sections until we find one
4660 of non-zero size or with lma set differently to vma. */
4661 if (((os
->bfd_section
->flags
& SEC_HAS_CONTENTS
) != 0
4662 || (os
->bfd_section
->flags
& SEC_THREAD_LOCAL
) == 0)
4663 && (os
->bfd_section
->flags
& SEC_ALLOC
) != 0
4664 && (os
->bfd_section
->size
!= 0
4665 || (r
->last_os
== NULL
4666 && os
->bfd_section
->vma
!= os
->bfd_section
->lma
)
4667 || (r
->last_os
!= NULL
4668 && dot
>= (r
->last_os
->output_section_statement
4669 .bfd_section
->vma
)))
4670 && os
->lma_region
== NULL
4671 && !link_info
.relocatable
)
4674 /* .tbss sections effectively have zero size. */
4675 if ((os
->bfd_section
->flags
& SEC_HAS_CONTENTS
) != 0
4676 || (os
->bfd_section
->flags
& SEC_THREAD_LOCAL
) == 0
4677 || link_info
.relocatable
)
4678 dot
+= TO_ADDR (os
->bfd_section
->size
);
4680 if (os
->update_dot_tree
!= 0)
4681 exp_fold_tree (os
->update_dot_tree
, bfd_abs_section_ptr
, &dot
);
4683 /* Update dot in the region ?
4684 We only do this if the section is going to be allocated,
4685 since unallocated sections do not contribute to the region's
4686 overall size in memory.
4688 If the SEC_NEVER_LOAD bit is not set, it will affect the
4689 addresses of sections after it. We have to update
4691 if (os
->region
!= NULL
4692 && ((os
->bfd_section
->flags
& SEC_NEVER_LOAD
) == 0
4693 || (os
->bfd_section
->flags
& (SEC_ALLOC
| SEC_LOAD
))))
4695 os
->region
->current
= dot
;
4698 /* Make sure the new address is within the region. */
4699 os_region_check (os
, os
->region
, os
->addr_tree
,
4700 os
->bfd_section
->vma
);
4702 if (os
->lma_region
!= NULL
&& os
->lma_region
!= os
->region
)
4704 os
->lma_region
->current
4705 = os
->bfd_section
->lma
+ TO_ADDR (os
->bfd_section
->size
);
4708 os_region_check (os
, os
->lma_region
, NULL
,
4709 os
->bfd_section
->lma
);
4715 case lang_constructors_statement_enum
:
4716 dot
= lang_size_sections_1 (constructor_list
.head
,
4717 output_section_statement
,
4718 &s
->wild_statement
.children
.head
,
4719 fill
, dot
, relax
, check_regions
);
4722 case lang_data_statement_enum
:
4724 unsigned int size
= 0;
4726 s
->data_statement
.output_offset
=
4727 dot
- output_section_statement
->bfd_section
->vma
;
4728 s
->data_statement
.output_section
=
4729 output_section_statement
->bfd_section
;
4731 /* We might refer to provided symbols in the expression, and
4732 need to mark them as needed. */
4733 exp_fold_tree (s
->data_statement
.exp
, bfd_abs_section_ptr
, &dot
);
4735 switch (s
->data_statement
.type
)
4753 if (size
< TO_SIZE ((unsigned) 1))
4754 size
= TO_SIZE ((unsigned) 1);
4755 dot
+= TO_ADDR (size
);
4756 output_section_statement
->bfd_section
->size
+= size
;
4760 case lang_reloc_statement_enum
:
4764 s
->reloc_statement
.output_offset
=
4765 dot
- output_section_statement
->bfd_section
->vma
;
4766 s
->reloc_statement
.output_section
=
4767 output_section_statement
->bfd_section
;
4768 size
= bfd_get_reloc_size (s
->reloc_statement
.howto
);
4769 dot
+= TO_ADDR (size
);
4770 output_section_statement
->bfd_section
->size
+= size
;
4774 case lang_wild_statement_enum
:
4775 dot
= lang_size_sections_1 (s
->wild_statement
.children
.head
,
4776 output_section_statement
,
4777 &s
->wild_statement
.children
.head
,
4778 fill
, dot
, relax
, check_regions
);
4781 case lang_object_symbols_statement_enum
:
4782 link_info
.create_object_symbols_section
=
4783 output_section_statement
->bfd_section
;
4786 case lang_output_statement_enum
:
4787 case lang_target_statement_enum
:
4790 case lang_input_section_enum
:
4794 i
= (*prev
)->input_section
.section
;
4799 if (! bfd_relax_section (i
->owner
, i
, &link_info
, &again
))
4800 einfo (_("%P%F: can't relax section: %E\n"));
4804 dot
= size_input_section (prev
, output_section_statement
,
4805 output_section_statement
->fill
, dot
);
4809 case lang_input_statement_enum
:
4812 case lang_fill_statement_enum
:
4813 s
->fill_statement
.output_section
=
4814 output_section_statement
->bfd_section
;
4816 fill
= s
->fill_statement
.fill
;
4819 case lang_assignment_statement_enum
:
4821 bfd_vma newdot
= dot
;
4822 etree_type
*tree
= s
->assignment_statement
.exp
;
4824 expld
.dataseg
.relro
= exp_dataseg_relro_none
;
4826 exp_fold_tree (tree
,
4827 output_section_statement
->bfd_section
,
4830 if (expld
.dataseg
.relro
== exp_dataseg_relro_start
)
4832 if (!expld
.dataseg
.relro_start_stat
)
4833 expld
.dataseg
.relro_start_stat
= s
;
4836 ASSERT (expld
.dataseg
.relro_start_stat
== s
);
4839 else if (expld
.dataseg
.relro
== exp_dataseg_relro_end
)
4841 if (!expld
.dataseg
.relro_end_stat
)
4842 expld
.dataseg
.relro_end_stat
= s
;
4845 ASSERT (expld
.dataseg
.relro_end_stat
== s
);
4848 expld
.dataseg
.relro
= exp_dataseg_relro_none
;
4850 /* This symbol is relative to this section. */
4851 if ((tree
->type
.node_class
== etree_provided
4852 || tree
->type
.node_class
== etree_assign
)
4853 && (tree
->assign
.dst
[0] != '.'
4854 || tree
->assign
.dst
[1] != '\0'))
4855 output_section_statement
->section_relative_symbol
= 1;
4857 if (!output_section_statement
->ignored
)
4859 if (output_section_statement
== abs_output_section
)
4861 /* If we don't have an output section, then just adjust
4862 the default memory address. */
4863 lang_memory_region_lookup (DEFAULT_MEMORY_REGION
,
4864 FALSE
)->current
= newdot
;
4866 else if (newdot
!= dot
)
4868 /* Insert a pad after this statement. We can't
4869 put the pad before when relaxing, in case the
4870 assignment references dot. */
4871 insert_pad (&s
->header
.next
, fill
, TO_SIZE (newdot
- dot
),
4872 output_section_statement
->bfd_section
, dot
);
4874 /* Don't neuter the pad below when relaxing. */
4877 /* If dot is advanced, this implies that the section
4878 should have space allocated to it, unless the
4879 user has explicitly stated that the section
4880 should never be loaded. */
4881 if (!(output_section_statement
->flags
& SEC_NEVER_LOAD
))
4882 output_section_statement
->bfd_section
->flags
|= SEC_ALLOC
;
4889 case lang_padding_statement_enum
:
4890 /* If this is the first time lang_size_sections is called,
4891 we won't have any padding statements. If this is the
4892 second or later passes when relaxing, we should allow
4893 padding to shrink. If padding is needed on this pass, it
4894 will be added back in. */
4895 s
->padding_statement
.size
= 0;
4897 /* Make sure output_offset is valid. If relaxation shrinks
4898 the section and this pad isn't needed, it's possible to
4899 have output_offset larger than the final size of the
4900 section. bfd_set_section_contents will complain even for
4901 a pad size of zero. */
4902 s
->padding_statement
.output_offset
4903 = dot
- output_section_statement
->bfd_section
->vma
;
4906 case lang_group_statement_enum
:
4907 dot
= lang_size_sections_1 (s
->group_statement
.children
.head
,
4908 output_section_statement
,
4909 &s
->group_statement
.children
.head
,
4910 fill
, dot
, relax
, check_regions
);
4913 case lang_insert_statement_enum
:
4916 /* We can only get here when relaxing is turned on. */
4917 case lang_address_statement_enum
:
4924 prev
= &s
->header
.next
;
4929 /* Callback routine that is used in _bfd_elf_map_sections_to_segments.
4930 The BFD library has set NEW_SEGMENT to TRUE iff it thinks that
4931 CURRENT_SECTION and PREVIOUS_SECTION ought to be placed into different
4932 segments. We are allowed an opportunity to override this decision. */
4935 ldlang_override_segment_assignment (struct bfd_link_info
* info ATTRIBUTE_UNUSED
,
4936 bfd
* abfd ATTRIBUTE_UNUSED
,
4937 asection
* current_section
,
4938 asection
* previous_section
,
4939 bfd_boolean new_segment
)
4941 lang_output_section_statement_type
* cur
;
4942 lang_output_section_statement_type
* prev
;
4944 /* The checks below are only necessary when the BFD library has decided
4945 that the two sections ought to be placed into the same segment. */
4949 /* Paranoia checks. */
4950 if (current_section
== NULL
|| previous_section
== NULL
)
4953 /* Find the memory regions associated with the two sections.
4954 We call lang_output_section_find() here rather than scanning the list
4955 of output sections looking for a matching section pointer because if
4956 we have a large number of sections then a hash lookup is faster. */
4957 cur
= lang_output_section_find (current_section
->name
);
4958 prev
= lang_output_section_find (previous_section
->name
);
4960 /* More paranoia. */
4961 if (cur
== NULL
|| prev
== NULL
)
4964 /* If the regions are different then force the sections to live in
4965 different segments. See the email thread starting at the following
4966 URL for the reasons why this is necessary:
4967 http://sourceware.org/ml/binutils/2007-02/msg00216.html */
4968 return cur
->region
!= prev
->region
;
4972 one_lang_size_sections_pass (bfd_boolean
*relax
, bfd_boolean check_regions
)
4974 lang_statement_iteration
++;
4975 lang_size_sections_1 (statement_list
.head
, abs_output_section
,
4976 &statement_list
.head
, 0, 0, relax
, check_regions
);
4980 lang_size_sections (bfd_boolean
*relax
, bfd_boolean check_regions
)
4982 expld
.phase
= lang_allocating_phase_enum
;
4983 expld
.dataseg
.phase
= exp_dataseg_none
;
4985 one_lang_size_sections_pass (relax
, check_regions
);
4986 if (expld
.dataseg
.phase
== exp_dataseg_end_seen
4987 && link_info
.relro
&& expld
.dataseg
.relro_end
)
4989 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
4990 to put expld.dataseg.relro on a (common) page boundary. */
4991 bfd_vma old_min_base
, relro_end
, maxpage
;
4993 expld
.dataseg
.phase
= exp_dataseg_relro_adjust
;
4994 old_min_base
= expld
.dataseg
.min_base
;
4995 maxpage
= expld
.dataseg
.maxpagesize
;
4996 expld
.dataseg
.base
+= (-expld
.dataseg
.relro_end
4997 & (expld
.dataseg
.pagesize
- 1));
4998 /* Compute the expected PT_GNU_RELRO segment end. */
4999 relro_end
= (expld
.dataseg
.relro_end
+ expld
.dataseg
.pagesize
- 1)
5000 & ~(expld
.dataseg
.pagesize
- 1);
5001 if (old_min_base
+ maxpage
< expld
.dataseg
.base
)
5003 expld
.dataseg
.base
-= maxpage
;
5004 relro_end
-= maxpage
;
5006 lang_reset_memory_regions ();
5007 one_lang_size_sections_pass (relax
, check_regions
);
5008 if (expld
.dataseg
.relro_end
> relro_end
)
5010 /* The alignment of sections between DATA_SEGMENT_ALIGN
5011 and DATA_SEGMENT_RELRO_END caused huge padding to be
5012 inserted at DATA_SEGMENT_RELRO_END. Try some other base. */
5014 unsigned int max_alignment_power
= 0;
5016 /* Find maximum alignment power of sections between
5017 DATA_SEGMENT_ALIGN and DATA_SEGMENT_RELRO_END. */
5018 for (sec
= link_info
.output_bfd
->sections
; sec
; sec
= sec
->next
)
5019 if (sec
->vma
>= expld
.dataseg
.base
5020 && sec
->vma
< expld
.dataseg
.relro_end
5021 && sec
->alignment_power
> max_alignment_power
)
5022 max_alignment_power
= sec
->alignment_power
;
5024 if (((bfd_vma
) 1 << max_alignment_power
) < expld
.dataseg
.pagesize
)
5026 if (expld
.dataseg
.base
- (1 << max_alignment_power
)
5028 expld
.dataseg
.base
+= expld
.dataseg
.pagesize
;
5029 expld
.dataseg
.base
-= (1 << max_alignment_power
);
5030 lang_reset_memory_regions ();
5031 one_lang_size_sections_pass (relax
, check_regions
);
5034 link_info
.relro_start
= expld
.dataseg
.base
;
5035 link_info
.relro_end
= expld
.dataseg
.relro_end
;
5037 else if (expld
.dataseg
.phase
== exp_dataseg_end_seen
)
5039 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
5040 a page could be saved in the data segment. */
5041 bfd_vma first
, last
;
5043 first
= -expld
.dataseg
.base
& (expld
.dataseg
.pagesize
- 1);
5044 last
= expld
.dataseg
.end
& (expld
.dataseg
.pagesize
- 1);
5046 && ((expld
.dataseg
.base
& ~(expld
.dataseg
.pagesize
- 1))
5047 != (expld
.dataseg
.end
& ~(expld
.dataseg
.pagesize
- 1)))
5048 && first
+ last
<= expld
.dataseg
.pagesize
)
5050 expld
.dataseg
.phase
= exp_dataseg_adjust
;
5051 lang_reset_memory_regions ();
5052 one_lang_size_sections_pass (relax
, check_regions
);
5056 expld
.phase
= lang_final_phase_enum
;
5059 /* Worker function for lang_do_assignments. Recursiveness goes here. */
5062 lang_do_assignments_1 (lang_statement_union_type
*s
,
5063 lang_output_section_statement_type
*current_os
,
5067 for (; s
!= NULL
; s
= s
->header
.next
)
5069 switch (s
->header
.type
)
5071 case lang_constructors_statement_enum
:
5072 dot
= lang_do_assignments_1 (constructor_list
.head
,
5073 current_os
, fill
, dot
);
5076 case lang_output_section_statement_enum
:
5078 lang_output_section_statement_type
*os
;
5080 os
= &(s
->output_section_statement
);
5081 if (os
->bfd_section
!= NULL
&& !os
->ignored
)
5083 dot
= os
->bfd_section
->vma
;
5085 lang_do_assignments_1 (os
->children
.head
, os
, os
->fill
, dot
);
5087 /* .tbss sections effectively have zero size. */
5088 if ((os
->bfd_section
->flags
& SEC_HAS_CONTENTS
) != 0
5089 || (os
->bfd_section
->flags
& SEC_THREAD_LOCAL
) == 0
5090 || link_info
.relocatable
)
5091 dot
+= TO_ADDR (os
->bfd_section
->size
);
5096 case lang_wild_statement_enum
:
5098 dot
= lang_do_assignments_1 (s
->wild_statement
.children
.head
,
5099 current_os
, fill
, dot
);
5102 case lang_object_symbols_statement_enum
:
5103 case lang_output_statement_enum
:
5104 case lang_target_statement_enum
:
5107 case lang_data_statement_enum
:
5108 exp_fold_tree (s
->data_statement
.exp
, bfd_abs_section_ptr
, &dot
);
5109 if (expld
.result
.valid_p
)
5110 s
->data_statement
.value
= (expld
.result
.value
5111 + expld
.result
.section
->vma
);
5113 einfo (_("%F%P: invalid data statement\n"));
5116 switch (s
->data_statement
.type
)
5134 if (size
< TO_SIZE ((unsigned) 1))
5135 size
= TO_SIZE ((unsigned) 1);
5136 dot
+= TO_ADDR (size
);
5140 case lang_reloc_statement_enum
:
5141 exp_fold_tree (s
->reloc_statement
.addend_exp
,
5142 bfd_abs_section_ptr
, &dot
);
5143 if (expld
.result
.valid_p
)
5144 s
->reloc_statement
.addend_value
= expld
.result
.value
;
5146 einfo (_("%F%P: invalid reloc statement\n"));
5147 dot
+= TO_ADDR (bfd_get_reloc_size (s
->reloc_statement
.howto
));
5150 case lang_input_section_enum
:
5152 asection
*in
= s
->input_section
.section
;
5154 if ((in
->flags
& SEC_EXCLUDE
) == 0)
5155 dot
+= TO_ADDR (in
->size
);
5159 case lang_input_statement_enum
:
5162 case lang_fill_statement_enum
:
5163 fill
= s
->fill_statement
.fill
;
5166 case lang_assignment_statement_enum
:
5167 exp_fold_tree (s
->assignment_statement
.exp
,
5168 current_os
->bfd_section
,
5172 case lang_padding_statement_enum
:
5173 dot
+= TO_ADDR (s
->padding_statement
.size
);
5176 case lang_group_statement_enum
:
5177 dot
= lang_do_assignments_1 (s
->group_statement
.children
.head
,
5178 current_os
, fill
, dot
);
5181 case lang_insert_statement_enum
:
5184 case lang_address_statement_enum
:
5196 lang_do_assignments (void)
5198 lang_statement_iteration
++;
5199 lang_do_assignments_1 (statement_list
.head
, abs_output_section
, NULL
, 0);
5202 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
5203 operator .startof. (section_name), it produces an undefined symbol
5204 .startof.section_name. Similarly, when it sees
5205 .sizeof. (section_name), it produces an undefined symbol
5206 .sizeof.section_name. For all the output sections, we look for
5207 such symbols, and set them to the correct value. */
5210 lang_set_startof (void)
5214 if (link_info
.relocatable
)
5217 for (s
= link_info
.output_bfd
->sections
; s
!= NULL
; s
= s
->next
)
5219 const char *secname
;
5221 struct bfd_link_hash_entry
*h
;
5223 secname
= bfd_get_section_name (link_info
.output_bfd
, s
);
5224 buf
= xmalloc (10 + strlen (secname
));
5226 sprintf (buf
, ".startof.%s", secname
);
5227 h
= bfd_link_hash_lookup (link_info
.hash
, buf
, FALSE
, FALSE
, TRUE
);
5228 if (h
!= NULL
&& h
->type
== bfd_link_hash_undefined
)
5230 h
->type
= bfd_link_hash_defined
;
5231 h
->u
.def
.value
= bfd_get_section_vma (link_info
.output_bfd
, s
);
5232 h
->u
.def
.section
= bfd_abs_section_ptr
;
5235 sprintf (buf
, ".sizeof.%s", secname
);
5236 h
= bfd_link_hash_lookup (link_info
.hash
, buf
, FALSE
, FALSE
, TRUE
);
5237 if (h
!= NULL
&& h
->type
== bfd_link_hash_undefined
)
5239 h
->type
= bfd_link_hash_defined
;
5240 h
->u
.def
.value
= TO_ADDR (s
->size
);
5241 h
->u
.def
.section
= bfd_abs_section_ptr
;
5251 struct bfd_link_hash_entry
*h
;
5254 if ((link_info
.relocatable
&& !link_info
.gc_sections
)
5255 || link_info
.shared
)
5256 warn
= entry_from_cmdline
;
5260 /* Force the user to specify a root when generating a relocatable with
5262 if (link_info
.gc_sections
&& link_info
.relocatable
5263 && (entry_symbol
.name
== NULL
5264 && ldlang_undef_chain_list_head
== NULL
))
5265 einfo (_("%P%F: gc-sections requires either an entry or "
5266 "an undefined symbol\n"));
5268 if (entry_symbol
.name
== NULL
)
5270 /* No entry has been specified. Look for the default entry, but
5271 don't warn if we don't find it. */
5272 entry_symbol
.name
= entry_symbol_default
;
5276 h
= bfd_link_hash_lookup (link_info
.hash
, entry_symbol
.name
,
5277 FALSE
, FALSE
, TRUE
);
5279 && (h
->type
== bfd_link_hash_defined
5280 || h
->type
== bfd_link_hash_defweak
)
5281 && h
->u
.def
.section
->output_section
!= NULL
)
5285 val
= (h
->u
.def
.value
5286 + bfd_get_section_vma (link_info
.output_bfd
,
5287 h
->u
.def
.section
->output_section
)
5288 + h
->u
.def
.section
->output_offset
);
5289 if (! bfd_set_start_address (link_info
.output_bfd
, val
))
5290 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol
.name
);
5297 /* We couldn't find the entry symbol. Try parsing it as a
5299 val
= bfd_scan_vma (entry_symbol
.name
, &send
, 0);
5302 if (! bfd_set_start_address (link_info
.output_bfd
, val
))
5303 einfo (_("%P%F: can't set start address\n"));
5309 /* Can't find the entry symbol, and it's not a number. Use
5310 the first address in the text section. */
5311 ts
= bfd_get_section_by_name (link_info
.output_bfd
, entry_section
);
5315 einfo (_("%P: warning: cannot find entry symbol %s;"
5316 " defaulting to %V\n"),
5318 bfd_get_section_vma (link_info
.output_bfd
, ts
));
5319 if (!(bfd_set_start_address
5320 (link_info
.output_bfd
,
5321 bfd_get_section_vma (link_info
.output_bfd
, ts
))))
5322 einfo (_("%P%F: can't set start address\n"));
5327 einfo (_("%P: warning: cannot find entry symbol %s;"
5328 " not setting start address\n"),
5334 /* Don't bfd_hash_table_free (&lang_definedness_table);
5335 map file output may result in a call of lang_track_definedness. */
5338 /* This is a small function used when we want to ignore errors from
5342 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED
, ...)
5344 /* Don't do anything. */
5347 /* Check that the architecture of all the input files is compatible
5348 with the output file. Also call the backend to let it do any
5349 other checking that is needed. */
5354 lang_statement_union_type
*file
;
5356 const bfd_arch_info_type
*compatible
;
5358 for (file
= file_chain
.head
; file
!= NULL
; file
= file
->input_statement
.next
)
5360 input_bfd
= file
->input_statement
.the_bfd
;
5362 = bfd_arch_get_compatible (input_bfd
, link_info
.output_bfd
,
5363 command_line
.accept_unknown_input_arch
);
5365 /* In general it is not possible to perform a relocatable
5366 link between differing object formats when the input
5367 file has relocations, because the relocations in the
5368 input format may not have equivalent representations in
5369 the output format (and besides BFD does not translate
5370 relocs for other link purposes than a final link). */
5371 if ((link_info
.relocatable
|| link_info
.emitrelocations
)
5372 && (compatible
== NULL
5373 || (bfd_get_flavour (input_bfd
)
5374 != bfd_get_flavour (link_info
.output_bfd
)))
5375 && (bfd_get_file_flags (input_bfd
) & HAS_RELOC
) != 0)
5377 einfo (_("%P%F: Relocatable linking with relocations from"
5378 " format %s (%B) to format %s (%B) is not supported\n"),
5379 bfd_get_target (input_bfd
), input_bfd
,
5380 bfd_get_target (link_info
.output_bfd
), link_info
.output_bfd
);
5381 /* einfo with %F exits. */
5384 if (compatible
== NULL
)
5386 if (command_line
.warn_mismatch
)
5387 einfo (_("%P%X: %s architecture of input file `%B'"
5388 " is incompatible with %s output\n"),
5389 bfd_printable_name (input_bfd
), input_bfd
,
5390 bfd_printable_name (link_info
.output_bfd
));
5392 else if (bfd_count_sections (input_bfd
))
5394 /* If the input bfd has no contents, it shouldn't set the
5395 private data of the output bfd. */
5397 bfd_error_handler_type pfn
= NULL
;
5399 /* If we aren't supposed to warn about mismatched input
5400 files, temporarily set the BFD error handler to a
5401 function which will do nothing. We still want to call
5402 bfd_merge_private_bfd_data, since it may set up
5403 information which is needed in the output file. */
5404 if (! command_line
.warn_mismatch
)
5405 pfn
= bfd_set_error_handler (ignore_bfd_errors
);
5406 if (! bfd_merge_private_bfd_data (input_bfd
, link_info
.output_bfd
))
5408 if (command_line
.warn_mismatch
)
5409 einfo (_("%P%X: failed to merge target specific data"
5410 " of file %B\n"), input_bfd
);
5412 if (! command_line
.warn_mismatch
)
5413 bfd_set_error_handler (pfn
);
5418 /* Look through all the global common symbols and attach them to the
5419 correct section. The -sort-common command line switch may be used
5420 to roughly sort the entries by size. */
5425 if (command_line
.inhibit_common_definition
)
5427 if (link_info
.relocatable
5428 && ! command_line
.force_common_definition
)
5431 if (! config
.sort_common
)
5432 bfd_link_hash_traverse (link_info
.hash
, lang_one_common
, NULL
);
5437 for (power
= 4; power
>= 0; power
--)
5438 bfd_link_hash_traverse (link_info
.hash
, lang_one_common
, &power
);
5442 /* Place one common symbol in the correct section. */
5445 lang_one_common (struct bfd_link_hash_entry
*h
, void *info
)
5447 unsigned int power_of_two
;
5451 if (h
->type
!= bfd_link_hash_common
)
5455 power_of_two
= h
->u
.c
.p
->alignment_power
;
5457 if (config
.sort_common
5458 && power_of_two
< (unsigned int) *(int *) info
)
5461 section
= h
->u
.c
.p
->section
;
5463 /* Increase the size of the section to align the common sym. */
5464 section
->size
+= ((bfd_vma
) 1 << (power_of_two
+ opb_shift
)) - 1;
5465 section
->size
&= (- (bfd_vma
) 1 << (power_of_two
+ opb_shift
));
5467 /* Adjust the alignment if necessary. */
5468 if (power_of_two
> section
->alignment_power
)
5469 section
->alignment_power
= power_of_two
;
5471 /* Change the symbol from common to defined. */
5472 h
->type
= bfd_link_hash_defined
;
5473 h
->u
.def
.section
= section
;
5474 h
->u
.def
.value
= section
->size
;
5476 /* Increase the size of the section. */
5477 section
->size
+= size
;
5479 /* Make sure the section is allocated in memory, and make sure that
5480 it is no longer a common section. */
5481 section
->flags
|= SEC_ALLOC
;
5482 section
->flags
&= ~SEC_IS_COMMON
;
5484 if (config
.map_file
!= NULL
)
5486 static bfd_boolean header_printed
;
5491 if (! header_printed
)
5493 minfo (_("\nAllocating common symbols\n"));
5494 minfo (_("Common symbol size file\n\n"));
5495 header_printed
= TRUE
;
5498 name
= bfd_demangle (link_info
.output_bfd
, h
->root
.string
,
5499 DMGL_ANSI
| DMGL_PARAMS
);
5502 minfo ("%s", h
->root
.string
);
5503 len
= strlen (h
->root
.string
);
5508 len
= strlen (name
);
5524 if (size
<= 0xffffffff)
5525 sprintf (buf
, "%lx", (unsigned long) size
);
5527 sprintf_vma (buf
, size
);
5537 minfo ("%B\n", section
->owner
);
5543 /* Run through the input files and ensure that every input section has
5544 somewhere to go. If one is found without a destination then create
5545 an input request and place it into the statement tree. */
5548 lang_place_orphans (void)
5550 LANG_FOR_EACH_INPUT_STATEMENT (file
)
5554 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
5556 if (s
->output_section
== NULL
)
5558 /* This section of the file is not attached, root
5559 around for a sensible place for it to go. */
5561 if (file
->just_syms_flag
)
5562 bfd_link_just_syms (file
->the_bfd
, s
, &link_info
);
5563 else if ((s
->flags
& SEC_EXCLUDE
) != 0)
5564 s
->output_section
= bfd_abs_section_ptr
;
5565 else if (strcmp (s
->name
, "COMMON") == 0)
5567 /* This is a lonely common section which must have
5568 come from an archive. We attach to the section
5569 with the wildcard. */
5570 if (! link_info
.relocatable
5571 || command_line
.force_common_definition
)
5573 if (default_common_section
== NULL
)
5575 default_common_section
=
5576 lang_output_section_statement_lookup (".bss");
5579 lang_add_section (&default_common_section
->children
, s
,
5580 default_common_section
);
5583 else if (ldemul_place_orphan (s
))
5587 lang_output_section_statement_type
*os
;
5589 os
= lang_output_section_statement_lookup (s
->name
);
5590 lang_add_section (&os
->children
, s
, os
);
5598 lang_set_flags (lang_memory_region_type
*ptr
, const char *flags
, int invert
)
5600 flagword
*ptr_flags
;
5602 ptr_flags
= invert
? &ptr
->not_flags
: &ptr
->flags
;
5608 *ptr_flags
|= SEC_ALLOC
;
5612 *ptr_flags
|= SEC_READONLY
;
5616 *ptr_flags
|= SEC_DATA
;
5620 *ptr_flags
|= SEC_CODE
;
5625 *ptr_flags
|= SEC_LOAD
;
5629 einfo (_("%P%F: invalid syntax in flags\n"));
5636 /* Call a function on each input file. This function will be called
5637 on an archive, but not on the elements. */
5640 lang_for_each_input_file (void (*func
) (lang_input_statement_type
*))
5642 lang_input_statement_type
*f
;
5644 for (f
= (lang_input_statement_type
*) input_file_chain
.head
;
5646 f
= (lang_input_statement_type
*) f
->next_real_file
)
5650 /* Call a function on each file. The function will be called on all
5651 the elements of an archive which are included in the link, but will
5652 not be called on the archive file itself. */
5655 lang_for_each_file (void (*func
) (lang_input_statement_type
*))
5657 LANG_FOR_EACH_INPUT_STATEMENT (f
)
5664 ldlang_add_file (lang_input_statement_type
*entry
)
5666 lang_statement_append (&file_chain
,
5667 (lang_statement_union_type
*) entry
,
5670 /* The BFD linker needs to have a list of all input BFDs involved in
5672 ASSERT (entry
->the_bfd
->link_next
== NULL
);
5673 ASSERT (entry
->the_bfd
!= link_info
.output_bfd
);
5675 *link_info
.input_bfds_tail
= entry
->the_bfd
;
5676 link_info
.input_bfds_tail
= &entry
->the_bfd
->link_next
;
5677 entry
->the_bfd
->usrdata
= entry
;
5678 bfd_set_gp_size (entry
->the_bfd
, g_switch_value
);
5680 /* Look through the sections and check for any which should not be
5681 included in the link. We need to do this now, so that we can
5682 notice when the backend linker tries to report multiple
5683 definition errors for symbols which are in sections we aren't
5684 going to link. FIXME: It might be better to entirely ignore
5685 symbols which are defined in sections which are going to be
5686 discarded. This would require modifying the backend linker for
5687 each backend which might set the SEC_LINK_ONCE flag. If we do
5688 this, we should probably handle SEC_EXCLUDE in the same way. */
5690 bfd_map_over_sections (entry
->the_bfd
, section_already_linked
, entry
);
5694 lang_add_output (const char *name
, int from_script
)
5696 /* Make -o on command line override OUTPUT in script. */
5697 if (!had_output_filename
|| !from_script
)
5699 output_filename
= name
;
5700 had_output_filename
= TRUE
;
5704 static lang_output_section_statement_type
*current_section
;
5715 for (l
= 0; l
< 32; l
++)
5717 if (i
>= (unsigned int) x
)
5725 lang_output_section_statement_type
*
5726 lang_enter_output_section_statement (const char *output_section_statement_name
,
5727 etree_type
*address_exp
,
5728 enum section_type sectype
,
5730 etree_type
*subalign
,
5734 lang_output_section_statement_type
*os
;
5736 os
= lang_output_section_statement_lookup_1 (output_section_statement_name
,
5738 current_section
= os
;
5740 /* Make next things chain into subchain of this. */
5742 if (os
->addr_tree
== NULL
)
5744 os
->addr_tree
= address_exp
;
5746 os
->sectype
= sectype
;
5747 if (sectype
!= noload_section
)
5748 os
->flags
= SEC_NO_FLAGS
;
5750 os
->flags
= SEC_NEVER_LOAD
;
5751 os
->block_value
= 1;
5752 stat_ptr
= &os
->children
;
5754 os
->subsection_alignment
=
5755 topower (exp_get_value_int (subalign
, -1, "subsection alignment"));
5756 os
->section_alignment
=
5757 topower (exp_get_value_int (align
, -1, "section alignment"));
5759 os
->load_base
= ebase
;
5766 lang_output_statement_type
*new;
5768 new = new_stat (lang_output_statement
, stat_ptr
);
5769 new->name
= output_filename
;
5772 /* Reset the current counters in the regions. */
5775 lang_reset_memory_regions (void)
5777 lang_memory_region_type
*p
= lang_memory_region_list
;
5779 lang_output_section_statement_type
*os
;
5781 for (p
= lang_memory_region_list
; p
!= NULL
; p
= p
->next
)
5783 p
->current
= p
->origin
;
5787 for (os
= &lang_output_section_statement
.head
->output_section_statement
;
5791 os
->processed_vma
= FALSE
;
5792 os
->processed_lma
= FALSE
;
5795 for (o
= link_info
.output_bfd
->sections
; o
!= NULL
; o
= o
->next
)
5797 /* Save the last size for possible use by bfd_relax_section. */
5798 o
->rawsize
= o
->size
;
5803 /* Worker for lang_gc_sections_1. */
5806 gc_section_callback (lang_wild_statement_type
*ptr
,
5807 struct wildcard_list
*sec ATTRIBUTE_UNUSED
,
5809 lang_input_statement_type
*file ATTRIBUTE_UNUSED
,
5810 void *data ATTRIBUTE_UNUSED
)
5812 /* If the wild pattern was marked KEEP, the member sections
5813 should be as well. */
5814 if (ptr
->keep_sections
)
5815 section
->flags
|= SEC_KEEP
;
5818 /* Iterate over sections marking them against GC. */
5821 lang_gc_sections_1 (lang_statement_union_type
*s
)
5823 for (; s
!= NULL
; s
= s
->header
.next
)
5825 switch (s
->header
.type
)
5827 case lang_wild_statement_enum
:
5828 walk_wild (&s
->wild_statement
, gc_section_callback
, NULL
);
5830 case lang_constructors_statement_enum
:
5831 lang_gc_sections_1 (constructor_list
.head
);
5833 case lang_output_section_statement_enum
:
5834 lang_gc_sections_1 (s
->output_section_statement
.children
.head
);
5836 case lang_group_statement_enum
:
5837 lang_gc_sections_1 (s
->group_statement
.children
.head
);
5846 lang_gc_sections (void)
5848 /* Keep all sections so marked in the link script. */
5850 lang_gc_sections_1 (statement_list
.head
);
5852 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
5853 the special case of debug info. (See bfd/stabs.c)
5854 Twiddle the flag here, to simplify later linker code. */
5855 if (link_info
.relocatable
)
5857 LANG_FOR_EACH_INPUT_STATEMENT (f
)
5860 for (sec
= f
->the_bfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
5861 if ((sec
->flags
& SEC_DEBUGGING
) == 0)
5862 sec
->flags
&= ~SEC_EXCLUDE
;
5866 if (link_info
.gc_sections
)
5867 bfd_gc_sections (link_info
.output_bfd
, &link_info
);
5870 /* Worker for lang_find_relro_sections_1. */
5873 find_relro_section_callback (lang_wild_statement_type
*ptr ATTRIBUTE_UNUSED
,
5874 struct wildcard_list
*sec ATTRIBUTE_UNUSED
,
5876 lang_input_statement_type
*file ATTRIBUTE_UNUSED
,
5879 /* Discarded, excluded and ignored sections effectively have zero
5881 if (section
->output_section
!= NULL
5882 && section
->output_section
->owner
== link_info
.output_bfd
5883 && (section
->output_section
->flags
& SEC_EXCLUDE
) == 0
5884 && !IGNORE_SECTION (section
)
5885 && section
->size
!= 0)
5887 bfd_boolean
*has_relro_section
= (bfd_boolean
*) data
;
5888 *has_relro_section
= TRUE
;
5892 /* Iterate over sections for relro sections. */
5895 lang_find_relro_sections_1 (lang_statement_union_type
*s
,
5896 bfd_boolean
*has_relro_section
)
5898 if (*has_relro_section
)
5901 for (; s
!= NULL
; s
= s
->header
.next
)
5903 if (s
== expld
.dataseg
.relro_end_stat
)
5906 switch (s
->header
.type
)
5908 case lang_wild_statement_enum
:
5909 walk_wild (&s
->wild_statement
,
5910 find_relro_section_callback
,
5913 case lang_constructors_statement_enum
:
5914 lang_find_relro_sections_1 (constructor_list
.head
,
5917 case lang_output_section_statement_enum
:
5918 lang_find_relro_sections_1 (s
->output_section_statement
.children
.head
,
5921 case lang_group_statement_enum
:
5922 lang_find_relro_sections_1 (s
->group_statement
.children
.head
,
5932 lang_find_relro_sections (void)
5934 bfd_boolean has_relro_section
= FALSE
;
5936 /* Check all sections in the link script. */
5938 lang_find_relro_sections_1 (expld
.dataseg
.relro_start_stat
,
5939 &has_relro_section
);
5941 if (!has_relro_section
)
5942 link_info
.relro
= FALSE
;
5945 /* Relax all sections until bfd_relax_section gives up. */
5948 relax_sections (void)
5950 /* Keep relaxing until bfd_relax_section gives up. */
5951 bfd_boolean relax_again
;
5953 link_info
.relax_trip
= -1;
5956 relax_again
= FALSE
;
5957 link_info
.relax_trip
++;
5959 /* Note: pe-dll.c does something like this also. If you find
5960 you need to change this code, you probably need to change
5961 pe-dll.c also. DJ */
5963 /* Do all the assignments with our current guesses as to
5965 lang_do_assignments ();
5967 /* We must do this after lang_do_assignments, because it uses
5969 lang_reset_memory_regions ();
5971 /* Perform another relax pass - this time we know where the
5972 globals are, so can make a better guess. */
5973 lang_size_sections (&relax_again
, FALSE
);
5975 while (relax_again
);
5981 /* Finalize dynamic list. */
5982 if (link_info
.dynamic_list
)
5983 lang_finalize_version_expr_head (&link_info
.dynamic_list
->head
);
5985 current_target
= default_target
;
5987 /* Open the output file. */
5988 lang_for_each_statement (ldlang_open_output
);
5991 ldemul_create_output_section_statements ();
5993 /* Add to the hash table all undefineds on the command line. */
5994 lang_place_undefineds ();
5996 if (!bfd_section_already_linked_table_init ())
5997 einfo (_("%P%F: Failed to create hash table\n"));
5999 /* Create a bfd for each input file. */
6000 current_target
= default_target
;
6001 open_input_bfds (statement_list
.head
, FALSE
);
6003 link_info
.gc_sym_list
= &entry_symbol
;
6004 if (entry_symbol
.name
== NULL
)
6005 link_info
.gc_sym_list
= ldlang_undef_chain_list_head
;
6007 ldemul_after_open ();
6009 bfd_section_already_linked_table_free ();
6011 /* Make sure that we're not mixing architectures. We call this
6012 after all the input files have been opened, but before we do any
6013 other processing, so that any operations merge_private_bfd_data
6014 does on the output file will be known during the rest of the
6018 /* Handle .exports instead of a version script if we're told to do so. */
6019 if (command_line
.version_exports_section
)
6020 lang_do_version_exports_section ();
6022 /* Build all sets based on the information gathered from the input
6024 ldctor_build_sets ();
6026 /* Remove unreferenced sections if asked to. */
6027 lang_gc_sections ();
6029 /* Size up the common data. */
6032 /* Update wild statements. */
6033 update_wild_statements (statement_list
.head
);
6035 /* Run through the contours of the script and attach input sections
6036 to the correct output sections. */
6037 map_input_to_output_sections (statement_list
.head
, NULL
, NULL
);
6039 process_insert_statements ();
6041 /* Find any sections not attached explicitly and handle them. */
6042 lang_place_orphans ();
6044 if (! link_info
.relocatable
)
6048 /* Merge SEC_MERGE sections. This has to be done after GC of
6049 sections, so that GCed sections are not merged, but before
6050 assigning dynamic symbols, since removing whole input sections
6052 bfd_merge_sections (link_info
.output_bfd
, &link_info
);
6054 /* Look for a text section and set the readonly attribute in it. */
6055 found
= bfd_get_section_by_name (link_info
.output_bfd
, ".text");
6059 if (config
.text_read_only
)
6060 found
->flags
|= SEC_READONLY
;
6062 found
->flags
&= ~SEC_READONLY
;
6066 /* Do anything special before sizing sections. This is where ELF
6067 and other back-ends size dynamic sections. */
6068 ldemul_before_allocation ();
6070 /* We must record the program headers before we try to fix the
6071 section positions, since they will affect SIZEOF_HEADERS. */
6072 lang_record_phdrs ();
6074 /* Check relro sections. */
6075 if (link_info
.relro
&& ! link_info
.relocatable
)
6076 lang_find_relro_sections ();
6078 /* Size up the sections. */
6079 lang_size_sections (NULL
, !command_line
.relax
);
6081 /* Now run around and relax if we can. */
6082 if (command_line
.relax
)
6084 /* We may need more than one relaxation pass. */
6085 int i
= link_info
.relax_pass
;
6087 /* The backend can use it to determine the current pass. */
6088 link_info
.relax_pass
= 0;
6093 link_info
.relax_pass
++;
6096 /* Final extra sizing to report errors. */
6097 lang_do_assignments ();
6098 lang_reset_memory_regions ();
6099 lang_size_sections (NULL
, TRUE
);
6102 /* See if anything special should be done now we know how big
6104 ldemul_after_allocation ();
6106 /* Fix any .startof. or .sizeof. symbols. */
6107 lang_set_startof ();
6109 /* Do all the assignments, now that we know the final resting places
6110 of all the symbols. */
6112 lang_do_assignments ();
6116 /* Make sure that the section addresses make sense. */
6117 if (! link_info
.relocatable
6118 && command_line
.check_section_addresses
)
6119 lang_check_section_addresses ();
6124 /* EXPORTED TO YACC */
6127 lang_add_wild (struct wildcard_spec
*filespec
,
6128 struct wildcard_list
*section_list
,
6129 bfd_boolean keep_sections
)
6131 struct wildcard_list
*curr
, *next
;
6132 lang_wild_statement_type
*new;
6134 /* Reverse the list as the parser puts it back to front. */
6135 for (curr
= section_list
, section_list
= NULL
;
6137 section_list
= curr
, curr
= next
)
6139 if (curr
->spec
.name
!= NULL
&& strcmp (curr
->spec
.name
, "COMMON") == 0)
6140 placed_commons
= TRUE
;
6143 curr
->next
= section_list
;
6146 if (filespec
!= NULL
&& filespec
->name
!= NULL
)
6148 if (strcmp (filespec
->name
, "*") == 0)
6149 filespec
->name
= NULL
;
6150 else if (! wildcardp (filespec
->name
))
6151 lang_has_input_file
= TRUE
;
6154 new = new_stat (lang_wild_statement
, stat_ptr
);
6155 new->filename
= NULL
;
6156 new->filenames_sorted
= FALSE
;
6157 if (filespec
!= NULL
)
6159 new->filename
= filespec
->name
;
6160 new->filenames_sorted
= filespec
->sorted
== by_name
;
6162 new->section_list
= section_list
;
6163 new->keep_sections
= keep_sections
;
6164 lang_list_init (&new->children
);
6165 analyze_walk_wild_section_handler (new);
6169 lang_section_start (const char *name
, etree_type
*address
,
6170 const segment_type
*segment
)
6172 lang_address_statement_type
*ad
;
6174 ad
= new_stat (lang_address_statement
, stat_ptr
);
6175 ad
->section_name
= name
;
6176 ad
->address
= address
;
6177 ad
->segment
= segment
;
6180 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
6181 because of a -e argument on the command line, or zero if this is
6182 called by ENTRY in a linker script. Command line arguments take
6186 lang_add_entry (const char *name
, bfd_boolean cmdline
)
6188 if (entry_symbol
.name
== NULL
6190 || ! entry_from_cmdline
)
6192 entry_symbol
.name
= name
;
6193 entry_from_cmdline
= cmdline
;
6197 /* Set the default start symbol to NAME. .em files should use this,
6198 not lang_add_entry, to override the use of "start" if neither the
6199 linker script nor the command line specifies an entry point. NAME
6200 must be permanently allocated. */
6202 lang_default_entry (const char *name
)
6204 entry_symbol_default
= name
;
6208 lang_add_target (const char *name
)
6210 lang_target_statement_type
*new;
6212 new = new_stat (lang_target_statement
, stat_ptr
);
6217 lang_add_map (const char *name
)
6224 map_option_f
= TRUE
;
6232 lang_add_fill (fill_type
*fill
)
6234 lang_fill_statement_type
*new;
6236 new = new_stat (lang_fill_statement
, stat_ptr
);
6241 lang_add_data (int type
, union etree_union
*exp
)
6243 lang_data_statement_type
*new;
6245 new = new_stat (lang_data_statement
, stat_ptr
);
6250 /* Create a new reloc statement. RELOC is the BFD relocation type to
6251 generate. HOWTO is the corresponding howto structure (we could
6252 look this up, but the caller has already done so). SECTION is the
6253 section to generate a reloc against, or NAME is the name of the
6254 symbol to generate a reloc against. Exactly one of SECTION and
6255 NAME must be NULL. ADDEND is an expression for the addend. */
6258 lang_add_reloc (bfd_reloc_code_real_type reloc
,
6259 reloc_howto_type
*howto
,
6262 union etree_union
*addend
)
6264 lang_reloc_statement_type
*p
= new_stat (lang_reloc_statement
, stat_ptr
);
6268 p
->section
= section
;
6270 p
->addend_exp
= addend
;
6272 p
->addend_value
= 0;
6273 p
->output_section
= NULL
;
6274 p
->output_offset
= 0;
6277 lang_assignment_statement_type
*
6278 lang_add_assignment (etree_type
*exp
)
6280 lang_assignment_statement_type
*new;
6282 new = new_stat (lang_assignment_statement
, stat_ptr
);
6288 lang_add_attribute (enum statement_enum attribute
)
6290 new_statement (attribute
, sizeof (lang_statement_header_type
), stat_ptr
);
6294 lang_startup (const char *name
)
6296 if (startup_file
!= NULL
)
6298 einfo (_("%P%F: multiple STARTUP files\n"));
6300 first_file
->filename
= name
;
6301 first_file
->local_sym_name
= name
;
6302 first_file
->real
= TRUE
;
6304 startup_file
= name
;
6308 lang_float (bfd_boolean maybe
)
6310 lang_float_flag
= maybe
;
6314 /* Work out the load- and run-time regions from a script statement, and
6315 store them in *LMA_REGION and *REGION respectively.
6317 MEMSPEC is the name of the run-time region, or the value of
6318 DEFAULT_MEMORY_REGION if the statement didn't specify one.
6319 LMA_MEMSPEC is the name of the load-time region, or null if the
6320 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
6321 had an explicit load address.
6323 It is an error to specify both a load region and a load address. */
6326 lang_get_regions (lang_memory_region_type
**region
,
6327 lang_memory_region_type
**lma_region
,
6328 const char *memspec
,
6329 const char *lma_memspec
,
6330 bfd_boolean have_lma
,
6331 bfd_boolean have_vma
)
6333 *lma_region
= lang_memory_region_lookup (lma_memspec
, FALSE
);
6335 /* If no runtime region or VMA has been specified, but the load region
6336 has been specified, then use the load region for the runtime region
6338 if (lma_memspec
!= NULL
6340 && strcmp (memspec
, DEFAULT_MEMORY_REGION
) == 0)
6341 *region
= *lma_region
;
6343 *region
= lang_memory_region_lookup (memspec
, FALSE
);
6345 if (have_lma
&& lma_memspec
!= 0)
6346 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
6350 lang_leave_output_section_statement (fill_type
*fill
, const char *memspec
,
6351 lang_output_section_phdr_list
*phdrs
,
6352 const char *lma_memspec
)
6354 lang_get_regions (¤t_section
->region
,
6355 ¤t_section
->lma_region
,
6356 memspec
, lma_memspec
,
6357 current_section
->load_base
!= NULL
,
6358 current_section
->addr_tree
!= NULL
);
6359 current_section
->fill
= fill
;
6360 current_section
->phdrs
= phdrs
;
6361 stat_ptr
= &statement_list
;
6364 /* Create an absolute symbol with the given name with the value of the
6365 address of first byte of the section named.
6367 If the symbol already exists, then do nothing. */
6370 lang_abs_symbol_at_beginning_of (const char *secname
, const char *name
)
6372 struct bfd_link_hash_entry
*h
;
6374 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, TRUE
, TRUE
);
6376 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6378 if (h
->type
== bfd_link_hash_new
6379 || h
->type
== bfd_link_hash_undefined
)
6383 h
->type
= bfd_link_hash_defined
;
6385 sec
= bfd_get_section_by_name (link_info
.output_bfd
, secname
);
6389 h
->u
.def
.value
= bfd_get_section_vma (link_info
.output_bfd
, sec
);
6391 h
->u
.def
.section
= bfd_abs_section_ptr
;
6395 /* Create an absolute symbol with the given name with the value of the
6396 address of the first byte after the end of the section named.
6398 If the symbol already exists, then do nothing. */
6401 lang_abs_symbol_at_end_of (const char *secname
, const char *name
)
6403 struct bfd_link_hash_entry
*h
;
6405 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, TRUE
, TRUE
);
6407 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6409 if (h
->type
== bfd_link_hash_new
6410 || h
->type
== bfd_link_hash_undefined
)
6414 h
->type
= bfd_link_hash_defined
;
6416 sec
= bfd_get_section_by_name (link_info
.output_bfd
, secname
);
6420 h
->u
.def
.value
= (bfd_get_section_vma (link_info
.output_bfd
, sec
)
6421 + TO_ADDR (sec
->size
));
6423 h
->u
.def
.section
= bfd_abs_section_ptr
;
6428 lang_statement_append (lang_statement_list_type
*list
,
6429 lang_statement_union_type
*element
,
6430 lang_statement_union_type
**field
)
6432 *(list
->tail
) = element
;
6436 /* Set the output format type. -oformat overrides scripts. */
6439 lang_add_output_format (const char *format
,
6444 if (output_target
== NULL
|| !from_script
)
6446 if (command_line
.endian
== ENDIAN_BIG
6449 else if (command_line
.endian
== ENDIAN_LITTLE
6453 output_target
= format
;
6458 lang_add_insert (const char *where
, int is_before
)
6460 lang_insert_statement_type
*new;
6462 new = new_stat (lang_insert_statement
, stat_ptr
);
6464 new->is_before
= is_before
;
6465 saved_script_handle
= previous_script_handle
;
6468 /* Enter a group. This creates a new lang_group_statement, and sets
6469 stat_ptr to build new statements within the group. */
6472 lang_enter_group (void)
6474 lang_group_statement_type
*g
;
6476 g
= new_stat (lang_group_statement
, stat_ptr
);
6477 lang_list_init (&g
->children
);
6478 stat_ptr
= &g
->children
;
6481 /* Leave a group. This just resets stat_ptr to start writing to the
6482 regular list of statements again. Note that this will not work if
6483 groups can occur inside anything else which can adjust stat_ptr,
6484 but currently they can't. */
6487 lang_leave_group (void)
6489 stat_ptr
= &statement_list
;
6492 /* Add a new program header. This is called for each entry in a PHDRS
6493 command in a linker script. */
6496 lang_new_phdr (const char *name
,
6498 bfd_boolean filehdr
,
6503 struct lang_phdr
*n
, **pp
;
6505 n
= stat_alloc (sizeof (struct lang_phdr
));
6508 n
->type
= exp_get_value_int (type
, 0, "program header type");
6509 n
->filehdr
= filehdr
;
6514 for (pp
= &lang_phdr_list
; *pp
!= NULL
; pp
= &(*pp
)->next
)
6519 /* Record the program header information in the output BFD. FIXME: We
6520 should not be calling an ELF specific function here. */
6523 lang_record_phdrs (void)
6527 lang_output_section_phdr_list
*last
;
6528 struct lang_phdr
*l
;
6529 lang_output_section_statement_type
*os
;
6532 secs
= xmalloc (alc
* sizeof (asection
*));
6535 for (l
= lang_phdr_list
; l
!= NULL
; l
= l
->next
)
6542 for (os
= &lang_output_section_statement
.head
->output_section_statement
;
6546 lang_output_section_phdr_list
*pl
;
6548 if (os
->constraint
== -1)
6556 if (os
->sectype
== noload_section
6557 || os
->bfd_section
== NULL
6558 || (os
->bfd_section
->flags
& SEC_ALLOC
) == 0)
6563 lang_output_section_statement_type
* tmp_os
;
6565 /* If we have not run across a section with a program
6566 header assigned to it yet, then scan forwards to find
6567 one. This prevents inconsistencies in the linker's
6568 behaviour when a script has specified just a single
6569 header and there are sections in that script which are
6570 not assigned to it, and which occur before the first
6571 use of that header. See here for more details:
6572 http://sourceware.org/ml/binutils/2007-02/msg00291.html */
6573 for (tmp_os
= os
; tmp_os
; tmp_os
= tmp_os
->next
)
6576 last
= tmp_os
->phdrs
;
6580 einfo (_("%F%P: no sections assigned to phdrs\n"));
6585 if (os
->bfd_section
== NULL
)
6588 for (; pl
!= NULL
; pl
= pl
->next
)
6590 if (strcmp (pl
->name
, l
->name
) == 0)
6595 secs
= xrealloc (secs
, alc
* sizeof (asection
*));
6597 secs
[c
] = os
->bfd_section
;
6604 if (l
->flags
== NULL
)
6607 flags
= exp_get_vma (l
->flags
, 0, "phdr flags");
6612 at
= exp_get_vma (l
->at
, 0, "phdr load address");
6614 if (! bfd_record_phdr (link_info
.output_bfd
, l
->type
,
6615 l
->flags
!= NULL
, flags
, l
->at
!= NULL
,
6616 at
, l
->filehdr
, l
->phdrs
, c
, secs
))
6617 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
6622 /* Make sure all the phdr assignments succeeded. */
6623 for (os
= &lang_output_section_statement
.head
->output_section_statement
;
6627 lang_output_section_phdr_list
*pl
;
6629 if (os
->constraint
== -1
6630 || os
->bfd_section
== NULL
)
6633 for (pl
= os
->phdrs
;
6636 if (! pl
->used
&& strcmp (pl
->name
, "NONE") != 0)
6637 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
6638 os
->name
, pl
->name
);
6642 /* Record a list of sections which may not be cross referenced. */
6645 lang_add_nocrossref (lang_nocrossref_type
*l
)
6647 struct lang_nocrossrefs
*n
;
6649 n
= xmalloc (sizeof *n
);
6650 n
->next
= nocrossref_list
;
6652 nocrossref_list
= n
;
6654 /* Set notice_all so that we get informed about all symbols. */
6655 link_info
.notice_all
= TRUE
;
6658 /* Overlay handling. We handle overlays with some static variables. */
6660 /* The overlay virtual address. */
6661 static etree_type
*overlay_vma
;
6662 /* And subsection alignment. */
6663 static etree_type
*overlay_subalign
;
6665 /* An expression for the maximum section size seen so far. */
6666 static etree_type
*overlay_max
;
6668 /* A list of all the sections in this overlay. */
6670 struct overlay_list
{
6671 struct overlay_list
*next
;
6672 lang_output_section_statement_type
*os
;
6675 static struct overlay_list
*overlay_list
;
6677 /* Start handling an overlay. */
6680 lang_enter_overlay (etree_type
*vma_expr
, etree_type
*subalign
)
6682 /* The grammar should prevent nested overlays from occurring. */
6683 ASSERT (overlay_vma
== NULL
6684 && overlay_subalign
== NULL
6685 && overlay_max
== NULL
);
6687 overlay_vma
= vma_expr
;
6688 overlay_subalign
= subalign
;
6691 /* Start a section in an overlay. We handle this by calling
6692 lang_enter_output_section_statement with the correct VMA.
6693 lang_leave_overlay sets up the LMA and memory regions. */
6696 lang_enter_overlay_section (const char *name
)
6698 struct overlay_list
*n
;
6701 lang_enter_output_section_statement (name
, overlay_vma
, overlay_section
,
6702 0, overlay_subalign
, 0, 0);
6704 /* If this is the first section, then base the VMA of future
6705 sections on this one. This will work correctly even if `.' is
6706 used in the addresses. */
6707 if (overlay_list
== NULL
)
6708 overlay_vma
= exp_nameop (ADDR
, name
);
6710 /* Remember the section. */
6711 n
= xmalloc (sizeof *n
);
6712 n
->os
= current_section
;
6713 n
->next
= overlay_list
;
6716 size
= exp_nameop (SIZEOF
, name
);
6718 /* Arrange to work out the maximum section end address. */
6719 if (overlay_max
== NULL
)
6722 overlay_max
= exp_binop (MAX_K
, overlay_max
, size
);
6725 /* Finish a section in an overlay. There isn't any special to do
6729 lang_leave_overlay_section (fill_type
*fill
,
6730 lang_output_section_phdr_list
*phdrs
)
6737 name
= current_section
->name
;
6739 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
6740 region and that no load-time region has been specified. It doesn't
6741 really matter what we say here, since lang_leave_overlay will
6743 lang_leave_output_section_statement (fill
, DEFAULT_MEMORY_REGION
, phdrs
, 0);
6745 /* Define the magic symbols. */
6747 clean
= xmalloc (strlen (name
) + 1);
6749 for (s1
= name
; *s1
!= '\0'; s1
++)
6750 if (ISALNUM (*s1
) || *s1
== '_')
6754 buf
= xmalloc (strlen (clean
) + sizeof "__load_start_");
6755 sprintf (buf
, "__load_start_%s", clean
);
6756 lang_add_assignment (exp_provide (buf
,
6757 exp_nameop (LOADADDR
, name
),
6760 buf
= xmalloc (strlen (clean
) + sizeof "__load_stop_");
6761 sprintf (buf
, "__load_stop_%s", clean
);
6762 lang_add_assignment (exp_provide (buf
,
6764 exp_nameop (LOADADDR
, name
),
6765 exp_nameop (SIZEOF
, name
)),
6771 /* Finish an overlay. If there are any overlay wide settings, this
6772 looks through all the sections in the overlay and sets them. */
6775 lang_leave_overlay (etree_type
*lma_expr
,
6778 const char *memspec
,
6779 lang_output_section_phdr_list
*phdrs
,
6780 const char *lma_memspec
)
6782 lang_memory_region_type
*region
;
6783 lang_memory_region_type
*lma_region
;
6784 struct overlay_list
*l
;
6785 lang_nocrossref_type
*nocrossref
;
6787 lang_get_regions (®ion
, &lma_region
,
6788 memspec
, lma_memspec
,
6789 lma_expr
!= NULL
, FALSE
);
6793 /* After setting the size of the last section, set '.' to end of the
6795 if (overlay_list
!= NULL
)
6796 overlay_list
->os
->update_dot_tree
6797 = exp_assop ('=', ".", exp_binop ('+', overlay_vma
, overlay_max
));
6802 struct overlay_list
*next
;
6804 if (fill
!= NULL
&& l
->os
->fill
== NULL
)
6807 l
->os
->region
= region
;
6808 l
->os
->lma_region
= lma_region
;
6810 /* The first section has the load address specified in the
6811 OVERLAY statement. The rest are worked out from that.
6812 The base address is not needed (and should be null) if
6813 an LMA region was specified. */
6816 l
->os
->load_base
= lma_expr
;
6817 l
->os
->sectype
= normal_section
;
6819 if (phdrs
!= NULL
&& l
->os
->phdrs
== NULL
)
6820 l
->os
->phdrs
= phdrs
;
6824 lang_nocrossref_type
*nc
;
6826 nc
= xmalloc (sizeof *nc
);
6827 nc
->name
= l
->os
->name
;
6828 nc
->next
= nocrossref
;
6837 if (nocrossref
!= NULL
)
6838 lang_add_nocrossref (nocrossref
);
6841 overlay_list
= NULL
;
6845 /* Version handling. This is only useful for ELF. */
6847 /* This global variable holds the version tree that we build. */
6849 struct bfd_elf_version_tree
*lang_elf_version_info
;
6851 /* If PREV is NULL, return first version pattern matching particular symbol.
6852 If PREV is non-NULL, return first version pattern matching particular
6853 symbol after PREV (previously returned by lang_vers_match). */
6855 static struct bfd_elf_version_expr
*
6856 lang_vers_match (struct bfd_elf_version_expr_head
*head
,
6857 struct bfd_elf_version_expr
*prev
,
6860 const char *cxx_sym
= sym
;
6861 const char *java_sym
= sym
;
6862 struct bfd_elf_version_expr
*expr
= NULL
;
6864 if (head
->mask
& BFD_ELF_VERSION_CXX_TYPE
)
6866 cxx_sym
= cplus_demangle (sym
, DMGL_PARAMS
| DMGL_ANSI
);
6870 if (head
->mask
& BFD_ELF_VERSION_JAVA_TYPE
)
6872 java_sym
= cplus_demangle (sym
, DMGL_JAVA
);
6877 if (head
->htab
&& (prev
== NULL
|| prev
->symbol
))
6879 struct bfd_elf_version_expr e
;
6881 switch (prev
? prev
->mask
: 0)
6884 if (head
->mask
& BFD_ELF_VERSION_C_TYPE
)
6887 expr
= htab_find (head
->htab
, &e
);
6888 while (expr
&& strcmp (expr
->symbol
, sym
) == 0)
6889 if (expr
->mask
== BFD_ELF_VERSION_C_TYPE
)
6895 case BFD_ELF_VERSION_C_TYPE
:
6896 if (head
->mask
& BFD_ELF_VERSION_CXX_TYPE
)
6899 expr
= htab_find (head
->htab
, &e
);
6900 while (expr
&& strcmp (expr
->symbol
, cxx_sym
) == 0)
6901 if (expr
->mask
== BFD_ELF_VERSION_CXX_TYPE
)
6907 case BFD_ELF_VERSION_CXX_TYPE
:
6908 if (head
->mask
& BFD_ELF_VERSION_JAVA_TYPE
)
6910 e
.symbol
= java_sym
;
6911 expr
= htab_find (head
->htab
, &e
);
6912 while (expr
&& strcmp (expr
->symbol
, java_sym
) == 0)
6913 if (expr
->mask
== BFD_ELF_VERSION_JAVA_TYPE
)
6924 /* Finally, try the wildcards. */
6925 if (prev
== NULL
|| prev
->symbol
)
6926 expr
= head
->remaining
;
6929 for (; expr
; expr
= expr
->next
)
6936 if (expr
->pattern
[0] == '*' && expr
->pattern
[1] == '\0')
6939 if (expr
->mask
== BFD_ELF_VERSION_JAVA_TYPE
)
6941 else if (expr
->mask
== BFD_ELF_VERSION_CXX_TYPE
)
6945 if (fnmatch (expr
->pattern
, s
, 0) == 0)
6951 free ((char *) cxx_sym
);
6952 if (java_sym
!= sym
)
6953 free ((char *) java_sym
);
6957 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
6958 return a string pointing to the symbol name. */
6961 realsymbol (const char *pattern
)
6964 bfd_boolean changed
= FALSE
, backslash
= FALSE
;
6965 char *s
, *symbol
= xmalloc (strlen (pattern
) + 1);
6967 for (p
= pattern
, s
= symbol
; *p
!= '\0'; ++p
)
6969 /* It is a glob pattern only if there is no preceding
6971 if (! backslash
&& (*p
== '?' || *p
== '*' || *p
== '['))
6979 /* Remove the preceding backslash. */
6986 backslash
= *p
== '\\';
7001 /* This is called for each variable name or match expression. NEW is
7002 the name of the symbol to match, or, if LITERAL_P is FALSE, a glob
7003 pattern to be matched against symbol names. */
7005 struct bfd_elf_version_expr
*
7006 lang_new_vers_pattern (struct bfd_elf_version_expr
*orig
,
7009 bfd_boolean literal_p
)
7011 struct bfd_elf_version_expr
*ret
;
7013 ret
= xmalloc (sizeof *ret
);
7015 ret
->pattern
= literal_p
? NULL
: new;
7018 ret
->symbol
= literal_p
? new : realsymbol (new);
7020 if (lang
== NULL
|| strcasecmp (lang
, "C") == 0)
7021 ret
->mask
= BFD_ELF_VERSION_C_TYPE
;
7022 else if (strcasecmp (lang
, "C++") == 0)
7023 ret
->mask
= BFD_ELF_VERSION_CXX_TYPE
;
7024 else if (strcasecmp (lang
, "Java") == 0)
7025 ret
->mask
= BFD_ELF_VERSION_JAVA_TYPE
;
7028 einfo (_("%X%P: unknown language `%s' in version information\n"),
7030 ret
->mask
= BFD_ELF_VERSION_C_TYPE
;
7033 return ldemul_new_vers_pattern (ret
);
7036 /* This is called for each set of variable names and match
7039 struct bfd_elf_version_tree
*
7040 lang_new_vers_node (struct bfd_elf_version_expr
*globals
,
7041 struct bfd_elf_version_expr
*locals
)
7043 struct bfd_elf_version_tree
*ret
;
7045 ret
= xcalloc (1, sizeof *ret
);
7046 ret
->globals
.list
= globals
;
7047 ret
->locals
.list
= locals
;
7048 ret
->match
= lang_vers_match
;
7049 ret
->name_indx
= (unsigned int) -1;
7053 /* This static variable keeps track of version indices. */
7055 static int version_index
;
7058 version_expr_head_hash (const void *p
)
7060 const struct bfd_elf_version_expr
*e
= p
;
7062 return htab_hash_string (e
->symbol
);
7066 version_expr_head_eq (const void *p1
, const void *p2
)
7068 const struct bfd_elf_version_expr
*e1
= p1
;
7069 const struct bfd_elf_version_expr
*e2
= p2
;
7071 return strcmp (e1
->symbol
, e2
->symbol
) == 0;
7075 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head
*head
)
7078 struct bfd_elf_version_expr
*e
, *next
;
7079 struct bfd_elf_version_expr
**list_loc
, **remaining_loc
;
7081 for (e
= head
->list
; e
; e
= e
->next
)
7085 head
->mask
|= e
->mask
;
7090 head
->htab
= htab_create (count
* 2, version_expr_head_hash
,
7091 version_expr_head_eq
, NULL
);
7092 list_loc
= &head
->list
;
7093 remaining_loc
= &head
->remaining
;
7094 for (e
= head
->list
; e
; e
= next
)
7100 remaining_loc
= &e
->next
;
7104 void **loc
= htab_find_slot (head
->htab
, e
, INSERT
);
7108 struct bfd_elf_version_expr
*e1
, *last
;
7114 if (e1
->mask
== e
->mask
)
7122 while (e1
&& strcmp (e1
->symbol
, e
->symbol
) == 0);
7126 /* This is a duplicate. */
7127 /* FIXME: Memory leak. Sometimes pattern is not
7128 xmalloced alone, but in larger chunk of memory. */
7129 /* free (e->symbol); */
7134 e
->next
= last
->next
;
7142 list_loc
= &e
->next
;
7146 *remaining_loc
= NULL
;
7147 *list_loc
= head
->remaining
;
7150 head
->remaining
= head
->list
;
7153 /* This is called when we know the name and dependencies of the
7157 lang_register_vers_node (const char *name
,
7158 struct bfd_elf_version_tree
*version
,
7159 struct bfd_elf_version_deps
*deps
)
7161 struct bfd_elf_version_tree
*t
, **pp
;
7162 struct bfd_elf_version_expr
*e1
;
7167 if ((name
[0] == '\0' && lang_elf_version_info
!= NULL
)
7168 || (lang_elf_version_info
&& lang_elf_version_info
->name
[0] == '\0'))
7170 einfo (_("%X%P: anonymous version tag cannot be combined"
7171 " with other version tags\n"));
7176 /* Make sure this node has a unique name. */
7177 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
7178 if (strcmp (t
->name
, name
) == 0)
7179 einfo (_("%X%P: duplicate version tag `%s'\n"), name
);
7181 lang_finalize_version_expr_head (&version
->globals
);
7182 lang_finalize_version_expr_head (&version
->locals
);
7184 /* Check the global and local match names, and make sure there
7185 aren't any duplicates. */
7187 for (e1
= version
->globals
.list
; e1
!= NULL
; e1
= e1
->next
)
7189 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
7191 struct bfd_elf_version_expr
*e2
;
7193 if (t
->locals
.htab
&& e1
->symbol
)
7195 e2
= htab_find (t
->locals
.htab
, e1
);
7196 while (e2
&& strcmp (e1
->symbol
, e2
->symbol
) == 0)
7198 if (e1
->mask
== e2
->mask
)
7199 einfo (_("%X%P: duplicate expression `%s'"
7200 " in version information\n"), e1
->symbol
);
7204 else if (!e1
->symbol
)
7205 for (e2
= t
->locals
.remaining
; e2
!= NULL
; e2
= e2
->next
)
7206 if (strcmp (e1
->pattern
, e2
->pattern
) == 0
7207 && e1
->mask
== e2
->mask
)
7208 einfo (_("%X%P: duplicate expression `%s'"
7209 " in version information\n"), e1
->pattern
);
7213 for (e1
= version
->locals
.list
; e1
!= NULL
; e1
= e1
->next
)
7215 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
7217 struct bfd_elf_version_expr
*e2
;
7219 if (t
->globals
.htab
&& e1
->symbol
)
7221 e2
= htab_find (t
->globals
.htab
, e1
);
7222 while (e2
&& strcmp (e1
->symbol
, e2
->symbol
) == 0)
7224 if (e1
->mask
== e2
->mask
)
7225 einfo (_("%X%P: duplicate expression `%s'"
7226 " in version information\n"),
7231 else if (!e1
->symbol
)
7232 for (e2
= t
->globals
.remaining
; e2
!= NULL
; e2
= e2
->next
)
7233 if (strcmp (e1
->pattern
, e2
->pattern
) == 0
7234 && e1
->mask
== e2
->mask
)
7235 einfo (_("%X%P: duplicate expression `%s'"
7236 " in version information\n"), e1
->pattern
);
7240 version
->deps
= deps
;
7241 version
->name
= name
;
7242 if (name
[0] != '\0')
7245 version
->vernum
= version_index
;
7248 version
->vernum
= 0;
7250 for (pp
= &lang_elf_version_info
; *pp
!= NULL
; pp
= &(*pp
)->next
)
7255 /* This is called when we see a version dependency. */
7257 struct bfd_elf_version_deps
*
7258 lang_add_vers_depend (struct bfd_elf_version_deps
*list
, const char *name
)
7260 struct bfd_elf_version_deps
*ret
;
7261 struct bfd_elf_version_tree
*t
;
7263 ret
= xmalloc (sizeof *ret
);
7266 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
7268 if (strcmp (t
->name
, name
) == 0)
7270 ret
->version_needed
= t
;
7275 einfo (_("%X%P: unable to find version dependency `%s'\n"), name
);
7281 lang_do_version_exports_section (void)
7283 struct bfd_elf_version_expr
*greg
= NULL
, *lreg
;
7285 LANG_FOR_EACH_INPUT_STATEMENT (is
)
7287 asection
*sec
= bfd_get_section_by_name (is
->the_bfd
, ".exports");
7295 contents
= xmalloc (len
);
7296 if (!bfd_get_section_contents (is
->the_bfd
, sec
, contents
, 0, len
))
7297 einfo (_("%X%P: unable to read .exports section contents\n"), sec
);
7300 while (p
< contents
+ len
)
7302 greg
= lang_new_vers_pattern (greg
, p
, NULL
, FALSE
);
7303 p
= strchr (p
, '\0') + 1;
7306 /* Do not free the contents, as we used them creating the regex. */
7308 /* Do not include this section in the link. */
7309 sec
->flags
|= SEC_EXCLUDE
| SEC_KEEP
;
7312 lreg
= lang_new_vers_pattern (NULL
, "*", NULL
, FALSE
);
7313 lang_register_vers_node (command_line
.version_exports_section
,
7314 lang_new_vers_node (greg
, lreg
), NULL
);
7318 lang_add_unique (const char *name
)
7320 struct unique_sections
*ent
;
7322 for (ent
= unique_section_list
; ent
; ent
= ent
->next
)
7323 if (strcmp (ent
->name
, name
) == 0)
7326 ent
= xmalloc (sizeof *ent
);
7327 ent
->name
= xstrdup (name
);
7328 ent
->next
= unique_section_list
;
7329 unique_section_list
= ent
;
7332 /* Append the list of dynamic symbols to the existing one. */
7335 lang_append_dynamic_list (struct bfd_elf_version_expr
*dynamic
)
7337 if (link_info
.dynamic_list
)
7339 struct bfd_elf_version_expr
*tail
;
7340 for (tail
= dynamic
; tail
->next
!= NULL
; tail
= tail
->next
)
7342 tail
->next
= link_info
.dynamic_list
->head
.list
;
7343 link_info
.dynamic_list
->head
.list
= dynamic
;
7347 struct bfd_elf_dynamic_list
*d
;
7349 d
= xcalloc (1, sizeof *d
);
7350 d
->head
.list
= dynamic
;
7351 d
->match
= lang_vers_match
;
7352 link_info
.dynamic_list
= d
;
7356 /* Append the list of C++ typeinfo dynamic symbols to the existing
7360 lang_append_dynamic_list_cpp_typeinfo (void)
7362 const char * symbols
[] =
7364 "typeinfo name for*",
7367 struct bfd_elf_version_expr
*dynamic
= NULL
;
7370 for (i
= 0; i
< ARRAY_SIZE (symbols
); i
++)
7371 dynamic
= lang_new_vers_pattern (dynamic
, symbols
[i
], "C++",
7374 lang_append_dynamic_list (dynamic
);
7377 /* Append the list of C++ operator new and delete dynamic symbols to the
7381 lang_append_dynamic_list_cpp_new (void)
7383 const char * symbols
[] =
7388 struct bfd_elf_version_expr
*dynamic
= NULL
;
7391 for (i
= 0; i
< ARRAY_SIZE (symbols
); i
++)
7392 dynamic
= lang_new_vers_pattern (dynamic
, symbols
[i
], "C++",
7395 lang_append_dynamic_list (dynamic
);