1 /* Linker command language support.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 Free Software Foundation, Inc.
6 This file is part of GLD, the Gnu Linker.
8 GLD is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GLD is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GLD; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 #include "libiberty.h"
26 #include "safe-ctype.h"
45 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
48 /* Locals variables. */
49 static struct obstack stat_obstack;
50 static struct obstack map_obstack;
52 #define obstack_chunk_alloc xmalloc
53 #define obstack_chunk_free free
54 static const char *startup_file;
55 static lang_statement_list_type input_file_chain;
56 static bfd_boolean placed_commons = FALSE;
57 static lang_output_section_statement_type *default_common_section;
58 static bfd_boolean map_option_f;
59 static bfd_vma print_dot;
60 static lang_input_statement_type *first_file;
61 static const char *current_target;
62 static const char *output_target;
63 static lang_statement_list_type statement_list;
64 static struct lang_phdr *lang_phdr_list;
65 static struct bfd_hash_table lang_definedness_table;
67 /* Forward declarations. */
68 static void exp_init_os (etree_type *);
69 static void init_map_userdata (bfd *, asection *, void *);
70 static bfd_boolean wildcardp (const char *);
71 static lang_input_statement_type *lookup_name (const char *);
72 static bfd_boolean load_symbols (lang_input_statement_type *,
73 lang_statement_list_type *);
74 static struct bfd_hash_entry *lang_definedness_newfunc
75 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
76 static void insert_undefined (const char *);
77 static void print_all_symbols (asection *);
78 static bfd_boolean sort_def_symbol (struct bfd_link_hash_entry *, void *);
79 static void print_statement (lang_statement_union_type *,
80 lang_output_section_statement_type *);
81 static void print_statement_list (lang_statement_union_type *,
82 lang_output_section_statement_type *);
83 static void print_statements (void);
84 static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
85 static void lang_record_phdrs (void);
86 static void lang_do_version_exports_section (void);
88 typedef void (*callback_t) (lang_wild_statement_type *, struct wildcard_list *,
89 asection *, lang_input_statement_type *, void *);
91 /* Exported variables. */
92 lang_output_section_statement_type *abs_output_section;
93 lang_statement_list_type lang_output_section_statement;
94 lang_statement_list_type *stat_ptr = &statement_list;
95 lang_statement_list_type file_chain = { NULL, NULL };
96 struct bfd_sym_chain entry_symbol = { NULL, NULL };
97 const char *entry_section = ".text";
98 bfd_boolean entry_from_cmdline;
99 bfd_boolean lang_has_input_file = FALSE;
100 bfd_boolean had_output_filename = FALSE;
101 bfd_boolean lang_float_flag = FALSE;
102 bfd_boolean delete_output_file_on_failure = FALSE;
103 struct lang_nocrossrefs *nocrossref_list;
104 struct unique_sections *unique_section_list;
105 static bfd_boolean ldlang_sysrooted_script = FALSE;
106 int lang_statement_iteration = 0;
108 etree_type *base; /* Relocation base - or null */
110 #define new_stat(x, y) \
111 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
113 #define outside_section_address(q) \
114 ((q)->output_offset + (q)->output_section->vma)
116 #define outside_symbol_address(q) \
117 ((q)->value + outside_section_address (q->section))
119 #define SECTION_NAME_MAP_LENGTH (16)
122 stat_alloc (size_t size)
124 return obstack_alloc (&stat_obstack, size);
128 unique_section_p (const asection *sec)
130 struct unique_sections *unam;
133 if (link_info.relocatable
134 && sec->owner != NULL
135 && bfd_is_group_section (sec->owner, sec))
139 for (unam = unique_section_list; unam; unam = unam->next)
140 if (wildcardp (unam->name)
141 ? fnmatch (unam->name, secnam, 0) == 0
142 : strcmp (unam->name, secnam) == 0)
150 /* Generic traversal routines for finding matching sections. */
153 walk_wild_section (lang_wild_statement_type *ptr,
154 lang_input_statement_type *file,
160 if (file->just_syms_flag)
163 for (s = file->the_bfd->sections; s != NULL; s = s->next)
165 struct wildcard_list *sec;
167 sec = ptr->section_list;
169 (*callback) (ptr, sec, s, file, data);
173 bfd_boolean skip = FALSE;
174 struct name_list *list_tmp;
176 /* Don't process sections from files which were
178 for (list_tmp = sec->spec.exclude_name_list;
180 list_tmp = list_tmp->next)
182 if (wildcardp (list_tmp->name))
183 skip = fnmatch (list_tmp->name, file->filename, 0) == 0;
185 skip = strcmp (list_tmp->name, file->filename) == 0;
187 /* If this file is part of an archive, and the archive is
188 excluded, exclude this file. */
189 if (! skip && file->the_bfd != NULL
190 && file->the_bfd->my_archive != NULL
191 && file->the_bfd->my_archive->filename != NULL)
193 if (wildcardp (list_tmp->name))
194 skip = fnmatch (list_tmp->name,
195 file->the_bfd->my_archive->filename,
198 skip = strcmp (list_tmp->name,
199 file->the_bfd->my_archive->filename) == 0;
206 if (!skip && sec->spec.name != NULL)
208 const char *sname = bfd_get_section_name (file->the_bfd, s);
210 if (wildcardp (sec->spec.name))
211 skip = fnmatch (sec->spec.name, sname, 0) != 0;
213 skip = strcmp (sec->spec.name, sname) != 0;
217 (*callback) (ptr, sec, s, file, data);
224 /* Handle a wild statement for a single file F. */
227 walk_wild_file (lang_wild_statement_type *s,
228 lang_input_statement_type *f,
232 if (f->the_bfd == NULL
233 || ! bfd_check_format (f->the_bfd, bfd_archive))
234 walk_wild_section (s, f, callback, data);
239 /* This is an archive file. We must map each member of the
240 archive separately. */
241 member = bfd_openr_next_archived_file (f->the_bfd, NULL);
242 while (member != NULL)
244 /* When lookup_name is called, it will call the add_symbols
245 entry point for the archive. For each element of the
246 archive which is included, BFD will call ldlang_add_file,
247 which will set the usrdata field of the member to the
248 lang_input_statement. */
249 if (member->usrdata != NULL)
251 walk_wild_section (s, member->usrdata, callback, data);
254 member = bfd_openr_next_archived_file (f->the_bfd, member);
260 walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
262 const char *file_spec = s->filename;
264 if (file_spec == NULL)
266 /* Perform the iteration over all files in the list. */
267 LANG_FOR_EACH_INPUT_STATEMENT (f)
269 walk_wild_file (s, f, callback, data);
272 else if (wildcardp (file_spec))
274 LANG_FOR_EACH_INPUT_STATEMENT (f)
276 if (fnmatch (file_spec, f->filename, FNM_FILE_NAME) == 0)
277 walk_wild_file (s, f, callback, data);
282 lang_input_statement_type *f;
284 /* Perform the iteration over a single file. */
285 f = lookup_name (file_spec);
287 walk_wild_file (s, f, callback, data);
291 /* lang_for_each_statement walks the parse tree and calls the provided
292 function for each node. */
295 lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
296 lang_statement_union_type *s)
298 for (; s != NULL; s = s->header.next)
302 switch (s->header.type)
304 case lang_constructors_statement_enum:
305 lang_for_each_statement_worker (func, constructor_list.head);
307 case lang_output_section_statement_enum:
308 lang_for_each_statement_worker
309 (func, s->output_section_statement.children.head);
311 case lang_wild_statement_enum:
312 lang_for_each_statement_worker (func,
313 s->wild_statement.children.head);
315 case lang_group_statement_enum:
316 lang_for_each_statement_worker (func,
317 s->group_statement.children.head);
319 case lang_data_statement_enum:
320 case lang_reloc_statement_enum:
321 case lang_object_symbols_statement_enum:
322 case lang_output_statement_enum:
323 case lang_target_statement_enum:
324 case lang_input_section_enum:
325 case lang_input_statement_enum:
326 case lang_assignment_statement_enum:
327 case lang_padding_statement_enum:
328 case lang_address_statement_enum:
329 case lang_fill_statement_enum:
339 lang_for_each_statement (void (*func) (lang_statement_union_type *))
341 lang_for_each_statement_worker (func, statement_list.head);
344 /*----------------------------------------------------------------------*/
347 lang_list_init (lang_statement_list_type *list)
350 list->tail = &list->head;
353 /* Build a new statement node for the parse tree. */
355 static lang_statement_union_type *
356 new_statement (enum statement_enum type,
358 lang_statement_list_type *list)
360 lang_statement_union_type *new;
362 new = stat_alloc (size);
363 new->header.type = type;
364 new->header.next = NULL;
365 lang_statement_append (list, new, &new->header.next);
369 /* Build a new input file node for the language. There are several
370 ways in which we treat an input file, eg, we only look at symbols,
371 or prefix it with a -l etc.
373 We can be supplied with requests for input files more than once;
374 they may, for example be split over several lines like foo.o(.text)
375 foo.o(.data) etc, so when asked for a file we check that we haven't
376 got it already so we don't duplicate the bfd. */
378 static lang_input_statement_type *
379 new_afile (const char *name,
380 lang_input_file_enum_type file_type,
382 bfd_boolean add_to_list)
384 lang_input_statement_type *p;
387 p = new_stat (lang_input_statement, stat_ptr);
390 p = stat_alloc (sizeof (lang_input_statement_type));
391 p->header.next = NULL;
394 lang_has_input_file = TRUE;
396 p->sysrooted = FALSE;
399 case lang_input_file_is_symbols_only_enum:
401 p->is_archive = FALSE;
403 p->local_sym_name = name;
404 p->just_syms_flag = TRUE;
405 p->search_dirs_flag = FALSE;
407 case lang_input_file_is_fake_enum:
409 p->is_archive = FALSE;
411 p->local_sym_name = name;
412 p->just_syms_flag = FALSE;
413 p->search_dirs_flag = FALSE;
415 case lang_input_file_is_l_enum:
416 p->is_archive = TRUE;
419 p->local_sym_name = concat ("-l", name, NULL);
420 p->just_syms_flag = FALSE;
421 p->search_dirs_flag = TRUE;
423 case lang_input_file_is_marker_enum:
425 p->is_archive = FALSE;
427 p->local_sym_name = name;
428 p->just_syms_flag = FALSE;
429 p->search_dirs_flag = TRUE;
431 case lang_input_file_is_search_file_enum:
432 p->sysrooted = ldlang_sysrooted_script;
434 p->is_archive = FALSE;
436 p->local_sym_name = name;
437 p->just_syms_flag = FALSE;
438 p->search_dirs_flag = TRUE;
440 case lang_input_file_is_file_enum:
442 p->is_archive = FALSE;
444 p->local_sym_name = name;
445 p->just_syms_flag = FALSE;
446 p->search_dirs_flag = FALSE;
453 p->next_real_file = NULL;
456 p->dynamic = config.dynamic_link;
457 p->as_needed = as_needed;
458 p->whole_archive = whole_archive;
460 lang_statement_append (&input_file_chain,
461 (lang_statement_union_type *) p,
466 lang_input_statement_type *
467 lang_add_input_file (const char *name,
468 lang_input_file_enum_type file_type,
471 lang_has_input_file = TRUE;
472 return new_afile (name, file_type, target, TRUE);
475 /* Build enough state so that the parser can build its tree. */
480 obstack_begin (&stat_obstack, 1000);
482 stat_ptr = &statement_list;
484 lang_list_init (stat_ptr);
486 lang_list_init (&input_file_chain);
487 lang_list_init (&lang_output_section_statement);
488 lang_list_init (&file_chain);
489 first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
492 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME);
494 abs_output_section->bfd_section = bfd_abs_section_ptr;
496 /* The value "3" is ad-hoc, somewhat related to the expected number of
497 DEFINED expressions in a linker script. For most default linker
498 scripts, there are none. Why a hash table then? Well, it's somewhat
499 simpler to re-use working machinery than using a linked list in terms
500 of code-complexity here in ld, besides the initialization which just
501 looks like other code here. */
502 if (bfd_hash_table_init_n (&lang_definedness_table,
503 lang_definedness_newfunc, 3) != TRUE)
504 einfo (_("%P%F: out of memory during initialization"));
506 /* Callers of exp_fold_tree need to increment this. */
507 lang_statement_iteration = 0;
510 /*----------------------------------------------------------------------
511 A region is an area of memory declared with the
512 MEMORY { name:org=exp, len=exp ... }
515 We maintain a list of all the regions here.
517 If no regions are specified in the script, then the default is used
518 which is created when looked up to be the entire data space.
520 If create is true we are creating a region inside a MEMORY block.
521 In this case it is probably an error to create a region that has
522 already been created. If we are not inside a MEMORY block it is
523 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
524 and so we issue a warning. */
526 static lang_memory_region_type *lang_memory_region_list;
527 static lang_memory_region_type **lang_memory_region_list_tail
528 = &lang_memory_region_list;
530 lang_memory_region_type *
531 lang_memory_region_lookup (const char *const name, bfd_boolean create)
533 lang_memory_region_type *p;
534 lang_memory_region_type *new;
536 /* NAME is NULL for LMA memspecs if no region was specified. */
540 for (p = lang_memory_region_list; p != NULL; p = p->next)
541 if (strcmp (p->name, name) == 0)
544 einfo (_("%P:%S: warning: redeclaration of memory region '%s'\n"),
550 /* This code used to always use the first region in the list as the
551 default region. I changed it to instead use a region
552 encompassing all of memory as the default region. This permits
553 NOLOAD sections to work reasonably without requiring a region.
554 People should specify what region they mean, if they really want
556 if (strcmp (name, DEFAULT_MEMORY_REGION) == 0)
558 if (lang_memory_region_list != NULL)
559 return lang_memory_region_list;
563 if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
564 einfo (_("%P:%S: warning: memory region %s not declared\n"), name);
566 new = stat_alloc (sizeof (lang_memory_region_type));
568 new->name = xstrdup (name);
571 *lang_memory_region_list_tail = new;
572 lang_memory_region_list_tail = &new->next;
576 new->length = ~(bfd_size_type) 0;
578 new->had_full_message = FALSE;
583 static lang_memory_region_type *
584 lang_memory_default (asection *section)
586 lang_memory_region_type *p;
588 flagword sec_flags = section->flags;
590 /* Override SEC_DATA to mean a writable section. */
591 if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
592 sec_flags |= SEC_DATA;
594 for (p = lang_memory_region_list; p != NULL; p = p->next)
596 if ((p->flags & sec_flags) != 0
597 && (p->not_flags & sec_flags) == 0)
602 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
605 static lang_output_section_statement_type *
606 lang_output_section_find_1 (const char *const name, int constraint)
608 lang_statement_union_type *u;
609 lang_output_section_statement_type *lookup;
611 for (u = lang_output_section_statement.head; u != NULL; u = lookup->next)
613 lookup = &u->output_section_statement;
614 if (strcmp (name, lookup->name) == 0
615 && lookup->constraint != -1
616 && (constraint == 0 || constraint == lookup->constraint))
622 lang_output_section_statement_type *
623 lang_output_section_find (const char *const name)
625 return lang_output_section_find_1 (name, 0);
628 static lang_output_section_statement_type *
629 lang_output_section_statement_lookup_1 (const char *const name, int constraint)
631 lang_output_section_statement_type *lookup;
633 lookup = lang_output_section_find_1 (name, constraint);
636 lookup = new_stat (lang_output_section_statement, stat_ptr);
637 lookup->region = NULL;
638 lookup->lma_region = NULL;
640 lookup->block_value = 1;
644 lookup->bfd_section = NULL;
645 lookup->processed = 0;
646 lookup->constraint = constraint;
647 lookup->sectype = normal_section;
648 lookup->addr_tree = NULL;
649 lang_list_init (&lookup->children);
651 lookup->memspec = NULL;
653 lookup->subsection_alignment = -1;
654 lookup->section_alignment = -1;
655 lookup->load_base = NULL;
656 lookup->update_dot_tree = NULL;
657 lookup->phdrs = NULL;
659 lang_statement_append (&lang_output_section_statement,
660 (lang_statement_union_type *) lookup,
666 lang_output_section_statement_type *
667 lang_output_section_statement_lookup (const char *const name)
669 return lang_output_section_statement_lookup_1 (name, 0);
673 lang_map_flags (flagword flag)
675 if (flag & SEC_ALLOC)
681 if (flag & SEC_READONLY)
694 lang_memory_region_type *m;
697 minfo (_("\nMemory Configuration\n\n"));
698 fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
699 _("Name"), _("Origin"), _("Length"), _("Attributes"));
701 for (m = lang_memory_region_list; m != NULL; m = m->next)
706 fprintf (config.map_file, "%-16s ", m->name);
708 sprintf_vma (buf, m->origin);
709 minfo ("0x%s ", buf);
717 minfo ("0x%V", m->length);
718 if (m->flags || m->not_flags)
726 lang_map_flags (m->flags);
732 lang_map_flags (m->not_flags);
739 fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
741 if (! command_line.reduce_memory_overheads)
743 obstack_begin (&map_obstack, 1000);
744 for (p = link_info.input_bfds; p != (bfd *) NULL; p = p->link_next)
745 bfd_map_over_sections (p, init_map_userdata, 0);
746 bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0);
752 init_map_userdata (abfd, sec, data)
753 bfd *abfd ATTRIBUTE_UNUSED;
755 void *data ATTRIBUTE_UNUSED;
757 fat_section_userdata_type *new_data
758 = ((fat_section_userdata_type *) (stat_alloc
759 (sizeof (fat_section_userdata_type))));
761 ASSERT (get_userdata (sec) == NULL);
762 get_userdata (sec) = new_data;
763 new_data->map_symbol_def_tail = &new_data->map_symbol_def_head;
767 sort_def_symbol (hash_entry, info)
768 struct bfd_link_hash_entry *hash_entry;
769 void *info ATTRIBUTE_UNUSED;
771 if (hash_entry->type == bfd_link_hash_defined
772 || hash_entry->type == bfd_link_hash_defweak)
774 struct fat_user_section_struct *ud;
775 struct map_symbol_def *def;
777 ud = get_userdata (hash_entry->u.def.section);
780 /* ??? What do we have to do to initialize this beforehand? */
781 /* The first time we get here is bfd_abs_section... */
782 init_map_userdata (0, hash_entry->u.def.section, 0);
783 ud = get_userdata (hash_entry->u.def.section);
785 else if (!ud->map_symbol_def_tail)
786 ud->map_symbol_def_tail = &ud->map_symbol_def_head;
787 def = obstack_alloc (&map_obstack, sizeof *def);
788 def->entry = hash_entry;
789 *ud->map_symbol_def_tail = def;
790 ud->map_symbol_def_tail = &def->next;
795 /* Initialize an output section. */
798 init_os (lang_output_section_statement_type *s)
800 lean_section_userdata_type *new;
802 if (s->bfd_section != NULL)
805 if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
806 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
808 new = stat_alloc (SECTION_USERDATA_SIZE);
810 s->bfd_section = bfd_get_section_by_name (output_bfd, s->name);
811 if (s->bfd_section == NULL)
812 s->bfd_section = bfd_make_section (output_bfd, s->name);
813 if (s->bfd_section == NULL)
815 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
816 output_bfd->xvec->name, s->name);
818 s->bfd_section->output_section = s->bfd_section;
820 /* We initialize an output sections output offset to minus its own
821 vma to allow us to output a section through itself. */
822 s->bfd_section->output_offset = 0;
823 get_userdata (s->bfd_section) = new;
825 /* If there is a base address, make sure that any sections it might
826 mention are initialized. */
827 if (s->addr_tree != NULL)
828 exp_init_os (s->addr_tree);
830 if (s->load_base != NULL)
831 exp_init_os (s->load_base);
834 /* Make sure that all output sections mentioned in an expression are
838 exp_init_os (etree_type *exp)
840 switch (exp->type.node_class)
843 exp_init_os (exp->assign.src);
847 exp_init_os (exp->binary.lhs);
848 exp_init_os (exp->binary.rhs);
852 exp_init_os (exp->trinary.cond);
853 exp_init_os (exp->trinary.lhs);
854 exp_init_os (exp->trinary.rhs);
858 exp_init_os (exp->assert_s.child);
862 exp_init_os (exp->unary.child);
866 switch (exp->type.node_code)
872 lang_output_section_statement_type *os;
874 os = lang_output_section_find (exp->name.name);
875 if (os != NULL && os->bfd_section == NULL)
886 /* Sections marked with the SEC_LINK_ONCE flag should only be linked
887 once into the output. This routine checks each section, and
888 arrange to discard it if a section of the same name has already
889 been linked. If the section has COMDAT information, then it uses
890 that to decide whether the section should be included. This code
891 assumes that all relevant sections have the SEC_LINK_ONCE flag set;
892 that is, it does not depend solely upon the section name.
893 section_already_linked is called via bfd_map_over_sections. */
895 /* This is the shape of the elements inside the already_linked hash
896 table. It maps a name onto a list of already_linked elements with
897 the same name. It's possible to get more than one element in a
898 list if the COMDAT sections have different names. */
900 struct already_linked_hash_entry
902 struct bfd_hash_entry root;
903 struct already_linked *entry;
906 struct already_linked
908 struct already_linked *next;
912 /* The hash table. */
914 static struct bfd_hash_table already_linked_table;
917 section_already_linked (bfd *abfd, asection *sec, void *data)
919 lang_input_statement_type *entry = data;
922 struct already_linked *l;
923 struct already_linked_hash_entry *already_linked_list;
925 /* If we are only reading symbols from this object, then we want to
926 discard all sections. */
927 if (entry->just_syms_flag)
929 bfd_link_just_syms (sec, &link_info);
934 if ((flags & SEC_LINK_ONCE) == 0)
937 /* FIXME: When doing a relocatable link, we may have trouble
938 copying relocations in other sections that refer to local symbols
939 in the section being discarded. Those relocations will have to
940 be converted somehow; as of this writing I'm not sure that any of
941 the backends handle that correctly.
943 It is tempting to instead not discard link once sections when
944 doing a relocatable link (technically, they should be discarded
945 whenever we are building constructors). However, that fails,
946 because the linker winds up combining all the link once sections
947 into a single large link once section, which defeats the purpose
948 of having link once sections in the first place.
950 Also, not merging link once sections in a relocatable link
951 causes trouble for MIPS ELF, which relies on link once semantics
952 to handle the .reginfo section correctly. */
954 name = bfd_get_section_name (abfd, sec);
956 already_linked_list =
957 ((struct already_linked_hash_entry *)
958 bfd_hash_lookup (&already_linked_table, name, TRUE, FALSE));
960 for (l = already_linked_list->entry; l != NULL; l = l->next)
962 if (sec->comdat == NULL
963 || l->sec->comdat == NULL
964 || strcmp (sec->comdat->name, l->sec->comdat->name) == 0)
966 /* The section has already been linked. See if we should
968 switch (flags & SEC_LINK_DUPLICATES)
973 case SEC_LINK_DUPLICATES_DISCARD:
976 case SEC_LINK_DUPLICATES_ONE_ONLY:
977 if (sec->comdat == NULL)
978 einfo (_("%P: %B: warning: ignoring duplicate section `%s'\n"),
981 einfo (_("%P: %B: warning: ignoring duplicate `%s'"
982 " section symbol `%s'\n"),
983 abfd, name, sec->comdat->name);
986 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
987 /* FIXME: We should really dig out the contents of both
988 sections and memcmp them. The COFF/PE spec says that
989 the Microsoft linker does not implement this
990 correctly, so I'm not going to bother doing it
993 case SEC_LINK_DUPLICATES_SAME_SIZE:
994 if (bfd_section_size (abfd, sec)
995 != bfd_section_size (l->sec->owner, l->sec))
996 einfo (_("%P: %B: warning: duplicate section `%s'"
997 " has different size\n"),
1002 /* Set the output_section field so that lang_add_section
1003 does not create a lang_input_section structure for this
1004 section. Since there might be a symbol in the section
1005 being discarded, we must retain a pointer to the section
1006 which we are really going to use. */
1007 sec->output_section = bfd_abs_section_ptr;
1008 sec->kept_section = l->sec;
1010 if (flags & SEC_GROUP)
1011 bfd_discard_group (abfd, sec);
1017 /* This is the first section with this name. Record it. Allocate
1018 the memory from the same obstack as the hash table is kept in. */
1020 l = bfd_hash_allocate (&already_linked_table, sizeof *l);
1023 l->next = already_linked_list->entry;
1024 already_linked_list->entry = l;
1027 /* Support routines for the hash table used by section_already_linked,
1028 initialize the table, fill in an entry and remove the table. */
1030 static struct bfd_hash_entry *
1031 already_linked_newfunc (struct bfd_hash_entry *entry ATTRIBUTE_UNUSED,
1032 struct bfd_hash_table *table,
1033 const char *string ATTRIBUTE_UNUSED)
1035 struct already_linked_hash_entry *ret =
1036 bfd_hash_allocate (table, sizeof (struct already_linked_hash_entry));
1044 already_linked_table_init (void)
1046 if (! bfd_hash_table_init_n (&already_linked_table,
1047 already_linked_newfunc,
1049 einfo (_("%P%F: Failed to create hash table\n"));
1053 already_linked_table_free (void)
1055 bfd_hash_table_free (&already_linked_table);
1058 /* The wild routines.
1060 These expand statements like *(.text) and foo.o to a list of
1061 explicit actions, like foo.o(.text), bar.o(.text) and
1062 foo.o(.text, .data). */
1064 /* Return TRUE if the PATTERN argument is a wildcard pattern.
1065 Although backslashes are treated specially if a pattern contains
1066 wildcards, we do not consider the mere presence of a backslash to
1067 be enough to cause the pattern to be treated as a wildcard.
1068 That lets us handle DOS filenames more naturally. */
1071 wildcardp (const char *pattern)
1075 for (s = pattern; *s != '\0'; ++s)
1083 /* Add SECTION to the output section OUTPUT. Do this by creating a
1084 lang_input_section statement which is placed at PTR. FILE is the
1085 input file which holds SECTION. */
1088 lang_add_section (lang_statement_list_type *ptr,
1090 lang_output_section_statement_type *output,
1091 lang_input_statement_type *file)
1093 flagword flags = section->flags;
1094 bfd_boolean discard;
1096 /* Discard sections marked with SEC_EXCLUDE. */
1097 discard = (flags & SEC_EXCLUDE) != 0;
1099 /* Discard input sections which are assigned to a section named
1100 DISCARD_SECTION_NAME. */
1101 if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
1104 /* Discard debugging sections if we are stripping debugging
1106 if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
1107 && (flags & SEC_DEBUGGING) != 0)
1112 if (section->output_section == NULL)
1114 /* This prevents future calls from assigning this section. */
1115 section->output_section = bfd_abs_section_ptr;
1120 if (section->output_section == NULL)
1123 lang_input_section_type *new;
1126 if (output->bfd_section == NULL)
1129 first = ! output->bfd_section->linker_has_input;
1130 output->bfd_section->linker_has_input = 1;
1132 /* Add a section reference to the list. */
1133 new = new_stat (lang_input_section, ptr);
1135 new->section = section;
1137 section->output_section = output->bfd_section;
1139 flags = section->flags;
1141 /* We don't copy the SEC_NEVER_LOAD flag from an input section
1142 to an output section, because we want to be able to include a
1143 SEC_NEVER_LOAD section in the middle of an otherwise loaded
1144 section (I don't know why we want to do this, but we do).
1145 build_link_order in ldwrite.c handles this case by turning
1146 the embedded SEC_NEVER_LOAD section into a fill. */
1148 flags &= ~ SEC_NEVER_LOAD;
1150 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
1151 already been processed. One reason to do this is that on pe
1152 format targets, .text$foo sections go into .text and it's odd
1153 to see .text with SEC_LINK_ONCE set. */
1155 if (! link_info.relocatable)
1156 flags &= ~ (SEC_LINK_ONCE | SEC_LINK_DUPLICATES);
1158 /* If this is not the first input section, and the SEC_READONLY
1159 flag is not currently set, then don't set it just because the
1160 input section has it set. */
1162 if (! first && (section->output_section->flags & SEC_READONLY) == 0)
1163 flags &= ~ SEC_READONLY;
1165 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
1167 && ((section->output_section->flags & (SEC_MERGE | SEC_STRINGS))
1168 != (flags & (SEC_MERGE | SEC_STRINGS))
1169 || ((flags & SEC_MERGE)
1170 && section->output_section->entsize != section->entsize)))
1172 section->output_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
1173 flags &= ~ (SEC_MERGE | SEC_STRINGS);
1176 section->output_section->flags |= flags;
1178 if (flags & SEC_MERGE)
1179 section->output_section->entsize = section->entsize;
1181 /* If SEC_READONLY is not set in the input section, then clear
1182 it from the output section. */
1183 if ((section->flags & SEC_READONLY) == 0)
1184 section->output_section->flags &= ~SEC_READONLY;
1186 switch (output->sectype)
1188 case normal_section:
1193 case overlay_section:
1194 output->bfd_section->flags &= ~SEC_ALLOC;
1196 case noload_section:
1197 output->bfd_section->flags &= ~SEC_LOAD;
1198 output->bfd_section->flags |= SEC_NEVER_LOAD;
1202 /* Copy over SEC_SMALL_DATA. */
1203 if (section->flags & SEC_SMALL_DATA)
1204 section->output_section->flags |= SEC_SMALL_DATA;
1206 if (section->alignment_power > output->bfd_section->alignment_power)
1207 output->bfd_section->alignment_power = section->alignment_power;
1209 /* If supplied an alignment, then force it. */
1210 if (output->section_alignment != -1)
1211 output->bfd_section->alignment_power = output->section_alignment;
1213 if (section->flags & SEC_BLOCK)
1215 section->output_section->flags |= SEC_BLOCK;
1216 /* FIXME: This value should really be obtained from the bfd... */
1217 output->block_value = 128;
1222 /* Handle wildcard sorting. This returns the lang_input_section which
1223 should follow the one we are going to create for SECTION and FILE,
1224 based on the sorting requirements of WILD. It returns NULL if the
1225 new section should just go at the end of the current list. */
1227 static lang_statement_union_type *
1228 wild_sort (lang_wild_statement_type *wild,
1229 struct wildcard_list *sec,
1230 lang_input_statement_type *file,
1233 const char *section_name;
1234 lang_statement_union_type *l;
1236 if (!wild->filenames_sorted && (sec == NULL || !sec->spec.sorted))
1239 section_name = bfd_get_section_name (file->the_bfd, section);
1240 for (l = wild->children.head; l != NULL; l = l->header.next)
1242 lang_input_section_type *ls;
1244 if (l->header.type != lang_input_section_enum)
1246 ls = &l->input_section;
1248 /* Sorting by filename takes precedence over sorting by section
1251 if (wild->filenames_sorted)
1253 const char *fn, *ln;
1257 /* The PE support for the .idata section as generated by
1258 dlltool assumes that files will be sorted by the name of
1259 the archive and then the name of the file within the
1262 if (file->the_bfd != NULL
1263 && bfd_my_archive (file->the_bfd) != NULL)
1265 fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
1270 fn = file->filename;
1274 if (ls->ifile->the_bfd != NULL
1275 && bfd_my_archive (ls->ifile->the_bfd) != NULL)
1277 ln = bfd_get_filename (bfd_my_archive (ls->ifile->the_bfd));
1282 ln = ls->ifile->filename;
1286 i = strcmp (fn, ln);
1295 fn = file->filename;
1297 ln = ls->ifile->filename;
1299 i = strcmp (fn, ln);
1307 /* Here either the files are not sorted by name, or we are
1308 looking at the sections for this file. */
1310 if (sec != NULL && sec->spec.sorted)
1312 if (strcmp (section_name,
1313 bfd_get_section_name (ls->ifile->the_bfd,
1323 /* Expand a wild statement for a particular FILE. SECTION may be
1324 NULL, in which case it is a wild card. */
1327 output_section_callback (lang_wild_statement_type *ptr,
1328 struct wildcard_list *sec,
1330 lang_input_statement_type *file,
1333 lang_statement_union_type *before;
1335 /* Exclude sections that match UNIQUE_SECTION_LIST. */
1336 if (unique_section_p (section))
1339 before = wild_sort (ptr, sec, file, section);
1341 /* Here BEFORE points to the lang_input_section which
1342 should follow the one we are about to add. If BEFORE
1343 is NULL, then the section should just go at the end
1344 of the current list. */
1347 lang_add_section (&ptr->children, section,
1348 (lang_output_section_statement_type *) output,
1352 lang_statement_list_type list;
1353 lang_statement_union_type **pp;
1355 lang_list_init (&list);
1356 lang_add_section (&list, section,
1357 (lang_output_section_statement_type *) output,
1360 /* If we are discarding the section, LIST.HEAD will
1362 if (list.head != NULL)
1364 ASSERT (list.head->header.next == NULL);
1366 for (pp = &ptr->children.head;
1368 pp = &(*pp)->header.next)
1369 ASSERT (*pp != NULL);
1371 list.head->header.next = *pp;
1377 /* Check if all sections in a wild statement for a particular FILE
1381 check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
1382 struct wildcard_list *sec ATTRIBUTE_UNUSED,
1384 lang_input_statement_type *file ATTRIBUTE_UNUSED,
1387 /* Exclude sections that match UNIQUE_SECTION_LIST. */
1388 if (unique_section_p (section))
1391 if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0)
1392 ((lang_output_section_statement_type *) data)->all_input_readonly = FALSE;
1395 /* This is passed a file name which must have been seen already and
1396 added to the statement tree. We will see if it has been opened
1397 already and had its symbols read. If not then we'll read it. */
1399 static lang_input_statement_type *
1400 lookup_name (const char *name)
1402 lang_input_statement_type *search;
1404 for (search = (lang_input_statement_type *) input_file_chain.head;
1406 search = (lang_input_statement_type *) search->next_real_file)
1408 /* Use the local_sym_name as the name of the file that has
1409 already been loaded as filename might have been transformed
1410 via the search directory lookup mechanism. */
1411 const char * filename = search->local_sym_name;
1413 if (filename == NULL && name == NULL)
1415 if (filename != NULL
1417 && strcmp (filename, name) == 0)
1422 search = new_afile (name, lang_input_file_is_search_file_enum,
1423 default_target, FALSE);
1425 /* If we have already added this file, or this file is not real
1426 (FIXME: can that ever actually happen?) or the name is NULL
1427 (FIXME: can that ever actually happen?) don't add this file. */
1430 || search->filename == NULL)
1433 if (! load_symbols (search, NULL))
1439 /* Get the symbols for an input file. */
1442 load_symbols (lang_input_statement_type *entry,
1443 lang_statement_list_type *place)
1450 ldfile_open_file (entry);
1452 if (! bfd_check_format (entry->the_bfd, bfd_archive)
1453 && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
1456 lang_statement_list_type *hold;
1457 bfd_boolean bad_load = TRUE;
1458 bfd_boolean save_ldlang_sysrooted_script;
1460 err = bfd_get_error ();
1462 /* See if the emulation has some special knowledge. */
1463 if (ldemul_unrecognized_file (entry))
1466 if (err == bfd_error_file_ambiguously_recognized)
1470 einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
1471 einfo (_("%B: matching formats:"), entry->the_bfd);
1472 for (p = matching; *p != NULL; p++)
1476 else if (err != bfd_error_file_not_recognized
1478 einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
1482 bfd_close (entry->the_bfd);
1483 entry->the_bfd = NULL;
1485 /* Try to interpret the file as a linker script. */
1486 ldfile_open_command_file (entry->filename);
1490 save_ldlang_sysrooted_script = ldlang_sysrooted_script;
1491 ldlang_sysrooted_script = entry->sysrooted;
1493 ldfile_assumed_script = TRUE;
1494 parser_input = input_script;
1496 ldfile_assumed_script = FALSE;
1498 ldlang_sysrooted_script = save_ldlang_sysrooted_script;
1504 if (ldemul_recognized_file (entry))
1507 /* We don't call ldlang_add_file for an archive. Instead, the
1508 add_symbols entry point will call ldlang_add_file, via the
1509 add_archive_element callback, for each element of the archive
1511 switch (bfd_get_format (entry->the_bfd))
1517 ldlang_add_file (entry);
1518 if (trace_files || trace_file_tries)
1519 info_msg ("%I\n", entry);
1523 if (entry->whole_archive)
1526 bfd_boolean loaded = TRUE;
1530 member = bfd_openr_next_archived_file (entry->the_bfd, member);
1535 if (! bfd_check_format (member, bfd_object))
1537 einfo (_("%F%B: member %B in archive is not an object\n"),
1538 entry->the_bfd, member);
1542 if (! ((*link_info.callbacks->add_archive_element)
1543 (&link_info, member, "--whole-archive")))
1546 if (! bfd_link_add_symbols (member, &link_info))
1548 einfo (_("%F%B: could not read symbols: %E\n"), member);
1553 entry->loaded = loaded;
1559 if (bfd_link_add_symbols (entry->the_bfd, &link_info))
1560 entry->loaded = TRUE;
1562 einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
1564 return entry->loaded;
1567 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
1568 may be NULL, indicating that it is a wildcard. Separate
1569 lang_input_section statements are created for each part of the
1570 expansion; they are added after the wild statement S. OUTPUT is
1571 the output section. */
1574 wild (lang_wild_statement_type *s,
1575 const char *target ATTRIBUTE_UNUSED,
1576 lang_output_section_statement_type *output)
1578 struct wildcard_list *sec;
1580 walk_wild (s, output_section_callback, output);
1582 for (sec = s->section_list; sec != NULL; sec = sec->next)
1584 if (default_common_section != NULL)
1586 if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
1588 /* Remember the section that common is going to in case we
1589 later get something which doesn't know where to put it. */
1590 default_common_section = output;
1595 /* Return TRUE iff target is the sought target. */
1598 get_target (const bfd_target *target, void *data)
1600 const char *sought = data;
1602 return strcmp (target->name, sought) == 0;
1605 /* Like strcpy() but convert to lower case as well. */
1608 stricpy (char *dest, char *src)
1612 while ((c = *src++) != 0)
1613 *dest++ = TOLOWER (c);
1618 /* Remove the first occurrence of needle (if any) in haystack
1622 strcut (char *haystack, char *needle)
1624 haystack = strstr (haystack, needle);
1630 for (src = haystack + strlen (needle); *src;)
1631 *haystack++ = *src++;
1637 /* Compare two target format name strings.
1638 Return a value indicating how "similar" they are. */
1641 name_compare (char *first, char *second)
1647 copy1 = xmalloc (strlen (first) + 1);
1648 copy2 = xmalloc (strlen (second) + 1);
1650 /* Convert the names to lower case. */
1651 stricpy (copy1, first);
1652 stricpy (copy2, second);
1654 /* Remove size and endian strings from the name. */
1655 strcut (copy1, "big");
1656 strcut (copy1, "little");
1657 strcut (copy2, "big");
1658 strcut (copy2, "little");
1660 /* Return a value based on how many characters match,
1661 starting from the beginning. If both strings are
1662 the same then return 10 * their length. */
1663 for (result = 0; copy1[result] == copy2[result]; result++)
1664 if (copy1[result] == 0)
1676 /* Set by closest_target_match() below. */
1677 static const bfd_target *winner;
1679 /* Scan all the valid bfd targets looking for one that has the endianness
1680 requirement that was specified on the command line, and is the nearest
1681 match to the original output target. */
1684 closest_target_match (const bfd_target *target, void *data)
1686 const bfd_target *original = data;
1688 if (command_line.endian == ENDIAN_BIG
1689 && target->byteorder != BFD_ENDIAN_BIG)
1692 if (command_line.endian == ENDIAN_LITTLE
1693 && target->byteorder != BFD_ENDIAN_LITTLE)
1696 /* Must be the same flavour. */
1697 if (target->flavour != original->flavour)
1700 /* If we have not found a potential winner yet, then record this one. */
1707 /* Oh dear, we now have two potential candidates for a successful match.
1708 Compare their names and choose the better one. */
1709 if (name_compare (target->name, original->name)
1710 > name_compare (winner->name, original->name))
1713 /* Keep on searching until wqe have checked them all. */
1717 /* Return the BFD target format of the first input file. */
1720 get_first_input_target (void)
1722 char *target = NULL;
1724 LANG_FOR_EACH_INPUT_STATEMENT (s)
1726 if (s->header.type == lang_input_statement_enum
1729 ldfile_open_file (s);
1731 if (s->the_bfd != NULL
1732 && bfd_check_format (s->the_bfd, bfd_object))
1734 target = bfd_get_target (s->the_bfd);
1746 lang_get_output_target (void)
1750 /* Has the user told us which output format to use? */
1751 if (output_target != NULL)
1752 return output_target;
1754 /* No - has the current target been set to something other than
1756 if (current_target != default_target)
1757 return current_target;
1759 /* No - can we determine the format of the first input file? */
1760 target = get_first_input_target ();
1764 /* Failed - use the default output target. */
1765 return default_target;
1768 /* Open the output file. */
1771 open_output (const char *name)
1775 output_target = lang_get_output_target ();
1777 /* Has the user requested a particular endianness on the command
1779 if (command_line.endian != ENDIAN_UNSET)
1781 const bfd_target *target;
1782 enum bfd_endian desired_endian;
1784 /* Get the chosen target. */
1785 target = bfd_search_for_target (get_target, (void *) output_target);
1787 /* If the target is not supported, we cannot do anything. */
1790 if (command_line.endian == ENDIAN_BIG)
1791 desired_endian = BFD_ENDIAN_BIG;
1793 desired_endian = BFD_ENDIAN_LITTLE;
1795 /* See if the target has the wrong endianness. This should
1796 not happen if the linker script has provided big and
1797 little endian alternatives, but some scrips don't do
1799 if (target->byteorder != desired_endian)
1801 /* If it does, then see if the target provides
1802 an alternative with the correct endianness. */
1803 if (target->alternative_target != NULL
1804 && (target->alternative_target->byteorder == desired_endian))
1805 output_target = target->alternative_target->name;
1808 /* Try to find a target as similar as possible to
1809 the default target, but which has the desired
1810 endian characteristic. */
1811 bfd_search_for_target (closest_target_match,
1814 /* Oh dear - we could not find any targets that
1815 satisfy our requirements. */
1817 einfo (_("%P: warning: could not find any targets"
1818 " that match endianness requirement\n"));
1820 output_target = winner->name;
1826 output = bfd_openw (name, output_target);
1830 if (bfd_get_error () == bfd_error_invalid_target)
1831 einfo (_("%P%F: target %s not found\n"), output_target);
1833 einfo (_("%P%F: cannot open output file %s: %E\n"), name);
1836 delete_output_file_on_failure = TRUE;
1839 output->flags |= D_PAGED;
1842 if (! bfd_set_format (output, bfd_object))
1843 einfo (_("%P%F:%s: can not make object file: %E\n"), name);
1844 if (! bfd_set_arch_mach (output,
1845 ldfile_output_architecture,
1846 ldfile_output_machine))
1847 einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
1849 link_info.hash = bfd_link_hash_table_create (output);
1850 if (link_info.hash == NULL)
1851 einfo (_("%P%F: can not create link hash table: %E\n"));
1853 bfd_set_gp_size (output, g_switch_value);
1858 ldlang_open_output (lang_statement_union_type *statement)
1860 switch (statement->header.type)
1862 case lang_output_statement_enum:
1863 ASSERT (output_bfd == NULL);
1864 output_bfd = open_output (statement->output_statement.name);
1865 ldemul_set_output_arch ();
1866 if (config.magic_demand_paged && !link_info.relocatable)
1867 output_bfd->flags |= D_PAGED;
1869 output_bfd->flags &= ~D_PAGED;
1870 if (config.text_read_only)
1871 output_bfd->flags |= WP_TEXT;
1873 output_bfd->flags &= ~WP_TEXT;
1874 if (link_info.traditional_format)
1875 output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
1877 output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
1880 case lang_target_statement_enum:
1881 current_target = statement->target_statement.target;
1888 /* Convert between addresses in bytes and sizes in octets.
1889 For currently supported targets, octets_per_byte is always a power
1890 of two, so we can use shifts. */
1891 #define TO_ADDR(X) ((X) >> opb_shift)
1892 #define TO_SIZE(X) ((X) << opb_shift)
1894 /* Support the above. */
1895 static unsigned int opb_shift = 0;
1900 unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
1901 ldfile_output_machine);
1904 while ((x & 1) == 0)
1912 /* Open all the input files. */
1915 open_input_bfds (lang_statement_union_type *s, bfd_boolean force)
1917 for (; s != NULL; s = s->header.next)
1919 switch (s->header.type)
1921 case lang_constructors_statement_enum:
1922 open_input_bfds (constructor_list.head, force);
1924 case lang_output_section_statement_enum:
1925 open_input_bfds (s->output_section_statement.children.head, force);
1927 case lang_wild_statement_enum:
1928 /* Maybe we should load the file's symbols. */
1929 if (s->wild_statement.filename
1930 && ! wildcardp (s->wild_statement.filename))
1931 lookup_name (s->wild_statement.filename);
1932 open_input_bfds (s->wild_statement.children.head, force);
1934 case lang_group_statement_enum:
1936 struct bfd_link_hash_entry *undefs;
1938 /* We must continually search the entries in the group
1939 until no new symbols are added to the list of undefined
1944 undefs = link_info.hash->undefs_tail;
1945 open_input_bfds (s->group_statement.children.head, TRUE);
1947 while (undefs != link_info.hash->undefs_tail);
1950 case lang_target_statement_enum:
1951 current_target = s->target_statement.target;
1953 case lang_input_statement_enum:
1954 if (s->input_statement.real)
1956 lang_statement_list_type add;
1958 s->input_statement.target = current_target;
1960 /* If we are being called from within a group, and this
1961 is an archive which has already been searched, then
1962 force it to be researched unless the whole archive
1963 has been loaded already. */
1965 && !s->input_statement.whole_archive
1966 && s->input_statement.loaded
1967 && bfd_check_format (s->input_statement.the_bfd,
1969 s->input_statement.loaded = FALSE;
1971 lang_list_init (&add);
1973 if (! load_symbols (&s->input_statement, &add))
1974 config.make_executable = FALSE;
1976 if (add.head != NULL)
1978 *add.tail = s->header.next;
1979 s->header.next = add.head;
1989 /* If there are [COMMONS] statements, put a wild one into the bss
1993 lang_reasonable_defaults (void)
1996 lang_output_section_statement_lookup (".text");
1997 lang_output_section_statement_lookup (".data");
1999 default_common_section = lang_output_section_statement_lookup (".bss");
2001 if (!placed_commons)
2003 lang_wild_statement_type *new =
2004 new_stat (lang_wild_statement,
2005 &default_common_section->children);
2007 new->section_name = "COMMON";
2008 new->filename = NULL;
2009 lang_list_init (&new->children);
2014 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
2017 lang_track_definedness (const char *name)
2019 if (bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE) == NULL)
2020 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
2023 /* New-function for the definedness hash table. */
2025 static struct bfd_hash_entry *
2026 lang_definedness_newfunc (struct bfd_hash_entry *entry,
2027 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
2028 const char *name ATTRIBUTE_UNUSED)
2030 struct lang_definedness_hash_entry *ret
2031 = (struct lang_definedness_hash_entry *) entry;
2034 ret = (struct lang_definedness_hash_entry *)
2035 bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
2038 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
2040 ret->iteration = -1;
2044 /* Return the iteration when the definition of NAME was last updated. A
2045 value of -1 means that the symbol is not defined in the linker script
2046 or the command line, but may be defined in the linker symbol table. */
2049 lang_symbol_definition_iteration (const char *name)
2051 struct lang_definedness_hash_entry *defentry
2052 = (struct lang_definedness_hash_entry *)
2053 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
2055 /* We've already created this one on the presence of DEFINED in the
2056 script, so it can't be NULL unless something is borked elsewhere in
2058 if (defentry == NULL)
2061 return defentry->iteration;
2064 /* Update the definedness state of NAME. */
2067 lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
2069 struct lang_definedness_hash_entry *defentry
2070 = (struct lang_definedness_hash_entry *)
2071 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
2073 /* We don't keep track of symbols not tested with DEFINED. */
2074 if (defentry == NULL)
2077 /* If the symbol was already defined, and not from an earlier statement
2078 iteration, don't update the definedness iteration, because that'd
2079 make the symbol seem defined in the linker script at this point, and
2080 it wasn't; it was defined in some object. If we do anyway, DEFINED
2081 would start to yield false before this point and the construct "sym =
2082 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
2084 if (h->type != bfd_link_hash_undefined
2085 && h->type != bfd_link_hash_common
2086 && h->type != bfd_link_hash_new
2087 && defentry->iteration == -1)
2090 defentry->iteration = lang_statement_iteration;
2093 /* Add the supplied name to the symbol table as an undefined reference.
2094 This is a two step process as the symbol table doesn't even exist at
2095 the time the ld command line is processed. First we put the name
2096 on a list, then, once the output file has been opened, transfer the
2097 name to the symbol table. */
2099 typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
2101 #define ldlang_undef_chain_list_head entry_symbol.next
2104 ldlang_add_undef (const char *const name)
2106 ldlang_undef_chain_list_type *new =
2107 stat_alloc (sizeof (ldlang_undef_chain_list_type));
2109 new->next = ldlang_undef_chain_list_head;
2110 ldlang_undef_chain_list_head = new;
2112 new->name = xstrdup (name);
2114 if (output_bfd != NULL)
2115 insert_undefined (new->name);
2118 /* Insert NAME as undefined in the symbol table. */
2121 insert_undefined (const char *name)
2123 struct bfd_link_hash_entry *h;
2125 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
2127 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
2128 if (h->type == bfd_link_hash_new)
2130 h->type = bfd_link_hash_undefined;
2131 h->u.undef.abfd = NULL;
2132 bfd_link_add_undef (link_info.hash, h);
2136 /* Run through the list of undefineds created above and place them
2137 into the linker hash table as undefined symbols belonging to the
2141 lang_place_undefineds (void)
2143 ldlang_undef_chain_list_type *ptr;
2145 for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
2146 insert_undefined (ptr->name);
2149 /* Check for all readonly or some readwrite sections. */
2152 check_input_sections
2153 (lang_statement_union_type *s,
2154 lang_output_section_statement_type *output_section_statement)
2156 for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
2158 switch (s->header.type)
2160 case lang_wild_statement_enum:
2161 walk_wild (&s->wild_statement, check_section_callback,
2162 output_section_statement);
2163 if (! output_section_statement->all_input_readonly)
2166 case lang_constructors_statement_enum:
2167 check_input_sections (constructor_list.head,
2168 output_section_statement);
2169 if (! output_section_statement->all_input_readonly)
2172 case lang_group_statement_enum:
2173 check_input_sections (s->group_statement.children.head,
2174 output_section_statement);
2175 if (! output_section_statement->all_input_readonly)
2184 /* Open input files and attach to output sections. */
2187 map_input_to_output_sections
2188 (lang_statement_union_type *s, const char *target,
2189 lang_output_section_statement_type *output_section_statement)
2191 for (; s != NULL; s = s->header.next)
2193 switch (s->header.type)
2195 case lang_wild_statement_enum:
2196 wild (&s->wild_statement, target, output_section_statement);
2198 case lang_constructors_statement_enum:
2199 map_input_to_output_sections (constructor_list.head,
2201 output_section_statement);
2203 case lang_output_section_statement_enum:
2204 if (s->output_section_statement.constraint)
2206 if (s->output_section_statement.constraint == -1)
2208 s->output_section_statement.all_input_readonly = TRUE;
2209 check_input_sections (s->output_section_statement.children.head,
2210 &s->output_section_statement);
2211 if ((s->output_section_statement.all_input_readonly
2212 && s->output_section_statement.constraint == ONLY_IF_RW)
2213 || (!s->output_section_statement.all_input_readonly
2214 && s->output_section_statement.constraint == ONLY_IF_RO))
2216 s->output_section_statement.constraint = -1;
2221 map_input_to_output_sections (s->output_section_statement.children.head,
2223 &s->output_section_statement);
2225 case lang_output_statement_enum:
2227 case lang_target_statement_enum:
2228 target = s->target_statement.target;
2230 case lang_group_statement_enum:
2231 map_input_to_output_sections (s->group_statement.children.head,
2233 output_section_statement);
2235 case lang_data_statement_enum:
2236 /* Make sure that any sections mentioned in the expression
2238 exp_init_os (s->data_statement.exp);
2240 case lang_fill_statement_enum:
2241 case lang_input_section_enum:
2242 case lang_object_symbols_statement_enum:
2243 case lang_reloc_statement_enum:
2244 case lang_padding_statement_enum:
2245 case lang_input_statement_enum:
2246 if (output_section_statement != NULL
2247 && output_section_statement->bfd_section == NULL)
2248 init_os (output_section_statement);
2250 case lang_assignment_statement_enum:
2251 if (output_section_statement != NULL
2252 && output_section_statement->bfd_section == NULL)
2253 init_os (output_section_statement);
2255 /* Make sure that any sections mentioned in the assignment
2257 exp_init_os (s->assignment_statement.exp);
2259 case lang_afile_asection_pair_statement_enum:
2262 case lang_address_statement_enum:
2263 /* Mark the specified section with the supplied address. */
2265 lang_output_section_statement_type *os =
2266 lang_output_section_statement_lookup
2267 (s->address_statement.section_name);
2269 if (os->bfd_section == NULL)
2271 os->addr_tree = s->address_statement.address;
2278 /* An output section might have been removed after its statement was
2279 added. For example, ldemul_before_allocation can remove dynamic
2280 sections if they turn out to be not needed. Clean them up here. */
2283 strip_excluded_output_sections (void)
2285 lang_statement_union_type *u;
2287 for (u = lang_output_section_statement.head;
2289 u = u->output_section_statement.next)
2291 lang_output_section_statement_type *os;
2294 os = &u->output_section_statement;
2295 if (os->constraint == -1)
2297 s = os->bfd_section;
2298 if (s != NULL && (s->flags & SEC_EXCLUDE) != 0)
2302 os->bfd_section = NULL;
2304 for (p = &output_bfd->sections; *p; p = &(*p)->next)
2307 bfd_section_list_remove (output_bfd, p);
2308 output_bfd->section_count--;
2316 print_output_section_statement
2317 (lang_output_section_statement_type *output_section_statement)
2319 asection *section = output_section_statement->bfd_section;
2322 if (output_section_statement != abs_output_section)
2324 minfo ("\n%s", output_section_statement->name);
2326 if (section != NULL)
2328 print_dot = section->vma;
2330 len = strlen (output_section_statement->name);
2331 if (len >= SECTION_NAME_MAP_LENGTH - 1)
2336 while (len < SECTION_NAME_MAP_LENGTH)
2342 minfo ("0x%V %W", section->vma, section->_raw_size);
2344 if (output_section_statement->load_base != NULL)
2348 addr = exp_get_abs_int (output_section_statement->load_base, 0,
2349 "load base", lang_final_phase_enum);
2350 minfo (_(" load address 0x%V"), addr);
2357 print_statement_list (output_section_statement->children.head,
2358 output_section_statement);
2362 print_assignment (lang_assignment_statement_type *assignment,
2363 lang_output_section_statement_type *output_section)
2366 etree_value_type result;
2368 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2371 result = exp_fold_tree (assignment->exp->assign.src, output_section,
2372 lang_final_phase_enum, print_dot, &print_dot);
2378 value = result.value + result.section->bfd_section->vma;
2379 dst = assignment->exp->assign.dst;
2381 minfo ("0x%V", value);
2382 if (dst[0] == '.' && dst[1] == 0)
2395 exp_print_tree (assignment->exp);
2401 print_input_statement (lang_input_statement_type *statm)
2403 if (statm->filename != NULL)
2405 fprintf (config.map_file, "LOAD %s\n", statm->filename);
2409 /* Print all symbols defined in a particular section. This is called
2410 via bfd_link_hash_traverse, or by print_all_symbols. */
2413 print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
2415 asection *sec = ptr;
2417 if ((hash_entry->type == bfd_link_hash_defined
2418 || hash_entry->type == bfd_link_hash_defweak)
2419 && sec == hash_entry->u.def.section)
2423 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2426 (hash_entry->u.def.value
2427 + hash_entry->u.def.section->output_offset
2428 + hash_entry->u.def.section->output_section->vma));
2430 minfo (" %T\n", hash_entry->root.string);
2437 print_all_symbols (sec)
2440 struct fat_user_section_struct *ud = get_userdata (sec);
2441 struct map_symbol_def *def;
2443 *ud->map_symbol_def_tail = 0;
2444 for (def = ud->map_symbol_def_head; def; def = def->next)
2445 print_one_symbol (def->entry, sec);
2448 /* Print information about an input section to the map file. */
2451 print_input_section (lang_input_section_type *in)
2453 asection *i = in->section;
2454 bfd_size_type size = i->_cooked_size != 0 ? i->_cooked_size : i->_raw_size;
2463 minfo ("%s", i->name);
2465 len = 1 + strlen (i->name);
2466 if (len >= SECTION_NAME_MAP_LENGTH - 1)
2471 while (len < SECTION_NAME_MAP_LENGTH)
2477 if (i->output_section != NULL && (i->flags & SEC_EXCLUDE) == 0)
2478 addr = i->output_section->vma + i->output_offset;
2485 minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
2487 if (size != i->_raw_size)
2489 len = SECTION_NAME_MAP_LENGTH + 3;
2501 minfo (_("%W (size before relaxing)\n"), i->_raw_size);
2504 if (i->output_section != NULL && (i->flags & SEC_EXCLUDE) == 0)
2506 if (command_line.reduce_memory_overheads)
2507 bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
2509 print_all_symbols (i);
2511 print_dot = addr + TO_ADDR (size);
2517 print_fill_statement (lang_fill_statement_type *fill)
2521 fputs (" FILL mask 0x", config.map_file);
2522 for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
2523 fprintf (config.map_file, "%02x", *p);
2524 fputs ("\n", config.map_file);
2528 print_data_statement (lang_data_statement_type *data)
2536 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2539 addr = data->output_vma;
2540 if (data->output_section != NULL)
2541 addr += data->output_section->vma;
2569 minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
2571 if (data->exp->type.node_class != etree_value)
2574 exp_print_tree (data->exp);
2579 print_dot = addr + TO_ADDR (size);
2582 /* Print an address statement. These are generated by options like
2586 print_address_statement (lang_address_statement_type *address)
2588 minfo (_("Address of section %s set to "), address->section_name);
2589 exp_print_tree (address->address);
2593 /* Print a reloc statement. */
2596 print_reloc_statement (lang_reloc_statement_type *reloc)
2603 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2606 addr = reloc->output_vma;
2607 if (reloc->output_section != NULL)
2608 addr += reloc->output_section->vma;
2610 size = bfd_get_reloc_size (reloc->howto);
2612 minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
2614 if (reloc->name != NULL)
2615 minfo ("%s+", reloc->name);
2617 minfo ("%s+", reloc->section->name);
2619 exp_print_tree (reloc->addend_exp);
2623 print_dot = addr + TO_ADDR (size);
2627 print_padding_statement (lang_padding_statement_type *s)
2635 len = sizeof " *fill*" - 1;
2636 while (len < SECTION_NAME_MAP_LENGTH)
2642 addr = s->output_offset;
2643 if (s->output_section != NULL)
2644 addr += s->output_section->vma;
2645 minfo ("0x%V %W ", addr, (bfd_vma) s->size);
2647 if (s->fill->size != 0)
2651 for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
2652 fprintf (config.map_file, "%02x", *p);
2657 print_dot = addr + TO_ADDR (s->size);
2661 print_wild_statement (lang_wild_statement_type *w,
2662 lang_output_section_statement_type *os)
2664 struct wildcard_list *sec;
2668 if (w->filenames_sorted)
2670 if (w->filename != NULL)
2671 minfo ("%s", w->filename);
2674 if (w->filenames_sorted)
2678 for (sec = w->section_list; sec; sec = sec->next)
2680 if (sec->spec.sorted)
2682 if (sec->spec.exclude_name_list != NULL)
2685 minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
2686 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
2687 minfo (" %s", tmp->name);
2690 if (sec->spec.name != NULL)
2691 minfo ("%s", sec->spec.name);
2694 if (sec->spec.sorted)
2703 print_statement_list (w->children.head, os);
2706 /* Print a group statement. */
2709 print_group (lang_group_statement_type *s,
2710 lang_output_section_statement_type *os)
2712 fprintf (config.map_file, "START GROUP\n");
2713 print_statement_list (s->children.head, os);
2714 fprintf (config.map_file, "END GROUP\n");
2717 /* Print the list of statements in S.
2718 This can be called for any statement type. */
2721 print_statement_list (lang_statement_union_type *s,
2722 lang_output_section_statement_type *os)
2726 print_statement (s, os);
2731 /* Print the first statement in statement list S.
2732 This can be called for any statement type. */
2735 print_statement (lang_statement_union_type *s,
2736 lang_output_section_statement_type *os)
2738 switch (s->header.type)
2741 fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
2744 case lang_constructors_statement_enum:
2745 if (constructor_list.head != NULL)
2747 if (constructors_sorted)
2748 minfo (" SORT (CONSTRUCTORS)\n");
2750 minfo (" CONSTRUCTORS\n");
2751 print_statement_list (constructor_list.head, os);
2754 case lang_wild_statement_enum:
2755 print_wild_statement (&s->wild_statement, os);
2757 case lang_address_statement_enum:
2758 print_address_statement (&s->address_statement);
2760 case lang_object_symbols_statement_enum:
2761 minfo (" CREATE_OBJECT_SYMBOLS\n");
2763 case lang_fill_statement_enum:
2764 print_fill_statement (&s->fill_statement);
2766 case lang_data_statement_enum:
2767 print_data_statement (&s->data_statement);
2769 case lang_reloc_statement_enum:
2770 print_reloc_statement (&s->reloc_statement);
2772 case lang_input_section_enum:
2773 print_input_section (&s->input_section);
2775 case lang_padding_statement_enum:
2776 print_padding_statement (&s->padding_statement);
2778 case lang_output_section_statement_enum:
2779 print_output_section_statement (&s->output_section_statement);
2781 case lang_assignment_statement_enum:
2782 print_assignment (&s->assignment_statement, os);
2784 case lang_target_statement_enum:
2785 fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
2787 case lang_output_statement_enum:
2788 minfo ("OUTPUT(%s", s->output_statement.name);
2789 if (output_target != NULL)
2790 minfo (" %s", output_target);
2793 case lang_input_statement_enum:
2794 print_input_statement (&s->input_statement);
2796 case lang_group_statement_enum:
2797 print_group (&s->group_statement, os);
2799 case lang_afile_asection_pair_statement_enum:
2806 print_statements (void)
2808 print_statement_list (statement_list.head, abs_output_section);
2811 /* Print the first N statements in statement list S to STDERR.
2812 If N == 0, nothing is printed.
2813 If N < 0, the entire list is printed.
2814 Intended to be called from GDB. */
2817 dprint_statement (lang_statement_union_type *s, int n)
2819 FILE *map_save = config.map_file;
2821 config.map_file = stderr;
2824 print_statement_list (s, abs_output_section);
2827 while (s && --n >= 0)
2829 print_statement (s, abs_output_section);
2834 config.map_file = map_save;
2838 insert_pad (lang_statement_union_type **ptr,
2840 unsigned int alignment_needed,
2841 asection *output_section,
2844 static fill_type zero_fill = { 1, { 0 } };
2845 lang_statement_union_type *pad;
2847 pad = ((lang_statement_union_type *)
2848 ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
2849 if (ptr != &statement_list.head
2850 && pad->header.type == lang_padding_statement_enum
2851 && pad->padding_statement.output_section == output_section)
2853 /* Use the existing pad statement. The above test on output
2854 section is probably redundant, but it doesn't hurt to check. */
2858 /* Make a new padding statement, linked into existing chain. */
2859 pad = stat_alloc (sizeof (lang_padding_statement_type));
2860 pad->header.next = *ptr;
2862 pad->header.type = lang_padding_statement_enum;
2863 pad->padding_statement.output_section = output_section;
2866 pad->padding_statement.fill = fill;
2868 pad->padding_statement.output_offset = dot - output_section->vma;
2869 pad->padding_statement.size = alignment_needed;
2870 output_section->_raw_size += alignment_needed;
2873 /* Work out how much this section will move the dot point. */
2877 (lang_statement_union_type **this_ptr,
2878 lang_output_section_statement_type *output_section_statement,
2882 lang_input_section_type *is = &((*this_ptr)->input_section);
2883 asection *i = is->section;
2885 if (!is->ifile->just_syms_flag && (i->flags & SEC_EXCLUDE) == 0)
2887 unsigned int alignment_needed;
2890 /* Align this section first to the input sections requirement,
2891 then to the output section's requirement. If this alignment
2892 is greater than any seen before, then record it too. Perform
2893 the alignment by inserting a magic 'padding' statement. */
2895 if (output_section_statement->subsection_alignment != -1)
2896 i->alignment_power = output_section_statement->subsection_alignment;
2898 o = output_section_statement->bfd_section;
2899 if (o->alignment_power < i->alignment_power)
2900 o->alignment_power = i->alignment_power;
2902 alignment_needed = align_power (dot, i->alignment_power) - dot;
2904 if (alignment_needed != 0)
2906 insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
2907 dot += alignment_needed;
2910 /* Remember where in the output section this input section goes. */
2912 i->output_offset = dot - o->vma;
2914 /* Mark how big the output section must be to contain this now. */
2915 if (i->_cooked_size != 0)
2916 dot += TO_ADDR (i->_cooked_size);
2918 dot += TO_ADDR (i->_raw_size);
2919 o->_raw_size = TO_SIZE (dot - o->vma);
2923 i->output_offset = i->vma - output_section_statement->bfd_section->vma;
2929 #define IGNORE_SECTION(bfd, s) \
2930 (((s->flags & SEC_THREAD_LOCAL) != 0 \
2931 ? (s->flags & (SEC_LOAD | SEC_NEVER_LOAD)) != SEC_LOAD \
2932 : (s->flags & (SEC_ALLOC | SEC_NEVER_LOAD)) != SEC_ALLOC) \
2933 || bfd_section_size (bfd, s) == 0)
2935 /* Check to see if any allocated sections overlap with other allocated
2936 sections. This can happen when the linker script specifically specifies
2937 the output section addresses of the two sections. */
2940 lang_check_section_addresses (void)
2944 /* Scan all sections in the output list. */
2945 for (s = output_bfd->sections; s != NULL; s = s->next)
2949 /* Ignore sections which are not loaded or which have no contents. */
2950 if (IGNORE_SECTION (output_bfd, s))
2953 /* Once we reach section 's' stop our seach. This prevents two
2954 warning messages from being produced, one for 'section A overlaps
2955 section B' and one for 'section B overlaps section A'. */
2956 for (os = output_bfd->sections; os != s; os = os->next)
2963 /* Only consider loadable sections with real contents. */
2964 if (IGNORE_SECTION (output_bfd, os))
2967 /* We must check the sections' LMA addresses not their
2968 VMA addresses because overlay sections can have
2969 overlapping VMAs but they must have distinct LMAs. */
2970 s_start = bfd_section_lma (output_bfd, s);
2971 os_start = bfd_section_lma (output_bfd, os);
2972 s_end = s_start + TO_ADDR (bfd_section_size (output_bfd, s)) - 1;
2973 os_end = os_start + TO_ADDR (bfd_section_size (output_bfd, os)) - 1;
2975 /* Look for an overlap. */
2976 if ((s_end < os_start) || (s_start > os_end))
2980 _("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
2981 s->name, s_start, s_end, os->name, os_start, os_end);
2983 /* Once we have found one overlap for this section,
2984 stop looking for others. */
2990 /* Make sure the new address is within the region. We explicitly permit the
2991 current address to be at the exact end of the region when the address is
2992 non-zero, in case the region is at the end of addressable memory and the
2993 calculation wraps around. */
2996 os_region_check (lang_output_section_statement_type *os,
2997 lang_memory_region_type *region,
3001 if ((region->current < region->origin
3002 || (region->current - region->origin > region->length))
3003 && ((region->current != region->origin + region->length)
3008 einfo (_("%X%P: address 0x%v of %B section %s"
3009 " is not within region %s\n"),
3011 os->bfd_section->owner,
3012 os->bfd_section->name,
3017 einfo (_("%X%P: region %s is full (%B section %s)\n"),
3019 os->bfd_section->owner,
3020 os->bfd_section->name);
3022 /* Reset the region pointer. */
3023 region->current = region->origin;
3027 /* Set the sizes for all the output sections. */
3030 lang_size_sections_1
3031 (lang_statement_union_type *s,
3032 lang_output_section_statement_type *output_section_statement,
3033 lang_statement_union_type **prev,
3037 bfd_boolean check_regions)
3039 /* Size up the sections from their constituent parts. */
3040 for (; s != NULL; s = s->header.next)
3042 switch (s->header.type)
3044 case lang_output_section_statement_enum:
3047 lang_output_section_statement_type *os;
3049 os = &s->output_section_statement;
3050 if (os->bfd_section == NULL)
3051 /* This section was never actually created. */
3054 /* If this is a COFF shared library section, use the size and
3055 address from the input section. FIXME: This is COFF
3056 specific; it would be cleaner if there were some other way
3057 to do this, but nothing simple comes to mind. */
3058 if ((os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
3062 if (os->children.head == NULL
3063 || os->children.head->header.next != NULL
3064 || (os->children.head->header.type
3065 != lang_input_section_enum))
3066 einfo (_("%P%X: Internal error on COFF shared library"
3067 " section %s\n"), os->name);
3069 input = os->children.head->input_section.section;
3070 bfd_set_section_vma (os->bfd_section->owner,
3072 bfd_section_vma (input->owner, input));
3073 os->bfd_section->_raw_size = input->_raw_size;
3077 if (bfd_is_abs_section (os->bfd_section))
3079 /* No matter what happens, an abs section starts at zero. */
3080 ASSERT (os->bfd_section->vma == 0);
3084 if (os->addr_tree == NULL)
3086 /* No address specified for this section, get one
3087 from the region specification. */
3088 if (os->region == NULL
3089 || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))
3090 && os->region->name[0] == '*'
3091 && strcmp (os->region->name,
3092 DEFAULT_MEMORY_REGION) == 0))
3094 os->region = lang_memory_default (os->bfd_section);
3097 /* If a loadable section is using the default memory
3098 region, and some non default memory regions were
3099 defined, issue an error message. */
3100 if (!IGNORE_SECTION (output_bfd, os->bfd_section)
3101 && ! link_info.relocatable
3103 && strcmp (os->region->name,
3104 DEFAULT_MEMORY_REGION) == 0
3105 && lang_memory_region_list != NULL
3106 && (strcmp (lang_memory_region_list->name,
3107 DEFAULT_MEMORY_REGION) != 0
3108 || lang_memory_region_list->next != NULL))
3110 /* By default this is an error rather than just a
3111 warning because if we allocate the section to the
3112 default memory region we can end up creating an
3113 excessively large binary, or even seg faulting when
3114 attempting to perform a negative seek. See
3115 sources.redhat.com/ml/binutils/2003-04/msg00423.html
3116 for an example of this. This behaviour can be
3117 overridden by the using the --no-check-sections
3119 if (command_line.check_section_addresses)
3120 einfo (_("%P%F: error: no memory region specified"
3121 " for loadable section `%s'\n"),
3122 bfd_get_section_name (output_bfd,
3125 einfo (_("%P: warning: no memory region specified"
3126 " for loadable section `%s'\n"),
3127 bfd_get_section_name (output_bfd,
3131 dot = os->region->current;
3133 if (os->section_alignment == -1)
3138 dot = align_power (dot,
3139 os->bfd_section->alignment_power);
3141 if (dot != olddot && config.warn_section_align)
3142 einfo (_("%P: warning: changing start of section"
3143 " %s by %u bytes\n"),
3144 os->name, (unsigned int) (dot - olddot));
3152 r = exp_fold_tree (os->addr_tree,
3154 lang_allocating_phase_enum,
3159 einfo (_("%F%S: non constant or forward reference"
3160 " address expression for section %s\n"),
3163 dot = r.value + r.section->bfd_section->vma;
3166 /* The section starts here.
3167 First, align to what the section needs. */
3169 if (os->section_alignment != -1)
3170 dot = align_power (dot, os->section_alignment);
3172 bfd_set_section_vma (0, os->bfd_section, dot);
3174 os->bfd_section->output_offset = 0;
3177 lang_size_sections_1 (os->children.head, os, &os->children.head,
3178 os->fill, dot, relax, check_regions);
3180 /* Put the section within the requested block size, or
3181 align at the block boundary. */
3182 after = ((os->bfd_section->vma
3183 + TO_ADDR (os->bfd_section->_raw_size)
3184 + os->block_value - 1)
3185 & - (bfd_vma) os->block_value);
3187 if (bfd_is_abs_section (os->bfd_section))
3188 ASSERT (after == os->bfd_section->vma);
3190 os->bfd_section->_raw_size
3191 = TO_SIZE (after - os->bfd_section->vma);
3193 dot = os->bfd_section->vma;
3194 /* .tbss sections effectively have zero size. */
3195 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
3196 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
3197 || link_info.relocatable)
3198 dot += TO_ADDR (os->bfd_section->_raw_size);
3202 if (os->update_dot_tree != 0)
3203 exp_fold_tree (os->update_dot_tree, abs_output_section,
3204 lang_allocating_phase_enum, dot, &dot);
3206 /* Update dot in the region ?
3207 We only do this if the section is going to be allocated,
3208 since unallocated sections do not contribute to the region's
3209 overall size in memory.
3211 If the SEC_NEVER_LOAD bit is not set, it will affect the
3212 addresses of sections after it. We have to update
3214 if (os->region != NULL
3215 && ((os->bfd_section->flags & SEC_NEVER_LOAD) == 0
3216 || (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))))
3218 os->region->current = dot;
3221 /* Make sure the new address is within the region. */
3222 os_region_check (os, os->region, os->addr_tree,
3223 os->bfd_section->vma);
3225 /* If there's no load address specified, use the run
3226 region as the load region. */
3227 if (os->lma_region == NULL && os->load_base == NULL)
3228 os->lma_region = os->region;
3230 if (os->lma_region != NULL && os->lma_region != os->region)
3232 /* Set load_base, which will be handled later. */
3233 os->load_base = exp_intop (os->lma_region->current);
3234 os->lma_region->current +=
3235 TO_ADDR (os->bfd_section->_raw_size);
3237 os_region_check (os, os->lma_region, NULL,
3238 os->bfd_section->lma);
3244 case lang_constructors_statement_enum:
3245 dot = lang_size_sections_1 (constructor_list.head,
3246 output_section_statement,
3247 &s->wild_statement.children.head,
3248 fill, dot, relax, check_regions);
3251 case lang_data_statement_enum:
3253 unsigned int size = 0;
3255 s->data_statement.output_vma =
3256 dot - output_section_statement->bfd_section->vma;
3257 s->data_statement.output_section =
3258 output_section_statement->bfd_section;
3260 /* We might refer to provided symbols in the expression, and
3261 need to mark them as needed. */
3262 exp_fold_tree (s->data_statement.exp, abs_output_section,
3263 lang_allocating_phase_enum, dot, &dot);
3265 switch (s->data_statement.type)
3283 if (size < TO_SIZE ((unsigned) 1))
3284 size = TO_SIZE ((unsigned) 1);
3285 dot += TO_ADDR (size);
3286 output_section_statement->bfd_section->_raw_size += size;
3287 /* The output section gets contents, and then we inspect for
3288 any flags set in the input script which override any ALLOC. */
3289 output_section_statement->bfd_section->flags |= SEC_HAS_CONTENTS;
3290 if (!(output_section_statement->flags & SEC_NEVER_LOAD))
3292 output_section_statement->bfd_section->flags |=
3293 SEC_ALLOC | SEC_LOAD;
3298 case lang_reloc_statement_enum:
3302 s->reloc_statement.output_vma =
3303 dot - output_section_statement->bfd_section->vma;
3304 s->reloc_statement.output_section =
3305 output_section_statement->bfd_section;
3306 size = bfd_get_reloc_size (s->reloc_statement.howto);
3307 dot += TO_ADDR (size);
3308 output_section_statement->bfd_section->_raw_size += size;
3312 case lang_wild_statement_enum:
3314 dot = lang_size_sections_1 (s->wild_statement.children.head,
3315 output_section_statement,
3316 &s->wild_statement.children.head,
3317 fill, dot, relax, check_regions);
3321 case lang_object_symbols_statement_enum:
3322 link_info.create_object_symbols_section =
3323 output_section_statement->bfd_section;
3325 case lang_output_statement_enum:
3326 case lang_target_statement_enum:
3328 case lang_input_section_enum:
3332 i = (*prev)->input_section.section;
3335 if (i->_cooked_size == 0)
3336 i->_cooked_size = i->_raw_size;
3342 if (! bfd_relax_section (i->owner, i, &link_info, &again))
3343 einfo (_("%P%F: can't relax section: %E\n"));
3347 dot = size_input_section (prev, output_section_statement,
3348 output_section_statement->fill, dot);
3351 case lang_input_statement_enum:
3353 case lang_fill_statement_enum:
3354 s->fill_statement.output_section =
3355 output_section_statement->bfd_section;
3357 fill = s->fill_statement.fill;
3359 case lang_assignment_statement_enum:
3361 bfd_vma newdot = dot;
3363 exp_fold_tree (s->assignment_statement.exp,
3364 output_section_statement,
3365 lang_allocating_phase_enum,
3371 if (output_section_statement == abs_output_section)
3373 /* If we don't have an output section, then just adjust
3374 the default memory address. */
3375 lang_memory_region_lookup (DEFAULT_MEMORY_REGION,
3376 FALSE)->current = newdot;
3380 /* Insert a pad after this statement. We can't
3381 put the pad before when relaxing, in case the
3382 assignment references dot. */
3383 insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
3384 output_section_statement->bfd_section, dot);
3386 /* Don't neuter the pad below when relaxing. */
3390 /* If dot is advanced, this implies that the section should
3391 have space allocated to it, unless the user has explicitly
3392 stated that the section should never be loaded. */
3393 if (!(output_section_statement->flags
3394 & (SEC_NEVER_LOAD | SEC_ALLOC)))
3395 output_section_statement->bfd_section->flags |= SEC_ALLOC;
3402 case lang_padding_statement_enum:
3403 /* If this is the first time lang_size_sections is called,
3404 we won't have any padding statements. If this is the
3405 second or later passes when relaxing, we should allow
3406 padding to shrink. If padding is needed on this pass, it
3407 will be added back in. */
3408 s->padding_statement.size = 0;
3410 /* Make sure output_offset is valid. If relaxation shrinks
3411 the section and this pad isn't needed, it's possible to
3412 have output_offset larger than the final size of the
3413 section. bfd_set_section_contents will complain even for
3414 a pad size of zero. */
3415 s->padding_statement.output_offset
3416 = dot - output_section_statement->bfd_section->vma;
3419 case lang_group_statement_enum:
3420 dot = lang_size_sections_1 (s->group_statement.children.head,
3421 output_section_statement,
3422 &s->group_statement.children.head,
3423 fill, dot, relax, check_regions);
3430 /* We can only get here when relaxing is turned on. */
3431 case lang_address_statement_enum:
3434 prev = &s->header.next;
3441 (lang_statement_union_type *s,
3442 lang_output_section_statement_type *output_section_statement,
3443 lang_statement_union_type **prev,
3447 bfd_boolean check_regions)
3452 /* Callers of exp_fold_tree need to increment this. */
3453 lang_statement_iteration++;
3455 exp_data_seg.phase = exp_dataseg_none;
3456 result = lang_size_sections_1 (s, output_section_statement, prev, fill,
3457 dot, relax, check_regions);
3458 if (exp_data_seg.phase == exp_dataseg_end_seen
3459 && link_info.relro && exp_data_seg.relro_end)
3461 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
3462 to put exp_data_seg.relro on a (common) page boundary. */
3464 exp_data_seg.phase = exp_dataseg_relro_adjust;
3465 result = lang_size_sections_1 (s, output_section_statement, prev, fill,
3466 dot, relax, check_regions);
3467 link_info.relro_start = exp_data_seg.base;
3468 link_info.relro_end = exp_data_seg.relro_end;
3470 else if (exp_data_seg.phase == exp_dataseg_end_seen)
3472 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
3473 a page could be saved in the data segment. */
3474 bfd_vma first, last;
3476 first = -exp_data_seg.base & (exp_data_seg.pagesize - 1);
3477 last = exp_data_seg.end & (exp_data_seg.pagesize - 1);
3479 && ((exp_data_seg.base & ~(exp_data_seg.pagesize - 1))
3480 != (exp_data_seg.end & ~(exp_data_seg.pagesize - 1)))
3481 && first + last <= exp_data_seg.pagesize)
3483 exp_data_seg.phase = exp_dataseg_adjust;
3484 lang_statement_iteration++;
3485 result = lang_size_sections_1 (s, output_section_statement, prev,
3486 fill, dot, relax, check_regions);
3490 /* Some backend relaxers want to refer to the output section size. Give
3491 them a section size that does not change on the next call while they
3492 relax. We can't set this at top because lang_reset_memory_regions
3493 which is called before we get here, sets _raw_size to 0 on relaxing
3495 for (o = output_bfd->sections; o != NULL; o = o->next)
3496 o->_cooked_size = o->_raw_size;
3501 /* Worker function for lang_do_assignments. Recursiveness goes here. */
3504 lang_do_assignments_1
3505 (lang_statement_union_type *s,
3506 lang_output_section_statement_type *output_section_statement,
3510 for (; s != NULL; s = s->header.next)
3512 switch (s->header.type)
3514 case lang_constructors_statement_enum:
3515 dot = lang_do_assignments_1 (constructor_list.head,
3516 output_section_statement,
3521 case lang_output_section_statement_enum:
3523 lang_output_section_statement_type *os;
3525 os = &(s->output_section_statement);
3526 if (os->bfd_section != NULL)
3528 dot = os->bfd_section->vma;
3529 lang_do_assignments_1 (os->children.head, os, os->fill, dot);
3530 /* .tbss sections effectively have zero size. */
3531 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
3532 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
3533 || link_info.relocatable)
3534 dot += TO_ADDR (os->bfd_section->_raw_size);
3538 /* If nothing has been placed into the output section then
3539 it won't have a bfd_section. */
3540 if (os->bfd_section)
3542 os->bfd_section->lma
3543 = exp_get_abs_int (os->load_base, 0, "load base",
3544 lang_final_phase_enum);
3549 case lang_wild_statement_enum:
3551 dot = lang_do_assignments_1 (s->wild_statement.children.head,
3552 output_section_statement,
3557 case lang_object_symbols_statement_enum:
3558 case lang_output_statement_enum:
3559 case lang_target_statement_enum:
3561 case lang_common_statement_enum:
3564 case lang_data_statement_enum:
3566 etree_value_type value;
3568 value = exp_fold_tree (s->data_statement.exp,
3570 lang_final_phase_enum, dot, &dot);
3572 einfo (_("%F%P: invalid data statement\n"));
3573 s->data_statement.value
3574 = value.value + value.section->bfd_section->vma;
3578 switch (s->data_statement.type)
3596 if (size < TO_SIZE ((unsigned) 1))
3597 size = TO_SIZE ((unsigned) 1);
3598 dot += TO_ADDR (size);
3602 case lang_reloc_statement_enum:
3604 etree_value_type value;
3606 value = exp_fold_tree (s->reloc_statement.addend_exp,
3608 lang_final_phase_enum, dot, &dot);
3609 s->reloc_statement.addend_value = value.value;
3611 einfo (_("%F%P: invalid reloc statement\n"));
3613 dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
3616 case lang_input_section_enum:
3618 asection *in = s->input_section.section;
3620 if ((in->flags & SEC_EXCLUDE) == 0)
3622 if (in->_cooked_size != 0)
3623 dot += TO_ADDR (in->_cooked_size);
3625 dot += TO_ADDR (in->_raw_size);
3630 case lang_input_statement_enum:
3632 case lang_fill_statement_enum:
3633 fill = s->fill_statement.fill;
3635 case lang_assignment_statement_enum:
3637 exp_fold_tree (s->assignment_statement.exp,
3638 output_section_statement,
3639 lang_final_phase_enum,
3645 case lang_padding_statement_enum:
3646 dot += TO_ADDR (s->padding_statement.size);
3649 case lang_group_statement_enum:
3650 dot = lang_do_assignments_1 (s->group_statement.children.head,
3651 output_section_statement,
3659 case lang_address_statement_enum:
3669 (lang_statement_union_type *s,
3670 lang_output_section_statement_type *output_section_statement,
3674 /* Callers of exp_fold_tree need to increment this. */
3675 lang_statement_iteration++;
3676 lang_do_assignments_1 (s, output_section_statement, fill, dot);
3679 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
3680 operator .startof. (section_name), it produces an undefined symbol
3681 .startof.section_name. Similarly, when it sees
3682 .sizeof. (section_name), it produces an undefined symbol
3683 .sizeof.section_name. For all the output sections, we look for
3684 such symbols, and set them to the correct value. */
3687 lang_set_startof (void)
3691 if (link_info.relocatable)
3694 for (s = output_bfd->sections; s != NULL; s = s->next)
3696 const char *secname;
3698 struct bfd_link_hash_entry *h;
3700 secname = bfd_get_section_name (output_bfd, s);
3701 buf = xmalloc (10 + strlen (secname));
3703 sprintf (buf, ".startof.%s", secname);
3704 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
3705 if (h != NULL && h->type == bfd_link_hash_undefined)
3707 h->type = bfd_link_hash_defined;
3708 h->u.def.value = bfd_get_section_vma (output_bfd, s);
3709 h->u.def.section = bfd_abs_section_ptr;
3712 sprintf (buf, ".sizeof.%s", secname);
3713 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
3714 if (h != NULL && h->type == bfd_link_hash_undefined)
3716 h->type = bfd_link_hash_defined;
3717 if (s->_cooked_size != 0)
3718 h->u.def.value = TO_ADDR (s->_cooked_size);
3720 h->u.def.value = TO_ADDR (s->_raw_size);
3721 h->u.def.section = bfd_abs_section_ptr;
3731 struct bfd_link_hash_entry *h;
3734 if (link_info.relocatable || link_info.shared)
3739 if (entry_symbol.name == NULL)
3741 /* No entry has been specified. Look for start, but don't warn
3742 if we don't find it. */
3743 entry_symbol.name = "start";
3747 h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
3748 FALSE, FALSE, TRUE);
3750 && (h->type == bfd_link_hash_defined
3751 || h->type == bfd_link_hash_defweak)
3752 && h->u.def.section->output_section != NULL)
3756 val = (h->u.def.value
3757 + bfd_get_section_vma (output_bfd,
3758 h->u.def.section->output_section)
3759 + h->u.def.section->output_offset);
3760 if (! bfd_set_start_address (output_bfd, val))
3761 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
3768 /* We couldn't find the entry symbol. Try parsing it as a
3770 val = bfd_scan_vma (entry_symbol.name, &send, 0);
3773 if (! bfd_set_start_address (output_bfd, val))
3774 einfo (_("%P%F: can't set start address\n"));
3780 /* Can't find the entry symbol, and it's not a number. Use
3781 the first address in the text section. */
3782 ts = bfd_get_section_by_name (output_bfd, entry_section);
3786 einfo (_("%P: warning: cannot find entry symbol %s;"
3787 " defaulting to %V\n"),
3789 bfd_get_section_vma (output_bfd, ts));
3790 if (! bfd_set_start_address (output_bfd,
3791 bfd_get_section_vma (output_bfd,
3793 einfo (_("%P%F: can't set start address\n"));
3798 einfo (_("%P: warning: cannot find entry symbol %s;"
3799 " not setting start address\n"),
3805 bfd_hash_table_free (&lang_definedness_table);
3808 /* This is a small function used when we want to ignore errors from
3812 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
3814 /* Don't do anything. */
3817 /* Check that the architecture of all the input files is compatible
3818 with the output file. Also call the backend to let it do any
3819 other checking that is needed. */
3824 lang_statement_union_type *file;
3826 const bfd_arch_info_type *compatible;
3828 for (file = file_chain.head; file != NULL; file = file->input_statement.next)
3830 input_bfd = file->input_statement.the_bfd;
3832 = bfd_arch_get_compatible (input_bfd, output_bfd,
3833 command_line.accept_unknown_input_arch);
3835 /* In general it is not possible to perform a relocatable
3836 link between differing object formats when the input
3837 file has relocations, because the relocations in the
3838 input format may not have equivalent representations in
3839 the output format (and besides BFD does not translate
3840 relocs for other link purposes than a final link). */
3841 if ((link_info.relocatable || link_info.emitrelocations)
3842 && (compatible == NULL
3843 || bfd_get_flavour (input_bfd) != bfd_get_flavour (output_bfd))
3844 && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
3846 einfo (_("%P%F: Relocatable linking with relocations from"
3847 " format %s (%B) to format %s (%B) is not supported\n"),
3848 bfd_get_target (input_bfd), input_bfd,
3849 bfd_get_target (output_bfd), output_bfd);
3850 /* einfo with %F exits. */
3853 if (compatible == NULL)
3855 if (command_line.warn_mismatch)
3856 einfo (_("%P: warning: %s architecture of input file `%B'"
3857 " is incompatible with %s output\n"),
3858 bfd_printable_name (input_bfd), input_bfd,
3859 bfd_printable_name (output_bfd));
3861 else if (bfd_count_sections (input_bfd))
3863 /* If the input bfd has no contents, it shouldn't set the
3864 private data of the output bfd. */
3866 bfd_error_handler_type pfn = NULL;
3868 /* If we aren't supposed to warn about mismatched input
3869 files, temporarily set the BFD error handler to a
3870 function which will do nothing. We still want to call
3871 bfd_merge_private_bfd_data, since it may set up
3872 information which is needed in the output file. */
3873 if (! command_line.warn_mismatch)
3874 pfn = bfd_set_error_handler (ignore_bfd_errors);
3875 if (! bfd_merge_private_bfd_data (input_bfd, output_bfd))
3877 if (command_line.warn_mismatch)
3878 einfo (_("%P%X: failed to merge target specific data"
3879 " of file %B\n"), input_bfd);
3881 if (! command_line.warn_mismatch)
3882 bfd_set_error_handler (pfn);
3887 /* Look through all the global common symbols and attach them to the
3888 correct section. The -sort-common command line switch may be used
3889 to roughly sort the entries by size. */
3894 if (command_line.inhibit_common_definition)
3896 if (link_info.relocatable
3897 && ! command_line.force_common_definition)
3900 if (! config.sort_common)
3901 bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
3906 for (power = 4; power >= 0; power--)
3907 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
3911 /* Place one common symbol in the correct section. */
3914 lang_one_common (struct bfd_link_hash_entry *h, void *info)
3916 unsigned int power_of_two;
3920 if (h->type != bfd_link_hash_common)
3924 power_of_two = h->u.c.p->alignment_power;
3926 if (config.sort_common
3927 && power_of_two < (unsigned int) *(int *) info)
3930 section = h->u.c.p->section;
3932 /* Increase the size of the section to align the common sym. */
3933 section->_cooked_size += ((bfd_vma) 1 << (power_of_two + opb_shift)) - 1;
3934 section->_cooked_size &= (- (bfd_vma) 1 << (power_of_two + opb_shift));
3936 /* Adjust the alignment if necessary. */
3937 if (power_of_two > section->alignment_power)
3938 section->alignment_power = power_of_two;
3940 /* Change the symbol from common to defined. */
3941 h->type = bfd_link_hash_defined;
3942 h->u.def.section = section;
3943 h->u.def.value = section->_cooked_size;
3945 /* Increase the size of the section. */
3946 section->_cooked_size += size;
3948 /* Make sure the section is allocated in memory, and make sure that
3949 it is no longer a common section. */
3950 section->flags |= SEC_ALLOC;
3951 section->flags &= ~SEC_IS_COMMON;
3953 if (config.map_file != NULL)
3955 static bfd_boolean header_printed;
3960 if (! header_printed)
3962 minfo (_("\nAllocating common symbols\n"));
3963 minfo (_("Common symbol size file\n\n"));
3964 header_printed = TRUE;
3967 name = demangle (h->root.string);
3969 len = strlen (name);
3984 if (size <= 0xffffffff)
3985 sprintf (buf, "%lx", (unsigned long) size);
3987 sprintf_vma (buf, size);
3997 minfo ("%B\n", section->owner);
4003 /* Run through the input files and ensure that every input section has
4004 somewhere to go. If one is found without a destination then create
4005 an input request and place it into the statement tree. */
4008 lang_place_orphans (void)
4010 LANG_FOR_EACH_INPUT_STATEMENT (file)
4014 for (s = file->the_bfd->sections; s != NULL; s = s->next)
4016 if (s->output_section == NULL)
4018 /* This section of the file is not attached, root
4019 around for a sensible place for it to go. */
4021 if (file->just_syms_flag)
4024 if ((s->flags & SEC_EXCLUDE) != 0)
4025 s->output_section = bfd_abs_section_ptr;
4026 else if (strcmp (s->name, "COMMON") == 0)
4028 /* This is a lonely common section which must have
4029 come from an archive. We attach to the section
4030 with the wildcard. */
4031 if (! link_info.relocatable
4032 || command_line.force_common_definition)
4034 if (default_common_section == NULL)
4037 /* This message happens when using the
4038 svr3.ifile linker script, so I have
4040 info_msg (_("%P: no [COMMON] command,"
4041 " defaulting to .bss\n"));
4043 default_common_section =
4044 lang_output_section_statement_lookup (".bss");
4047 lang_add_section (&default_common_section->children, s,
4048 default_common_section, file);
4051 else if (ldemul_place_orphan (file, s))
4055 lang_output_section_statement_type *os;
4057 os = lang_output_section_statement_lookup (s->name);
4058 lang_add_section (&os->children, s, os, file);
4066 lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
4068 flagword *ptr_flags;
4070 ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
4076 *ptr_flags |= SEC_ALLOC;
4080 *ptr_flags |= SEC_READONLY;
4084 *ptr_flags |= SEC_DATA;
4088 *ptr_flags |= SEC_CODE;
4093 *ptr_flags |= SEC_LOAD;
4097 einfo (_("%P%F: invalid syntax in flags\n"));
4104 /* Call a function on each input file. This function will be called
4105 on an archive, but not on the elements. */
4108 lang_for_each_input_file (void (*func) (lang_input_statement_type *))
4110 lang_input_statement_type *f;
4112 for (f = (lang_input_statement_type *) input_file_chain.head;
4114 f = (lang_input_statement_type *) f->next_real_file)
4118 /* Call a function on each file. The function will be called on all
4119 the elements of an archive which are included in the link, but will
4120 not be called on the archive file itself. */
4123 lang_for_each_file (void (*func) (lang_input_statement_type *))
4125 LANG_FOR_EACH_INPUT_STATEMENT (f)
4132 ldlang_add_file (lang_input_statement_type *entry)
4136 lang_statement_append (&file_chain,
4137 (lang_statement_union_type *) entry,
4140 /* The BFD linker needs to have a list of all input BFDs involved in
4142 ASSERT (entry->the_bfd->link_next == NULL);
4143 ASSERT (entry->the_bfd != output_bfd);
4144 for (pp = &link_info.input_bfds; *pp != NULL; pp = &(*pp)->link_next)
4146 *pp = entry->the_bfd;
4147 entry->the_bfd->usrdata = entry;
4148 bfd_set_gp_size (entry->the_bfd, g_switch_value);
4150 /* Look through the sections and check for any which should not be
4151 included in the link. We need to do this now, so that we can
4152 notice when the backend linker tries to report multiple
4153 definition errors for symbols which are in sections we aren't
4154 going to link. FIXME: It might be better to entirely ignore
4155 symbols which are defined in sections which are going to be
4156 discarded. This would require modifying the backend linker for
4157 each backend which might set the SEC_LINK_ONCE flag. If we do
4158 this, we should probably handle SEC_EXCLUDE in the same way. */
4160 bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
4164 lang_add_output (const char *name, int from_script)
4166 /* Make -o on command line override OUTPUT in script. */
4167 if (!had_output_filename || !from_script)
4169 output_filename = name;
4170 had_output_filename = TRUE;
4174 static lang_output_section_statement_type *current_section;
4185 for (l = 0; l < 32; l++)
4187 if (i >= (unsigned int) x)
4195 lang_output_section_statement_type *
4196 lang_enter_output_section_statement (const char *output_section_statement_name,
4197 etree_type *address_exp,
4198 enum section_type sectype,
4200 etree_type *subalign,
4204 lang_output_section_statement_type *os;
4208 lang_output_section_statement_lookup_1 (output_section_statement_name,
4211 /* Add this statement to tree. */
4213 add_statement (lang_output_section_statement_enum,
4214 output_section_statement);
4216 /* Make next things chain into subchain of this. */
4218 if (os->addr_tree == NULL)
4220 os->addr_tree = address_exp;
4222 os->sectype = sectype;
4223 if (sectype != noload_section)
4224 os->flags = SEC_NO_FLAGS;
4226 os->flags = SEC_NEVER_LOAD;
4227 os->block_value = 1;
4228 stat_ptr = &os->children;
4230 os->subsection_alignment =
4231 topower (exp_get_value_int (subalign, -1, "subsection alignment", 0));
4232 os->section_alignment =
4233 topower (exp_get_value_int (align, -1, "section alignment", 0));
4235 os->load_base = ebase;
4242 lang_output_statement_type *new =
4243 new_stat (lang_output_statement, stat_ptr);
4245 new->name = output_filename;
4248 /* Reset the current counters in the regions. */
4251 lang_reset_memory_regions (void)
4253 lang_memory_region_type *p = lang_memory_region_list;
4256 for (p = lang_memory_region_list; p != NULL; p = p->next)
4258 p->old_length = (bfd_size_type) (p->current - p->origin);
4259 p->current = p->origin;
4262 for (o = output_bfd->sections; o != NULL; o = o->next)
4266 /* Worker for lang_gc_sections_1. */
4269 gc_section_callback (lang_wild_statement_type *ptr,
4270 struct wildcard_list *sec ATTRIBUTE_UNUSED,
4272 lang_input_statement_type *file ATTRIBUTE_UNUSED,
4273 void *data ATTRIBUTE_UNUSED)
4275 /* If the wild pattern was marked KEEP, the member sections
4276 should be as well. */
4277 if (ptr->keep_sections)
4278 section->flags |= SEC_KEEP;
4281 /* Iterate over sections marking them against GC. */
4284 lang_gc_sections_1 (lang_statement_union_type *s)
4286 for (; s != NULL; s = s->header.next)
4288 switch (s->header.type)
4290 case lang_wild_statement_enum:
4291 walk_wild (&s->wild_statement, gc_section_callback, NULL);
4293 case lang_constructors_statement_enum:
4294 lang_gc_sections_1 (constructor_list.head);
4296 case lang_output_section_statement_enum:
4297 lang_gc_sections_1 (s->output_section_statement.children.head);
4299 case lang_group_statement_enum:
4300 lang_gc_sections_1 (s->group_statement.children.head);
4309 lang_gc_sections (void)
4311 struct bfd_link_hash_entry *h;
4312 ldlang_undef_chain_list_type *ulist;
4314 /* Keep all sections so marked in the link script. */
4316 lang_gc_sections_1 (statement_list.head);
4318 /* Keep all sections containing symbols undefined on the command-line,
4319 and the section containing the entry symbol. */
4321 for (ulist = link_info.gc_sym_list; ulist; ulist = ulist->next)
4323 h = bfd_link_hash_lookup (link_info.hash, ulist->name,
4324 FALSE, FALSE, FALSE);
4327 && (h->type == bfd_link_hash_defined
4328 || h->type == bfd_link_hash_defweak)
4329 && ! bfd_is_abs_section (h->u.def.section))
4331 h->u.def.section->flags |= SEC_KEEP;
4335 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
4336 the special case of debug info. (See bfd/stabs.c)
4337 Twiddle the flag here, to simplify later linker code. */
4338 if (link_info.relocatable)
4340 LANG_FOR_EACH_INPUT_STATEMENT (f)
4343 for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next)
4344 if ((sec->flags & SEC_DEBUGGING) == 0)
4345 sec->flags &= ~SEC_EXCLUDE;
4349 if (command_line.gc_sections)
4350 bfd_gc_sections (output_bfd, &link_info);
4356 lang_reasonable_defaults ();
4357 current_target = default_target;
4359 /* Open the output file. */
4360 lang_for_each_statement (ldlang_open_output);
4363 ldemul_create_output_section_statements ();
4365 /* Add to the hash table all undefineds on the command line. */
4366 lang_place_undefineds ();
4368 already_linked_table_init ();
4370 /* Create a bfd for each input file. */
4371 current_target = default_target;
4372 open_input_bfds (statement_list.head, FALSE);
4374 link_info.gc_sym_list = &entry_symbol;
4375 if (entry_symbol.name == NULL)
4376 link_info.gc_sym_list = ldlang_undef_chain_list_head;
4378 ldemul_after_open ();
4380 already_linked_table_free ();
4382 /* Make sure that we're not mixing architectures. We call this
4383 after all the input files have been opened, but before we do any
4384 other processing, so that any operations merge_private_bfd_data
4385 does on the output file will be known during the rest of the
4389 /* Handle .exports instead of a version script if we're told to do so. */
4390 if (command_line.version_exports_section)
4391 lang_do_version_exports_section ();
4393 /* Build all sets based on the information gathered from the input
4395 ldctor_build_sets ();
4397 /* Remove unreferenced sections if asked to. */
4398 lang_gc_sections ();
4400 /* Size up the common data. */
4403 /* Run through the contours of the script and attach input sections
4404 to the correct output sections. */
4405 map_input_to_output_sections (statement_list.head, NULL, NULL);
4407 /* Find any sections not attached explicitly and handle them. */
4408 lang_place_orphans ();
4410 if (! link_info.relocatable)
4414 /* Merge SEC_MERGE sections. This has to be done after GC of
4415 sections, so that GCed sections are not merged, but before
4416 assigning dynamic symbols, since removing whole input sections
4418 bfd_merge_sections (output_bfd, &link_info);
4420 /* Look for a text section and set the readonly attribute in it. */
4421 found = bfd_get_section_by_name (output_bfd, ".text");
4425 if (config.text_read_only)
4426 found->flags |= SEC_READONLY;
4428 found->flags &= ~SEC_READONLY;
4432 /* Do anything special before sizing sections. This is where ELF
4433 and other back-ends size dynamic sections. */
4434 ldemul_before_allocation ();
4436 if (!link_info.relocatable)
4437 strip_excluded_output_sections ();
4439 /* We must record the program headers before we try to fix the
4440 section positions, since they will affect SIZEOF_HEADERS. */
4441 lang_record_phdrs ();
4443 /* Size up the sections. */
4444 lang_size_sections (statement_list.head, abs_output_section,
4445 &statement_list.head, 0, 0, NULL,
4446 command_line.relax ? FALSE : TRUE);
4448 /* Now run around and relax if we can. */
4449 if (command_line.relax)
4451 /* Keep relaxing until bfd_relax_section gives up. */
4452 bfd_boolean relax_again;
4456 relax_again = FALSE;
4458 /* Note: pe-dll.c does something like this also. If you find
4459 you need to change this code, you probably need to change
4460 pe-dll.c also. DJ */
4462 /* Do all the assignments with our current guesses as to
4464 lang_do_assignments (statement_list.head, abs_output_section,
4467 /* We must do this after lang_do_assignments, because it uses
4469 lang_reset_memory_regions ();
4471 /* Perform another relax pass - this time we know where the
4472 globals are, so can make a better guess. */
4473 lang_size_sections (statement_list.head, abs_output_section,
4474 &statement_list.head, 0, 0, &relax_again, FALSE);
4476 /* If the normal relax is done and the relax finalize pass
4477 is not performed yet, we perform another relax pass. */
4478 if (!relax_again && link_info.need_relax_finalize)
4480 link_info.need_relax_finalize = FALSE;
4484 while (relax_again);
4486 /* Final extra sizing to report errors. */
4487 lang_do_assignments (statement_list.head, abs_output_section, NULL, 0);
4488 lang_reset_memory_regions ();
4489 lang_size_sections (statement_list.head, abs_output_section,
4490 &statement_list.head, 0, 0, NULL, TRUE);
4493 /* See if anything special should be done now we know how big
4495 ldemul_after_allocation ();
4497 /* Fix any .startof. or .sizeof. symbols. */
4498 lang_set_startof ();
4500 /* Do all the assignments, now that we know the final resting places
4501 of all the symbols. */
4503 lang_do_assignments (statement_list.head, abs_output_section, NULL, 0);
4505 /* Make sure that the section addresses make sense. */
4506 if (! link_info.relocatable
4507 && command_line.check_section_addresses)
4508 lang_check_section_addresses ();
4516 /* EXPORTED TO YACC */
4519 lang_add_wild (struct wildcard_spec *filespec,
4520 struct wildcard_list *section_list,
4521 bfd_boolean keep_sections)
4523 struct wildcard_list *curr, *next;
4524 lang_wild_statement_type *new;
4526 /* Reverse the list as the parser puts it back to front. */
4527 for (curr = section_list, section_list = NULL;
4529 section_list = curr, curr = next)
4531 if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
4532 placed_commons = TRUE;
4535 curr->next = section_list;
4538 if (filespec != NULL && filespec->name != NULL)
4540 if (strcmp (filespec->name, "*") == 0)
4541 filespec->name = NULL;
4542 else if (! wildcardp (filespec->name))
4543 lang_has_input_file = TRUE;
4546 new = new_stat (lang_wild_statement, stat_ptr);
4547 new->filename = NULL;
4548 new->filenames_sorted = FALSE;
4549 if (filespec != NULL)
4551 new->filename = filespec->name;
4552 new->filenames_sorted = filespec->sorted;
4554 new->section_list = section_list;
4555 new->keep_sections = keep_sections;
4556 lang_list_init (&new->children);
4560 lang_section_start (const char *name, etree_type *address)
4562 lang_address_statement_type *ad;
4564 ad = new_stat (lang_address_statement, stat_ptr);
4565 ad->section_name = name;
4566 ad->address = address;
4569 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
4570 because of a -e argument on the command line, or zero if this is
4571 called by ENTRY in a linker script. Command line arguments take
4575 lang_add_entry (const char *name, bfd_boolean cmdline)
4577 if (entry_symbol.name == NULL
4579 || ! entry_from_cmdline)
4581 entry_symbol.name = name;
4582 entry_from_cmdline = cmdline;
4587 lang_add_target (const char *name)
4589 lang_target_statement_type *new = new_stat (lang_target_statement,
4597 lang_add_map (const char *name)
4604 map_option_f = TRUE;
4612 lang_add_fill (fill_type *fill)
4614 lang_fill_statement_type *new = new_stat (lang_fill_statement,
4621 lang_add_data (int type, union etree_union *exp)
4624 lang_data_statement_type *new = new_stat (lang_data_statement,
4632 /* Create a new reloc statement. RELOC is the BFD relocation type to
4633 generate. HOWTO is the corresponding howto structure (we could
4634 look this up, but the caller has already done so). SECTION is the
4635 section to generate a reloc against, or NAME is the name of the
4636 symbol to generate a reloc against. Exactly one of SECTION and
4637 NAME must be NULL. ADDEND is an expression for the addend. */
4640 lang_add_reloc (bfd_reloc_code_real_type reloc,
4641 reloc_howto_type *howto,
4644 union etree_union *addend)
4646 lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
4650 p->section = section;
4652 p->addend_exp = addend;
4654 p->addend_value = 0;
4655 p->output_section = NULL;
4659 lang_assignment_statement_type *
4660 lang_add_assignment (etree_type *exp)
4662 lang_assignment_statement_type *new = new_stat (lang_assignment_statement,
4670 lang_add_attribute (enum statement_enum attribute)
4672 new_statement (attribute, sizeof (lang_statement_union_type), stat_ptr);
4676 lang_startup (const char *name)
4678 if (startup_file != NULL)
4680 einfo (_("%P%Fmultiple STARTUP files\n"));
4682 first_file->filename = name;
4683 first_file->local_sym_name = name;
4684 first_file->real = TRUE;
4686 startup_file = name;
4690 lang_float (bfd_boolean maybe)
4692 lang_float_flag = maybe;
4696 /* Work out the load- and run-time regions from a script statement, and
4697 store them in *LMA_REGION and *REGION respectively.
4699 MEMSPEC is the name of the run-time region, or the value of
4700 DEFAULT_MEMORY_REGION if the statement didn't specify one.
4701 LMA_MEMSPEC is the name of the load-time region, or null if the
4702 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
4703 had an explicit load address.
4705 It is an error to specify both a load region and a load address. */
4708 lang_get_regions (lang_memory_region_type **region,
4709 lang_memory_region_type **lma_region,
4710 const char *memspec,
4711 const char *lma_memspec,
4712 bfd_boolean have_lma,
4713 bfd_boolean have_vma)
4715 *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
4717 /* If no runtime region or VMA has been specified, but the load region
4718 has been specified, then use the load region for the runtime region
4720 if (lma_memspec != NULL
4722 && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
4723 *region = *lma_region;
4725 *region = lang_memory_region_lookup (memspec, FALSE);
4727 if (have_lma && lma_memspec != 0)
4728 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
4732 lang_leave_output_section_statement (fill_type *fill, const char *memspec,
4733 lang_output_section_phdr_list *phdrs,
4734 const char *lma_memspec)
4736 lang_get_regions (¤t_section->region,
4737 ¤t_section->lma_region,
4738 memspec, lma_memspec,
4739 current_section->load_base != NULL,
4740 current_section->addr_tree != NULL);
4741 current_section->fill = fill;
4742 current_section->phdrs = phdrs;
4743 stat_ptr = &statement_list;
4746 /* Create an absolute symbol with the given name with the value of the
4747 address of first byte of the section named.
4749 If the symbol already exists, then do nothing. */
4752 lang_abs_symbol_at_beginning_of (const char *secname, const char *name)
4754 struct bfd_link_hash_entry *h;
4756 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
4758 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4760 if (h->type == bfd_link_hash_new
4761 || h->type == bfd_link_hash_undefined)
4765 h->type = bfd_link_hash_defined;
4767 sec = bfd_get_section_by_name (output_bfd, secname);
4771 h->u.def.value = bfd_get_section_vma (output_bfd, sec);
4773 h->u.def.section = bfd_abs_section_ptr;
4777 /* Create an absolute symbol with the given name with the value of the
4778 address of the first byte after the end of the section named.
4780 If the symbol already exists, then do nothing. */
4783 lang_abs_symbol_at_end_of (const char *secname, const char *name)
4785 struct bfd_link_hash_entry *h;
4787 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
4789 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4791 if (h->type == bfd_link_hash_new
4792 || h->type == bfd_link_hash_undefined)
4796 h->type = bfd_link_hash_defined;
4798 sec = bfd_get_section_by_name (output_bfd, secname);
4802 h->u.def.value = (bfd_get_section_vma (output_bfd, sec)
4803 + TO_ADDR (bfd_section_size (output_bfd, sec)));
4805 h->u.def.section = bfd_abs_section_ptr;
4810 lang_statement_append (lang_statement_list_type *list,
4811 lang_statement_union_type *element,
4812 lang_statement_union_type **field)
4814 *(list->tail) = element;
4818 /* Set the output format type. -oformat overrides scripts. */
4821 lang_add_output_format (const char *format,
4826 if (output_target == NULL || !from_script)
4828 if (command_line.endian == ENDIAN_BIG
4831 else if (command_line.endian == ENDIAN_LITTLE
4835 output_target = format;
4839 /* Enter a group. This creates a new lang_group_statement, and sets
4840 stat_ptr to build new statements within the group. */
4843 lang_enter_group (void)
4845 lang_group_statement_type *g;
4847 g = new_stat (lang_group_statement, stat_ptr);
4848 lang_list_init (&g->children);
4849 stat_ptr = &g->children;
4852 /* Leave a group. This just resets stat_ptr to start writing to the
4853 regular list of statements again. Note that this will not work if
4854 groups can occur inside anything else which can adjust stat_ptr,
4855 but currently they can't. */
4858 lang_leave_group (void)
4860 stat_ptr = &statement_list;
4863 /* Add a new program header. This is called for each entry in a PHDRS
4864 command in a linker script. */
4867 lang_new_phdr (const char *name,
4869 bfd_boolean filehdr,
4874 struct lang_phdr *n, **pp;
4876 n = stat_alloc (sizeof (struct lang_phdr));
4879 n->type = exp_get_value_int (type, 0, "program header type",
4880 lang_final_phase_enum);
4881 n->filehdr = filehdr;
4886 for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
4891 /* Record the program header information in the output BFD. FIXME: We
4892 should not be calling an ELF specific function here. */
4895 lang_record_phdrs (void)
4899 lang_output_section_phdr_list *last;
4900 struct lang_phdr *l;
4901 lang_statement_union_type *u;
4904 secs = xmalloc (alc * sizeof (asection *));
4906 for (l = lang_phdr_list; l != NULL; l = l->next)
4913 for (u = lang_output_section_statement.head;
4915 u = u->output_section_statement.next)
4917 lang_output_section_statement_type *os;
4918 lang_output_section_phdr_list *pl;
4920 os = &u->output_section_statement;
4921 if (os->constraint == -1)
4929 if (os->sectype == noload_section
4930 || os->bfd_section == NULL
4931 || (os->bfd_section->flags & SEC_ALLOC) == 0)
4936 if (os->bfd_section == NULL)
4939 for (; pl != NULL; pl = pl->next)
4941 if (strcmp (pl->name, l->name) == 0)
4946 secs = xrealloc (secs, alc * sizeof (asection *));
4948 secs[c] = os->bfd_section;
4955 if (l->flags == NULL)
4958 flags = exp_get_vma (l->flags, 0, "phdr flags",
4959 lang_final_phase_enum);
4964 at = exp_get_vma (l->at, 0, "phdr load address",
4965 lang_final_phase_enum);
4967 if (! bfd_record_phdr (output_bfd, l->type,
4968 l->flags != NULL, flags, l->at != NULL,
4969 at, l->filehdr, l->phdrs, c, secs))
4970 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
4975 /* Make sure all the phdr assignments succeeded. */
4976 for (u = lang_output_section_statement.head;
4978 u = u->output_section_statement.next)
4980 lang_output_section_phdr_list *pl;
4982 if (u->output_section_statement.constraint == -1
4983 || u->output_section_statement.bfd_section == NULL)
4986 for (pl = u->output_section_statement.phdrs;
4989 if (! pl->used && strcmp (pl->name, "NONE") != 0)
4990 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
4991 u->output_section_statement.name, pl->name);
4995 /* Record a list of sections which may not be cross referenced. */
4998 lang_add_nocrossref (lang_nocrossref_type *l)
5000 struct lang_nocrossrefs *n;
5002 n = xmalloc (sizeof *n);
5003 n->next = nocrossref_list;
5005 nocrossref_list = n;
5007 /* Set notice_all so that we get informed about all symbols. */
5008 link_info.notice_all = TRUE;
5011 /* Overlay handling. We handle overlays with some static variables. */
5013 /* The overlay virtual address. */
5014 static etree_type *overlay_vma;
5015 /* And subsection alignment. */
5016 static etree_type *overlay_subalign;
5018 /* An expression for the maximum section size seen so far. */
5019 static etree_type *overlay_max;
5021 /* A list of all the sections in this overlay. */
5023 struct overlay_list {
5024 struct overlay_list *next;
5025 lang_output_section_statement_type *os;
5028 static struct overlay_list *overlay_list;
5030 /* Start handling an overlay. */
5033 lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
5035 /* The grammar should prevent nested overlays from occurring. */
5036 ASSERT (overlay_vma == NULL
5037 && overlay_subalign == NULL
5038 && overlay_max == NULL);
5040 overlay_vma = vma_expr;
5041 overlay_subalign = subalign;
5044 /* Start a section in an overlay. We handle this by calling
5045 lang_enter_output_section_statement with the correct VMA.
5046 lang_leave_overlay sets up the LMA and memory regions. */
5049 lang_enter_overlay_section (const char *name)
5051 struct overlay_list *n;
5054 lang_enter_output_section_statement (name, overlay_vma, normal_section,
5055 0, overlay_subalign, 0, 0);
5057 /* If this is the first section, then base the VMA of future
5058 sections on this one. This will work correctly even if `.' is
5059 used in the addresses. */
5060 if (overlay_list == NULL)
5061 overlay_vma = exp_nameop (ADDR, name);
5063 /* Remember the section. */
5064 n = xmalloc (sizeof *n);
5065 n->os = current_section;
5066 n->next = overlay_list;
5069 size = exp_nameop (SIZEOF, name);
5071 /* Arrange to work out the maximum section end address. */
5072 if (overlay_max == NULL)
5075 overlay_max = exp_binop (MAX_K, overlay_max, size);
5078 /* Finish a section in an overlay. There isn't any special to do
5082 lang_leave_overlay_section (fill_type *fill,
5083 lang_output_section_phdr_list *phdrs)
5090 name = current_section->name;
5092 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
5093 region and that no load-time region has been specified. It doesn't
5094 really matter what we say here, since lang_leave_overlay will
5096 lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
5098 /* Define the magic symbols. */
5100 clean = xmalloc (strlen (name) + 1);
5102 for (s1 = name; *s1 != '\0'; s1++)
5103 if (ISALNUM (*s1) || *s1 == '_')
5107 buf = xmalloc (strlen (clean) + sizeof "__load_start_");
5108 sprintf (buf, "__load_start_%s", clean);
5109 lang_add_assignment (exp_assop ('=', buf,
5110 exp_nameop (LOADADDR, name)));
5112 buf = xmalloc (strlen (clean) + sizeof "__load_stop_");
5113 sprintf (buf, "__load_stop_%s", clean);
5114 lang_add_assignment (exp_assop ('=', buf,
5116 exp_nameop (LOADADDR, name),
5117 exp_nameop (SIZEOF, name))));
5122 /* Finish an overlay. If there are any overlay wide settings, this
5123 looks through all the sections in the overlay and sets them. */
5126 lang_leave_overlay (etree_type *lma_expr,
5129 const char *memspec,
5130 lang_output_section_phdr_list *phdrs,
5131 const char *lma_memspec)
5133 lang_memory_region_type *region;
5134 lang_memory_region_type *lma_region;
5135 struct overlay_list *l;
5136 lang_nocrossref_type *nocrossref;
5138 lang_get_regions (®ion, &lma_region,
5139 memspec, lma_memspec,
5140 lma_expr != NULL, FALSE);
5144 /* After setting the size of the last section, set '.' to end of the
5146 if (overlay_list != NULL)
5147 overlay_list->os->update_dot_tree
5148 = exp_assop ('=', ".", exp_binop ('+', overlay_vma, overlay_max));
5153 struct overlay_list *next;
5155 if (fill != NULL && l->os->fill == NULL)
5158 l->os->region = region;
5159 l->os->lma_region = lma_region;
5161 /* The first section has the load address specified in the
5162 OVERLAY statement. The rest are worked out from that.
5163 The base address is not needed (and should be null) if
5164 an LMA region was specified. */
5166 l->os->load_base = lma_expr;
5167 else if (lma_region == 0)
5168 l->os->load_base = exp_binop ('+',
5169 exp_nameop (LOADADDR, l->next->os->name),
5170 exp_nameop (SIZEOF, l->next->os->name));
5172 if (phdrs != NULL && l->os->phdrs == NULL)
5173 l->os->phdrs = phdrs;
5177 lang_nocrossref_type *nc;
5179 nc = xmalloc (sizeof *nc);
5180 nc->name = l->os->name;
5181 nc->next = nocrossref;
5190 if (nocrossref != NULL)
5191 lang_add_nocrossref (nocrossref);
5194 overlay_list = NULL;
5198 /* Version handling. This is only useful for ELF. */
5200 /* This global variable holds the version tree that we build. */
5202 struct bfd_elf_version_tree *lang_elf_version_info;
5204 /* If PREV is NULL, return first version pattern matching particular symbol.
5205 If PREV is non-NULL, return first version pattern matching particular
5206 symbol after PREV (previously returned by lang_vers_match). */
5208 static struct bfd_elf_version_expr *
5209 lang_vers_match (struct bfd_elf_version_expr_head *head,
5210 struct bfd_elf_version_expr *prev,
5213 const char *cxx_sym = sym;
5214 const char *java_sym = sym;
5215 struct bfd_elf_version_expr *expr = NULL;
5217 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
5219 cxx_sym = cplus_demangle (sym, DMGL_PARAMS | DMGL_ANSI);
5223 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
5225 java_sym = cplus_demangle (sym, DMGL_JAVA);
5230 if (head->htab && (prev == NULL || prev->symbol))
5232 struct bfd_elf_version_expr e;
5234 switch (prev ? prev->mask : 0)
5237 if (head->mask & BFD_ELF_VERSION_C_TYPE)
5240 expr = htab_find (head->htab, &e);
5241 while (expr && strcmp (expr->symbol, sym) == 0)
5242 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
5248 case BFD_ELF_VERSION_C_TYPE:
5249 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
5252 expr = htab_find (head->htab, &e);
5253 while (expr && strcmp (expr->symbol, cxx_sym) == 0)
5254 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
5260 case BFD_ELF_VERSION_CXX_TYPE:
5261 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
5263 e.symbol = java_sym;
5264 expr = htab_find (head->htab, &e);
5265 while (expr && strcmp (expr->symbol, java_sym) == 0)
5266 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
5277 /* Finally, try the wildcards. */
5278 if (prev == NULL || prev->symbol)
5279 expr = head->remaining;
5286 if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
5289 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
5291 else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
5295 if (fnmatch (expr->pattern, s, 0) == 0)
5302 free ((char *) cxx_sym);
5303 if (java_sym != sym)
5304 free ((char *) java_sym);
5308 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
5309 return a string pointing to the symbol name. */
5312 realsymbol (const char *pattern)
5315 bfd_boolean changed = FALSE, backslash = FALSE;
5316 char *s, *symbol = xmalloc (strlen (pattern) + 1);
5318 for (p = pattern, s = symbol; *p != '\0'; ++p)
5320 /* It is a glob pattern only if there is no preceding
5322 if (! backslash && (*p == '?' || *p == '*' || *p == '['))
5330 /* Remove the preceding backslash. */
5337 backslash = *p == '\\';
5352 /* This is called for each variable name or match expression. */
5354 struct bfd_elf_version_expr *
5355 lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
5359 struct bfd_elf_version_expr *ret;
5361 ret = xmalloc (sizeof *ret);
5366 ret->symbol = realsymbol (new);
5368 if (lang == NULL || strcasecmp (lang, "C") == 0)
5369 ret->mask = BFD_ELF_VERSION_C_TYPE;
5370 else if (strcasecmp (lang, "C++") == 0)
5371 ret->mask = BFD_ELF_VERSION_CXX_TYPE;
5372 else if (strcasecmp (lang, "Java") == 0)
5373 ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
5376 einfo (_("%X%P: unknown language `%s' in version information\n"),
5378 ret->mask = BFD_ELF_VERSION_C_TYPE;
5381 return ldemul_new_vers_pattern (ret);
5384 /* This is called for each set of variable names and match
5387 struct bfd_elf_version_tree *
5388 lang_new_vers_node (struct bfd_elf_version_expr *globals,
5389 struct bfd_elf_version_expr *locals)
5391 struct bfd_elf_version_tree *ret;
5393 ret = xcalloc (1, sizeof *ret);
5394 ret->globals.list = globals;
5395 ret->locals.list = locals;
5396 ret->match = lang_vers_match;
5397 ret->name_indx = (unsigned int) -1;
5401 /* This static variable keeps track of version indices. */
5403 static int version_index;
5406 version_expr_head_hash (const void *p)
5408 const struct bfd_elf_version_expr *e = p;
5410 return htab_hash_string (e->symbol);
5414 version_expr_head_eq (const void *p1, const void *p2)
5416 const struct bfd_elf_version_expr *e1 = p1;
5417 const struct bfd_elf_version_expr *e2 = p2;
5419 return strcmp (e1->symbol, e2->symbol) == 0;
5423 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
5426 struct bfd_elf_version_expr *e, *next;
5427 struct bfd_elf_version_expr **list_loc, **remaining_loc;
5429 for (e = head->list; e; e = e->next)
5433 head->mask |= e->mask;
5438 head->htab = htab_create (count * 2, version_expr_head_hash,
5439 version_expr_head_eq, NULL);
5440 list_loc = &head->list;
5441 remaining_loc = &head->remaining;
5442 for (e = head->list; e; e = next)
5448 remaining_loc = &e->next;
5452 void **loc = htab_find_slot (head->htab, e, INSERT);
5456 struct bfd_elf_version_expr *e1, *last;
5462 if (e1->mask == e->mask)
5470 while (e1 && strcmp (e1->symbol, e->symbol) == 0);
5474 /* This is a duplicate. */
5475 /* FIXME: Memory leak. Sometimes pattern is not
5476 xmalloced alone, but in larger chunk of memory. */
5477 /* free (e->symbol); */
5482 e->next = last->next;
5490 list_loc = &e->next;
5494 *remaining_loc = NULL;
5495 *list_loc = head->remaining;
5498 head->remaining = head->list;
5501 /* This is called when we know the name and dependencies of the
5505 lang_register_vers_node (const char *name,
5506 struct bfd_elf_version_tree *version,
5507 struct bfd_elf_version_deps *deps)
5509 struct bfd_elf_version_tree *t, **pp;
5510 struct bfd_elf_version_expr *e1;
5515 if ((name[0] == '\0' && lang_elf_version_info != NULL)
5516 || (lang_elf_version_info && lang_elf_version_info->name[0] == '\0'))
5518 einfo (_("%X%P: anonymous version tag cannot be combined"
5519 " with other version tags\n"));
5524 /* Make sure this node has a unique name. */
5525 for (t = lang_elf_version_info; t != NULL; t = t->next)
5526 if (strcmp (t->name, name) == 0)
5527 einfo (_("%X%P: duplicate version tag `%s'\n"), name);
5529 lang_finalize_version_expr_head (&version->globals);
5530 lang_finalize_version_expr_head (&version->locals);
5532 /* Check the global and local match names, and make sure there
5533 aren't any duplicates. */
5535 for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
5537 for (t = lang_elf_version_info; t != NULL; t = t->next)
5539 struct bfd_elf_version_expr *e2;
5541 if (t->locals.htab && e1->symbol)
5543 e2 = htab_find (t->locals.htab, e1);
5544 while (e2 && strcmp (e1->symbol, e2->symbol) == 0)
5546 if (e1->mask == e2->mask)
5547 einfo (_("%X%P: duplicate expression `%s'"
5548 " in version information\n"), e1->symbol);
5552 else if (!e1->symbol)
5553 for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
5554 if (strcmp (e1->pattern, e2->pattern) == 0
5555 && e1->mask == e2->mask)
5556 einfo (_("%X%P: duplicate expression `%s'"
5557 " in version information\n"), e1->pattern);
5561 for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
5563 for (t = lang_elf_version_info; t != NULL; t = t->next)
5565 struct bfd_elf_version_expr *e2;
5567 if (t->globals.htab && e1->symbol)
5569 e2 = htab_find (t->globals.htab, e1);
5570 while (e2 && strcmp (e1->symbol, e2->symbol) == 0)
5572 if (e1->mask == e2->mask)
5573 einfo (_("%X%P: duplicate expression `%s'"
5574 " in version information\n"),
5579 else if (!e1->symbol)
5580 for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
5581 if (strcmp (e1->pattern, e2->pattern) == 0
5582 && e1->mask == e2->mask)
5583 einfo (_("%X%P: duplicate expression `%s'"
5584 " in version information\n"), e1->pattern);
5588 version->deps = deps;
5589 version->name = name;
5590 if (name[0] != '\0')
5593 version->vernum = version_index;
5596 version->vernum = 0;
5598 for (pp = &lang_elf_version_info; *pp != NULL; pp = &(*pp)->next)
5603 /* This is called when we see a version dependency. */
5605 struct bfd_elf_version_deps *
5606 lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
5608 struct bfd_elf_version_deps *ret;
5609 struct bfd_elf_version_tree *t;
5611 ret = xmalloc (sizeof *ret);
5614 for (t = lang_elf_version_info; t != NULL; t = t->next)
5616 if (strcmp (t->name, name) == 0)
5618 ret->version_needed = t;
5623 einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
5629 lang_do_version_exports_section (void)
5631 struct bfd_elf_version_expr *greg = NULL, *lreg;
5633 LANG_FOR_EACH_INPUT_STATEMENT (is)
5635 asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
5642 len = bfd_section_size (is->the_bfd, sec);
5643 contents = xmalloc (len);
5644 if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
5645 einfo (_("%X%P: unable to read .exports section contents\n"), sec);
5648 while (p < contents + len)
5650 greg = lang_new_vers_pattern (greg, p, NULL);
5651 p = strchr (p, '\0') + 1;
5654 /* Do not free the contents, as we used them creating the regex. */
5656 /* Do not include this section in the link. */
5657 sec->flags |= SEC_EXCLUDE;
5660 lreg = lang_new_vers_pattern (NULL, "*", NULL);
5661 lang_register_vers_node (command_line.version_exports_section,
5662 lang_new_vers_node (greg, lreg), NULL);
5666 lang_add_unique (const char *name)
5668 struct unique_sections *ent;
5670 for (ent = unique_section_list; ent; ent = ent->next)
5671 if (strcmp (ent->name, name) == 0)
5674 ent = xmalloc (sizeof *ent);
5675 ent->name = xstrdup (name);
5676 ent->next = unique_section_list;
5677 unique_section_list = ent;