1 /* Linker command language support.
2 Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
3 Free Software Foundation, Inc.
5 This file is part of GLD, the Gnu Linker.
7 GLD is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GLD is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GLD; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 #include "libiberty.h"
44 static lang_statement_union_type
*new_statement
PARAMS ((enum statement_enum
,
46 lang_statement_list_type
*));
50 static struct obstack stat_obstack
;
52 #define obstack_chunk_alloc xmalloc
53 #define obstack_chunk_free free
54 static CONST
char *startup_file
;
55 static lang_statement_list_type input_file_chain
;
56 static boolean placed_commons
= false;
57 static lang_output_section_statement_type
*default_common_section
;
58 static boolean map_option_f
;
59 static bfd_vma print_dot
;
60 static lang_input_statement_type
*first_file
;
61 static lang_statement_list_type lang_output_section_statement
;
62 static CONST
char *current_target
;
63 static CONST
char *output_target
;
64 static lang_statement_list_type statement_list
;
65 static struct lang_phdr
*lang_phdr_list
;
67 static void lang_for_each_statement_worker
68 PARAMS ((void (*func
) (lang_statement_union_type
*),
69 lang_statement_union_type
*s
));
70 static lang_input_statement_type
*new_afile
71 PARAMS ((const char *name
, lang_input_file_enum_type file_type
,
72 const char *target
, boolean add_to_list
));
73 static void init_os
PARAMS ((lang_output_section_statement_type
*s
));
74 static void exp_init_os
PARAMS ((etree_type
*));
75 static void section_already_linked
PARAMS ((bfd
*, asection
*, PTR
));
76 static struct bfd_hash_entry
*already_linked_newfunc
77 PARAMS ((struct bfd_hash_entry
*, struct bfd_hash_table
*,
79 static void already_linked_table_init
PARAMS ((void));
80 static void already_linked_table_free
PARAMS ((void));
81 static boolean wildcardp
PARAMS ((const char *));
82 static lang_statement_union_type
*wild_sort
83 PARAMS ((lang_wild_statement_type
*, lang_input_statement_type
*,
85 static lang_input_statement_type
*lookup_name
PARAMS ((const char *name
));
86 static void load_symbols
PARAMS ((lang_input_statement_type
*entry
,
87 lang_statement_list_type
*));
88 static void wild
PARAMS ((lang_wild_statement_type
*s
,
89 const char *section
, const char *file
,
91 lang_output_section_statement_type
*output
));
92 static bfd
*open_output
PARAMS ((const char *name
));
93 static void ldlang_open_output
PARAMS ((lang_statement_union_type
*statement
));
94 static void open_input_bfds
95 PARAMS ((lang_statement_union_type
*statement
, boolean
));
96 static void lang_reasonable_defaults
PARAMS ((void));
97 static void lang_place_undefineds
PARAMS ((void));
98 static void map_input_to_output_sections
99 PARAMS ((lang_statement_union_type
*s
,
101 lang_output_section_statement_type
*output_section_statement
));
102 static void print_output_section_statement
103 PARAMS ((lang_output_section_statement_type
*output_section_statement
));
104 static void print_assignment
105 PARAMS ((lang_assignment_statement_type
*assignment
,
106 lang_output_section_statement_type
*output_section
));
107 static void print_input_statement
PARAMS ((lang_input_statement_type
*statm
));
108 static boolean print_one_symbol
PARAMS ((struct bfd_link_hash_entry
*, PTR
));
109 static void print_input_section
PARAMS ((lang_input_section_type
*in
));
110 static void print_fill_statement
PARAMS ((lang_fill_statement_type
*fill
));
111 static void print_data_statement
PARAMS ((lang_data_statement_type
*data
));
112 static void print_address_statement
PARAMS ((lang_address_statement_type
*));
113 static void print_reloc_statement
PARAMS ((lang_reloc_statement_type
*reloc
));
114 static void print_padding_statement
PARAMS ((lang_padding_statement_type
*s
));
115 static void print_wild_statement
116 PARAMS ((lang_wild_statement_type
*w
,
117 lang_output_section_statement_type
*os
));
118 static void print_group
119 PARAMS ((lang_group_statement_type
*, lang_output_section_statement_type
*));
120 static void print_statement
PARAMS ((lang_statement_union_type
*s
,
121 lang_output_section_statement_type
*os
));
122 static void print_statement_list
PARAMS ((lang_statement_union_type
*s
,
123 lang_output_section_statement_type
*os
));
124 static void print_statements
PARAMS ((void));
125 static bfd_vma insert_pad
PARAMS ((lang_statement_union_type
**this_ptr
,
126 fill_type fill
, unsigned int power
,
127 asection
*output_section_statement
,
129 static bfd_vma size_input_section
130 PARAMS ((lang_statement_union_type
**this_ptr
,
131 lang_output_section_statement_type
*output_section_statement
,
132 fill_type fill
, bfd_vma dot
, boolean relax
));
133 static void lang_finish
PARAMS ((void));
134 static void ignore_bfd_errors
PARAMS ((const char *, ...));
135 static void lang_check
PARAMS ((void));
136 static void lang_common
PARAMS ((void));
137 static boolean lang_one_common
PARAMS ((struct bfd_link_hash_entry
*, PTR
));
138 static void lang_place_orphans
PARAMS ((void));
139 static int topower
PARAMS ((int));
140 static void lang_set_startof
PARAMS ((void));
141 static void reset_memory_regions
PARAMS ((void));
142 static void lang_record_phdrs
PARAMS ((void));
143 static void lang_gc_wild
144 PARAMS ((lang_wild_statement_type
*, const char *, const char *));
145 static void lang_gc_sections_1
PARAMS ((lang_statement_union_type
*));
146 static void lang_gc_sections
PARAMS ((void));
147 static void lang_do_version_exports_section
PARAMS ((void));
148 static void lang_check_section_addresses
PARAMS ((void));
150 typedef void (*callback_t
) PARAMS ((lang_wild_statement_type
*,
151 asection
*, lang_input_statement_type
*,
153 static void walk_wild_section
154 PARAMS ((lang_wild_statement_type
*, const char *,
155 lang_input_statement_type
*, callback_t
, void *));
156 static void walk_wild_file
157 PARAMS ((lang_wild_statement_type
*, const char *,
158 lang_input_statement_type
*, callback_t
, void *));
160 static int get_target
PARAMS ((const bfd_target
*, void *));
161 static void stricpy
PARAMS ((char *, char *));
162 static void strcut
PARAMS ((char *, char *));
163 static int name_compare
PARAMS ((char *, char *));
164 static int closest_target_match
PARAMS ((const bfd_target
*, void *));
165 static char * get_first_input_target
PARAMS ((void));
168 lang_output_section_statement_type
*abs_output_section
;
169 lang_statement_list_type
*stat_ptr
= &statement_list
;
170 lang_statement_list_type file_chain
= { NULL
, NULL
};
171 const char *entry_symbol
= NULL
;
172 boolean entry_from_cmdline
;
173 boolean lang_has_input_file
= false;
174 boolean had_output_filename
= false;
175 boolean lang_float_flag
= false;
176 boolean delete_output_file_on_failure
= false;
177 struct lang_nocrossrefs
*nocrossref_list
;
179 etree_type
*base
; /* Relocation base - or null */
182 #if defined(__STDC__) || defined(ALMOST_STDC)
183 #define cat(a,b) a##b
185 #define cat(a,b) a/**/b
188 #define new_stat(x,y) (cat(x,_type)*) new_statement(cat(x,_enum), sizeof(cat(x,_type)),y)
190 #define outside_section_address(q) ( (q)->output_offset + (q)->output_section->vma)
192 #define outside_symbol_address(q) ((q)->value + outside_section_address(q->section))
194 #define SECTION_NAME_MAP_LENGTH (16)
200 return obstack_alloc (&stat_obstack
, size
);
203 /*----------------------------------------------------------------------
204 Generic traversal routines for finding matching sections.
208 walk_wild_section (ptr
, section
, file
, callback
, data
)
209 lang_wild_statement_type
*ptr
;
211 lang_input_statement_type
*file
;
215 /* Don't process sections from files which were excluded. */
216 if (ptr
->exclude_filename_list
!= NULL
)
218 struct name_list
*list_tmp
;
219 for (list_tmp
= ptr
->exclude_filename_list
; list_tmp
; list_tmp
= list_tmp
->next
)
223 if (wildcardp (list_tmp
->name
))
224 match
= fnmatch (list_tmp
->name
, file
->filename
, 0) == 0 ? true : false;
226 match
= strcmp (list_tmp
->name
, file
->filename
) == 0 ? true : false;
233 if (file
->just_syms_flag
== false)
235 register asection
*s
;
241 wildcard
= wildcardp (section
);
243 for (s
= file
->the_bfd
->sections
; s
!= NULL
; s
= s
->next
)
253 name
= bfd_get_section_name (file
->the_bfd
, s
);
255 match
= fnmatch (section
, name
, 0) == 0 ? true : false;
257 match
= strcmp (section
, name
) == 0 ? true : false;
261 (*callback
) (ptr
, s
, file
, data
);
266 /* Handle a wild statement for a single file F. */
269 walk_wild_file (s
, section
, f
, callback
, data
)
270 lang_wild_statement_type
*s
;
272 lang_input_statement_type
*f
;
276 if (f
->the_bfd
== NULL
277 || ! bfd_check_format (f
->the_bfd
, bfd_archive
))
278 walk_wild_section (s
, section
, f
, callback
, data
);
283 /* This is an archive file. We must map each member of the
284 archive separately. */
285 member
= bfd_openr_next_archived_file (f
->the_bfd
, (bfd
*) NULL
);
286 while (member
!= NULL
)
288 /* When lookup_name is called, it will call the add_symbols
289 entry point for the archive. For each element of the
290 archive which is included, BFD will call ldlang_add_file,
291 which will set the usrdata field of the member to the
292 lang_input_statement. */
293 if (member
->usrdata
!= NULL
)
295 walk_wild_section (s
, section
,
296 (lang_input_statement_type
*) member
->usrdata
,
300 member
= bfd_openr_next_archived_file (f
->the_bfd
, member
);
306 walk_wild (s
, section
, file
, callback
, data
)
307 lang_wild_statement_type
*s
;
313 if (file
== (char *) NULL
)
315 /* Perform the iteration over all files in the list. */
316 LANG_FOR_EACH_INPUT_STATEMENT (f
)
318 walk_wild_file (s
, section
, f
, callback
, data
);
321 else if (wildcardp (file
))
323 LANG_FOR_EACH_INPUT_STATEMENT (f
)
325 if (fnmatch (file
, f
->filename
, FNM_FILE_NAME
) == 0)
326 walk_wild_file (s
, section
, f
, callback
, data
);
331 lang_input_statement_type
*f
;
333 /* Perform the iteration over a single file. */
334 f
= lookup_name (file
);
335 walk_wild_file (s
, section
, f
, callback
, data
);
339 /*----------------------------------------------------------------------
340 lang_for_each_statement walks the parse tree and calls the provided
341 function for each node
345 lang_for_each_statement_worker (func
, s
)
346 void (*func
) PARAMS ((lang_statement_union_type
*));
347 lang_statement_union_type
*s
;
349 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->next
)
353 switch (s
->header
.type
)
355 case lang_constructors_statement_enum
:
356 lang_for_each_statement_worker (func
, constructor_list
.head
);
358 case lang_output_section_statement_enum
:
359 lang_for_each_statement_worker
361 s
->output_section_statement
.children
.head
);
363 case lang_wild_statement_enum
:
364 lang_for_each_statement_worker
366 s
->wild_statement
.children
.head
);
368 case lang_group_statement_enum
:
369 lang_for_each_statement_worker (func
,
370 s
->group_statement
.children
.head
);
372 case lang_data_statement_enum
:
373 case lang_reloc_statement_enum
:
374 case lang_object_symbols_statement_enum
:
375 case lang_output_statement_enum
:
376 case lang_target_statement_enum
:
377 case lang_input_section_enum
:
378 case lang_input_statement_enum
:
379 case lang_assignment_statement_enum
:
380 case lang_padding_statement_enum
:
381 case lang_address_statement_enum
:
382 case lang_fill_statement_enum
:
392 lang_for_each_statement (func
)
393 void (*func
) PARAMS ((lang_statement_union_type
*));
395 lang_for_each_statement_worker (func
,
396 statement_list
.head
);
399 /*----------------------------------------------------------------------*/
401 lang_list_init (list
)
402 lang_statement_list_type
*list
;
404 list
->head
= (lang_statement_union_type
*) NULL
;
405 list
->tail
= &list
->head
;
408 /*----------------------------------------------------------------------
410 build a new statement node for the parse tree
415 lang_statement_union_type
*
416 new_statement (type
, size
, list
)
417 enum statement_enum type
;
419 lang_statement_list_type
* list
;
421 lang_statement_union_type
*new = (lang_statement_union_type
*)
424 new->header
.type
= type
;
425 new->header
.next
= (lang_statement_union_type
*) NULL
;
426 lang_statement_append (list
, new, &new->header
.next
);
431 Build a new input file node for the language. There are several ways
432 in which we treat an input file, eg, we only look at symbols, or
433 prefix it with a -l etc.
435 We can be supplied with requests for input files more than once;
436 they may, for example be split over serveral lines like foo.o(.text)
437 foo.o(.data) etc, so when asked for a file we check that we havn't
438 got it already so we don't duplicate the bfd.
441 static lang_input_statement_type
*
442 new_afile (name
, file_type
, target
, add_to_list
)
444 lang_input_file_enum_type file_type
;
448 lang_input_statement_type
*p
;
451 p
= new_stat (lang_input_statement
, stat_ptr
);
454 p
= ((lang_input_statement_type
*)
455 stat_alloc (sizeof (lang_input_statement_type
)));
456 p
->header
.next
= NULL
;
459 lang_has_input_file
= true;
463 case lang_input_file_is_symbols_only_enum
:
465 p
->is_archive
= false;
467 p
->local_sym_name
= name
;
468 p
->just_syms_flag
= true;
469 p
->search_dirs_flag
= false;
471 case lang_input_file_is_fake_enum
:
473 p
->is_archive
= false;
475 p
->local_sym_name
= name
;
476 p
->just_syms_flag
= false;
477 p
->search_dirs_flag
= false;
479 case lang_input_file_is_l_enum
:
480 p
->is_archive
= true;
483 p
->local_sym_name
= concat ("-l", name
, (const char *) NULL
);
484 p
->just_syms_flag
= false;
485 p
->search_dirs_flag
= true;
487 case lang_input_file_is_marker_enum
:
489 p
->is_archive
= false;
491 p
->local_sym_name
= name
;
492 p
->just_syms_flag
= false;
493 p
->search_dirs_flag
= true;
495 case lang_input_file_is_search_file_enum
:
497 p
->is_archive
= false;
499 p
->local_sym_name
= name
;
500 p
->just_syms_flag
= false;
501 p
->search_dirs_flag
= true;
503 case lang_input_file_is_file_enum
:
505 p
->is_archive
= false;
507 p
->local_sym_name
= name
;
508 p
->just_syms_flag
= false;
509 p
->search_dirs_flag
= false;
514 p
->the_bfd
= (bfd
*) NULL
;
515 p
->asymbols
= (asymbol
**) NULL
;
516 p
->next_real_file
= (lang_statement_union_type
*) NULL
;
517 p
->next
= (lang_statement_union_type
*) NULL
;
519 p
->dynamic
= config
.dynamic_link
;
520 p
->whole_archive
= whole_archive
;
522 lang_statement_append (&input_file_chain
,
523 (lang_statement_union_type
*) p
,
528 lang_input_statement_type
*
529 lang_add_input_file (name
, file_type
, target
)
531 lang_input_file_enum_type file_type
;
534 lang_has_input_file
= true;
535 return new_afile (name
, file_type
, target
, true);
538 /* Build enough state so that the parser can build its tree */
542 obstack_begin (&stat_obstack
, 1000);
544 stat_ptr
= &statement_list
;
546 lang_list_init (stat_ptr
);
548 lang_list_init (&input_file_chain
);
549 lang_list_init (&lang_output_section_statement
);
550 lang_list_init (&file_chain
);
551 first_file
= lang_add_input_file ((char *) NULL
,
552 lang_input_file_is_marker_enum
,
554 abs_output_section
= lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME
);
556 abs_output_section
->bfd_section
= bfd_abs_section_ptr
;
560 /*----------------------------------------------------------------------
561 A region is an area of memory declared with the
562 MEMORY { name:org=exp, len=exp ... }
565 We maintain a list of all the regions here
567 If no regions are specified in the script, then the default is used
568 which is created when looked up to be the entire data space
571 static lang_memory_region_type
*lang_memory_region_list
;
572 static lang_memory_region_type
**lang_memory_region_list_tail
= &lang_memory_region_list
;
574 lang_memory_region_type
*
575 lang_memory_region_lookup (name
)
576 CONST
char *CONST name
;
578 lang_memory_region_type
*p
;
580 for (p
= lang_memory_region_list
;
581 p
!= (lang_memory_region_type
*) NULL
;
584 if (strcmp (p
->name
, name
) == 0)
591 /* This code used to always use the first region in the list as the
592 default region. I changed it to instead use a region
593 encompassing all of memory as the default region. This permits
594 NOLOAD sections to work reasonably without requiring a region.
595 People should specify what region they mean, if they really want
597 if (strcmp (name
, "*default*") == 0)
599 if (lang_memory_region_list
!= (lang_memory_region_type
*) NULL
)
601 return lang_memory_region_list
;
607 lang_memory_region_type
*new =
608 (lang_memory_region_type
*) stat_alloc (sizeof (lang_memory_region_type
));
610 new->name
= buystring (name
);
611 new->next
= (lang_memory_region_type
*) NULL
;
613 *lang_memory_region_list_tail
= new;
614 lang_memory_region_list_tail
= &new->next
;
618 new->length
= ~(bfd_size_type
)0;
620 new->had_full_message
= false;
627 lang_memory_region_type
*
628 lang_memory_default (section
)
631 lang_memory_region_type
*p
;
633 flagword sec_flags
= section
->flags
;
635 /* Override SEC_DATA to mean a writable section. */
636 if ((sec_flags
& (SEC_ALLOC
| SEC_READONLY
| SEC_CODE
)) == SEC_ALLOC
)
637 sec_flags
|= SEC_DATA
;
639 for (p
= lang_memory_region_list
;
640 p
!= (lang_memory_region_type
*) NULL
;
643 if ((p
->flags
& sec_flags
) != 0
644 && (p
->not_flags
& sec_flags
) == 0)
649 return lang_memory_region_lookup ("*default*");
652 lang_output_section_statement_type
*
653 lang_output_section_find (name
)
654 CONST
char *CONST name
;
656 lang_statement_union_type
*u
;
657 lang_output_section_statement_type
*lookup
;
659 for (u
= lang_output_section_statement
.head
;
660 u
!= (lang_statement_union_type
*) NULL
;
663 lookup
= &u
->output_section_statement
;
664 if (strcmp (name
, lookup
->name
) == 0)
669 return (lang_output_section_statement_type
*) NULL
;
672 lang_output_section_statement_type
*
673 lang_output_section_statement_lookup (name
)
674 CONST
char *CONST name
;
676 lang_output_section_statement_type
*lookup
;
678 lookup
= lang_output_section_find (name
);
679 if (lookup
== (lang_output_section_statement_type
*) NULL
)
682 lookup
= (lang_output_section_statement_type
*)
683 new_stat (lang_output_section_statement
, stat_ptr
);
684 lookup
->region
= (lang_memory_region_type
*) NULL
;
685 lookup
->lma_region
= (lang_memory_region_type
*) NULL
;
687 lookup
->block_value
= 1;
690 lookup
->next
= (lang_statement_union_type
*) NULL
;
691 lookup
->bfd_section
= (asection
*) NULL
;
692 lookup
->processed
= false;
693 lookup
->sectype
= normal_section
;
694 lookup
->addr_tree
= (etree_type
*) NULL
;
695 lang_list_init (&lookup
->children
);
697 lookup
->memspec
= (CONST
char *) NULL
;
699 lookup
->subsection_alignment
= -1;
700 lookup
->section_alignment
= -1;
701 lookup
->load_base
= (union etree_union
*) NULL
;
702 lookup
->phdrs
= NULL
;
704 lang_statement_append (&lang_output_section_statement
,
705 (lang_statement_union_type
*) lookup
,
712 lang_map_flags (flag
)
715 if (flag
& SEC_ALLOC
)
721 if (flag
& SEC_READONLY
)
734 lang_memory_region_type
*m
;
736 minfo (_("\nMemory Configuration\n\n"));
737 fprintf (config
.map_file
, "%-16s %-18s %-18s %s\n",
738 _("Name"), _("Origin"), _("Length"), _("Attributes"));
740 for (m
= lang_memory_region_list
;
741 m
!= (lang_memory_region_type
*) NULL
;
747 fprintf (config
.map_file
, "%-16s ", m
->name
);
749 sprintf_vma (buf
, m
->origin
);
750 minfo ("0x%s ", buf
);
758 minfo ("0x%V", m
->length
);
759 if (m
->flags
|| m
->not_flags
)
767 lang_map_flags (m
->flags
);
773 lang_map_flags (m
->not_flags
);
780 fprintf (config
.map_file
, _("\nLinker script and memory map\n\n"));
785 /* Initialize an output section. */
789 lang_output_section_statement_type
*s
;
791 section_userdata_type
*new;
793 if (s
->bfd_section
!= NULL
)
796 if (strcmp (s
->name
, DISCARD_SECTION_NAME
) == 0)
797 einfo (_("%P%F: Illegal use of `%s' section"), DISCARD_SECTION_NAME
);
799 new = ((section_userdata_type
*)
800 stat_alloc (sizeof (section_userdata_type
)));
802 s
->bfd_section
= bfd_get_section_by_name (output_bfd
, s
->name
);
803 if (s
->bfd_section
== (asection
*) NULL
)
804 s
->bfd_section
= bfd_make_section (output_bfd
, s
->name
);
805 if (s
->bfd_section
== (asection
*) NULL
)
807 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
808 output_bfd
->xvec
->name
, s
->name
);
810 s
->bfd_section
->output_section
= s
->bfd_section
;
812 /* We initialize an output sections output offset to minus its own */
813 /* vma to allow us to output a section through itself */
814 s
->bfd_section
->output_offset
= 0;
815 get_userdata (s
->bfd_section
) = (PTR
) new;
817 /* If there is a base address, make sure that any sections it might
818 mention are initialized. */
819 if (s
->addr_tree
!= NULL
)
820 exp_init_os (s
->addr_tree
);
823 /* Make sure that all output sections mentioned in an expression are
830 switch (exp
->type
.node_class
)
833 exp_init_os (exp
->assign
.src
);
837 exp_init_os (exp
->binary
.lhs
);
838 exp_init_os (exp
->binary
.rhs
);
842 exp_init_os (exp
->trinary
.cond
);
843 exp_init_os (exp
->trinary
.lhs
);
844 exp_init_os (exp
->trinary
.rhs
);
848 exp_init_os (exp
->unary
.child
);
852 switch (exp
->type
.node_code
)
858 lang_output_section_statement_type
*os
;
860 os
= lang_output_section_find (exp
->name
.name
);
861 if (os
!= NULL
&& os
->bfd_section
== NULL
)
872 /* Sections marked with the SEC_LINK_ONCE flag should only be linked
873 once into the output. This routine checks each section, and
874 arrange to discard it if a section of the same name has already
875 been linked. If the section has COMDAT information, then it uses
876 that to decide whether the section should be included. This code
877 assumes that all relevant sections have the SEC_LINK_ONCE flag set;
878 that is, it does not depend solely upon the section name.
879 section_already_linked is called via bfd_map_over_sections. */
881 /* This is the shape of the elements inside the already_linked hash
882 table. It maps a name onto a list of already_linked elements with
883 the same name. It's possible to get more than one element in a
884 list if the COMDAT sections have different names. */
886 struct already_linked_hash_entry
888 struct bfd_hash_entry root
;
889 struct already_linked
*entry
;
892 struct already_linked
894 struct already_linked
*next
;
898 /* The hash table. */
900 static struct bfd_hash_table already_linked_table
;
904 section_already_linked (abfd
, sec
, data
)
909 lang_input_statement_type
*entry
= (lang_input_statement_type
*) data
;
912 struct already_linked
*l
;
913 struct already_linked_hash_entry
*already_linked_list
;
915 /* If we are only reading symbols from this object, then we want to
916 discard all sections. */
917 if (entry
->just_syms_flag
)
919 sec
->output_section
= bfd_abs_section_ptr
;
920 sec
->output_offset
= sec
->vma
;
924 flags
= bfd_get_section_flags (abfd
, sec
);
926 if ((flags
& SEC_LINK_ONCE
) == 0)
929 /* FIXME: When doing a relocateable link, we may have trouble
930 copying relocations in other sections that refer to local symbols
931 in the section being discarded. Those relocations will have to
932 be converted somehow; as of this writing I'm not sure that any of
933 the backends handle that correctly.
935 It is tempting to instead not discard link once sections when
936 doing a relocateable link (technically, they should be discarded
937 whenever we are building constructors). However, that fails,
938 because the linker winds up combining all the link once sections
939 into a single large link once section, which defeats the purpose
940 of having link once sections in the first place.
942 Also, not merging link once sections in a relocateable link
943 causes trouble for MIPS ELF, which relies in link once semantics
944 to handle the .reginfo section correctly. */
946 name
= bfd_get_section_name (abfd
, sec
);
948 already_linked_list
=
949 ((struct already_linked_hash_entry
*)
950 bfd_hash_lookup (&already_linked_table
, name
, true, false));
952 for (l
= already_linked_list
->entry
; l
!= NULL
; l
= l
->next
)
954 if (sec
->comdat
== NULL
955 || l
->sec
->comdat
== NULL
956 || strcmp (sec
->comdat
->name
, l
->sec
->comdat
->name
) == 0)
958 /* The section has already been linked. See if we should
960 switch (flags
& SEC_LINK_DUPLICATES
)
965 case SEC_LINK_DUPLICATES_DISCARD
:
968 case SEC_LINK_DUPLICATES_ONE_ONLY
:
969 if (sec
->comdat
== NULL
)
970 einfo (_("%P: %B: warning: ignoring duplicate section `%s'\n"),
973 einfo (_("%P: %B: warning: ignoring duplicate `%s' section symbol `%s'\n"),
974 abfd
, name
, sec
->comdat
->name
);
977 case SEC_LINK_DUPLICATES_SAME_CONTENTS
:
978 /* FIXME: We should really dig out the contents of both
979 sections and memcmp them. The COFF/PE spec says that
980 the Microsoft linker does not implement this
981 correctly, so I'm not going to bother doing it
984 case SEC_LINK_DUPLICATES_SAME_SIZE
:
985 if (bfd_section_size (abfd
, sec
)
986 != bfd_section_size (l
->sec
->owner
, l
->sec
))
987 einfo (_("%P: %B: warning: duplicate section `%s' has different size\n"),
992 /* Set the output_section field so that wild_doit does not
993 create a lang_input_section structure for this section.
994 Since there might be a symbol in the section being
995 discarded, we must retain a pointer to the section which
996 we are really going to use. */
997 sec
->output_section
= bfd_abs_section_ptr
;
998 if (sec
->comdat
!= NULL
)
999 sec
->comdat
->sec
= l
->sec
;
1005 /* This is the first section with this name. Record it. Allocate
1006 the memory from the same obstack as the hash table is kept in. */
1008 l
= ((struct already_linked
*)
1009 bfd_hash_allocate (&already_linked_table
, sizeof *l
));
1012 l
->next
= already_linked_list
->entry
;
1013 already_linked_list
->entry
= l
;
1016 /* Support routines for the hash table used by section_already_linked,
1017 initialize the table, fill in an entry and remove the table. */
1019 static struct bfd_hash_entry
*
1020 already_linked_newfunc (entry
, table
, string
)
1021 struct bfd_hash_entry
*entry ATTRIBUTE_UNUSED
;
1022 struct bfd_hash_table
*table
;
1023 const char *string ATTRIBUTE_UNUSED
;
1025 struct already_linked_hash_entry
*ret
=
1026 bfd_hash_allocate (table
, sizeof (struct already_linked_hash_entry
));
1030 return (struct bfd_hash_entry
*) ret
;
1034 already_linked_table_init ()
1036 if (! bfd_hash_table_init_n (&already_linked_table
,
1037 already_linked_newfunc
,
1039 einfo (_("%P%F: Failed to create hash table\n"));
1043 already_linked_table_free ()
1045 bfd_hash_table_free (&already_linked_table
);
1048 /* The wild routines.
1050 These expand statements like *(.text) and foo.o to a list of
1051 explicit actions, like foo.o(.text), bar.o(.text) and
1052 foo.o(.text, .data). */
1054 /* Return true if the PATTERN argument is a wildcard pattern.
1055 Although backslashes are treated specially if a pattern contains
1056 wildcards, we do not consider the mere presence of a backslash to
1057 be enough to cause the the pattern to be treated as a wildcard.
1058 That lets us handle DOS filenames more naturally. */
1062 const char *pattern
;
1066 for (s
= pattern
; *s
!= '\0'; ++s
)
1074 /* Add SECTION to the output section OUTPUT. Do this by creating a
1075 lang_input_section statement which is placed at PTR. FILE is the
1076 input file which holds SECTION. */
1079 wild_doit (ptr
, section
, output
, file
)
1080 lang_statement_list_type
*ptr
;
1082 lang_output_section_statement_type
*output
;
1083 lang_input_statement_type
*file
;
1088 flags
= bfd_get_section_flags (section
->owner
, section
);
1092 /* If we are doing a final link, discard sections marked with
1094 if (! link_info
.relocateable
1095 && (flags
& SEC_EXCLUDE
) != 0)
1098 /* Discard input sections which are assigned to a section named
1099 DISCARD_SECTION_NAME. */
1100 if (strcmp (output
->name
, DISCARD_SECTION_NAME
) == 0)
1103 /* Discard debugging sections if we are stripping debugging
1105 if ((link_info
.strip
== strip_debugger
|| link_info
.strip
== strip_all
)
1106 && (flags
& SEC_DEBUGGING
) != 0)
1111 if (section
->output_section
== NULL
)
1113 /* This prevents future calls from assigning this section. */
1114 section
->output_section
= bfd_abs_section_ptr
;
1119 if (section
->output_section
== NULL
)
1122 lang_input_section_type
*new;
1125 if (output
->bfd_section
== NULL
)
1133 /* Add a section reference to the list */
1134 new = new_stat (lang_input_section
, ptr
);
1136 new->section
= section
;
1138 section
->output_section
= output
->bfd_section
;
1140 flags
= section
->flags
;
1142 /* We don't copy the SEC_NEVER_LOAD flag from an input section
1143 to an output section, because we want to be able to include a
1144 SEC_NEVER_LOAD section in the middle of an otherwise loaded
1145 section (I don't know why we want to do this, but we do).
1146 build_link_order in ldwrite.c handles this case by turning
1147 the embedded SEC_NEVER_LOAD section into a fill. */
1149 flags
&= ~ SEC_NEVER_LOAD
;
1151 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
1152 already been processed. One reason to do this is that on pe
1153 format targets, .text$foo sections go into .text and it's odd
1154 to see .text with SEC_LINK_ONCE set. */
1156 if (! link_info
.relocateable
)
1157 flags
&= ~ (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
);
1159 /* If this is not the first input section, and the SEC_READONLY
1160 flag is not currently set, then don't set it just because the
1161 input section has it set. */
1163 if (! first
&& (section
->output_section
->flags
& SEC_READONLY
) == 0)
1164 flags
&= ~ SEC_READONLY
;
1166 section
->output_section
->flags
|= flags
;
1168 /* If SEC_READONLY is not set in the input section, then clear
1169 it from the output section. */
1170 if ((section
->flags
& SEC_READONLY
) == 0)
1171 section
->output_section
->flags
&= ~SEC_READONLY
;
1173 switch (output
->sectype
)
1175 case normal_section
:
1180 case overlay_section
:
1181 output
->bfd_section
->flags
&= ~SEC_ALLOC
;
1183 case noload_section
:
1184 output
->bfd_section
->flags
&= ~SEC_LOAD
;
1185 output
->bfd_section
->flags
|= SEC_NEVER_LOAD
;
1189 /* Copy over SEC_SMALL_DATA. */
1190 if (section
->flags
& SEC_SMALL_DATA
)
1191 section
->output_section
->flags
|= SEC_SMALL_DATA
;
1193 if (section
->alignment_power
> output
->bfd_section
->alignment_power
)
1194 output
->bfd_section
->alignment_power
= section
->alignment_power
;
1196 /* If supplied an aligment, then force it. */
1197 if (output
->section_alignment
!= -1)
1198 output
->bfd_section
->alignment_power
= output
->section_alignment
;
1202 /* Handle wildcard sorting. This returns the lang_input_section which
1203 should follow the one we are going to create for SECTION and FILE,
1204 based on the sorting requirements of WILD. It returns NULL if the
1205 new section should just go at the end of the current list. */
1207 static lang_statement_union_type
*
1208 wild_sort (wild
, file
, section
)
1209 lang_wild_statement_type
*wild
;
1210 lang_input_statement_type
*file
;
1213 const char *section_name
;
1214 lang_statement_union_type
*l
;
1216 if (! wild
->filenames_sorted
&& ! wild
->sections_sorted
)
1219 section_name
= bfd_get_section_name (file
->the_bfd
, section
);
1220 for (l
= wild
->children
.head
; l
!= NULL
; l
= l
->next
)
1222 lang_input_section_type
*ls
;
1224 if (l
->header
.type
!= lang_input_section_enum
)
1226 ls
= &l
->input_section
;
1228 /* Sorting by filename takes precedence over sorting by section
1231 if (wild
->filenames_sorted
)
1233 const char *fn
, *ln
;
1237 /* The PE support for the .idata section as generated by
1238 dlltool assumes that files will be sorted by the name of
1239 the archive and then the name of the file within the
1242 if (file
->the_bfd
!= NULL
1243 && bfd_my_archive (file
->the_bfd
) != NULL
)
1245 fn
= bfd_get_filename (bfd_my_archive (file
->the_bfd
));
1250 fn
= file
->filename
;
1254 if (ls
->ifile
->the_bfd
!= NULL
1255 && bfd_my_archive (ls
->ifile
->the_bfd
) != NULL
)
1257 ln
= bfd_get_filename (bfd_my_archive (ls
->ifile
->the_bfd
));
1262 ln
= ls
->ifile
->filename
;
1266 i
= strcmp (fn
, ln
);
1275 fn
= file
->filename
;
1277 ln
= ls
->ifile
->filename
;
1279 i
= strcmp (fn
, ln
);
1287 /* Here either the files are not sorted by name, or we are
1288 looking at the sections for this file. */
1290 if (wild
->sections_sorted
)
1292 if (strcmp (section_name
,
1293 bfd_get_section_name (ls
->ifile
->the_bfd
,
1303 /* Expand a wild statement for a particular FILE. SECTION may be
1304 NULL, in which case it is a wild card. */
1307 output_section_callback (ptr
, section
, file
, output
)
1308 lang_wild_statement_type
*ptr
;
1310 lang_input_statement_type
*file
;
1313 lang_statement_union_type
*before
;
1315 /* If the wild pattern was marked KEEP, the member sections
1316 should be as well. */
1317 if (ptr
->keep_sections
)
1318 section
->flags
|= SEC_KEEP
;
1320 before
= wild_sort (ptr
, file
, section
);
1322 /* Here BEFORE points to the lang_input_section which
1323 should follow the one we are about to add. If BEFORE
1324 is NULL, then the section should just go at the end
1325 of the current list. */
1328 wild_doit (&ptr
->children
, section
,
1329 (lang_output_section_statement_type
*) output
,
1333 lang_statement_list_type list
;
1334 lang_statement_union_type
**pp
;
1336 lang_list_init (&list
);
1337 wild_doit (&list
, section
,
1338 (lang_output_section_statement_type
*) output
,
1341 /* If we are discarding the section, LIST.HEAD will
1343 if (list
.head
!= NULL
)
1345 ASSERT (list
.head
->next
== NULL
);
1347 for (pp
= &ptr
->children
.head
;
1350 ASSERT (*pp
!= NULL
);
1352 list
.head
->next
= *pp
;
1358 /* This is passed a file name which must have been seen already and
1359 added to the statement tree. We will see if it has been opened
1360 already and had its symbols read. If not then we'll read it. */
1362 static lang_input_statement_type
*
1366 lang_input_statement_type
*search
;
1368 for (search
= (lang_input_statement_type
*) input_file_chain
.head
;
1369 search
!= (lang_input_statement_type
*) NULL
;
1370 search
= (lang_input_statement_type
*) search
->next_real_file
)
1372 if (search
->filename
== (char *) NULL
&& name
== (char *) NULL
)
1374 if (search
->filename
!= (char *) NULL
1375 && name
!= (char *) NULL
1376 && strcmp (search
->filename
, name
) == 0)
1380 if (search
== (lang_input_statement_type
*) NULL
)
1381 search
= new_afile (name
, lang_input_file_is_file_enum
, default_target
,
1384 /* If we have already added this file, or this file is not real
1385 (FIXME: can that ever actually happen?) or the name is NULL
1386 (FIXME: can that ever actually happen?) don't add this file. */
1389 || search
->filename
== (const char *) NULL
)
1392 load_symbols (search
, (lang_statement_list_type
*) NULL
);
1397 /* Get the symbols for an input file. */
1400 load_symbols (entry
, place
)
1401 lang_input_statement_type
*entry
;
1402 lang_statement_list_type
*place
;
1409 ldfile_open_file (entry
);
1411 if (! bfd_check_format (entry
->the_bfd
, bfd_archive
)
1412 && ! bfd_check_format_matches (entry
->the_bfd
, bfd_object
, &matching
))
1415 lang_statement_list_type
*hold
;
1417 err
= bfd_get_error ();
1418 if (err
== bfd_error_file_ambiguously_recognized
)
1422 einfo (_("%B: file not recognized: %E\n"), entry
->the_bfd
);
1423 einfo (_("%B: matching formats:"), entry
->the_bfd
);
1424 for (p
= matching
; *p
!= NULL
; p
++)
1428 else if (err
!= bfd_error_file_not_recognized
1430 einfo (_("%F%B: file not recognized: %E\n"), entry
->the_bfd
);
1432 bfd_close (entry
->the_bfd
);
1433 entry
->the_bfd
= NULL
;
1435 /* See if the emulation has some special knowledge. */
1437 if (ldemul_unrecognized_file (entry
))
1440 /* Try to interpret the file as a linker script. */
1442 ldfile_open_command_file (entry
->filename
);
1447 ldfile_assumed_script
= true;
1448 parser_input
= input_script
;
1450 ldfile_assumed_script
= false;
1457 if (ldemul_recognized_file (entry
))
1460 /* We don't call ldlang_add_file for an archive. Instead, the
1461 add_symbols entry point will call ldlang_add_file, via the
1462 add_archive_element callback, for each element of the archive
1464 switch (bfd_get_format (entry
->the_bfd
))
1470 ldlang_add_file (entry
);
1471 if (trace_files
|| trace_file_tries
)
1472 info_msg ("%I\n", entry
);
1476 if (entry
->whole_archive
)
1478 bfd
*member
= bfd_openr_next_archived_file (entry
->the_bfd
,
1480 while (member
!= NULL
)
1482 if (! bfd_check_format (member
, bfd_object
))
1483 einfo (_("%F%B: object %B in archive is not object\n"),
1484 entry
->the_bfd
, member
);
1485 if (! ((*link_info
.callbacks
->add_archive_element
)
1486 (&link_info
, member
, "--whole-archive")))
1488 if (! bfd_link_add_symbols (member
, &link_info
))
1489 einfo (_("%F%B: could not read symbols: %E\n"), member
);
1490 member
= bfd_openr_next_archived_file (entry
->the_bfd
,
1494 entry
->loaded
= true;
1500 if (! bfd_link_add_symbols (entry
->the_bfd
, &link_info
))
1501 einfo (_("%F%B: could not read symbols: %E\n"), entry
->the_bfd
);
1503 entry
->loaded
= true;
1508 /* Handle a wild statement. SECTION or FILE or both may be NULL,
1509 indicating that it is a wildcard. Separate lang_input_section
1510 statements are created for each part of the expansion; they are
1511 added after the wild statement S. OUTPUT is the output section. */
1514 wild (s
, section
, file
, target
, output
)
1515 lang_wild_statement_type
*s
;
1516 const char *section
;
1518 const char *target ATTRIBUTE_UNUSED
;
1519 lang_output_section_statement_type
*output
;
1521 walk_wild (s
, section
, file
, output_section_callback
, (void *) output
);
1523 if (section
!= (char *) NULL
1524 && strcmp (section
, "COMMON") == 0
1525 && default_common_section
== NULL
)
1527 /* Remember the section that common is going to in case we later
1528 get something which doesn't know where to put it. */
1529 default_common_section
= output
;
1533 /* Return true iff target is the sought target. */
1535 get_target (target
, data
)
1536 const bfd_target
* target
;
1539 const char * sought
= (const char *) data
;
1541 return strcmp (target
->name
, sought
) == 0;
1544 /* Like strcpy() but convert to lower case as well. */
1552 while ((c
= * src
++) != 0)
1554 if (isupper ((unsigned char) c
))
1563 /* Remove the first occurance of needle (if any) in haystack
1566 strcut (haystack
, needle
)
1570 haystack
= strstr (haystack
, needle
);
1576 for (src
= haystack
+ strlen (needle
); * src
;)
1577 * haystack
++ = * src
++;
1583 /* Compare two target format name strings.
1584 Return a value indicating how "similar" they are. */
1586 name_compare (first
, second
)
1594 copy1
= xmalloc (strlen (first
) + 1);
1595 copy2
= xmalloc (strlen (second
) + 1);
1597 /* Convert the names to lower case. */
1598 stricpy (copy1
, first
);
1599 stricpy (copy2
, second
);
1601 /* Remove and endian strings from the name. */
1602 strcut (copy1
, "big");
1603 strcut (copy1
, "little");
1604 strcut (copy2
, "big");
1605 strcut (copy2
, "little");
1607 /* Return a value based on how many characters match,
1608 starting from the beginning. If both strings are
1609 the same then return 10 * their length. */
1610 for (result
= 0; copy1
[result
] == copy2
[result
]; result
++)
1611 if (copy1
[result
] == 0)
1623 /* Set by closest_target_match() below. */
1624 static const bfd_target
* winner
;
1626 /* Scan all the valid bfd targets looking for one that has the endianness
1627 requirement that was specified on the command line, and is the nearest
1628 match to the original output target. */
1630 closest_target_match (target
, data
)
1631 const bfd_target
* target
;
1634 const bfd_target
* original
= (const bfd_target
*) data
;
1636 if (command_line
.endian
== ENDIAN_BIG
&& target
->byteorder
!= BFD_ENDIAN_BIG
)
1639 if (command_line
.endian
== ENDIAN_LITTLE
&& target
->byteorder
!= BFD_ENDIAN_LITTLE
)
1642 /* Must be the same flavour. */
1643 if (target
->flavour
!= original
->flavour
)
1646 /* If we have not found a potential winner yet, then record this one. */
1653 /* Oh dear, we now have two potential candidates for a successful match.
1654 Compare their names and choose the better one. */
1655 if (name_compare (target
->name
, original
->name
) > name_compare (winner
->name
, original
->name
))
1658 /* Keep on searching until wqe have checked them all. */
1662 /* Return the BFD target format of the first input file. */
1664 get_first_input_target ()
1666 char * target
= NULL
;
1668 LANG_FOR_EACH_INPUT_STATEMENT (s
)
1670 if (s
->header
.type
== lang_input_statement_enum
1673 ldfile_open_file (s
);
1675 if (s
->the_bfd
!= NULL
1676 && bfd_check_format (s
->the_bfd
, bfd_object
))
1678 target
= bfd_get_target (s
->the_bfd
);
1689 /* Open the output file. */
1697 /* Has the user told us which output format to use ? */
1698 if (output_target
== (char *) NULL
)
1700 /* No - has the current target been set to something other than the default ? */
1701 if (current_target
!= default_target
)
1702 output_target
= current_target
;
1704 /* No - can we determine the format of the first input file ? */
1707 output_target
= get_first_input_target ();
1709 /* Failed - use the default output target. */
1710 if (output_target
== NULL
)
1711 output_target
= default_target
;
1715 /* Has the user requested a particular endianness on the command line ? */
1716 if (command_line
.endian
!= ENDIAN_UNSET
)
1718 const bfd_target
* target
;
1719 enum bfd_endian desired_endian
;
1721 /* Get the chosen target. */
1722 target
= bfd_search_for_target (get_target
, (void *) output_target
);
1724 if (command_line
.endian
== ENDIAN_BIG
)
1725 desired_endian
= BFD_ENDIAN_BIG
;
1727 desired_endian
= BFD_ENDIAN_LITTLE
;
1729 /* See if the target has the wrong endianness. This should not happen
1730 if the linker script has provided big and little endian alternatives,
1731 but some scrips don't do this. */
1732 if (target
->byteorder
!= desired_endian
)
1734 /* If it does, then see if the target provides
1735 an alternative with the correct endianness. */
1736 if (target
->alternative_target
!= NULL
1737 && (target
->alternative_target
->byteorder
== desired_endian
))
1738 output_target
= target
->alternative_target
->name
;
1741 /* Try to find a target as similar as possible to the default
1742 target, but which has the desired endian characteristic. */
1743 (void) bfd_search_for_target (closest_target_match
, (void *) target
);
1745 /* Oh dear - we could not find any targets that satisfy our requirements. */
1747 einfo (_("%P: warning: could not find any targets that match endianness requirement\n"));
1749 output_target
= winner
->name
;
1754 output
= bfd_openw (name
, output_target
);
1756 if (output
== (bfd
*) NULL
)
1758 if (bfd_get_error () == bfd_error_invalid_target
)
1759 einfo (_("%P%F: target %s not found\n"), output_target
);
1761 einfo (_("%P%F: cannot open output file %s: %E\n"), name
);
1764 delete_output_file_on_failure
= true;
1766 /* output->flags |= D_PAGED;*/
1768 if (! bfd_set_format (output
, bfd_object
))
1769 einfo (_("%P%F:%s: can not make object file: %E\n"), name
);
1770 if (! bfd_set_arch_mach (output
,
1771 ldfile_output_architecture
,
1772 ldfile_output_machine
))
1773 einfo (_("%P%F:%s: can not set architecture: %E\n"), name
);
1775 link_info
.hash
= bfd_link_hash_table_create (output
);
1776 if (link_info
.hash
== (struct bfd_link_hash_table
*) NULL
)
1777 einfo (_("%P%F: can not create link hash table: %E\n"));
1779 bfd_set_gp_size (output
, g_switch_value
);
1784 ldlang_open_output (statement
)
1785 lang_statement_union_type
* statement
;
1787 switch (statement
->header
.type
)
1789 case lang_output_statement_enum
:
1790 ASSERT (output_bfd
== (bfd
*) NULL
);
1791 output_bfd
= open_output (statement
->output_statement
.name
);
1792 ldemul_set_output_arch ();
1793 if (config
.magic_demand_paged
&& !link_info
.relocateable
)
1794 output_bfd
->flags
|= D_PAGED
;
1796 output_bfd
->flags
&= ~D_PAGED
;
1797 if (config
.text_read_only
)
1798 output_bfd
->flags
|= WP_TEXT
;
1800 output_bfd
->flags
&= ~WP_TEXT
;
1801 if (link_info
.traditional_format
)
1802 output_bfd
->flags
|= BFD_TRADITIONAL_FORMAT
;
1804 output_bfd
->flags
&= ~BFD_TRADITIONAL_FORMAT
;
1807 case lang_target_statement_enum
:
1808 current_target
= statement
->target_statement
.target
;
1815 /* Open all the input files. */
1818 open_input_bfds (s
, force
)
1819 lang_statement_union_type
*s
;
1822 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->next
)
1824 switch (s
->header
.type
)
1826 case lang_constructors_statement_enum
:
1827 open_input_bfds (constructor_list
.head
, force
);
1829 case lang_output_section_statement_enum
:
1830 open_input_bfds (s
->output_section_statement
.children
.head
, force
);
1832 case lang_wild_statement_enum
:
1833 /* Maybe we should load the file's symbols */
1834 if (s
->wild_statement
.filename
1835 && ! wildcardp (s
->wild_statement
.filename
))
1836 (void) lookup_name (s
->wild_statement
.filename
);
1837 open_input_bfds (s
->wild_statement
.children
.head
, force
);
1839 case lang_group_statement_enum
:
1841 struct bfd_link_hash_entry
*undefs
;
1843 /* We must continually search the entries in the group
1844 until no new symbols are added to the list of undefined
1849 undefs
= link_info
.hash
->undefs_tail
;
1850 open_input_bfds (s
->group_statement
.children
.head
, true);
1852 while (undefs
!= link_info
.hash
->undefs_tail
);
1855 case lang_target_statement_enum
:
1856 current_target
= s
->target_statement
.target
;
1858 case lang_input_statement_enum
:
1859 if (s
->input_statement
.real
)
1861 lang_statement_list_type add
;
1863 s
->input_statement
.target
= current_target
;
1865 /* If we are being called from within a group, and this
1866 is an archive which has already been searched, then
1867 force it to be researched. */
1869 && s
->input_statement
.loaded
1870 && bfd_check_format (s
->input_statement
.the_bfd
,
1872 s
->input_statement
.loaded
= false;
1874 lang_list_init (&add
);
1876 load_symbols (&s
->input_statement
, &add
);
1878 if (add
.head
!= NULL
)
1880 *add
.tail
= s
->next
;
1891 /* If there are [COMMONS] statements, put a wild one into the bss section */
1894 lang_reasonable_defaults ()
1897 lang_output_section_statement_lookup (".text");
1898 lang_output_section_statement_lookup (".data");
1900 default_common_section
=
1901 lang_output_section_statement_lookup (".bss");
1904 if (placed_commons
== false)
1906 lang_wild_statement_type
*new =
1907 new_stat (lang_wild_statement
,
1908 &default_common_section
->children
);
1910 new->section_name
= "COMMON";
1911 new->filename
= (char *) NULL
;
1912 lang_list_init (&new->children
);
1919 Add the supplied name to the symbol table as an undefined reference.
1920 Remove items from the chain as we open input bfds
1922 typedef struct ldlang_undef_chain_list
1924 struct ldlang_undef_chain_list
*next
;
1926 } ldlang_undef_chain_list_type
;
1928 static ldlang_undef_chain_list_type
*ldlang_undef_chain_list_head
;
1931 ldlang_add_undef (name
)
1932 CONST
char *CONST name
;
1934 ldlang_undef_chain_list_type
*new =
1935 ((ldlang_undef_chain_list_type
*)
1936 stat_alloc (sizeof (ldlang_undef_chain_list_type
)));
1938 new->next
= ldlang_undef_chain_list_head
;
1939 ldlang_undef_chain_list_head
= new;
1941 new->name
= buystring (name
);
1944 /* Run through the list of undefineds created above and place them
1945 into the linker hash table as undefined symbols belonging to the
1949 lang_place_undefineds ()
1951 ldlang_undef_chain_list_type
*ptr
;
1953 for (ptr
= ldlang_undef_chain_list_head
;
1954 ptr
!= (ldlang_undef_chain_list_type
*) NULL
;
1957 struct bfd_link_hash_entry
*h
;
1959 h
= bfd_link_hash_lookup (link_info
.hash
, ptr
->name
, true, false, true);
1960 if (h
== (struct bfd_link_hash_entry
*) NULL
)
1961 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1962 if (h
->type
== bfd_link_hash_new
)
1964 h
->type
= bfd_link_hash_undefined
;
1965 h
->u
.undef
.abfd
= NULL
;
1966 bfd_link_add_undef (link_info
.hash
, h
);
1971 /* Open input files and attatch to output sections */
1973 map_input_to_output_sections (s
, target
, output_section_statement
)
1974 lang_statement_union_type
* s
;
1976 lang_output_section_statement_type
* output_section_statement
;
1978 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->next
)
1980 switch (s
->header
.type
)
1984 case lang_wild_statement_enum
:
1985 wild (&s
->wild_statement
, s
->wild_statement
.section_name
,
1986 s
->wild_statement
.filename
, target
,
1987 output_section_statement
);
1990 case lang_constructors_statement_enum
:
1991 map_input_to_output_sections (constructor_list
.head
,
1993 output_section_statement
);
1995 case lang_output_section_statement_enum
:
1996 map_input_to_output_sections (s
->output_section_statement
.children
.head
,
1998 &s
->output_section_statement
);
2000 case lang_output_statement_enum
:
2002 case lang_target_statement_enum
:
2003 target
= s
->target_statement
.target
;
2005 case lang_group_statement_enum
:
2006 map_input_to_output_sections (s
->group_statement
.children
.head
,
2008 output_section_statement
);
2010 case lang_fill_statement_enum
:
2011 case lang_input_section_enum
:
2012 case lang_object_symbols_statement_enum
:
2013 case lang_data_statement_enum
:
2014 case lang_reloc_statement_enum
:
2015 case lang_padding_statement_enum
:
2016 case lang_input_statement_enum
:
2017 if (output_section_statement
!= NULL
2018 && output_section_statement
->bfd_section
== NULL
)
2019 init_os (output_section_statement
);
2021 case lang_assignment_statement_enum
:
2022 if (output_section_statement
!= NULL
2023 && output_section_statement
->bfd_section
== NULL
)
2024 init_os (output_section_statement
);
2026 /* Make sure that any sections mentioned in the assignment
2028 exp_init_os (s
->assignment_statement
.exp
);
2030 case lang_afile_asection_pair_statement_enum
:
2033 case lang_address_statement_enum
:
2034 /* Mark the specified section with the supplied address */
2036 lang_output_section_statement_type
*os
=
2037 lang_output_section_statement_lookup
2038 (s
->address_statement
.section_name
);
2040 if (os
->bfd_section
== NULL
)
2042 os
->addr_tree
= s
->address_statement
.address
;
2050 print_output_section_statement (output_section_statement
)
2051 lang_output_section_statement_type
* output_section_statement
;
2053 asection
*section
= output_section_statement
->bfd_section
;
2056 if (output_section_statement
!= abs_output_section
)
2058 minfo ("\n%s", output_section_statement
->name
);
2060 if (section
!= NULL
)
2062 print_dot
= section
->vma
;
2064 len
= strlen (output_section_statement
->name
);
2065 if (len
>= SECTION_NAME_MAP_LENGTH
- 1)
2070 while (len
< SECTION_NAME_MAP_LENGTH
)
2076 minfo ("0x%V %W", section
->vma
, section
->_raw_size
);
2078 if (output_section_statement
->load_base
!= NULL
)
2082 addr
= exp_get_abs_int (output_section_statement
->load_base
, 0,
2083 "load base", lang_final_phase_enum
);
2084 minfo (_(" load address 0x%V"), addr
);
2091 print_statement_list (output_section_statement
->children
.head
,
2092 output_section_statement
);
2096 print_assignment (assignment
, output_section
)
2097 lang_assignment_statement_type
* assignment
;
2098 lang_output_section_statement_type
* output_section
;
2101 etree_value_type result
;
2103 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
2106 result
= exp_fold_tree (assignment
->exp
->assign
.src
, output_section
,
2107 lang_final_phase_enum
, print_dot
, &print_dot
);
2109 minfo ("0x%V", result
.value
+ result
.section
->bfd_section
->vma
);
2120 exp_print_tree (assignment
->exp
);
2126 print_input_statement (statm
)
2127 lang_input_statement_type
* statm
;
2129 if (statm
->filename
!= (char *) NULL
)
2131 fprintf (config
.map_file
, "LOAD %s\n", statm
->filename
);
2135 /* Print all symbols defined in a particular section. This is called
2136 via bfd_link_hash_traverse. */
2139 print_one_symbol (hash_entry
, ptr
)
2140 struct bfd_link_hash_entry
*hash_entry
;
2143 asection
*sec
= (asection
*) ptr
;
2145 if ((hash_entry
->type
== bfd_link_hash_defined
2146 || hash_entry
->type
== bfd_link_hash_defweak
)
2147 && sec
== hash_entry
->u
.def
.section
)
2151 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
2154 (hash_entry
->u
.def
.value
2155 + hash_entry
->u
.def
.section
->output_offset
2156 + hash_entry
->u
.def
.section
->output_section
->vma
));
2158 minfo (" %T\n", hash_entry
->root
.string
);
2164 /* Print information about an input section to the map file. */
2167 print_input_section (in
)
2168 lang_input_section_type
* in
;
2170 asection
*i
= in
->section
;
2171 bfd_size_type size
= i
->_cooked_size
!= 0 ? i
->_cooked_size
: i
->_raw_size
;
2172 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2173 ldfile_output_machine
);
2178 minfo ("%s", i
->name
);
2180 if (i
->output_section
!= NULL
)
2184 len
= 1 + strlen (i
->name
);
2185 if (len
>= SECTION_NAME_MAP_LENGTH
- 1)
2190 while (len
< SECTION_NAME_MAP_LENGTH
)
2196 minfo ("0x%V %W %B\n",
2197 i
->output_section
->vma
+ i
->output_offset
, size
/ opb
,
2200 if (i
->_cooked_size
!= 0 && i
->_cooked_size
!= i
->_raw_size
)
2202 len
= SECTION_NAME_MAP_LENGTH
+ 3;
2214 minfo (_("%W (size before relaxing)\n"), i
->_raw_size
);
2217 bfd_link_hash_traverse (link_info
.hash
, print_one_symbol
, (PTR
) i
);
2219 print_dot
= i
->output_section
->vma
+ i
->output_offset
+ size
/ opb
;
2225 print_fill_statement (fill
)
2226 lang_fill_statement_type
* fill
;
2228 fprintf (config
.map_file
, " FILL mask 0x%x\n", fill
->fill
);
2232 print_data_statement (data
)
2233 lang_data_statement_type
* data
;
2239 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2240 ldfile_output_machine
);
2242 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
2245 addr
= data
->output_vma
;
2246 if (data
->output_section
!= NULL
)
2247 addr
+= data
->output_section
->vma
;
2275 minfo ("0x%V %W %s 0x%v", addr
, size
, name
, data
->value
);
2277 if (data
->exp
->type
.node_class
!= etree_value
)
2280 exp_print_tree (data
->exp
);
2285 print_dot
= addr
+ size
/ opb
;
2289 /* Print an address statement. These are generated by options like
2293 print_address_statement (address
)
2294 lang_address_statement_type
*address
;
2296 minfo (_("Address of section %s set to "), address
->section_name
);
2297 exp_print_tree (address
->address
);
2301 /* Print a reloc statement. */
2304 print_reloc_statement (reloc
)
2305 lang_reloc_statement_type
*reloc
;
2310 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2311 ldfile_output_machine
);
2313 for (i
= 0; i
< SECTION_NAME_MAP_LENGTH
; i
++)
2316 addr
= reloc
->output_vma
;
2317 if (reloc
->output_section
!= NULL
)
2318 addr
+= reloc
->output_section
->vma
;
2320 size
= bfd_get_reloc_size (reloc
->howto
);
2322 minfo ("0x%V %W RELOC %s ", addr
, size
, reloc
->howto
->name
);
2324 if (reloc
->name
!= NULL
)
2325 minfo ("%s+", reloc
->name
);
2327 minfo ("%s+", reloc
->section
->name
);
2329 exp_print_tree (reloc
->addend_exp
);
2333 print_dot
= addr
+ size
/ opb
;
2337 print_padding_statement (s
)
2338 lang_padding_statement_type
*s
;
2342 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2343 ldfile_output_machine
);
2347 len
= sizeof " *fill*" - 1;
2348 while (len
< SECTION_NAME_MAP_LENGTH
)
2354 addr
= s
->output_offset
;
2355 if (s
->output_section
!= NULL
)
2356 addr
+= s
->output_section
->vma
;
2357 minfo ("0x%V %W", addr
, s
->size
);
2360 minfo (" %u", s
->fill
);
2364 print_dot
= addr
+ s
->size
/ opb
;
2368 print_wild_statement (w
, os
)
2369 lang_wild_statement_type
* w
;
2370 lang_output_section_statement_type
* os
;
2374 if (w
->filenames_sorted
)
2376 if (w
->exclude_filename_list
!= NULL
)
2379 minfo ("EXCLUDE_FILE ( %s", w
->exclude_filename_list
->name
);
2380 for (tmp
=w
->exclude_filename_list
->next
; tmp
; tmp
= tmp
->next
)
2381 minfo (", %s", tmp
->name
);
2384 if (w
->filename
!= NULL
)
2385 minfo ("%s", w
->filename
);
2388 if (w
->filenames_sorted
)
2392 if (w
->sections_sorted
)
2394 if (w
->section_name
!= NULL
)
2395 minfo ("%s", w
->section_name
);
2398 if (w
->sections_sorted
)
2404 print_statement_list (w
->children
.head
, os
);
2407 /* Print a group statement. */
2411 lang_group_statement_type
*s
;
2412 lang_output_section_statement_type
*os
;
2414 fprintf (config
.map_file
, "START GROUP\n");
2415 print_statement_list (s
->children
.head
, os
);
2416 fprintf (config
.map_file
, "END GROUP\n");
2419 /* Print the list of statements in S.
2420 This can be called for any statement type. */
2423 print_statement_list (s
, os
)
2424 lang_statement_union_type
*s
;
2425 lang_output_section_statement_type
*os
;
2429 print_statement (s
, os
);
2434 /* Print the first statement in statement list S.
2435 This can be called for any statement type. */
2438 print_statement (s
, os
)
2439 lang_statement_union_type
*s
;
2440 lang_output_section_statement_type
*os
;
2442 switch (s
->header
.type
)
2445 fprintf (config
.map_file
, _("Fail with %d\n"), s
->header
.type
);
2448 case lang_constructors_statement_enum
:
2449 if (constructor_list
.head
!= NULL
)
2451 if (constructors_sorted
)
2452 minfo (" SORT (CONSTRUCTORS)\n");
2454 minfo (" CONSTRUCTORS\n");
2455 print_statement_list (constructor_list
.head
, os
);
2458 case lang_wild_statement_enum
:
2459 print_wild_statement (&s
->wild_statement
, os
);
2461 case lang_address_statement_enum
:
2462 print_address_statement (&s
->address_statement
);
2464 case lang_object_symbols_statement_enum
:
2465 minfo (" CREATE_OBJECT_SYMBOLS\n");
2467 case lang_fill_statement_enum
:
2468 print_fill_statement (&s
->fill_statement
);
2470 case lang_data_statement_enum
:
2471 print_data_statement (&s
->data_statement
);
2473 case lang_reloc_statement_enum
:
2474 print_reloc_statement (&s
->reloc_statement
);
2476 case lang_input_section_enum
:
2477 print_input_section (&s
->input_section
);
2479 case lang_padding_statement_enum
:
2480 print_padding_statement (&s
->padding_statement
);
2482 case lang_output_section_statement_enum
:
2483 print_output_section_statement (&s
->output_section_statement
);
2485 case lang_assignment_statement_enum
:
2486 print_assignment (&s
->assignment_statement
, os
);
2488 case lang_target_statement_enum
:
2489 fprintf (config
.map_file
, "TARGET(%s)\n", s
->target_statement
.target
);
2491 case lang_output_statement_enum
:
2492 minfo ("OUTPUT(%s", s
->output_statement
.name
);
2493 if (output_target
!= NULL
)
2494 minfo (" %s", output_target
);
2497 case lang_input_statement_enum
:
2498 print_input_statement (&s
->input_statement
);
2500 case lang_group_statement_enum
:
2501 print_group (&s
->group_statement
, os
);
2503 case lang_afile_asection_pair_statement_enum
:
2512 print_statement_list (statement_list
.head
, abs_output_section
);
2515 /* Print the first N statements in statement list S to STDERR.
2516 If N == 0, nothing is printed.
2517 If N < 0, the entire list is printed.
2518 Intended to be called from GDB. */
2521 dprint_statement (s
, n
)
2522 lang_statement_union_type
* s
;
2525 FILE *map_save
= config
.map_file
;
2527 config
.map_file
= stderr
;
2530 print_statement_list (s
, abs_output_section
);
2533 while (s
&& --n
>= 0)
2535 print_statement (s
, abs_output_section
);
2540 config
.map_file
= map_save
;
2544 insert_pad (this_ptr
, fill
, power
, output_section_statement
, dot
)
2545 lang_statement_union_type
** this_ptr
;
2548 asection
* output_section_statement
;
2551 /* Align this section first to the
2552 input sections requirement, then
2553 to the output section's requirement.
2554 If this alignment is > than any seen before,
2555 then record it too. Perform the alignment by
2556 inserting a magic 'padding' statement.
2559 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2560 ldfile_output_machine
);
2561 unsigned int alignment_needed
= align_power (dot
, power
) - dot
;
2563 if (alignment_needed
!= 0)
2565 lang_statement_union_type
*new =
2566 ((lang_statement_union_type
*)
2567 stat_alloc (sizeof (lang_padding_statement_type
)));
2569 /* Link into existing chain */
2570 new->header
.next
= *this_ptr
;
2572 new->header
.type
= lang_padding_statement_enum
;
2573 new->padding_statement
.output_section
= output_section_statement
;
2574 new->padding_statement
.output_offset
=
2575 dot
- output_section_statement
->vma
;
2576 new->padding_statement
.fill
= fill
;
2577 new->padding_statement
.size
= alignment_needed
* opb
;
2581 /* Remember the most restrictive alignment */
2582 if (power
> output_section_statement
->alignment_power
)
2584 output_section_statement
->alignment_power
= power
;
2586 output_section_statement
->_raw_size
+= alignment_needed
* opb
;
2588 return dot
+ alignment_needed
;
2591 /* Work out how much this section will move the dot point */
2593 size_input_section (this_ptr
, output_section_statement
, fill
, dot
, relax
)
2594 lang_statement_union_type
** this_ptr
;
2595 lang_output_section_statement_type
* output_section_statement
;
2598 boolean relax ATTRIBUTE_UNUSED
;
2600 lang_input_section_type
*is
= &((*this_ptr
)->input_section
);
2601 asection
*i
= is
->section
;
2602 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2603 ldfile_output_machine
);
2605 if (is
->ifile
->just_syms_flag
== false)
2607 if (output_section_statement
->subsection_alignment
!= -1)
2608 i
->alignment_power
=
2609 output_section_statement
->subsection_alignment
;
2611 dot
= insert_pad (this_ptr
, fill
, i
->alignment_power
,
2612 output_section_statement
->bfd_section
, dot
);
2614 /* Remember where in the output section this input section goes */
2616 i
->output_offset
= dot
- output_section_statement
->bfd_section
->vma
;
2618 /* Mark how big the output section must be to contain this now
2620 if (i
->_cooked_size
!= 0)
2621 dot
+= i
->_cooked_size
/ opb
;
2623 dot
+= i
->_raw_size
/ opb
;
2624 output_section_statement
->bfd_section
->_raw_size
=
2625 (dot
- output_section_statement
->bfd_section
->vma
) * opb
;
2629 i
->output_offset
= i
->vma
- output_section_statement
->bfd_section
->vma
;
2635 #define IGNORE_SECTION(bfd, s) \
2636 (((bfd_get_section_flags (bfd, s) & (SEC_ALLOC | SEC_LOAD)) != (SEC_ALLOC | SEC_LOAD)) \
2637 || bfd_section_size (bfd, s) == 0)
2639 /* Check to see if any allocated sections overlap with other allocated
2640 sections. This can happen when the linker script specifically specifies
2641 the output section addresses of the two sections. */
2643 lang_check_section_addresses ()
2646 unsigned opb
= bfd_octets_per_byte (output_bfd
);
2648 /* Scan all sections in the output list. */
2649 for (s
= output_bfd
->sections
; s
!= NULL
; s
= s
->next
)
2653 /* Ignore sections which are not loaded or which have no contents. */
2654 if (IGNORE_SECTION (output_bfd
, s
))
2657 /* Once we reach section 's' stop our seach. This prevents two
2658 warning messages from being produced, one for 'section A overlaps
2659 section B' and one for 'section B overlaps section A'. */
2660 for (os
= output_bfd
->sections
; os
!= s
; os
= os
->next
)
2667 /* Only consider loadable sections with real contents. */
2668 if (IGNORE_SECTION (output_bfd
, os
))
2671 /* We must check the sections' LMA addresses not their
2672 VMA addresses because overlay sections can have
2673 overlapping VMAs but they must have distinct LMAs. */
2674 s_start
= bfd_section_lma (output_bfd
, s
);
2675 os_start
= bfd_section_lma (output_bfd
, os
);
2676 s_end
= s_start
+ bfd_section_size (output_bfd
, s
) / opb
- 1;
2677 os_end
= os_start
+ bfd_section_size (output_bfd
, os
) / opb
- 1;
2679 /* Look for an overlap. */
2680 if ((s_end
< os_start
) || (s_start
> os_end
))
2684 _("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
2685 s
->name
, s_start
, s_end
, os
->name
, os_start
, os_end
);
2687 /* Once we have found one overlap for this section,
2688 stop looking for others. */
2694 /* This variable indicates whether bfd_relax_section should be called
2697 static boolean relax_again
;
2699 /* Make sure the new address is within the region. We explicitly permit the
2700 current address to be at the exact end of the region when the address is
2701 non-zero, in case the region is at the end of addressable memory and the
2702 calculation wraps around. */
2705 os_region_check (os
, region
, tree
, base
)
2706 lang_output_section_statement_type
*os
;
2707 struct memory_region_struct
*region
;
2711 if ((region
->current
< region
->origin
2712 || (region
->current
- region
->origin
> region
->length
))
2713 && ((region
->current
!= region
->origin
+ region
->length
)
2716 if (tree
!= (etree_type
*) NULL
)
2718 einfo (_("%X%P: address 0x%v of %B section %s is not within region %s\n"),
2720 os
->bfd_section
->owner
,
2721 os
->bfd_section
->name
,
2726 einfo (_("%X%P: region %s is full (%B section %s)\n"),
2728 os
->bfd_section
->owner
,
2729 os
->bfd_section
->name
);
2731 /* Reset the region pointer. */
2732 region
->current
= region
->origin
;
2736 /* Set the sizes for all the output sections. */
2739 lang_size_sections (s
, output_section_statement
, prev
, fill
, dot
, relax
)
2740 lang_statement_union_type
* s
;
2741 lang_output_section_statement_type
* output_section_statement
;
2742 lang_statement_union_type
** prev
;
2747 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
2748 ldfile_output_machine
);
2750 /* Size up the sections from their constituent parts. */
2751 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->next
)
2753 switch (s
->header
.type
)
2755 case lang_output_section_statement_enum
:
2758 lang_output_section_statement_type
*os
= &s
->output_section_statement
;
2760 if (os
->bfd_section
== NULL
)
2761 /* This section was never actually created. */
2764 /* If this is a COFF shared library section, use the size and
2765 address from the input section. FIXME: This is COFF
2766 specific; it would be cleaner if there were some other way
2767 to do this, but nothing simple comes to mind. */
2768 if ((os
->bfd_section
->flags
& SEC_COFF_SHARED_LIBRARY
) != 0)
2772 if (os
->children
.head
== NULL
2773 || os
->children
.head
->next
!= NULL
2774 || os
->children
.head
->header
.type
!= lang_input_section_enum
)
2775 einfo (_("%P%X: Internal error on COFF shared library section %s\n"),
2778 input
= os
->children
.head
->input_section
.section
;
2779 bfd_set_section_vma (os
->bfd_section
->owner
,
2781 bfd_section_vma (input
->owner
, input
));
2782 os
->bfd_section
->_raw_size
= input
->_raw_size
;
2786 if (bfd_is_abs_section (os
->bfd_section
))
2788 /* No matter what happens, an abs section starts at zero. */
2789 ASSERT (os
->bfd_section
->vma
== 0);
2793 if (os
->addr_tree
== (etree_type
*) NULL
)
2795 /* No address specified for this section, get one
2796 from the region specification. */
2797 if (os
->region
== (lang_memory_region_type
*) NULL
2798 || (((bfd_get_section_flags (output_bfd
, os
->bfd_section
)
2799 & (SEC_ALLOC
| SEC_LOAD
)) != 0)
2800 && os
->region
->name
[0] == '*'
2801 && strcmp (os
->region
->name
, "*default*") == 0))
2803 os
->region
= lang_memory_default (os
->bfd_section
);
2806 /* If a loadable section is using the default memory
2807 region, and some non default memory regions were
2808 defined, issue a warning. */
2809 if ((bfd_get_section_flags (output_bfd
, os
->bfd_section
)
2810 & (SEC_ALLOC
| SEC_LOAD
)) != 0
2811 && ! link_info
.relocateable
2812 && strcmp (os
->region
->name
, "*default*") == 0
2813 && lang_memory_region_list
!= NULL
2814 && (strcmp (lang_memory_region_list
->name
, "*default*") != 0
2815 || lang_memory_region_list
->next
!= NULL
))
2816 einfo (_("%P: warning: no memory region specified for section `%s'\n"),
2817 bfd_get_section_name (output_bfd
, os
->bfd_section
));
2819 dot
= os
->region
->current
;
2821 if (os
->section_alignment
== -1)
2826 dot
= align_power (dot
, os
->bfd_section
->alignment_power
);
2828 if (dot
!= olddot
&& config
.warn_section_align
)
2829 einfo (_("%P: warning: changing start of section %s by %u bytes\n"),
2830 os
->name
, (unsigned int) (dot
- olddot
));
2837 r
= exp_fold_tree (os
->addr_tree
,
2839 lang_allocating_phase_enum
,
2841 if (r
.valid_p
== false)
2843 einfo (_("%F%S: non constant address expression for section %s\n"),
2846 dot
= r
.value
+ r
.section
->bfd_section
->vma
;
2849 /* The section starts here.
2850 First, align to what the section needs. */
2852 if (os
->section_alignment
!= -1)
2853 dot
= align_power (dot
, os
->section_alignment
);
2855 bfd_set_section_vma (0, os
->bfd_section
, dot
);
2857 os
->bfd_section
->output_offset
= 0;
2860 (void) lang_size_sections (os
->children
.head
, os
, &os
->children
.head
,
2861 os
->fill
, dot
, relax
);
2863 /* put the section within the requested block size, or align at
2864 the block boundary */
2865 after
= ALIGN_N (os
->bfd_section
->vma
2866 + os
->bfd_section
->_raw_size
/ opb
,
2867 /* The coercion here is important, see ld.h. */
2868 (bfd_vma
) os
->block_value
);
2870 if (bfd_is_abs_section (os
->bfd_section
))
2871 ASSERT (after
== os
->bfd_section
->vma
);
2873 os
->bfd_section
->_raw_size
=
2874 (after
- os
->bfd_section
->vma
) * opb
;
2875 dot
= os
->bfd_section
->vma
+ os
->bfd_section
->_raw_size
/ opb
;
2876 os
->processed
= true;
2878 /* Update dot in the region ?
2879 We only do this if the section is going to be allocated,
2880 since unallocated sections do not contribute to the region's
2881 overall size in memory.
2883 If the SEC_NEVER_LOAD bit is not set, it will affect the
2884 addresses of sections after it. We have to update
2886 if (os
->region
!= (lang_memory_region_type
*) NULL
2887 && ((bfd_get_section_flags (output_bfd
, os
->bfd_section
)
2888 & SEC_NEVER_LOAD
) == 0
2889 || (bfd_get_section_flags (output_bfd
, os
->bfd_section
)
2890 & (SEC_ALLOC
| SEC_LOAD
))))
2892 os
->region
->current
= dot
;
2894 /* Make sure the new address is within the region. */
2895 os_region_check (os
, os
->region
, os
->addr_tree
,
2896 os
->bfd_section
->vma
);
2898 /* if there's no load address specified, use the run region as
2900 if (os
->lma_region
== NULL
&& os
->load_base
== NULL
)
2901 os
->lma_region
= os
->region
;
2903 if (os
->lma_region
!= NULL
)
2905 if (os
->load_base
!= NULL
)
2907 einfo (_("%X%P: use an absolute load address or a load memory region, not both\n"));
2911 /* don't allocate twice */
2912 if (os
->lma_region
!= os
->region
)
2914 /* set load_base, which will be handled later */
2915 os
->load_base
= exp_intop (os
->lma_region
->current
);
2916 os
->lma_region
->current
+=
2917 os
->bfd_section
->_raw_size
/ opb
;
2918 os_region_check (os
, os
->lma_region
, NULL
,
2919 os
->bfd_section
->lma
);
2927 case lang_constructors_statement_enum
:
2928 dot
= lang_size_sections (constructor_list
.head
,
2929 output_section_statement
,
2930 &s
->wild_statement
.children
.head
,
2935 case lang_data_statement_enum
:
2937 unsigned int size
= 0;
2939 s
->data_statement
.output_vma
= dot
- output_section_statement
->bfd_section
->vma
;
2940 s
->data_statement
.output_section
=
2941 output_section_statement
->bfd_section
;
2943 switch (s
->data_statement
.type
)
2964 output_section_statement
->bfd_section
->_raw_size
+= size
;
2965 /* The output section gets contents, and then we inspect for
2966 any flags set in the input script which override any ALLOC. */
2967 output_section_statement
->bfd_section
->flags
|= SEC_HAS_CONTENTS
;
2968 if (!(output_section_statement
->flags
& SEC_NEVER_LOAD
)) {
2969 output_section_statement
->bfd_section
->flags
|= SEC_ALLOC
| SEC_LOAD
;
2974 case lang_reloc_statement_enum
:
2978 s
->reloc_statement
.output_vma
=
2979 dot
- output_section_statement
->bfd_section
->vma
;
2980 s
->reloc_statement
.output_section
=
2981 output_section_statement
->bfd_section
;
2982 size
= bfd_get_reloc_size (s
->reloc_statement
.howto
);
2984 output_section_statement
->bfd_section
->_raw_size
+= size
;
2988 case lang_wild_statement_enum
:
2990 dot
= lang_size_sections (s
->wild_statement
.children
.head
,
2991 output_section_statement
,
2992 &s
->wild_statement
.children
.head
,
2998 case lang_object_symbols_statement_enum
:
2999 link_info
.create_object_symbols_section
=
3000 output_section_statement
->bfd_section
;
3002 case lang_output_statement_enum
:
3003 case lang_target_statement_enum
:
3005 case lang_input_section_enum
:
3009 i
= (*prev
)->input_section
.section
;
3012 if (i
->_cooked_size
== 0)
3013 i
->_cooked_size
= i
->_raw_size
;
3019 if (! bfd_relax_section (i
->owner
, i
, &link_info
, &again
))
3020 einfo (_("%P%F: can't relax section: %E\n"));
3024 dot
= size_input_section (prev
,
3025 output_section_statement
,
3026 output_section_statement
->fill
,
3030 case lang_input_statement_enum
:
3032 case lang_fill_statement_enum
:
3033 s
->fill_statement
.output_section
= output_section_statement
->bfd_section
;
3035 fill
= s
->fill_statement
.fill
;
3037 case lang_assignment_statement_enum
:
3039 bfd_vma newdot
= dot
;
3041 exp_fold_tree (s
->assignment_statement
.exp
,
3042 output_section_statement
,
3043 lang_allocating_phase_enum
,
3049 /* The assignment changed dot. Insert a pad. */
3050 if (output_section_statement
== abs_output_section
)
3052 /* If we don't have an output section, then just adjust
3053 the default memory address. */
3054 lang_memory_region_lookup ("*default*")->current
= newdot
;
3058 lang_statement_union_type
*new =
3059 ((lang_statement_union_type
*)
3060 stat_alloc (sizeof (lang_padding_statement_type
)));
3062 /* Link into existing chain. */
3063 new->header
.next
= *prev
;
3065 new->header
.type
= lang_padding_statement_enum
;
3066 new->padding_statement
.output_section
=
3067 output_section_statement
->bfd_section
;
3068 new->padding_statement
.output_offset
=
3069 dot
- output_section_statement
->bfd_section
->vma
;
3070 new->padding_statement
.fill
= fill
;
3071 new->padding_statement
.size
= (newdot
- dot
) * opb
;
3072 output_section_statement
->bfd_section
->_raw_size
+=
3073 new->padding_statement
.size
;
3081 case lang_padding_statement_enum
:
3082 /* If we are relaxing, and this is not the first pass, some
3083 padding statements may have been inserted during previous
3084 passes. We may have to move the padding statement to a new
3085 location if dot has a different value at this point in this
3086 pass than it did at this point in the previous pass. */
3087 s
->padding_statement
.output_offset
=
3088 dot
- output_section_statement
->bfd_section
->vma
;
3089 dot
+= s
->padding_statement
.size
/ opb
;
3090 output_section_statement
->bfd_section
->_raw_size
+=
3091 s
->padding_statement
.size
;
3094 case lang_group_statement_enum
:
3095 dot
= lang_size_sections (s
->group_statement
.children
.head
,
3096 output_section_statement
,
3097 &s
->group_statement
.children
.head
,
3105 /* This can only get here when relaxing is turned on. */
3107 case lang_address_statement_enum
:
3110 prev
= &s
->header
.next
;
3116 lang_do_assignments (s
, output_section_statement
, fill
, dot
)
3117 lang_statement_union_type
* s
;
3118 lang_output_section_statement_type
* output_section_statement
;
3122 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
3123 ldfile_output_machine
);
3125 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->next
)
3127 switch (s
->header
.type
)
3129 case lang_constructors_statement_enum
:
3130 dot
= lang_do_assignments (constructor_list
.head
,
3131 output_section_statement
,
3136 case lang_output_section_statement_enum
:
3138 lang_output_section_statement_type
*os
=
3139 &(s
->output_section_statement
);
3141 if (os
->bfd_section
!= NULL
)
3143 dot
= os
->bfd_section
->vma
;
3144 (void) lang_do_assignments (os
->children
.head
, os
,
3146 dot
= os
->bfd_section
->vma
+ os
->bfd_section
->_raw_size
/ opb
;
3151 /* If nothing has been placed into the output section then
3152 it won't have a bfd_section. */
3153 if (os
->bfd_section
)
3155 os
->bfd_section
->lma
3156 = exp_get_abs_int(os
->load_base
, 0,"load base", lang_final_phase_enum
);
3161 case lang_wild_statement_enum
:
3163 dot
= lang_do_assignments (s
->wild_statement
.children
.head
,
3164 output_section_statement
,
3169 case lang_object_symbols_statement_enum
:
3170 case lang_output_statement_enum
:
3171 case lang_target_statement_enum
:
3173 case lang_common_statement_enum
:
3176 case lang_data_statement_enum
:
3178 etree_value_type value
;
3180 value
= exp_fold_tree (s
->data_statement
.exp
,
3182 lang_final_phase_enum
, dot
, &dot
);
3183 s
->data_statement
.value
= value
.value
;
3184 if (value
.valid_p
== false)
3185 einfo (_("%F%P: invalid data statement\n"));
3189 switch (s
->data_statement
.type
)
3213 case lang_reloc_statement_enum
:
3215 etree_value_type value
;
3217 value
= exp_fold_tree (s
->reloc_statement
.addend_exp
,
3219 lang_final_phase_enum
, dot
, &dot
);
3220 s
->reloc_statement
.addend_value
= value
.value
;
3221 if (value
.valid_p
== false)
3222 einfo (_("%F%P: invalid reloc statement\n"));
3224 dot
+= bfd_get_reloc_size (s
->reloc_statement
.howto
) / opb
;
3227 case lang_input_section_enum
:
3229 asection
*in
= s
->input_section
.section
;
3231 if (in
->_cooked_size
!= 0)
3232 dot
+= in
->_cooked_size
/ opb
;
3234 dot
+= in
->_raw_size
/ opb
;
3238 case lang_input_statement_enum
:
3240 case lang_fill_statement_enum
:
3241 fill
= s
->fill_statement
.fill
;
3243 case lang_assignment_statement_enum
:
3245 exp_fold_tree (s
->assignment_statement
.exp
,
3246 output_section_statement
,
3247 lang_final_phase_enum
,
3253 case lang_padding_statement_enum
:
3254 dot
+= s
->padding_statement
.size
/ opb
;
3257 case lang_group_statement_enum
:
3258 dot
= lang_do_assignments (s
->group_statement
.children
.head
,
3259 output_section_statement
,
3267 case lang_address_statement_enum
:
3275 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
3276 operator .startof. (section_name), it produces an undefined symbol
3277 .startof.section_name. Similarly, when it sees
3278 .sizeof. (section_name), it produces an undefined symbol
3279 .sizeof.section_name. For all the output sections, we look for
3280 such symbols, and set them to the correct value. */
3287 if (link_info
.relocateable
)
3290 for (s
= output_bfd
->sections
; s
!= NULL
; s
= s
->next
)
3292 const char *secname
;
3294 struct bfd_link_hash_entry
*h
;
3296 secname
= bfd_get_section_name (output_bfd
, s
);
3297 buf
= xmalloc (10 + strlen (secname
));
3299 sprintf (buf
, ".startof.%s", secname
);
3300 h
= bfd_link_hash_lookup (link_info
.hash
, buf
, false, false, true);
3301 if (h
!= NULL
&& h
->type
== bfd_link_hash_undefined
)
3303 h
->type
= bfd_link_hash_defined
;
3304 h
->u
.def
.value
= bfd_get_section_vma (output_bfd
, s
);
3305 h
->u
.def
.section
= bfd_abs_section_ptr
;
3308 sprintf (buf
, ".sizeof.%s", secname
);
3309 h
= bfd_link_hash_lookup (link_info
.hash
, buf
, false, false, true);
3310 if (h
!= NULL
&& h
->type
== bfd_link_hash_undefined
)
3312 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
3313 ldfile_output_machine
);
3314 h
->type
= bfd_link_hash_defined
;
3315 if (s
->_cooked_size
!= 0)
3316 h
->u
.def
.value
= s
->_cooked_size
/ opb
;
3318 h
->u
.def
.value
= s
->_raw_size
/ opb
;
3319 h
->u
.def
.section
= bfd_abs_section_ptr
;
3329 struct bfd_link_hash_entry
*h
;
3332 if (link_info
.relocateable
|| link_info
.shared
)
3337 if (entry_symbol
== (char *) NULL
)
3339 /* No entry has been specified. Look for start, but don't warn
3340 if we don't find it. */
3341 entry_symbol
= "start";
3345 h
= bfd_link_hash_lookup (link_info
.hash
, entry_symbol
, false, false, true);
3346 if (h
!= (struct bfd_link_hash_entry
*) NULL
3347 && (h
->type
== bfd_link_hash_defined
3348 || h
->type
== bfd_link_hash_defweak
)
3349 && h
->u
.def
.section
->output_section
!= NULL
)
3353 val
= (h
->u
.def
.value
3354 + bfd_get_section_vma (output_bfd
,
3355 h
->u
.def
.section
->output_section
)
3356 + h
->u
.def
.section
->output_offset
);
3357 if (! bfd_set_start_address (output_bfd
, val
))
3358 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol
);
3365 /* We couldn't find the entry symbol. Try parsing it as a
3367 val
= bfd_scan_vma (entry_symbol
, &send
, 0);
3370 if (! bfd_set_start_address (output_bfd
, val
))
3371 einfo (_("%P%F: can't set start address\n"));
3377 /* Can't find the entry symbol, and it's not a number. Use
3378 the first address in the text section. */
3379 ts
= bfd_get_section_by_name (output_bfd
, ".text");
3380 if (ts
!= (asection
*) NULL
)
3383 einfo (_("%P: warning: cannot find entry symbol %s; defaulting to %V\n"),
3384 entry_symbol
, bfd_get_section_vma (output_bfd
, ts
));
3385 if (! bfd_set_start_address (output_bfd
,
3386 bfd_get_section_vma (output_bfd
,
3388 einfo (_("%P%F: can't set start address\n"));
3393 einfo (_("%P: warning: cannot find entry symbol %s; not setting start address\n"),
3400 /* This is a small function used when we want to ignore errors from
3404 #ifdef ANSI_PROTOTYPES
3405 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED
, ...)
3407 ignore_bfd_errors (s
)
3408 const char *s ATTRIBUTE_UNUSED
;
3411 /* Don't do anything. */
3414 /* Check that the architecture of all the input files is compatible
3415 with the output file. Also call the backend to let it do any
3416 other checking that is needed. */
3421 lang_statement_union_type
*file
;
3423 CONST bfd_arch_info_type
*compatible
;
3425 for (file
= file_chain
.head
;
3426 file
!= (lang_statement_union_type
*) NULL
;
3427 file
= file
->input_statement
.next
)
3429 input_bfd
= file
->input_statement
.the_bfd
;
3430 compatible
= bfd_arch_get_compatible (input_bfd
,
3432 if (compatible
== NULL
)
3434 if (command_line
.warn_mismatch
)
3435 einfo (_("%P: warning: %s architecture of input file `%B' is incompatible with %s output\n"),
3436 bfd_printable_name (input_bfd
), input_bfd
,
3437 bfd_printable_name (output_bfd
));
3441 bfd_error_handler_type pfn
= NULL
;
3443 /* If we aren't supposed to warn about mismatched input
3444 files, temporarily set the BFD error handler to a
3445 function which will do nothing. We still want to call
3446 bfd_merge_private_bfd_data, since it may set up
3447 information which is needed in the output file. */
3448 if (! command_line
.warn_mismatch
)
3449 pfn
= bfd_set_error_handler (ignore_bfd_errors
);
3450 if (! bfd_merge_private_bfd_data (input_bfd
, output_bfd
))
3452 if (command_line
.warn_mismatch
)
3453 einfo (_("%E%X: failed to merge target specific data of file %B\n"),
3456 if (! command_line
.warn_mismatch
)
3457 bfd_set_error_handler (pfn
);
3462 /* Look through all the global common symbols and attach them to the
3463 correct section. The -sort-common command line switch may be used
3464 to roughly sort the entries by size. */
3469 if (link_info
.relocateable
3470 && ! command_line
.force_common_definition
)
3473 if (! config
.sort_common
)
3474 bfd_link_hash_traverse (link_info
.hash
, lang_one_common
, (PTR
) NULL
);
3479 for (power
= 4; power
>= 0; power
--)
3480 bfd_link_hash_traverse (link_info
.hash
, lang_one_common
,
3485 /* Place one common symbol in the correct section. */
3488 lang_one_common (h
, info
)
3489 struct bfd_link_hash_entry
*h
;
3492 unsigned int power_of_two
;
3495 unsigned opb
= bfd_arch_mach_octets_per_byte (ldfile_output_architecture
,
3496 ldfile_output_machine
);
3498 if (h
->type
!= bfd_link_hash_common
)
3502 power_of_two
= h
->u
.c
.p
->alignment_power
;
3504 if (config
.sort_common
3505 && power_of_two
< (unsigned int) *(int *) info
)
3508 section
= h
->u
.c
.p
->section
;
3510 /* Increase the size of the section. */
3511 section
->_cooked_size
= ALIGN_N ((section
->_cooked_size
+ opb
- 1) / opb
,
3512 (bfd_size_type
) (1 << power_of_two
)) * opb
;
3514 /* Adjust the alignment if necessary. */
3515 if (power_of_two
> section
->alignment_power
)
3516 section
->alignment_power
= power_of_two
;
3518 /* Change the symbol from common to defined. */
3519 h
->type
= bfd_link_hash_defined
;
3520 h
->u
.def
.section
= section
;
3521 h
->u
.def
.value
= section
->_cooked_size
;
3523 /* Increase the size of the section. */
3524 section
->_cooked_size
+= size
;
3526 /* Make sure the section is allocated in memory, and make sure that
3527 it is no longer a common section. */
3528 section
->flags
|= SEC_ALLOC
;
3529 section
->flags
&= ~ SEC_IS_COMMON
;
3531 if (config
.map_file
!= NULL
)
3533 static boolean header_printed
;
3538 if (! header_printed
)
3540 minfo (_("\nAllocating common symbols\n"));
3541 minfo (_("Common symbol size file\n\n"));
3542 header_printed
= true;
3545 name
= demangle (h
->root
.string
);
3547 len
= strlen (name
);
3562 if (size
<= 0xffffffff)
3563 sprintf (buf
, "%lx", (unsigned long) size
);
3565 sprintf_vma (buf
, size
);
3575 minfo ("%B\n", section
->owner
);
3582 run through the input files and ensure that every input
3583 section has somewhere to go. If one is found without
3584 a destination then create an input request and place it
3585 into the statement tree.
3589 lang_place_orphans ()
3591 LANG_FOR_EACH_INPUT_STATEMENT (file
)
3595 for (s
= file
->the_bfd
->sections
;
3596 s
!= (asection
*) NULL
;
3599 if (s
->output_section
== (asection
*) NULL
)
3601 /* This section of the file is not attatched, root
3602 around for a sensible place for it to go */
3604 if (file
->just_syms_flag
)
3606 /* We are only retrieving symbol values from this
3607 file. We want the symbols to act as though the
3608 values in the file are absolute. */
3609 s
->output_section
= bfd_abs_section_ptr
;
3610 s
->output_offset
= s
->vma
;
3612 else if (strcmp (s
->name
, "COMMON") == 0)
3614 /* This is a lonely common section which must have
3615 come from an archive. We attach to the section
3616 with the wildcard. */
3617 if (! link_info
.relocateable
3618 || command_line
.force_common_definition
)
3620 if (default_common_section
== NULL
)
3623 /* This message happens when using the
3624 svr3.ifile linker script, so I have
3626 info_msg (_("%P: no [COMMON] command, defaulting to .bss\n"));
3628 default_common_section
=
3629 lang_output_section_statement_lookup (".bss");
3632 wild_doit (&default_common_section
->children
, s
,
3633 default_common_section
, file
);
3636 else if (ldemul_place_orphan (file
, s
))
3640 lang_output_section_statement_type
*os
=
3641 lang_output_section_statement_lookup (s
->name
);
3643 wild_doit (&os
->children
, s
, os
, file
);
3652 lang_set_flags (ptr
, flags
, invert
)
3653 lang_memory_region_type
*ptr
;
3657 flagword
*ptr_flags
;
3659 ptr_flags
= invert
? &ptr
->not_flags
: &ptr
->flags
;
3665 *ptr_flags
|= SEC_ALLOC
;
3669 *ptr_flags
|= SEC_READONLY
;
3673 *ptr_flags
|= SEC_DATA
;
3677 *ptr_flags
|= SEC_CODE
;
3682 *ptr_flags
|= SEC_LOAD
;
3686 einfo (_("%P%F: invalid syntax in flags\n"));
3693 /* Call a function on each input file. This function will be called
3694 on an archive, but not on the elements. */
3697 lang_for_each_input_file (func
)
3698 void (*func
) PARAMS ((lang_input_statement_type
*));
3700 lang_input_statement_type
*f
;
3702 for (f
= (lang_input_statement_type
*) input_file_chain
.head
;
3704 f
= (lang_input_statement_type
*) f
->next_real_file
)
3708 /* Call a function on each file. The function will be called on all
3709 the elements of an archive which are included in the link, but will
3710 not be called on the archive file itself. */
3713 lang_for_each_file (func
)
3714 void (*func
) PARAMS ((lang_input_statement_type
*));
3716 LANG_FOR_EACH_INPUT_STATEMENT (f
)
3727 lang_for_each_input_section (func
)
3728 void (*func
) PARAMS ((bfd
* ab
, asection
* as
));
3730 LANG_FOR_EACH_INPUT_STATEMENT (f
)
3734 for (s
= f
->the_bfd
->sections
;
3735 s
!= (asection
*) NULL
;
3738 func (f
->the_bfd
, s
);
3746 ldlang_add_file (entry
)
3747 lang_input_statement_type
* entry
;
3751 lang_statement_append (&file_chain
,
3752 (lang_statement_union_type
*) entry
,
3755 /* The BFD linker needs to have a list of all input BFDs involved in
3757 ASSERT (entry
->the_bfd
->link_next
== (bfd
*) NULL
);
3758 ASSERT (entry
->the_bfd
!= output_bfd
);
3759 for (pp
= &link_info
.input_bfds
;
3760 *pp
!= (bfd
*) NULL
;
3761 pp
= &(*pp
)->link_next
)
3763 *pp
= entry
->the_bfd
;
3764 entry
->the_bfd
->usrdata
= (PTR
) entry
;
3765 bfd_set_gp_size (entry
->the_bfd
, g_switch_value
);
3767 /* Look through the sections and check for any which should not be
3768 included in the link. We need to do this now, so that we can
3769 notice when the backend linker tries to report multiple
3770 definition errors for symbols which are in sections we aren't
3771 going to link. FIXME: It might be better to entirely ignore
3772 symbols which are defined in sections which are going to be
3773 discarded. This would require modifying the backend linker for
3774 each backend which might set the SEC_LINK_ONCE flag. If we do
3775 this, we should probably handle SEC_EXCLUDE in the same way. */
3777 bfd_map_over_sections (entry
->the_bfd
, section_already_linked
, (PTR
) entry
);
3781 lang_add_output (name
, from_script
)
3785 /* Make -o on command line override OUTPUT in script. */
3786 if (had_output_filename
== false || !from_script
)
3788 output_filename
= name
;
3789 had_output_filename
= true;
3794 static lang_output_section_statement_type
*current_section
;
3806 for (l
= 0; l
< 32; l
++)
3808 if (i
>= (unsigned int) x
)
3817 lang_enter_output_section_statement (output_section_statement_name
,
3818 address_exp
, sectype
, block_value
,
3819 align
, subalign
, ebase
)
3820 const char *output_section_statement_name
;
3821 etree_type
* address_exp
;
3822 enum section_type sectype
;
3823 bfd_vma block_value
;
3825 etree_type
*subalign
;
3828 lang_output_section_statement_type
*os
;
3832 lang_output_section_statement_lookup (output_section_statement_name
);
3836 /* Add this statement to tree */
3837 /* add_statement(lang_output_section_statement_enum,
3838 output_section_statement);*/
3839 /* Make next things chain into subchain of this */
3841 if (os
->addr_tree
==
3842 (etree_type
*) NULL
)
3847 os
->sectype
= sectype
;
3848 if (sectype
!= noload_section
)
3849 os
->flags
= SEC_NO_FLAGS
;
3851 os
->flags
= SEC_NEVER_LOAD
;
3852 os
->block_value
= block_value
? block_value
: 1;
3853 stat_ptr
= &os
->children
;
3855 os
->subsection_alignment
= topower(
3856 exp_get_value_int(subalign
, -1,
3857 "subsection alignment",
3859 os
->section_alignment
= topower(
3860 exp_get_value_int(align
, -1,
3861 "section alignment", 0));
3863 os
->load_base
= ebase
;
3870 lang_output_statement_type
*new =
3871 new_stat (lang_output_statement
, stat_ptr
);
3873 new->name
= output_filename
;
3876 /* Reset the current counters in the regions */
3878 reset_memory_regions ()
3880 lang_memory_region_type
*p
= lang_memory_region_list
;
3882 for (p
= lang_memory_region_list
;
3883 p
!= (lang_memory_region_type
*) NULL
;
3886 p
->old_length
= (bfd_size_type
) (p
->current
- p
->origin
);
3887 p
->current
= p
->origin
;
3891 /* Expand a wild statement for a particular FILE, marking its sections KEEP
3892 as needed. SECTION may be NULL, in which case it is a wild card. */
3895 gc_section_callback (ptr
, section
, file
, data
)
3896 lang_wild_statement_type
*ptr
;
3898 lang_input_statement_type
*file ATTRIBUTE_UNUSED
;
3899 void *data ATTRIBUTE_UNUSED
;
3901 /* If the wild pattern was marked KEEP, the member sections
3902 should be as well. */
3903 if (ptr
->keep_sections
)
3904 section
->flags
|= SEC_KEEP
;
3907 /* Handle a wild statement, marking it against GC. SECTION or FILE or both
3908 may be NULL, indicating that it is a wildcard. */
3911 lang_gc_wild (s
, section
, file
)
3912 lang_wild_statement_type
*s
;
3913 const char *section
;
3916 walk_wild (s
, section
, file
, gc_section_callback
, NULL
);
3919 /* Iterate over sections marking them against GC. */
3922 lang_gc_sections_1 (s
)
3923 lang_statement_union_type
* s
;
3925 for (; s
!= (lang_statement_union_type
*) NULL
; s
= s
->next
)
3927 switch (s
->header
.type
)
3929 case lang_wild_statement_enum
:
3930 lang_gc_wild (&s
->wild_statement
,
3931 s
->wild_statement
.section_name
,
3932 s
->wild_statement
.filename
);
3934 case lang_constructors_statement_enum
:
3935 lang_gc_sections_1 (constructor_list
.head
);
3937 case lang_output_section_statement_enum
:
3938 lang_gc_sections_1 (s
->output_section_statement
.children
.head
);
3940 case lang_group_statement_enum
:
3941 lang_gc_sections_1 (s
->group_statement
.children
.head
);
3952 struct bfd_link_hash_entry
*h
;
3953 ldlang_undef_chain_list_type
*ulist
, fake_list_start
;
3955 /* Keep all sections so marked in the link script. */
3957 lang_gc_sections_1 (statement_list
.head
);
3959 /* Keep all sections containing symbols undefined on the command-line.
3960 Handle the entry symbol at the same time. */
3962 if (entry_symbol
!= NULL
)
3964 fake_list_start
.next
= ldlang_undef_chain_list_head
;
3965 fake_list_start
.name
= (char *) entry_symbol
;
3966 ulist
= &fake_list_start
;
3969 ulist
= ldlang_undef_chain_list_head
;
3971 for (; ulist
; ulist
= ulist
->next
)
3973 h
= bfd_link_hash_lookup (link_info
.hash
, ulist
->name
,
3974 false, false, false);
3976 if (h
!= (struct bfd_link_hash_entry
*) NULL
3977 && (h
->type
== bfd_link_hash_defined
3978 || h
->type
== bfd_link_hash_defweak
)
3979 && ! bfd_is_abs_section (h
->u
.def
.section
))
3981 h
->u
.def
.section
->flags
|= SEC_KEEP
;
3985 bfd_gc_sections (output_bfd
, &link_info
);
3991 lang_reasonable_defaults ();
3992 current_target
= default_target
;
3994 lang_for_each_statement (ldlang_open_output
); /* Open the output file */
3996 ldemul_create_output_section_statements ();
3998 /* Add to the hash table all undefineds on the command line */
3999 lang_place_undefineds ();
4001 already_linked_table_init ();
4003 /* Create a bfd for each input file */
4004 current_target
= default_target
;
4005 open_input_bfds (statement_list
.head
, false);
4007 ldemul_after_open ();
4009 already_linked_table_free ();
4011 /* Make sure that we're not mixing architectures. We call this
4012 after all the input files have been opened, but before we do any
4013 other processing, so that any operations merge_private_bfd_data
4014 does on the output file will be known during the rest of the
4018 /* Handle .exports instead of a version script if we're told to do so. */
4019 if (command_line
.version_exports_section
)
4020 lang_do_version_exports_section ();
4022 /* Build all sets based on the information gathered from the input
4024 ldctor_build_sets ();
4026 /* Remove unreferenced sections if asked to. */
4027 if (command_line
.gc_sections
)
4028 lang_gc_sections ();
4030 /* Size up the common data */
4033 /* Run through the contours of the script and attach input sections
4034 to the correct output sections
4036 map_input_to_output_sections (statement_list
.head
, (char *) NULL
,
4037 (lang_output_section_statement_type
*) NULL
);
4040 /* Find any sections not attached explicitly and handle them */
4041 lang_place_orphans ();
4043 ldemul_before_allocation ();
4045 /* We must record the program headers before we try to fix the
4046 section positions, since they will affect SIZEOF_HEADERS. */
4047 lang_record_phdrs ();
4049 /* Now run around and relax if we can */
4050 if (command_line
.relax
)
4052 /* First time round is a trial run to get the 'worst case'
4053 addresses of the objects if there was no relaxing. */
4054 lang_size_sections (statement_list
.head
,
4056 &(statement_list
.head
), 0, (bfd_vma
) 0, false);
4058 /* Keep relaxing until bfd_relax_section gives up. */
4061 reset_memory_regions ();
4063 relax_again
= false;
4065 /* Note: pe-dll.c does something like this also. If you find
4066 you need to change this code, you probably need to change
4067 pe-dll.c also. DJ */
4069 /* Do all the assignments with our current guesses as to
4071 lang_do_assignments (statement_list
.head
,
4073 (fill_type
) 0, (bfd_vma
) 0);
4075 /* Perform another relax pass - this time we know where the
4076 globals are, so can make better guess. */
4077 lang_size_sections (statement_list
.head
,
4079 &(statement_list
.head
), 0, (bfd_vma
) 0, true);
4081 while (relax_again
);
4085 /* Size up the sections. */
4086 lang_size_sections (statement_list
.head
,
4088 &(statement_list
.head
), 0, (bfd_vma
) 0, false);
4091 /* See if anything special should be done now we know how big
4093 ldemul_after_allocation ();
4095 /* Fix any .startof. or .sizeof. symbols. */
4096 lang_set_startof ();
4098 /* Do all the assignments, now that we know the final restingplaces
4099 of all the symbols */
4101 lang_do_assignments (statement_list
.head
,
4103 (fill_type
) 0, (bfd_vma
) 0);
4105 /* Make sure that the section addresses make sense. */
4106 if (! link_info
.relocateable
4107 && command_line
.check_section_addresses
)
4108 lang_check_section_addresses ();
4116 /* EXPORTED TO YACC */
4119 lang_add_wild (section_name
, sections_sorted
, filename
, filenames_sorted
,
4120 keep_sections
, exclude_filename_list
)
4121 const char *const section_name
;
4122 boolean sections_sorted
;
4123 const char *const filename
;
4124 boolean filenames_sorted
;
4125 boolean keep_sections
;
4126 struct name_list
*exclude_filename_list
;
4128 lang_wild_statement_type
*new = new_stat (lang_wild_statement
,
4131 if (section_name
!= (char *) NULL
&& strcmp (section_name
, "COMMON") == 0)
4133 placed_commons
= true;
4135 if (filename
!= NULL
&& ! wildcardp (filename
))
4137 lang_has_input_file
= true;
4139 new->section_name
= section_name
;
4140 new->sections_sorted
= sections_sorted
;
4141 new->filename
= filename
;
4142 new->filenames_sorted
= filenames_sorted
;
4143 new->keep_sections
= keep_sections
;
4144 new->exclude_filename_list
= exclude_filename_list
;
4145 lang_list_init (&new->children
);
4149 lang_section_start (name
, address
)
4151 etree_type
* address
;
4153 lang_address_statement_type
*ad
= new_stat (lang_address_statement
, stat_ptr
);
4155 ad
->section_name
= name
;
4156 ad
->address
= address
;
4159 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
4160 because of a -e argument on the command line, or zero if this is
4161 called by ENTRY in a linker script. Command line arguments take
4165 lang_add_entry (name
, cmdline
)
4169 if (entry_symbol
== NULL
4171 || ! entry_from_cmdline
)
4173 entry_symbol
= name
;
4174 entry_from_cmdline
= cmdline
;
4179 lang_add_target (name
)
4182 lang_target_statement_type
*new = new_stat (lang_target_statement
,
4198 map_option_f
= true;
4209 lang_fill_statement_type
*new = new_stat (lang_fill_statement
,
4216 lang_add_data (type
, exp
)
4218 union etree_union
*exp
;
4221 lang_data_statement_type
*new = new_stat (lang_data_statement
,
4229 /* Create a new reloc statement. RELOC is the BFD relocation type to
4230 generate. HOWTO is the corresponding howto structure (we could
4231 look this up, but the caller has already done so). SECTION is the
4232 section to generate a reloc against, or NAME is the name of the
4233 symbol to generate a reloc against. Exactly one of SECTION and
4234 NAME must be NULL. ADDEND is an expression for the addend. */
4237 lang_add_reloc (reloc
, howto
, section
, name
, addend
)
4238 bfd_reloc_code_real_type reloc
;
4239 reloc_howto_type
*howto
;
4242 union etree_union
*addend
;
4244 lang_reloc_statement_type
*p
= new_stat (lang_reloc_statement
, stat_ptr
);
4248 p
->section
= section
;
4250 p
->addend_exp
= addend
;
4252 p
->addend_value
= 0;
4253 p
->output_section
= NULL
;
4257 lang_assignment_statement_type
*
4258 lang_add_assignment (exp
)
4261 lang_assignment_statement_type
*new = new_stat (lang_assignment_statement
,
4269 lang_add_attribute (attribute
)
4270 enum statement_enum attribute
;
4272 new_statement (attribute
, sizeof (lang_statement_union_type
), stat_ptr
);
4279 if (startup_file
!= (char *) NULL
)
4281 einfo (_("%P%Fmultiple STARTUP files\n"));
4283 first_file
->filename
= name
;
4284 first_file
->local_sym_name
= name
;
4285 first_file
->real
= true;
4287 startup_file
= name
;
4294 lang_float_flag
= maybe
;
4298 lang_leave_output_section_statement (fill
, memspec
, phdrs
, lma_memspec
)
4300 const char *memspec
;
4301 struct lang_output_section_phdr_list
*phdrs
;
4302 const char *lma_memspec
;
4304 current_section
->fill
= fill
;
4305 current_section
->region
= lang_memory_region_lookup (memspec
);
4306 if (strcmp (lma_memspec
, "*default*") != 0)
4308 current_section
->lma_region
= lang_memory_region_lookup (lma_memspec
);
4309 /* if no runtime region has been given, but the load region has been,
4310 use the load region */
4311 if (strcmp (memspec
, "*default*") == 0)
4312 current_section
->region
= lang_memory_region_lookup (lma_memspec
);
4314 current_section
->phdrs
= phdrs
;
4315 stat_ptr
= &statement_list
;
4319 Create an absolute symbol with the given name with the value of the
4320 address of first byte of the section named.
4322 If the symbol already exists, then do nothing.
4325 lang_abs_symbol_at_beginning_of (secname
, name
)
4326 const char *secname
;
4329 struct bfd_link_hash_entry
*h
;
4331 h
= bfd_link_hash_lookup (link_info
.hash
, name
, true, true, true);
4332 if (h
== (struct bfd_link_hash_entry
*) NULL
)
4333 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4335 if (h
->type
== bfd_link_hash_new
4336 || h
->type
== bfd_link_hash_undefined
)
4340 h
->type
= bfd_link_hash_defined
;
4342 sec
= bfd_get_section_by_name (output_bfd
, secname
);
4343 if (sec
== (asection
*) NULL
)
4346 h
->u
.def
.value
= bfd_get_section_vma (output_bfd
, sec
);
4348 h
->u
.def
.section
= bfd_abs_section_ptr
;
4353 Create an absolute symbol with the given name with the value of the
4354 address of the first byte after the end of the section named.
4356 If the symbol already exists, then do nothing.
4359 lang_abs_symbol_at_end_of (secname
, name
)
4360 const char *secname
;
4363 struct bfd_link_hash_entry
*h
;
4365 h
= bfd_link_hash_lookup (link_info
.hash
, name
, true, true, true);
4366 if (h
== (struct bfd_link_hash_entry
*) NULL
)
4367 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4369 if (h
->type
== bfd_link_hash_new
4370 || h
->type
== bfd_link_hash_undefined
)
4374 h
->type
= bfd_link_hash_defined
;
4376 sec
= bfd_get_section_by_name (output_bfd
, secname
);
4377 if (sec
== (asection
*) NULL
)
4380 h
->u
.def
.value
= (bfd_get_section_vma (output_bfd
, sec
)
4381 + bfd_section_size (output_bfd
, sec
) /
4382 bfd_octets_per_byte (output_bfd
));
4384 h
->u
.def
.section
= bfd_abs_section_ptr
;
4389 lang_statement_append (list
, element
, field
)
4390 lang_statement_list_type
* list
;
4391 lang_statement_union_type
* element
;
4392 lang_statement_union_type
** field
;
4394 *(list
->tail
) = element
;
4398 /* Set the output format type. -oformat overrides scripts. */
4401 lang_add_output_format (format
, big
, little
, from_script
)
4407 if (output_target
== NULL
|| !from_script
)
4409 if (command_line
.endian
== ENDIAN_BIG
4412 else if (command_line
.endian
== ENDIAN_LITTLE
4416 output_target
= format
;
4420 /* Enter a group. This creates a new lang_group_statement, and sets
4421 stat_ptr to build new statements within the group. */
4426 lang_group_statement_type
*g
;
4428 g
= new_stat (lang_group_statement
, stat_ptr
);
4429 lang_list_init (&g
->children
);
4430 stat_ptr
= &g
->children
;
4433 /* Leave a group. This just resets stat_ptr to start writing to the
4434 regular list of statements again. Note that this will not work if
4435 groups can occur inside anything else which can adjust stat_ptr,
4436 but currently they can't. */
4441 stat_ptr
= &statement_list
;
4444 /* Add a new program header. This is called for each entry in a PHDRS
4445 command in a linker script. */
4448 lang_new_phdr (name
, type
, filehdr
, phdrs
, at
, flags
)
4456 struct lang_phdr
*n
, **pp
;
4458 n
= (struct lang_phdr
*) stat_alloc (sizeof (struct lang_phdr
));
4461 n
->type
= exp_get_value_int (type
, 0, "program header type",
4462 lang_final_phase_enum
);
4463 n
->filehdr
= filehdr
;
4468 for (pp
= &lang_phdr_list
; *pp
!= NULL
; pp
= &(*pp
)->next
)
4473 /* Record the program header information in the output BFD. FIXME: We
4474 should not be calling an ELF specific function here. */
4477 lang_record_phdrs ()
4481 struct lang_output_section_phdr_list
*last
;
4482 struct lang_phdr
*l
;
4483 lang_statement_union_type
*u
;
4486 secs
= (asection
**) xmalloc (alc
* sizeof (asection
*));
4488 for (l
= lang_phdr_list
; l
!= NULL
; l
= l
->next
)
4495 for (u
= lang_output_section_statement
.head
;
4497 u
= u
->output_section_statement
.next
)
4499 lang_output_section_statement_type
*os
;
4500 struct lang_output_section_phdr_list
*pl
;
4502 os
= &u
->output_section_statement
;
4509 if (os
->sectype
== noload_section
4510 || os
->bfd_section
== NULL
4511 || (os
->bfd_section
->flags
& SEC_ALLOC
) == 0)
4516 if (os
->bfd_section
== NULL
)
4519 for (; pl
!= NULL
; pl
= pl
->next
)
4521 if (strcmp (pl
->name
, l
->name
) == 0)
4526 secs
= ((asection
**)
4527 xrealloc (secs
, alc
* sizeof (asection
*)));
4529 secs
[c
] = os
->bfd_section
;
4536 if (l
->flags
== NULL
)
4539 flags
= exp_get_vma (l
->flags
, 0, "phdr flags",
4540 lang_final_phase_enum
);
4545 at
= exp_get_vma (l
->at
, 0, "phdr load address",
4546 lang_final_phase_enum
);
4548 if (! bfd_record_phdr (output_bfd
, l
->type
,
4549 l
->flags
== NULL
? false : true,
4551 l
->at
== NULL
? false : true,
4552 at
, l
->filehdr
, l
->phdrs
, c
, secs
))
4553 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
4558 /* Make sure all the phdr assignments succeeded. */
4559 for (u
= lang_output_section_statement
.head
;
4561 u
= u
->output_section_statement
.next
)
4563 struct lang_output_section_phdr_list
*pl
;
4565 if (u
->output_section_statement
.bfd_section
== NULL
)
4568 for (pl
= u
->output_section_statement
.phdrs
;
4571 if (! pl
->used
&& strcmp (pl
->name
, "NONE") != 0)
4572 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
4573 u
->output_section_statement
.name
, pl
->name
);
4577 /* Record a list of sections which may not be cross referenced. */
4580 lang_add_nocrossref (l
)
4581 struct lang_nocrossref
*l
;
4583 struct lang_nocrossrefs
*n
;
4585 n
= (struct lang_nocrossrefs
*) xmalloc (sizeof *n
);
4586 n
->next
= nocrossref_list
;
4588 nocrossref_list
= n
;
4590 /* Set notice_all so that we get informed about all symbols. */
4591 link_info
.notice_all
= true;
4594 /* Overlay handling. We handle overlays with some static variables. */
4596 /* The overlay virtual address. */
4597 static etree_type
*overlay_vma
;
4599 /* The overlay load address. */
4600 static etree_type
*overlay_lma
;
4602 /* Whether nocrossrefs is set for this overlay. */
4603 static int overlay_nocrossrefs
;
4605 /* An expression for the maximum section size seen so far. */
4606 static etree_type
*overlay_max
;
4608 /* A list of all the sections in this overlay. */
4612 struct overlay_list
*next
;
4613 lang_output_section_statement_type
*os
;
4616 static struct overlay_list
*overlay_list
;
4618 /* Start handling an overlay. */
4621 lang_enter_overlay (vma_expr
, lma_expr
, nocrossrefs
)
4622 etree_type
*vma_expr
;
4623 etree_type
*lma_expr
;
4626 /* The grammar should prevent nested overlays from occurring. */
4627 ASSERT (overlay_vma
== NULL
4628 && overlay_lma
== NULL
4629 && overlay_list
== NULL
4630 && overlay_max
== NULL
);
4632 overlay_vma
= vma_expr
;
4633 overlay_lma
= lma_expr
;
4634 overlay_nocrossrefs
= nocrossrefs
;
4637 /* Start a section in an overlay. We handle this by calling
4638 lang_enter_output_section_statement with the correct VMA and LMA. */
4641 lang_enter_overlay_section (name
)
4644 struct overlay_list
*n
;
4647 lang_enter_output_section_statement (name
, overlay_vma
, normal_section
,
4648 0, 0, 0, overlay_lma
);
4650 /* If this is the first section, then base the VMA and LMA of future
4651 sections on this one. This will work correctly even if `.' is
4652 used in the addresses. */
4653 if (overlay_list
== NULL
)
4655 overlay_vma
= exp_nameop (ADDR
, name
);
4656 overlay_lma
= exp_nameop (LOADADDR
, name
);
4659 /* Remember the section. */
4660 n
= (struct overlay_list
*) xmalloc (sizeof *n
);
4661 n
->os
= current_section
;
4662 n
->next
= overlay_list
;
4665 size
= exp_nameop (SIZEOF
, name
);
4667 /* Adjust the LMA for the next section. */
4668 overlay_lma
= exp_binop ('+', overlay_lma
, size
);
4670 /* Arrange to work out the maximum section end address. */
4671 if (overlay_max
== NULL
)
4674 overlay_max
= exp_binop (MAX_K
, overlay_max
, size
);
4677 /* Finish a section in an overlay. There isn't any special to do
4681 lang_leave_overlay_section (fill
, phdrs
)
4683 struct lang_output_section_phdr_list
*phdrs
;
4690 name
= current_section
->name
;
4692 lang_leave_output_section_statement (fill
, "*default*",
4693 phdrs
, "*default*");
4695 /* Define the magic symbols. */
4697 clean
= xmalloc (strlen (name
) + 1);
4699 for (s1
= name
; *s1
!= '\0'; s1
++)
4700 if (isalnum ((unsigned char) *s1
) || *s1
== '_')
4704 buf
= xmalloc (strlen (clean
) + sizeof "__load_start_");
4705 sprintf (buf
, "__load_start_%s", clean
);
4706 lang_add_assignment (exp_assop ('=', buf
,
4707 exp_nameop (LOADADDR
, name
)));
4709 buf
= xmalloc (strlen (clean
) + sizeof "__load_stop_");
4710 sprintf (buf
, "__load_stop_%s", clean
);
4711 lang_add_assignment (exp_assop ('=', buf
,
4713 exp_nameop (LOADADDR
, name
),
4714 exp_nameop (SIZEOF
, name
))));
4719 /* Finish an overlay. If there are any overlay wide settings, this
4720 looks through all the sections in the overlay and sets them. */
4723 lang_leave_overlay (fill
, memspec
, phdrs
, lma_memspec
)
4725 const char *memspec
;
4726 struct lang_output_section_phdr_list
*phdrs
;
4727 const char *lma_memspec
;
4729 lang_memory_region_type
*region
;
4730 lang_memory_region_type
*lma_region
;
4731 struct overlay_list
*l
;
4732 struct lang_nocrossref
*nocrossref
;
4734 if (memspec
== NULL
)
4737 region
= lang_memory_region_lookup (memspec
);
4739 if (lma_memspec
== NULL
)
4742 lma_region
= lang_memory_region_lookup (lma_memspec
);
4749 struct overlay_list
*next
;
4751 if (fill
!= 0 && l
->os
->fill
== 0)
4753 if (region
!= NULL
&& l
->os
->region
== NULL
)
4754 l
->os
->region
= region
;
4755 if (lma_region
!= NULL
&& l
->os
->lma_region
== NULL
)
4756 l
->os
->lma_region
= lma_region
;
4757 if (phdrs
!= NULL
&& l
->os
->phdrs
== NULL
)
4758 l
->os
->phdrs
= phdrs
;
4760 if (overlay_nocrossrefs
)
4762 struct lang_nocrossref
*nc
;
4764 nc
= (struct lang_nocrossref
*) xmalloc (sizeof *nc
);
4765 nc
->name
= l
->os
->name
;
4766 nc
->next
= nocrossref
;
4775 if (nocrossref
!= NULL
)
4776 lang_add_nocrossref (nocrossref
);
4778 /* Update . for the end of the overlay. */
4779 lang_add_assignment (exp_assop ('=', ".",
4780 exp_binop ('+', overlay_vma
, overlay_max
)));
4784 overlay_nocrossrefs
= 0;
4785 overlay_list
= NULL
;
4789 /* Version handling. This is only useful for ELF. */
4791 /* This global variable holds the version tree that we build. */
4793 struct bfd_elf_version_tree
*lang_elf_version_info
;
4796 lang_vers_match_lang_c (expr
, sym
)
4797 struct bfd_elf_version_expr
*expr
;
4800 if (expr
->pattern
[0] == '*' && expr
->pattern
[1] == '\0')
4802 return fnmatch (expr
->pattern
, sym
, 0) == 0;
4806 lang_vers_match_lang_cplusplus (expr
, sym
)
4807 struct bfd_elf_version_expr
*expr
;
4813 if (expr
->pattern
[0] == '*' && expr
->pattern
[1] == '\0')
4816 alt_sym
= cplus_demangle(sym
, /* DMGL_NO_TPARAMS */ 0);
4819 /* cplus_demangle (also) returns NULL when it is not a C++ symbol.
4820 Should we early out false in this case? */
4821 result
= fnmatch (expr
->pattern
, sym
, 0) == 0;
4825 result
= fnmatch (expr
->pattern
, alt_sym
, 0) == 0;
4833 lang_vers_match_lang_java (expr
, sym
)
4834 struct bfd_elf_version_expr
*expr
;
4840 if (expr
->pattern
[0] == '*' && expr
->pattern
[1] == '\0')
4843 alt_sym
= cplus_demangle(sym
, DMGL_JAVA
);
4846 /* cplus_demangle (also) returns NULL when it is not a Java symbol.
4847 Should we early out false in this case? */
4848 result
= fnmatch (expr
->pattern
, sym
, 0) == 0;
4852 result
= fnmatch (expr
->pattern
, alt_sym
, 0) == 0;
4859 /* This is called for each variable name or match expression. */
4861 struct bfd_elf_version_expr
*
4862 lang_new_vers_regex (orig
, new, lang
)
4863 struct bfd_elf_version_expr
*orig
;
4867 struct bfd_elf_version_expr
*ret
;
4869 ret
= (struct bfd_elf_version_expr
*) xmalloc (sizeof *ret
);
4873 if (lang
== NULL
|| strcasecmp (lang
, "C") == 0)
4874 ret
->match
= lang_vers_match_lang_c
;
4875 else if (strcasecmp (lang
, "C++") == 0)
4876 ret
->match
= lang_vers_match_lang_cplusplus
;
4877 else if (strcasecmp (lang
, "Java") == 0)
4878 ret
->match
= lang_vers_match_lang_java
;
4881 einfo (_("%X%P: unknown language `%s' in version information\n"),
4883 ret
->match
= lang_vers_match_lang_c
;
4889 /* This is called for each set of variable names and match
4892 struct bfd_elf_version_tree
*
4893 lang_new_vers_node (globals
, locals
)
4894 struct bfd_elf_version_expr
*globals
;
4895 struct bfd_elf_version_expr
*locals
;
4897 struct bfd_elf_version_tree
*ret
;
4899 ret
= (struct bfd_elf_version_tree
*) xmalloc (sizeof *ret
);
4903 ret
->globals
= globals
;
4904 ret
->locals
= locals
;
4906 ret
->name_indx
= (unsigned int) -1;
4911 /* This static variable keeps track of version indices. */
4913 static int version_index
;
4915 /* This is called when we know the name and dependencies of the
4919 lang_register_vers_node (name
, version
, deps
)
4921 struct bfd_elf_version_tree
*version
;
4922 struct bfd_elf_version_deps
*deps
;
4924 struct bfd_elf_version_tree
*t
, **pp
;
4925 struct bfd_elf_version_expr
*e1
;
4927 /* Make sure this node has a unique name. */
4928 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
4929 if (strcmp (t
->name
, name
) == 0)
4930 einfo (_("%X%P: duplicate version tag `%s'\n"), name
);
4932 /* Check the global and local match names, and make sure there
4933 aren't any duplicates. */
4935 for (e1
= version
->globals
; e1
!= NULL
; e1
= e1
->next
)
4937 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
4939 struct bfd_elf_version_expr
*e2
;
4941 for (e2
= t
->locals
; e2
!= NULL
; e2
= e2
->next
)
4942 if (strcmp (e1
->pattern
, e2
->pattern
) == 0)
4943 einfo (_("%X%P: duplicate expression `%s' in version information\n"),
4948 for (e1
= version
->locals
; e1
!= NULL
; e1
= e1
->next
)
4950 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
4952 struct bfd_elf_version_expr
*e2
;
4954 for (e2
= t
->globals
; e2
!= NULL
; e2
= e2
->next
)
4955 if (strcmp (e1
->pattern
, e2
->pattern
) == 0)
4956 einfo (_("%X%P: duplicate expression `%s' in version information\n"),
4961 version
->deps
= deps
;
4962 version
->name
= name
;
4964 version
->vernum
= version_index
;
4966 for (pp
= &lang_elf_version_info
; *pp
!= NULL
; pp
= &(*pp
)->next
)
4971 /* This is called when we see a version dependency. */
4973 struct bfd_elf_version_deps
*
4974 lang_add_vers_depend (list
, name
)
4975 struct bfd_elf_version_deps
*list
;
4978 struct bfd_elf_version_deps
*ret
;
4979 struct bfd_elf_version_tree
*t
;
4981 ret
= (struct bfd_elf_version_deps
*) xmalloc (sizeof *ret
);
4984 for (t
= lang_elf_version_info
; t
!= NULL
; t
= t
->next
)
4986 if (strcmp (t
->name
, name
) == 0)
4988 ret
->version_needed
= t
;
4993 einfo (_("%X%P: unable to find version dependency `%s'\n"), name
);
4999 lang_do_version_exports_section ()
5001 struct bfd_elf_version_expr
*greg
= NULL
, *lreg
;
5003 LANG_FOR_EACH_INPUT_STATEMENT (is
)
5005 asection
*sec
= bfd_get_section_by_name (is
->the_bfd
, ".exports");
5012 len
= bfd_section_size (is
->the_bfd
, sec
);
5013 contents
= xmalloc (len
);
5014 if (!bfd_get_section_contents (is
->the_bfd
, sec
, contents
, 0, len
))
5015 einfo (_("%X%P: unable to read .exports section contents"), sec
);
5018 while (p
< contents
+len
)
5020 greg
= lang_new_vers_regex (greg
, p
, NULL
);
5021 p
= strchr (p
, '\0') + 1;
5024 /* Do not free the contents, as we used them creating the regex. */
5026 /* Do not include this section in the link. */
5027 bfd_set_section_flags (is
->the_bfd
, sec
,
5028 bfd_get_section_flags (is
->the_bfd
, sec
) | SEC_EXCLUDE
);
5031 lreg
= lang_new_vers_regex (NULL
, "*", NULL
);
5032 lang_register_vers_node (command_line
.version_exports_section
,
5033 lang_new_vers_node (greg
, lreg
), NULL
);