1 /* Linker command language support.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006
4 Free Software Foundation, Inc.
6 This file is part of GLD, the Gnu Linker.
8 GLD 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 2, or (at your option)
13 GLD 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 GLD; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
25 #include "libiberty.h"
26 #include "safe-ctype.h"
45 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
48 /* Binary search tree structure to
49 efficiently sort sections by name. */
50 typedef struct lang_section_bst
53 struct lang_section_bst
*left
;
54 struct lang_section_bst
*right
;
55 } lang_section_bst_type
;
57 /* Locals variables. */
58 static struct obstack stat_obstack
;
59 static struct obstack map_obstack
;
61 #define obstack_chunk_alloc xmalloc
62 #define obstack_chunk_free free
63 static const char *startup_file
;
64 static lang_statement_list_type input_file_chain
;
65 static bfd_boolean placed_commons
= FALSE
;
66 static bfd_boolean stripped_excluded_sections
= FALSE
;
67 static lang_output_section_statement_type
*default_common_section
;
68 static bfd_boolean map_option_f
;
69 static bfd_vma print_dot
;
70 static lang_input_statement_type
*first_file
;
71 static const char *current_target
;
72 static const char *output_target
;
73 static lang_statement_list_type statement_list
;
74 static struct bfd_hash_table lang_definedness_table
;
76 /* Forward declarations. */
77 static void exp_init_os (etree_type
*);
78 static void init_map_userdata (bfd
*, asection
*, void *);
79 static lang_input_statement_type
*lookup_name (const char *);
80 static bfd_boolean
load_symbols (lang_input_statement_type
*,
81 lang_statement_list_type
*);
82 static struct bfd_hash_entry
*lang_definedness_newfunc
83 (struct bfd_hash_entry
*, struct bfd_hash_table
*, const char *);
84 static void insert_undefined (const char *);
85 static bfd_boolean
sort_def_symbol (struct bfd_link_hash_entry
*, void *);
86 static void print_statement (lang_statement_union_type
*,
87 lang_output_section_statement_type
*);
88 static void print_statement_list (lang_statement_union_type
*,
89 lang_output_section_statement_type
*);
90 static void print_statements (void);
91 static void print_input_section (asection
*);
92 static bfd_boolean
lang_one_common (struct bfd_link_hash_entry
*, void *);
93 static void lang_record_phdrs (void);
94 static void lang_do_version_exports_section (void);
96 /* Exported variables. */
97 lang_output_section_statement_type
*abs_output_section
;
98 lang_statement_list_type lang_output_section_statement
;
99 lang_statement_list_type
*stat_ptr
= &statement_list
;
100 lang_statement_list_type file_chain
= { NULL
, NULL
};
101 struct bfd_sym_chain entry_symbol
= { NULL
, NULL
};
102 static const char *entry_symbol_default
= "start";
103 const char *entry_section
= ".text";
104 bfd_boolean entry_from_cmdline
;
105 bfd_boolean lang_has_input_file
= FALSE
;
106 bfd_boolean had_output_filename
= FALSE
;
107 bfd_boolean lang_float_flag
= FALSE
;
108 bfd_boolean delete_output_file_on_failure
= FALSE
;
109 struct lang_phdr
*lang_phdr_list
;
110 struct lang_nocrossrefs
*nocrossref_list
;
111 static struct unique_sections
*unique_section_list
;
112 static bfd_boolean ldlang_sysrooted_script
= FALSE
;
114 /* Functions that traverse the linker script and might evaluate
115 DEFINED() need to increment this. */
116 int lang_statement_iteration
= 0;
118 etree_type
*base
; /* Relocation base - or null */
120 /* Return TRUE if the PATTERN argument is a wildcard pattern.
121 Although backslashes are treated specially if a pattern contains
122 wildcards, we do not consider the mere presence of a backslash to
123 be enough to cause the pattern to be treated as a wildcard.
124 That lets us handle DOS filenames more naturally. */
125 #define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL)
127 #define new_stat(x, y) \
128 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
130 #define outside_section_address(q) \
131 ((q)->output_offset + (q)->output_section->vma)
133 #define outside_symbol_address(q) \
134 ((q)->value + outside_section_address (q->section))
136 #define SECTION_NAME_MAP_LENGTH (16)
139 stat_alloc (size_t size
)
141 return obstack_alloc (&stat_obstack
, size
);
145 unique_section_p (const asection
*sec
)
147 struct unique_sections
*unam
;
150 if (link_info
.relocatable
151 && sec
->owner
!= NULL
152 && bfd_is_group_section (sec
->owner
, sec
))
156 for (unam
= unique_section_list
; unam
; unam
= unam
->next
)
157 if (wildcardp (unam
->name
)
158 ? fnmatch (unam
->name
, secnam
, 0) == 0
159 : strcmp (unam
->name
, secnam
) == 0)
167 /* Generic traversal routines for finding matching sections. */
169 /* Try processing a section against a wildcard. This just calls
170 the callback unless the filename exclusion list is present
171 and excludes the file. It's hardly ever present so this
172 function is very fast. */
175 walk_wild_consider_section (lang_wild_statement_type
*ptr
,
176 lang_input_statement_type
*file
,
178 struct wildcard_list
*sec
,
182 bfd_boolean skip
= FALSE
;
183 struct name_list
*list_tmp
;
185 /* Don't process sections from files which were
187 for (list_tmp
= sec
->spec
.exclude_name_list
;
189 list_tmp
= list_tmp
->next
)
191 bfd_boolean is_wildcard
= wildcardp (list_tmp
->name
);
193 skip
= fnmatch (list_tmp
->name
, file
->filename
, 0) == 0;
195 skip
= strcmp (list_tmp
->name
, file
->filename
) == 0;
197 /* If this file is part of an archive, and the archive is
198 excluded, exclude this file. */
199 if (! skip
&& file
->the_bfd
!= NULL
200 && file
->the_bfd
->my_archive
!= NULL
201 && file
->the_bfd
->my_archive
->filename
!= NULL
)
204 skip
= fnmatch (list_tmp
->name
,
205 file
->the_bfd
->my_archive
->filename
,
208 skip
= strcmp (list_tmp
->name
,
209 file
->the_bfd
->my_archive
->filename
) == 0;
217 (*callback
) (ptr
, sec
, s
, file
, data
);
220 /* Lowest common denominator routine that can handle everything correctly,
224 walk_wild_section_general (lang_wild_statement_type
*ptr
,
225 lang_input_statement_type
*file
,
230 struct wildcard_list
*sec
;
232 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
234 sec
= ptr
->section_list
;
236 (*callback
) (ptr
, sec
, s
, file
, data
);
240 bfd_boolean skip
= FALSE
;
242 if (sec
->spec
.name
!= NULL
)
244 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
246 if (wildcardp (sec
->spec
.name
))
247 skip
= fnmatch (sec
->spec
.name
, sname
, 0) != 0;
249 skip
= strcmp (sec
->spec
.name
, sname
) != 0;
253 walk_wild_consider_section (ptr
, file
, s
, sec
, callback
, data
);
260 /* Routines to find a single section given its name. If there's more
261 than one section with that name, we report that. */
265 asection
*found_section
;
266 bfd_boolean multiple_sections_found
;
267 } section_iterator_callback_data
;
270 section_iterator_callback (bfd
*bfd ATTRIBUTE_UNUSED
, asection
*s
, void *data
)
272 section_iterator_callback_data
*d
= data
;
274 if (d
->found_section
!= NULL
)
276 d
->multiple_sections_found
= TRUE
;
280 d
->found_section
= s
;
285 find_section (lang_input_statement_type
*file
,
286 struct wildcard_list
*sec
,
287 bfd_boolean
*multiple_sections_found
)
289 section_iterator_callback_data cb_data
= { NULL
, FALSE
};
291 bfd_get_section_by_name_if (file
->the_bfd
, sec
->spec
.name
,
292 section_iterator_callback
, &cb_data
);
293 *multiple_sections_found
= cb_data
.multiple_sections_found
;
294 return cb_data
.found_section
;
297 /* Code for handling simple wildcards without going through fnmatch,
298 which can be expensive because of charset translations etc. */
300 /* A simple wild is a literal string followed by a single '*',
301 where the literal part is at least 4 characters long. */
304 is_simple_wild (const char *name
)
306 size_t len
= strcspn (name
, "*?[");
307 return len
>= 4 && name
[len
] == '*' && name
[len
+ 1] == '\0';
311 match_simple_wild (const char *pattern
, const char *name
)
313 /* The first four characters of the pattern are guaranteed valid
314 non-wildcard characters. So we can go faster. */
315 if (pattern
[0] != name
[0] || pattern
[1] != name
[1]
316 || pattern
[2] != name
[2] || pattern
[3] != name
[3])
321 while (*pattern
!= '*')
322 if (*name
++ != *pattern
++)
328 /* Compare sections ASEC and BSEC according to SORT. */
331 compare_section (sort_type sort
, asection
*asec
, asection
*bsec
)
340 case by_alignment_name
:
341 ret
= (bfd_section_alignment (bsec
->owner
, bsec
)
342 - bfd_section_alignment (asec
->owner
, asec
));
348 ret
= strcmp (bfd_get_section_name (asec
->owner
, asec
),
349 bfd_get_section_name (bsec
->owner
, bsec
));
352 case by_name_alignment
:
353 ret
= strcmp (bfd_get_section_name (asec
->owner
, asec
),
354 bfd_get_section_name (bsec
->owner
, bsec
));
360 ret
= (bfd_section_alignment (bsec
->owner
, bsec
)
361 - bfd_section_alignment (asec
->owner
, asec
));
368 /* Build a Binary Search Tree to sort sections, unlike insertion sort
369 used in wild_sort(). BST is considerably faster if the number of
370 of sections are large. */
372 static lang_section_bst_type
**
373 wild_sort_fast (lang_wild_statement_type
*wild
,
374 struct wildcard_list
*sec
,
375 lang_input_statement_type
*file ATTRIBUTE_UNUSED
,
378 lang_section_bst_type
**tree
379 = (lang_section_bst_type
**) (&(wild
->handler_data
[1]));
381 if (!wild
->filenames_sorted
382 && (sec
== NULL
|| sec
->spec
.sorted
== none
))
384 /* Append at the right end of tree. */
386 tree
= &((*tree
)->right
);
392 /* Find the correct node to append this section. */
393 if (compare_section (sec
->spec
.sorted
, section
, (*tree
)->section
) < 0)
394 tree
= &((*tree
)->left
);
396 tree
= &((*tree
)->right
);
402 /* Use wild_sort_fast to build a BST to sort sections. */
405 output_section_callback_fast (lang_wild_statement_type
*ptr
,
406 struct wildcard_list
*sec
,
408 lang_input_statement_type
*file
,
409 void *output ATTRIBUTE_UNUSED
)
411 lang_section_bst_type
*node
;
412 lang_section_bst_type
**tree
;
414 if (unique_section_p (section
))
417 node
= xmalloc (sizeof (lang_section_bst_type
));
420 node
->section
= section
;
422 tree
= wild_sort_fast (ptr
, sec
, file
, section
);
427 /* Convert a sorted sections' BST back to list form. */
430 output_section_callback_tree_to_list (lang_wild_statement_type
*ptr
,
431 lang_section_bst_type
*tree
,
435 output_section_callback_tree_to_list (ptr
, tree
->left
, output
);
437 lang_add_section (& ptr
->children
, tree
->section
,
438 (lang_output_section_statement_type
*) output
);
441 output_section_callback_tree_to_list (ptr
, tree
->right
, output
);
446 /* Specialized, optimized routines for handling different kinds of
450 walk_wild_section_specs1_wild0 (lang_wild_statement_type
*ptr
,
451 lang_input_statement_type
*file
,
455 /* We can just do a hash lookup for the section with the right name.
456 But if that lookup discovers more than one section with the name
457 (should be rare), we fall back to the general algorithm because
458 we would otherwise have to sort the sections to make sure they
459 get processed in the bfd's order. */
460 bfd_boolean multiple_sections_found
;
461 struct wildcard_list
*sec0
= ptr
->handler_data
[0];
462 asection
*s0
= find_section (file
, sec0
, &multiple_sections_found
);
464 if (multiple_sections_found
)
465 walk_wild_section_general (ptr
, file
, callback
, data
);
467 walk_wild_consider_section (ptr
, file
, s0
, sec0
, callback
, data
);
471 walk_wild_section_specs1_wild1 (lang_wild_statement_type
*ptr
,
472 lang_input_statement_type
*file
,
477 struct wildcard_list
*wildsec0
= ptr
->handler_data
[0];
479 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
481 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
482 bfd_boolean skip
= !match_simple_wild (wildsec0
->spec
.name
, sname
);
485 walk_wild_consider_section (ptr
, file
, s
, wildsec0
, callback
, data
);
490 walk_wild_section_specs2_wild1 (lang_wild_statement_type
*ptr
,
491 lang_input_statement_type
*file
,
496 struct wildcard_list
*sec0
= ptr
->handler_data
[0];
497 struct wildcard_list
*wildsec1
= ptr
->handler_data
[1];
498 bfd_boolean multiple_sections_found
;
499 asection
*s0
= find_section (file
, sec0
, &multiple_sections_found
);
501 if (multiple_sections_found
)
503 walk_wild_section_general (ptr
, file
, callback
, data
);
507 /* Note that if the section was not found, s0 is NULL and
508 we'll simply never succeed the s == s0 test below. */
509 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
511 /* Recall that in this code path, a section cannot satisfy more
512 than one spec, so if s == s0 then it cannot match
515 walk_wild_consider_section (ptr
, file
, s
, sec0
, callback
, data
);
518 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
519 bfd_boolean skip
= !match_simple_wild (wildsec1
->spec
.name
, sname
);
522 walk_wild_consider_section (ptr
, file
, s
, wildsec1
, callback
,
529 walk_wild_section_specs3_wild2 (lang_wild_statement_type
*ptr
,
530 lang_input_statement_type
*file
,
535 struct wildcard_list
*sec0
= ptr
->handler_data
[0];
536 struct wildcard_list
*wildsec1
= ptr
->handler_data
[1];
537 struct wildcard_list
*wildsec2
= ptr
->handler_data
[2];
538 bfd_boolean multiple_sections_found
;
539 asection
*s0
= find_section (file
, sec0
, &multiple_sections_found
);
541 if (multiple_sections_found
)
543 walk_wild_section_general (ptr
, file
, callback
, data
);
547 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
550 walk_wild_consider_section (ptr
, file
, s
, sec0
, callback
, data
);
553 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
554 bfd_boolean skip
= !match_simple_wild (wildsec1
->spec
.name
, sname
);
557 walk_wild_consider_section (ptr
, file
, s
, wildsec1
, callback
, data
);
560 skip
= !match_simple_wild (wildsec2
->spec
.name
, sname
);
562 walk_wild_consider_section (ptr
, file
, s
, wildsec2
, callback
,
570 walk_wild_section_specs4_wild2 (lang_wild_statement_type
*ptr
,
571 lang_input_statement_type
*file
,
576 struct wildcard_list
*sec0
= ptr
->handler_data
[0];
577 struct wildcard_list
*sec1
= ptr
->handler_data
[1];
578 struct wildcard_list
*wildsec2
= ptr
->handler_data
[2];
579 struct wildcard_list
*wildsec3
= ptr
->handler_data
[3];
580 bfd_boolean multiple_sections_found
;
581 asection
*s0
= find_section (file
, sec0
, &multiple_sections_found
), *s1
;
583 if (multiple_sections_found
)
585 walk_wild_section_general (ptr
, file
, callback
, data
);
589 s1
= find_section (file
, sec1
, &multiple_sections_found
);
590 if (multiple_sections_found
)
592 walk_wild_section_general (ptr
, file
, callback
, data
);
596 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
599 walk_wild_consider_section (ptr
, file
, s
, sec0
, callback
, data
);
602 walk_wild_consider_section (ptr
, file
, s
, sec1
, callback
, data
);
605 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
606 bfd_boolean skip
= !match_simple_wild (wildsec2
->spec
.name
,
610 walk_wild_consider_section (ptr
, file
, s
, wildsec2
, callback
,
614 skip
= !match_simple_wild (wildsec3
->spec
.name
, sname
);
616 walk_wild_consider_section (ptr
, file
, s
, wildsec3
,
624 walk_wild_section (lang_wild_statement_type
*ptr
,
625 lang_input_statement_type
*file
,
629 if (file
->just_syms_flag
)
632 (*ptr
->walk_wild_section_handler
) (ptr
, file
, callback
, data
);
635 /* Returns TRUE when name1 is a wildcard spec that might match
636 something name2 can match. We're conservative: we return FALSE
637 only if the prefixes of name1 and name2 are different up to the
638 first wildcard character. */
641 wild_spec_can_overlap (const char *name1
, const char *name2
)
643 size_t prefix1_len
= strcspn (name1
, "?*[");
644 size_t prefix2_len
= strcspn (name2
, "?*[");
645 size_t min_prefix_len
;
647 /* Note that if there is no wildcard character, then we treat the
648 terminating 0 as part of the prefix. Thus ".text" won't match
649 ".text." or ".text.*", for example. */
650 if (name1
[prefix1_len
] == '\0')
652 if (name2
[prefix2_len
] == '\0')
655 min_prefix_len
= prefix1_len
< prefix2_len
? prefix1_len
: prefix2_len
;
657 return memcmp (name1
, name2
, min_prefix_len
) == 0;
660 /* Select specialized code to handle various kinds of wildcard
664 analyze_walk_wild_section_handler (lang_wild_statement_type
*ptr
)
667 int wild_name_count
= 0;
668 struct wildcard_list
*sec
;
672 ptr
->walk_wild_section_handler
= walk_wild_section_general
;
673 ptr
->handler_data
[0] = NULL
;
674 ptr
->handler_data
[1] = NULL
;
675 ptr
->handler_data
[2] = NULL
;
676 ptr
->handler_data
[3] = NULL
;
678 /* Count how many wildcard_specs there are, and how many of those
679 actually use wildcards in the name. Also, bail out if any of the
680 wildcard names are NULL. (Can this actually happen?
681 walk_wild_section used to test for it.) And bail out if any
682 of the wildcards are more complex than a simple string
683 ending in a single '*'. */
684 for (sec
= ptr
->section_list
; sec
!= NULL
; sec
= sec
->next
)
687 if (sec
->spec
.name
== NULL
)
689 if (wildcardp (sec
->spec
.name
))
692 if (!is_simple_wild (sec
->spec
.name
))
697 /* The zero-spec case would be easy to optimize but it doesn't
698 happen in practice. Likewise, more than 4 specs doesn't
699 happen in practice. */
700 if (sec_count
== 0 || sec_count
> 4)
703 /* Check that no two specs can match the same section. */
704 for (sec
= ptr
->section_list
; sec
!= NULL
; sec
= sec
->next
)
706 struct wildcard_list
*sec2
;
707 for (sec2
= sec
->next
; sec2
!= NULL
; sec2
= sec2
->next
)
709 if (wild_spec_can_overlap (sec
->spec
.name
, sec2
->spec
.name
))
714 signature
= (sec_count
<< 8) + wild_name_count
;
718 ptr
->walk_wild_section_handler
= walk_wild_section_specs1_wild0
;
721 ptr
->walk_wild_section_handler
= walk_wild_section_specs1_wild1
;
724 ptr
->walk_wild_section_handler
= walk_wild_section_specs2_wild1
;
727 ptr
->walk_wild_section_handler
= walk_wild_section_specs3_wild2
;
730 ptr
->walk_wild_section_handler
= walk_wild_section_specs4_wild2
;
736 /* Now fill the data array with pointers to the specs, first the
737 specs with non-wildcard names, then the specs with wildcard
738 names. It's OK to process the specs in different order from the
739 given order, because we've already determined that no section
740 will match more than one spec. */
742 for (sec
= ptr
->section_list
; sec
!= NULL
; sec
= sec
->next
)
743 if (!wildcardp (sec
->spec
.name
))
744 ptr
->handler_data
[data_counter
++] = sec
;
745 for (sec
= ptr
->section_list
; sec
!= NULL
; sec
= sec
->next
)
746 if (wildcardp (sec
->spec
.name
))
747 ptr
->handler_data
[data_counter
++] = sec
;
750 /* Handle a wild statement for a single file F. */
753 walk_wild_file (lang_wild_statement_type
*s
,
754 lang_input_statement_type
*f
,
758 if (f
->the_bfd
== NULL
759 || ! bfd_check_format (f
->the_bfd
, bfd_archive
))
760 walk_wild_section (s
, f
, callback
, data
);
765 /* This is an archive file. We must map each member of the
766 archive separately. */
767 member
= bfd_openr_next_archived_file (f
->the_bfd
, NULL
);
768 while (member
!= NULL
)
770 /* When lookup_name is called, it will call the add_symbols
771 entry point for the archive. For each element of the
772 archive which is included, BFD will call ldlang_add_file,
773 which will set the usrdata field of the member to the
774 lang_input_statement. */
775 if (member
->usrdata
!= NULL
)
777 walk_wild_section (s
, member
->usrdata
, callback
, data
);
780 member
= bfd_openr_next_archived_file (f
->the_bfd
, member
);
786 walk_wild (lang_wild_statement_type
*s
, callback_t callback
, void *data
)
788 const char *file_spec
= s
->filename
;
790 if (file_spec
== NULL
)
792 /* Perform the iteration over all files in the list. */
793 LANG_FOR_EACH_INPUT_STATEMENT (f
)
795 walk_wild_file (s
, f
, callback
, data
);
798 else if (wildcardp (file_spec
))
800 LANG_FOR_EACH_INPUT_STATEMENT (f
)
802 if (fnmatch (file_spec
, f
->filename
, FNM_FILE_NAME
) == 0)
803 walk_wild_file (s
, f
, callback
, data
);
808 lang_input_statement_type
*f
;
810 /* Perform the iteration over a single file. */
811 f
= lookup_name (file_spec
);
813 walk_wild_file (s
, f
, callback
, data
);
817 /* lang_for_each_statement walks the parse tree and calls the provided
818 function for each node. */
821 lang_for_each_statement_worker (void (*func
) (lang_statement_union_type
*),
822 lang_statement_union_type
*s
)
824 for (; s
!= NULL
; s
= s
->header
.next
)
828 switch (s
->header
.type
)
830 case lang_constructors_statement_enum
:
831 lang_for_each_statement_worker (func
, constructor_list
.head
);
833 case lang_output_section_statement_enum
:
834 lang_for_each_statement_worker
835 (func
, s
->output_section_statement
.children
.head
);
837 case lang_wild_statement_enum
:
838 lang_for_each_statement_worker (func
,
839 s
->wild_statement
.children
.head
);
841 case lang_group_statement_enum
:
842 lang_for_each_statement_worker (func
,
843 s
->group_statement
.children
.head
);
845 case lang_data_statement_enum
:
846 case lang_reloc_statement_enum
:
847 case lang_object_symbols_statement_enum
:
848 case lang_output_statement_enum
:
849 case lang_target_statement_enum
:
850 case lang_input_section_enum
:
851 case lang_input_statement_enum
:
852 case lang_assignment_statement_enum
:
853 case lang_padding_statement_enum
:
854 case lang_address_statement_enum
:
855 case lang_fill_statement_enum
:
865 lang_for_each_statement (void (*func
) (lang_statement_union_type
*))
867 lang_for_each_statement_worker (func
, statement_list
.head
);
870 /*----------------------------------------------------------------------*/
873 lang_list_init (lang_statement_list_type
*list
)
876 list
->tail
= &list
->head
;
879 /* Build a new statement node for the parse tree. */
881 static lang_statement_union_type
*
882 new_statement (enum statement_enum type
,
884 lang_statement_list_type
*list
)
886 lang_statement_union_type
*new;
888 new = stat_alloc (size
);
889 new->header
.type
= type
;
890 new->header
.next
= NULL
;
891 lang_statement_append (list
, new, &new->header
.next
);
895 /* Build a new input file node for the language. There are several
896 ways in which we treat an input file, eg, we only look at symbols,
897 or prefix it with a -l etc.
899 We can be supplied with requests for input files more than once;
900 they may, for example be split over several lines like foo.o(.text)
901 foo.o(.data) etc, so when asked for a file we check that we haven't
902 got it already so we don't duplicate the bfd. */
904 static lang_input_statement_type
*
905 new_afile (const char *name
,
906 lang_input_file_enum_type file_type
,
908 bfd_boolean add_to_list
)
910 lang_input_statement_type
*p
;
913 p
= new_stat (lang_input_statement
, stat_ptr
);
916 p
= stat_alloc (sizeof (lang_input_statement_type
));
917 p
->header
.type
= lang_input_statement_enum
;
918 p
->header
.next
= NULL
;
921 lang_has_input_file
= TRUE
;
923 p
->sysrooted
= FALSE
;
926 case lang_input_file_is_symbols_only_enum
:
928 p
->is_archive
= FALSE
;
930 p
->local_sym_name
= name
;
931 p
->just_syms_flag
= TRUE
;
932 p
->search_dirs_flag
= FALSE
;
934 case lang_input_file_is_fake_enum
:
936 p
->is_archive
= FALSE
;
938 p
->local_sym_name
= name
;
939 p
->just_syms_flag
= FALSE
;
940 p
->search_dirs_flag
= FALSE
;
942 case lang_input_file_is_l_enum
:
943 p
->is_archive
= TRUE
;
946 p
->local_sym_name
= concat ("-l", name
, NULL
);
947 p
->just_syms_flag
= FALSE
;
948 p
->search_dirs_flag
= TRUE
;
950 case lang_input_file_is_marker_enum
:
952 p
->is_archive
= FALSE
;
954 p
->local_sym_name
= name
;
955 p
->just_syms_flag
= FALSE
;
956 p
->search_dirs_flag
= TRUE
;
958 case lang_input_file_is_search_file_enum
:
959 p
->sysrooted
= ldlang_sysrooted_script
;
961 p
->is_archive
= FALSE
;
963 p
->local_sym_name
= name
;
964 p
->just_syms_flag
= FALSE
;
965 p
->search_dirs_flag
= TRUE
;
967 case lang_input_file_is_file_enum
:
969 p
->is_archive
= FALSE
;
971 p
->local_sym_name
= name
;
972 p
->just_syms_flag
= FALSE
;
973 p
->search_dirs_flag
= FALSE
;
980 p
->next_real_file
= NULL
;
983 p
->dynamic
= config
.dynamic_link
;
984 p
->add_needed
= add_needed
;
985 p
->as_needed
= as_needed
;
986 p
->whole_archive
= whole_archive
;
988 lang_statement_append (&input_file_chain
,
989 (lang_statement_union_type
*) p
,
994 lang_input_statement_type
*
995 lang_add_input_file (const char *name
,
996 lang_input_file_enum_type file_type
,
999 lang_has_input_file
= TRUE
;
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 *lang_memory_region_list_tail
= new;
1169 lang_memory_region_list_tail
= &new->next
;
1173 new->length
= ~(bfd_size_type
) 0;
1175 new->had_full_message
= FALSE
;
1180 static lang_memory_region_type
*
1181 lang_memory_default (asection
*section
)
1183 lang_memory_region_type
*p
;
1185 flagword sec_flags
= section
->flags
;
1187 /* Override SEC_DATA to mean a writable section. */
1188 if ((sec_flags
& (SEC_ALLOC
| SEC_READONLY
| SEC_CODE
)) == SEC_ALLOC
)
1189 sec_flags
|= SEC_DATA
;
1191 for (p
= lang_memory_region_list
; p
!= NULL
; p
= p
->next
)
1193 if ((p
->flags
& sec_flags
) != 0
1194 && (p
->not_flags
& sec_flags
) == 0)
1199 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION
, FALSE
);
1202 lang_output_section_statement_type
*
1203 lang_output_section_find (const char *const name
)
1205 struct out_section_hash_entry
*entry
;
1208 entry
= ((struct out_section_hash_entry
*)
1209 bfd_hash_lookup (&output_section_statement_table
, name
,
1214 hash
= entry
->root
.hash
;
1217 if (entry
->s
.output_section_statement
.constraint
!= -1)
1218 return &entry
->s
.output_section_statement
;
1219 entry
= (struct out_section_hash_entry
*) entry
->root
.next
;
1221 while (entry
!= NULL
1222 && entry
->root
.hash
== hash
1223 && strcmp (name
, entry
->s
.output_section_statement
.name
) == 0);
1228 static lang_output_section_statement_type
*
1229 lang_output_section_statement_lookup_1 (const char *const name
, int constraint
)
1231 struct out_section_hash_entry
*entry
;
1232 struct out_section_hash_entry
*last_ent
;
1235 entry
= ((struct out_section_hash_entry
*)
1236 bfd_hash_lookup (&output_section_statement_table
, name
,
1240 einfo (_("%P%F: failed creating section `%s': %E\n"), name
);
1244 if (entry
->s
.output_section_statement
.name
!= NULL
)
1246 /* We have a section of this name, but it might not have the correct
1248 hash
= entry
->root
.hash
;
1251 if (entry
->s
.output_section_statement
.constraint
!= -1
1253 || (constraint
== entry
->s
.output_section_statement
.constraint
1254 && constraint
!= SPECIAL
)))
1255 return &entry
->s
.output_section_statement
;
1257 entry
= (struct out_section_hash_entry
*) entry
->root
.next
;
1259 while (entry
!= NULL
1260 && entry
->root
.hash
== hash
1261 && strcmp (name
, entry
->s
.output_section_statement
.name
) == 0);
1264 = ((struct out_section_hash_entry
*)
1265 output_section_statement_newfunc (NULL
,
1266 &output_section_statement_table
,
1270 einfo (_("%P%F: failed creating section `%s': %E\n"), name
);
1273 entry
->root
= last_ent
->root
;
1274 last_ent
->root
.next
= &entry
->root
;
1277 entry
->s
.output_section_statement
.name
= name
;
1278 entry
->s
.output_section_statement
.constraint
= constraint
;
1279 return &entry
->s
.output_section_statement
;
1282 lang_output_section_statement_type
*
1283 lang_output_section_statement_lookup (const char *const name
)
1285 return lang_output_section_statement_lookup_1 (name
, 0);
1288 /* A variant of lang_output_section_find used by place_orphan.
1289 Returns the output statement that should precede a new output
1290 statement for SEC. If an exact match is found on certain flags,
1293 lang_output_section_statement_type
*
1294 lang_output_section_find_by_flags (const asection
*sec
,
1295 lang_output_section_statement_type
**exact
,
1296 lang_match_sec_type_func match_type
)
1298 lang_output_section_statement_type
*first
, *look
, *found
;
1301 /* We know the first statement on this list is *ABS*. May as well
1303 first
= &lang_output_section_statement
.head
->output_section_statement
;
1304 first
= first
->next
;
1306 /* First try for an exact match. */
1308 for (look
= first
; look
; look
= look
->next
)
1310 flags
= look
->flags
;
1311 if (look
->bfd_section
!= NULL
)
1313 flags
= look
->bfd_section
->flags
;
1314 if (match_type
&& !match_type (output_bfd
, look
->bfd_section
,
1318 flags
^= sec
->flags
;
1319 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
1320 | SEC_CODE
| SEC_SMALL_DATA
| SEC_THREAD_LOCAL
)))
1330 if (sec
->flags
& SEC_CODE
)
1332 /* Try for a rw code section. */
1333 for (look
= first
; look
; look
= look
->next
)
1335 flags
= look
->flags
;
1336 if (look
->bfd_section
!= NULL
)
1338 flags
= look
->bfd_section
->flags
;
1339 if (match_type
&& !match_type (output_bfd
, look
->bfd_section
,
1343 flags
^= sec
->flags
;
1344 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
1345 | SEC_CODE
| SEC_SMALL_DATA
| SEC_THREAD_LOCAL
)))
1349 else if (sec
->flags
& (SEC_READONLY
| SEC_THREAD_LOCAL
))
1351 /* .rodata can go after .text, .sdata2 after .rodata. */
1352 for (look
= first
; look
; look
= look
->next
)
1354 flags
= look
->flags
;
1355 if (look
->bfd_section
!= NULL
)
1357 flags
= look
->bfd_section
->flags
;
1358 if (match_type
&& !match_type (output_bfd
, look
->bfd_section
,
1362 flags
^= sec
->flags
;
1363 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
1365 && !(look
->flags
& (SEC_SMALL_DATA
| SEC_THREAD_LOCAL
)))
1369 else if (sec
->flags
& SEC_SMALL_DATA
)
1371 /* .sdata goes after .data, .sbss after .sdata. */
1372 for (look
= first
; look
; look
= look
->next
)
1374 flags
= look
->flags
;
1375 if (look
->bfd_section
!= NULL
)
1377 flags
= look
->bfd_section
->flags
;
1378 if (match_type
&& !match_type (output_bfd
, look
->bfd_section
,
1382 flags
^= sec
->flags
;
1383 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
1384 | SEC_THREAD_LOCAL
))
1385 || ((look
->flags
& SEC_SMALL_DATA
)
1386 && !(sec
->flags
& SEC_HAS_CONTENTS
)))
1390 else if (sec
->flags
& SEC_HAS_CONTENTS
)
1392 /* .data goes after .rodata. */
1393 for (look
= first
; look
; look
= look
->next
)
1395 flags
= look
->flags
;
1396 if (look
->bfd_section
!= NULL
)
1398 flags
= look
->bfd_section
->flags
;
1399 if (match_type
&& !match_type (output_bfd
, look
->bfd_section
,
1403 flags
^= sec
->flags
;
1404 if (!(flags
& (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
1405 | SEC_SMALL_DATA
| SEC_THREAD_LOCAL
)))
1411 /* .bss goes last. */
1412 for (look
= first
; look
; look
= look
->next
)
1414 flags
= look
->flags
;
1415 if (look
->bfd_section
!= NULL
)
1417 flags
= look
->bfd_section
->flags
;
1418 if (match_type
&& !match_type (output_bfd
, look
->bfd_section
,
1422 flags
^= sec
->flags
;
1423 if (!(flags
& SEC_ALLOC
))
1428 if (found
|| !match_type
)
1431 return lang_output_section_find_by_flags (sec
, NULL
, NULL
);
1434 /* Find the last output section before given output statement.
1435 Used by place_orphan. */
1438 output_prev_sec_find (lang_output_section_statement_type
*os
)
1440 lang_output_section_statement_type
*lookup
;
1442 for (lookup
= os
->prev
; lookup
!= NULL
; lookup
= lookup
->prev
)
1444 if (lookup
->constraint
== -1)
1447 if (lookup
->bfd_section
!= NULL
&& lookup
->bfd_section
->owner
!= NULL
)
1448 return lookup
->bfd_section
;
1454 lang_output_section_statement_type
*
1455 lang_insert_orphan (asection
*s
,
1456 const char *secname
,
1457 lang_output_section_statement_type
*after
,
1458 struct orphan_save
*place
,
1459 etree_type
*address
,
1460 lang_statement_list_type
*add_child
)
1462 lang_statement_list_type
*old
;
1463 lang_statement_list_type add
;
1465 etree_type
*load_base
;
1466 lang_output_section_statement_type
*os
;
1467 lang_output_section_statement_type
**os_tail
;
1469 /* Start building a list of statements for this section.
1470 First save the current statement pointer. */
1473 /* If we have found an appropriate place for the output section
1474 statements for this orphan, add them to our own private list,
1475 inserting them later into the global statement list. */
1479 lang_list_init (stat_ptr
);
1483 if (config
.build_constructors
)
1485 /* If the name of the section is representable in C, then create
1486 symbols to mark the start and the end of the section. */
1487 for (ps
= secname
; *ps
!= '\0'; ps
++)
1488 if (! ISALNUM ((unsigned char) *ps
) && *ps
!= '_')
1493 etree_type
*e_align
;
1495 symname
= (char *) xmalloc (ps
- secname
+ sizeof "__start_" + 1);
1496 symname
[0] = bfd_get_symbol_leading_char (output_bfd
);
1497 sprintf (symname
+ (symname
[0] != 0), "__start_%s", secname
);
1498 e_align
= exp_unop (ALIGN_K
,
1499 exp_intop ((bfd_vma
) 1 << s
->alignment_power
));
1500 lang_add_assignment (exp_assop ('=', ".", e_align
));
1501 lang_add_assignment (exp_assop ('=', symname
,
1502 exp_nameop (NAME
, ".")));
1506 if (link_info
.relocatable
|| (s
->flags
& (SEC_LOAD
| SEC_ALLOC
)) == 0)
1507 address
= exp_intop (0);
1510 if (after
!= NULL
&& after
->load_base
!= NULL
)
1512 etree_type
*lma_from_vma
;
1513 lma_from_vma
= exp_binop ('-', after
->load_base
,
1514 exp_nameop (ADDR
, after
->name
));
1515 load_base
= exp_binop ('+', lma_from_vma
,
1516 exp_nameop (ADDR
, secname
));
1519 os_tail
= ((lang_output_section_statement_type
**)
1520 lang_output_section_statement
.tail
);
1521 os
= lang_enter_output_section_statement (secname
, address
, 0, NULL
, NULL
,
1524 if (add_child
== NULL
)
1525 add_child
= &os
->children
;
1526 lang_add_section (add_child
, s
, os
);
1528 lang_leave_output_section_statement (0, "*default*", NULL
, NULL
);
1530 if (config
.build_constructors
&& *ps
== '\0')
1534 /* lang_leave_ouput_section_statement resets stat_ptr.
1535 Put stat_ptr back where we want it. */
1539 symname
= (char *) xmalloc (ps
- secname
+ sizeof "__stop_" + 1);
1540 symname
[0] = bfd_get_symbol_leading_char (output_bfd
);
1541 sprintf (symname
+ (symname
[0] != 0), "__stop_%s", secname
);
1542 lang_add_assignment (exp_assop ('=', symname
,
1543 exp_nameop (NAME
, ".")));
1546 /* Restore the global list pointer. */
1550 if (after
!= NULL
&& os
->bfd_section
!= NULL
)
1552 asection
*snew
, *as
;
1554 snew
= os
->bfd_section
;
1556 /* Shuffle the bfd section list to make the output file look
1557 neater. This is really only cosmetic. */
1558 if (place
->section
== NULL
1559 && after
!= (&lang_output_section_statement
.head
1560 ->output_section_statement
))
1562 asection
*bfd_section
= after
->bfd_section
;
1564 /* If the output statement hasn't been used to place any input
1565 sections (and thus doesn't have an output bfd_section),
1566 look for the closest prior output statement having an
1568 if (bfd_section
== NULL
)
1569 bfd_section
= output_prev_sec_find (after
);
1571 if (bfd_section
!= NULL
&& bfd_section
!= snew
)
1572 place
->section
= &bfd_section
->next
;
1575 if (place
->section
== NULL
)
1576 place
->section
= &output_bfd
->sections
;
1578 as
= *place
->section
;
1582 /* Put the section at the end of the list. */
1584 /* Unlink the section. */
1585 bfd_section_list_remove (output_bfd
, snew
);
1587 /* Now tack it back on in the right place. */
1588 bfd_section_list_append (output_bfd
, snew
);
1590 else if (as
!= snew
&& as
->prev
!= snew
)
1592 /* Unlink the section. */
1593 bfd_section_list_remove (output_bfd
, snew
);
1595 /* Now tack it back on in the right place. */
1596 bfd_section_list_insert_before (output_bfd
, as
, snew
);
1599 /* Save the end of this list. Further ophans of this type will
1600 follow the one we've just added. */
1601 place
->section
= &snew
->next
;
1603 /* The following is non-cosmetic. We try to put the output
1604 statements in some sort of reasonable order here, because they
1605 determine the final load addresses of the orphan sections.
1606 In addition, placing output statements in the wrong order may
1607 require extra segments. For instance, given a typical
1608 situation of all read-only sections placed in one segment and
1609 following that a segment containing all the read-write
1610 sections, we wouldn't want to place an orphan read/write
1611 section before or amongst the read-only ones. */
1612 if (add
.head
!= NULL
)
1614 lang_output_section_statement_type
*newly_added_os
;
1616 if (place
->stmt
== NULL
)
1618 lang_statement_union_type
**where
;
1619 lang_statement_union_type
**assign
= NULL
;
1620 bfd_boolean ignore_first
;
1622 /* Look for a suitable place for the new statement list.
1623 The idea is to skip over anything that might be inside
1624 a SECTIONS {} statement in a script, before we find
1625 another output_section_statement. Assignments to "dot"
1626 before an output section statement are assumed to
1627 belong to it. An exception to this rule is made for
1628 the first assignment to dot, otherwise we might put an
1629 orphan before . = . + SIZEOF_HEADERS or similar
1630 assignments that set the initial address. */
1632 ignore_first
= after
== (&lang_output_section_statement
.head
1633 ->output_section_statement
);
1634 for (where
= &after
->header
.next
;
1636 where
= &(*where
)->header
.next
)
1638 switch ((*where
)->header
.type
)
1640 case lang_assignment_statement_enum
:
1643 lang_assignment_statement_type
*ass
;
1644 ass
= &(*where
)->assignment_statement
;
1645 if (ass
->exp
->type
.node_class
!= etree_assert
1646 && ass
->exp
->assign
.dst
[0] == '.'
1647 && ass
->exp
->assign
.dst
[1] == 0
1651 ignore_first
= FALSE
;
1653 case lang_wild_statement_enum
:
1654 case lang_input_section_enum
:
1655 case lang_object_symbols_statement_enum
:
1656 case lang_fill_statement_enum
:
1657 case lang_data_statement_enum
:
1658 case lang_reloc_statement_enum
:
1659 case lang_padding_statement_enum
:
1660 case lang_constructors_statement_enum
:
1663 case lang_output_section_statement_enum
:
1666 case lang_input_statement_enum
:
1667 case lang_address_statement_enum
:
1668 case lang_target_statement_enum
:
1669 case lang_output_statement_enum
:
1670 case lang_group_statement_enum
:
1671 case lang_afile_asection_pair_statement_enum
:
1680 place
->os_tail
= &after
->next
;
1684 /* Put it after the last orphan statement we added. */
1685 *add
.tail
= *place
->stmt
;
1686 *place
->stmt
= add
.head
;
1689 /* Fix the global list pointer if we happened to tack our
1690 new list at the tail. */
1691 if (*old
->tail
== add
.head
)
1692 old
->tail
= add
.tail
;
1694 /* Save the end of this list. */
1695 place
->stmt
= add
.tail
;
1697 /* Do the same for the list of output section statements. */
1698 newly_added_os
= *os_tail
;
1700 newly_added_os
->prev
= (lang_output_section_statement_type
*)
1701 ((char *) place
->os_tail
1702 - offsetof (lang_output_section_statement_type
, next
));
1703 newly_added_os
->next
= *place
->os_tail
;
1704 if (newly_added_os
->next
!= NULL
)
1705 newly_added_os
->next
->prev
= newly_added_os
;
1706 *place
->os_tail
= newly_added_os
;
1707 place
->os_tail
= &newly_added_os
->next
;
1709 /* Fixing the global list pointer here is a little different.
1710 We added to the list in lang_enter_output_section_statement,
1711 trimmed off the new output_section_statment above when
1712 assigning *os_tail = NULL, but possibly added it back in
1713 the same place when assigning *place->os_tail. */
1714 if (*os_tail
== NULL
)
1715 lang_output_section_statement
.tail
1716 = (lang_statement_union_type
**) os_tail
;
1723 lang_map_flags (flagword flag
)
1725 if (flag
& SEC_ALLOC
)
1728 if (flag
& SEC_CODE
)
1731 if (flag
& SEC_READONLY
)
1734 if (flag
& SEC_DATA
)
1737 if (flag
& SEC_LOAD
)
1744 lang_memory_region_type
*m
;
1745 bfd_boolean dis_header_printed
= FALSE
;
1748 LANG_FOR_EACH_INPUT_STATEMENT (file
)
1752 if ((file
->the_bfd
->flags
& (BFD_LINKER_CREATED
| DYNAMIC
)) != 0
1753 || file
->just_syms_flag
)
1756 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
1757 if (s
->output_section
== NULL
1758 || s
->output_section
->owner
!= output_bfd
)
1760 if (! dis_header_printed
)
1762 fprintf (config
.map_file
, _("\nDiscarded input sections\n\n"));
1763 dis_header_printed
= TRUE
;
1766 print_input_section (s
);
1770 minfo (_("\nMemory Configuration\n\n"));
1771 fprintf (config
.map_file
, "%-16s %-18s %-18s %s\n",
1772 _("Name"), _("Origin"), _("Length"), _("Attributes"));
1774 for (m
= lang_memory_region_list
; m
!= NULL
; m
= m
->next
)
1779 fprintf (config
.map_file
, "%-16s ", m
->name
);
1781 sprintf_vma (buf
, m
->origin
);
1782 minfo ("0x%s ", buf
);
1790 minfo ("0x%V", m
->length
);
1791 if (m
->flags
|| m
->not_flags
)
1799 lang_map_flags (m
->flags
);
1805 lang_map_flags (m
->not_flags
);
1812 fprintf (config
.map_file
, _("\nLinker script and memory map\n\n"));
1814 if (! command_line
.reduce_memory_overheads
)
1816 obstack_begin (&map_obstack
, 1000);
1817 for (p
= link_info
.input_bfds
; p
!= (bfd
*) NULL
; p
= p
->link_next
)
1818 bfd_map_over_sections (p
, init_map_userdata
, 0);
1819 bfd_link_hash_traverse (link_info
.hash
, sort_def_symbol
, 0);
1821 print_statements ();
1825 init_map_userdata (abfd
, sec
, data
)
1826 bfd
*abfd ATTRIBUTE_UNUSED
;
1828 void *data ATTRIBUTE_UNUSED
;
1830 fat_section_userdata_type
*new_data
1831 = ((fat_section_userdata_type
*) (stat_alloc
1832 (sizeof (fat_section_userdata_type
))));
1834 ASSERT (get_userdata (sec
) == NULL
);
1835 get_userdata (sec
) = new_data
;
1836 new_data
->map_symbol_def_tail
= &new_data
->map_symbol_def_head
;
1840 sort_def_symbol (hash_entry
, info
)
1841 struct bfd_link_hash_entry
*hash_entry
;
1842 void *info ATTRIBUTE_UNUSED
;
1844 if (hash_entry
->type
== bfd_link_hash_defined
1845 || hash_entry
->type
== bfd_link_hash_defweak
)
1847 struct fat_user_section_struct
*ud
;
1848 struct map_symbol_def
*def
;
1850 ud
= get_userdata (hash_entry
->u
.def
.section
);
1853 /* ??? What do we have to do to initialize this beforehand? */
1854 /* The first time we get here is bfd_abs_section... */
1855 init_map_userdata (0, hash_entry
->u
.def
.section
, 0);
1856 ud
= get_userdata (hash_entry
->u
.def
.section
);
1858 else if (!ud
->map_symbol_def_tail
)
1859 ud
->map_symbol_def_tail
= &ud
->map_symbol_def_head
;
1861 def
= obstack_alloc (&map_obstack
, sizeof *def
);
1862 def
->entry
= hash_entry
;
1863 *(ud
->map_symbol_def_tail
) = def
;
1864 ud
->map_symbol_def_tail
= &def
->next
;
1869 /* Initialize an output section. */
1872 init_os (lang_output_section_statement_type
*s
, asection
*isec
)
1874 if (s
->bfd_section
!= NULL
)
1877 if (strcmp (s
->name
, DISCARD_SECTION_NAME
) == 0)
1878 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME
);
1880 s
->bfd_section
= bfd_get_section_by_name (output_bfd
, s
->name
);
1881 if (s
->bfd_section
== NULL
)
1882 s
->bfd_section
= bfd_make_section (output_bfd
, s
->name
);
1883 if (s
->bfd_section
== NULL
)
1885 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
1886 output_bfd
->xvec
->name
, s
->name
);
1888 s
->bfd_section
->output_section
= s
->bfd_section
;
1889 s
->bfd_section
->output_offset
= 0;
1891 if (!command_line
.reduce_memory_overheads
)
1893 fat_section_userdata_type
*new
1894 = stat_alloc (sizeof (fat_section_userdata_type
));
1895 memset (new, 0, sizeof (fat_section_userdata_type
));
1896 get_userdata (s
->bfd_section
) = new;
1899 /* If there is a base address, make sure that any sections it might
1900 mention are initialized. */
1901 if (s
->addr_tree
!= NULL
)
1902 exp_init_os (s
->addr_tree
);
1904 if (s
->load_base
!= NULL
)
1905 exp_init_os (s
->load_base
);
1907 /* If supplied an alignment, set it. */
1908 if (s
->section_alignment
!= -1)
1909 s
->bfd_section
->alignment_power
= s
->section_alignment
;
1912 bfd_init_private_section_data (isec
->owner
, isec
,
1913 output_bfd
, s
->bfd_section
,
1917 /* Make sure that all output sections mentioned in an expression are
1921 exp_init_os (etree_type
*exp
)
1923 switch (exp
->type
.node_class
)
1927 exp_init_os (exp
->assign
.src
);
1931 exp_init_os (exp
->binary
.lhs
);
1932 exp_init_os (exp
->binary
.rhs
);
1936 exp_init_os (exp
->trinary
.cond
);
1937 exp_init_os (exp
->trinary
.lhs
);
1938 exp_init_os (exp
->trinary
.rhs
);
1942 exp_init_os (exp
->assert_s
.child
);
1946 exp_init_os (exp
->unary
.child
);
1950 switch (exp
->type
.node_code
)
1956 lang_output_section_statement_type
*os
;
1958 os
= lang_output_section_find (exp
->name
.name
);
1959 if (os
!= NULL
&& os
->bfd_section
== NULL
)
1971 section_already_linked (bfd
*abfd
, asection
*sec
, void *data
)
1973 lang_input_statement_type
*entry
= data
;
1975 /* If we are only reading symbols from this object, then we want to
1976 discard all sections. */
1977 if (entry
->just_syms_flag
)
1979 bfd_link_just_syms (abfd
, sec
, &link_info
);
1983 if (!(abfd
->flags
& DYNAMIC
))
1984 bfd_section_already_linked (abfd
, sec
);
1987 /* The wild routines.
1989 These expand statements like *(.text) and foo.o to a list of
1990 explicit actions, like foo.o(.text), bar.o(.text) and
1991 foo.o(.text, .data). */
1993 /* Add SECTION to the output section OUTPUT. Do this by creating a
1994 lang_input_section statement which is placed at PTR. FILE is the
1995 input file which holds SECTION. */
1998 lang_add_section (lang_statement_list_type
*ptr
,
2000 lang_output_section_statement_type
*output
)
2002 flagword flags
= section
->flags
;
2003 bfd_boolean discard
;
2005 /* Discard sections marked with SEC_EXCLUDE. */
2006 discard
= (flags
& SEC_EXCLUDE
) != 0;
2008 /* Discard input sections which are assigned to a section named
2009 DISCARD_SECTION_NAME. */
2010 if (strcmp (output
->name
, DISCARD_SECTION_NAME
) == 0)
2013 /* Discard debugging sections if we are stripping debugging
2015 if ((link_info
.strip
== strip_debugger
|| link_info
.strip
== strip_all
)
2016 && (flags
& SEC_DEBUGGING
) != 0)
2021 if (section
->output_section
== NULL
)
2023 /* This prevents future calls from assigning this section. */
2024 section
->output_section
= bfd_abs_section_ptr
;
2029 if (section
->output_section
== NULL
)
2032 lang_input_section_type
*new;
2035 if (output
->bfd_section
== NULL
)
2036 init_os (output
, section
);
2038 first
= ! output
->bfd_section
->linker_has_input
;
2039 output
->bfd_section
->linker_has_input
= 1;
2041 if (!link_info
.relocatable
2042 && !stripped_excluded_sections
)
2044 asection
*s
= output
->bfd_section
->map_tail
.s
;
2045 output
->bfd_section
->map_tail
.s
= section
;
2046 section
->map_head
.s
= NULL
;
2047 section
->map_tail
.s
= s
;
2049 s
->map_head
.s
= section
;
2051 output
->bfd_section
->map_head
.s
= section
;
2054 /* Add a section reference to the list. */
2055 new = new_stat (lang_input_section
, ptr
);
2057 new->section
= section
;
2058 section
->output_section
= output
->bfd_section
;
2060 flags
= section
->flags
;
2062 /* We don't copy the SEC_NEVER_LOAD flag from an input section
2063 to an output section, because we want to be able to include a
2064 SEC_NEVER_LOAD section in the middle of an otherwise loaded
2065 section (I don't know why we want to do this, but we do).
2066 build_link_order in ldwrite.c handles this case by turning
2067 the embedded SEC_NEVER_LOAD section into a fill. */
2069 flags
&= ~ SEC_NEVER_LOAD
;
2071 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
2072 already been processed. One reason to do this is that on pe
2073 format targets, .text$foo sections go into .text and it's odd
2074 to see .text with SEC_LINK_ONCE set. */
2076 if (! link_info
.relocatable
)
2077 flags
&= ~ (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
);
2079 /* If this is not the first input section, and the SEC_READONLY
2080 flag is not currently set, then don't set it just because the
2081 input section has it set. */
2083 if (! first
&& (output
->bfd_section
->flags
& SEC_READONLY
) == 0)
2084 flags
&= ~ SEC_READONLY
;
2086 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
2088 && ((output
->bfd_section
->flags
& (SEC_MERGE
| SEC_STRINGS
))
2089 != (flags
& (SEC_MERGE
| SEC_STRINGS
))
2090 || ((flags
& SEC_MERGE
)
2091 && output
->bfd_section
->entsize
!= section
->entsize
)))
2093 output
->bfd_section
->flags
&= ~ (SEC_MERGE
| SEC_STRINGS
);
2094 flags
&= ~ (SEC_MERGE
| SEC_STRINGS
);
2097 output
->bfd_section
->flags
|= flags
;
2099 if (flags
& SEC_MERGE
)
2100 output
->bfd_section
->entsize
= section
->entsize
;
2102 /* If SEC_READONLY is not set in the input section, then clear
2103 it from the output section. */
2104 if ((section
->flags
& SEC_READONLY
) == 0)
2105 output
->bfd_section
->flags
&= ~SEC_READONLY
;
2107 switch (output
->sectype
)
2109 case normal_section
:
2111 case noalloc_section
:
2112 output
->bfd_section
->flags
&= ~SEC_ALLOC
;
2114 case noload_section
:
2115 output
->bfd_section
->flags
&= ~SEC_LOAD
;
2116 output
->bfd_section
->flags
|= SEC_NEVER_LOAD
;
2120 /* Copy over SEC_SMALL_DATA. */
2121 if (section
->flags
& SEC_SMALL_DATA
)
2122 output
->bfd_section
->flags
|= SEC_SMALL_DATA
;
2124 if (section
->alignment_power
> output
->bfd_section
->alignment_power
)
2125 output
->bfd_section
->alignment_power
= section
->alignment_power
;
2127 if (bfd_get_arch (section
->owner
) == bfd_arch_tic54x
2128 && (section
->flags
& SEC_TIC54X_BLOCK
) != 0)
2130 output
->bfd_section
->flags
|= SEC_TIC54X_BLOCK
;
2131 /* FIXME: This value should really be obtained from the bfd... */
2132 output
->block_value
= 128;
2137 /* Handle wildcard sorting. This returns the lang_input_section which
2138 should follow the one we are going to create for SECTION and FILE,
2139 based on the sorting requirements of WILD. It returns NULL if the
2140 new section should just go at the end of the current list. */
2142 static lang_statement_union_type
*
2143 wild_sort (lang_wild_statement_type
*wild
,
2144 struct wildcard_list
*sec
,
2145 lang_input_statement_type
*file
,
2148 const char *section_name
;
2149 lang_statement_union_type
*l
;
2151 if (!wild
->filenames_sorted
2152 && (sec
== NULL
|| sec
->spec
.sorted
== none
))
2155 section_name
= bfd_get_section_name (file
->the_bfd
, section
);
2156 for (l
= wild
->children
.head
; l
!= NULL
; l
= l
->header
.next
)
2158 lang_input_section_type
*ls
;
2160 if (l
->header
.type
!= lang_input_section_enum
)
2162 ls
= &l
->input_section
;
2164 /* Sorting by filename takes precedence over sorting by section
2167 if (wild
->filenames_sorted
)
2169 const char *fn
, *ln
;
2173 /* The PE support for the .idata section as generated by
2174 dlltool assumes that files will be sorted by the name of
2175 the archive and then the name of the file within the
2178 if (file
->the_bfd
!= NULL
2179 && bfd_my_archive (file
->the_bfd
) != NULL
)
2181 fn
= bfd_get_filename (bfd_my_archive (file
->the_bfd
));
2186 fn
= file
->filename
;
2190 if (bfd_my_archive (ls
->section
->owner
) != NULL
)
2192 ln
= bfd_get_filename (bfd_my_archive (ls
->section
->owner
));
2197 ln
= ls
->section
->owner
->filename
;
2201 i
= strcmp (fn
, ln
);
2210 fn
= file
->filename
;
2212 ln
= ls
->section
->owner
->filename
;
2214 i
= strcmp (fn
, ln
);
2222 /* Here either the files are not sorted by name, or we are
2223 looking at the sections for this file. */
2225 if (sec
!= NULL
&& sec
->spec
.sorted
!= none
)
2226 if (compare_section (sec
->spec
.sorted
, section
, ls
->section
) < 0)
2233 /* Expand a wild statement for a particular FILE. SECTION may be
2234 NULL, in which case it is a wild card. */
2237 output_section_callback (lang_wild_statement_type
*ptr
,
2238 struct wildcard_list
*sec
,
2240 lang_input_statement_type
*file
,
2243 lang_statement_union_type
*before
;
2245 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2246 if (unique_section_p (section
))
2249 before
= wild_sort (ptr
, sec
, file
, section
);
2251 /* Here BEFORE points to the lang_input_section which
2252 should follow the one we are about to add. If BEFORE
2253 is NULL, then the section should just go at the end
2254 of the current list. */
2257 lang_add_section (&ptr
->children
, section
,
2258 (lang_output_section_statement_type
*) output
);
2261 lang_statement_list_type list
;
2262 lang_statement_union_type
**pp
;
2264 lang_list_init (&list
);
2265 lang_add_section (&list
, section
,
2266 (lang_output_section_statement_type
*) output
);
2268 /* If we are discarding the section, LIST.HEAD will
2270 if (list
.head
!= NULL
)
2272 ASSERT (list
.head
->header
.next
== NULL
);
2274 for (pp
= &ptr
->children
.head
;
2276 pp
= &(*pp
)->header
.next
)
2277 ASSERT (*pp
!= NULL
);
2279 list
.head
->header
.next
= *pp
;
2285 /* Check if all sections in a wild statement for a particular FILE
2289 check_section_callback (lang_wild_statement_type
*ptr ATTRIBUTE_UNUSED
,
2290 struct wildcard_list
*sec ATTRIBUTE_UNUSED
,
2292 lang_input_statement_type
*file ATTRIBUTE_UNUSED
,
2295 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2296 if (unique_section_p (section
))
2299 if (section
->output_section
== NULL
&& (section
->flags
& SEC_READONLY
) == 0)
2300 ((lang_output_section_statement_type
*) data
)->all_input_readonly
= FALSE
;
2303 /* This is passed a file name which must have been seen already and
2304 added to the statement tree. We will see if it has been opened
2305 already and had its symbols read. If not then we'll read it. */
2307 static lang_input_statement_type
*
2308 lookup_name (const char *name
)
2310 lang_input_statement_type
*search
;
2312 for (search
= (lang_input_statement_type
*) input_file_chain
.head
;
2314 search
= (lang_input_statement_type
*) search
->next_real_file
)
2316 /* Use the local_sym_name as the name of the file that has
2317 already been loaded as filename might have been transformed
2318 via the search directory lookup mechanism. */
2319 const char *filename
= search
->local_sym_name
;
2321 if (filename
!= NULL
2322 && strcmp (filename
, name
) == 0)
2327 search
= new_afile (name
, lang_input_file_is_search_file_enum
,
2328 default_target
, FALSE
);
2330 /* If we have already added this file, or this file is not real
2331 don't add this file. */
2332 if (search
->loaded
|| !search
->real
)
2335 if (! load_symbols (search
, NULL
))
2341 /* Save LIST as a list of libraries whose symbols should not be exported. */
2346 struct excluded_lib
*next
;
2348 static struct excluded_lib
*excluded_libs
;
2351 add_excluded_libs (const char *list
)
2353 const char *p
= list
, *end
;
2357 struct excluded_lib
*entry
;
2358 end
= strpbrk (p
, ",:");
2360 end
= p
+ strlen (p
);
2361 entry
= xmalloc (sizeof (*entry
));
2362 entry
->next
= excluded_libs
;
2363 entry
->name
= xmalloc (end
- p
+ 1);
2364 memcpy (entry
->name
, p
, end
- p
);
2365 entry
->name
[end
- p
] = '\0';
2366 excluded_libs
= entry
;
2374 check_excluded_libs (bfd
*abfd
)
2376 struct excluded_lib
*lib
= excluded_libs
;
2380 int len
= strlen (lib
->name
);
2381 const char *filename
= lbasename (abfd
->filename
);
2383 if (strcmp (lib
->name
, "ALL") == 0)
2385 abfd
->no_export
= TRUE
;
2389 if (strncmp (lib
->name
, filename
, len
) == 0
2390 && (filename
[len
] == '\0'
2391 || (filename
[len
] == '.' && filename
[len
+ 1] == 'a'
2392 && filename
[len
+ 2] == '\0')))
2394 abfd
->no_export
= TRUE
;
2402 /* Get the symbols for an input file. */
2405 load_symbols (lang_input_statement_type
*entry
,
2406 lang_statement_list_type
*place
)
2413 ldfile_open_file (entry
);
2415 if (! bfd_check_format (entry
->the_bfd
, bfd_archive
)
2416 && ! bfd_check_format_matches (entry
->the_bfd
, bfd_object
, &matching
))
2419 lang_statement_list_type
*hold
;
2420 bfd_boolean bad_load
= TRUE
;
2421 bfd_boolean save_ldlang_sysrooted_script
;
2422 bfd_boolean save_as_needed
, save_add_needed
;
2424 err
= bfd_get_error ();
2426 /* See if the emulation has some special knowledge. */
2427 if (ldemul_unrecognized_file (entry
))
2430 if (err
== bfd_error_file_ambiguously_recognized
)
2434 einfo (_("%B: file not recognized: %E\n"), entry
->the_bfd
);
2435 einfo (_("%B: matching formats:"), entry
->the_bfd
);
2436 for (p
= matching
; *p
!= NULL
; p
++)
2440 else if (err
!= bfd_error_file_not_recognized
2442 einfo (_("%F%B: file not recognized: %E\n"), entry
->the_bfd
);
2446 bfd_close (entry
->the_bfd
);
2447 entry
->the_bfd
= NULL
;
2449 /* Try to interpret the file as a linker script. */
2450 ldfile_open_command_file (entry
->filename
);
2454 save_ldlang_sysrooted_script
= ldlang_sysrooted_script
;
2455 ldlang_sysrooted_script
= entry
->sysrooted
;
2456 save_as_needed
= as_needed
;
2457 as_needed
= entry
->as_needed
;
2458 save_add_needed
= add_needed
;
2459 add_needed
= entry
->add_needed
;
2461 ldfile_assumed_script
= TRUE
;
2462 parser_input
= input_script
;
2463 /* We want to use the same -Bdynamic/-Bstatic as the one for
2465 config
.dynamic_link
= entry
->dynamic
;
2467 ldfile_assumed_script
= FALSE
;
2469 ldlang_sysrooted_script
= save_ldlang_sysrooted_script
;
2470 as_needed
= save_as_needed
;
2471 add_needed
= save_add_needed
;
2477 if (ldemul_recognized_file (entry
))
2480 /* We don't call ldlang_add_file for an archive. Instead, the
2481 add_symbols entry point will call ldlang_add_file, via the
2482 add_archive_element callback, for each element of the archive
2484 switch (bfd_get_format (entry
->the_bfd
))
2490 ldlang_add_file (entry
);
2491 if (trace_files
|| trace_file_tries
)
2492 info_msg ("%I\n", entry
);
2496 check_excluded_libs (entry
->the_bfd
);
2498 if (entry
->whole_archive
)
2501 bfd_boolean loaded
= TRUE
;
2505 member
= bfd_openr_next_archived_file (entry
->the_bfd
, member
);
2510 if (! bfd_check_format (member
, bfd_object
))
2512 einfo (_("%F%B: member %B in archive is not an object\n"),
2513 entry
->the_bfd
, member
);
2517 if (! ((*link_info
.callbacks
->add_archive_element
)
2518 (&link_info
, member
, "--whole-archive")))
2521 if (! bfd_link_add_symbols (member
, &link_info
))
2523 einfo (_("%F%B: could not read symbols: %E\n"), member
);
2528 entry
->loaded
= loaded
;
2534 if (bfd_link_add_symbols (entry
->the_bfd
, &link_info
))
2535 entry
->loaded
= TRUE
;
2537 einfo (_("%F%B: could not read symbols: %E\n"), entry
->the_bfd
);
2539 return entry
->loaded
;
2542 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
2543 may be NULL, indicating that it is a wildcard. Separate
2544 lang_input_section statements are created for each part of the
2545 expansion; they are added after the wild statement S. OUTPUT is
2546 the output section. */
2549 wild (lang_wild_statement_type
*s
,
2550 const char *target ATTRIBUTE_UNUSED
,
2551 lang_output_section_statement_type
*output
)
2553 struct wildcard_list
*sec
;
2555 if (s
->handler_data
[0]
2556 && (s
->handler_data
[0]->spec
.sorted
== by_name
)
2557 && !s
->filenames_sorted
)
2559 walk_wild (s
, output_section_callback_fast
, output
);
2561 if (s
->handler_data
[1])
2562 output_section_callback_tree_to_list (s
,
2563 (lang_section_bst_type
*) s
->handler_data
[1],
2565 s
->handler_data
[1] = NULL
;
2568 walk_wild (s
, output_section_callback
, output
);
2570 if (default_common_section
== NULL
)
2571 for (sec
= s
->section_list
; sec
!= NULL
; sec
= sec
->next
)
2572 if (sec
->spec
.name
!= NULL
&& strcmp (sec
->spec
.name
, "COMMON") == 0)
2574 /* Remember the section that common is going to in case we
2575 later get something which doesn't know where to put it. */
2576 default_common_section
= output
;
2581 /* Return TRUE iff target is the sought target. */
2584 get_target (const bfd_target
*target
, void *data
)
2586 const char *sought
= data
;
2588 return strcmp (target
->name
, sought
) == 0;
2591 /* Like strcpy() but convert to lower case as well. */
2594 stricpy (char *dest
, char *src
)
2598 while ((c
= *src
++) != 0)
2599 *dest
++ = TOLOWER (c
);
2604 /* Remove the first occurrence of needle (if any) in haystack
2608 strcut (char *haystack
, char *needle
)
2610 haystack
= strstr (haystack
, needle
);
2616 for (src
= haystack
+ strlen (needle
); *src
;)
2617 *haystack
++ = *src
++;
2623 /* Compare two target format name strings.
2624 Return a value indicating how "similar" they are. */
2627 name_compare (char *first
, char *second
)
2633 copy1
= xmalloc (strlen (first
) + 1);
2634 copy2
= xmalloc (strlen (second
) + 1);
2636 /* Convert the names to lower case. */
2637 stricpy (copy1
, first
);
2638 stricpy (copy2
, second
);
2640 /* Remove size and endian strings from the name. */
2641 strcut (copy1
, "big");
2642 strcut (copy1
, "little");
2643 strcut (copy2
, "big");
2644 strcut (copy2
, "little");
2646 /* Return a value based on how many characters match,
2647 starting from the beginning. If both strings are
2648 the same then return 10 * their length. */
2649 for (result
= 0; copy1
[result
] == copy2
[result
]; result
++)
2650 if (copy1
[result
] == 0)
2662 /* Set by closest_target_match() below. */
2663 static const bfd_target
*winner
;
2665 /* Scan all the valid bfd targets looking for one that has the endianness
2666 requirement that was specified on the command line, and is the nearest
2667 match to the original output target. */
2670 closest_target_match (const bfd_target
*target
, void *data
)
2672 const bfd_target
*original
= data
;
2674 if (command_line
.endian
== ENDIAN_BIG
2675 && target
->byteorder
!= BFD_ENDIAN_BIG
)
2678 if (command_line
.endian
== ENDIAN_LITTLE
2679 && target
->byteorder
!= BFD_ENDIAN_LITTLE
)
2682 /* Must be the same flavour. */
2683 if (target
->flavour
!= original
->flavour
)
2686 /* If we have not found a potential winner yet, then record this one. */
2693 /* Oh dear, we now have two potential candidates for a successful match.
2694 Compare their names and choose the better one. */
2695 if (name_compare (target
->name
, original
->name
)
2696 > name_compare (winner
->name
, original
->name
))
2699 /* Keep on searching until wqe have checked them all. */
2703 /* Return the BFD target format of the first input file. */
2706 get_first_input_target (void)
2708 char *target
= NULL
;
2710 LANG_FOR_EACH_INPUT_STATEMENT (s
)
2712 if (s
->header
.type
== lang_input_statement_enum
2715 ldfile_open_file (s
);
2717 if (s
->the_bfd
!= NULL
2718 && bfd_check_format (s
->the_bfd
, bfd_object
))
2720 target
= bfd_get_target (s
->the_bfd
);
2732 lang_get_output_target (void)
2736 /* Has the user told us which output format to use? */
2737 if (output_target
!= NULL
)
2738 return output_target
;
2740 /* No - has the current target been set to something other than
2742 if (current_target
!= default_target
)
2743 return current_target
;
2745 /* No - can we determine the format of the first input file? */
2746 target
= get_first_input_target ();
2750 /* Failed - use the default output target. */
2751 return default_target
;
2754 /* Open the output file. */
2757 open_output (const char *name
)
2761 output_target
= lang_get_output_target ();
2763 /* Has the user requested a particular endianness on the command
2765 if (command_line
.endian
!= ENDIAN_UNSET
)
2767 const bfd_target
*target
;
2768 enum bfd_endian desired_endian
;
2770 /* Get the chosen target. */
2771 target
= bfd_search_for_target (get_target
, (void *) output_target
);
2773 /* If the target is not supported, we cannot do anything. */
2776 if (command_line
.endian
== ENDIAN_BIG
)
2777 desired_endian
= BFD_ENDIAN_BIG
;
2779 desired_endian
= BFD_ENDIAN_LITTLE
;
2781 /* See if the target has the wrong endianness. This should
2782 not happen if the linker script has provided big and
2783 little endian alternatives, but some scrips don't do
2785 if (target
->byteorder
!= desired_endian
)
2787 /* If it does, then see if the target provides
2788 an alternative with the correct endianness. */
2789 if (target
->alternative_target
!= NULL
2790 && (target
->alternative_target
->byteorder
== desired_endian
))
2791 output_target
= target
->alternative_target
->name
;
2794 /* Try to find a target as similar as possible to
2795 the default target, but which has the desired
2796 endian characteristic. */
2797 bfd_search_for_target (closest_target_match
,
2800 /* Oh dear - we could not find any targets that
2801 satisfy our requirements. */
2803 einfo (_("%P: warning: could not find any targets"
2804 " that match endianness requirement\n"));
2806 output_target
= winner
->name
;
2812 output
= bfd_openw (name
, output_target
);
2816 if (bfd_get_error () == bfd_error_invalid_target
)
2817 einfo (_("%P%F: target %s not found\n"), output_target
);
2819 einfo (_("%P%F: cannot open output file %s: %E\n"), name
);
2822 delete_output_file_on_failure
= TRUE
;
2824 if (! bfd_set_format (output
, bfd_object
))
2825 einfo (_("%P%F:%s: can not make object file: %E\n"), name
);
2826 if (! bfd_set_arch_mach (output
,
2827 ldfile_output_architecture
,
2828 ldfile_output_machine
))
2829 einfo (_("%P%F:%s: can not set architecture: %E\n"), name
);
2831 link_info
.hash
= bfd_link_hash_table_create (output
);
2832 if (link_info
.hash
== NULL
)
2833 einfo (_("%P%F: can not create hash table: %E\n"));
2835 bfd_set_gp_size (output
, g_switch_value
);
2840 ldlang_open_output (lang_statement_union_type
*statement
)
2842 switch (statement
->header
.type
)
2844 case lang_output_statement_enum
:
2845 ASSERT (output_bfd
== NULL
);
2846 output_bfd
= open_output (statement
->output_statement
.name
);
2847 ldemul_set_output_arch ();
2848 if (config
.magic_demand_paged
&& !link_info
.relocatable
)
2849 output_bfd
->flags
|= D_PAGED
;
2851 output_bfd
->flags
&= ~D_PAGED
;
2852 if (config
.text_read_only
)
2853 output_bfd
->flags
|= WP_TEXT
;
2855 output_bfd
->flags
&= ~WP_TEXT
;
2856 if (link_info
.traditional_format
)
2857 output_bfd
->flags
|= BFD_TRADITIONAL_FORMAT
;
2859 output_bfd
->flags
&= ~BFD_TRADITIONAL_FORMAT
;
2862 case lang_target_statement_enum
:
2863 current_target
= statement
->target_statement
.target
;
2870 /* Convert between addresses in bytes and sizes in octets.
2871 For currently supported targets, octets_per_byte is always a power
2872 of two, so we can use shifts. */
2873 #define TO_ADDR(X) ((X) >> opb_shift)
2874 #define TO_SIZE(X) ((X) << opb_shift)
2876 /* Support the above. */
2877 static unsigned int opb_shift
= 0;
2882 unsigned x
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2883 ldfile_output_machine
);
2886 while ((x
& 1) == 0)
2894 /* Open all the input files. */
2897 open_input_bfds (lang_statement_union_type
*s
, bfd_boolean force
)
2899 for (; s
!= NULL
; s
= s
->header
.next
)
2901 switch (s
->header
.type
)
2903 case lang_constructors_statement_enum
:
2904 open_input_bfds (constructor_list
.head
, force
);
2906 case lang_output_section_statement_enum
:
2907 open_input_bfds (s
->output_section_statement
.children
.head
, force
);
2909 case lang_wild_statement_enum
:
2910 /* Maybe we should load the file's symbols. */
2911 if (s
->wild_statement
.filename
2912 && ! wildcardp (s
->wild_statement
.filename
))
2913 lookup_name (s
->wild_statement
.filename
);
2914 open_input_bfds (s
->wild_statement
.children
.head
, force
);
2916 case lang_group_statement_enum
:
2918 struct bfd_link_hash_entry
*undefs
;
2920 /* We must continually search the entries in the group
2921 until no new symbols are added to the list of undefined
2926 undefs
= link_info
.hash
->undefs_tail
;
2927 open_input_bfds (s
->group_statement
.children
.head
, TRUE
);
2929 while (undefs
!= link_info
.hash
->undefs_tail
);
2932 case lang_target_statement_enum
:
2933 current_target
= s
->target_statement
.target
;
2935 case lang_input_statement_enum
:
2936 if (s
->input_statement
.real
)
2938 lang_statement_list_type add
;
2940 s
->input_statement
.target
= current_target
;
2942 /* If we are being called from within a group, and this
2943 is an archive which has already been searched, then
2944 force it to be researched unless the whole archive
2945 has been loaded already. */
2947 && !s
->input_statement
.whole_archive
2948 && s
->input_statement
.loaded
2949 && bfd_check_format (s
->input_statement
.the_bfd
,
2951 s
->input_statement
.loaded
= FALSE
;
2953 lang_list_init (&add
);
2955 if (! load_symbols (&s
->input_statement
, &add
))
2956 config
.make_executable
= FALSE
;
2958 if (add
.head
!= NULL
)
2960 *add
.tail
= s
->header
.next
;
2961 s
->header
.next
= add
.head
;
2971 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
2974 lang_track_definedness (const char *name
)
2976 if (bfd_hash_lookup (&lang_definedness_table
, name
, TRUE
, FALSE
) == NULL
)
2977 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name
);
2980 /* New-function for the definedness hash table. */
2982 static struct bfd_hash_entry
*
2983 lang_definedness_newfunc (struct bfd_hash_entry
*entry
,
2984 struct bfd_hash_table
*table ATTRIBUTE_UNUSED
,
2985 const char *name ATTRIBUTE_UNUSED
)
2987 struct lang_definedness_hash_entry
*ret
2988 = (struct lang_definedness_hash_entry
*) entry
;
2991 ret
= (struct lang_definedness_hash_entry
*)
2992 bfd_hash_allocate (table
, sizeof (struct lang_definedness_hash_entry
));
2995 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name
);
2997 ret
->iteration
= -1;
3001 /* Return the iteration when the definition of NAME was last updated. A
3002 value of -1 means that the symbol is not defined in the linker script
3003 or the command line, but may be defined in the linker symbol table. */
3006 lang_symbol_definition_iteration (const char *name
)
3008 struct lang_definedness_hash_entry
*defentry
3009 = (struct lang_definedness_hash_entry
*)
3010 bfd_hash_lookup (&lang_definedness_table
, name
, FALSE
, FALSE
);
3012 /* We've already created this one on the presence of DEFINED in the
3013 script, so it can't be NULL unless something is borked elsewhere in
3015 if (defentry
== NULL
)
3018 return defentry
->iteration
;
3021 /* Update the definedness state of NAME. */
3024 lang_update_definedness (const char *name
, struct bfd_link_hash_entry
*h
)
3026 struct lang_definedness_hash_entry
*defentry
3027 = (struct lang_definedness_hash_entry
*)
3028 bfd_hash_lookup (&lang_definedness_table
, name
, FALSE
, FALSE
);
3030 /* We don't keep track of symbols not tested with DEFINED. */
3031 if (defentry
== NULL
)
3034 /* If the symbol was already defined, and not from an earlier statement
3035 iteration, don't update the definedness iteration, because that'd
3036 make the symbol seem defined in the linker script at this point, and
3037 it wasn't; it was defined in some object. If we do anyway, DEFINED
3038 would start to yield false before this point and the construct "sym =
3039 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
3041 if (h
->type
!= bfd_link_hash_undefined
3042 && h
->type
!= bfd_link_hash_common
3043 && h
->type
!= bfd_link_hash_new
3044 && defentry
->iteration
== -1)
3047 defentry
->iteration
= lang_statement_iteration
;
3050 /* Add the supplied name to the symbol table as an undefined reference.
3051 This is a two step process as the symbol table doesn't even exist at
3052 the time the ld command line is processed. First we put the name
3053 on a list, then, once the output file has been opened, transfer the
3054 name to the symbol table. */
3056 typedef struct bfd_sym_chain ldlang_undef_chain_list_type
;
3058 #define ldlang_undef_chain_list_head entry_symbol.next
3061 ldlang_add_undef (const char *const name
)
3063 ldlang_undef_chain_list_type
*new =
3064 stat_alloc (sizeof (ldlang_undef_chain_list_type
));
3066 new->next
= ldlang_undef_chain_list_head
;
3067 ldlang_undef_chain_list_head
= new;
3069 new->name
= xstrdup (name
);
3071 if (output_bfd
!= NULL
)
3072 insert_undefined (new->name
);
3075 /* Insert NAME as undefined in the symbol table. */
3078 insert_undefined (const char *name
)
3080 struct bfd_link_hash_entry
*h
;
3082 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, FALSE
, TRUE
);
3084 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
3085 if (h
->type
== bfd_link_hash_new
)
3087 h
->type
= bfd_link_hash_undefined
;
3088 h
->u
.undef
.abfd
= NULL
;
3089 bfd_link_add_undef (link_info
.hash
, h
);
3093 /* Run through the list of undefineds created above and place them
3094 into the linker hash table as undefined symbols belonging to the
3098 lang_place_undefineds (void)
3100 ldlang_undef_chain_list_type
*ptr
;
3102 for (ptr
= ldlang_undef_chain_list_head
; ptr
!= NULL
; ptr
= ptr
->next
)
3103 insert_undefined (ptr
->name
);
3106 /* Check for all readonly or some readwrite sections. */
3109 check_input_sections
3110 (lang_statement_union_type
*s
,
3111 lang_output_section_statement_type
*output_section_statement
)
3113 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->header
.next
)
3115 switch (s
->header
.type
)
3117 case lang_wild_statement_enum
:
3118 walk_wild (&s
->wild_statement
, check_section_callback
,
3119 output_section_statement
);
3120 if (! output_section_statement
->all_input_readonly
)
3123 case lang_constructors_statement_enum
:
3124 check_input_sections (constructor_list
.head
,
3125 output_section_statement
);
3126 if (! output_section_statement
->all_input_readonly
)
3129 case lang_group_statement_enum
:
3130 check_input_sections (s
->group_statement
.children
.head
,
3131 output_section_statement
);
3132 if (! output_section_statement
->all_input_readonly
)
3141 /* Update wildcard statements if needed. */
3144 update_wild_statements (lang_statement_union_type
*s
)
3146 struct wildcard_list
*sec
;
3148 switch (sort_section
)
3158 for (; s
!= NULL
; s
= s
->header
.next
)
3160 switch (s
->header
.type
)
3165 case lang_wild_statement_enum
:
3166 sec
= s
->wild_statement
.section_list
;
3169 switch (sec
->spec
.sorted
)
3172 sec
->spec
.sorted
= sort_section
;
3175 if (sort_section
== by_alignment
)
3176 sec
->spec
.sorted
= by_name_alignment
;
3179 if (sort_section
== by_name
)
3180 sec
->spec
.sorted
= by_alignment_name
;
3188 case lang_constructors_statement_enum
:
3189 update_wild_statements (constructor_list
.head
);
3192 case lang_output_section_statement_enum
:
3193 update_wild_statements
3194 (s
->output_section_statement
.children
.head
);
3197 case lang_group_statement_enum
:
3198 update_wild_statements (s
->group_statement
.children
.head
);
3206 /* Open input files and attach to output sections. */
3209 map_input_to_output_sections
3210 (lang_statement_union_type
*s
, const char *target
,
3211 lang_output_section_statement_type
*os
)
3213 for (; s
!= NULL
; s
= s
->header
.next
)
3215 switch (s
->header
.type
)
3217 case lang_wild_statement_enum
:
3218 wild (&s
->wild_statement
, target
, os
);
3220 case lang_constructors_statement_enum
:
3221 map_input_to_output_sections (constructor_list
.head
,
3225 case lang_output_section_statement_enum
:
3226 if (s
->output_section_statement
.constraint
)
3228 if (s
->output_section_statement
.constraint
!= ONLY_IF_RW
3229 && s
->output_section_statement
.constraint
!= ONLY_IF_RO
)
3231 s
->output_section_statement
.all_input_readonly
= TRUE
;
3232 check_input_sections (s
->output_section_statement
.children
.head
,
3233 &s
->output_section_statement
);
3234 if ((s
->output_section_statement
.all_input_readonly
3235 && s
->output_section_statement
.constraint
== ONLY_IF_RW
)
3236 || (!s
->output_section_statement
.all_input_readonly
3237 && s
->output_section_statement
.constraint
== ONLY_IF_RO
))
3239 s
->output_section_statement
.constraint
= -1;
3244 map_input_to_output_sections (s
->output_section_statement
.children
.head
,
3246 &s
->output_section_statement
);
3248 case lang_output_statement_enum
:
3250 case lang_target_statement_enum
:
3251 target
= s
->target_statement
.target
;
3253 case lang_group_statement_enum
:
3254 map_input_to_output_sections (s
->group_statement
.children
.head
,
3258 case lang_data_statement_enum
:
3259 /* Make sure that any sections mentioned in the expression
3261 exp_init_os (s
->data_statement
.exp
);
3262 if (os
!= NULL
&& os
->bfd_section
== NULL
)
3264 /* The output section gets contents, and then we inspect for
3265 any flags set in the input script which override any ALLOC. */
3266 os
->bfd_section
->flags
|= SEC_HAS_CONTENTS
;
3267 if (!(os
->flags
& SEC_NEVER_LOAD
))
3268 os
->bfd_section
->flags
|= SEC_ALLOC
| SEC_LOAD
;
3270 case lang_input_section_enum
:
3272 case lang_fill_statement_enum
:
3273 case lang_object_symbols_statement_enum
:
3274 case lang_reloc_statement_enum
:
3275 case lang_padding_statement_enum
:
3276 case lang_input_statement_enum
:
3277 if (os
!= NULL
&& os
->bfd_section
== NULL
)
3280 case lang_assignment_statement_enum
:
3281 if (os
!= NULL
&& os
->bfd_section
== NULL
)
3284 /* Make sure that any sections mentioned in the assignment
3286 exp_init_os (s
->assignment_statement
.exp
);
3288 case lang_afile_asection_pair_statement_enum
:
3291 case lang_address_statement_enum
:
3292 /* Mark the specified section with the supplied address.
3294 If this section was actually a segment marker, then the
3295 directive is ignored if the linker script explicitly
3296 processed the segment marker. Originally, the linker
3297 treated segment directives (like -Ttext on the
3298 command-line) as section directives. We honor the
3299 section directive semantics for backwards compatibilty;
3300 linker scripts that do not specifically check for
3301 SEGMENT_START automatically get the old semantics. */
3302 if (!s
->address_statement
.segment
3303 || !s
->address_statement
.segment
->used
)
3305 lang_output_section_statement_type
*aos
3306 = (lang_output_section_statement_lookup
3307 (s
->address_statement
.section_name
));
3309 if (aos
->bfd_section
== NULL
)
3310 init_os (aos
, NULL
);
3311 aos
->addr_tree
= s
->address_statement
.address
;
3318 /* An output section might have been removed after its statement was
3319 added. For example, ldemul_before_allocation can remove dynamic
3320 sections if they turn out to be not needed. Clean them up here. */
3323 strip_excluded_output_sections (void)
3325 lang_output_section_statement_type
*os
;
3327 /* Run lang_size_sections (if not already done). */
3328 if (expld
.phase
!= lang_mark_phase_enum
)
3330 expld
.phase
= lang_mark_phase_enum
;
3331 expld
.dataseg
.phase
= exp_dataseg_none
;
3332 one_lang_size_sections_pass (NULL
, FALSE
);
3333 lang_reset_memory_regions ();
3336 for (os
= &lang_output_section_statement
.head
->output_section_statement
;
3340 asection
*output_section
;
3341 bfd_boolean exclude
;
3343 if (os
->constraint
== -1)
3346 output_section
= os
->bfd_section
;
3347 if (output_section
== NULL
)
3350 exclude
= (output_section
->rawsize
== 0
3351 && (output_section
->flags
& SEC_KEEP
) == 0
3352 && !bfd_section_removed_from_list (output_bfd
,
3355 /* Some sections have not yet been sized, notably .gnu.version,
3356 .dynsym, .dynstr and .hash. These all have SEC_LINKER_CREATED
3357 input sections, so don't drop output sections that have such
3358 input sections unless they are also marked SEC_EXCLUDE. */
3359 if (exclude
&& output_section
->map_head
.s
!= NULL
)
3363 for (s
= output_section
->map_head
.s
; s
!= NULL
; s
= s
->map_head
.s
)
3364 if ((s
->flags
& SEC_LINKER_CREATED
) != 0
3365 && (s
->flags
& SEC_EXCLUDE
) == 0)
3372 /* TODO: Don't just junk map_head.s, turn them into link_orders. */
3373 output_section
->map_head
.link_order
= NULL
;
3374 output_section
->map_tail
.link_order
= NULL
;
3378 /* We don't set bfd_section to NULL since bfd_section of the
3379 removed output section statement may still be used. */
3381 output_section
->flags
|= SEC_EXCLUDE
;
3382 bfd_section_list_remove (output_bfd
, output_section
);
3383 output_bfd
->section_count
--;
3387 /* Stop future calls to lang_add_section from messing with map_head
3388 and map_tail link_order fields. */
3389 stripped_excluded_sections
= TRUE
;
3393 print_output_section_statement
3394 (lang_output_section_statement_type
*output_section_statement
)
3396 asection
*section
= output_section_statement
->bfd_section
;
3399 if (output_section_statement
!= abs_output_section
)
3401 minfo ("\n%s", output_section_statement
->name
);
3403 if (section
!= NULL
)
3405 print_dot
= section
->vma
;
3407 len
= strlen (output_section_statement
->name
);
3408 if (len
>= SECTION_NAME_MAP_LENGTH
- 1)
3413 while (len
< SECTION_NAME_MAP_LENGTH
)
3419 minfo ("0x%V %W", section
->vma
, section
->size
);
3421 if (output_section_statement
->load_base
!= NULL
)
3425 addr
= exp_get_abs_int (output_section_statement
->load_base
, 0,
3427 minfo (_(" load address 0x%V"), addr
);
3434 print_statement_list (output_section_statement
->children
.head
,
3435 output_section_statement
);
3438 /* Scan for the use of the destination in the right hand side
3439 of an expression. In such cases we will not compute the
3440 correct expression, since the value of DST that is used on
3441 the right hand side will be its final value, not its value
3442 just before this expression is evaluated. */
3445 scan_for_self_assignment (const char * dst
, etree_type
* rhs
)
3447 if (rhs
== NULL
|| dst
== NULL
)
3450 switch (rhs
->type
.node_class
)
3453 return scan_for_self_assignment (dst
, rhs
->binary
.lhs
)
3454 || scan_for_self_assignment (dst
, rhs
->binary
.rhs
);
3457 return scan_for_self_assignment (dst
, rhs
->trinary
.lhs
)
3458 || scan_for_self_assignment (dst
, rhs
->trinary
.rhs
);
3461 case etree_provided
:
3463 if (strcmp (dst
, rhs
->assign
.dst
) == 0)
3465 return scan_for_self_assignment (dst
, rhs
->assign
.src
);
3468 return scan_for_self_assignment (dst
, rhs
->unary
.child
);
3472 return strcmp (dst
, rhs
->value
.str
) == 0;
3477 return strcmp (dst
, rhs
->name
.name
) == 0;
3489 print_assignment (lang_assignment_statement_type
*assignment
,
3490 lang_output_section_statement_type
*output_section
)
3494 bfd_boolean computation_is_valid
= TRUE
;
3497 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
3500 if (assignment
->exp
->type
.node_class
== etree_assert
)
3503 tree
= assignment
->exp
->assert_s
.child
;
3504 computation_is_valid
= TRUE
;
3508 const char *dst
= assignment
->exp
->assign
.dst
;
3510 is_dot
= (dst
[0] == '.' && dst
[1] == 0);
3511 tree
= assignment
->exp
->assign
.src
;
3512 computation_is_valid
= is_dot
|| (scan_for_self_assignment (dst
, tree
) == FALSE
);
3515 exp_fold_tree (tree
, output_section
->bfd_section
, &print_dot
);
3516 if (expld
.result
.valid_p
)
3520 if (computation_is_valid
)
3522 value
= expld
.result
.value
;
3524 if (expld
.result
.section
)
3525 value
+= expld
.result
.section
->vma
;
3527 minfo ("0x%V", value
);
3533 struct bfd_link_hash_entry
*h
;
3535 h
= bfd_link_hash_lookup (link_info
.hash
, assignment
->exp
->assign
.dst
,
3536 FALSE
, FALSE
, TRUE
);
3539 value
= h
->u
.def
.value
;
3541 if (expld
.result
.section
)
3542 value
+= expld
.result
.section
->vma
;
3544 minfo ("[0x%V]", value
);
3547 minfo ("[unresolved]");
3559 exp_print_tree (assignment
->exp
);
3564 print_input_statement (lang_input_statement_type
*statm
)
3566 if (statm
->filename
!= NULL
)
3568 fprintf (config
.map_file
, "LOAD %s\n", statm
->filename
);
3572 /* Print all symbols defined in a particular section. This is called
3573 via bfd_link_hash_traverse, or by print_all_symbols. */
3576 print_one_symbol (struct bfd_link_hash_entry
*hash_entry
, void *ptr
)
3578 asection
*sec
= ptr
;
3580 if ((hash_entry
->type
== bfd_link_hash_defined
3581 || hash_entry
->type
== bfd_link_hash_defweak
)
3582 && sec
== hash_entry
->u
.def
.section
)
3586 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
3589 (hash_entry
->u
.def
.value
3590 + hash_entry
->u
.def
.section
->output_offset
3591 + hash_entry
->u
.def
.section
->output_section
->vma
));
3593 minfo (" %T\n", hash_entry
->root
.string
);
3600 print_all_symbols (asection
*sec
)
3602 struct fat_user_section_struct
*ud
= get_userdata (sec
);
3603 struct map_symbol_def
*def
;
3608 *ud
->map_symbol_def_tail
= 0;
3609 for (def
= ud
->map_symbol_def_head
; def
; def
= def
->next
)
3610 print_one_symbol (def
->entry
, sec
);
3613 /* Print information about an input section to the map file. */
3616 print_input_section (asection
*i
)
3618 bfd_size_type size
= i
->size
;
3625 minfo ("%s", i
->name
);
3627 len
= 1 + strlen (i
->name
);
3628 if (len
>= SECTION_NAME_MAP_LENGTH
- 1)
3633 while (len
< SECTION_NAME_MAP_LENGTH
)
3639 if (i
->output_section
!= NULL
&& i
->output_section
->owner
== output_bfd
)
3640 addr
= i
->output_section
->vma
+ i
->output_offset
;
3647 minfo ("0x%V %W %B\n", addr
, TO_ADDR (size
), i
->owner
);
3649 if (size
!= i
->rawsize
&& i
->rawsize
!= 0)
3651 len
= SECTION_NAME_MAP_LENGTH
+ 3;
3663 minfo (_("%W (size before relaxing)\n"), i
->rawsize
);
3666 if (i
->output_section
!= NULL
&& i
->output_section
->owner
== output_bfd
)
3668 if (command_line
.reduce_memory_overheads
)
3669 bfd_link_hash_traverse (link_info
.hash
, print_one_symbol
, i
);
3671 print_all_symbols (i
);
3673 print_dot
= addr
+ TO_ADDR (size
);
3678 print_fill_statement (lang_fill_statement_type
*fill
)
3682 fputs (" FILL mask 0x", config
.map_file
);
3683 for (p
= fill
->fill
->data
, size
= fill
->fill
->size
; size
!= 0; p
++, size
--)
3684 fprintf (config
.map_file
, "%02x", *p
);
3685 fputs ("\n", config
.map_file
);
3689 print_data_statement (lang_data_statement_type
*data
)
3697 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
3700 addr
= data
->output_offset
;
3701 if (data
->output_section
!= NULL
)
3702 addr
+= data
->output_section
->vma
;
3730 minfo ("0x%V %W %s 0x%v", addr
, size
, name
, data
->value
);
3732 if (data
->exp
->type
.node_class
!= etree_value
)
3735 exp_print_tree (data
->exp
);
3740 print_dot
= addr
+ TO_ADDR (size
);
3743 /* Print an address statement. These are generated by options like
3747 print_address_statement (lang_address_statement_type
*address
)
3749 minfo (_("Address of section %s set to "), address
->section_name
);
3750 exp_print_tree (address
->address
);
3754 /* Print a reloc statement. */
3757 print_reloc_statement (lang_reloc_statement_type
*reloc
)
3764 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
3767 addr
= reloc
->output_offset
;
3768 if (reloc
->output_section
!= NULL
)
3769 addr
+= reloc
->output_section
->vma
;
3771 size
= bfd_get_reloc_size (reloc
->howto
);
3773 minfo ("0x%V %W RELOC %s ", addr
, size
, reloc
->howto
->name
);
3775 if (reloc
->name
!= NULL
)
3776 minfo ("%s+", reloc
->name
);
3778 minfo ("%s+", reloc
->section
->name
);
3780 exp_print_tree (reloc
->addend_exp
);
3784 print_dot
= addr
+ TO_ADDR (size
);
3788 print_padding_statement (lang_padding_statement_type
*s
)
3796 len
= sizeof " *fill*" - 1;
3797 while (len
< SECTION_NAME_MAP_LENGTH
)
3803 addr
= s
->output_offset
;
3804 if (s
->output_section
!= NULL
)
3805 addr
+= s
->output_section
->vma
;
3806 minfo ("0x%V %W ", addr
, (bfd_vma
) s
->size
);
3808 if (s
->fill
->size
!= 0)
3812 for (p
= s
->fill
->data
, size
= s
->fill
->size
; size
!= 0; p
++, size
--)
3813 fprintf (config
.map_file
, "%02x", *p
);
3818 print_dot
= addr
+ TO_ADDR (s
->size
);
3822 print_wild_statement (lang_wild_statement_type
*w
,
3823 lang_output_section_statement_type
*os
)
3825 struct wildcard_list
*sec
;
3829 if (w
->filenames_sorted
)
3831 if (w
->filename
!= NULL
)
3832 minfo ("%s", w
->filename
);
3835 if (w
->filenames_sorted
)
3839 for (sec
= w
->section_list
; sec
; sec
= sec
->next
)
3841 if (sec
->spec
.sorted
)
3843 if (sec
->spec
.exclude_name_list
!= NULL
)
3846 minfo ("EXCLUDE_FILE(%s", sec
->spec
.exclude_name_list
->name
);
3847 for (tmp
= sec
->spec
.exclude_name_list
->next
; tmp
; tmp
= tmp
->next
)
3848 minfo (" %s", tmp
->name
);
3851 if (sec
->spec
.name
!= NULL
)
3852 minfo ("%s", sec
->spec
.name
);
3855 if (sec
->spec
.sorted
)
3864 print_statement_list (w
->children
.head
, os
);
3867 /* Print a group statement. */
3870 print_group (lang_group_statement_type
*s
,
3871 lang_output_section_statement_type
*os
)
3873 fprintf (config
.map_file
, "START GROUP\n");
3874 print_statement_list (s
->children
.head
, os
);
3875 fprintf (config
.map_file
, "END GROUP\n");
3878 /* Print the list of statements in S.
3879 This can be called for any statement type. */
3882 print_statement_list (lang_statement_union_type
*s
,
3883 lang_output_section_statement_type
*os
)
3887 print_statement (s
, os
);
3892 /* Print the first statement in statement list S.
3893 This can be called for any statement type. */
3896 print_statement (lang_statement_union_type
*s
,
3897 lang_output_section_statement_type
*os
)
3899 switch (s
->header
.type
)
3902 fprintf (config
.map_file
, _("Fail with %d\n"), s
->header
.type
);
3905 case lang_constructors_statement_enum
:
3906 if (constructor_list
.head
!= NULL
)
3908 if (constructors_sorted
)
3909 minfo (" SORT (CONSTRUCTORS)\n");
3911 minfo (" CONSTRUCTORS\n");
3912 print_statement_list (constructor_list
.head
, os
);
3915 case lang_wild_statement_enum
:
3916 print_wild_statement (&s
->wild_statement
, os
);
3918 case lang_address_statement_enum
:
3919 print_address_statement (&s
->address_statement
);
3921 case lang_object_symbols_statement_enum
:
3922 minfo (" CREATE_OBJECT_SYMBOLS\n");
3924 case lang_fill_statement_enum
:
3925 print_fill_statement (&s
->fill_statement
);
3927 case lang_data_statement_enum
:
3928 print_data_statement (&s
->data_statement
);
3930 case lang_reloc_statement_enum
:
3931 print_reloc_statement (&s
->reloc_statement
);
3933 case lang_input_section_enum
:
3934 print_input_section (s
->input_section
.section
);
3936 case lang_padding_statement_enum
:
3937 print_padding_statement (&s
->padding_statement
);
3939 case lang_output_section_statement_enum
:
3940 print_output_section_statement (&s
->output_section_statement
);
3942 case lang_assignment_statement_enum
:
3943 print_assignment (&s
->assignment_statement
, os
);
3945 case lang_target_statement_enum
:
3946 fprintf (config
.map_file
, "TARGET(%s)\n", s
->target_statement
.target
);
3948 case lang_output_statement_enum
:
3949 minfo ("OUTPUT(%s", s
->output_statement
.name
);
3950 if (output_target
!= NULL
)
3951 minfo (" %s", output_target
);
3954 case lang_input_statement_enum
:
3955 print_input_statement (&s
->input_statement
);
3957 case lang_group_statement_enum
:
3958 print_group (&s
->group_statement
, os
);
3960 case lang_afile_asection_pair_statement_enum
:
3967 print_statements (void)
3969 print_statement_list (statement_list
.head
, abs_output_section
);
3972 /* Print the first N statements in statement list S to STDERR.
3973 If N == 0, nothing is printed.
3974 If N < 0, the entire list is printed.
3975 Intended to be called from GDB. */
3978 dprint_statement (lang_statement_union_type
*s
, int n
)
3980 FILE *map_save
= config
.map_file
;
3982 config
.map_file
= stderr
;
3985 print_statement_list (s
, abs_output_section
);
3988 while (s
&& --n
>= 0)
3990 print_statement (s
, abs_output_section
);
3995 config
.map_file
= map_save
;
3999 insert_pad (lang_statement_union_type
**ptr
,
4001 unsigned int alignment_needed
,
4002 asection
*output_section
,
4005 static fill_type zero_fill
= { 1, { 0 } };
4006 lang_statement_union_type
*pad
= NULL
;
4008 if (ptr
!= &statement_list
.head
)
4009 pad
= ((lang_statement_union_type
*)
4010 ((char *) ptr
- offsetof (lang_statement_union_type
, header
.next
)));
4012 && pad
->header
.type
== lang_padding_statement_enum
4013 && pad
->padding_statement
.output_section
== output_section
)
4015 /* Use the existing pad statement. */
4017 else if ((pad
= *ptr
) != NULL
4018 && pad
->header
.type
== lang_padding_statement_enum
4019 && pad
->padding_statement
.output_section
== output_section
)
4021 /* Use the existing pad statement. */
4025 /* Make a new padding statement, linked into existing chain. */
4026 pad
= stat_alloc (sizeof (lang_padding_statement_type
));
4027 pad
->header
.next
= *ptr
;
4029 pad
->header
.type
= lang_padding_statement_enum
;
4030 pad
->padding_statement
.output_section
= output_section
;
4033 pad
->padding_statement
.fill
= fill
;
4035 pad
->padding_statement
.output_offset
= dot
- output_section
->vma
;
4036 pad
->padding_statement
.size
= alignment_needed
;
4037 output_section
->size
+= alignment_needed
;
4040 /* Work out how much this section will move the dot point. */
4044 (lang_statement_union_type
**this_ptr
,
4045 lang_output_section_statement_type
*output_section_statement
,
4049 lang_input_section_type
*is
= &((*this_ptr
)->input_section
);
4050 asection
*i
= is
->section
;
4052 if (!((lang_input_statement_type
*) i
->owner
->usrdata
)->just_syms_flag
4053 && (i
->flags
& SEC_EXCLUDE
) == 0)
4055 unsigned int alignment_needed
;
4058 /* Align this section first to the input sections requirement,
4059 then to the output section's requirement. If this alignment
4060 is greater than any seen before, then record it too. Perform
4061 the alignment by inserting a magic 'padding' statement. */
4063 if (output_section_statement
->subsection_alignment
!= -1)
4064 i
->alignment_power
= output_section_statement
->subsection_alignment
;
4066 o
= output_section_statement
->bfd_section
;
4067 if (o
->alignment_power
< i
->alignment_power
)
4068 o
->alignment_power
= i
->alignment_power
;
4070 alignment_needed
= align_power (dot
, i
->alignment_power
) - dot
;
4072 if (alignment_needed
!= 0)
4074 insert_pad (this_ptr
, fill
, TO_SIZE (alignment_needed
), o
, dot
);
4075 dot
+= alignment_needed
;
4078 /* Remember where in the output section this input section goes. */
4080 i
->output_offset
= dot
- o
->vma
;
4082 /* Mark how big the output section must be to contain this now. */
4083 dot
+= TO_ADDR (i
->size
);
4084 o
->size
= TO_SIZE (dot
- o
->vma
);
4088 i
->output_offset
= i
->vma
- output_section_statement
->bfd_section
->vma
;
4095 sort_sections_by_lma (const void *arg1
, const void *arg2
)
4097 const asection
*sec1
= *(const asection
**) arg1
;
4098 const asection
*sec2
= *(const asection
**) arg2
;
4100 if (bfd_section_lma (sec1
->owner
, sec1
)
4101 < bfd_section_lma (sec2
->owner
, sec2
))
4103 else if (bfd_section_lma (sec1
->owner
, sec1
)
4104 > bfd_section_lma (sec2
->owner
, sec2
))
4110 #define IGNORE_SECTION(s) \
4111 ((s->flags & SEC_NEVER_LOAD) != 0 \
4112 || (s->flags & SEC_ALLOC) == 0 \
4113 || ((s->flags & SEC_THREAD_LOCAL) != 0 \
4114 && (s->flags & SEC_LOAD) == 0))
4116 /* Check to see if any allocated sections overlap with other allocated
4117 sections. This can happen if a linker script specifies the output
4118 section addresses of the two sections. */
4121 lang_check_section_addresses (void)
4124 asection
**sections
, **spp
;
4132 if (bfd_count_sections (output_bfd
) <= 1)
4135 amt
= bfd_count_sections (output_bfd
) * sizeof (asection
*);
4136 sections
= xmalloc (amt
);
4138 /* Scan all sections in the output list. */
4140 for (s
= output_bfd
->sections
; s
!= NULL
; s
= s
->next
)
4142 /* Only consider loadable sections with real contents. */
4143 if (IGNORE_SECTION (s
) || s
->size
== 0)
4146 sections
[count
] = s
;
4153 qsort (sections
, (size_t) count
, sizeof (asection
*),
4154 sort_sections_by_lma
);
4158 s_start
= bfd_section_lma (output_bfd
, s
);
4159 s_end
= s_start
+ TO_ADDR (s
->size
) - 1;
4160 for (count
--; count
; count
--)
4162 /* We must check the sections' LMA addresses not their VMA
4163 addresses because overlay sections can have overlapping VMAs
4164 but they must have distinct LMAs. */
4169 s_start
= bfd_section_lma (output_bfd
, s
);
4170 s_end
= s_start
+ TO_ADDR (s
->size
) - 1;
4172 /* Look for an overlap. */
4173 if (s_end
>= os_start
&& s_start
<= os_end
)
4174 einfo (_("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
4175 s
->name
, s_start
, s_end
, os
->name
, os_start
, os_end
);
4181 /* Make sure the new address is within the region. We explicitly permit the
4182 current address to be at the exact end of the region when the address is
4183 non-zero, in case the region is at the end of addressable memory and the
4184 calculation wraps around. */
4187 os_region_check (lang_output_section_statement_type
*os
,
4188 lang_memory_region_type
*region
,
4192 if ((region
->current
< region
->origin
4193 || (region
->current
- region
->origin
> region
->length
))
4194 && ((region
->current
!= region
->origin
+ region
->length
)
4199 einfo (_("%X%P: address 0x%v of %B section %s"
4200 " is not within region %s\n"),
4202 os
->bfd_section
->owner
,
4203 os
->bfd_section
->name
,
4208 einfo (_("%X%P: region %s is full (%B section %s)\n"),
4210 os
->bfd_section
->owner
,
4211 os
->bfd_section
->name
);
4213 /* Reset the region pointer. */
4214 region
->current
= region
->origin
;
4218 /* Set the sizes for all the output sections. */
4221 lang_size_sections_1
4222 (lang_statement_union_type
*s
,
4223 lang_output_section_statement_type
*output_section_statement
,
4224 lang_statement_union_type
**prev
,
4228 bfd_boolean check_regions
)
4230 /* Size up the sections from their constituent parts. */
4231 for (; s
!= NULL
; s
= s
->header
.next
)
4233 switch (s
->header
.type
)
4235 case lang_output_section_statement_enum
:
4237 bfd_vma newdot
, after
;
4238 lang_output_section_statement_type
*os
;
4240 os
= &s
->output_section_statement
;
4241 if (os
->addr_tree
!= NULL
)
4243 os
->processed
= FALSE
;
4244 exp_fold_tree (os
->addr_tree
, bfd_abs_section_ptr
, &dot
);
4246 if (!expld
.result
.valid_p
4247 && expld
.phase
!= lang_mark_phase_enum
)
4248 einfo (_("%F%S: non constant or forward reference"
4249 " address expression for section %s\n"),
4252 dot
= expld
.result
.value
+ expld
.result
.section
->vma
;
4255 if (os
->bfd_section
== NULL
)
4256 /* This section was removed or never actually created. */
4259 /* If this is a COFF shared library section, use the size and
4260 address from the input section. FIXME: This is COFF
4261 specific; it would be cleaner if there were some other way
4262 to do this, but nothing simple comes to mind. */
4263 if ((bfd_get_flavour (output_bfd
) == bfd_target_ecoff_flavour
4264 || bfd_get_flavour (output_bfd
) == bfd_target_coff_flavour
)
4265 && (os
->bfd_section
->flags
& SEC_COFF_SHARED_LIBRARY
) != 0)
4269 if (os
->children
.head
== NULL
4270 || os
->children
.head
->header
.next
!= NULL
4271 || (os
->children
.head
->header
.type
4272 != lang_input_section_enum
))
4273 einfo (_("%P%X: Internal error on COFF shared library"
4274 " section %s\n"), os
->name
);
4276 input
= os
->children
.head
->input_section
.section
;
4277 bfd_set_section_vma (os
->bfd_section
->owner
,
4279 bfd_section_vma (input
->owner
, input
));
4280 os
->bfd_section
->size
= input
->size
;
4285 if (bfd_is_abs_section (os
->bfd_section
))
4287 /* No matter what happens, an abs section starts at zero. */
4288 ASSERT (os
->bfd_section
->vma
== 0);
4294 if (os
->addr_tree
== NULL
)
4296 /* No address specified for this section, get one
4297 from the region specification. */
4298 if (os
->region
== NULL
4299 || ((os
->bfd_section
->flags
& (SEC_ALLOC
| SEC_LOAD
))
4300 && os
->region
->name
[0] == '*'
4301 && strcmp (os
->region
->name
,
4302 DEFAULT_MEMORY_REGION
) == 0))
4304 os
->region
= lang_memory_default (os
->bfd_section
);
4307 /* If a loadable section is using the default memory
4308 region, and some non default memory regions were
4309 defined, issue an error message. */
4311 && !IGNORE_SECTION (os
->bfd_section
)
4312 && ! link_info
.relocatable
4314 && strcmp (os
->region
->name
,
4315 DEFAULT_MEMORY_REGION
) == 0
4316 && lang_memory_region_list
!= NULL
4317 && (strcmp (lang_memory_region_list
->name
,
4318 DEFAULT_MEMORY_REGION
) != 0
4319 || lang_memory_region_list
->next
!= NULL
)
4320 && expld
.phase
!= lang_mark_phase_enum
)
4322 /* By default this is an error rather than just a
4323 warning because if we allocate the section to the
4324 default memory region we can end up creating an
4325 excessively large binary, or even seg faulting when
4326 attempting to perform a negative seek. See
4327 sources.redhat.com/ml/binutils/2003-04/msg00423.html
4328 for an example of this. This behaviour can be
4329 overridden by the using the --no-check-sections
4331 if (command_line
.check_section_addresses
)
4332 einfo (_("%P%F: error: no memory region specified"
4333 " for loadable section `%s'\n"),
4334 bfd_get_section_name (output_bfd
,
4337 einfo (_("%P: warning: no memory region specified"
4338 " for loadable section `%s'\n"),
4339 bfd_get_section_name (output_bfd
,
4343 newdot
= os
->region
->current
;
4344 align
= os
->bfd_section
->alignment_power
;
4347 align
= os
->section_alignment
;
4349 /* Align to what the section needs. */
4352 bfd_vma savedot
= newdot
;
4353 newdot
= align_power (newdot
, align
);
4355 if (newdot
!= savedot
4356 && (config
.warn_section_align
4357 || os
->addr_tree
!= NULL
)
4358 && expld
.phase
!= lang_mark_phase_enum
)
4359 einfo (_("%P: warning: changing start of section"
4360 " %s by %lu bytes\n"),
4361 os
->name
, (unsigned long) (newdot
- savedot
));
4364 bfd_set_section_vma (0, os
->bfd_section
, newdot
);
4366 os
->bfd_section
->output_offset
= 0;
4369 lang_size_sections_1 (os
->children
.head
, os
, &os
->children
.head
,
4370 os
->fill
, newdot
, relax
, check_regions
);
4372 os
->processed
= TRUE
;
4374 if (bfd_is_abs_section (os
->bfd_section
) || os
->ignored
)
4376 ASSERT (os
->bfd_section
->size
== 0);
4380 dot
= os
->bfd_section
->vma
;
4382 /* Put the section within the requested block size, or
4383 align at the block boundary. */
4385 + TO_ADDR (os
->bfd_section
->size
)
4386 + os
->block_value
- 1)
4387 & - (bfd_vma
) os
->block_value
);
4389 os
->bfd_section
->size
= TO_SIZE (after
- os
->bfd_section
->vma
);
4391 /* .tbss sections effectively have zero size. */
4392 if ((os
->bfd_section
->flags
& SEC_HAS_CONTENTS
) != 0
4393 || (os
->bfd_section
->flags
& SEC_THREAD_LOCAL
) == 0
4394 || link_info
.relocatable
)
4395 dot
+= TO_ADDR (os
->bfd_section
->size
);
4397 if (os
->update_dot_tree
!= 0)
4398 exp_fold_tree (os
->update_dot_tree
, bfd_abs_section_ptr
, &dot
);
4400 /* Update dot in the region ?
4401 We only do this if the section is going to be allocated,
4402 since unallocated sections do not contribute to the region's
4403 overall size in memory.
4405 If the SEC_NEVER_LOAD bit is not set, it will affect the
4406 addresses of sections after it. We have to update
4408 if (os
->region
!= NULL
4409 && ((os
->bfd_section
->flags
& SEC_NEVER_LOAD
) == 0
4410 || (os
->bfd_section
->flags
& (SEC_ALLOC
| SEC_LOAD
))))
4412 os
->region
->current
= dot
;
4415 /* Make sure the new address is within the region. */
4416 os_region_check (os
, os
->region
, os
->addr_tree
,
4417 os
->bfd_section
->vma
);
4419 /* If there's no load address specified, use the run
4420 region as the load region. */
4421 if (os
->lma_region
== NULL
&& os
->load_base
== NULL
)
4422 os
->lma_region
= os
->region
;
4424 if (os
->lma_region
!= NULL
&& os
->lma_region
!= os
->region
)
4426 /* Set load_base, which will be handled later. */
4427 os
->load_base
= exp_intop (os
->lma_region
->current
);
4428 os
->lma_region
->current
+=
4429 TO_ADDR (os
->bfd_section
->size
);
4431 os_region_check (os
, os
->lma_region
, NULL
,
4432 os
->bfd_section
->lma
);
4438 case lang_constructors_statement_enum
:
4439 dot
= lang_size_sections_1 (constructor_list
.head
,
4440 output_section_statement
,
4441 &s
->wild_statement
.children
.head
,
4442 fill
, dot
, relax
, check_regions
);
4445 case lang_data_statement_enum
:
4447 unsigned int size
= 0;
4449 s
->data_statement
.output_offset
=
4450 dot
- output_section_statement
->bfd_section
->vma
;
4451 s
->data_statement
.output_section
=
4452 output_section_statement
->bfd_section
;
4454 /* We might refer to provided symbols in the expression, and
4455 need to mark them as needed. */
4456 exp_fold_tree (s
->data_statement
.exp
, bfd_abs_section_ptr
, &dot
);
4458 switch (s
->data_statement
.type
)
4476 if (size
< TO_SIZE ((unsigned) 1))
4477 size
= TO_SIZE ((unsigned) 1);
4478 dot
+= TO_ADDR (size
);
4479 output_section_statement
->bfd_section
->size
+= size
;
4483 case lang_reloc_statement_enum
:
4487 s
->reloc_statement
.output_offset
=
4488 dot
- output_section_statement
->bfd_section
->vma
;
4489 s
->reloc_statement
.output_section
=
4490 output_section_statement
->bfd_section
;
4491 size
= bfd_get_reloc_size (s
->reloc_statement
.howto
);
4492 dot
+= TO_ADDR (size
);
4493 output_section_statement
->bfd_section
->size
+= size
;
4497 case lang_wild_statement_enum
:
4498 dot
= lang_size_sections_1 (s
->wild_statement
.children
.head
,
4499 output_section_statement
,
4500 &s
->wild_statement
.children
.head
,
4501 fill
, dot
, relax
, check_regions
);
4504 case lang_object_symbols_statement_enum
:
4505 link_info
.create_object_symbols_section
=
4506 output_section_statement
->bfd_section
;
4509 case lang_output_statement_enum
:
4510 case lang_target_statement_enum
:
4513 case lang_input_section_enum
:
4517 i
= (*prev
)->input_section
.section
;
4522 if (! bfd_relax_section (i
->owner
, i
, &link_info
, &again
))
4523 einfo (_("%P%F: can't relax section: %E\n"));
4527 dot
= size_input_section (prev
, output_section_statement
,
4528 output_section_statement
->fill
, dot
);
4532 case lang_input_statement_enum
:
4535 case lang_fill_statement_enum
:
4536 s
->fill_statement
.output_section
=
4537 output_section_statement
->bfd_section
;
4539 fill
= s
->fill_statement
.fill
;
4542 case lang_assignment_statement_enum
:
4544 bfd_vma newdot
= dot
;
4546 exp_fold_tree (s
->assignment_statement
.exp
,
4547 output_section_statement
->bfd_section
,
4550 if (newdot
!= dot
&& !output_section_statement
->ignored
)
4552 if (output_section_statement
== abs_output_section
)
4554 /* If we don't have an output section, then just adjust
4555 the default memory address. */
4556 lang_memory_region_lookup (DEFAULT_MEMORY_REGION
,
4557 FALSE
)->current
= newdot
;
4561 /* Insert a pad after this statement. We can't
4562 put the pad before when relaxing, in case the
4563 assignment references dot. */
4564 insert_pad (&s
->header
.next
, fill
, TO_SIZE (newdot
- dot
),
4565 output_section_statement
->bfd_section
, dot
);
4567 /* Don't neuter the pad below when relaxing. */
4570 /* If dot is advanced, this implies that the section
4571 should have space allocated to it, unless the
4572 user has explicitly stated that the section
4573 should never be loaded. */
4574 if (!(output_section_statement
->flags
4575 & (SEC_NEVER_LOAD
| SEC_ALLOC
)))
4576 output_section_statement
->bfd_section
->flags
|= SEC_ALLOC
;
4583 case lang_padding_statement_enum
:
4584 /* If this is the first time lang_size_sections is called,
4585 we won't have any padding statements. If this is the
4586 second or later passes when relaxing, we should allow
4587 padding to shrink. If padding is needed on this pass, it
4588 will be added back in. */
4589 s
->padding_statement
.size
= 0;
4591 /* Make sure output_offset is valid. If relaxation shrinks
4592 the section and this pad isn't needed, it's possible to
4593 have output_offset larger than the final size of the
4594 section. bfd_set_section_contents will complain even for
4595 a pad size of zero. */
4596 s
->padding_statement
.output_offset
4597 = dot
- output_section_statement
->bfd_section
->vma
;
4600 case lang_group_statement_enum
:
4601 dot
= lang_size_sections_1 (s
->group_statement
.children
.head
,
4602 output_section_statement
,
4603 &s
->group_statement
.children
.head
,
4604 fill
, dot
, relax
, check_regions
);
4611 /* We can only get here when relaxing is turned on. */
4612 case lang_address_statement_enum
:
4615 prev
= &s
->header
.next
;
4621 one_lang_size_sections_pass (bfd_boolean
*relax
, bfd_boolean check_regions
)
4623 lang_statement_iteration
++;
4624 lang_size_sections_1 (statement_list
.head
, abs_output_section
,
4625 &statement_list
.head
, 0, 0, relax
, check_regions
);
4629 lang_size_sections (bfd_boolean
*relax
, bfd_boolean check_regions
)
4631 expld
.phase
= lang_allocating_phase_enum
;
4632 expld
.dataseg
.phase
= exp_dataseg_none
;
4634 one_lang_size_sections_pass (relax
, check_regions
);
4635 if (expld
.dataseg
.phase
== exp_dataseg_end_seen
4636 && link_info
.relro
&& expld
.dataseg
.relro_end
)
4638 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
4639 to put expld.dataseg.relro on a (common) page boundary. */
4640 bfd_vma old_min_base
, relro_end
, maxpage
;
4642 expld
.dataseg
.phase
= exp_dataseg_relro_adjust
;
4643 old_min_base
= expld
.dataseg
.min_base
;
4644 maxpage
= expld
.dataseg
.maxpagesize
;
4645 expld
.dataseg
.base
+= (-expld
.dataseg
.relro_end
4646 & (expld
.dataseg
.pagesize
- 1));
4647 /* Compute the expected PT_GNU_RELRO segment end. */
4648 relro_end
= (expld
.dataseg
.relro_end
+ expld
.dataseg
.pagesize
- 1)
4649 & ~(expld
.dataseg
.pagesize
- 1);
4650 if (old_min_base
+ maxpage
< expld
.dataseg
.base
)
4652 expld
.dataseg
.base
-= maxpage
;
4653 relro_end
-= maxpage
;
4655 lang_reset_memory_regions ();
4656 one_lang_size_sections_pass (relax
, check_regions
);
4657 if (expld
.dataseg
.relro_end
> relro_end
)
4659 /* The alignment of sections between DATA_SEGMENT_ALIGN
4660 and DATA_SEGMENT_RELRO_END caused huge padding to be
4661 inserted at DATA_SEGMENT_RELRO_END. Try some other base. */
4663 unsigned int max_alignment_power
= 0;
4665 /* Find maximum alignment power of sections between
4666 DATA_SEGMENT_ALIGN and DATA_SEGMENT_RELRO_END. */
4667 for (sec
= output_bfd
->sections
; sec
; sec
= sec
->next
)
4668 if (sec
->vma
>= expld
.dataseg
.base
4669 && sec
->vma
< expld
.dataseg
.relro_end
4670 && sec
->alignment_power
> max_alignment_power
)
4671 max_alignment_power
= sec
->alignment_power
;
4673 if (((bfd_vma
) 1 << max_alignment_power
) < expld
.dataseg
.pagesize
)
4675 if (expld
.dataseg
.base
- (1 << max_alignment_power
)
4677 expld
.dataseg
.base
+= expld
.dataseg
.pagesize
;
4678 expld
.dataseg
.base
-= (1 << max_alignment_power
);
4679 lang_reset_memory_regions ();
4680 one_lang_size_sections_pass (relax
, check_regions
);
4683 link_info
.relro_start
= expld
.dataseg
.base
;
4684 link_info
.relro_end
= expld
.dataseg
.relro_end
;
4686 else if (expld
.dataseg
.phase
== exp_dataseg_end_seen
)
4688 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
4689 a page could be saved in the data segment. */
4690 bfd_vma first
, last
;
4692 first
= -expld
.dataseg
.base
& (expld
.dataseg
.pagesize
- 1);
4693 last
= expld
.dataseg
.end
& (expld
.dataseg
.pagesize
- 1);
4695 && ((expld
.dataseg
.base
& ~(expld
.dataseg
.pagesize
- 1))
4696 != (expld
.dataseg
.end
& ~(expld
.dataseg
.pagesize
- 1)))
4697 && first
+ last
<= expld
.dataseg
.pagesize
)
4699 expld
.dataseg
.phase
= exp_dataseg_adjust
;
4700 lang_reset_memory_regions ();
4701 one_lang_size_sections_pass (relax
, check_regions
);
4705 expld
.phase
= lang_final_phase_enum
;
4708 /* Worker function for lang_do_assignments. Recursiveness goes here. */
4711 lang_do_assignments_1
4712 (lang_statement_union_type
*s
,
4713 lang_output_section_statement_type
*output_section_statement
,
4717 for (; s
!= NULL
; s
= s
->header
.next
)
4719 switch (s
->header
.type
)
4721 case lang_constructors_statement_enum
:
4722 dot
= lang_do_assignments_1 (constructor_list
.head
,
4723 output_section_statement
,
4728 case lang_output_section_statement_enum
:
4730 lang_output_section_statement_type
*os
;
4732 os
= &(s
->output_section_statement
);
4733 if (os
->bfd_section
!= NULL
&& !os
->ignored
)
4735 dot
= os
->bfd_section
->vma
;
4736 lang_do_assignments_1 (os
->children
.head
, os
, os
->fill
, dot
);
4737 /* .tbss sections effectively have zero size. */
4738 if ((os
->bfd_section
->flags
& SEC_HAS_CONTENTS
) != 0
4739 || (os
->bfd_section
->flags
& SEC_THREAD_LOCAL
) == 0
4740 || link_info
.relocatable
)
4741 dot
+= TO_ADDR (os
->bfd_section
->size
);
4745 /* If nothing has been placed into the output section then
4746 it won't have a bfd_section. */
4747 if (os
->bfd_section
&& !os
->ignored
)
4749 os
->bfd_section
->lma
4750 = exp_get_abs_int (os
->load_base
, 0, "load base");
4756 case lang_wild_statement_enum
:
4758 dot
= lang_do_assignments_1 (s
->wild_statement
.children
.head
,
4759 output_section_statement
,
4763 case lang_object_symbols_statement_enum
:
4764 case lang_output_statement_enum
:
4765 case lang_target_statement_enum
:
4768 case lang_data_statement_enum
:
4769 exp_fold_tree (s
->data_statement
.exp
, bfd_abs_section_ptr
, &dot
);
4770 if (expld
.result
.valid_p
)
4771 s
->data_statement
.value
= (expld
.result
.value
4772 + expld
.result
.section
->vma
);
4774 einfo (_("%F%P: invalid data statement\n"));
4777 switch (s
->data_statement
.type
)
4795 if (size
< TO_SIZE ((unsigned) 1))
4796 size
= TO_SIZE ((unsigned) 1);
4797 dot
+= TO_ADDR (size
);
4801 case lang_reloc_statement_enum
:
4802 exp_fold_tree (s
->reloc_statement
.addend_exp
,
4803 bfd_abs_section_ptr
, &dot
);
4804 if (expld
.result
.valid_p
)
4805 s
->reloc_statement
.addend_value
= expld
.result
.value
;
4807 einfo (_("%F%P: invalid reloc statement\n"));
4808 dot
+= TO_ADDR (bfd_get_reloc_size (s
->reloc_statement
.howto
));
4811 case lang_input_section_enum
:
4813 asection
*in
= s
->input_section
.section
;
4815 if ((in
->flags
& SEC_EXCLUDE
) == 0)
4816 dot
+= TO_ADDR (in
->size
);
4820 case lang_input_statement_enum
:
4823 case lang_fill_statement_enum
:
4824 fill
= s
->fill_statement
.fill
;
4827 case lang_assignment_statement_enum
:
4828 exp_fold_tree (s
->assignment_statement
.exp
,
4829 output_section_statement
->bfd_section
,
4833 case lang_padding_statement_enum
:
4834 dot
+= TO_ADDR (s
->padding_statement
.size
);
4837 case lang_group_statement_enum
:
4838 dot
= lang_do_assignments_1 (s
->group_statement
.children
.head
,
4839 output_section_statement
,
4847 case lang_address_statement_enum
:
4855 lang_do_assignments (void)
4857 lang_statement_iteration
++;
4858 lang_do_assignments_1 (statement_list
.head
, abs_output_section
, NULL
, 0);
4861 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
4862 operator .startof. (section_name), it produces an undefined symbol
4863 .startof.section_name. Similarly, when it sees
4864 .sizeof. (section_name), it produces an undefined symbol
4865 .sizeof.section_name. For all the output sections, we look for
4866 such symbols, and set them to the correct value. */
4869 lang_set_startof (void)
4873 if (link_info
.relocatable
)
4876 for (s
= output_bfd
->sections
; s
!= NULL
; s
= s
->next
)
4878 const char *secname
;
4880 struct bfd_link_hash_entry
*h
;
4882 secname
= bfd_get_section_name (output_bfd
, s
);
4883 buf
= xmalloc (10 + strlen (secname
));
4885 sprintf (buf
, ".startof.%s", secname
);
4886 h
= bfd_link_hash_lookup (link_info
.hash
, buf
, FALSE
, FALSE
, TRUE
);
4887 if (h
!= NULL
&& h
->type
== bfd_link_hash_undefined
)
4889 h
->type
= bfd_link_hash_defined
;
4890 h
->u
.def
.value
= bfd_get_section_vma (output_bfd
, s
);
4891 h
->u
.def
.section
= bfd_abs_section_ptr
;
4894 sprintf (buf
, ".sizeof.%s", secname
);
4895 h
= bfd_link_hash_lookup (link_info
.hash
, buf
, FALSE
, FALSE
, TRUE
);
4896 if (h
!= NULL
&& h
->type
== bfd_link_hash_undefined
)
4898 h
->type
= bfd_link_hash_defined
;
4899 h
->u
.def
.value
= TO_ADDR (s
->size
);
4900 h
->u
.def
.section
= bfd_abs_section_ptr
;
4910 struct bfd_link_hash_entry
*h
;
4913 if (link_info
.relocatable
|| link_info
.shared
)
4918 if (entry_symbol
.name
== NULL
)
4920 /* No entry has been specified. Look for the default entry, but
4921 don't warn if we don't find it. */
4922 entry_symbol
.name
= entry_symbol_default
;
4926 h
= bfd_link_hash_lookup (link_info
.hash
, entry_symbol
.name
,
4927 FALSE
, FALSE
, TRUE
);
4929 && (h
->type
== bfd_link_hash_defined
4930 || h
->type
== bfd_link_hash_defweak
)
4931 && h
->u
.def
.section
->output_section
!= NULL
)
4935 val
= (h
->u
.def
.value
4936 + bfd_get_section_vma (output_bfd
,
4937 h
->u
.def
.section
->output_section
)
4938 + h
->u
.def
.section
->output_offset
);
4939 if (! bfd_set_start_address (output_bfd
, val
))
4940 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol
.name
);
4947 /* We couldn't find the entry symbol. Try parsing it as a
4949 val
= bfd_scan_vma (entry_symbol
.name
, &send
, 0);
4952 if (! bfd_set_start_address (output_bfd
, val
))
4953 einfo (_("%P%F: can't set start address\n"));
4959 /* Can't find the entry symbol, and it's not a number. Use
4960 the first address in the text section. */
4961 ts
= bfd_get_section_by_name (output_bfd
, entry_section
);
4965 einfo (_("%P: warning: cannot find entry symbol %s;"
4966 " defaulting to %V\n"),
4968 bfd_get_section_vma (output_bfd
, ts
));
4969 if (! bfd_set_start_address (output_bfd
,
4970 bfd_get_section_vma (output_bfd
,
4972 einfo (_("%P%F: can't set start address\n"));
4977 einfo (_("%P: warning: cannot find entry symbol %s;"
4978 " not setting start address\n"),
4984 /* Don't bfd_hash_table_free (&lang_definedness_table);
4985 map file output may result in a call of lang_track_definedness. */
4988 /* This is a small function used when we want to ignore errors from
4992 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED
, ...)
4994 /* Don't do anything. */
4997 /* Check that the architecture of all the input files is compatible
4998 with the output file. Also call the backend to let it do any
4999 other checking that is needed. */
5004 lang_statement_union_type
*file
;
5006 const bfd_arch_info_type
*compatible
;
5008 for (file
= file_chain
.head
; file
!= NULL
; file
= file
->input_statement
.next
)
5010 input_bfd
= file
->input_statement
.the_bfd
;
5012 = bfd_arch_get_compatible (input_bfd
, output_bfd
,
5013 command_line
.accept_unknown_input_arch
);
5015 /* In general it is not possible to perform a relocatable
5016 link between differing object formats when the input
5017 file has relocations, because the relocations in the
5018 input format may not have equivalent representations in
5019 the output format (and besides BFD does not translate
5020 relocs for other link purposes than a final link). */
5021 if ((link_info
.relocatable
|| link_info
.emitrelocations
)
5022 && (compatible
== NULL
5023 || bfd_get_flavour (input_bfd
) != bfd_get_flavour (output_bfd
))
5024 && (bfd_get_file_flags (input_bfd
) & HAS_RELOC
) != 0)
5026 einfo (_("%P%F: Relocatable linking with relocations from"
5027 " format %s (%B) to format %s (%B) is not supported\n"),
5028 bfd_get_target (input_bfd
), input_bfd
,
5029 bfd_get_target (output_bfd
), output_bfd
);
5030 /* einfo with %F exits. */
5033 if (compatible
== NULL
)
5035 if (command_line
.warn_mismatch
)
5036 einfo (_("%P: warning: %s architecture of input file `%B'"
5037 " is incompatible with %s output\n"),
5038 bfd_printable_name (input_bfd
), input_bfd
,
5039 bfd_printable_name (output_bfd
));
5041 else if (bfd_count_sections (input_bfd
))
5043 /* If the input bfd has no contents, it shouldn't set the
5044 private data of the output bfd. */
5046 bfd_error_handler_type pfn
= NULL
;
5048 /* If we aren't supposed to warn about mismatched input
5049 files, temporarily set the BFD error handler to a
5050 function which will do nothing. We still want to call
5051 bfd_merge_private_bfd_data, since it may set up
5052 information which is needed in the output file. */
5053 if (! command_line
.warn_mismatch
)
5054 pfn
= bfd_set_error_handler (ignore_bfd_errors
);
5055 if (! bfd_merge_private_bfd_data (input_bfd
, output_bfd
))
5057 if (command_line
.warn_mismatch
)
5058 einfo (_("%P%X: failed to merge target specific data"
5059 " of file %B\n"), input_bfd
);
5061 if (! command_line
.warn_mismatch
)
5062 bfd_set_error_handler (pfn
);
5067 /* Look through all the global common symbols and attach them to the
5068 correct section. The -sort-common command line switch may be used
5069 to roughly sort the entries by size. */
5074 if (command_line
.inhibit_common_definition
)
5076 if (link_info
.relocatable
5077 && ! command_line
.force_common_definition
)
5080 if (! config
.sort_common
)
5081 bfd_link_hash_traverse (link_info
.hash
, lang_one_common
, NULL
);
5086 for (power
= 4; power
>= 0; power
--)
5087 bfd_link_hash_traverse (link_info
.hash
, lang_one_common
, &power
);
5091 /* Place one common symbol in the correct section. */
5094 lang_one_common (struct bfd_link_hash_entry
*h
, void *info
)
5096 unsigned int power_of_two
;
5100 if (h
->type
!= bfd_link_hash_common
)
5104 power_of_two
= h
->u
.c
.p
->alignment_power
;
5106 if (config
.sort_common
5107 && power_of_two
< (unsigned int) *(int *) info
)
5110 section
= h
->u
.c
.p
->section
;
5112 /* Increase the size of the section to align the common sym. */
5113 section
->size
+= ((bfd_vma
) 1 << (power_of_two
+ opb_shift
)) - 1;
5114 section
->size
&= (- (bfd_vma
) 1 << (power_of_two
+ opb_shift
));
5116 /* Adjust the alignment if necessary. */
5117 if (power_of_two
> section
->alignment_power
)
5118 section
->alignment_power
= power_of_two
;
5120 /* Change the symbol from common to defined. */
5121 h
->type
= bfd_link_hash_defined
;
5122 h
->u
.def
.section
= section
;
5123 h
->u
.def
.value
= section
->size
;
5125 /* Increase the size of the section. */
5126 section
->size
+= size
;
5128 /* Make sure the section is allocated in memory, and make sure that
5129 it is no longer a common section. */
5130 section
->flags
|= SEC_ALLOC
;
5131 section
->flags
&= ~SEC_IS_COMMON
;
5133 if (config
.map_file
!= NULL
)
5135 static bfd_boolean header_printed
;
5140 if (! header_printed
)
5142 minfo (_("\nAllocating common symbols\n"));
5143 minfo (_("Common symbol size file\n\n"));
5144 header_printed
= TRUE
;
5147 name
= demangle (h
->root
.string
);
5149 len
= strlen (name
);
5164 if (size
<= 0xffffffff)
5165 sprintf (buf
, "%lx", (unsigned long) size
);
5167 sprintf_vma (buf
, size
);
5177 minfo ("%B\n", section
->owner
);
5183 /* Run through the input files and ensure that every input section has
5184 somewhere to go. If one is found without a destination then create
5185 an input request and place it into the statement tree. */
5188 lang_place_orphans (void)
5190 LANG_FOR_EACH_INPUT_STATEMENT (file
)
5194 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
5196 if (s
->output_section
== NULL
)
5198 /* This section of the file is not attached, root
5199 around for a sensible place for it to go. */
5201 if (file
->just_syms_flag
)
5202 bfd_link_just_syms (file
->the_bfd
, s
, &link_info
);
5203 else if ((s
->flags
& SEC_EXCLUDE
) != 0)
5204 s
->output_section
= bfd_abs_section_ptr
;
5205 else if (strcmp (s
->name
, "COMMON") == 0)
5207 /* This is a lonely common section which must have
5208 come from an archive. We attach to the section
5209 with the wildcard. */
5210 if (! link_info
.relocatable
5211 || command_line
.force_common_definition
)
5213 if (default_common_section
== NULL
)
5215 default_common_section
=
5216 lang_output_section_statement_lookup (".bss");
5219 lang_add_section (&default_common_section
->children
, s
,
5220 default_common_section
);
5223 else if (ldemul_place_orphan (s
))
5227 lang_output_section_statement_type
*os
;
5229 os
= lang_output_section_statement_lookup (s
->name
);
5230 lang_add_section (&os
->children
, s
, os
);
5238 lang_set_flags (lang_memory_region_type
*ptr
, const char *flags
, int invert
)
5240 flagword
*ptr_flags
;
5242 ptr_flags
= invert
? &ptr
->not_flags
: &ptr
->flags
;
5248 *ptr_flags
|= SEC_ALLOC
;
5252 *ptr_flags
|= SEC_READONLY
;
5256 *ptr_flags
|= SEC_DATA
;
5260 *ptr_flags
|= SEC_CODE
;
5265 *ptr_flags
|= SEC_LOAD
;
5269 einfo (_("%P%F: invalid syntax in flags\n"));
5276 /* Call a function on each input file. This function will be called
5277 on an archive, but not on the elements. */
5280 lang_for_each_input_file (void (*func
) (lang_input_statement_type
*))
5282 lang_input_statement_type
*f
;
5284 for (f
= (lang_input_statement_type
*) input_file_chain
.head
;
5286 f
= (lang_input_statement_type
*) f
->next_real_file
)
5290 /* Call a function on each file. The function will be called on all
5291 the elements of an archive which are included in the link, but will
5292 not be called on the archive file itself. */
5295 lang_for_each_file (void (*func
) (lang_input_statement_type
*))
5297 LANG_FOR_EACH_INPUT_STATEMENT (f
)
5304 ldlang_add_file (lang_input_statement_type
*entry
)
5308 lang_statement_append (&file_chain
,
5309 (lang_statement_union_type
*) entry
,
5312 /* The BFD linker needs to have a list of all input BFDs involved in
5314 ASSERT (entry
->the_bfd
->link_next
== NULL
);
5315 ASSERT (entry
->the_bfd
!= output_bfd
);
5316 for (pp
= &link_info
.input_bfds
; *pp
!= NULL
; pp
= &(*pp
)->link_next
)
5318 *pp
= entry
->the_bfd
;
5319 entry
->the_bfd
->usrdata
= entry
;
5320 bfd_set_gp_size (entry
->the_bfd
, g_switch_value
);
5322 /* Look through the sections and check for any which should not be
5323 included in the link. We need to do this now, so that we can
5324 notice when the backend linker tries to report multiple
5325 definition errors for symbols which are in sections we aren't
5326 going to link. FIXME: It might be better to entirely ignore
5327 symbols which are defined in sections which are going to be
5328 discarded. This would require modifying the backend linker for
5329 each backend which might set the SEC_LINK_ONCE flag. If we do
5330 this, we should probably handle SEC_EXCLUDE in the same way. */
5332 bfd_map_over_sections (entry
->the_bfd
, section_already_linked
, entry
);
5336 lang_add_output (const char *name
, int from_script
)
5338 /* Make -o on command line override OUTPUT in script. */
5339 if (!had_output_filename
|| !from_script
)
5341 output_filename
= name
;
5342 had_output_filename
= TRUE
;
5346 static lang_output_section_statement_type
*current_section
;
5357 for (l
= 0; l
< 32; l
++)
5359 if (i
>= (unsigned int) x
)
5367 lang_output_section_statement_type
*
5368 lang_enter_output_section_statement (const char *output_section_statement_name
,
5369 etree_type
*address_exp
,
5370 enum section_type sectype
,
5372 etree_type
*subalign
,
5376 lang_output_section_statement_type
*os
;
5378 os
= lang_output_section_statement_lookup_1 (output_section_statement_name
,
5380 current_section
= os
;
5382 /* Make next things chain into subchain of this. */
5384 if (os
->addr_tree
== NULL
)
5386 os
->addr_tree
= address_exp
;
5388 os
->sectype
= sectype
;
5389 if (sectype
!= noload_section
)
5390 os
->flags
= SEC_NO_FLAGS
;
5392 os
->flags
= SEC_NEVER_LOAD
;
5393 os
->block_value
= 1;
5394 stat_ptr
= &os
->children
;
5396 os
->subsection_alignment
=
5397 topower (exp_get_value_int (subalign
, -1, "subsection alignment"));
5398 os
->section_alignment
=
5399 topower (exp_get_value_int (align
, -1, "section alignment"));
5401 os
->load_base
= ebase
;
5408 lang_output_statement_type
*new;
5410 new = new_stat (lang_output_statement
, stat_ptr
);
5411 new->name
= output_filename
;
5414 /* Reset the current counters in the regions. */
5417 lang_reset_memory_regions (void)
5419 lang_memory_region_type
*p
= lang_memory_region_list
;
5421 lang_output_section_statement_type
*os
;
5423 for (p
= lang_memory_region_list
; p
!= NULL
; p
= p
->next
)
5425 p
->old_length
= (bfd_size_type
) (p
->current
- p
->origin
);
5426 p
->current
= p
->origin
;
5429 for (os
= &lang_output_section_statement
.head
->output_section_statement
;
5432 os
->processed
= FALSE
;
5434 for (o
= output_bfd
->sections
; o
!= NULL
; o
= o
->next
)
5436 /* Save the last size for possible use by bfd_relax_section. */
5437 o
->rawsize
= o
->size
;
5442 /* Worker for lang_gc_sections_1. */
5445 gc_section_callback (lang_wild_statement_type
*ptr
,
5446 struct wildcard_list
*sec ATTRIBUTE_UNUSED
,
5448 lang_input_statement_type
*file ATTRIBUTE_UNUSED
,
5449 void *data ATTRIBUTE_UNUSED
)
5451 /* If the wild pattern was marked KEEP, the member sections
5452 should be as well. */
5453 if (ptr
->keep_sections
)
5454 section
->flags
|= SEC_KEEP
;
5457 /* Iterate over sections marking them against GC. */
5460 lang_gc_sections_1 (lang_statement_union_type
*s
)
5462 for (; s
!= NULL
; s
= s
->header
.next
)
5464 switch (s
->header
.type
)
5466 case lang_wild_statement_enum
:
5467 walk_wild (&s
->wild_statement
, gc_section_callback
, NULL
);
5469 case lang_constructors_statement_enum
:
5470 lang_gc_sections_1 (constructor_list
.head
);
5472 case lang_output_section_statement_enum
:
5473 lang_gc_sections_1 (s
->output_section_statement
.children
.head
);
5475 case lang_group_statement_enum
:
5476 lang_gc_sections_1 (s
->group_statement
.children
.head
);
5485 lang_gc_sections (void)
5487 struct bfd_link_hash_entry
*h
;
5488 ldlang_undef_chain_list_type
*ulist
;
5490 /* Keep all sections so marked in the link script. */
5492 lang_gc_sections_1 (statement_list
.head
);
5494 /* Keep all sections containing symbols undefined on the command-line,
5495 and the section containing the entry symbol. */
5497 for (ulist
= link_info
.gc_sym_list
; ulist
; ulist
= ulist
->next
)
5499 h
= bfd_link_hash_lookup (link_info
.hash
, ulist
->name
,
5500 FALSE
, FALSE
, FALSE
);
5503 && (h
->type
== bfd_link_hash_defined
5504 || h
->type
== bfd_link_hash_defweak
)
5505 && ! bfd_is_abs_section (h
->u
.def
.section
))
5507 h
->u
.def
.section
->flags
|= SEC_KEEP
;
5511 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
5512 the special case of debug info. (See bfd/stabs.c)
5513 Twiddle the flag here, to simplify later linker code. */
5514 if (link_info
.relocatable
)
5516 LANG_FOR_EACH_INPUT_STATEMENT (f
)
5519 for (sec
= f
->the_bfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
5520 if ((sec
->flags
& SEC_DEBUGGING
) == 0)
5521 sec
->flags
&= ~SEC_EXCLUDE
;
5525 if (link_info
.gc_sections
)
5526 bfd_gc_sections (output_bfd
, &link_info
);
5529 /* Relax all sections until bfd_relax_section gives up. */
5532 relax_sections (void)
5534 /* Keep relaxing until bfd_relax_section gives up. */
5535 bfd_boolean relax_again
;
5539 relax_again
= FALSE
;
5541 /* Note: pe-dll.c does something like this also. If you find
5542 you need to change this code, you probably need to change
5543 pe-dll.c also. DJ */
5545 /* Do all the assignments with our current guesses as to
5547 lang_do_assignments ();
5549 /* We must do this after lang_do_assignments, because it uses
5551 lang_reset_memory_regions ();
5553 /* Perform another relax pass - this time we know where the
5554 globals are, so can make a better guess. */
5555 lang_size_sections (&relax_again
, FALSE
);
5557 while (relax_again
);
5563 current_target
= default_target
;
5565 /* Open the output file. */
5566 lang_for_each_statement (ldlang_open_output
);
5569 ldemul_create_output_section_statements ();
5571 /* Add to the hash table all undefineds on the command line. */
5572 lang_place_undefineds ();
5574 if (!bfd_section_already_linked_table_init ())
5575 einfo (_("%P%F: Failed to create hash table\n"));
5577 /* Create a bfd for each input file. */
5578 current_target
= default_target
;
5579 open_input_bfds (statement_list
.head
, FALSE
);
5581 link_info
.gc_sym_list
= &entry_symbol
;
5582 if (entry_symbol
.name
== NULL
)
5583 link_info
.gc_sym_list
= ldlang_undef_chain_list_head
;
5585 ldemul_after_open ();
5587 bfd_section_already_linked_table_free ();
5589 /* Make sure that we're not mixing architectures. We call this
5590 after all the input files have been opened, but before we do any
5591 other processing, so that any operations merge_private_bfd_data
5592 does on the output file will be known during the rest of the
5596 /* Handle .exports instead of a version script if we're told to do so. */
5597 if (command_line
.version_exports_section
)
5598 lang_do_version_exports_section ();
5600 /* Build all sets based on the information gathered from the input
5602 ldctor_build_sets ();
5604 /* Remove unreferenced sections if asked to. */
5605 lang_gc_sections ();
5607 /* Size up the common data. */
5610 /* Update wild statements. */
5611 update_wild_statements (statement_list
.head
);
5613 /* Run through the contours of the script and attach input sections
5614 to the correct output sections. */
5615 map_input_to_output_sections (statement_list
.head
, NULL
, NULL
);
5617 /* Find any sections not attached explicitly and handle them. */
5618 lang_place_orphans ();
5620 if (! link_info
.relocatable
)
5624 /* Merge SEC_MERGE sections. This has to be done after GC of
5625 sections, so that GCed sections are not merged, but before
5626 assigning dynamic symbols, since removing whole input sections
5628 bfd_merge_sections (output_bfd
, &link_info
);
5630 /* Look for a text section and set the readonly attribute in it. */
5631 found
= bfd_get_section_by_name (output_bfd
, ".text");
5635 if (config
.text_read_only
)
5636 found
->flags
|= SEC_READONLY
;
5638 found
->flags
&= ~SEC_READONLY
;
5642 /* Do anything special before sizing sections. This is where ELF
5643 and other back-ends size dynamic sections. */
5644 ldemul_before_allocation ();
5646 /* We must record the program headers before we try to fix the
5647 section positions, since they will affect SIZEOF_HEADERS. */
5648 lang_record_phdrs ();
5650 /* Size up the sections. */
5651 lang_size_sections (NULL
, !command_line
.relax
);
5653 /* Now run around and relax if we can. */
5654 if (command_line
.relax
)
5656 /* We may need more than one relaxation pass. */
5657 int i
= link_info
.relax_pass
;
5659 /* The backend can use it to determine the current pass. */
5660 link_info
.relax_pass
= 0;
5665 link_info
.relax_pass
++;
5668 /* Final extra sizing to report errors. */
5669 lang_do_assignments ();
5670 lang_reset_memory_regions ();
5671 lang_size_sections (NULL
, TRUE
);
5674 /* See if anything special should be done now we know how big
5676 ldemul_after_allocation ();
5678 /* Fix any .startof. or .sizeof. symbols. */
5679 lang_set_startof ();
5681 /* Do all the assignments, now that we know the final resting places
5682 of all the symbols. */
5684 lang_do_assignments ();
5688 /* Make sure that the section addresses make sense. */
5689 if (! link_info
.relocatable
5690 && command_line
.check_section_addresses
)
5691 lang_check_section_addresses ();
5696 /* EXPORTED TO YACC */
5699 lang_add_wild (struct wildcard_spec
*filespec
,
5700 struct wildcard_list
*section_list
,
5701 bfd_boolean keep_sections
)
5703 struct wildcard_list
*curr
, *next
;
5704 lang_wild_statement_type
*new;
5706 /* Reverse the list as the parser puts it back to front. */
5707 for (curr
= section_list
, section_list
= NULL
;
5709 section_list
= curr
, curr
= next
)
5711 if (curr
->spec
.name
!= NULL
&& strcmp (curr
->spec
.name
, "COMMON") == 0)
5712 placed_commons
= TRUE
;
5715 curr
->next
= section_list
;
5718 if (filespec
!= NULL
&& filespec
->name
!= NULL
)
5720 if (strcmp (filespec
->name
, "*") == 0)
5721 filespec
->name
= NULL
;
5722 else if (! wildcardp (filespec
->name
))
5723 lang_has_input_file
= TRUE
;
5726 new = new_stat (lang_wild_statement
, stat_ptr
);
5727 new->filename
= NULL
;
5728 new->filenames_sorted
= FALSE
;
5729 if (filespec
!= NULL
)
5731 new->filename
= filespec
->name
;
5732 new->filenames_sorted
= filespec
->sorted
== by_name
;
5734 new->section_list
= section_list
;
5735 new->keep_sections
= keep_sections
;
5736 lang_list_init (&new->children
);
5737 analyze_walk_wild_section_handler (new);
5741 lang_section_start (const char *name
, etree_type
*address
,
5742 const segment_type
*segment
)
5744 lang_address_statement_type
*ad
;
5746 ad
= new_stat (lang_address_statement
, stat_ptr
);
5747 ad
->section_name
= name
;
5748 ad
->address
= address
;
5749 ad
->segment
= segment
;
5752 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
5753 because of a -e argument on the command line, or zero if this is
5754 called by ENTRY in a linker script. Command line arguments take
5758 lang_add_entry (const char *name
, bfd_boolean cmdline
)
5760 if (entry_symbol
.name
== NULL
5762 || ! entry_from_cmdline
)
5764 entry_symbol
.name
= name
;
5765 entry_from_cmdline
= cmdline
;
5769 /* Set the default start symbol to NAME. .em files should use this,
5770 not lang_add_entry, to override the use of "start" if neither the
5771 linker script nor the command line specifies an entry point. NAME
5772 must be permanently allocated. */
5774 lang_default_entry (const char *name
)
5776 entry_symbol_default
= name
;
5780 lang_add_target (const char *name
)
5782 lang_target_statement_type
*new;
5784 new = new_stat (lang_target_statement
, stat_ptr
);
5789 lang_add_map (const char *name
)
5796 map_option_f
= TRUE
;
5804 lang_add_fill (fill_type
*fill
)
5806 lang_fill_statement_type
*new;
5808 new = new_stat (lang_fill_statement
, stat_ptr
);
5813 lang_add_data (int type
, union etree_union
*exp
)
5815 lang_data_statement_type
*new;
5817 new = new_stat (lang_data_statement
, stat_ptr
);
5822 /* Create a new reloc statement. RELOC is the BFD relocation type to
5823 generate. HOWTO is the corresponding howto structure (we could
5824 look this up, but the caller has already done so). SECTION is the
5825 section to generate a reloc against, or NAME is the name of the
5826 symbol to generate a reloc against. Exactly one of SECTION and
5827 NAME must be NULL. ADDEND is an expression for the addend. */
5830 lang_add_reloc (bfd_reloc_code_real_type reloc
,
5831 reloc_howto_type
*howto
,
5834 union etree_union
*addend
)
5836 lang_reloc_statement_type
*p
= new_stat (lang_reloc_statement
, stat_ptr
);
5840 p
->section
= section
;
5842 p
->addend_exp
= addend
;
5844 p
->addend_value
= 0;
5845 p
->output_section
= NULL
;
5846 p
->output_offset
= 0;
5849 lang_assignment_statement_type
*
5850 lang_add_assignment (etree_type
*exp
)
5852 lang_assignment_statement_type
*new;
5854 new = new_stat (lang_assignment_statement
, stat_ptr
);
5860 lang_add_attribute (enum statement_enum attribute
)
5862 new_statement (attribute
, sizeof (lang_statement_header_type
), stat_ptr
);
5866 lang_startup (const char *name
)
5868 if (startup_file
!= NULL
)
5870 einfo (_("%P%F: multiple STARTUP files\n"));
5872 first_file
->filename
= name
;
5873 first_file
->local_sym_name
= name
;
5874 first_file
->real
= TRUE
;
5876 startup_file
= name
;
5880 lang_float (bfd_boolean maybe
)
5882 lang_float_flag
= maybe
;
5886 /* Work out the load- and run-time regions from a script statement, and
5887 store them in *LMA_REGION and *REGION respectively.
5889 MEMSPEC is the name of the run-time region, or the value of
5890 DEFAULT_MEMORY_REGION if the statement didn't specify one.
5891 LMA_MEMSPEC is the name of the load-time region, or null if the
5892 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
5893 had an explicit load address.
5895 It is an error to specify both a load region and a load address. */
5898 lang_get_regions (lang_memory_region_type
**region
,
5899 lang_memory_region_type
**lma_region
,
5900 const char *memspec
,
5901 const char *lma_memspec
,
5902 bfd_boolean have_lma
,
5903 bfd_boolean have_vma
)
5905 *lma_region
= lang_memory_region_lookup (lma_memspec
, FALSE
);
5907 /* If no runtime region or VMA has been specified, but the load region
5908 has been specified, then use the load region for the runtime region
5910 if (lma_memspec
!= NULL
5912 && strcmp (memspec
, DEFAULT_MEMORY_REGION
) == 0)
5913 *region
= *lma_region
;
5915 *region
= lang_memory_region_lookup (memspec
, FALSE
);
5917 if (have_lma
&& lma_memspec
!= 0)
5918 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
5922 lang_leave_output_section_statement (fill_type
*fill
, const char *memspec
,
5923 lang_output_section_phdr_list
*phdrs
,
5924 const char *lma_memspec
)
5926 lang_get_regions (¤t_section
->region
,
5927 ¤t_section
->lma_region
,
5928 memspec
, lma_memspec
,
5929 current_section
->load_base
!= NULL
,
5930 current_section
->addr_tree
!= NULL
);
5931 current_section
->fill
= fill
;
5932 current_section
->phdrs
= phdrs
;
5933 stat_ptr
= &statement_list
;
5936 /* Create an absolute symbol with the given name with the value of the
5937 address of first byte of the section named.
5939 If the symbol already exists, then do nothing. */
5942 lang_abs_symbol_at_beginning_of (const char *secname
, const char *name
)
5944 struct bfd_link_hash_entry
*h
;
5946 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, TRUE
, TRUE
);
5948 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
5950 if (h
->type
== bfd_link_hash_new
5951 || h
->type
== bfd_link_hash_undefined
)
5955 h
->type
= bfd_link_hash_defined
;
5957 sec
= bfd_get_section_by_name (output_bfd
, secname
);
5961 h
->u
.def
.value
= bfd_get_section_vma (output_bfd
, sec
);
5963 h
->u
.def
.section
= bfd_abs_section_ptr
;
5967 /* Create an absolute symbol with the given name with the value of the
5968 address of the first byte after the end of the section named.
5970 If the symbol already exists, then do nothing. */
5973 lang_abs_symbol_at_end_of (const char *secname
, const char *name
)
5975 struct bfd_link_hash_entry
*h
;
5977 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, TRUE
, TRUE
);
5979 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
5981 if (h
->type
== bfd_link_hash_new
5982 || h
->type
== bfd_link_hash_undefined
)
5986 h
->type
= bfd_link_hash_defined
;
5988 sec
= bfd_get_section_by_name (output_bfd
, secname
);
5992 h
->u
.def
.value
= (bfd_get_section_vma (output_bfd
, sec
)
5993 + TO_ADDR (sec
->size
));
5995 h
->u
.def
.section
= bfd_abs_section_ptr
;
6000 lang_statement_append (lang_statement_list_type
*list
,
6001 lang_statement_union_type
*element
,
6002 lang_statement_union_type
**field
)
6004 *(list
->tail
) = element
;
6008 /* Set the output format type. -oformat overrides scripts. */
6011 lang_add_output_format (const char *format
,
6016 if (output_target
== NULL
|| !from_script
)
6018 if (command_line
.endian
== ENDIAN_BIG
6021 else if (command_line
.endian
== ENDIAN_LITTLE
6025 output_target
= format
;
6029 /* Enter a group. This creates a new lang_group_statement, and sets
6030 stat_ptr to build new statements within the group. */
6033 lang_enter_group (void)
6035 lang_group_statement_type
*g
;
6037 g
= new_stat (lang_group_statement
, stat_ptr
);
6038 lang_list_init (&g
->children
);
6039 stat_ptr
= &g
->children
;
6042 /* Leave a group. This just resets stat_ptr to start writing to the
6043 regular list of statements again. Note that this will not work if
6044 groups can occur inside anything else which can adjust stat_ptr,
6045 but currently they can't. */
6048 lang_leave_group (void)
6050 stat_ptr
= &statement_list
;
6053 /* Add a new program header. This is called for each entry in a PHDRS
6054 command in a linker script. */
6057 lang_new_phdr (const char *name
,
6059 bfd_boolean filehdr
,
6064 struct lang_phdr
*n
, **pp
;
6066 n
= stat_alloc (sizeof (struct lang_phdr
));
6069 n
->type
= exp_get_value_int (type
, 0, "program header type");
6070 n
->filehdr
= filehdr
;
6075 for (pp
= &lang_phdr_list
; *pp
!= NULL
; pp
= &(*pp
)->next
)
6080 /* Record the program header information in the output BFD. FIXME: We
6081 should not be calling an ELF specific function here. */
6084 lang_record_phdrs (void)
6088 lang_output_section_phdr_list
*last
;
6089 struct lang_phdr
*l
;
6090 lang_output_section_statement_type
*os
;
6093 secs
= xmalloc (alc
* sizeof (asection
*));
6095 for (l
= lang_phdr_list
; l
!= NULL
; l
= l
->next
)
6102 for (os
= &lang_output_section_statement
.head
->output_section_statement
;
6106 lang_output_section_phdr_list
*pl
;
6108 if (os
->constraint
== -1)
6116 if (os
->sectype
== noload_section
6117 || os
->bfd_section
== NULL
6118 || (os
->bfd_section
->flags
& SEC_ALLOC
) == 0)
6123 if (os
->bfd_section
== NULL
)
6126 for (; pl
!= NULL
; pl
= pl
->next
)
6128 if (strcmp (pl
->name
, l
->name
) == 0)
6133 secs
= xrealloc (secs
, alc
* sizeof (asection
*));
6135 secs
[c
] = os
->bfd_section
;
6142 if (l
->flags
== NULL
)
6145 flags
= exp_get_vma (l
->flags
, 0, "phdr flags");
6150 at
= exp_get_vma (l
->at
, 0, "phdr load address");
6152 if (! bfd_record_phdr (output_bfd
, l
->type
,
6153 l
->flags
!= NULL
, flags
, l
->at
!= NULL
,
6154 at
, l
->filehdr
, l
->phdrs
, c
, secs
))
6155 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
6160 /* Make sure all the phdr assignments succeeded. */
6161 for (os
= &lang_output_section_statement
.head
->output_section_statement
;
6165 lang_output_section_phdr_list
*pl
;
6167 if (os
->constraint
== -1
6168 || os
->bfd_section
== NULL
)
6171 for (pl
= os
->phdrs
;
6174 if (! pl
->used
&& strcmp (pl
->name
, "NONE") != 0)
6175 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
6176 os
->name
, pl
->name
);
6180 /* Record a list of sections which may not be cross referenced. */
6183 lang_add_nocrossref (lang_nocrossref_type
*l
)
6185 struct lang_nocrossrefs
*n
;
6187 n
= xmalloc (sizeof *n
);
6188 n
->next
= nocrossref_list
;
6190 nocrossref_list
= n
;
6192 /* Set notice_all so that we get informed about all symbols. */
6193 link_info
.notice_all
= TRUE
;
6196 /* Overlay handling. We handle overlays with some static variables. */
6198 /* The overlay virtual address. */
6199 static etree_type
*overlay_vma
;
6200 /* And subsection alignment. */
6201 static etree_type
*overlay_subalign
;
6203 /* An expression for the maximum section size seen so far. */
6204 static etree_type
*overlay_max
;
6206 /* A list of all the sections in this overlay. */
6208 struct overlay_list
{
6209 struct overlay_list
*next
;
6210 lang_output_section_statement_type
*os
;
6213 static struct overlay_list
*overlay_list
;
6215 /* Start handling an overlay. */
6218 lang_enter_overlay (etree_type
*vma_expr
, etree_type
*subalign
)
6220 /* The grammar should prevent nested overlays from occurring. */
6221 ASSERT (overlay_vma
== NULL
6222 && overlay_subalign
== NULL
6223 && overlay_max
== NULL
);
6225 overlay_vma
= vma_expr
;
6226 overlay_subalign
= subalign
;
6229 /* Start a section in an overlay. We handle this by calling
6230 lang_enter_output_section_statement with the correct VMA.
6231 lang_leave_overlay sets up the LMA and memory regions. */
6234 lang_enter_overlay_section (const char *name
)
6236 struct overlay_list
*n
;
6239 lang_enter_output_section_statement (name
, overlay_vma
, normal_section
,
6240 0, overlay_subalign
, 0, 0);
6242 /* If this is the first section, then base the VMA of future
6243 sections on this one. This will work correctly even if `.' is
6244 used in the addresses. */
6245 if (overlay_list
== NULL
)
6246 overlay_vma
= exp_nameop (ADDR
, name
);
6248 /* Remember the section. */
6249 n
= xmalloc (sizeof *n
);
6250 n
->os
= current_section
;
6251 n
->next
= overlay_list
;
6254 size
= exp_nameop (SIZEOF
, name
);
6256 /* Arrange to work out the maximum section end address. */
6257 if (overlay_max
== NULL
)
6260 overlay_max
= exp_binop (MAX_K
, overlay_max
, size
);
6263 /* Finish a section in an overlay. There isn't any special to do
6267 lang_leave_overlay_section (fill_type
*fill
,
6268 lang_output_section_phdr_list
*phdrs
)
6275 name
= current_section
->name
;
6277 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
6278 region and that no load-time region has been specified. It doesn't
6279 really matter what we say here, since lang_leave_overlay will
6281 lang_leave_output_section_statement (fill
, DEFAULT_MEMORY_REGION
, phdrs
, 0);
6283 /* Define the magic symbols. */
6285 clean
= xmalloc (strlen (name
) + 1);
6287 for (s1
= name
; *s1
!= '\0'; s1
++)
6288 if (ISALNUM (*s1
) || *s1
== '_')
6292 buf
= xmalloc (strlen (clean
) + sizeof "__load_start_");
6293 sprintf (buf
, "__load_start_%s", clean
);
6294 lang_add_assignment (exp_assop ('=', buf
,
6295 exp_nameop (LOADADDR
, name
)));
6297 buf
= xmalloc (strlen (clean
) + sizeof "__load_stop_");
6298 sprintf (buf
, "__load_stop_%s", clean
);
6299 lang_add_assignment (exp_assop ('=', buf
,
6301 exp_nameop (LOADADDR
, name
),
6302 exp_nameop (SIZEOF
, name
))));
6307 /* Finish an overlay. If there are any overlay wide settings, this
6308 looks through all the sections in the overlay and sets them. */
6311 lang_leave_overlay (etree_type
*lma_expr
,
6314 const char *memspec
,
6315 lang_output_section_phdr_list
*phdrs
,
6316 const char *lma_memspec
)
6318 lang_memory_region_type
*region
;
6319 lang_memory_region_type
*lma_region
;
6320 struct overlay_list
*l
;
6321 lang_nocrossref_type
*nocrossref
;
6323 lang_get_regions (®ion
, &lma_region
,
6324 memspec
, lma_memspec
,
6325 lma_expr
!= NULL
, FALSE
);
6329 /* After setting the size of the last section, set '.' to end of the
6331 if (overlay_list
!= NULL
)
6332 overlay_list
->os
->update_dot_tree
6333 = exp_assop ('=', ".", exp_binop ('+', overlay_vma
, overlay_max
));
6338 struct overlay_list
*next
;
6340 if (fill
!= NULL
&& l
->os
->fill
== NULL
)
6343 l
->os
->region
= region
;
6344 l
->os
->lma_region
= lma_region
;
6346 /* The first section has the load address specified in the
6347 OVERLAY statement. The rest are worked out from that.
6348 The base address is not needed (and should be null) if
6349 an LMA region was specified. */
6351 l
->os
->load_base
= lma_expr
;
6352 else if (lma_region
== 0)
6353 l
->os
->load_base
= exp_binop ('+',
6354 exp_nameop (LOADADDR
, l
->next
->os
->name
),
6355 exp_nameop (SIZEOF
, l
->next
->os
->name
));
6357 if (phdrs
!= NULL
&& l
->os
->phdrs
== NULL
)
6358 l
->os
->phdrs
= phdrs
;
6362 lang_nocrossref_type
*nc
;
6364 nc
= xmalloc (sizeof *nc
);
6365 nc
->name
= l
->os
->name
;
6366 nc
->next
= nocrossref
;
6375 if (nocrossref
!= NULL
)
6376 lang_add_nocrossref (nocrossref
);
6379 overlay_list
= NULL
;
6383 /* Version handling. This is only useful for ELF. */
6385 /* This global variable holds the version tree that we build. */
6387 struct bfd_elf_version_tree
*lang_elf_version_info
;
6389 /* If PREV is NULL, return first version pattern matching particular symbol.
6390 If PREV is non-NULL, return first version pattern matching particular
6391 symbol after PREV (previously returned by lang_vers_match). */
6393 static struct bfd_elf_version_expr
*
6394 lang_vers_match (struct bfd_elf_version_expr_head
*head
,
6395 struct bfd_elf_version_expr
*prev
,
6398 const char *cxx_sym
= sym
;
6399 const char *java_sym
= sym
;
6400 struct bfd_elf_version_expr
*expr
= NULL
;
6402 if (head
->mask
& BFD_ELF_VERSION_CXX_TYPE
)
6404 cxx_sym
= cplus_demangle (sym
, DMGL_PARAMS
| DMGL_ANSI
);
6408 if (head
->mask
& BFD_ELF_VERSION_JAVA_TYPE
)
6410 java_sym
= cplus_demangle (sym
, DMGL_JAVA
);
6415 if (head
->htab
&& (prev
== NULL
|| prev
->symbol
))
6417 struct bfd_elf_version_expr e
;
6419 switch (prev
? prev
->mask
: 0)
6422 if (head
->mask
& BFD_ELF_VERSION_C_TYPE
)
6425 expr
= htab_find (head
->htab
, &e
);
6426 while (expr
&& strcmp (expr
->symbol
, sym
) == 0)
6427 if (expr
->mask
== BFD_ELF_VERSION_C_TYPE
)
6433 case BFD_ELF_VERSION_C_TYPE
:
6434 if (head
->mask
& BFD_ELF_VERSION_CXX_TYPE
)
6437 expr
= htab_find (head
->htab
, &e
);
6438 while (expr
&& strcmp (expr
->symbol
, cxx_sym
) == 0)
6439 if (expr
->mask
== BFD_ELF_VERSION_CXX_TYPE
)
6445 case BFD_ELF_VERSION_CXX_TYPE
:
6446 if (head
->mask
& BFD_ELF_VERSION_JAVA_TYPE
)
6448 e
.symbol
= java_sym
;
6449 expr
= htab_find (head
->htab
, &e
);
6450 while (expr
&& strcmp (expr
->symbol
, java_sym
) == 0)
6451 if (expr
->mask
== BFD_ELF_VERSION_JAVA_TYPE
)
6462 /* Finally, try the wildcards. */
6463 if (prev
== NULL
|| prev
->symbol
)
6464 expr
= head
->remaining
;
6467 for (; expr
; expr
= expr
->next
)
6474 if (expr
->pattern
[0] == '*' && expr
->pattern
[1] == '\0')
6477 if (expr
->mask
== BFD_ELF_VERSION_JAVA_TYPE
)
6479 else if (expr
->mask
== BFD_ELF_VERSION_CXX_TYPE
)
6483 if (fnmatch (expr
->pattern
, s
, 0) == 0)
6489 free ((char *) cxx_sym
);
6490 if (java_sym
!= sym
)
6491 free ((char *) java_sym
);
6495 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
6496 return a string pointing to the symbol name. */
6499 realsymbol (const char *pattern
)
6502 bfd_boolean changed
= FALSE
, backslash
= FALSE
;
6503 char *s
, *symbol
= xmalloc (strlen (pattern
) + 1);
6505 for (p
= pattern
, s
= symbol
; *p
!= '\0'; ++p
)
6507 /* It is a glob pattern only if there is no preceding
6509 if (! backslash
&& (*p
== '?' || *p
== '*' || *p
== '['))
6517 /* Remove the preceding backslash. */
6524 backslash
= *p
== '\\';
6539 /* This is called for each variable name or match expression. NEW is
6540 the name of the symbol to match, or, if LITERAL_P is FALSE, a glob
6541 pattern to be matched against symbol names. */
6543 struct bfd_elf_version_expr
*
6544 lang_new_vers_pattern (struct bfd_elf_version_expr
*orig
,
6547 bfd_boolean literal_p
)
6549 struct bfd_elf_version_expr
*ret
;
6551 ret
= xmalloc (sizeof *ret
);
6553 ret
->pattern
= literal_p
? NULL
: new;
6556 ret
->symbol
= literal_p
? new : realsymbol (new);
6558 if (lang
== NULL
|| strcasecmp (lang
, "C") == 0)
6559 ret
->mask
= BFD_ELF_VERSION_C_TYPE
;
6560 else if (strcasecmp (lang
, "C++") == 0)
6561 ret
->mask
= BFD_ELF_VERSION_CXX_TYPE
;
6562 else if (strcasecmp (lang
, "Java") == 0)
6563 ret
->mask
= BFD_ELF_VERSION_JAVA_TYPE
;
6566 einfo (_("%X%P: unknown language `%s' in version information\n"),
6568 ret
->mask
= BFD_ELF_VERSION_C_TYPE
;
6571 return ldemul_new_vers_pattern (ret
);
6574 /* This is called for each set of variable names and match
6577 struct bfd_elf_version_tree
*
6578 lang_new_vers_node (struct bfd_elf_version_expr
*globals
,
6579 struct bfd_elf_version_expr
*locals
)
6581 struct bfd_elf_version_tree
*ret
;
6583 ret
= xcalloc (1, sizeof *ret
);
6584 ret
->globals
.list
= globals
;
6585 ret
->locals
.list
= locals
;
6586 ret
->match
= lang_vers_match
;
6587 ret
->name_indx
= (unsigned int) -1;
6591 /* This static variable keeps track of version indices. */
6593 static int version_index
;
6596 version_expr_head_hash (const void *p
)
6598 const struct bfd_elf_version_expr
*e
= p
;
6600 return htab_hash_string (e
->symbol
);
6604 version_expr_head_eq (const void *p1
, const void *p2
)
6606 const struct bfd_elf_version_expr
*e1
= p1
;
6607 const struct bfd_elf_version_expr
*e2
= p2
;
6609 return strcmp (e1
->symbol
, e2
->symbol
) == 0;
6613 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head
*head
)
6616 struct bfd_elf_version_expr
*e
, *next
;
6617 struct bfd_elf_version_expr
**list_loc
, **remaining_loc
;
6619 for (e
= head
->list
; e
; e
= e
->next
)
6623 head
->mask
|= e
->mask
;
6628 head
->htab
= htab_create (count
* 2, version_expr_head_hash
,
6629 version_expr_head_eq
, NULL
);
6630 list_loc
= &head
->list
;
6631 remaining_loc
= &head
->remaining
;
6632 for (e
= head
->list
; e
; e
= next
)
6638 remaining_loc
= &e
->next
;
6642 void **loc
= htab_find_slot (head
->htab
, e
, INSERT
);
6646 struct bfd_elf_version_expr
*e1
, *last
;
6652 if (e1
->mask
== e
->mask
)
6660 while (e1
&& strcmp (e1
->symbol
, e
->symbol
) == 0);
6664 /* This is a duplicate. */
6665 /* FIXME: Memory leak. Sometimes pattern is not
6666 xmalloced alone, but in larger chunk of memory. */
6667 /* free (e->symbol); */
6672 e
->next
= last
->next
;
6680 list_loc
= &e
->next
;
6684 *remaining_loc
= NULL
;
6685 *list_loc
= head
->remaining
;
6688 head
->remaining
= head
->list
;
6691 /* This is called when we know the name and dependencies of the
6695 lang_register_vers_node (const char *name
,
6696 struct bfd_elf_version_tree
*version
,
6697 struct bfd_elf_version_deps
*deps
)
6699 struct bfd_elf_version_tree
*t
, **pp
;
6700 struct bfd_elf_version_expr
*e1
;
6705 if ((name
[0] == '\0' && lang_elf_version_info
!= NULL
)
6706 || (lang_elf_version_info
&& lang_elf_version_info
->name
[0] == '\0'))
6708 einfo (_("%X%P: anonymous version tag cannot be combined"
6709 " with other version tags\n"));
6714 /* Make sure this node has a unique name. */
6715 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
6716 if (strcmp (t
->name
, name
) == 0)
6717 einfo (_("%X%P: duplicate version tag `%s'\n"), name
);
6719 lang_finalize_version_expr_head (&version
->globals
);
6720 lang_finalize_version_expr_head (&version
->locals
);
6722 /* Check the global and local match names, and make sure there
6723 aren't any duplicates. */
6725 for (e1
= version
->globals
.list
; e1
!= NULL
; e1
= e1
->next
)
6727 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
6729 struct bfd_elf_version_expr
*e2
;
6731 if (t
->locals
.htab
&& e1
->symbol
)
6733 e2
= htab_find (t
->locals
.htab
, e1
);
6734 while (e2
&& strcmp (e1
->symbol
, e2
->symbol
) == 0)
6736 if (e1
->mask
== e2
->mask
)
6737 einfo (_("%X%P: duplicate expression `%s'"
6738 " in version information\n"), e1
->symbol
);
6742 else if (!e1
->symbol
)
6743 for (e2
= t
->locals
.remaining
; e2
!= NULL
; e2
= e2
->next
)
6744 if (strcmp (e1
->pattern
, e2
->pattern
) == 0
6745 && e1
->mask
== e2
->mask
)
6746 einfo (_("%X%P: duplicate expression `%s'"
6747 " in version information\n"), e1
->pattern
);
6751 for (e1
= version
->locals
.list
; e1
!= NULL
; e1
= e1
->next
)
6753 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
6755 struct bfd_elf_version_expr
*e2
;
6757 if (t
->globals
.htab
&& e1
->symbol
)
6759 e2
= htab_find (t
->globals
.htab
, e1
);
6760 while (e2
&& strcmp (e1
->symbol
, e2
->symbol
) == 0)
6762 if (e1
->mask
== e2
->mask
)
6763 einfo (_("%X%P: duplicate expression `%s'"
6764 " in version information\n"),
6769 else if (!e1
->symbol
)
6770 for (e2
= t
->globals
.remaining
; e2
!= NULL
; e2
= e2
->next
)
6771 if (strcmp (e1
->pattern
, e2
->pattern
) == 0
6772 && e1
->mask
== e2
->mask
)
6773 einfo (_("%X%P: duplicate expression `%s'"
6774 " in version information\n"), e1
->pattern
);
6778 version
->deps
= deps
;
6779 version
->name
= name
;
6780 if (name
[0] != '\0')
6783 version
->vernum
= version_index
;
6786 version
->vernum
= 0;
6788 for (pp
= &lang_elf_version_info
; *pp
!= NULL
; pp
= &(*pp
)->next
)
6793 /* This is called when we see a version dependency. */
6795 struct bfd_elf_version_deps
*
6796 lang_add_vers_depend (struct bfd_elf_version_deps
*list
, const char *name
)
6798 struct bfd_elf_version_deps
*ret
;
6799 struct bfd_elf_version_tree
*t
;
6801 ret
= xmalloc (sizeof *ret
);
6804 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
6806 if (strcmp (t
->name
, name
) == 0)
6808 ret
->version_needed
= t
;
6813 einfo (_("%X%P: unable to find version dependency `%s'\n"), name
);
6819 lang_do_version_exports_section (void)
6821 struct bfd_elf_version_expr
*greg
= NULL
, *lreg
;
6823 LANG_FOR_EACH_INPUT_STATEMENT (is
)
6825 asection
*sec
= bfd_get_section_by_name (is
->the_bfd
, ".exports");
6833 contents
= xmalloc (len
);
6834 if (!bfd_get_section_contents (is
->the_bfd
, sec
, contents
, 0, len
))
6835 einfo (_("%X%P: unable to read .exports section contents\n"), sec
);
6838 while (p
< contents
+ len
)
6840 greg
= lang_new_vers_pattern (greg
, p
, NULL
, FALSE
);
6841 p
= strchr (p
, '\0') + 1;
6844 /* Do not free the contents, as we used them creating the regex. */
6846 /* Do not include this section in the link. */
6847 sec
->flags
|= SEC_EXCLUDE
;
6850 lreg
= lang_new_vers_pattern (NULL
, "*", NULL
, FALSE
);
6851 lang_register_vers_node (command_line
.version_exports_section
,
6852 lang_new_vers_node (greg
, lreg
), NULL
);
6856 lang_add_unique (const char *name
)
6858 struct unique_sections
*ent
;
6860 for (ent
= unique_section_list
; ent
; ent
= ent
->next
)
6861 if (strcmp (ent
->name
, name
) == 0)
6864 ent
= xmalloc (sizeof *ent
);
6865 ent
->name
= xstrdup (name
);
6866 ent
->next
= unique_section_list
;
6867 unique_section_list
= ent
;