1 /* Linker command language support.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
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, 59 Temple Place - Suite 330, Boston, MA
25 #include "libiberty.h"
26 #include "safe-ctype.h"
44 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
47 /* Locals variables. */
48 static struct obstack stat_obstack
;
50 #define obstack_chunk_alloc xmalloc
51 #define obstack_chunk_free free
52 static const char *startup_file
;
53 static lang_statement_list_type input_file_chain
;
54 static bfd_boolean placed_commons
= FALSE
;
55 static lang_output_section_statement_type
*default_common_section
;
56 static bfd_boolean map_option_f
;
57 static bfd_vma print_dot
;
58 static lang_input_statement_type
*first_file
;
59 static const char *current_target
;
60 static const char *output_target
;
61 static lang_statement_list_type statement_list
;
62 static struct lang_phdr
*lang_phdr_list
;
64 /* Forward declarations. */
65 static lang_statement_union_type
*new_statement
66 PARAMS ((enum statement_enum
, size_t, lang_statement_list_type
*));
67 static void lang_for_each_statement_worker
68 PARAMS ((void (*) (lang_statement_union_type
*),
69 lang_statement_union_type
*));
70 static lang_input_statement_type
*new_afile
71 PARAMS ((const char *, lang_input_file_enum_type
, const char *,
73 static lang_memory_region_type
*lang_memory_default
74 PARAMS ((asection
*));
75 static void lang_map_flags
78 PARAMS ((lang_output_section_statement_type
*));
79 static void exp_init_os
80 PARAMS ((etree_type
*));
81 static void section_already_linked
82 PARAMS ((bfd
*, asection
*, PTR
));
83 static struct bfd_hash_entry
*already_linked_newfunc
84 PARAMS ((struct bfd_hash_entry
*, struct bfd_hash_table
*, const char *));
85 static void already_linked_table_init
87 static void already_linked_table_free
89 static bfd_boolean wildcardp
90 PARAMS ((const char *));
91 static lang_statement_union_type
*wild_sort
92 PARAMS ((lang_wild_statement_type
*, struct wildcard_list
*,
93 lang_input_statement_type
*, asection
*));
94 static void output_section_callback
95 PARAMS ((lang_wild_statement_type
*, struct wildcard_list
*, asection
*,
96 lang_input_statement_type
*, PTR
));
97 static lang_input_statement_type
*lookup_name
98 PARAMS ((const char *));
99 static bfd_boolean load_symbols
100 PARAMS ((lang_input_statement_type
*, lang_statement_list_type
*));
102 PARAMS ((lang_wild_statement_type
*,
103 const char *, lang_output_section_statement_type
*));
104 static bfd
*open_output
105 PARAMS ((const char *));
106 static void ldlang_open_output
107 PARAMS ((lang_statement_union_type
*));
108 static void open_input_bfds
109 PARAMS ((lang_statement_union_type
*, bfd_boolean
));
110 static void lang_reasonable_defaults
112 static void insert_undefined
113 PARAMS ((const char *));
114 static void lang_place_undefineds
116 static void map_input_to_output_sections
117 PARAMS ((lang_statement_union_type
*, const char *,
118 lang_output_section_statement_type
*));
119 static void strip_excluded_output_sections
121 static void print_output_section_statement
122 PARAMS ((lang_output_section_statement_type
*));
123 static void print_assignment
124 PARAMS ((lang_assignment_statement_type
*,
125 lang_output_section_statement_type
*));
126 static void print_input_statement
127 PARAMS ((lang_input_statement_type
*));
128 static bfd_boolean print_one_symbol
129 PARAMS ((struct bfd_link_hash_entry
*, PTR
));
130 static void print_input_section
131 PARAMS ((lang_input_section_type
*));
132 static void print_fill_statement
133 PARAMS ((lang_fill_statement_type
*));
134 static void print_data_statement
135 PARAMS ((lang_data_statement_type
*));
136 static void print_address_statement
137 PARAMS ((lang_address_statement_type
*));
138 static void print_reloc_statement
139 PARAMS ((lang_reloc_statement_type
*));
140 static void print_padding_statement
141 PARAMS ((lang_padding_statement_type
*));
142 static void print_wild_statement
143 PARAMS ((lang_wild_statement_type
*, lang_output_section_statement_type
*));
144 static void print_group
145 PARAMS ((lang_group_statement_type
*, lang_output_section_statement_type
*));
146 static void print_statement
147 PARAMS ((lang_statement_union_type
*, lang_output_section_statement_type
*));
148 static void print_statement_list
149 PARAMS ((lang_statement_union_type
*, lang_output_section_statement_type
*));
150 static void print_statements
152 static void insert_pad
153 PARAMS ((lang_statement_union_type
**, fill_type
*,
154 unsigned int, asection
*, bfd_vma
));
155 static bfd_vma size_input_section
156 PARAMS ((lang_statement_union_type
**, lang_output_section_statement_type
*,
157 fill_type
*, bfd_vma
));
158 static void lang_finish
160 static void ignore_bfd_errors
161 PARAMS ((const char *, ...));
162 static void lang_check
164 static void lang_common
166 static bfd_boolean lang_one_common
167 PARAMS ((struct bfd_link_hash_entry
*, PTR
));
168 static void lang_place_orphans
172 static void lang_set_startof
174 static void gc_section_callback
175 PARAMS ((lang_wild_statement_type
*, struct wildcard_list
*, asection
*,
176 lang_input_statement_type
*, PTR
));
177 static void lang_get_regions
178 PARAMS ((struct memory_region_struct
**, struct memory_region_struct
**,
179 const char *, const char *, int));
180 static void lang_record_phdrs
182 static void lang_gc_wild
183 PARAMS ((lang_wild_statement_type
*));
184 static void lang_gc_sections_1
185 PARAMS ((lang_statement_union_type
*));
186 static void lang_gc_sections
188 static int lang_vers_match_lang_c
189 PARAMS ((struct bfd_elf_version_expr
*, const char *));
190 static int lang_vers_match_lang_cplusplus
191 PARAMS ((struct bfd_elf_version_expr
*, const char *));
192 static int lang_vers_match_lang_java
193 PARAMS ((struct bfd_elf_version_expr
*, const char *));
194 static void lang_do_version_exports_section
196 static void lang_check_section_addresses
198 static void os_region_check
199 PARAMS ((lang_output_section_statement_type
*,
200 struct memory_region_struct
*, etree_type
*, bfd_vma
));
201 static bfd_vma lang_size_sections_1
202 PARAMS ((lang_statement_union_type
*, lang_output_section_statement_type
*,
203 lang_statement_union_type
**, fill_type
*, bfd_vma
, bfd_boolean
*,
205 typedef void (*callback_t
)
206 PARAMS ((lang_wild_statement_type
*, struct wildcard_list
*, asection
*,
207 lang_input_statement_type
*, PTR
));
208 static void walk_wild
209 PARAMS ((lang_wild_statement_type
*, callback_t
, PTR
));
210 static void walk_wild_section
211 PARAMS ((lang_wild_statement_type
*, lang_input_statement_type
*,
213 static void walk_wild_file
214 PARAMS ((lang_wild_statement_type
*, lang_input_statement_type
*,
216 static int get_target
217 PARAMS ((const bfd_target
*, PTR
));
219 PARAMS ((char *, char *));
221 PARAMS ((char *, char *));
222 static int name_compare
223 PARAMS ((char *, char *));
224 static int closest_target_match
225 PARAMS ((const bfd_target
*, PTR
));
226 static char * get_first_input_target
229 /* Exported variables. */
230 lang_output_section_statement_type
*abs_output_section
;
231 lang_statement_list_type lang_output_section_statement
;
232 lang_statement_list_type
*stat_ptr
= &statement_list
;
233 lang_statement_list_type file_chain
= { NULL
, NULL
};
234 struct bfd_sym_chain entry_symbol
= { NULL
, NULL
};
235 const char *entry_section
= ".text";
236 bfd_boolean entry_from_cmdline
;
237 bfd_boolean lang_has_input_file
= FALSE
;
238 bfd_boolean had_output_filename
= FALSE
;
239 bfd_boolean lang_float_flag
= FALSE
;
240 bfd_boolean delete_output_file_on_failure
= FALSE
;
241 struct lang_nocrossrefs
*nocrossref_list
;
242 struct unique_sections
*unique_section_list
;
243 static bfd_boolean ldlang_sysrooted_script
= FALSE
;
245 etree_type
*base
; /* Relocation base - or null */
247 #if defined (__STDC__) || defined (ALMOST_STDC)
248 #define cat(a,b) a##b
250 #define cat(a,b) a/**/b
253 /* Don't beautify the line below with "innocent" whitespace, it breaks
254 the K&R C preprocessor! */
255 #define new_stat(x, y) \
256 (cat (x,_type)*) new_statement (cat (x,_enum), sizeof (cat (x,_type)), y)
258 #define outside_section_address(q) \
259 ((q)->output_offset + (q)->output_section->vma)
261 #define outside_symbol_address(q) \
262 ((q)->value + outside_section_address (q->section))
264 #define SECTION_NAME_MAP_LENGTH (16)
270 return obstack_alloc (&stat_obstack
, size
);
274 unique_section_p (secnam
)
277 struct unique_sections
*unam
;
279 for (unam
= unique_section_list
; unam
; unam
= unam
->next
)
280 if (wildcardp (unam
->name
)
281 ? fnmatch (unam
->name
, secnam
, 0) == 0
282 : strcmp (unam
->name
, secnam
) == 0)
290 /* Generic traversal routines for finding matching sections. */
293 walk_wild_section (ptr
, file
, callback
, data
)
294 lang_wild_statement_type
*ptr
;
295 lang_input_statement_type
*file
;
301 if (file
->just_syms_flag
)
304 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
306 struct wildcard_list
*sec
;
308 sec
= ptr
->section_list
;
310 (*callback
) (ptr
, sec
, s
, file
, data
);
314 bfd_boolean skip
= FALSE
;
315 struct name_list
*list_tmp
;
317 /* Don't process sections from files which were
319 for (list_tmp
= sec
->spec
.exclude_name_list
;
321 list_tmp
= list_tmp
->next
)
323 if (wildcardp (list_tmp
->name
))
324 skip
= fnmatch (list_tmp
->name
, file
->filename
, 0) == 0;
326 skip
= strcmp (list_tmp
->name
, file
->filename
) == 0;
328 /* If this file is part of an archive, and the archive is
329 excluded, exclude this file. */
330 if (! skip
&& file
->the_bfd
!= NULL
331 && file
->the_bfd
->my_archive
!= NULL
332 && file
->the_bfd
->my_archive
->filename
!= NULL
)
334 if (wildcardp (list_tmp
->name
))
335 skip
= fnmatch (list_tmp
->name
,
336 file
->the_bfd
->my_archive
->filename
,
339 skip
= strcmp (list_tmp
->name
,
340 file
->the_bfd
->my_archive
->filename
) == 0;
347 if (!skip
&& sec
->spec
.name
!= NULL
)
349 const char *sname
= bfd_get_section_name (file
->the_bfd
, s
);
351 if (wildcardp (sec
->spec
.name
))
352 skip
= fnmatch (sec
->spec
.name
, sname
, 0) != 0;
354 skip
= strcmp (sec
->spec
.name
, sname
) != 0;
358 (*callback
) (ptr
, sec
, s
, file
, data
);
365 /* Handle a wild statement for a single file F. */
368 walk_wild_file (s
, f
, callback
, data
)
369 lang_wild_statement_type
*s
;
370 lang_input_statement_type
*f
;
374 if (f
->the_bfd
== NULL
375 || ! bfd_check_format (f
->the_bfd
, bfd_archive
))
376 walk_wild_section (s
, f
, callback
, data
);
381 /* This is an archive file. We must map each member of the
382 archive separately. */
383 member
= bfd_openr_next_archived_file (f
->the_bfd
, (bfd
*) NULL
);
384 while (member
!= NULL
)
386 /* When lookup_name is called, it will call the add_symbols
387 entry point for the archive. For each element of the
388 archive which is included, BFD will call ldlang_add_file,
389 which will set the usrdata field of the member to the
390 lang_input_statement. */
391 if (member
->usrdata
!= NULL
)
393 walk_wild_section (s
,
394 (lang_input_statement_type
*) member
->usrdata
,
398 member
= bfd_openr_next_archived_file (f
->the_bfd
, member
);
404 walk_wild (s
, callback
, data
)
405 lang_wild_statement_type
*s
;
409 const char *file_spec
= s
->filename
;
411 if (file_spec
== NULL
)
413 /* Perform the iteration over all files in the list. */
414 LANG_FOR_EACH_INPUT_STATEMENT (f
)
416 walk_wild_file (s
, f
, callback
, data
);
419 else if (wildcardp (file_spec
))
421 LANG_FOR_EACH_INPUT_STATEMENT (f
)
423 if (fnmatch (file_spec
, f
->filename
, FNM_FILE_NAME
) == 0)
424 walk_wild_file (s
, f
, callback
, data
);
429 lang_input_statement_type
*f
;
431 /* Perform the iteration over a single file. */
432 f
= lookup_name (file_spec
);
434 walk_wild_file (s
, f
, callback
, data
);
438 /* lang_for_each_statement walks the parse tree and calls the provided
439 function for each node. */
442 lang_for_each_statement_worker (func
, s
)
443 void (*func
) PARAMS ((lang_statement_union_type
*));
444 lang_statement_union_type
*s
;
446 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->header
.next
)
450 switch (s
->header
.type
)
452 case lang_constructors_statement_enum
:
453 lang_for_each_statement_worker (func
, constructor_list
.head
);
455 case lang_output_section_statement_enum
:
456 lang_for_each_statement_worker
458 s
->output_section_statement
.children
.head
);
460 case lang_wild_statement_enum
:
461 lang_for_each_statement_worker
463 s
->wild_statement
.children
.head
);
465 case lang_group_statement_enum
:
466 lang_for_each_statement_worker (func
,
467 s
->group_statement
.children
.head
);
469 case lang_data_statement_enum
:
470 case lang_reloc_statement_enum
:
471 case lang_object_symbols_statement_enum
:
472 case lang_output_statement_enum
:
473 case lang_target_statement_enum
:
474 case lang_input_section_enum
:
475 case lang_input_statement_enum
:
476 case lang_assignment_statement_enum
:
477 case lang_padding_statement_enum
:
478 case lang_address_statement_enum
:
479 case lang_fill_statement_enum
:
489 lang_for_each_statement (func
)
490 void (*func
) PARAMS ((lang_statement_union_type
*));
492 lang_for_each_statement_worker (func
, statement_list
.head
);
495 /*----------------------------------------------------------------------*/
498 lang_list_init (list
)
499 lang_statement_list_type
*list
;
501 list
->head
= (lang_statement_union_type
*) NULL
;
502 list
->tail
= &list
->head
;
505 /* Build a new statement node for the parse tree. */
507 static lang_statement_union_type
*
508 new_statement (type
, size
, list
)
509 enum statement_enum type
;
511 lang_statement_list_type
*list
;
513 lang_statement_union_type
*new = (lang_statement_union_type
*)
516 new->header
.type
= type
;
517 new->header
.next
= (lang_statement_union_type
*) NULL
;
518 lang_statement_append (list
, new, &new->header
.next
);
522 /* Build a new input file node for the language. There are several
523 ways in which we treat an input file, eg, we only look at symbols,
524 or prefix it with a -l etc.
526 We can be supplied with requests for input files more than once;
527 they may, for example be split over several lines like foo.o(.text)
528 foo.o(.data) etc, so when asked for a file we check that we haven't
529 got it already so we don't duplicate the bfd. */
531 static lang_input_statement_type
*
532 new_afile (name
, file_type
, target
, add_to_list
)
534 lang_input_file_enum_type file_type
;
536 bfd_boolean add_to_list
;
538 lang_input_statement_type
*p
;
541 p
= new_stat (lang_input_statement
, stat_ptr
);
544 p
= ((lang_input_statement_type
*)
545 stat_alloc (sizeof (lang_input_statement_type
)));
546 p
->header
.next
= NULL
;
549 lang_has_input_file
= TRUE
;
551 p
->sysrooted
= FALSE
;
554 case lang_input_file_is_symbols_only_enum
:
556 p
->is_archive
= FALSE
;
558 p
->local_sym_name
= name
;
559 p
->just_syms_flag
= TRUE
;
560 p
->search_dirs_flag
= FALSE
;
562 case lang_input_file_is_fake_enum
:
564 p
->is_archive
= FALSE
;
566 p
->local_sym_name
= name
;
567 p
->just_syms_flag
= FALSE
;
568 p
->search_dirs_flag
= FALSE
;
570 case lang_input_file_is_l_enum
:
571 p
->is_archive
= TRUE
;
574 p
->local_sym_name
= concat ("-l", name
, (const char *) NULL
);
575 p
->just_syms_flag
= FALSE
;
576 p
->search_dirs_flag
= TRUE
;
578 case lang_input_file_is_marker_enum
:
580 p
->is_archive
= FALSE
;
582 p
->local_sym_name
= name
;
583 p
->just_syms_flag
= FALSE
;
584 p
->search_dirs_flag
= TRUE
;
586 case lang_input_file_is_search_file_enum
:
587 p
->sysrooted
= ldlang_sysrooted_script
;
589 p
->is_archive
= FALSE
;
591 p
->local_sym_name
= name
;
592 p
->just_syms_flag
= FALSE
;
593 p
->search_dirs_flag
= TRUE
;
595 case lang_input_file_is_file_enum
:
597 p
->is_archive
= FALSE
;
599 p
->local_sym_name
= name
;
600 p
->just_syms_flag
= FALSE
;
601 p
->search_dirs_flag
= FALSE
;
606 p
->the_bfd
= (bfd
*) NULL
;
607 p
->asymbols
= (asymbol
**) NULL
;
608 p
->next_real_file
= (lang_statement_union_type
*) NULL
;
609 p
->next
= (lang_statement_union_type
*) NULL
;
611 p
->dynamic
= config
.dynamic_link
;
612 p
->whole_archive
= whole_archive
;
614 lang_statement_append (&input_file_chain
,
615 (lang_statement_union_type
*) p
,
620 lang_input_statement_type
*
621 lang_add_input_file (name
, file_type
, target
)
623 lang_input_file_enum_type file_type
;
626 lang_has_input_file
= TRUE
;
627 return new_afile (name
, file_type
, target
, TRUE
);
630 /* Build enough state so that the parser can build its tree. */
635 obstack_begin (&stat_obstack
, 1000);
637 stat_ptr
= &statement_list
;
639 lang_list_init (stat_ptr
);
641 lang_list_init (&input_file_chain
);
642 lang_list_init (&lang_output_section_statement
);
643 lang_list_init (&file_chain
);
644 first_file
= lang_add_input_file ((char *) NULL
,
645 lang_input_file_is_marker_enum
,
648 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME
);
650 abs_output_section
->bfd_section
= bfd_abs_section_ptr
;
654 /*----------------------------------------------------------------------
655 A region is an area of memory declared with the
656 MEMORY { name:org=exp, len=exp ... }
659 We maintain a list of all the regions here.
661 If no regions are specified in the script, then the default is used
662 which is created when looked up to be the entire data space. */
664 static lang_memory_region_type
*lang_memory_region_list
;
665 static lang_memory_region_type
**lang_memory_region_list_tail
= &lang_memory_region_list
;
667 lang_memory_region_type
*
668 lang_memory_region_lookup (name
)
669 const char *const name
;
671 lang_memory_region_type
*p
;
673 /* NAME is NULL for LMA memspecs if no region was specified. */
677 for (p
= lang_memory_region_list
;
678 p
!= (lang_memory_region_type
*) NULL
;
681 if (strcmp (p
->name
, name
) == 0)
688 /* This code used to always use the first region in the list as the
689 default region. I changed it to instead use a region
690 encompassing all of memory as the default region. This permits
691 NOLOAD sections to work reasonably without requiring a region.
692 People should specify what region they mean, if they really want
694 if (strcmp (name
, "*default*") == 0)
696 if (lang_memory_region_list
!= (lang_memory_region_type
*) NULL
)
698 return lang_memory_region_list
;
704 lang_memory_region_type
*new =
705 (lang_memory_region_type
*) stat_alloc (sizeof (lang_memory_region_type
));
707 new->name
= xstrdup (name
);
708 new->next
= (lang_memory_region_type
*) NULL
;
710 *lang_memory_region_list_tail
= new;
711 lang_memory_region_list_tail
= &new->next
;
715 new->length
= ~(bfd_size_type
) 0;
717 new->had_full_message
= FALSE
;
723 static lang_memory_region_type
*
724 lang_memory_default (section
)
727 lang_memory_region_type
*p
;
729 flagword sec_flags
= section
->flags
;
731 /* Override SEC_DATA to mean a writable section. */
732 if ((sec_flags
& (SEC_ALLOC
| SEC_READONLY
| SEC_CODE
)) == SEC_ALLOC
)
733 sec_flags
|= SEC_DATA
;
735 for (p
= lang_memory_region_list
;
736 p
!= (lang_memory_region_type
*) NULL
;
739 if ((p
->flags
& sec_flags
) != 0
740 && (p
->not_flags
& sec_flags
) == 0)
745 return lang_memory_region_lookup ("*default*");
748 lang_output_section_statement_type
*
749 lang_output_section_find (name
)
750 const char *const name
;
752 lang_statement_union_type
*u
;
753 lang_output_section_statement_type
*lookup
;
755 for (u
= lang_output_section_statement
.head
;
756 u
!= (lang_statement_union_type
*) NULL
;
759 lookup
= &u
->output_section_statement
;
760 if (strcmp (name
, lookup
->name
) == 0)
765 return (lang_output_section_statement_type
*) NULL
;
768 lang_output_section_statement_type
*
769 lang_output_section_statement_lookup (name
)
770 const char *const name
;
772 lang_output_section_statement_type
*lookup
;
774 lookup
= lang_output_section_find (name
);
775 if (lookup
== (lang_output_section_statement_type
*) NULL
)
778 lookup
= (lang_output_section_statement_type
*)
779 new_stat (lang_output_section_statement
, stat_ptr
);
780 lookup
->region
= (lang_memory_region_type
*) NULL
;
781 lookup
->lma_region
= (lang_memory_region_type
*) NULL
;
782 lookup
->fill
= (fill_type
*) 0;
783 lookup
->block_value
= 1;
786 lookup
->next
= (lang_statement_union_type
*) NULL
;
787 lookup
->bfd_section
= (asection
*) NULL
;
788 lookup
->processed
= FALSE
;
789 lookup
->sectype
= normal_section
;
790 lookup
->addr_tree
= (etree_type
*) NULL
;
791 lang_list_init (&lookup
->children
);
793 lookup
->memspec
= (const char *) NULL
;
795 lookup
->subsection_alignment
= -1;
796 lookup
->section_alignment
= -1;
797 lookup
->load_base
= (union etree_union
*) NULL
;
798 lookup
->update_dot_tree
= NULL
;
799 lookup
->phdrs
= NULL
;
801 lang_statement_append (&lang_output_section_statement
,
802 (lang_statement_union_type
*) lookup
,
809 lang_map_flags (flag
)
812 if (flag
& SEC_ALLOC
)
818 if (flag
& SEC_READONLY
)
831 lang_memory_region_type
*m
;
833 minfo (_("\nMemory Configuration\n\n"));
834 fprintf (config
.map_file
, "%-16s %-18s %-18s %s\n",
835 _("Name"), _("Origin"), _("Length"), _("Attributes"));
837 for (m
= lang_memory_region_list
;
838 m
!= (lang_memory_region_type
*) NULL
;
844 fprintf (config
.map_file
, "%-16s ", m
->name
);
846 sprintf_vma (buf
, m
->origin
);
847 minfo ("0x%s ", buf
);
855 minfo ("0x%V", m
->length
);
856 if (m
->flags
|| m
->not_flags
)
864 lang_map_flags (m
->flags
);
870 lang_map_flags (m
->not_flags
);
877 fprintf (config
.map_file
, _("\nLinker script and memory map\n\n"));
882 /* Initialize an output section. */
886 lang_output_section_statement_type
*s
;
888 section_userdata_type
*new;
890 if (s
->bfd_section
!= NULL
)
893 if (strcmp (s
->name
, DISCARD_SECTION_NAME
) == 0)
894 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME
);
896 new = ((section_userdata_type
*)
897 stat_alloc (sizeof (section_userdata_type
)));
899 s
->bfd_section
= bfd_get_section_by_name (output_bfd
, s
->name
);
900 if (s
->bfd_section
== (asection
*) NULL
)
901 s
->bfd_section
= bfd_make_section (output_bfd
, s
->name
);
902 if (s
->bfd_section
== (asection
*) NULL
)
904 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
905 output_bfd
->xvec
->name
, s
->name
);
907 s
->bfd_section
->output_section
= s
->bfd_section
;
909 /* We initialize an output sections output offset to minus its own
910 vma to allow us to output a section through itself. */
911 s
->bfd_section
->output_offset
= 0;
912 get_userdata (s
->bfd_section
) = (PTR
) new;
914 /* If there is a base address, make sure that any sections it might
915 mention are initialized. */
916 if (s
->addr_tree
!= NULL
)
917 exp_init_os (s
->addr_tree
);
919 if (s
->load_base
!= NULL
)
920 exp_init_os (s
->load_base
);
923 /* Make sure that all output sections mentioned in an expression are
930 switch (exp
->type
.node_class
)
933 exp_init_os (exp
->assign
.src
);
937 exp_init_os (exp
->binary
.lhs
);
938 exp_init_os (exp
->binary
.rhs
);
942 exp_init_os (exp
->trinary
.cond
);
943 exp_init_os (exp
->trinary
.lhs
);
944 exp_init_os (exp
->trinary
.rhs
);
948 exp_init_os (exp
->unary
.child
);
952 switch (exp
->type
.node_code
)
958 lang_output_section_statement_type
*os
;
960 os
= lang_output_section_find (exp
->name
.name
);
961 if (os
!= NULL
&& os
->bfd_section
== NULL
)
972 /* Sections marked with the SEC_LINK_ONCE flag should only be linked
973 once into the output. This routine checks each section, and
974 arrange to discard it if a section of the same name has already
975 been linked. If the section has COMDAT information, then it uses
976 that to decide whether the section should be included. This code
977 assumes that all relevant sections have the SEC_LINK_ONCE flag set;
978 that is, it does not depend solely upon the section name.
979 section_already_linked is called via bfd_map_over_sections. */
981 /* This is the shape of the elements inside the already_linked hash
982 table. It maps a name onto a list of already_linked elements with
983 the same name. It's possible to get more than one element in a
984 list if the COMDAT sections have different names. */
986 struct already_linked_hash_entry
988 struct bfd_hash_entry root
;
989 struct already_linked
*entry
;
992 struct already_linked
994 struct already_linked
*next
;
998 /* The hash table. */
1000 static struct bfd_hash_table already_linked_table
;
1003 section_already_linked (abfd
, sec
, data
)
1008 lang_input_statement_type
*entry
= (lang_input_statement_type
*) data
;
1011 struct already_linked
*l
;
1012 struct already_linked_hash_entry
*already_linked_list
;
1014 /* If we are only reading symbols from this object, then we want to
1015 discard all sections. */
1016 if (entry
->just_syms_flag
)
1018 bfd_link_just_syms (sec
, &link_info
);
1022 flags
= bfd_get_section_flags (abfd
, sec
);
1024 if ((flags
& SEC_LINK_ONCE
) == 0)
1027 /* FIXME: When doing a relocatable link, we may have trouble
1028 copying relocations in other sections that refer to local symbols
1029 in the section being discarded. Those relocations will have to
1030 be converted somehow; as of this writing I'm not sure that any of
1031 the backends handle that correctly.
1033 It is tempting to instead not discard link once sections when
1034 doing a relocatable link (technically, they should be discarded
1035 whenever we are building constructors). However, that fails,
1036 because the linker winds up combining all the link once sections
1037 into a single large link once section, which defeats the purpose
1038 of having link once sections in the first place.
1040 Also, not merging link once sections in a relocatable link
1041 causes trouble for MIPS ELF, which relies on link once semantics
1042 to handle the .reginfo section correctly. */
1044 name
= bfd_get_section_name (abfd
, sec
);
1046 already_linked_list
=
1047 ((struct already_linked_hash_entry
*)
1048 bfd_hash_lookup (&already_linked_table
, name
, TRUE
, FALSE
));
1050 for (l
= already_linked_list
->entry
; l
!= NULL
; l
= l
->next
)
1052 if (sec
->comdat
== NULL
1053 || l
->sec
->comdat
== NULL
1054 || strcmp (sec
->comdat
->name
, l
->sec
->comdat
->name
) == 0)
1056 /* The section has already been linked. See if we should
1058 switch (flags
& SEC_LINK_DUPLICATES
)
1063 case SEC_LINK_DUPLICATES_DISCARD
:
1066 case SEC_LINK_DUPLICATES_ONE_ONLY
:
1067 if (sec
->comdat
== NULL
)
1068 einfo (_("%P: %B: warning: ignoring duplicate section `%s'\n"),
1071 einfo (_("%P: %B: warning: ignoring duplicate `%s' section symbol `%s'\n"),
1072 abfd
, name
, sec
->comdat
->name
);
1075 case SEC_LINK_DUPLICATES_SAME_CONTENTS
:
1076 /* FIXME: We should really dig out the contents of both
1077 sections and memcmp them. The COFF/PE spec says that
1078 the Microsoft linker does not implement this
1079 correctly, so I'm not going to bother doing it
1082 case SEC_LINK_DUPLICATES_SAME_SIZE
:
1083 if (bfd_section_size (abfd
, sec
)
1084 != bfd_section_size (l
->sec
->owner
, l
->sec
))
1085 einfo (_("%P: %B: warning: duplicate section `%s' has different size\n"),
1090 /* Set the output_section field so that lang_add_section
1091 does not create a lang_input_section structure for this
1093 sec
->output_section
= bfd_abs_section_ptr
;
1095 if (flags
& SEC_GROUP
)
1096 bfd_discard_group (abfd
, sec
);
1102 /* This is the first section with this name. Record it. Allocate
1103 the memory from the same obstack as the hash table is kept in. */
1105 l
= ((struct already_linked
*)
1106 bfd_hash_allocate (&already_linked_table
, sizeof *l
));
1109 l
->next
= already_linked_list
->entry
;
1110 already_linked_list
->entry
= l
;
1113 /* Support routines for the hash table used by section_already_linked,
1114 initialize the table, fill in an entry and remove the table. */
1116 static struct bfd_hash_entry
*
1117 already_linked_newfunc (entry
, table
, string
)
1118 struct bfd_hash_entry
*entry ATTRIBUTE_UNUSED
;
1119 struct bfd_hash_table
*table
;
1120 const char *string ATTRIBUTE_UNUSED
;
1122 struct already_linked_hash_entry
*ret
=
1123 bfd_hash_allocate (table
, sizeof (struct already_linked_hash_entry
));
1127 return (struct bfd_hash_entry
*) ret
;
1131 already_linked_table_init ()
1133 if (! bfd_hash_table_init_n (&already_linked_table
,
1134 already_linked_newfunc
,
1136 einfo (_("%P%F: Failed to create hash table\n"));
1140 already_linked_table_free ()
1142 bfd_hash_table_free (&already_linked_table
);
1145 /* The wild routines.
1147 These expand statements like *(.text) and foo.o to a list of
1148 explicit actions, like foo.o(.text), bar.o(.text) and
1149 foo.o(.text, .data). */
1151 /* Return TRUE if the PATTERN argument is a wildcard pattern.
1152 Although backslashes are treated specially if a pattern contains
1153 wildcards, we do not consider the mere presence of a backslash to
1154 be enough to cause the pattern to be treated as a wildcard.
1155 That lets us handle DOS filenames more naturally. */
1159 const char *pattern
;
1163 for (s
= pattern
; *s
!= '\0'; ++s
)
1171 /* Add SECTION to the output section OUTPUT. Do this by creating a
1172 lang_input_section statement which is placed at PTR. FILE is the
1173 input file which holds SECTION. */
1176 lang_add_section (ptr
, section
, output
, file
)
1177 lang_statement_list_type
*ptr
;
1179 lang_output_section_statement_type
*output
;
1180 lang_input_statement_type
*file
;
1183 bfd_boolean discard
;
1185 flags
= bfd_get_section_flags (section
->owner
, section
);
1189 /* Discard sections marked with SEC_EXCLUDE if we are doing a final
1190 link. Discard debugging sections marked with SEC_EXCLUDE on a
1191 relocatable link too. */
1192 if ((flags
& SEC_EXCLUDE
) != 0
1193 && ((flags
& SEC_DEBUGGING
) != 0 || !link_info
.relocateable
))
1196 /* Discard input sections which are assigned to a section named
1197 DISCARD_SECTION_NAME. */
1198 if (strcmp (output
->name
, DISCARD_SECTION_NAME
) == 0)
1201 /* Discard debugging sections if we are stripping debugging
1203 if ((link_info
.strip
== strip_debugger
|| link_info
.strip
== strip_all
)
1204 && (flags
& SEC_DEBUGGING
) != 0)
1209 if (section
->output_section
== NULL
)
1211 /* This prevents future calls from assigning this section. */
1212 section
->output_section
= bfd_abs_section_ptr
;
1217 if (section
->output_section
== NULL
)
1220 lang_input_section_type
*new;
1223 if (output
->bfd_section
== NULL
)
1226 first
= ! output
->bfd_section
->linker_has_input
;
1227 output
->bfd_section
->linker_has_input
= 1;
1229 /* Add a section reference to the list. */
1230 new = new_stat (lang_input_section
, ptr
);
1232 new->section
= section
;
1234 section
->output_section
= output
->bfd_section
;
1236 flags
= section
->flags
;
1238 /* We don't copy the SEC_NEVER_LOAD flag from an input section
1239 to an output section, because we want to be able to include a
1240 SEC_NEVER_LOAD section in the middle of an otherwise loaded
1241 section (I don't know why we want to do this, but we do).
1242 build_link_order in ldwrite.c handles this case by turning
1243 the embedded SEC_NEVER_LOAD section into a fill. */
1245 flags
&= ~ SEC_NEVER_LOAD
;
1247 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
1248 already been processed. One reason to do this is that on pe
1249 format targets, .text$foo sections go into .text and it's odd
1250 to see .text with SEC_LINK_ONCE set. */
1252 if (! link_info
.relocateable
)
1253 flags
&= ~ (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
);
1255 /* If this is not the first input section, and the SEC_READONLY
1256 flag is not currently set, then don't set it just because the
1257 input section has it set. */
1259 if (! first
&& (section
->output_section
->flags
& SEC_READONLY
) == 0)
1260 flags
&= ~ SEC_READONLY
;
1262 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
1264 && ((section
->output_section
->flags
& (SEC_MERGE
| SEC_STRINGS
))
1265 != (flags
& (SEC_MERGE
| SEC_STRINGS
))
1266 || ((flags
& SEC_MERGE
)
1267 && section
->output_section
->entsize
!= section
->entsize
)))
1269 section
->output_section
->flags
&= ~ (SEC_MERGE
| SEC_STRINGS
);
1270 flags
&= ~ (SEC_MERGE
| SEC_STRINGS
);
1273 /* For now make .tbss normal section. */
1274 if ((flags
& SEC_THREAD_LOCAL
) && ! link_info
.relocateable
)
1277 section
->output_section
->flags
|= flags
;
1279 if (flags
& SEC_MERGE
)
1280 section
->output_section
->entsize
= section
->entsize
;
1282 /* If SEC_READONLY is not set in the input section, then clear
1283 it from the output section. */
1284 if ((section
->flags
& SEC_READONLY
) == 0)
1285 section
->output_section
->flags
&= ~SEC_READONLY
;
1287 switch (output
->sectype
)
1289 case normal_section
:
1294 case overlay_section
:
1295 output
->bfd_section
->flags
&= ~SEC_ALLOC
;
1297 case noload_section
:
1298 output
->bfd_section
->flags
&= ~SEC_LOAD
;
1299 output
->bfd_section
->flags
|= SEC_NEVER_LOAD
;
1303 /* Copy over SEC_SMALL_DATA. */
1304 if (section
->flags
& SEC_SMALL_DATA
)
1305 section
->output_section
->flags
|= SEC_SMALL_DATA
;
1307 if (section
->alignment_power
> output
->bfd_section
->alignment_power
)
1308 output
->bfd_section
->alignment_power
= section
->alignment_power
;
1310 /* If supplied an alignment, then force it. */
1311 if (output
->section_alignment
!= -1)
1312 output
->bfd_section
->alignment_power
= output
->section_alignment
;
1314 if (section
->flags
& SEC_BLOCK
)
1316 section
->output_section
->flags
|= SEC_BLOCK
;
1317 /* FIXME: This value should really be obtained from the bfd... */
1318 output
->block_value
= 128;
1323 /* Handle wildcard sorting. This returns the lang_input_section which
1324 should follow the one we are going to create for SECTION and FILE,
1325 based on the sorting requirements of WILD. It returns NULL if the
1326 new section should just go at the end of the current list. */
1328 static lang_statement_union_type
*
1329 wild_sort (wild
, sec
, file
, section
)
1330 lang_wild_statement_type
*wild
;
1331 struct wildcard_list
*sec
;
1332 lang_input_statement_type
*file
;
1335 const char *section_name
;
1336 lang_statement_union_type
*l
;
1338 if (!wild
->filenames_sorted
&& (sec
== NULL
|| !sec
->spec
.sorted
))
1341 section_name
= bfd_get_section_name (file
->the_bfd
, section
);
1342 for (l
= wild
->children
.head
; l
!= NULL
; l
= l
->header
.next
)
1344 lang_input_section_type
*ls
;
1346 if (l
->header
.type
!= lang_input_section_enum
)
1348 ls
= &l
->input_section
;
1350 /* Sorting by filename takes precedence over sorting by section
1353 if (wild
->filenames_sorted
)
1355 const char *fn
, *ln
;
1359 /* The PE support for the .idata section as generated by
1360 dlltool assumes that files will be sorted by the name of
1361 the archive and then the name of the file within the
1364 if (file
->the_bfd
!= NULL
1365 && bfd_my_archive (file
->the_bfd
) != NULL
)
1367 fn
= bfd_get_filename (bfd_my_archive (file
->the_bfd
));
1372 fn
= file
->filename
;
1376 if (ls
->ifile
->the_bfd
!= NULL
1377 && bfd_my_archive (ls
->ifile
->the_bfd
) != NULL
)
1379 ln
= bfd_get_filename (bfd_my_archive (ls
->ifile
->the_bfd
));
1384 ln
= ls
->ifile
->filename
;
1388 i
= strcmp (fn
, ln
);
1397 fn
= file
->filename
;
1399 ln
= ls
->ifile
->filename
;
1401 i
= strcmp (fn
, ln
);
1409 /* Here either the files are not sorted by name, or we are
1410 looking at the sections for this file. */
1412 if (sec
!= NULL
&& sec
->spec
.sorted
)
1414 if (strcmp (section_name
,
1415 bfd_get_section_name (ls
->ifile
->the_bfd
,
1425 /* Expand a wild statement for a particular FILE. SECTION may be
1426 NULL, in which case it is a wild card. */
1429 output_section_callback (ptr
, sec
, section
, file
, output
)
1430 lang_wild_statement_type
*ptr
;
1431 struct wildcard_list
*sec
;
1433 lang_input_statement_type
*file
;
1436 lang_statement_union_type
*before
;
1438 /* Exclude sections that match UNIQUE_SECTION_LIST. */
1439 if (unique_section_p (bfd_get_section_name (file
->the_bfd
, section
)))
1442 /* If the wild pattern was marked KEEP, the member sections
1443 should be as well. */
1444 if (ptr
->keep_sections
)
1445 section
->flags
|= SEC_KEEP
;
1447 before
= wild_sort (ptr
, sec
, file
, section
);
1449 /* Here BEFORE points to the lang_input_section which
1450 should follow the one we are about to add. If BEFORE
1451 is NULL, then the section should just go at the end
1452 of the current list. */
1455 lang_add_section (&ptr
->children
, section
,
1456 (lang_output_section_statement_type
*) output
,
1460 lang_statement_list_type list
;
1461 lang_statement_union_type
**pp
;
1463 lang_list_init (&list
);
1464 lang_add_section (&list
, section
,
1465 (lang_output_section_statement_type
*) output
,
1468 /* If we are discarding the section, LIST.HEAD will
1470 if (list
.head
!= NULL
)
1472 ASSERT (list
.head
->header
.next
== NULL
);
1474 for (pp
= &ptr
->children
.head
;
1476 pp
= &(*pp
)->header
.next
)
1477 ASSERT (*pp
!= NULL
);
1479 list
.head
->header
.next
= *pp
;
1485 /* This is passed a file name which must have been seen already and
1486 added to the statement tree. We will see if it has been opened
1487 already and had its symbols read. If not then we'll read it. */
1489 static lang_input_statement_type
*
1493 lang_input_statement_type
*search
;
1495 for (search
= (lang_input_statement_type
*) input_file_chain
.head
;
1496 search
!= (lang_input_statement_type
*) NULL
;
1497 search
= (lang_input_statement_type
*) search
->next_real_file
)
1499 if (search
->filename
== (char *) NULL
&& name
== (char *) NULL
)
1501 if (search
->filename
!= (char *) NULL
1502 && name
!= (char *) NULL
1503 && strcmp (search
->filename
, name
) == 0)
1507 if (search
== (lang_input_statement_type
*) NULL
)
1508 search
= new_afile (name
, lang_input_file_is_file_enum
, default_target
,
1511 /* If we have already added this file, or this file is not real
1512 (FIXME: can that ever actually happen?) or the name is NULL
1513 (FIXME: can that ever actually happen?) don't add this file. */
1516 || search
->filename
== (const char *) NULL
)
1519 if (! load_symbols (search
, (lang_statement_list_type
*) NULL
))
1525 /* Get the symbols for an input file. */
1528 load_symbols (entry
, place
)
1529 lang_input_statement_type
*entry
;
1530 lang_statement_list_type
*place
;
1537 ldfile_open_file (entry
);
1539 if (! bfd_check_format (entry
->the_bfd
, bfd_archive
)
1540 && ! bfd_check_format_matches (entry
->the_bfd
, bfd_object
, &matching
))
1543 lang_statement_list_type
*hold
;
1544 bfd_boolean bad_load
= TRUE
;
1545 bfd_boolean save_ldlang_sysrooted_script
;
1547 err
= bfd_get_error ();
1549 /* See if the emulation has some special knowledge. */
1550 if (ldemul_unrecognized_file (entry
))
1553 if (err
== bfd_error_file_ambiguously_recognized
)
1557 einfo (_("%B: file not recognized: %E\n"), entry
->the_bfd
);
1558 einfo (_("%B: matching formats:"), entry
->the_bfd
);
1559 for (p
= matching
; *p
!= NULL
; p
++)
1563 else if (err
!= bfd_error_file_not_recognized
1565 einfo (_("%F%B: file not recognized: %E\n"), entry
->the_bfd
);
1569 bfd_close (entry
->the_bfd
);
1570 entry
->the_bfd
= NULL
;
1572 /* Try to interpret the file as a linker script. */
1573 ldfile_open_command_file (entry
->filename
);
1577 save_ldlang_sysrooted_script
= ldlang_sysrooted_script
;
1578 ldlang_sysrooted_script
= entry
->sysrooted
;
1580 ldfile_assumed_script
= TRUE
;
1581 parser_input
= input_script
;
1583 ldfile_assumed_script
= FALSE
;
1585 ldlang_sysrooted_script
= save_ldlang_sysrooted_script
;
1591 if (ldemul_recognized_file (entry
))
1594 /* We don't call ldlang_add_file for an archive. Instead, the
1595 add_symbols entry point will call ldlang_add_file, via the
1596 add_archive_element callback, for each element of the archive
1598 switch (bfd_get_format (entry
->the_bfd
))
1604 ldlang_add_file (entry
);
1605 if (trace_files
|| trace_file_tries
)
1606 info_msg ("%I\n", entry
);
1610 if (entry
->whole_archive
)
1613 bfd_boolean loaded
= TRUE
;
1617 member
= bfd_openr_next_archived_file (entry
->the_bfd
, member
);
1622 if (! bfd_check_format (member
, bfd_object
))
1624 einfo (_("%F%B: member %B in archive is not an object\n"),
1625 entry
->the_bfd
, member
);
1629 if (! ((*link_info
.callbacks
->add_archive_element
)
1630 (&link_info
, member
, "--whole-archive")))
1633 if (! bfd_link_add_symbols (member
, &link_info
))
1635 einfo (_("%F%B: could not read symbols: %E\n"), member
);
1640 entry
->loaded
= loaded
;
1646 if (bfd_link_add_symbols (entry
->the_bfd
, &link_info
))
1647 entry
->loaded
= TRUE
;
1649 einfo (_("%F%B: could not read symbols: %E\n"), entry
->the_bfd
);
1651 return entry
->loaded
;
1654 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
1655 may be NULL, indicating that it is a wildcard. Separate
1656 lang_input_section statements are created for each part of the
1657 expansion; they are added after the wild statement S. OUTPUT is
1658 the output section. */
1661 wild (s
, target
, output
)
1662 lang_wild_statement_type
*s
;
1663 const char *target ATTRIBUTE_UNUSED
;
1664 lang_output_section_statement_type
*output
;
1666 struct wildcard_list
*sec
;
1668 walk_wild (s
, output_section_callback
, (PTR
) output
);
1670 for (sec
= s
->section_list
; sec
!= NULL
; sec
= sec
->next
)
1672 if (default_common_section
!= NULL
)
1674 if (sec
->spec
.name
!= NULL
&& strcmp (sec
->spec
.name
, "COMMON") == 0)
1676 /* Remember the section that common is going to in case we
1677 later get something which doesn't know where to put it. */
1678 default_common_section
= output
;
1683 /* Return TRUE iff target is the sought target. */
1686 get_target (target
, data
)
1687 const bfd_target
*target
;
1690 const char *sought
= (const char *) data
;
1692 return strcmp (target
->name
, sought
) == 0;
1695 /* Like strcpy() but convert to lower case as well. */
1704 while ((c
= *src
++) != 0)
1705 *dest
++ = TOLOWER (c
);
1710 /* Remove the first occurrence of needle (if any) in haystack
1714 strcut (haystack
, needle
)
1718 haystack
= strstr (haystack
, needle
);
1724 for (src
= haystack
+ strlen (needle
); *src
;)
1725 *haystack
++ = *src
++;
1731 /* Compare two target format name strings.
1732 Return a value indicating how "similar" they are. */
1735 name_compare (first
, second
)
1743 copy1
= xmalloc (strlen (first
) + 1);
1744 copy2
= xmalloc (strlen (second
) + 1);
1746 /* Convert the names to lower case. */
1747 stricpy (copy1
, first
);
1748 stricpy (copy2
, second
);
1750 /* Remove and endian strings from the name. */
1751 strcut (copy1
, "big");
1752 strcut (copy1
, "little");
1753 strcut (copy2
, "big");
1754 strcut (copy2
, "little");
1756 /* Return a value based on how many characters match,
1757 starting from the beginning. If both strings are
1758 the same then return 10 * their length. */
1759 for (result
= 0; copy1
[result
] == copy2
[result
]; result
++)
1760 if (copy1
[result
] == 0)
1772 /* Set by closest_target_match() below. */
1773 static const bfd_target
*winner
;
1775 /* Scan all the valid bfd targets looking for one that has the endianness
1776 requirement that was specified on the command line, and is the nearest
1777 match to the original output target. */
1780 closest_target_match (target
, data
)
1781 const bfd_target
*target
;
1784 const bfd_target
*original
= (const bfd_target
*) data
;
1786 if (command_line
.endian
== ENDIAN_BIG
1787 && target
->byteorder
!= BFD_ENDIAN_BIG
)
1790 if (command_line
.endian
== ENDIAN_LITTLE
1791 && target
->byteorder
!= BFD_ENDIAN_LITTLE
)
1794 /* Must be the same flavour. */
1795 if (target
->flavour
!= original
->flavour
)
1798 /* If we have not found a potential winner yet, then record this one. */
1805 /* Oh dear, we now have two potential candidates for a successful match.
1806 Compare their names and choose the better one. */
1807 if (name_compare (target
->name
, original
->name
)
1808 > name_compare (winner
->name
, original
->name
))
1811 /* Keep on searching until wqe have checked them all. */
1815 /* Return the BFD target format of the first input file. */
1818 get_first_input_target ()
1820 char *target
= NULL
;
1822 LANG_FOR_EACH_INPUT_STATEMENT (s
)
1824 if (s
->header
.type
== lang_input_statement_enum
1827 ldfile_open_file (s
);
1829 if (s
->the_bfd
!= NULL
1830 && bfd_check_format (s
->the_bfd
, bfd_object
))
1832 target
= bfd_get_target (s
->the_bfd
);
1844 lang_get_output_target ()
1848 /* Has the user told us which output format to use? */
1849 if (output_target
!= (char *) NULL
)
1850 return output_target
;
1852 /* No - has the current target been set to something other than
1854 if (current_target
!= default_target
)
1855 return current_target
;
1857 /* No - can we determine the format of the first input file? */
1858 target
= get_first_input_target ();
1862 /* Failed - use the default output target. */
1863 return default_target
;
1866 /* Open the output file. */
1874 output_target
= lang_get_output_target ();
1876 /* Has the user requested a particular endianness on the command
1878 if (command_line
.endian
!= ENDIAN_UNSET
)
1880 const bfd_target
*target
;
1881 enum bfd_endian desired_endian
;
1883 /* Get the chosen target. */
1884 target
= bfd_search_for_target (get_target
, (PTR
) output_target
);
1886 /* If the target is not supported, we cannot do anything. */
1889 if (command_line
.endian
== ENDIAN_BIG
)
1890 desired_endian
= BFD_ENDIAN_BIG
;
1892 desired_endian
= BFD_ENDIAN_LITTLE
;
1894 /* See if the target has the wrong endianness. This should
1895 not happen if the linker script has provided big and
1896 little endian alternatives, but some scrips don't do
1898 if (target
->byteorder
!= desired_endian
)
1900 /* If it does, then see if the target provides
1901 an alternative with the correct endianness. */
1902 if (target
->alternative_target
!= NULL
1903 && (target
->alternative_target
->byteorder
== desired_endian
))
1904 output_target
= target
->alternative_target
->name
;
1907 /* Try to find a target as similar as possible to
1908 the default target, but which has the desired
1909 endian characteristic. */
1910 (void) bfd_search_for_target (closest_target_match
,
1913 /* Oh dear - we could not find any targets that
1914 satisfy our requirements. */
1916 einfo (_("%P: warning: could not find any targets that match endianness requirement\n"));
1918 output_target
= winner
->name
;
1924 output
= bfd_openw (name
, output_target
);
1926 if (output
== (bfd
*) NULL
)
1928 if (bfd_get_error () == bfd_error_invalid_target
)
1929 einfo (_("%P%F: target %s not found\n"), output_target
);
1931 einfo (_("%P%F: cannot open output file %s: %E\n"), name
);
1934 delete_output_file_on_failure
= TRUE
;
1937 output
->flags
|= D_PAGED
;
1940 if (! bfd_set_format (output
, bfd_object
))
1941 einfo (_("%P%F:%s: can not make object file: %E\n"), name
);
1942 if (! bfd_set_arch_mach (output
,
1943 ldfile_output_architecture
,
1944 ldfile_output_machine
))
1945 einfo (_("%P%F:%s: can not set architecture: %E\n"), name
);
1947 link_info
.hash
= bfd_link_hash_table_create (output
);
1948 if (link_info
.hash
== (struct bfd_link_hash_table
*) NULL
)
1949 einfo (_("%P%F: can not create link hash table: %E\n"));
1951 bfd_set_gp_size (output
, g_switch_value
);
1956 ldlang_open_output (statement
)
1957 lang_statement_union_type
*statement
;
1959 switch (statement
->header
.type
)
1961 case lang_output_statement_enum
:
1962 ASSERT (output_bfd
== (bfd
*) NULL
);
1963 output_bfd
= open_output (statement
->output_statement
.name
);
1964 ldemul_set_output_arch ();
1965 if (config
.magic_demand_paged
&& !link_info
.relocateable
)
1966 output_bfd
->flags
|= D_PAGED
;
1968 output_bfd
->flags
&= ~D_PAGED
;
1969 if (config
.text_read_only
)
1970 output_bfd
->flags
|= WP_TEXT
;
1972 output_bfd
->flags
&= ~WP_TEXT
;
1973 if (link_info
.traditional_format
)
1974 output_bfd
->flags
|= BFD_TRADITIONAL_FORMAT
;
1976 output_bfd
->flags
&= ~BFD_TRADITIONAL_FORMAT
;
1979 case lang_target_statement_enum
:
1980 current_target
= statement
->target_statement
.target
;
1987 /* Open all the input files. */
1990 open_input_bfds (s
, force
)
1991 lang_statement_union_type
*s
;
1994 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->header
.next
)
1996 switch (s
->header
.type
)
1998 case lang_constructors_statement_enum
:
1999 open_input_bfds (constructor_list
.head
, force
);
2001 case lang_output_section_statement_enum
:
2002 open_input_bfds (s
->output_section_statement
.children
.head
, force
);
2004 case lang_wild_statement_enum
:
2005 /* Maybe we should load the file's symbols. */
2006 if (s
->wild_statement
.filename
2007 && ! wildcardp (s
->wild_statement
.filename
))
2008 (void) lookup_name (s
->wild_statement
.filename
);
2009 open_input_bfds (s
->wild_statement
.children
.head
, force
);
2011 case lang_group_statement_enum
:
2013 struct bfd_link_hash_entry
*undefs
;
2015 /* We must continually search the entries in the group
2016 until no new symbols are added to the list of undefined
2021 undefs
= link_info
.hash
->undefs_tail
;
2022 open_input_bfds (s
->group_statement
.children
.head
, TRUE
);
2024 while (undefs
!= link_info
.hash
->undefs_tail
);
2027 case lang_target_statement_enum
:
2028 current_target
= s
->target_statement
.target
;
2030 case lang_input_statement_enum
:
2031 if (s
->input_statement
.real
)
2033 lang_statement_list_type add
;
2035 s
->input_statement
.target
= current_target
;
2037 /* If we are being called from within a group, and this
2038 is an archive which has already been searched, then
2039 force it to be researched unless the whole archive
2040 has been loaded already. */
2042 && !s
->input_statement
.whole_archive
2043 && s
->input_statement
.loaded
2044 && bfd_check_format (s
->input_statement
.the_bfd
,
2046 s
->input_statement
.loaded
= FALSE
;
2048 lang_list_init (&add
);
2050 if (! load_symbols (&s
->input_statement
, &add
))
2051 config
.make_executable
= FALSE
;
2053 if (add
.head
!= NULL
)
2055 *add
.tail
= s
->header
.next
;
2056 s
->header
.next
= add
.head
;
2066 /* If there are [COMMONS] statements, put a wild one into the bss
2070 lang_reasonable_defaults ()
2073 lang_output_section_statement_lookup (".text");
2074 lang_output_section_statement_lookup (".data");
2076 default_common_section
= lang_output_section_statement_lookup (".bss");
2078 if (!placed_commons
)
2080 lang_wild_statement_type
*new =
2081 new_stat (lang_wild_statement
,
2082 &default_common_section
->children
);
2084 new->section_name
= "COMMON";
2085 new->filename
= (char *) NULL
;
2086 lang_list_init (&new->children
);
2091 /* Add the supplied name to the symbol table as an undefined reference.
2092 This is a two step process as the symbol table doesn't even exist at
2093 the time the ld command line is processed. First we put the name
2094 on a list, then, once the output file has been opened, transfer the
2095 name to the symbol table. */
2097 typedef struct bfd_sym_chain ldlang_undef_chain_list_type
;
2099 #define ldlang_undef_chain_list_head entry_symbol.next
2102 ldlang_add_undef (name
)
2103 const char *const name
;
2105 ldlang_undef_chain_list_type
*new =
2106 ((ldlang_undef_chain_list_type
*)
2107 stat_alloc (sizeof (ldlang_undef_chain_list_type
)));
2109 new->next
= ldlang_undef_chain_list_head
;
2110 ldlang_undef_chain_list_head
= new;
2112 new->name
= xstrdup (name
);
2114 if (output_bfd
!= NULL
)
2115 insert_undefined (new->name
);
2118 /* Insert NAME as undefined in the symbol table. */
2121 insert_undefined (name
)
2124 struct bfd_link_hash_entry
*h
;
2126 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, FALSE
, TRUE
);
2127 if (h
== (struct bfd_link_hash_entry
*) NULL
)
2128 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
2129 if (h
->type
== bfd_link_hash_new
)
2131 h
->type
= bfd_link_hash_undefined
;
2132 h
->u
.undef
.abfd
= NULL
;
2133 bfd_link_add_undef (link_info
.hash
, h
);
2137 /* Run through the list of undefineds created above and place them
2138 into the linker hash table as undefined symbols belonging to the
2142 lang_place_undefineds ()
2144 ldlang_undef_chain_list_type
*ptr
;
2146 for (ptr
= ldlang_undef_chain_list_head
;
2147 ptr
!= (ldlang_undef_chain_list_type
*) NULL
;
2150 insert_undefined (ptr
->name
);
2154 /* Open input files and attach to output sections. */
2157 map_input_to_output_sections (s
, target
, output_section_statement
)
2158 lang_statement_union_type
*s
;
2160 lang_output_section_statement_type
*output_section_statement
;
2162 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->header
.next
)
2164 switch (s
->header
.type
)
2166 case lang_wild_statement_enum
:
2167 wild (&s
->wild_statement
, target
, output_section_statement
);
2169 case lang_constructors_statement_enum
:
2170 map_input_to_output_sections (constructor_list
.head
,
2172 output_section_statement
);
2174 case lang_output_section_statement_enum
:
2175 map_input_to_output_sections (s
->output_section_statement
.children
.head
,
2177 &s
->output_section_statement
);
2179 case lang_output_statement_enum
:
2181 case lang_target_statement_enum
:
2182 target
= s
->target_statement
.target
;
2184 case lang_group_statement_enum
:
2185 map_input_to_output_sections (s
->group_statement
.children
.head
,
2187 output_section_statement
);
2189 case lang_fill_statement_enum
:
2190 case lang_input_section_enum
:
2191 case lang_object_symbols_statement_enum
:
2192 case lang_data_statement_enum
:
2193 case lang_reloc_statement_enum
:
2194 case lang_padding_statement_enum
:
2195 case lang_input_statement_enum
:
2196 if (output_section_statement
!= NULL
2197 && output_section_statement
->bfd_section
== NULL
)
2198 init_os (output_section_statement
);
2200 case lang_assignment_statement_enum
:
2201 if (output_section_statement
!= NULL
2202 && output_section_statement
->bfd_section
== NULL
)
2203 init_os (output_section_statement
);
2205 /* Make sure that any sections mentioned in the assignment
2207 exp_init_os (s
->assignment_statement
.exp
);
2209 case lang_afile_asection_pair_statement_enum
:
2212 case lang_address_statement_enum
:
2213 /* Mark the specified section with the supplied address. */
2215 lang_output_section_statement_type
*os
=
2216 lang_output_section_statement_lookup
2217 (s
->address_statement
.section_name
);
2219 if (os
->bfd_section
== NULL
)
2221 os
->addr_tree
= s
->address_statement
.address
;
2228 /* An output section might have been removed after its statement was
2229 added. For example, ldemul_before_allocation can remove dynamic
2230 sections if they turn out to be not needed. Clean them up here. */
2233 strip_excluded_output_sections ()
2235 lang_statement_union_type
*u
;
2237 for (u
= lang_output_section_statement
.head
;
2239 u
= u
->output_section_statement
.next
)
2241 lang_output_section_statement_type
*os
;
2244 os
= &u
->output_section_statement
;
2245 s
= os
->bfd_section
;
2246 if (s
!= NULL
&& (s
->flags
& SEC_EXCLUDE
) != 0)
2250 os
->bfd_section
= NULL
;
2252 for (p
= &output_bfd
->sections
; *p
; p
= &(*p
)->next
)
2255 bfd_section_list_remove (output_bfd
, p
);
2256 output_bfd
->section_count
--;
2264 print_output_section_statement (output_section_statement
)
2265 lang_output_section_statement_type
*output_section_statement
;
2267 asection
*section
= output_section_statement
->bfd_section
;
2270 if (output_section_statement
!= abs_output_section
)
2272 minfo ("\n%s", output_section_statement
->name
);
2274 if (section
!= NULL
)
2276 print_dot
= section
->vma
;
2278 len
= strlen (output_section_statement
->name
);
2279 if (len
>= SECTION_NAME_MAP_LENGTH
- 1)
2284 while (len
< SECTION_NAME_MAP_LENGTH
)
2290 minfo ("0x%V %W", section
->vma
, section
->_raw_size
);
2292 if (output_section_statement
->load_base
!= NULL
)
2296 addr
= exp_get_abs_int (output_section_statement
->load_base
, 0,
2297 "load base", lang_final_phase_enum
);
2298 minfo (_(" load address 0x%V"), addr
);
2305 print_statement_list (output_section_statement
->children
.head
,
2306 output_section_statement
);
2310 print_assignment (assignment
, output_section
)
2311 lang_assignment_statement_type
*assignment
;
2312 lang_output_section_statement_type
*output_section
;
2315 etree_value_type result
;
2317 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
2320 result
= exp_fold_tree (assignment
->exp
->assign
.src
, output_section
,
2321 lang_final_phase_enum
, print_dot
, &print_dot
);
2327 value
= result
.value
+ result
.section
->bfd_section
->vma
;
2328 dst
= assignment
->exp
->assign
.dst
;
2330 minfo ("0x%V", value
);
2331 if (dst
[0] == '.' && dst
[1] == 0)
2344 exp_print_tree (assignment
->exp
);
2350 print_input_statement (statm
)
2351 lang_input_statement_type
*statm
;
2353 if (statm
->filename
!= (char *) NULL
)
2355 fprintf (config
.map_file
, "LOAD %s\n", statm
->filename
);
2359 /* Print all symbols defined in a particular section. This is called
2360 via bfd_link_hash_traverse. */
2363 print_one_symbol (hash_entry
, ptr
)
2364 struct bfd_link_hash_entry
*hash_entry
;
2367 asection
*sec
= (asection
*) ptr
;
2369 if ((hash_entry
->type
== bfd_link_hash_defined
2370 || hash_entry
->type
== bfd_link_hash_defweak
)
2371 && sec
== hash_entry
->u
.def
.section
)
2375 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
2378 (hash_entry
->u
.def
.value
2379 + hash_entry
->u
.def
.section
->output_offset
2380 + hash_entry
->u
.def
.section
->output_section
->vma
));
2382 minfo (" %T\n", hash_entry
->root
.string
);
2388 /* Print information about an input section to the map file. */
2391 print_input_section (in
)
2392 lang_input_section_type
*in
;
2394 asection
*i
= in
->section
;
2395 bfd_size_type size
= i
->_cooked_size
!= 0 ? i
->_cooked_size
: i
->_raw_size
;
2396 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2397 ldfile_output_machine
);
2402 minfo ("%s", i
->name
);
2404 if (i
->output_section
!= NULL
)
2408 len
= 1 + strlen (i
->name
);
2409 if (len
>= SECTION_NAME_MAP_LENGTH
- 1)
2414 while (len
< SECTION_NAME_MAP_LENGTH
)
2420 minfo ("0x%V %W %B\n",
2421 i
->output_section
->vma
+ i
->output_offset
, size
/ opb
,
2424 if (i
->_cooked_size
!= 0 && i
->_cooked_size
!= i
->_raw_size
)
2426 len
= SECTION_NAME_MAP_LENGTH
+ 3;
2438 minfo (_("%W (size before relaxing)\n"), i
->_raw_size
);
2441 bfd_link_hash_traverse (link_info
.hash
, print_one_symbol
, (PTR
) i
);
2443 print_dot
= i
->output_section
->vma
+ i
->output_offset
+ size
/ opb
;
2449 print_fill_statement (fill
)
2450 lang_fill_statement_type
*fill
;
2454 fputs (" FILL mask 0x", config
.map_file
);
2455 for (p
= fill
->fill
->data
, size
= fill
->fill
->size
; size
!= 0; p
++, size
--)
2456 fprintf (config
.map_file
, "%02x", *p
);
2457 fputs ("\n", config
.map_file
);
2461 print_data_statement (data
)
2462 lang_data_statement_type
*data
;
2468 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2469 ldfile_output_machine
);
2471 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
2474 addr
= data
->output_vma
;
2475 if (data
->output_section
!= NULL
)
2476 addr
+= data
->output_section
->vma
;
2504 minfo ("0x%V %W %s 0x%v", addr
, size
, name
, data
->value
);
2506 if (data
->exp
->type
.node_class
!= etree_value
)
2509 exp_print_tree (data
->exp
);
2514 print_dot
= addr
+ size
/ opb
;
2518 /* Print an address statement. These are generated by options like
2522 print_address_statement (address
)
2523 lang_address_statement_type
*address
;
2525 minfo (_("Address of section %s set to "), address
->section_name
);
2526 exp_print_tree (address
->address
);
2530 /* Print a reloc statement. */
2533 print_reloc_statement (reloc
)
2534 lang_reloc_statement_type
*reloc
;
2539 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2540 ldfile_output_machine
);
2542 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
2545 addr
= reloc
->output_vma
;
2546 if (reloc
->output_section
!= NULL
)
2547 addr
+= reloc
->output_section
->vma
;
2549 size
= bfd_get_reloc_size (reloc
->howto
);
2551 minfo ("0x%V %W RELOC %s ", addr
, size
, reloc
->howto
->name
);
2553 if (reloc
->name
!= NULL
)
2554 minfo ("%s+", reloc
->name
);
2556 minfo ("%s+", reloc
->section
->name
);
2558 exp_print_tree (reloc
->addend_exp
);
2562 print_dot
= addr
+ size
/ opb
;
2566 print_padding_statement (s
)
2567 lang_padding_statement_type
*s
;
2571 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2572 ldfile_output_machine
);
2576 len
= sizeof " *fill*" - 1;
2577 while (len
< SECTION_NAME_MAP_LENGTH
)
2583 addr
= s
->output_offset
;
2584 if (s
->output_section
!= NULL
)
2585 addr
+= s
->output_section
->vma
;
2586 minfo ("0x%V %W ", addr
, s
->size
);
2588 if (s
->fill
->size
!= 0)
2592 for (p
= s
->fill
->data
, size
= s
->fill
->size
; size
!= 0; p
++, size
--)
2593 fprintf (config
.map_file
, "%02x", *p
);
2598 print_dot
= addr
+ s
->size
/ opb
;
2602 print_wild_statement (w
, os
)
2603 lang_wild_statement_type
*w
;
2604 lang_output_section_statement_type
*os
;
2606 struct wildcard_list
*sec
;
2610 if (w
->filenames_sorted
)
2612 if (w
->filename
!= NULL
)
2613 minfo ("%s", w
->filename
);
2616 if (w
->filenames_sorted
)
2620 for (sec
= w
->section_list
; sec
; sec
= sec
->next
)
2622 if (sec
->spec
.sorted
)
2624 if (sec
->spec
.exclude_name_list
!= NULL
)
2627 minfo ("EXCLUDE_FILE(%s", sec
->spec
.exclude_name_list
->name
);
2628 for (tmp
= sec
->spec
.exclude_name_list
->next
; tmp
; tmp
= tmp
->next
)
2629 minfo (" %s", tmp
->name
);
2632 if (sec
->spec
.name
!= NULL
)
2633 minfo ("%s", sec
->spec
.name
);
2636 if (sec
->spec
.sorted
)
2645 print_statement_list (w
->children
.head
, os
);
2648 /* Print a group statement. */
2652 lang_group_statement_type
*s
;
2653 lang_output_section_statement_type
*os
;
2655 fprintf (config
.map_file
, "START GROUP\n");
2656 print_statement_list (s
->children
.head
, os
);
2657 fprintf (config
.map_file
, "END GROUP\n");
2660 /* Print the list of statements in S.
2661 This can be called for any statement type. */
2664 print_statement_list (s
, os
)
2665 lang_statement_union_type
*s
;
2666 lang_output_section_statement_type
*os
;
2670 print_statement (s
, os
);
2675 /* Print the first statement in statement list S.
2676 This can be called for any statement type. */
2679 print_statement (s
, os
)
2680 lang_statement_union_type
*s
;
2681 lang_output_section_statement_type
*os
;
2683 switch (s
->header
.type
)
2686 fprintf (config
.map_file
, _("Fail with %d\n"), s
->header
.type
);
2689 case lang_constructors_statement_enum
:
2690 if (constructor_list
.head
!= NULL
)
2692 if (constructors_sorted
)
2693 minfo (" SORT (CONSTRUCTORS)\n");
2695 minfo (" CONSTRUCTORS\n");
2696 print_statement_list (constructor_list
.head
, os
);
2699 case lang_wild_statement_enum
:
2700 print_wild_statement (&s
->wild_statement
, os
);
2702 case lang_address_statement_enum
:
2703 print_address_statement (&s
->address_statement
);
2705 case lang_object_symbols_statement_enum
:
2706 minfo (" CREATE_OBJECT_SYMBOLS\n");
2708 case lang_fill_statement_enum
:
2709 print_fill_statement (&s
->fill_statement
);
2711 case lang_data_statement_enum
:
2712 print_data_statement (&s
->data_statement
);
2714 case lang_reloc_statement_enum
:
2715 print_reloc_statement (&s
->reloc_statement
);
2717 case lang_input_section_enum
:
2718 print_input_section (&s
->input_section
);
2720 case lang_padding_statement_enum
:
2721 print_padding_statement (&s
->padding_statement
);
2723 case lang_output_section_statement_enum
:
2724 print_output_section_statement (&s
->output_section_statement
);
2726 case lang_assignment_statement_enum
:
2727 print_assignment (&s
->assignment_statement
, os
);
2729 case lang_target_statement_enum
:
2730 fprintf (config
.map_file
, "TARGET(%s)\n", s
->target_statement
.target
);
2732 case lang_output_statement_enum
:
2733 minfo ("OUTPUT(%s", s
->output_statement
.name
);
2734 if (output_target
!= NULL
)
2735 minfo (" %s", output_target
);
2738 case lang_input_statement_enum
:
2739 print_input_statement (&s
->input_statement
);
2741 case lang_group_statement_enum
:
2742 print_group (&s
->group_statement
, os
);
2744 case lang_afile_asection_pair_statement_enum
:
2753 print_statement_list (statement_list
.head
, abs_output_section
);
2756 /* Print the first N statements in statement list S to STDERR.
2757 If N == 0, nothing is printed.
2758 If N < 0, the entire list is printed.
2759 Intended to be called from GDB. */
2762 dprint_statement (s
, n
)
2763 lang_statement_union_type
*s
;
2766 FILE *map_save
= config
.map_file
;
2768 config
.map_file
= stderr
;
2771 print_statement_list (s
, abs_output_section
);
2774 while (s
&& --n
>= 0)
2776 print_statement (s
, abs_output_section
);
2781 config
.map_file
= map_save
;
2785 insert_pad (ptr
, fill
, alignment_needed
, output_section
, dot
)
2786 lang_statement_union_type
**ptr
;
2788 unsigned int alignment_needed
;
2789 asection
*output_section
;
2792 static fill_type zero_fill
= { 1, { 0 } };
2793 lang_statement_union_type
*pad
;
2795 pad
= ((lang_statement_union_type
*)
2796 ((char *) ptr
- offsetof (lang_statement_union_type
, header
.next
)));
2797 if (ptr
!= &statement_list
.head
2798 && pad
->header
.type
== lang_padding_statement_enum
2799 && pad
->padding_statement
.output_section
== output_section
)
2801 /* Use the existing pad statement. The above test on output
2802 section is probably redundant, but it doesn't hurt to check. */
2806 /* Make a new padding statement, linked into existing chain. */
2807 pad
= ((lang_statement_union_type
*)
2808 stat_alloc (sizeof (lang_padding_statement_type
)));
2809 pad
->header
.next
= *ptr
;
2811 pad
->header
.type
= lang_padding_statement_enum
;
2812 pad
->padding_statement
.output_section
= output_section
;
2813 if (fill
== (fill_type
*) 0)
2815 pad
->padding_statement
.fill
= fill
;
2817 pad
->padding_statement
.output_offset
= dot
- output_section
->vma
;
2818 pad
->padding_statement
.size
= alignment_needed
;
2819 output_section
->_raw_size
+= alignment_needed
;
2822 /* Work out how much this section will move the dot point. */
2825 size_input_section (this_ptr
, output_section_statement
, fill
, dot
)
2826 lang_statement_union_type
**this_ptr
;
2827 lang_output_section_statement_type
*output_section_statement
;
2831 lang_input_section_type
*is
= &((*this_ptr
)->input_section
);
2832 asection
*i
= is
->section
;
2834 if (!is
->ifile
->just_syms_flag
)
2836 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2837 ldfile_output_machine
);
2838 unsigned int alignment_needed
;
2841 /* Align this section first to the input sections requirement,
2842 then to the output section's requirement. If this alignment
2843 is greater than any seen before, then record it too. Perform
2844 the alignment by inserting a magic 'padding' statement. */
2846 if (output_section_statement
->subsection_alignment
!= -1)
2847 i
->alignment_power
= output_section_statement
->subsection_alignment
;
2849 o
= output_section_statement
->bfd_section
;
2850 if (o
->alignment_power
< i
->alignment_power
)
2851 o
->alignment_power
= i
->alignment_power
;
2853 alignment_needed
= align_power (dot
, i
->alignment_power
) - dot
;
2855 if (alignment_needed
!= 0)
2857 insert_pad (this_ptr
, fill
, alignment_needed
* opb
, o
, dot
);
2858 dot
+= alignment_needed
;
2861 /* Remember where in the output section this input section goes. */
2863 i
->output_offset
= dot
- o
->vma
;
2865 /* Mark how big the output section must be to contain this now. */
2866 if (i
->_cooked_size
!= 0)
2867 dot
+= i
->_cooked_size
/ opb
;
2869 dot
+= i
->_raw_size
/ opb
;
2870 o
->_raw_size
= (dot
- o
->vma
) * opb
;
2874 i
->output_offset
= i
->vma
- output_section_statement
->bfd_section
->vma
;
2880 #define IGNORE_SECTION(bfd, s) \
2881 (((bfd_get_section_flags (bfd, s) & (SEC_ALLOC | SEC_LOAD)) \
2882 != (SEC_ALLOC | SEC_LOAD)) \
2883 || bfd_section_size (bfd, s) == 0)
2885 /* Check to see if any allocated sections overlap with other allocated
2886 sections. This can happen when the linker script specifically specifies
2887 the output section addresses of the two sections. */
2890 lang_check_section_addresses ()
2893 unsigned opb
= bfd_octets_per_byte (output_bfd
);
2895 /* Scan all sections in the output list. */
2896 for (s
= output_bfd
->sections
; s
!= NULL
; s
= s
->next
)
2900 /* Ignore sections which are not loaded or which have no contents. */
2901 if (IGNORE_SECTION (output_bfd
, s
))
2904 /* Once we reach section 's' stop our seach. This prevents two
2905 warning messages from being produced, one for 'section A overlaps
2906 section B' and one for 'section B overlaps section A'. */
2907 for (os
= output_bfd
->sections
; os
!= s
; os
= os
->next
)
2914 /* Only consider loadable sections with real contents. */
2915 if (IGNORE_SECTION (output_bfd
, os
))
2918 /* We must check the sections' LMA addresses not their
2919 VMA addresses because overlay sections can have
2920 overlapping VMAs but they must have distinct LMAs. */
2921 s_start
= bfd_section_lma (output_bfd
, s
);
2922 os_start
= bfd_section_lma (output_bfd
, os
);
2923 s_end
= s_start
+ bfd_section_size (output_bfd
, s
) / opb
- 1;
2924 os_end
= os_start
+ bfd_section_size (output_bfd
, os
) / opb
- 1;
2926 /* Look for an overlap. */
2927 if ((s_end
< os_start
) || (s_start
> os_end
))
2931 _("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
2932 s
->name
, s_start
, s_end
, os
->name
, os_start
, os_end
);
2934 /* Once we have found one overlap for this section,
2935 stop looking for others. */
2941 /* Make sure the new address is within the region. We explicitly permit the
2942 current address to be at the exact end of the region when the address is
2943 non-zero, in case the region is at the end of addressable memory and the
2944 calculation wraps around. */
2947 os_region_check (os
, region
, tree
, base
)
2948 lang_output_section_statement_type
*os
;
2949 struct memory_region_struct
*region
;
2953 if ((region
->current
< region
->origin
2954 || (region
->current
- region
->origin
> region
->length
))
2955 && ((region
->current
!= region
->origin
+ region
->length
)
2958 if (tree
!= (etree_type
*) NULL
)
2960 einfo (_("%X%P: address 0x%v of %B section %s is not within region %s\n"),
2962 os
->bfd_section
->owner
,
2963 os
->bfd_section
->name
,
2968 einfo (_("%X%P: region %s is full (%B section %s)\n"),
2970 os
->bfd_section
->owner
,
2971 os
->bfd_section
->name
);
2973 /* Reset the region pointer. */
2974 region
->current
= region
->origin
;
2978 /* Set the sizes for all the output sections. */
2981 lang_size_sections_1 (s
, output_section_statement
, prev
, fill
, dot
, relax
,
2983 lang_statement_union_type
*s
;
2984 lang_output_section_statement_type
*output_section_statement
;
2985 lang_statement_union_type
**prev
;
2989 bfd_boolean check_regions
;
2991 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2992 ldfile_output_machine
);
2994 /* Size up the sections from their constituent parts. */
2995 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->header
.next
)
2997 switch (s
->header
.type
)
2999 case lang_output_section_statement_enum
:
3002 lang_output_section_statement_type
*os
;
3004 os
= &s
->output_section_statement
;
3005 if (os
->bfd_section
== NULL
)
3006 /* This section was never actually created. */
3009 /* If this is a COFF shared library section, use the size and
3010 address from the input section. FIXME: This is COFF
3011 specific; it would be cleaner if there were some other way
3012 to do this, but nothing simple comes to mind. */
3013 if ((os
->bfd_section
->flags
& SEC_COFF_SHARED_LIBRARY
) != 0)
3017 if (os
->children
.head
== NULL
3018 || os
->children
.head
->header
.next
!= NULL
3019 || os
->children
.head
->header
.type
!= lang_input_section_enum
)
3020 einfo (_("%P%X: Internal error on COFF shared library section %s\n"),
3023 input
= os
->children
.head
->input_section
.section
;
3024 bfd_set_section_vma (os
->bfd_section
->owner
,
3026 bfd_section_vma (input
->owner
, input
));
3027 os
->bfd_section
->_raw_size
= input
->_raw_size
;
3031 if (bfd_is_abs_section (os
->bfd_section
))
3033 /* No matter what happens, an abs section starts at zero. */
3034 ASSERT (os
->bfd_section
->vma
== 0);
3038 if (os
->addr_tree
== (etree_type
*) NULL
)
3040 /* No address specified for this section, get one
3041 from the region specification. */
3042 if (os
->region
== (lang_memory_region_type
*) NULL
3043 || (((bfd_get_section_flags (output_bfd
, os
->bfd_section
)
3044 & (SEC_ALLOC
| SEC_LOAD
)) != 0)
3045 && os
->region
->name
[0] == '*'
3046 && strcmp (os
->region
->name
, "*default*") == 0))
3048 os
->region
= lang_memory_default (os
->bfd_section
);
3051 /* If a loadable section is using the default memory
3052 region, and some non default memory regions were
3053 defined, issue a warning. */
3054 if ((bfd_get_section_flags (output_bfd
, os
->bfd_section
)
3055 & (SEC_ALLOC
| SEC_LOAD
)) != 0
3056 && (bfd_get_section_flags (output_bfd
, os
->bfd_section
)
3057 & SEC_NEVER_LOAD
) == 0
3058 && ! link_info
.relocateable
3060 && strcmp (os
->region
->name
, "*default*") == 0
3061 && lang_memory_region_list
!= NULL
3062 && (strcmp (lang_memory_region_list
->name
,
3064 || lang_memory_region_list
->next
!= NULL
))
3065 einfo (_("%P: warning: no memory region specified for section `%s'\n"),
3066 bfd_get_section_name (output_bfd
,
3069 dot
= os
->region
->current
;
3071 if (os
->section_alignment
== -1)
3076 dot
= align_power (dot
,
3077 os
->bfd_section
->alignment_power
);
3079 if (dot
!= olddot
&& config
.warn_section_align
)
3080 einfo (_("%P: warning: changing start of section %s by %u bytes\n"),
3081 os
->name
, (unsigned int) (dot
- olddot
));
3088 r
= exp_fold_tree (os
->addr_tree
,
3090 lang_allocating_phase_enum
,
3093 einfo (_("%F%S: non constant address expression for section %s\n"),
3096 dot
= r
.value
+ r
.section
->bfd_section
->vma
;
3099 /* The section starts here.
3100 First, align to what the section needs. */
3102 if (os
->section_alignment
!= -1)
3103 dot
= align_power (dot
, os
->section_alignment
);
3105 bfd_set_section_vma (0, os
->bfd_section
, dot
);
3107 os
->bfd_section
->output_offset
= 0;
3110 lang_size_sections_1 (os
->children
.head
, os
, &os
->children
.head
,
3111 os
->fill
, dot
, relax
, check_regions
);
3113 /* Put the section within the requested block size, or
3114 align at the block boundary. */
3115 after
= align_n (os
->bfd_section
->vma
3116 + os
->bfd_section
->_raw_size
/ opb
,
3117 (bfd_vma
) os
->block_value
);
3119 if (bfd_is_abs_section (os
->bfd_section
))
3120 ASSERT (after
== os
->bfd_section
->vma
);
3121 else if ((os
->bfd_section
->flags
& SEC_HAS_CONTENTS
) == 0
3122 && (os
->bfd_section
->flags
& SEC_THREAD_LOCAL
)
3123 && ! link_info
.relocateable
)
3124 os
->bfd_section
->_raw_size
= 0;
3126 os
->bfd_section
->_raw_size
=
3127 (after
- os
->bfd_section
->vma
) * opb
;
3129 dot
= os
->bfd_section
->vma
+ os
->bfd_section
->_raw_size
/ opb
;
3130 os
->processed
= TRUE
;
3132 if (os
->update_dot_tree
!= 0)
3133 exp_fold_tree (os
->update_dot_tree
, abs_output_section
,
3134 lang_allocating_phase_enum
, dot
, &dot
);
3136 /* Update dot in the region ?
3137 We only do this if the section is going to be allocated,
3138 since unallocated sections do not contribute to the region's
3139 overall size in memory.
3141 If the SEC_NEVER_LOAD bit is not set, it will affect the
3142 addresses of sections after it. We have to update
3144 if (os
->region
!= (lang_memory_region_type
*) NULL
3145 && ((bfd_get_section_flags (output_bfd
, os
->bfd_section
)
3146 & SEC_NEVER_LOAD
) == 0
3147 || (bfd_get_section_flags (output_bfd
, os
->bfd_section
)
3148 & (SEC_ALLOC
| SEC_LOAD
))))
3150 os
->region
->current
= dot
;
3153 /* Make sure the new address is within the region. */
3154 os_region_check (os
, os
->region
, os
->addr_tree
,
3155 os
->bfd_section
->vma
);
3157 /* If there's no load address specified, use the run
3158 region as the load region. */
3159 if (os
->lma_region
== NULL
&& os
->load_base
== NULL
)
3160 os
->lma_region
= os
->region
;
3162 if (os
->lma_region
!= NULL
&& os
->lma_region
!= os
->region
)
3164 /* Set load_base, which will be handled later. */
3165 os
->load_base
= exp_intop (os
->lma_region
->current
);
3166 os
->lma_region
->current
+=
3167 os
->bfd_section
->_raw_size
/ opb
;
3169 os_region_check (os
, os
->lma_region
, NULL
,
3170 os
->bfd_section
->lma
);
3176 case lang_constructors_statement_enum
:
3177 dot
= lang_size_sections_1 (constructor_list
.head
,
3178 output_section_statement
,
3179 &s
->wild_statement
.children
.head
,
3180 fill
, dot
, relax
, check_regions
);
3183 case lang_data_statement_enum
:
3185 unsigned int size
= 0;
3187 s
->data_statement
.output_vma
=
3188 dot
- output_section_statement
->bfd_section
->vma
;
3189 s
->data_statement
.output_section
=
3190 output_section_statement
->bfd_section
;
3192 switch (s
->data_statement
.type
)
3213 output_section_statement
->bfd_section
->_raw_size
+= size
;
3214 /* The output section gets contents, and then we inspect for
3215 any flags set in the input script which override any ALLOC. */
3216 output_section_statement
->bfd_section
->flags
|= SEC_HAS_CONTENTS
;
3217 if (!(output_section_statement
->flags
& SEC_NEVER_LOAD
))
3219 output_section_statement
->bfd_section
->flags
|=
3220 SEC_ALLOC
| SEC_LOAD
;
3225 case lang_reloc_statement_enum
:
3229 s
->reloc_statement
.output_vma
=
3230 dot
- output_section_statement
->bfd_section
->vma
;
3231 s
->reloc_statement
.output_section
=
3232 output_section_statement
->bfd_section
;
3233 size
= bfd_get_reloc_size (s
->reloc_statement
.howto
);
3235 output_section_statement
->bfd_section
->_raw_size
+= size
;
3239 case lang_wild_statement_enum
:
3241 dot
= lang_size_sections_1 (s
->wild_statement
.children
.head
,
3242 output_section_statement
,
3243 &s
->wild_statement
.children
.head
,
3244 fill
, dot
, relax
, check_regions
);
3248 case lang_object_symbols_statement_enum
:
3249 link_info
.create_object_symbols_section
=
3250 output_section_statement
->bfd_section
;
3252 case lang_output_statement_enum
:
3253 case lang_target_statement_enum
:
3255 case lang_input_section_enum
:
3259 i
= (*prev
)->input_section
.section
;
3262 if (i
->_cooked_size
== 0)
3263 i
->_cooked_size
= i
->_raw_size
;
3269 if (! bfd_relax_section (i
->owner
, i
, &link_info
, &again
))
3270 einfo (_("%P%F: can't relax section: %E\n"));
3274 dot
= size_input_section (prev
, output_section_statement
,
3275 output_section_statement
->fill
, dot
);
3278 case lang_input_statement_enum
:
3280 case lang_fill_statement_enum
:
3281 s
->fill_statement
.output_section
=
3282 output_section_statement
->bfd_section
;
3284 fill
= s
->fill_statement
.fill
;
3286 case lang_assignment_statement_enum
:
3288 bfd_vma newdot
= dot
;
3290 exp_fold_tree (s
->assignment_statement
.exp
,
3291 output_section_statement
,
3292 lang_allocating_phase_enum
,
3298 if (output_section_statement
== abs_output_section
)
3300 /* If we don't have an output section, then just adjust
3301 the default memory address. */
3302 lang_memory_region_lookup ("*default*")->current
= newdot
;
3306 /* Insert a pad after this statement. We can't
3307 put the pad before when relaxing, in case the
3308 assignment references dot. */
3309 insert_pad (&s
->header
.next
, fill
, (newdot
- dot
) * opb
,
3310 output_section_statement
->bfd_section
, dot
);
3312 /* Don't neuter the pad below when relaxing. */
3321 case lang_padding_statement_enum
:
3322 /* If this is the first time lang_size_sections is called,
3323 we won't have any padding statements. If this is the
3324 second or later passes when relaxing, we should allow
3325 padding to shrink. If padding is needed on this pass, it
3326 will be added back in. */
3327 s
->padding_statement
.size
= 0;
3329 /* Make sure output_offset is valid. If relaxation shrinks
3330 the section and this pad isn't needed, it's possible to
3331 have output_offset larger than the final size of the
3332 section. bfd_set_section_contents will complain even for
3333 a pad size of zero. */
3334 s
->padding_statement
.output_offset
3335 = dot
- output_section_statement
->bfd_section
->vma
;
3338 case lang_group_statement_enum
:
3339 dot
= lang_size_sections_1 (s
->group_statement
.children
.head
,
3340 output_section_statement
,
3341 &s
->group_statement
.children
.head
,
3342 fill
, dot
, relax
, check_regions
);
3349 /* We can only get here when relaxing is turned on. */
3350 case lang_address_statement_enum
:
3353 prev
= &s
->header
.next
;
3359 lang_size_sections (s
, output_section_statement
, prev
, fill
, dot
, relax
,
3361 lang_statement_union_type
*s
;
3362 lang_output_section_statement_type
*output_section_statement
;
3363 lang_statement_union_type
**prev
;
3367 bfd_boolean check_regions
;
3371 exp_data_seg
.phase
= exp_dataseg_none
;
3372 result
= lang_size_sections_1 (s
, output_section_statement
, prev
, fill
,
3373 dot
, relax
, check_regions
);
3374 if (exp_data_seg
.phase
== exp_dataseg_end_seen
)
3376 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
3377 a page could be saved in the data segment. */
3378 bfd_vma first
, last
;
3380 first
= -exp_data_seg
.base
& (exp_data_seg
.pagesize
- 1);
3381 last
= exp_data_seg
.end
& (exp_data_seg
.pagesize
- 1);
3383 && ((exp_data_seg
.base
& ~(exp_data_seg
.pagesize
- 1))
3384 != (exp_data_seg
.end
& ~(exp_data_seg
.pagesize
- 1)))
3385 && first
+ last
<= exp_data_seg
.pagesize
)
3387 exp_data_seg
.phase
= exp_dataseg_adjust
;
3388 result
= lang_size_sections_1 (s
, output_section_statement
, prev
,
3389 fill
, dot
, relax
, check_regions
);
3397 lang_do_assignments (s
, output_section_statement
, fill
, dot
)
3398 lang_statement_union_type
*s
;
3399 lang_output_section_statement_type
*output_section_statement
;
3403 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
3404 ldfile_output_machine
);
3406 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->header
.next
)
3408 switch (s
->header
.type
)
3410 case lang_constructors_statement_enum
:
3411 dot
= lang_do_assignments (constructor_list
.head
,
3412 output_section_statement
,
3417 case lang_output_section_statement_enum
:
3419 lang_output_section_statement_type
*os
;
3421 os
= &(s
->output_section_statement
);
3422 if (os
->bfd_section
!= NULL
)
3424 dot
= os
->bfd_section
->vma
;
3425 (void) lang_do_assignments (os
->children
.head
, os
,
3427 dot
= os
->bfd_section
->vma
+ os
->bfd_section
->_raw_size
/ opb
;
3432 /* If nothing has been placed into the output section then
3433 it won't have a bfd_section. */
3434 if (os
->bfd_section
)
3436 os
->bfd_section
->lma
3437 = exp_get_abs_int (os
->load_base
, 0, "load base",
3438 lang_final_phase_enum
);
3443 case lang_wild_statement_enum
:
3445 dot
= lang_do_assignments (s
->wild_statement
.children
.head
,
3446 output_section_statement
,
3451 case lang_object_symbols_statement_enum
:
3452 case lang_output_statement_enum
:
3453 case lang_target_statement_enum
:
3455 case lang_common_statement_enum
:
3458 case lang_data_statement_enum
:
3460 etree_value_type value
;
3462 value
= exp_fold_tree (s
->data_statement
.exp
,
3464 lang_final_phase_enum
, dot
, &dot
);
3465 s
->data_statement
.value
= value
.value
;
3467 einfo (_("%F%P: invalid data statement\n"));
3471 switch (s
->data_statement
.type
)
3495 case lang_reloc_statement_enum
:
3497 etree_value_type value
;
3499 value
= exp_fold_tree (s
->reloc_statement
.addend_exp
,
3501 lang_final_phase_enum
, dot
, &dot
);
3502 s
->reloc_statement
.addend_value
= value
.value
;
3504 einfo (_("%F%P: invalid reloc statement\n"));
3506 dot
+= bfd_get_reloc_size (s
->reloc_statement
.howto
) / opb
;
3509 case lang_input_section_enum
:
3511 asection
*in
= s
->input_section
.section
;
3513 if (in
->_cooked_size
!= 0)
3514 dot
+= in
->_cooked_size
/ opb
;
3516 dot
+= in
->_raw_size
/ opb
;
3520 case lang_input_statement_enum
:
3522 case lang_fill_statement_enum
:
3523 fill
= s
->fill_statement
.fill
;
3525 case lang_assignment_statement_enum
:
3527 exp_fold_tree (s
->assignment_statement
.exp
,
3528 output_section_statement
,
3529 lang_final_phase_enum
,
3535 case lang_padding_statement_enum
:
3536 dot
+= s
->padding_statement
.size
/ opb
;
3539 case lang_group_statement_enum
:
3540 dot
= lang_do_assignments (s
->group_statement
.children
.head
,
3541 output_section_statement
,
3549 case lang_address_statement_enum
:
3557 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
3558 operator .startof. (section_name), it produces an undefined symbol
3559 .startof.section_name. Similarly, when it sees
3560 .sizeof. (section_name), it produces an undefined symbol
3561 .sizeof.section_name. For all the output sections, we look for
3562 such symbols, and set them to the correct value. */
3569 if (link_info
.relocateable
)
3572 for (s
= output_bfd
->sections
; s
!= NULL
; s
= s
->next
)
3574 const char *secname
;
3576 struct bfd_link_hash_entry
*h
;
3578 secname
= bfd_get_section_name (output_bfd
, s
);
3579 buf
= xmalloc (10 + strlen (secname
));
3581 sprintf (buf
, ".startof.%s", secname
);
3582 h
= bfd_link_hash_lookup (link_info
.hash
, buf
, FALSE
, FALSE
, TRUE
);
3583 if (h
!= NULL
&& h
->type
== bfd_link_hash_undefined
)
3585 h
->type
= bfd_link_hash_defined
;
3586 h
->u
.def
.value
= bfd_get_section_vma (output_bfd
, s
);
3587 h
->u
.def
.section
= bfd_abs_section_ptr
;
3590 sprintf (buf
, ".sizeof.%s", secname
);
3591 h
= bfd_link_hash_lookup (link_info
.hash
, buf
, FALSE
, FALSE
, TRUE
);
3592 if (h
!= NULL
&& h
->type
== bfd_link_hash_undefined
)
3596 opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
3597 ldfile_output_machine
);
3598 h
->type
= bfd_link_hash_defined
;
3599 if (s
->_cooked_size
!= 0)
3600 h
->u
.def
.value
= s
->_cooked_size
/ opb
;
3602 h
->u
.def
.value
= s
->_raw_size
/ opb
;
3603 h
->u
.def
.section
= bfd_abs_section_ptr
;
3613 struct bfd_link_hash_entry
*h
;
3616 if (link_info
.relocateable
|| link_info
.shared
)
3621 if (entry_symbol
.name
== (const char *) NULL
)
3623 /* No entry has been specified. Look for start, but don't warn
3624 if we don't find it. */
3625 entry_symbol
.name
= "start";
3629 h
= bfd_link_hash_lookup (link_info
.hash
, entry_symbol
.name
,
3630 FALSE
, FALSE
, TRUE
);
3631 if (h
!= (struct bfd_link_hash_entry
*) NULL
3632 && (h
->type
== bfd_link_hash_defined
3633 || h
->type
== bfd_link_hash_defweak
)
3634 && h
->u
.def
.section
->output_section
!= NULL
)
3638 val
= (h
->u
.def
.value
3639 + bfd_get_section_vma (output_bfd
,
3640 h
->u
.def
.section
->output_section
)
3641 + h
->u
.def
.section
->output_offset
);
3642 if (! bfd_set_start_address (output_bfd
, val
))
3643 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol
.name
);
3650 /* We couldn't find the entry symbol. Try parsing it as a
3652 val
= bfd_scan_vma (entry_symbol
.name
, &send
, 0);
3655 if (! bfd_set_start_address (output_bfd
, val
))
3656 einfo (_("%P%F: can't set start address\n"));
3662 /* Can't find the entry symbol, and it's not a number. Use
3663 the first address in the text section. */
3664 ts
= bfd_get_section_by_name (output_bfd
, entry_section
);
3665 if (ts
!= (asection
*) NULL
)
3668 einfo (_("%P: warning: cannot find entry symbol %s; defaulting to %V\n"),
3670 bfd_get_section_vma (output_bfd
, ts
));
3671 if (! bfd_set_start_address (output_bfd
,
3672 bfd_get_section_vma (output_bfd
,
3674 einfo (_("%P%F: can't set start address\n"));
3679 einfo (_("%P: warning: cannot find entry symbol %s; not setting start address\n"),
3686 /* This is a small function used when we want to ignore errors from
3690 #ifdef ANSI_PROTOTYPES
3691 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED
, ...)
3693 ignore_bfd_errors (s
)
3694 const char *s ATTRIBUTE_UNUSED
;
3697 /* Don't do anything. */
3700 /* Check that the architecture of all the input files is compatible
3701 with the output file. Also call the backend to let it do any
3702 other checking that is needed. */
3707 lang_statement_union_type
*file
;
3709 const bfd_arch_info_type
*compatible
;
3711 for (file
= file_chain
.head
;
3712 file
!= (lang_statement_union_type
*) NULL
;
3713 file
= file
->input_statement
.next
)
3715 input_bfd
= file
->input_statement
.the_bfd
;
3716 compatible
= bfd_arch_get_compatible (input_bfd
, output_bfd
,
3717 command_line
.accept_unknown_input_arch
);
3719 /* In general it is not possible to perform a relocatable
3720 link between differing object formats when the input
3721 file has relocations, because the relocations in the
3722 input format may not have equivalent representations in
3723 the output format (and besides BFD does not translate
3724 relocs for other link purposes than a final link). */
3725 if ((link_info
.relocateable
|| link_info
.emitrelocations
)
3726 && (compatible
== NULL
3727 || bfd_get_flavour (input_bfd
) != bfd_get_flavour (output_bfd
))
3728 && (bfd_get_file_flags (input_bfd
) & HAS_RELOC
) != 0)
3730 einfo (_("%P%F: Relocatable linking with relocations from format %s (%B) to format %s (%B) is not supported\n"),
3731 bfd_get_target (input_bfd
), input_bfd
,
3732 bfd_get_target (output_bfd
), output_bfd
);
3733 /* einfo with %F exits. */
3736 if (compatible
== NULL
)
3738 if (command_line
.warn_mismatch
)
3739 einfo (_("%P: warning: %s architecture of input file `%B' is incompatible with %s output\n"),
3740 bfd_printable_name (input_bfd
), input_bfd
,
3741 bfd_printable_name (output_bfd
));
3743 else if (bfd_count_sections (input_bfd
))
3745 /* If the input bfd has no contents, it shouldn't set the
3746 private data of the output bfd. */
3748 bfd_error_handler_type pfn
= NULL
;
3750 /* If we aren't supposed to warn about mismatched input
3751 files, temporarily set the BFD error handler to a
3752 function which will do nothing. We still want to call
3753 bfd_merge_private_bfd_data, since it may set up
3754 information which is needed in the output file. */
3755 if (! command_line
.warn_mismatch
)
3756 pfn
= bfd_set_error_handler (ignore_bfd_errors
);
3757 if (! bfd_merge_private_bfd_data (input_bfd
, output_bfd
))
3759 if (command_line
.warn_mismatch
)
3760 einfo (_("%E%X: failed to merge target specific data of file %B\n"),
3763 if (! command_line
.warn_mismatch
)
3764 bfd_set_error_handler (pfn
);
3769 /* Look through all the global common symbols and attach them to the
3770 correct section. The -sort-common command line switch may be used
3771 to roughly sort the entries by size. */
3776 if (command_line
.inhibit_common_definition
)
3778 if (link_info
.relocateable
3779 && ! command_line
.force_common_definition
)
3782 if (! config
.sort_common
)
3783 bfd_link_hash_traverse (link_info
.hash
, lang_one_common
, (PTR
) NULL
);
3788 for (power
= 4; power
>= 0; power
--)
3789 bfd_link_hash_traverse (link_info
.hash
, lang_one_common
,
3794 /* Place one common symbol in the correct section. */
3797 lang_one_common (h
, info
)
3798 struct bfd_link_hash_entry
*h
;
3801 unsigned int power_of_two
;
3804 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
3805 ldfile_output_machine
);
3807 if (h
->type
!= bfd_link_hash_common
)
3811 power_of_two
= h
->u
.c
.p
->alignment_power
;
3813 if (config
.sort_common
3814 && power_of_two
< (unsigned int) *(int *) info
)
3817 section
= h
->u
.c
.p
->section
;
3819 /* Increase the size of the section. */
3820 section
->_cooked_size
= align_n ((section
->_cooked_size
+ opb
- 1) / opb
,
3821 (bfd_vma
) 1 << power_of_two
) * opb
;
3823 /* Adjust the alignment if necessary. */
3824 if (power_of_two
> section
->alignment_power
)
3825 section
->alignment_power
= power_of_two
;
3827 /* Change the symbol from common to defined. */
3828 h
->type
= bfd_link_hash_defined
;
3829 h
->u
.def
.section
= section
;
3830 h
->u
.def
.value
= section
->_cooked_size
;
3832 /* Increase the size of the section. */
3833 section
->_cooked_size
+= size
;
3835 /* Make sure the section is allocated in memory, and make sure that
3836 it is no longer a common section. */
3837 section
->flags
|= SEC_ALLOC
;
3838 section
->flags
&= ~SEC_IS_COMMON
;
3840 if (config
.map_file
!= NULL
)
3842 static bfd_boolean header_printed
;
3847 if (! header_printed
)
3849 minfo (_("\nAllocating common symbols\n"));
3850 minfo (_("Common symbol size file\n\n"));
3851 header_printed
= TRUE
;
3854 name
= demangle (h
->root
.string
);
3856 len
= strlen (name
);
3871 if (size
<= 0xffffffff)
3872 sprintf (buf
, "%lx", (unsigned long) size
);
3874 sprintf_vma (buf
, size
);
3884 minfo ("%B\n", section
->owner
);
3890 /* Run through the input files and ensure that every input section has
3891 somewhere to go. If one is found without a destination then create
3892 an input request and place it into the statement tree. */
3895 lang_place_orphans ()
3897 LANG_FOR_EACH_INPUT_STATEMENT (file
)
3901 for (s
= file
->the_bfd
->sections
;
3902 s
!= (asection
*) NULL
;
3905 if (s
->output_section
== (asection
*) NULL
)
3907 /* This section of the file is not attached, root
3908 around for a sensible place for it to go. */
3910 if (file
->just_syms_flag
)
3914 else if (strcmp (s
->name
, "COMMON") == 0)
3916 /* This is a lonely common section which must have
3917 come from an archive. We attach to the section
3918 with the wildcard. */
3919 if (! link_info
.relocateable
3920 || command_line
.force_common_definition
)
3922 if (default_common_section
== NULL
)
3925 /* This message happens when using the
3926 svr3.ifile linker script, so I have
3928 info_msg (_("%P: no [COMMON] command, defaulting to .bss\n"));
3930 default_common_section
=
3931 lang_output_section_statement_lookup (".bss");
3934 lang_add_section (&default_common_section
->children
, s
,
3935 default_common_section
, file
);
3938 else if (ldemul_place_orphan (file
, s
))
3942 lang_output_section_statement_type
*os
;
3944 os
= lang_output_section_statement_lookup (s
->name
);
3945 lang_add_section (&os
->children
, s
, os
, file
);
3953 lang_set_flags (ptr
, flags
, invert
)
3954 lang_memory_region_type
*ptr
;
3958 flagword
*ptr_flags
;
3960 ptr_flags
= invert
? &ptr
->not_flags
: &ptr
->flags
;
3966 *ptr_flags
|= SEC_ALLOC
;
3970 *ptr_flags
|= SEC_READONLY
;
3974 *ptr_flags
|= SEC_DATA
;
3978 *ptr_flags
|= SEC_CODE
;
3983 *ptr_flags
|= SEC_LOAD
;
3987 einfo (_("%P%F: invalid syntax in flags\n"));
3994 /* Call a function on each input file. This function will be called
3995 on an archive, but not on the elements. */
3998 lang_for_each_input_file (func
)
3999 void (*func
) PARAMS ((lang_input_statement_type
*));
4001 lang_input_statement_type
*f
;
4003 for (f
= (lang_input_statement_type
*) input_file_chain
.head
;
4005 f
= (lang_input_statement_type
*) f
->next_real_file
)
4009 /* Call a function on each file. The function will be called on all
4010 the elements of an archive which are included in the link, but will
4011 not be called on the archive file itself. */
4014 lang_for_each_file (func
)
4015 void (*func
) PARAMS ((lang_input_statement_type
*));
4017 LANG_FOR_EACH_INPUT_STATEMENT (f
)
4028 lang_for_each_input_section (func
)
4029 void (*func
) PARAMS ((bfd
*ab
, asection
*as
));
4031 LANG_FOR_EACH_INPUT_STATEMENT (f
)
4035 for (s
= f
->the_bfd
->sections
;
4036 s
!= (asection
*) NULL
;
4039 func (f
->the_bfd
, s
);
4047 ldlang_add_file (entry
)
4048 lang_input_statement_type
*entry
;
4052 lang_statement_append (&file_chain
,
4053 (lang_statement_union_type
*) entry
,
4056 /* The BFD linker needs to have a list of all input BFDs involved in
4058 ASSERT (entry
->the_bfd
->link_next
== (bfd
*) NULL
);
4059 ASSERT (entry
->the_bfd
!= output_bfd
);
4060 for (pp
= &link_info
.input_bfds
;
4061 *pp
!= (bfd
*) NULL
;
4062 pp
= &(*pp
)->link_next
)
4064 *pp
= entry
->the_bfd
;
4065 entry
->the_bfd
->usrdata
= (PTR
) entry
;
4066 bfd_set_gp_size (entry
->the_bfd
, g_switch_value
);
4068 /* Look through the sections and check for any which should not be
4069 included in the link. We need to do this now, so that we can
4070 notice when the backend linker tries to report multiple
4071 definition errors for symbols which are in sections we aren't
4072 going to link. FIXME: It might be better to entirely ignore
4073 symbols which are defined in sections which are going to be
4074 discarded. This would require modifying the backend linker for
4075 each backend which might set the SEC_LINK_ONCE flag. If we do
4076 this, we should probably handle SEC_EXCLUDE in the same way. */
4078 bfd_map_over_sections (entry
->the_bfd
, section_already_linked
, (PTR
) entry
);
4082 lang_add_output (name
, from_script
)
4086 /* Make -o on command line override OUTPUT in script. */
4087 if (!had_output_filename
|| !from_script
)
4089 output_filename
= name
;
4090 had_output_filename
= TRUE
;
4094 static lang_output_section_statement_type
*current_section
;
4106 for (l
= 0; l
< 32; l
++)
4108 if (i
>= (unsigned int) x
)
4116 lang_output_section_statement_type
*
4117 lang_enter_output_section_statement (output_section_statement_name
,
4118 address_exp
, sectype
, block_value
,
4119 align
, subalign
, ebase
)
4120 const char *output_section_statement_name
;
4121 etree_type
*address_exp
;
4122 enum section_type sectype
;
4123 bfd_vma block_value
;
4125 etree_type
*subalign
;
4128 lang_output_section_statement_type
*os
;
4132 lang_output_section_statement_lookup (output_section_statement_name
);
4134 /* Add this statement to tree. */
4136 add_statement (lang_output_section_statement_enum
,
4137 output_section_statement
);
4139 /* Make next things chain into subchain of this. */
4141 if (os
->addr_tree
== (etree_type
*) NULL
)
4143 os
->addr_tree
= address_exp
;
4145 os
->sectype
= sectype
;
4146 if (sectype
!= noload_section
)
4147 os
->flags
= SEC_NO_FLAGS
;
4149 os
->flags
= SEC_NEVER_LOAD
;
4150 os
->block_value
= block_value
? block_value
: 1;
4151 stat_ptr
= &os
->children
;
4153 os
->subsection_alignment
=
4154 topower (exp_get_value_int (subalign
, -1, "subsection alignment", 0));
4155 os
->section_alignment
=
4156 topower (exp_get_value_int (align
, -1, "section alignment", 0));
4158 os
->load_base
= ebase
;
4165 lang_output_statement_type
*new =
4166 new_stat (lang_output_statement
, stat_ptr
);
4168 new->name
= output_filename
;
4171 /* Reset the current counters in the regions. */
4174 lang_reset_memory_regions ()
4176 lang_memory_region_type
*p
= lang_memory_region_list
;
4179 for (p
= lang_memory_region_list
;
4180 p
!= (lang_memory_region_type
*) NULL
;
4183 p
->old_length
= (bfd_size_type
) (p
->current
- p
->origin
);
4184 p
->current
= p
->origin
;
4187 for (o
= output_bfd
->sections
; o
!= NULL
; o
= o
->next
)
4191 /* If the wild pattern was marked KEEP, the member sections
4192 should be as well. */
4195 gc_section_callback (ptr
, sec
, section
, file
, data
)
4196 lang_wild_statement_type
*ptr
;
4197 struct wildcard_list
*sec ATTRIBUTE_UNUSED
;
4199 lang_input_statement_type
*file ATTRIBUTE_UNUSED
;
4200 PTR data ATTRIBUTE_UNUSED
;
4202 if (ptr
->keep_sections
)
4203 section
->flags
|= SEC_KEEP
;
4206 /* Handle a wild statement, marking it against GC. */
4210 lang_wild_statement_type
*s
;
4212 walk_wild (s
, gc_section_callback
, NULL
);
4215 /* Iterate over sections marking them against GC. */
4218 lang_gc_sections_1 (s
)
4219 lang_statement_union_type
*s
;
4221 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->header
.next
)
4223 switch (s
->header
.type
)
4225 case lang_wild_statement_enum
:
4226 lang_gc_wild (&s
->wild_statement
);
4228 case lang_constructors_statement_enum
:
4229 lang_gc_sections_1 (constructor_list
.head
);
4231 case lang_output_section_statement_enum
:
4232 lang_gc_sections_1 (s
->output_section_statement
.children
.head
);
4234 case lang_group_statement_enum
:
4235 lang_gc_sections_1 (s
->group_statement
.children
.head
);
4246 struct bfd_link_hash_entry
*h
;
4247 ldlang_undef_chain_list_type
*ulist
;
4249 /* Keep all sections so marked in the link script. */
4251 lang_gc_sections_1 (statement_list
.head
);
4253 /* Keep all sections containing symbols undefined on the command-line,
4254 and the section containing the entry symbol. */
4256 for (ulist
= link_info
.gc_sym_list
; ulist
; ulist
= ulist
->next
)
4258 h
= bfd_link_hash_lookup (link_info
.hash
, ulist
->name
,
4259 FALSE
, FALSE
, FALSE
);
4261 if (h
!= (struct bfd_link_hash_entry
*) NULL
4262 && (h
->type
== bfd_link_hash_defined
4263 || h
->type
== bfd_link_hash_defweak
)
4264 && ! bfd_is_abs_section (h
->u
.def
.section
))
4266 h
->u
.def
.section
->flags
|= SEC_KEEP
;
4270 bfd_gc_sections (output_bfd
, &link_info
);
4276 lang_reasonable_defaults ();
4277 current_target
= default_target
;
4279 /* Open the output file. */
4280 lang_for_each_statement (ldlang_open_output
);
4282 ldemul_create_output_section_statements ();
4284 /* Add to the hash table all undefineds on the command line. */
4285 lang_place_undefineds ();
4287 already_linked_table_init ();
4289 /* Create a bfd for each input file. */
4290 current_target
= default_target
;
4291 open_input_bfds (statement_list
.head
, FALSE
);
4293 link_info
.gc_sym_list
= &entry_symbol
;
4294 if (entry_symbol
.name
== NULL
)
4295 link_info
.gc_sym_list
= ldlang_undef_chain_list_head
;
4297 ldemul_after_open ();
4299 already_linked_table_free ();
4301 /* Make sure that we're not mixing architectures. We call this
4302 after all the input files have been opened, but before we do any
4303 other processing, so that any operations merge_private_bfd_data
4304 does on the output file will be known during the rest of the
4308 /* Handle .exports instead of a version script if we're told to do so. */
4309 if (command_line
.version_exports_section
)
4310 lang_do_version_exports_section ();
4312 /* Build all sets based on the information gathered from the input
4314 ldctor_build_sets ();
4316 /* Remove unreferenced sections if asked to. */
4317 if (command_line
.gc_sections
)
4318 lang_gc_sections ();
4320 /* If there were any SEC_MERGE sections, finish their merging, so that
4321 section sizes can be computed. This has to be done after GC of sections,
4322 so that GCed sections are not merged, but before assigning output
4323 sections, since removing whole input sections is hard then. */
4324 bfd_merge_sections (output_bfd
, &link_info
);
4326 /* Size up the common data. */
4329 /* Run through the contours of the script and attach input sections
4330 to the correct output sections. */
4331 map_input_to_output_sections (statement_list
.head
, (char *) NULL
,
4332 (lang_output_section_statement_type
*) NULL
);
4334 /* Find any sections not attached explicitly and handle them. */
4335 lang_place_orphans ();
4337 if (! link_info
.relocateable
)
4339 /* Look for a text section and set the readonly attribute in it. */
4340 asection
*found
= bfd_get_section_by_name (output_bfd
, ".text");
4342 if (found
!= (asection
*) NULL
)
4344 if (config
.text_read_only
)
4345 found
->flags
|= SEC_READONLY
;
4347 found
->flags
&= ~SEC_READONLY
;
4351 /* Do anything special before sizing sections. This is where ELF
4352 and other back-ends size dynamic sections. */
4353 ldemul_before_allocation ();
4355 if (!link_info
.relocateable
)
4356 strip_excluded_output_sections ();
4358 /* We must record the program headers before we try to fix the
4359 section positions, since they will affect SIZEOF_HEADERS. */
4360 lang_record_phdrs ();
4362 /* Size up the sections. */
4363 lang_size_sections (statement_list
.head
,
4365 &statement_list
.head
, 0, (bfd_vma
) 0, NULL
,
4366 command_line
.relax
? FALSE
: TRUE
);
4368 /* Now run around and relax if we can. */
4369 if (command_line
.relax
)
4371 /* Keep relaxing until bfd_relax_section gives up. */
4372 bfd_boolean relax_again
;
4376 lang_reset_memory_regions ();
4378 relax_again
= FALSE
;
4380 /* Note: pe-dll.c does something like this also. If you find
4381 you need to change this code, you probably need to change
4382 pe-dll.c also. DJ */
4384 /* Do all the assignments with our current guesses as to
4386 lang_do_assignments (statement_list
.head
,
4388 (fill_type
*) 0, (bfd_vma
) 0);
4390 /* Perform another relax pass - this time we know where the
4391 globals are, so can make a better guess. */
4392 lang_size_sections (statement_list
.head
,
4394 &statement_list
.head
, 0, (bfd_vma
) 0,
4395 &relax_again
, FALSE
);
4397 while (relax_again
);
4399 /* Final extra sizing to report errors. */
4400 lang_reset_memory_regions ();
4401 lang_do_assignments (statement_list
.head
,
4403 (fill_type
*) 0, (bfd_vma
) 0);
4404 lang_size_sections (statement_list
.head
,
4406 & statement_list
.head
, 0, (bfd_vma
) 0,
4410 /* See if anything special should be done now we know how big
4412 ldemul_after_allocation ();
4414 /* Fix any .startof. or .sizeof. symbols. */
4415 lang_set_startof ();
4417 /* Do all the assignments, now that we know the final resting places
4418 of all the symbols. */
4420 lang_do_assignments (statement_list
.head
,
4422 (fill_type
*) 0, (bfd_vma
) 0);
4424 /* Make sure that the section addresses make sense. */
4425 if (! link_info
.relocateable
4426 && command_line
.check_section_addresses
)
4427 lang_check_section_addresses ();
4435 /* EXPORTED TO YACC */
4438 lang_add_wild (filespec
, section_list
, keep_sections
)
4439 struct wildcard_spec
*filespec
;
4440 struct wildcard_list
*section_list
;
4441 bfd_boolean keep_sections
;
4443 struct wildcard_list
*curr
, *next
;
4444 lang_wild_statement_type
*new;
4446 /* Reverse the list as the parser puts it back to front. */
4447 for (curr
= section_list
, section_list
= NULL
;
4449 section_list
= curr
, curr
= next
)
4451 if (curr
->spec
.name
!= NULL
&& strcmp (curr
->spec
.name
, "COMMON") == 0)
4452 placed_commons
= TRUE
;
4455 curr
->next
= section_list
;
4458 if (filespec
!= NULL
&& filespec
->name
!= NULL
)
4460 if (strcmp (filespec
->name
, "*") == 0)
4461 filespec
->name
= NULL
;
4462 else if (! wildcardp (filespec
->name
))
4463 lang_has_input_file
= TRUE
;
4466 new = new_stat (lang_wild_statement
, stat_ptr
);
4467 new->filename
= NULL
;
4468 new->filenames_sorted
= FALSE
;
4469 if (filespec
!= NULL
)
4471 new->filename
= filespec
->name
;
4472 new->filenames_sorted
= filespec
->sorted
;
4474 new->section_list
= section_list
;
4475 new->keep_sections
= keep_sections
;
4476 lang_list_init (&new->children
);
4480 lang_section_start (name
, address
)
4482 etree_type
*address
;
4484 lang_address_statement_type
*ad
;
4486 ad
= new_stat (lang_address_statement
, stat_ptr
);
4487 ad
->section_name
= name
;
4488 ad
->address
= address
;
4491 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
4492 because of a -e argument on the command line, or zero if this is
4493 called by ENTRY in a linker script. Command line arguments take
4497 lang_add_entry (name
, cmdline
)
4499 bfd_boolean cmdline
;
4501 if (entry_symbol
.name
== NULL
4503 || ! entry_from_cmdline
)
4505 entry_symbol
.name
= name
;
4506 entry_from_cmdline
= cmdline
;
4511 lang_add_target (name
)
4514 lang_target_statement_type
*new = new_stat (lang_target_statement
,
4530 map_option_f
= TRUE
;
4538 lang_add_fill (fill
)
4541 lang_fill_statement_type
*new = new_stat (lang_fill_statement
,
4548 lang_add_data (type
, exp
)
4550 union etree_union
*exp
;
4553 lang_data_statement_type
*new = new_stat (lang_data_statement
,
4561 /* Create a new reloc statement. RELOC is the BFD relocation type to
4562 generate. HOWTO is the corresponding howto structure (we could
4563 look this up, but the caller has already done so). SECTION is the
4564 section to generate a reloc against, or NAME is the name of the
4565 symbol to generate a reloc against. Exactly one of SECTION and
4566 NAME must be NULL. ADDEND is an expression for the addend. */
4569 lang_add_reloc (reloc
, howto
, section
, name
, addend
)
4570 bfd_reloc_code_real_type reloc
;
4571 reloc_howto_type
*howto
;
4574 union etree_union
*addend
;
4576 lang_reloc_statement_type
*p
= new_stat (lang_reloc_statement
, stat_ptr
);
4580 p
->section
= section
;
4582 p
->addend_exp
= addend
;
4584 p
->addend_value
= 0;
4585 p
->output_section
= NULL
;
4589 lang_assignment_statement_type
*
4590 lang_add_assignment (exp
)
4593 lang_assignment_statement_type
*new = new_stat (lang_assignment_statement
,
4601 lang_add_attribute (attribute
)
4602 enum statement_enum attribute
;
4604 new_statement (attribute
, sizeof (lang_statement_union_type
), stat_ptr
);
4611 if (startup_file
!= (char *) NULL
)
4613 einfo (_("%P%Fmultiple STARTUP files\n"));
4615 first_file
->filename
= name
;
4616 first_file
->local_sym_name
= name
;
4617 first_file
->real
= TRUE
;
4619 startup_file
= name
;
4626 lang_float_flag
= maybe
;
4630 /* Work out the load- and run-time regions from a script statement, and
4631 store them in *LMA_REGION and *REGION respectively.
4633 MEMSPEC is the name of the run-time region, or "*default*" if the
4634 statement didn't specify one. LMA_MEMSPEC is the name of the
4635 load-time region, or null if the statement didn't specify one.
4636 HAVE_LMA_P is TRUE if the statement had an explicit load address.
4638 It is an error to specify both a load region and a load address. */
4641 lang_get_regions (region
, lma_region
, memspec
, lma_memspec
, have_lma_p
)
4642 struct memory_region_struct
**region
, **lma_region
;
4643 const char *memspec
, *lma_memspec
;
4646 *lma_region
= lang_memory_region_lookup (lma_memspec
);
4648 /* If no runtime region has been given, but the load region has
4649 been, use the load region. */
4650 if (lma_memspec
!= 0 && strcmp (memspec
, "*default*") == 0)
4651 *region
= *lma_region
;
4653 *region
= lang_memory_region_lookup (memspec
);
4655 if (have_lma_p
&& lma_memspec
!= 0)
4656 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
4660 lang_leave_output_section_statement (fill
, memspec
, phdrs
, lma_memspec
)
4662 const char *memspec
;
4663 struct lang_output_section_phdr_list
*phdrs
;
4664 const char *lma_memspec
;
4666 lang_get_regions (¤t_section
->region
,
4667 ¤t_section
->lma_region
,
4668 memspec
, lma_memspec
,
4669 current_section
->load_base
!= 0);
4670 current_section
->fill
= fill
;
4671 current_section
->phdrs
= phdrs
;
4672 stat_ptr
= &statement_list
;
4675 /* Create an absolute symbol with the given name with the value of the
4676 address of first byte of the section named.
4678 If the symbol already exists, then do nothing. */
4681 lang_abs_symbol_at_beginning_of (secname
, name
)
4682 const char *secname
;
4685 struct bfd_link_hash_entry
*h
;
4687 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, TRUE
, TRUE
);
4688 if (h
== (struct bfd_link_hash_entry
*) NULL
)
4689 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4691 if (h
->type
== bfd_link_hash_new
4692 || h
->type
== bfd_link_hash_undefined
)
4696 h
->type
= bfd_link_hash_defined
;
4698 sec
= bfd_get_section_by_name (output_bfd
, secname
);
4699 if (sec
== (asection
*) NULL
)
4702 h
->u
.def
.value
= bfd_get_section_vma (output_bfd
, sec
);
4704 h
->u
.def
.section
= bfd_abs_section_ptr
;
4708 /* Create an absolute symbol with the given name with the value of the
4709 address of the first byte after the end of the section named.
4711 If the symbol already exists, then do nothing. */
4714 lang_abs_symbol_at_end_of (secname
, name
)
4715 const char *secname
;
4718 struct bfd_link_hash_entry
*h
;
4720 h
= bfd_link_hash_lookup (link_info
.hash
, name
, TRUE
, TRUE
, TRUE
);
4721 if (h
== (struct bfd_link_hash_entry
*) NULL
)
4722 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4724 if (h
->type
== bfd_link_hash_new
4725 || h
->type
== bfd_link_hash_undefined
)
4729 h
->type
= bfd_link_hash_defined
;
4731 sec
= bfd_get_section_by_name (output_bfd
, secname
);
4732 if (sec
== (asection
*) NULL
)
4735 h
->u
.def
.value
= (bfd_get_section_vma (output_bfd
, sec
)
4736 + bfd_section_size (output_bfd
, sec
) /
4737 bfd_octets_per_byte (output_bfd
));
4739 h
->u
.def
.section
= bfd_abs_section_ptr
;
4744 lang_statement_append (list
, element
, field
)
4745 lang_statement_list_type
*list
;
4746 lang_statement_union_type
*element
;
4747 lang_statement_union_type
**field
;
4749 *(list
->tail
) = element
;
4753 /* Set the output format type. -oformat overrides scripts. */
4756 lang_add_output_format (format
, big
, little
, from_script
)
4762 if (output_target
== NULL
|| !from_script
)
4764 if (command_line
.endian
== ENDIAN_BIG
4767 else if (command_line
.endian
== ENDIAN_LITTLE
4771 output_target
= format
;
4775 /* Enter a group. This creates a new lang_group_statement, and sets
4776 stat_ptr to build new statements within the group. */
4781 lang_group_statement_type
*g
;
4783 g
= new_stat (lang_group_statement
, stat_ptr
);
4784 lang_list_init (&g
->children
);
4785 stat_ptr
= &g
->children
;
4788 /* Leave a group. This just resets stat_ptr to start writing to the
4789 regular list of statements again. Note that this will not work if
4790 groups can occur inside anything else which can adjust stat_ptr,
4791 but currently they can't. */
4796 stat_ptr
= &statement_list
;
4799 /* Add a new program header. This is called for each entry in a PHDRS
4800 command in a linker script. */
4803 lang_new_phdr (name
, type
, filehdr
, phdrs
, at
, flags
)
4806 bfd_boolean filehdr
;
4811 struct lang_phdr
*n
, **pp
;
4813 n
= (struct lang_phdr
*) stat_alloc (sizeof (struct lang_phdr
));
4816 n
->type
= exp_get_value_int (type
, 0, "program header type",
4817 lang_final_phase_enum
);
4818 n
->filehdr
= filehdr
;
4823 for (pp
= &lang_phdr_list
; *pp
!= NULL
; pp
= &(*pp
)->next
)
4828 /* Record the program header information in the output BFD. FIXME: We
4829 should not be calling an ELF specific function here. */
4832 lang_record_phdrs ()
4836 struct lang_output_section_phdr_list
*last
;
4837 struct lang_phdr
*l
;
4838 lang_statement_union_type
*u
;
4841 secs
= (asection
**) xmalloc (alc
* sizeof (asection
*));
4843 for (l
= lang_phdr_list
; l
!= NULL
; l
= l
->next
)
4850 for (u
= lang_output_section_statement
.head
;
4852 u
= u
->output_section_statement
.next
)
4854 lang_output_section_statement_type
*os
;
4855 struct lang_output_section_phdr_list
*pl
;
4857 os
= &u
->output_section_statement
;
4864 if (os
->sectype
== noload_section
4865 || os
->bfd_section
== NULL
4866 || (os
->bfd_section
->flags
& SEC_ALLOC
) == 0)
4871 if (os
->bfd_section
== NULL
)
4874 for (; pl
!= NULL
; pl
= pl
->next
)
4876 if (strcmp (pl
->name
, l
->name
) == 0)
4881 secs
= ((asection
**)
4882 xrealloc (secs
, alc
* sizeof (asection
*)));
4884 secs
[c
] = os
->bfd_section
;
4891 if (l
->flags
== NULL
)
4894 flags
= exp_get_vma (l
->flags
, 0, "phdr flags",
4895 lang_final_phase_enum
);
4900 at
= exp_get_vma (l
->at
, 0, "phdr load address",
4901 lang_final_phase_enum
);
4903 if (! bfd_record_phdr (output_bfd
, l
->type
,
4904 l
->flags
!= NULL
, flags
, l
->at
!= NULL
,
4905 at
, l
->filehdr
, l
->phdrs
, c
, secs
))
4906 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
4911 /* Make sure all the phdr assignments succeeded. */
4912 for (u
= lang_output_section_statement
.head
;
4914 u
= u
->output_section_statement
.next
)
4916 struct lang_output_section_phdr_list
*pl
;
4918 if (u
->output_section_statement
.bfd_section
== NULL
)
4921 for (pl
= u
->output_section_statement
.phdrs
;
4924 if (! pl
->used
&& strcmp (pl
->name
, "NONE") != 0)
4925 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
4926 u
->output_section_statement
.name
, pl
->name
);
4930 /* Record a list of sections which may not be cross referenced. */
4933 lang_add_nocrossref (l
)
4934 struct lang_nocrossref
*l
;
4936 struct lang_nocrossrefs
*n
;
4938 n
= (struct lang_nocrossrefs
*) xmalloc (sizeof *n
);
4939 n
->next
= nocrossref_list
;
4941 nocrossref_list
= n
;
4943 /* Set notice_all so that we get informed about all symbols. */
4944 link_info
.notice_all
= TRUE
;
4947 /* Overlay handling. We handle overlays with some static variables. */
4949 /* The overlay virtual address. */
4950 static etree_type
*overlay_vma
;
4952 /* An expression for the maximum section size seen so far. */
4953 static etree_type
*overlay_max
;
4955 /* A list of all the sections in this overlay. */
4957 struct overlay_list
{
4958 struct overlay_list
*next
;
4959 lang_output_section_statement_type
*os
;
4962 static struct overlay_list
*overlay_list
;
4964 /* Start handling an overlay. */
4967 lang_enter_overlay (vma_expr
)
4968 etree_type
*vma_expr
;
4970 /* The grammar should prevent nested overlays from occurring. */
4971 ASSERT (overlay_vma
== NULL
&& overlay_max
== NULL
);
4973 overlay_vma
= vma_expr
;
4976 /* Start a section in an overlay. We handle this by calling
4977 lang_enter_output_section_statement with the correct VMA.
4978 lang_leave_overlay sets up the LMA and memory regions. */
4981 lang_enter_overlay_section (name
)
4984 struct overlay_list
*n
;
4987 lang_enter_output_section_statement (name
, overlay_vma
, normal_section
,
4990 /* If this is the first section, then base the VMA of future
4991 sections on this one. This will work correctly even if `.' is
4992 used in the addresses. */
4993 if (overlay_list
== NULL
)
4994 overlay_vma
= exp_nameop (ADDR
, name
);
4996 /* Remember the section. */
4997 n
= (struct overlay_list
*) xmalloc (sizeof *n
);
4998 n
->os
= current_section
;
4999 n
->next
= overlay_list
;
5002 size
= exp_nameop (SIZEOF
, name
);
5004 /* Arrange to work out the maximum section end address. */
5005 if (overlay_max
== NULL
)
5008 overlay_max
= exp_binop (MAX_K
, overlay_max
, size
);
5011 /* Finish a section in an overlay. There isn't any special to do
5015 lang_leave_overlay_section (fill
, phdrs
)
5017 struct lang_output_section_phdr_list
*phdrs
;
5024 name
= current_section
->name
;
5026 /* For now, assume that "*default*" is the run-time memory region and
5027 that no load-time region has been specified. It doesn't really
5028 matter what we say here, since lang_leave_overlay will override it. */
5029 lang_leave_output_section_statement (fill
, "*default*", phdrs
, 0);
5031 /* Define the magic symbols. */
5033 clean
= xmalloc (strlen (name
) + 1);
5035 for (s1
= name
; *s1
!= '\0'; s1
++)
5036 if (ISALNUM (*s1
) || *s1
== '_')
5040 buf
= xmalloc (strlen (clean
) + sizeof "__load_start_");
5041 sprintf (buf
, "__load_start_%s", clean
);
5042 lang_add_assignment (exp_assop ('=', buf
,
5043 exp_nameop (LOADADDR
, name
)));
5045 buf
= xmalloc (strlen (clean
) + sizeof "__load_stop_");
5046 sprintf (buf
, "__load_stop_%s", clean
);
5047 lang_add_assignment (exp_assop ('=', buf
,
5049 exp_nameop (LOADADDR
, name
),
5050 exp_nameop (SIZEOF
, name
))));
5055 /* Finish an overlay. If there are any overlay wide settings, this
5056 looks through all the sections in the overlay and sets them. */
5059 lang_leave_overlay (lma_expr
, nocrossrefs
, fill
, memspec
, phdrs
, lma_memspec
)
5060 etree_type
*lma_expr
;
5063 const char *memspec
;
5064 struct lang_output_section_phdr_list
*phdrs
;
5065 const char *lma_memspec
;
5067 lang_memory_region_type
*region
;
5068 lang_memory_region_type
*lma_region
;
5069 struct overlay_list
*l
;
5070 struct lang_nocrossref
*nocrossref
;
5072 lang_get_regions (®ion
, &lma_region
,
5073 memspec
, lma_memspec
,
5078 /* After setting the size of the last section, set '.' to end of the
5080 if (overlay_list
!= NULL
)
5081 overlay_list
->os
->update_dot_tree
5082 = exp_assop ('=', ".", exp_binop ('+', overlay_vma
, overlay_max
));
5087 struct overlay_list
*next
;
5089 if (fill
!= (fill_type
*) 0 && l
->os
->fill
== (fill_type
*) 0)
5092 l
->os
->region
= region
;
5093 l
->os
->lma_region
= lma_region
;
5095 /* The first section has the load address specified in the
5096 OVERLAY statement. The rest are worked out from that.
5097 The base address is not needed (and should be null) if
5098 an LMA region was specified. */
5100 l
->os
->load_base
= lma_expr
;
5101 else if (lma_region
== 0)
5102 l
->os
->load_base
= exp_binop ('+',
5103 exp_nameop (LOADADDR
, l
->next
->os
->name
),
5104 exp_nameop (SIZEOF
, l
->next
->os
->name
));
5106 if (phdrs
!= NULL
&& l
->os
->phdrs
== NULL
)
5107 l
->os
->phdrs
= phdrs
;
5111 struct lang_nocrossref
*nc
;
5113 nc
= (struct lang_nocrossref
*) xmalloc (sizeof *nc
);
5114 nc
->name
= l
->os
->name
;
5115 nc
->next
= nocrossref
;
5124 if (nocrossref
!= NULL
)
5125 lang_add_nocrossref (nocrossref
);
5128 overlay_list
= NULL
;
5132 /* Version handling. This is only useful for ELF. */
5134 /* This global variable holds the version tree that we build. */
5136 struct bfd_elf_version_tree
*lang_elf_version_info
;
5139 lang_vers_match_lang_c (expr
, sym
)
5140 struct bfd_elf_version_expr
*expr
;
5143 if (expr
->pattern
[0] == '*' && expr
->pattern
[1] == '\0')
5145 return fnmatch (expr
->pattern
, sym
, 0) == 0;
5149 lang_vers_match_lang_cplusplus (expr
, sym
)
5150 struct bfd_elf_version_expr
*expr
;
5156 if (expr
->pattern
[0] == '*' && expr
->pattern
[1] == '\0')
5159 alt_sym
= cplus_demangle (sym
, /* DMGL_NO_TPARAMS */ 0);
5162 /* cplus_demangle (also) returns NULL when it is not a C++ symbol.
5163 Should we early out FALSE in this case? */
5164 result
= fnmatch (expr
->pattern
, sym
, 0) == 0;
5168 result
= fnmatch (expr
->pattern
, alt_sym
, 0) == 0;
5176 lang_vers_match_lang_java (expr
, sym
)
5177 struct bfd_elf_version_expr
*expr
;
5183 if (expr
->pattern
[0] == '*' && expr
->pattern
[1] == '\0')
5186 alt_sym
= cplus_demangle (sym
, DMGL_JAVA
);
5189 /* cplus_demangle (also) returns NULL when it is not a Java symbol.
5190 Should we early out FALSE in this case? */
5191 result
= fnmatch (expr
->pattern
, sym
, 0) == 0;
5195 result
= fnmatch (expr
->pattern
, alt_sym
, 0) == 0;
5202 /* This is called for each variable name or match expression. */
5204 struct bfd_elf_version_expr
*
5205 lang_new_vers_pattern (orig
, new, lang
)
5206 struct bfd_elf_version_expr
*orig
;
5210 struct bfd_elf_version_expr
*ret
;
5212 ret
= (struct bfd_elf_version_expr
*) xmalloc (sizeof *ret
);
5218 if (lang
== NULL
|| strcasecmp (lang
, "C") == 0)
5219 ret
->match
= lang_vers_match_lang_c
;
5220 else if (strcasecmp (lang
, "C++") == 0)
5221 ret
->match
= lang_vers_match_lang_cplusplus
;
5222 else if (strcasecmp (lang
, "Java") == 0)
5223 ret
->match
= lang_vers_match_lang_java
;
5226 einfo (_("%X%P: unknown language `%s' in version information\n"),
5228 ret
->match
= lang_vers_match_lang_c
;
5231 return ldemul_new_vers_pattern (ret
);
5234 /* This is called for each set of variable names and match
5237 struct bfd_elf_version_tree
*
5238 lang_new_vers_node (globals
, locals
)
5239 struct bfd_elf_version_expr
*globals
;
5240 struct bfd_elf_version_expr
*locals
;
5242 struct bfd_elf_version_tree
*ret
;
5244 ret
= (struct bfd_elf_version_tree
*) xmalloc (sizeof *ret
);
5248 ret
->globals
= globals
;
5249 ret
->locals
= locals
;
5251 ret
->name_indx
= (unsigned int) -1;
5256 /* This static variable keeps track of version indices. */
5258 static int version_index
;
5260 /* This is called when we know the name and dependencies of the
5264 lang_register_vers_node (name
, version
, deps
)
5266 struct bfd_elf_version_tree
*version
;
5267 struct bfd_elf_version_deps
*deps
;
5269 struct bfd_elf_version_tree
*t
, **pp
;
5270 struct bfd_elf_version_expr
*e1
;
5275 if ((name
[0] == '\0' && lang_elf_version_info
!= NULL
)
5276 || (lang_elf_version_info
&& lang_elf_version_info
->name
[0] == '\0'))
5278 einfo (_("%X%P: anonymous version tag cannot be combined with other version tags\n"));
5283 /* Make sure this node has a unique name. */
5284 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
5285 if (strcmp (t
->name
, name
) == 0)
5286 einfo (_("%X%P: duplicate version tag `%s'\n"), name
);
5288 /* Check the global and local match names, and make sure there
5289 aren't any duplicates. */
5291 for (e1
= version
->globals
; e1
!= NULL
; e1
= e1
->next
)
5293 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
5295 struct bfd_elf_version_expr
*e2
;
5297 for (e2
= t
->locals
; e2
!= NULL
; e2
= e2
->next
)
5298 if (strcmp (e1
->pattern
, e2
->pattern
) == 0)
5299 einfo (_("%X%P: duplicate expression `%s' in version information\n"),
5304 for (e1
= version
->locals
; e1
!= NULL
; e1
= e1
->next
)
5306 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
5308 struct bfd_elf_version_expr
*e2
;
5310 for (e2
= t
->globals
; e2
!= NULL
; e2
= e2
->next
)
5311 if (strcmp (e1
->pattern
, e2
->pattern
) == 0)
5312 einfo (_("%X%P: duplicate expression `%s' in version information\n"),
5317 version
->deps
= deps
;
5318 version
->name
= name
;
5319 if (name
[0] != '\0')
5322 version
->vernum
= version_index
;
5325 version
->vernum
= 0;
5327 for (pp
= &lang_elf_version_info
; *pp
!= NULL
; pp
= &(*pp
)->next
)
5332 /* This is called when we see a version dependency. */
5334 struct bfd_elf_version_deps
*
5335 lang_add_vers_depend (list
, name
)
5336 struct bfd_elf_version_deps
*list
;
5339 struct bfd_elf_version_deps
*ret
;
5340 struct bfd_elf_version_tree
*t
;
5342 ret
= (struct bfd_elf_version_deps
*) xmalloc (sizeof *ret
);
5345 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
5347 if (strcmp (t
->name
, name
) == 0)
5349 ret
->version_needed
= t
;
5354 einfo (_("%X%P: unable to find version dependency `%s'\n"), name
);
5360 lang_do_version_exports_section ()
5362 struct bfd_elf_version_expr
*greg
= NULL
, *lreg
;
5364 LANG_FOR_EACH_INPUT_STATEMENT (is
)
5366 asection
*sec
= bfd_get_section_by_name (is
->the_bfd
, ".exports");
5373 len
= bfd_section_size (is
->the_bfd
, sec
);
5374 contents
= xmalloc (len
);
5375 if (!bfd_get_section_contents (is
->the_bfd
, sec
, contents
, 0, len
))
5376 einfo (_("%X%P: unable to read .exports section contents\n"), sec
);
5379 while (p
< contents
+ len
)
5381 greg
= lang_new_vers_pattern (greg
, p
, NULL
);
5382 p
= strchr (p
, '\0') + 1;
5385 /* Do not free the contents, as we used them creating the regex. */
5387 /* Do not include this section in the link. */
5388 bfd_set_section_flags (is
->the_bfd
, sec
,
5389 bfd_get_section_flags (is
->the_bfd
, sec
) | SEC_EXCLUDE
);
5392 lreg
= lang_new_vers_pattern (NULL
, "*", NULL
);
5393 lang_register_vers_node (command_line
.version_exports_section
,
5394 lang_new_vers_node (greg
, lreg
), NULL
);
5398 lang_add_unique (name
)
5401 struct unique_sections
*ent
;
5403 for (ent
= unique_section_list
; ent
; ent
= ent
->next
)
5404 if (strcmp (ent
->name
, name
) == 0)
5407 ent
= (struct unique_sections
*) xmalloc (sizeof *ent
);
5408 ent
->name
= xstrdup (name
);
5409 ent
->next
= unique_section_list
;
5410 unique_section_list
= ent
;