2004-04-21 Andrew Cagney <cagney@redhat.com>
[binutils.git] / ld / ldlang.c
blob6460c32ab6de24826358b29a92e28f50f7a90c7d
1 /* Linker command language support.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004
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)
11 any later version.
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
21 02111-1307, USA. */
23 #include "bfd.h"
24 #include "sysdep.h"
25 #include "libiberty.h"
26 #include "safe-ctype.h"
27 #include "obstack.h"
28 #include "bfdlink.h"
30 #include "ld.h"
31 #include "ldmain.h"
32 #include "ldexp.h"
33 #include "ldlang.h"
34 #include <ldgram.h>
35 #include "ldlex.h"
36 #include "ldmisc.h"
37 #include "ldctor.h"
38 #include "ldfile.h"
39 #include "ldemul.h"
40 #include "fnmatch.h"
41 #include "demangle.h"
42 #include "hashtab.h"
44 #ifndef offsetof
45 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
46 #endif
48 /* Locals variables. */
49 static struct obstack stat_obstack;
51 #define obstack_chunk_alloc xmalloc
52 #define obstack_chunk_free free
53 static const char *startup_file;
54 static lang_statement_list_type input_file_chain;
55 static bfd_boolean placed_commons = FALSE;
56 static lang_output_section_statement_type *default_common_section;
57 static bfd_boolean map_option_f;
58 static bfd_vma print_dot;
59 static lang_input_statement_type *first_file;
60 static const char *current_target;
61 static const char *output_target;
62 static lang_statement_list_type statement_list;
63 static struct lang_phdr *lang_phdr_list;
64 static struct bfd_hash_table lang_definedness_table;
66 /* Forward declarations. */
67 static void exp_init_os (etree_type *);
68 static bfd_boolean wildcardp (const char *);
69 static lang_input_statement_type *lookup_name (const char *);
70 static bfd_boolean load_symbols (lang_input_statement_type *,
71 lang_statement_list_type *);
72 static struct bfd_hash_entry *lang_definedness_newfunc
73 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
74 static void insert_undefined (const char *);
75 static void print_statement (lang_statement_union_type *,
76 lang_output_section_statement_type *);
77 static void print_statement_list (lang_statement_union_type *,
78 lang_output_section_statement_type *);
79 static void print_statements (void);
80 static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
81 static void lang_record_phdrs (void);
82 static void lang_do_version_exports_section (void);
84 typedef void (*callback_t) (lang_wild_statement_type *, struct wildcard_list *,
85 asection *, lang_input_statement_type *, void *);
87 /* Exported variables. */
88 lang_output_section_statement_type *abs_output_section;
89 lang_statement_list_type lang_output_section_statement;
90 lang_statement_list_type *stat_ptr = &statement_list;
91 lang_statement_list_type file_chain = { NULL, NULL };
92 struct bfd_sym_chain entry_symbol = { NULL, NULL };
93 const char *entry_section = ".text";
94 bfd_boolean entry_from_cmdline;
95 bfd_boolean lang_has_input_file = FALSE;
96 bfd_boolean had_output_filename = FALSE;
97 bfd_boolean lang_float_flag = FALSE;
98 bfd_boolean delete_output_file_on_failure = FALSE;
99 struct lang_nocrossrefs *nocrossref_list;
100 struct unique_sections *unique_section_list;
101 static bfd_boolean ldlang_sysrooted_script = FALSE;
102 int lang_statement_iteration = 0;
104 etree_type *base; /* Relocation base - or null */
106 #define new_stat(x, y) \
107 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
109 #define outside_section_address(q) \
110 ((q)->output_offset + (q)->output_section->vma)
112 #define outside_symbol_address(q) \
113 ((q)->value + outside_section_address (q->section))
115 #define SECTION_NAME_MAP_LENGTH (16)
117 void *
118 stat_alloc (size_t size)
120 return obstack_alloc (&stat_obstack, size);
123 bfd_boolean
124 unique_section_p (const char *secnam)
126 struct unique_sections *unam;
128 for (unam = unique_section_list; unam; unam = unam->next)
129 if (wildcardp (unam->name)
130 ? fnmatch (unam->name, secnam, 0) == 0
131 : strcmp (unam->name, secnam) == 0)
133 return TRUE;
136 return FALSE;
139 /* Generic traversal routines for finding matching sections. */
141 static void
142 walk_wild_section (lang_wild_statement_type *ptr,
143 lang_input_statement_type *file,
144 callback_t callback,
145 void *data)
147 asection *s;
149 if (file->just_syms_flag)
150 return;
152 for (s = file->the_bfd->sections; s != NULL; s = s->next)
154 struct wildcard_list *sec;
156 sec = ptr->section_list;
157 if (sec == NULL)
158 (*callback) (ptr, sec, s, file, data);
160 while (sec != NULL)
162 bfd_boolean skip = FALSE;
163 struct name_list *list_tmp;
165 /* Don't process sections from files which were
166 excluded. */
167 for (list_tmp = sec->spec.exclude_name_list;
168 list_tmp;
169 list_tmp = list_tmp->next)
171 if (wildcardp (list_tmp->name))
172 skip = fnmatch (list_tmp->name, file->filename, 0) == 0;
173 else
174 skip = strcmp (list_tmp->name, file->filename) == 0;
176 /* If this file is part of an archive, and the archive is
177 excluded, exclude this file. */
178 if (! skip && file->the_bfd != NULL
179 && file->the_bfd->my_archive != NULL
180 && file->the_bfd->my_archive->filename != NULL)
182 if (wildcardp (list_tmp->name))
183 skip = fnmatch (list_tmp->name,
184 file->the_bfd->my_archive->filename,
185 0) == 0;
186 else
187 skip = strcmp (list_tmp->name,
188 file->the_bfd->my_archive->filename) == 0;
191 if (skip)
192 break;
195 if (!skip && sec->spec.name != NULL)
197 const char *sname = bfd_get_section_name (file->the_bfd, s);
199 if (wildcardp (sec->spec.name))
200 skip = fnmatch (sec->spec.name, sname, 0) != 0;
201 else
202 skip = strcmp (sec->spec.name, sname) != 0;
205 if (!skip)
206 (*callback) (ptr, sec, s, file, data);
208 sec = sec->next;
213 /* Handle a wild statement for a single file F. */
215 static void
216 walk_wild_file (lang_wild_statement_type *s,
217 lang_input_statement_type *f,
218 callback_t callback,
219 void *data)
221 if (f->the_bfd == NULL
222 || ! bfd_check_format (f->the_bfd, bfd_archive))
223 walk_wild_section (s, f, callback, data);
224 else
226 bfd *member;
228 /* This is an archive file. We must map each member of the
229 archive separately. */
230 member = bfd_openr_next_archived_file (f->the_bfd, NULL);
231 while (member != NULL)
233 /* When lookup_name is called, it will call the add_symbols
234 entry point for the archive. For each element of the
235 archive which is included, BFD will call ldlang_add_file,
236 which will set the usrdata field of the member to the
237 lang_input_statement. */
238 if (member->usrdata != NULL)
240 walk_wild_section (s, member->usrdata, callback, data);
243 member = bfd_openr_next_archived_file (f->the_bfd, member);
248 static void
249 walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
251 const char *file_spec = s->filename;
253 if (file_spec == NULL)
255 /* Perform the iteration over all files in the list. */
256 LANG_FOR_EACH_INPUT_STATEMENT (f)
258 walk_wild_file (s, f, callback, data);
261 else if (wildcardp (file_spec))
263 LANG_FOR_EACH_INPUT_STATEMENT (f)
265 if (fnmatch (file_spec, f->filename, FNM_FILE_NAME) == 0)
266 walk_wild_file (s, f, callback, data);
269 else
271 lang_input_statement_type *f;
273 /* Perform the iteration over a single file. */
274 f = lookup_name (file_spec);
275 if (f)
276 walk_wild_file (s, f, callback, data);
280 /* lang_for_each_statement walks the parse tree and calls the provided
281 function for each node. */
283 static void
284 lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
285 lang_statement_union_type *s)
287 for (; s != NULL; s = s->header.next)
289 func (s);
291 switch (s->header.type)
293 case lang_constructors_statement_enum:
294 lang_for_each_statement_worker (func, constructor_list.head);
295 break;
296 case lang_output_section_statement_enum:
297 lang_for_each_statement_worker
298 (func,
299 s->output_section_statement.children.head);
300 break;
301 case lang_wild_statement_enum:
302 lang_for_each_statement_worker
303 (func,
304 s->wild_statement.children.head);
305 break;
306 case lang_group_statement_enum:
307 lang_for_each_statement_worker (func,
308 s->group_statement.children.head);
309 break;
310 case lang_data_statement_enum:
311 case lang_reloc_statement_enum:
312 case lang_object_symbols_statement_enum:
313 case lang_output_statement_enum:
314 case lang_target_statement_enum:
315 case lang_input_section_enum:
316 case lang_input_statement_enum:
317 case lang_assignment_statement_enum:
318 case lang_padding_statement_enum:
319 case lang_address_statement_enum:
320 case lang_fill_statement_enum:
321 break;
322 default:
323 FAIL ();
324 break;
329 void
330 lang_for_each_statement (void (*func) (lang_statement_union_type *))
332 lang_for_each_statement_worker (func, statement_list.head);
335 /*----------------------------------------------------------------------*/
337 void
338 lang_list_init (lang_statement_list_type *list)
340 list->head = NULL;
341 list->tail = &list->head;
344 /* Build a new statement node for the parse tree. */
346 static lang_statement_union_type *
347 new_statement (enum statement_enum type,
348 size_t size,
349 lang_statement_list_type *list)
351 lang_statement_union_type *new;
353 new = stat_alloc (size);
354 new->header.type = type;
355 new->header.next = NULL;
356 lang_statement_append (list, new, &new->header.next);
357 return new;
360 /* Build a new input file node for the language. There are several
361 ways in which we treat an input file, eg, we only look at symbols,
362 or prefix it with a -l etc.
364 We can be supplied with requests for input files more than once;
365 they may, for example be split over several lines like foo.o(.text)
366 foo.o(.data) etc, so when asked for a file we check that we haven't
367 got it already so we don't duplicate the bfd. */
369 static lang_input_statement_type *
370 new_afile (const char *name,
371 lang_input_file_enum_type file_type,
372 const char *target,
373 bfd_boolean add_to_list)
375 lang_input_statement_type *p;
377 if (add_to_list)
378 p = new_stat (lang_input_statement, stat_ptr);
379 else
381 p = stat_alloc (sizeof (lang_input_statement_type));
382 p->header.next = NULL;
385 lang_has_input_file = TRUE;
386 p->target = target;
387 p->sysrooted = FALSE;
388 switch (file_type)
390 case lang_input_file_is_symbols_only_enum:
391 p->filename = name;
392 p->is_archive = FALSE;
393 p->real = TRUE;
394 p->local_sym_name = name;
395 p->just_syms_flag = TRUE;
396 p->search_dirs_flag = FALSE;
397 break;
398 case lang_input_file_is_fake_enum:
399 p->filename = name;
400 p->is_archive = FALSE;
401 p->real = FALSE;
402 p->local_sym_name = name;
403 p->just_syms_flag = FALSE;
404 p->search_dirs_flag = FALSE;
405 break;
406 case lang_input_file_is_l_enum:
407 p->is_archive = TRUE;
408 p->filename = name;
409 p->real = TRUE;
410 p->local_sym_name = concat ("-l", name, NULL);
411 p->just_syms_flag = FALSE;
412 p->search_dirs_flag = TRUE;
413 break;
414 case lang_input_file_is_marker_enum:
415 p->filename = name;
416 p->is_archive = FALSE;
417 p->real = FALSE;
418 p->local_sym_name = name;
419 p->just_syms_flag = FALSE;
420 p->search_dirs_flag = TRUE;
421 break;
422 case lang_input_file_is_search_file_enum:
423 p->sysrooted = ldlang_sysrooted_script;
424 p->filename = name;
425 p->is_archive = FALSE;
426 p->real = TRUE;
427 p->local_sym_name = name;
428 p->just_syms_flag = FALSE;
429 p->search_dirs_flag = TRUE;
430 break;
431 case lang_input_file_is_file_enum:
432 p->filename = name;
433 p->is_archive = FALSE;
434 p->real = TRUE;
435 p->local_sym_name = name;
436 p->just_syms_flag = FALSE;
437 p->search_dirs_flag = FALSE;
438 break;
439 default:
440 FAIL ();
442 p->the_bfd = NULL;
443 p->asymbols = NULL;
444 p->next_real_file = NULL;
445 p->next = NULL;
446 p->symbol_count = 0;
447 p->dynamic = config.dynamic_link;
448 p->as_needed = as_needed;
449 p->whole_archive = whole_archive;
450 p->loaded = FALSE;
451 lang_statement_append (&input_file_chain,
452 (lang_statement_union_type *) p,
453 &p->next_real_file);
454 return p;
457 lang_input_statement_type *
458 lang_add_input_file (const char *name,
459 lang_input_file_enum_type file_type,
460 const char *target)
462 lang_has_input_file = TRUE;
463 return new_afile (name, file_type, target, TRUE);
466 /* Build enough state so that the parser can build its tree. */
468 void
469 lang_init (void)
471 obstack_begin (&stat_obstack, 1000);
473 stat_ptr = &statement_list;
475 lang_list_init (stat_ptr);
477 lang_list_init (&input_file_chain);
478 lang_list_init (&lang_output_section_statement);
479 lang_list_init (&file_chain);
480 first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
481 NULL);
482 abs_output_section =
483 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME);
485 abs_output_section->bfd_section = bfd_abs_section_ptr;
487 /* The value "3" is ad-hoc, somewhat related to the expected number of
488 DEFINED expressions in a linker script. For most default linker
489 scripts, there are none. Why a hash table then? Well, it's somewhat
490 simpler to re-use working machinery than using a linked list in terms
491 of code-complexity here in ld, besides the initialization which just
492 looks like other code here. */
493 if (bfd_hash_table_init_n (&lang_definedness_table,
494 lang_definedness_newfunc, 3) != TRUE)
495 einfo (_("%P%F: out of memory during initialization"));
497 /* Callers of exp_fold_tree need to increment this. */
498 lang_statement_iteration = 0;
501 /*----------------------------------------------------------------------
502 A region is an area of memory declared with the
503 MEMORY { name:org=exp, len=exp ... }
504 syntax.
506 We maintain a list of all the regions here.
508 If no regions are specified in the script, then the default is used
509 which is created when looked up to be the entire data space.
511 If create is true we are creating a region inside a MEMORY block.
512 In this case it is probably an error to create a region that has
513 already been created. If we are not inside a MEMORY block it is
514 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
515 and so we issue a warning. */
517 static lang_memory_region_type *lang_memory_region_list;
518 static lang_memory_region_type **lang_memory_region_list_tail = &lang_memory_region_list;
520 lang_memory_region_type *
521 lang_memory_region_lookup (const char *const name, bfd_boolean create)
523 lang_memory_region_type *p;
524 lang_memory_region_type *new;
526 /* NAME is NULL for LMA memspecs if no region was specified. */
527 if (name == NULL)
528 return NULL;
530 for (p = lang_memory_region_list; p != NULL; p = p->next)
531 if (strcmp (p->name, name) == 0)
533 if (create)
534 einfo (_("%P:%S: warning: redeclaration of memory region '%s'\n"), name);
535 return p;
538 #if 0
539 /* This code used to always use the first region in the list as the
540 default region. I changed it to instead use a region
541 encompassing all of memory as the default region. This permits
542 NOLOAD sections to work reasonably without requiring a region.
543 People should specify what region they mean, if they really want
544 a region. */
545 if (strcmp (name, DEFAULT_MEMORY_REGION) == 0)
547 if (lang_memory_region_list != NULL)
548 return lang_memory_region_list;
550 #endif
552 if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
553 einfo (_("%P:%S: warning: memory region %s not declared\n"), name);
555 new = stat_alloc (sizeof (lang_memory_region_type));
557 new->name = xstrdup (name);
558 new->next = NULL;
560 *lang_memory_region_list_tail = new;
561 lang_memory_region_list_tail = &new->next;
562 new->origin = 0;
563 new->flags = 0;
564 new->not_flags = 0;
565 new->length = ~(bfd_size_type) 0;
566 new->current = 0;
567 new->had_full_message = FALSE;
569 return new;
572 static lang_memory_region_type *
573 lang_memory_default (asection *section)
575 lang_memory_region_type *p;
577 flagword sec_flags = section->flags;
579 /* Override SEC_DATA to mean a writable section. */
580 if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
581 sec_flags |= SEC_DATA;
583 for (p = lang_memory_region_list; p != NULL; p = p->next)
585 if ((p->flags & sec_flags) != 0
586 && (p->not_flags & sec_flags) == 0)
588 return p;
591 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
594 lang_output_section_statement_type *
595 lang_output_section_find (const char *const name)
597 lang_statement_union_type *u;
598 lang_output_section_statement_type *lookup;
600 for (u = lang_output_section_statement.head; u != NULL; u = lookup->next)
602 lookup = &u->output_section_statement;
603 if (strcmp (name, lookup->name) == 0)
604 return lookup;
606 return NULL;
609 lang_output_section_statement_type *
610 lang_output_section_statement_lookup (const char *const name)
612 lang_output_section_statement_type *lookup;
614 lookup = lang_output_section_find (name);
615 if (lookup == NULL)
617 lookup = new_stat (lang_output_section_statement, stat_ptr);
618 lookup->region = NULL;
619 lookup->lma_region = NULL;
620 lookup->fill = 0;
621 lookup->block_value = 1;
622 lookup->name = name;
624 lookup->next = NULL;
625 lookup->bfd_section = NULL;
626 lookup->processed = 0;
627 lookup->sectype = normal_section;
628 lookup->addr_tree = NULL;
629 lang_list_init (&lookup->children);
631 lookup->memspec = NULL;
632 lookup->flags = 0;
633 lookup->subsection_alignment = -1;
634 lookup->section_alignment = -1;
635 lookup->load_base = NULL;
636 lookup->update_dot_tree = NULL;
637 lookup->phdrs = NULL;
639 lang_statement_append (&lang_output_section_statement,
640 (lang_statement_union_type *) lookup,
641 &lookup->next);
643 return lookup;
646 static void
647 lang_map_flags (flagword flag)
649 if (flag & SEC_ALLOC)
650 minfo ("a");
652 if (flag & SEC_CODE)
653 minfo ("x");
655 if (flag & SEC_READONLY)
656 minfo ("r");
658 if (flag & SEC_DATA)
659 minfo ("w");
661 if (flag & SEC_LOAD)
662 minfo ("l");
665 void
666 lang_map (void)
668 lang_memory_region_type *m;
670 minfo (_("\nMemory Configuration\n\n"));
671 fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
672 _("Name"), _("Origin"), _("Length"), _("Attributes"));
674 for (m = lang_memory_region_list; m != NULL; m = m->next)
676 char buf[100];
677 int len;
679 fprintf (config.map_file, "%-16s ", m->name);
681 sprintf_vma (buf, m->origin);
682 minfo ("0x%s ", buf);
683 len = strlen (buf);
684 while (len < 16)
686 print_space ();
687 ++len;
690 minfo ("0x%V", m->length);
691 if (m->flags || m->not_flags)
693 #ifndef BFD64
694 minfo (" ");
695 #endif
696 if (m->flags)
698 print_space ();
699 lang_map_flags (m->flags);
702 if (m->not_flags)
704 minfo (" !");
705 lang_map_flags (m->not_flags);
709 print_nl ();
712 fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
714 print_statements ();
717 /* Initialize an output section. */
719 static void
720 init_os (lang_output_section_statement_type *s)
722 section_userdata_type *new;
724 if (s->bfd_section != NULL)
725 return;
727 if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
728 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
730 new = stat_alloc (sizeof (section_userdata_type));
732 s->bfd_section = bfd_get_section_by_name (output_bfd, s->name);
733 if (s->bfd_section == NULL)
734 s->bfd_section = bfd_make_section (output_bfd, s->name);
735 if (s->bfd_section == NULL)
737 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
738 output_bfd->xvec->name, s->name);
740 s->bfd_section->output_section = s->bfd_section;
742 /* We initialize an output sections output offset to minus its own
743 vma to allow us to output a section through itself. */
744 s->bfd_section->output_offset = 0;
745 get_userdata (s->bfd_section) = new;
747 /* If there is a base address, make sure that any sections it might
748 mention are initialized. */
749 if (s->addr_tree != NULL)
750 exp_init_os (s->addr_tree);
752 if (s->load_base != NULL)
753 exp_init_os (s->load_base);
756 /* Make sure that all output sections mentioned in an expression are
757 initialized. */
759 static void
760 exp_init_os (etree_type *exp)
762 switch (exp->type.node_class)
764 case etree_assign:
765 exp_init_os (exp->assign.src);
766 break;
768 case etree_binary:
769 exp_init_os (exp->binary.lhs);
770 exp_init_os (exp->binary.rhs);
771 break;
773 case etree_trinary:
774 exp_init_os (exp->trinary.cond);
775 exp_init_os (exp->trinary.lhs);
776 exp_init_os (exp->trinary.rhs);
777 break;
779 case etree_assert:
780 exp_init_os (exp->assert_s.child);
781 break;
783 case etree_unary:
784 exp_init_os (exp->unary.child);
785 break;
787 case etree_name:
788 switch (exp->type.node_code)
790 case ADDR:
791 case LOADADDR:
792 case SIZEOF:
794 lang_output_section_statement_type *os;
796 os = lang_output_section_find (exp->name.name);
797 if (os != NULL && os->bfd_section == NULL)
798 init_os (os);
801 break;
803 default:
804 break;
808 /* Sections marked with the SEC_LINK_ONCE flag should only be linked
809 once into the output. This routine checks each section, and
810 arrange to discard it if a section of the same name has already
811 been linked. If the section has COMDAT information, then it uses
812 that to decide whether the section should be included. This code
813 assumes that all relevant sections have the SEC_LINK_ONCE flag set;
814 that is, it does not depend solely upon the section name.
815 section_already_linked is called via bfd_map_over_sections. */
817 /* This is the shape of the elements inside the already_linked hash
818 table. It maps a name onto a list of already_linked elements with
819 the same name. It's possible to get more than one element in a
820 list if the COMDAT sections have different names. */
822 struct already_linked_hash_entry
824 struct bfd_hash_entry root;
825 struct already_linked *entry;
828 struct already_linked
830 struct already_linked *next;
831 asection *sec;
834 /* The hash table. */
836 static struct bfd_hash_table already_linked_table;
838 static void
839 section_already_linked (bfd *abfd, asection *sec, void *data)
841 lang_input_statement_type *entry = data;
842 flagword flags;
843 const char *name;
844 struct already_linked *l;
845 struct already_linked_hash_entry *already_linked_list;
847 /* If we are only reading symbols from this object, then we want to
848 discard all sections. */
849 if (entry->just_syms_flag)
851 bfd_link_just_syms (sec, &link_info);
852 return;
855 flags = bfd_get_section_flags (abfd, sec);
857 if ((flags & SEC_LINK_ONCE) == 0)
858 return;
860 /* FIXME: When doing a relocatable link, we may have trouble
861 copying relocations in other sections that refer to local symbols
862 in the section being discarded. Those relocations will have to
863 be converted somehow; as of this writing I'm not sure that any of
864 the backends handle that correctly.
866 It is tempting to instead not discard link once sections when
867 doing a relocatable link (technically, they should be discarded
868 whenever we are building constructors). However, that fails,
869 because the linker winds up combining all the link once sections
870 into a single large link once section, which defeats the purpose
871 of having link once sections in the first place.
873 Also, not merging link once sections in a relocatable link
874 causes trouble for MIPS ELF, which relies on link once semantics
875 to handle the .reginfo section correctly. */
877 name = bfd_get_section_name (abfd, sec);
879 already_linked_list =
880 ((struct already_linked_hash_entry *)
881 bfd_hash_lookup (&already_linked_table, name, TRUE, FALSE));
883 for (l = already_linked_list->entry; l != NULL; l = l->next)
885 if (sec->comdat == NULL
886 || l->sec->comdat == NULL
887 || strcmp (sec->comdat->name, l->sec->comdat->name) == 0)
889 /* The section has already been linked. See if we should
890 issue a warning. */
891 switch (flags & SEC_LINK_DUPLICATES)
893 default:
894 abort ();
896 case SEC_LINK_DUPLICATES_DISCARD:
897 break;
899 case SEC_LINK_DUPLICATES_ONE_ONLY:
900 if (sec->comdat == NULL)
901 einfo (_("%P: %B: warning: ignoring duplicate section `%s'\n"),
902 abfd, name);
903 else
904 einfo (_("%P: %B: warning: ignoring duplicate `%s' section symbol `%s'\n"),
905 abfd, name, sec->comdat->name);
906 break;
908 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
909 /* FIXME: We should really dig out the contents of both
910 sections and memcmp them. The COFF/PE spec says that
911 the Microsoft linker does not implement this
912 correctly, so I'm not going to bother doing it
913 either. */
914 /* Fall through. */
915 case SEC_LINK_DUPLICATES_SAME_SIZE:
916 if (bfd_section_size (abfd, sec)
917 != bfd_section_size (l->sec->owner, l->sec))
918 einfo (_("%P: %B: warning: duplicate section `%s' has different size\n"),
919 abfd, name);
920 break;
923 /* Set the output_section field so that lang_add_section
924 does not create a lang_input_section structure for this
925 section. Since there might be a symbol in the section
926 being discarded, we must retain a pointer to the section
927 which we are really going to use. */
928 sec->output_section = bfd_abs_section_ptr;
929 sec->kept_section = l->sec;
931 if (flags & SEC_GROUP)
932 bfd_discard_group (abfd, sec);
934 return;
938 /* This is the first section with this name. Record it. Allocate
939 the memory from the same obstack as the hash table is kept in. */
941 l = bfd_hash_allocate (&already_linked_table, sizeof *l);
943 l->sec = sec;
944 l->next = already_linked_list->entry;
945 already_linked_list->entry = l;
948 /* Support routines for the hash table used by section_already_linked,
949 initialize the table, fill in an entry and remove the table. */
951 static struct bfd_hash_entry *
952 already_linked_newfunc (struct bfd_hash_entry *entry ATTRIBUTE_UNUSED,
953 struct bfd_hash_table *table,
954 const char *string ATTRIBUTE_UNUSED)
956 struct already_linked_hash_entry *ret =
957 bfd_hash_allocate (table, sizeof (struct already_linked_hash_entry));
959 ret->entry = NULL;
961 return &ret->root;
964 static void
965 already_linked_table_init (void)
967 if (! bfd_hash_table_init_n (&already_linked_table,
968 already_linked_newfunc,
969 42))
970 einfo (_("%P%F: Failed to create hash table\n"));
973 static void
974 already_linked_table_free (void)
976 bfd_hash_table_free (&already_linked_table);
979 /* The wild routines.
981 These expand statements like *(.text) and foo.o to a list of
982 explicit actions, like foo.o(.text), bar.o(.text) and
983 foo.o(.text, .data). */
985 /* Return TRUE if the PATTERN argument is a wildcard pattern.
986 Although backslashes are treated specially if a pattern contains
987 wildcards, we do not consider the mere presence of a backslash to
988 be enough to cause the pattern to be treated as a wildcard.
989 That lets us handle DOS filenames more naturally. */
991 static bfd_boolean
992 wildcardp (const char *pattern)
994 const char *s;
996 for (s = pattern; *s != '\0'; ++s)
997 if (*s == '?'
998 || *s == '*'
999 || *s == '[')
1000 return TRUE;
1001 return FALSE;
1004 /* Add SECTION to the output section OUTPUT. Do this by creating a
1005 lang_input_section statement which is placed at PTR. FILE is the
1006 input file which holds SECTION. */
1008 void
1009 lang_add_section (lang_statement_list_type *ptr,
1010 asection *section,
1011 lang_output_section_statement_type *output,
1012 lang_input_statement_type *file)
1014 flagword flags;
1015 bfd_boolean discard;
1017 flags = bfd_get_section_flags (section->owner, section);
1019 discard = FALSE;
1021 /* Discard sections marked with SEC_EXCLUDE if we are doing a final
1022 link. Discard debugging sections marked with SEC_EXCLUDE on a
1023 relocatable link too. */
1024 if ((flags & SEC_EXCLUDE) != 0
1025 && ((flags & SEC_DEBUGGING) != 0 || !link_info.relocatable))
1026 discard = TRUE;
1028 /* Discard input sections which are assigned to a section named
1029 DISCARD_SECTION_NAME. */
1030 if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
1031 discard = TRUE;
1033 /* Discard debugging sections if we are stripping debugging
1034 information. */
1035 if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
1036 && (flags & SEC_DEBUGGING) != 0)
1037 discard = TRUE;
1039 if (discard)
1041 if (section->output_section == NULL)
1043 /* This prevents future calls from assigning this section. */
1044 section->output_section = bfd_abs_section_ptr;
1046 return;
1049 if (section->output_section == NULL)
1051 bfd_boolean first;
1052 lang_input_section_type *new;
1053 flagword flags;
1055 if (output->bfd_section == NULL)
1056 init_os (output);
1058 first = ! output->bfd_section->linker_has_input;
1059 output->bfd_section->linker_has_input = 1;
1061 /* Add a section reference to the list. */
1062 new = new_stat (lang_input_section, ptr);
1064 new->section = section;
1065 new->ifile = file;
1066 section->output_section = output->bfd_section;
1068 flags = section->flags;
1070 /* We don't copy the SEC_NEVER_LOAD flag from an input section
1071 to an output section, because we want to be able to include a
1072 SEC_NEVER_LOAD section in the middle of an otherwise loaded
1073 section (I don't know why we want to do this, but we do).
1074 build_link_order in ldwrite.c handles this case by turning
1075 the embedded SEC_NEVER_LOAD section into a fill. */
1077 flags &= ~ SEC_NEVER_LOAD;
1079 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
1080 already been processed. One reason to do this is that on pe
1081 format targets, .text$foo sections go into .text and it's odd
1082 to see .text with SEC_LINK_ONCE set. */
1084 if (! link_info.relocatable)
1085 flags &= ~ (SEC_LINK_ONCE | SEC_LINK_DUPLICATES);
1087 /* If this is not the first input section, and the SEC_READONLY
1088 flag is not currently set, then don't set it just because the
1089 input section has it set. */
1091 if (! first && (section->output_section->flags & SEC_READONLY) == 0)
1092 flags &= ~ SEC_READONLY;
1094 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
1095 if (! first
1096 && ((section->output_section->flags & (SEC_MERGE | SEC_STRINGS))
1097 != (flags & (SEC_MERGE | SEC_STRINGS))
1098 || ((flags & SEC_MERGE)
1099 && section->output_section->entsize != section->entsize)))
1101 section->output_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
1102 flags &= ~ (SEC_MERGE | SEC_STRINGS);
1105 section->output_section->flags |= flags;
1107 if (flags & SEC_MERGE)
1108 section->output_section->entsize = section->entsize;
1110 /* If SEC_READONLY is not set in the input section, then clear
1111 it from the output section. */
1112 if ((section->flags & SEC_READONLY) == 0)
1113 section->output_section->flags &= ~SEC_READONLY;
1115 switch (output->sectype)
1117 case normal_section:
1118 break;
1119 case dsect_section:
1120 case copy_section:
1121 case info_section:
1122 case overlay_section:
1123 output->bfd_section->flags &= ~SEC_ALLOC;
1124 break;
1125 case noload_section:
1126 output->bfd_section->flags &= ~SEC_LOAD;
1127 output->bfd_section->flags |= SEC_NEVER_LOAD;
1128 break;
1131 /* Copy over SEC_SMALL_DATA. */
1132 if (section->flags & SEC_SMALL_DATA)
1133 section->output_section->flags |= SEC_SMALL_DATA;
1135 if (section->alignment_power > output->bfd_section->alignment_power)
1136 output->bfd_section->alignment_power = section->alignment_power;
1138 /* If supplied an alignment, then force it. */
1139 if (output->section_alignment != -1)
1140 output->bfd_section->alignment_power = output->section_alignment;
1142 if (section->flags & SEC_BLOCK)
1144 section->output_section->flags |= SEC_BLOCK;
1145 /* FIXME: This value should really be obtained from the bfd... */
1146 output->block_value = 128;
1151 /* Handle wildcard sorting. This returns the lang_input_section which
1152 should follow the one we are going to create for SECTION and FILE,
1153 based on the sorting requirements of WILD. It returns NULL if the
1154 new section should just go at the end of the current list. */
1156 static lang_statement_union_type *
1157 wild_sort (lang_wild_statement_type *wild,
1158 struct wildcard_list *sec,
1159 lang_input_statement_type *file,
1160 asection *section)
1162 const char *section_name;
1163 lang_statement_union_type *l;
1165 if (!wild->filenames_sorted && (sec == NULL || !sec->spec.sorted))
1166 return NULL;
1168 section_name = bfd_get_section_name (file->the_bfd, section);
1169 for (l = wild->children.head; l != NULL; l = l->header.next)
1171 lang_input_section_type *ls;
1173 if (l->header.type != lang_input_section_enum)
1174 continue;
1175 ls = &l->input_section;
1177 /* Sorting by filename takes precedence over sorting by section
1178 name. */
1180 if (wild->filenames_sorted)
1182 const char *fn, *ln;
1183 bfd_boolean fa, la;
1184 int i;
1186 /* The PE support for the .idata section as generated by
1187 dlltool assumes that files will be sorted by the name of
1188 the archive and then the name of the file within the
1189 archive. */
1191 if (file->the_bfd != NULL
1192 && bfd_my_archive (file->the_bfd) != NULL)
1194 fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
1195 fa = TRUE;
1197 else
1199 fn = file->filename;
1200 fa = FALSE;
1203 if (ls->ifile->the_bfd != NULL
1204 && bfd_my_archive (ls->ifile->the_bfd) != NULL)
1206 ln = bfd_get_filename (bfd_my_archive (ls->ifile->the_bfd));
1207 la = TRUE;
1209 else
1211 ln = ls->ifile->filename;
1212 la = FALSE;
1215 i = strcmp (fn, ln);
1216 if (i > 0)
1217 continue;
1218 else if (i < 0)
1219 break;
1221 if (fa || la)
1223 if (fa)
1224 fn = file->filename;
1225 if (la)
1226 ln = ls->ifile->filename;
1228 i = strcmp (fn, ln);
1229 if (i > 0)
1230 continue;
1231 else if (i < 0)
1232 break;
1236 /* Here either the files are not sorted by name, or we are
1237 looking at the sections for this file. */
1239 if (sec != NULL && sec->spec.sorted)
1241 if (strcmp (section_name,
1242 bfd_get_section_name (ls->ifile->the_bfd,
1243 ls->section))
1244 < 0)
1245 break;
1249 return l;
1252 /* Expand a wild statement for a particular FILE. SECTION may be
1253 NULL, in which case it is a wild card. */
1255 static void
1256 output_section_callback (lang_wild_statement_type *ptr,
1257 struct wildcard_list *sec,
1258 asection *section,
1259 lang_input_statement_type *file,
1260 void *output)
1262 lang_statement_union_type *before;
1264 /* Exclude sections that match UNIQUE_SECTION_LIST. */
1265 if (unique_section_p (bfd_get_section_name (file->the_bfd, section)))
1266 return;
1268 /* If the wild pattern was marked KEEP, the member sections
1269 should be as well. */
1270 if (ptr->keep_sections)
1271 section->flags |= SEC_KEEP;
1273 before = wild_sort (ptr, sec, file, section);
1275 /* Here BEFORE points to the lang_input_section which
1276 should follow the one we are about to add. If BEFORE
1277 is NULL, then the section should just go at the end
1278 of the current list. */
1280 if (before == NULL)
1281 lang_add_section (&ptr->children, section,
1282 (lang_output_section_statement_type *) output,
1283 file);
1284 else
1286 lang_statement_list_type list;
1287 lang_statement_union_type **pp;
1289 lang_list_init (&list);
1290 lang_add_section (&list, section,
1291 (lang_output_section_statement_type *) output,
1292 file);
1294 /* If we are discarding the section, LIST.HEAD will
1295 be NULL. */
1296 if (list.head != NULL)
1298 ASSERT (list.head->header.next == NULL);
1300 for (pp = &ptr->children.head;
1301 *pp != before;
1302 pp = &(*pp)->header.next)
1303 ASSERT (*pp != NULL);
1305 list.head->header.next = *pp;
1306 *pp = list.head;
1311 /* This is passed a file name which must have been seen already and
1312 added to the statement tree. We will see if it has been opened
1313 already and had its symbols read. If not then we'll read it. */
1315 static lang_input_statement_type *
1316 lookup_name (const char *name)
1318 lang_input_statement_type *search;
1320 for (search = (lang_input_statement_type *) input_file_chain.head;
1321 search != NULL;
1322 search = (lang_input_statement_type *) search->next_real_file)
1324 /* Use the local_sym_name as the name of the file that has
1325 already been loaded as filename might have been transformed
1326 via the search directory lookup mechanism. */
1327 const char * filename = search->local_sym_name;
1329 if (filename == NULL && name == NULL)
1330 return search;
1331 if (filename != NULL
1332 && name != NULL
1333 && strcmp (filename, name) == 0)
1334 break;
1337 if (search == NULL)
1338 search = new_afile (name, lang_input_file_is_search_file_enum, default_target,
1339 FALSE);
1341 /* If we have already added this file, or this file is not real
1342 (FIXME: can that ever actually happen?) or the name is NULL
1343 (FIXME: can that ever actually happen?) don't add this file. */
1344 if (search->loaded
1345 || ! search->real
1346 || search->filename == NULL)
1347 return search;
1349 if (! load_symbols (search, NULL))
1350 return NULL;
1352 return search;
1355 /* Get the symbols for an input file. */
1357 static bfd_boolean
1358 load_symbols (lang_input_statement_type *entry,
1359 lang_statement_list_type *place)
1361 char **matching;
1363 if (entry->loaded)
1364 return TRUE;
1366 ldfile_open_file (entry);
1368 if (! bfd_check_format (entry->the_bfd, bfd_archive)
1369 && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
1371 bfd_error_type err;
1372 lang_statement_list_type *hold;
1373 bfd_boolean bad_load = TRUE;
1374 bfd_boolean save_ldlang_sysrooted_script;
1376 err = bfd_get_error ();
1378 /* See if the emulation has some special knowledge. */
1379 if (ldemul_unrecognized_file (entry))
1380 return TRUE;
1382 if (err == bfd_error_file_ambiguously_recognized)
1384 char **p;
1386 einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
1387 einfo (_("%B: matching formats:"), entry->the_bfd);
1388 for (p = matching; *p != NULL; p++)
1389 einfo (" %s", *p);
1390 einfo ("%F\n");
1392 else if (err != bfd_error_file_not_recognized
1393 || place == NULL)
1394 einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
1395 else
1396 bad_load = FALSE;
1398 bfd_close (entry->the_bfd);
1399 entry->the_bfd = NULL;
1401 /* Try to interpret the file as a linker script. */
1402 ldfile_open_command_file (entry->filename);
1404 hold = stat_ptr;
1405 stat_ptr = place;
1406 save_ldlang_sysrooted_script = ldlang_sysrooted_script;
1407 ldlang_sysrooted_script = entry->sysrooted;
1409 ldfile_assumed_script = TRUE;
1410 parser_input = input_script;
1411 yyparse ();
1412 ldfile_assumed_script = FALSE;
1414 ldlang_sysrooted_script = save_ldlang_sysrooted_script;
1415 stat_ptr = hold;
1417 return ! bad_load;
1420 if (ldemul_recognized_file (entry))
1421 return TRUE;
1423 /* We don't call ldlang_add_file for an archive. Instead, the
1424 add_symbols entry point will call ldlang_add_file, via the
1425 add_archive_element callback, for each element of the archive
1426 which is used. */
1427 switch (bfd_get_format (entry->the_bfd))
1429 default:
1430 break;
1432 case bfd_object:
1433 ldlang_add_file (entry);
1434 if (trace_files || trace_file_tries)
1435 info_msg ("%I\n", entry);
1436 break;
1438 case bfd_archive:
1439 if (entry->whole_archive)
1441 bfd *member = NULL;
1442 bfd_boolean loaded = TRUE;
1444 for (;;)
1446 member = bfd_openr_next_archived_file (entry->the_bfd, member);
1448 if (member == NULL)
1449 break;
1451 if (! bfd_check_format (member, bfd_object))
1453 einfo (_("%F%B: member %B in archive is not an object\n"),
1454 entry->the_bfd, member);
1455 loaded = FALSE;
1458 if (! ((*link_info.callbacks->add_archive_element)
1459 (&link_info, member, "--whole-archive")))
1460 abort ();
1462 if (! bfd_link_add_symbols (member, &link_info))
1464 einfo (_("%F%B: could not read symbols: %E\n"), member);
1465 loaded = FALSE;
1469 entry->loaded = loaded;
1470 return loaded;
1472 break;
1475 if (bfd_link_add_symbols (entry->the_bfd, &link_info))
1476 entry->loaded = TRUE;
1477 else
1478 einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
1480 return entry->loaded;
1483 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
1484 may be NULL, indicating that it is a wildcard. Separate
1485 lang_input_section statements are created for each part of the
1486 expansion; they are added after the wild statement S. OUTPUT is
1487 the output section. */
1489 static void
1490 wild (lang_wild_statement_type *s,
1491 const char *target ATTRIBUTE_UNUSED,
1492 lang_output_section_statement_type *output)
1494 struct wildcard_list *sec;
1496 walk_wild (s, output_section_callback, output);
1498 for (sec = s->section_list; sec != NULL; sec = sec->next)
1500 if (default_common_section != NULL)
1501 break;
1502 if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
1504 /* Remember the section that common is going to in case we
1505 later get something which doesn't know where to put it. */
1506 default_common_section = output;
1511 /* Return TRUE iff target is the sought target. */
1513 static int
1514 get_target (const bfd_target *target, void *data)
1516 const char *sought = data;
1518 return strcmp (target->name, sought) == 0;
1521 /* Like strcpy() but convert to lower case as well. */
1523 static void
1524 stricpy (char *dest, char *src)
1526 char c;
1528 while ((c = *src++) != 0)
1529 *dest++ = TOLOWER (c);
1531 *dest = 0;
1534 /* Remove the first occurrence of needle (if any) in haystack
1535 from haystack. */
1537 static void
1538 strcut (char *haystack, char *needle)
1540 haystack = strstr (haystack, needle);
1542 if (haystack)
1544 char *src;
1546 for (src = haystack + strlen (needle); *src;)
1547 *haystack++ = *src++;
1549 *haystack = 0;
1553 /* Compare two target format name strings.
1554 Return a value indicating how "similar" they are. */
1556 static int
1557 name_compare (char *first, char *second)
1559 char *copy1;
1560 char *copy2;
1561 int result;
1563 copy1 = xmalloc (strlen (first) + 1);
1564 copy2 = xmalloc (strlen (second) + 1);
1566 /* Convert the names to lower case. */
1567 stricpy (copy1, first);
1568 stricpy (copy2, second);
1570 /* Remove size and endian strings from the name. */
1571 strcut (copy1, "big");
1572 strcut (copy1, "little");
1573 strcut (copy2, "big");
1574 strcut (copy2, "little");
1576 /* Return a value based on how many characters match,
1577 starting from the beginning. If both strings are
1578 the same then return 10 * their length. */
1579 for (result = 0; copy1[result] == copy2[result]; result++)
1580 if (copy1[result] == 0)
1582 result *= 10;
1583 break;
1586 free (copy1);
1587 free (copy2);
1589 return result;
1592 /* Set by closest_target_match() below. */
1593 static const bfd_target *winner;
1595 /* Scan all the valid bfd targets looking for one that has the endianness
1596 requirement that was specified on the command line, and is the nearest
1597 match to the original output target. */
1599 static int
1600 closest_target_match (const bfd_target *target, void *data)
1602 const bfd_target *original = data;
1604 if (command_line.endian == ENDIAN_BIG
1605 && target->byteorder != BFD_ENDIAN_BIG)
1606 return 0;
1608 if (command_line.endian == ENDIAN_LITTLE
1609 && target->byteorder != BFD_ENDIAN_LITTLE)
1610 return 0;
1612 /* Must be the same flavour. */
1613 if (target->flavour != original->flavour)
1614 return 0;
1616 /* If we have not found a potential winner yet, then record this one. */
1617 if (winner == NULL)
1619 winner = target;
1620 return 0;
1623 /* Oh dear, we now have two potential candidates for a successful match.
1624 Compare their names and choose the better one. */
1625 if (name_compare (target->name, original->name)
1626 > name_compare (winner->name, original->name))
1627 winner = target;
1629 /* Keep on searching until wqe have checked them all. */
1630 return 0;
1633 /* Return the BFD target format of the first input file. */
1635 static char *
1636 get_first_input_target (void)
1638 char *target = NULL;
1640 LANG_FOR_EACH_INPUT_STATEMENT (s)
1642 if (s->header.type == lang_input_statement_enum
1643 && s->real)
1645 ldfile_open_file (s);
1647 if (s->the_bfd != NULL
1648 && bfd_check_format (s->the_bfd, bfd_object))
1650 target = bfd_get_target (s->the_bfd);
1652 if (target != NULL)
1653 break;
1658 return target;
1661 const char *
1662 lang_get_output_target (void)
1664 const char *target;
1666 /* Has the user told us which output format to use? */
1667 if (output_target != NULL)
1668 return output_target;
1670 /* No - has the current target been set to something other than
1671 the default? */
1672 if (current_target != default_target)
1673 return current_target;
1675 /* No - can we determine the format of the first input file? */
1676 target = get_first_input_target ();
1677 if (target != NULL)
1678 return target;
1680 /* Failed - use the default output target. */
1681 return default_target;
1684 /* Open the output file. */
1686 static bfd *
1687 open_output (const char *name)
1689 bfd *output;
1691 output_target = lang_get_output_target ();
1693 /* Has the user requested a particular endianness on the command
1694 line? */
1695 if (command_line.endian != ENDIAN_UNSET)
1697 const bfd_target *target;
1698 enum bfd_endian desired_endian;
1700 /* Get the chosen target. */
1701 target = bfd_search_for_target (get_target, (void *) output_target);
1703 /* If the target is not supported, we cannot do anything. */
1704 if (target != NULL)
1706 if (command_line.endian == ENDIAN_BIG)
1707 desired_endian = BFD_ENDIAN_BIG;
1708 else
1709 desired_endian = BFD_ENDIAN_LITTLE;
1711 /* See if the target has the wrong endianness. This should
1712 not happen if the linker script has provided big and
1713 little endian alternatives, but some scrips don't do
1714 this. */
1715 if (target->byteorder != desired_endian)
1717 /* If it does, then see if the target provides
1718 an alternative with the correct endianness. */
1719 if (target->alternative_target != NULL
1720 && (target->alternative_target->byteorder == desired_endian))
1721 output_target = target->alternative_target->name;
1722 else
1724 /* Try to find a target as similar as possible to
1725 the default target, but which has the desired
1726 endian characteristic. */
1727 bfd_search_for_target (closest_target_match,
1728 (void *) target);
1730 /* Oh dear - we could not find any targets that
1731 satisfy our requirements. */
1732 if (winner == NULL)
1733 einfo (_("%P: warning: could not find any targets that match endianness requirement\n"));
1734 else
1735 output_target = winner->name;
1741 output = bfd_openw (name, output_target);
1743 if (output == NULL)
1745 if (bfd_get_error () == bfd_error_invalid_target)
1746 einfo (_("%P%F: target %s not found\n"), output_target);
1748 einfo (_("%P%F: cannot open output file %s: %E\n"), name);
1751 delete_output_file_on_failure = TRUE;
1753 #if 0
1754 output->flags |= D_PAGED;
1755 #endif
1757 if (! bfd_set_format (output, bfd_object))
1758 einfo (_("%P%F:%s: can not make object file: %E\n"), name);
1759 if (! bfd_set_arch_mach (output,
1760 ldfile_output_architecture,
1761 ldfile_output_machine))
1762 einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
1764 link_info.hash = bfd_link_hash_table_create (output);
1765 if (link_info.hash == NULL)
1766 einfo (_("%P%F: can not create link hash table: %E\n"));
1768 bfd_set_gp_size (output, g_switch_value);
1769 return output;
1772 static void
1773 ldlang_open_output (lang_statement_union_type *statement)
1775 switch (statement->header.type)
1777 case lang_output_statement_enum:
1778 ASSERT (output_bfd == NULL);
1779 output_bfd = open_output (statement->output_statement.name);
1780 ldemul_set_output_arch ();
1781 if (config.magic_demand_paged && !link_info.relocatable)
1782 output_bfd->flags |= D_PAGED;
1783 else
1784 output_bfd->flags &= ~D_PAGED;
1785 if (config.text_read_only)
1786 output_bfd->flags |= WP_TEXT;
1787 else
1788 output_bfd->flags &= ~WP_TEXT;
1789 if (link_info.traditional_format)
1790 output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
1791 else
1792 output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
1793 break;
1795 case lang_target_statement_enum:
1796 current_target = statement->target_statement.target;
1797 break;
1798 default:
1799 break;
1803 /* Convert between addresses in bytes and sizes in octets.
1804 For currently supported targets, octets_per_byte is always a power
1805 of two, so we can use shifts. */
1806 #define TO_ADDR(X) ((X) >> opb_shift)
1807 #define TO_SIZE(X) ((X) << opb_shift)
1809 /* Support the above. */
1810 static unsigned int opb_shift = 0;
1812 static void
1813 init_opb (void)
1815 unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
1816 ldfile_output_machine);
1817 opb_shift = 0;
1818 if (x > 1)
1819 while ((x & 1) == 0)
1821 x >>= 1;
1822 ++opb_shift;
1824 ASSERT (x == 1);
1827 /* Open all the input files. */
1829 static void
1830 open_input_bfds (lang_statement_union_type *s, bfd_boolean force)
1832 for (; s != NULL; s = s->header.next)
1834 switch (s->header.type)
1836 case lang_constructors_statement_enum:
1837 open_input_bfds (constructor_list.head, force);
1838 break;
1839 case lang_output_section_statement_enum:
1840 open_input_bfds (s->output_section_statement.children.head, force);
1841 break;
1842 case lang_wild_statement_enum:
1843 /* Maybe we should load the file's symbols. */
1844 if (s->wild_statement.filename
1845 && ! wildcardp (s->wild_statement.filename))
1846 lookup_name (s->wild_statement.filename);
1847 open_input_bfds (s->wild_statement.children.head, force);
1848 break;
1849 case lang_group_statement_enum:
1851 struct bfd_link_hash_entry *undefs;
1853 /* We must continually search the entries in the group
1854 until no new symbols are added to the list of undefined
1855 symbols. */
1859 undefs = link_info.hash->undefs_tail;
1860 open_input_bfds (s->group_statement.children.head, TRUE);
1862 while (undefs != link_info.hash->undefs_tail);
1864 break;
1865 case lang_target_statement_enum:
1866 current_target = s->target_statement.target;
1867 break;
1868 case lang_input_statement_enum:
1869 if (s->input_statement.real)
1871 lang_statement_list_type add;
1873 s->input_statement.target = current_target;
1875 /* If we are being called from within a group, and this
1876 is an archive which has already been searched, then
1877 force it to be researched unless the whole archive
1878 has been loaded already. */
1879 if (force
1880 && !s->input_statement.whole_archive
1881 && s->input_statement.loaded
1882 && bfd_check_format (s->input_statement.the_bfd,
1883 bfd_archive))
1884 s->input_statement.loaded = FALSE;
1886 lang_list_init (&add);
1888 if (! load_symbols (&s->input_statement, &add))
1889 config.make_executable = FALSE;
1891 if (add.head != NULL)
1893 *add.tail = s->header.next;
1894 s->header.next = add.head;
1897 break;
1898 default:
1899 break;
1904 /* If there are [COMMONS] statements, put a wild one into the bss
1905 section. */
1907 static void
1908 lang_reasonable_defaults (void)
1910 #if 0
1911 lang_output_section_statement_lookup (".text");
1912 lang_output_section_statement_lookup (".data");
1914 default_common_section = lang_output_section_statement_lookup (".bss");
1916 if (!placed_commons)
1918 lang_wild_statement_type *new =
1919 new_stat (lang_wild_statement,
1920 &default_common_section->children);
1922 new->section_name = "COMMON";
1923 new->filename = NULL;
1924 lang_list_init (&new->children);
1926 #endif
1929 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
1931 void
1932 lang_track_definedness (const char *name)
1934 if (bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE) == NULL)
1935 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
1938 /* New-function for the definedness hash table. */
1940 static struct bfd_hash_entry *
1941 lang_definedness_newfunc (struct bfd_hash_entry *entry,
1942 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
1943 const char *name ATTRIBUTE_UNUSED)
1945 struct lang_definedness_hash_entry *ret
1946 = (struct lang_definedness_hash_entry *) entry;
1948 if (ret == NULL)
1949 ret = (struct lang_definedness_hash_entry *)
1950 bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
1952 if (ret == NULL)
1953 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
1955 ret->iteration = -1;
1956 return &ret->root;
1959 /* Return the iteration when the definition of NAME was last updated. A
1960 value of -1 means that the symbol is not defined in the linker script
1961 or the command line, but may be defined in the linker symbol table. */
1964 lang_symbol_definition_iteration (const char *name)
1966 struct lang_definedness_hash_entry *defentry
1967 = (struct lang_definedness_hash_entry *)
1968 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
1970 /* We've already created this one on the presence of DEFINED in the
1971 script, so it can't be NULL unless something is borked elsewhere in
1972 the code. */
1973 if (defentry == NULL)
1974 FAIL ();
1976 return defentry->iteration;
1979 /* Update the definedness state of NAME. */
1981 void
1982 lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
1984 struct lang_definedness_hash_entry *defentry
1985 = (struct lang_definedness_hash_entry *)
1986 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
1988 /* We don't keep track of symbols not tested with DEFINED. */
1989 if (defentry == NULL)
1990 return;
1992 /* If the symbol was already defined, and not from an earlier statement
1993 iteration, don't update the definedness iteration, because that'd
1994 make the symbol seem defined in the linker script at this point, and
1995 it wasn't; it was defined in some object. If we do anyway, DEFINED
1996 would start to yield false before this point and the construct "sym =
1997 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
1998 in an object. */
1999 if (h->type != bfd_link_hash_undefined
2000 && h->type != bfd_link_hash_common
2001 && h->type != bfd_link_hash_new
2002 && defentry->iteration == -1)
2003 return;
2005 defentry->iteration = lang_statement_iteration;
2008 /* Add the supplied name to the symbol table as an undefined reference.
2009 This is a two step process as the symbol table doesn't even exist at
2010 the time the ld command line is processed. First we put the name
2011 on a list, then, once the output file has been opened, transfer the
2012 name to the symbol table. */
2014 typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
2016 #define ldlang_undef_chain_list_head entry_symbol.next
2018 void
2019 ldlang_add_undef (const char *const name)
2021 ldlang_undef_chain_list_type *new =
2022 stat_alloc (sizeof (ldlang_undef_chain_list_type));
2024 new->next = ldlang_undef_chain_list_head;
2025 ldlang_undef_chain_list_head = new;
2027 new->name = xstrdup (name);
2029 if (output_bfd != NULL)
2030 insert_undefined (new->name);
2033 /* Insert NAME as undefined in the symbol table. */
2035 static void
2036 insert_undefined (const char *name)
2038 struct bfd_link_hash_entry *h;
2040 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
2041 if (h == NULL)
2042 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
2043 if (h->type == bfd_link_hash_new)
2045 h->type = bfd_link_hash_undefined;
2046 h->u.undef.abfd = NULL;
2047 bfd_link_add_undef (link_info.hash, h);
2051 /* Run through the list of undefineds created above and place them
2052 into the linker hash table as undefined symbols belonging to the
2053 script file. */
2055 static void
2056 lang_place_undefineds (void)
2058 ldlang_undef_chain_list_type *ptr;
2060 for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
2061 insert_undefined (ptr->name);
2064 /* Open input files and attach to output sections. */
2066 static void
2067 map_input_to_output_sections
2068 (lang_statement_union_type *s, const char *target,
2069 lang_output_section_statement_type *output_section_statement)
2071 for (; s != NULL; s = s->header.next)
2073 switch (s->header.type)
2075 case lang_wild_statement_enum:
2076 wild (&s->wild_statement, target, output_section_statement);
2077 break;
2078 case lang_constructors_statement_enum:
2079 map_input_to_output_sections (constructor_list.head,
2080 target,
2081 output_section_statement);
2082 break;
2083 case lang_output_section_statement_enum:
2084 map_input_to_output_sections (s->output_section_statement.children.head,
2085 target,
2086 &s->output_section_statement);
2087 break;
2088 case lang_output_statement_enum:
2089 break;
2090 case lang_target_statement_enum:
2091 target = s->target_statement.target;
2092 break;
2093 case lang_group_statement_enum:
2094 map_input_to_output_sections (s->group_statement.children.head,
2095 target,
2096 output_section_statement);
2097 break;
2098 case lang_data_statement_enum:
2099 /* Make sure that any sections mentioned in the expression
2100 are initialized. */
2101 exp_init_os (s->data_statement.exp);
2102 /* FALLTHROUGH */
2103 case lang_fill_statement_enum:
2104 case lang_input_section_enum:
2105 case lang_object_symbols_statement_enum:
2106 case lang_reloc_statement_enum:
2107 case lang_padding_statement_enum:
2108 case lang_input_statement_enum:
2109 if (output_section_statement != NULL
2110 && output_section_statement->bfd_section == NULL)
2111 init_os (output_section_statement);
2112 break;
2113 case lang_assignment_statement_enum:
2114 if (output_section_statement != NULL
2115 && output_section_statement->bfd_section == NULL)
2116 init_os (output_section_statement);
2118 /* Make sure that any sections mentioned in the assignment
2119 are initialized. */
2120 exp_init_os (s->assignment_statement.exp);
2121 break;
2122 case lang_afile_asection_pair_statement_enum:
2123 FAIL ();
2124 break;
2125 case lang_address_statement_enum:
2126 /* Mark the specified section with the supplied address. */
2128 lang_output_section_statement_type *os =
2129 lang_output_section_statement_lookup
2130 (s->address_statement.section_name);
2132 if (os->bfd_section == NULL)
2133 init_os (os);
2134 os->addr_tree = s->address_statement.address;
2136 break;
2141 /* An output section might have been removed after its statement was
2142 added. For example, ldemul_before_allocation can remove dynamic
2143 sections if they turn out to be not needed. Clean them up here. */
2145 static void
2146 strip_excluded_output_sections (void)
2148 lang_statement_union_type *u;
2150 for (u = lang_output_section_statement.head;
2151 u != NULL;
2152 u = u->output_section_statement.next)
2154 lang_output_section_statement_type *os;
2155 asection *s;
2157 os = &u->output_section_statement;
2158 s = os->bfd_section;
2159 if (s != NULL && (s->flags & SEC_EXCLUDE) != 0)
2161 asection **p;
2163 os->bfd_section = NULL;
2165 for (p = &output_bfd->sections; *p; p = &(*p)->next)
2166 if (*p == s)
2168 bfd_section_list_remove (output_bfd, p);
2169 output_bfd->section_count--;
2170 break;
2176 static void
2177 print_output_section_statement
2178 (lang_output_section_statement_type *output_section_statement)
2180 asection *section = output_section_statement->bfd_section;
2181 int len;
2183 if (output_section_statement != abs_output_section)
2185 minfo ("\n%s", output_section_statement->name);
2187 if (section != NULL)
2189 print_dot = section->vma;
2191 len = strlen (output_section_statement->name);
2192 if (len >= SECTION_NAME_MAP_LENGTH - 1)
2194 print_nl ();
2195 len = 0;
2197 while (len < SECTION_NAME_MAP_LENGTH)
2199 print_space ();
2200 ++len;
2203 minfo ("0x%V %W", section->vma, section->_raw_size);
2205 if (output_section_statement->load_base != NULL)
2207 bfd_vma addr;
2209 addr = exp_get_abs_int (output_section_statement->load_base, 0,
2210 "load base", lang_final_phase_enum);
2211 minfo (_(" load address 0x%V"), addr);
2215 print_nl ();
2218 print_statement_list (output_section_statement->children.head,
2219 output_section_statement);
2222 static void
2223 print_assignment (lang_assignment_statement_type *assignment,
2224 lang_output_section_statement_type *output_section)
2226 int i;
2227 etree_value_type result;
2229 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2230 print_space ();
2232 result = exp_fold_tree (assignment->exp->assign.src, output_section,
2233 lang_final_phase_enum, print_dot, &print_dot);
2234 if (result.valid_p)
2236 const char *dst;
2237 bfd_vma value;
2239 value = result.value + result.section->bfd_section->vma;
2240 dst = assignment->exp->assign.dst;
2242 minfo ("0x%V", value);
2243 if (dst[0] == '.' && dst[1] == 0)
2244 print_dot = value;
2246 else
2248 minfo ("*undef* ");
2249 #ifdef BFD64
2250 minfo (" ");
2251 #endif
2254 minfo (" ");
2256 exp_print_tree (assignment->exp);
2258 print_nl ();
2261 static void
2262 print_input_statement (lang_input_statement_type *statm)
2264 if (statm->filename != NULL)
2266 fprintf (config.map_file, "LOAD %s\n", statm->filename);
2270 /* Print all symbols defined in a particular section. This is called
2271 via bfd_link_hash_traverse. */
2273 static bfd_boolean
2274 print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
2276 asection *sec = ptr;
2278 if ((hash_entry->type == bfd_link_hash_defined
2279 || hash_entry->type == bfd_link_hash_defweak)
2280 && sec == hash_entry->u.def.section)
2282 int i;
2284 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2285 print_space ();
2286 minfo ("0x%V ",
2287 (hash_entry->u.def.value
2288 + hash_entry->u.def.section->output_offset
2289 + hash_entry->u.def.section->output_section->vma));
2291 minfo (" %T\n", hash_entry->root.string);
2294 return TRUE;
2297 /* Print information about an input section to the map file. */
2299 static void
2300 print_input_section (lang_input_section_type *in)
2302 asection *i = in->section;
2303 bfd_size_type size = i->_cooked_size != 0 ? i->_cooked_size : i->_raw_size;
2305 init_opb ();
2306 if (size != 0)
2308 print_space ();
2310 minfo ("%s", i->name);
2312 if (i->output_section != NULL)
2314 int len;
2316 len = 1 + strlen (i->name);
2317 if (len >= SECTION_NAME_MAP_LENGTH - 1)
2319 print_nl ();
2320 len = 0;
2322 while (len < SECTION_NAME_MAP_LENGTH)
2324 print_space ();
2325 ++len;
2328 minfo ("0x%V %W %B\n",
2329 i->output_section->vma + i->output_offset, TO_ADDR (size),
2330 i->owner);
2332 if (i->_cooked_size != 0 && i->_cooked_size != i->_raw_size)
2334 len = SECTION_NAME_MAP_LENGTH + 3;
2335 #ifdef BFD64
2336 len += 16;
2337 #else
2338 len += 8;
2339 #endif
2340 while (len > 0)
2342 print_space ();
2343 --len;
2346 minfo (_("%W (size before relaxing)\n"), i->_raw_size);
2349 bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
2351 print_dot = (i->output_section->vma + i->output_offset
2352 + TO_ADDR (size));
2357 static void
2358 print_fill_statement (lang_fill_statement_type *fill)
2360 size_t size;
2361 unsigned char *p;
2362 fputs (" FILL mask 0x", config.map_file);
2363 for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
2364 fprintf (config.map_file, "%02x", *p);
2365 fputs ("\n", config.map_file);
2368 static void
2369 print_data_statement (lang_data_statement_type *data)
2371 int i;
2372 bfd_vma addr;
2373 bfd_size_type size;
2374 const char *name;
2376 init_opb ();
2377 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2378 print_space ();
2380 addr = data->output_vma;
2381 if (data->output_section != NULL)
2382 addr += data->output_section->vma;
2384 switch (data->type)
2386 default:
2387 abort ();
2388 case BYTE:
2389 size = BYTE_SIZE;
2390 name = "BYTE";
2391 break;
2392 case SHORT:
2393 size = SHORT_SIZE;
2394 name = "SHORT";
2395 break;
2396 case LONG:
2397 size = LONG_SIZE;
2398 name = "LONG";
2399 break;
2400 case QUAD:
2401 size = QUAD_SIZE;
2402 name = "QUAD";
2403 break;
2404 case SQUAD:
2405 size = QUAD_SIZE;
2406 name = "SQUAD";
2407 break;
2410 minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
2412 if (data->exp->type.node_class != etree_value)
2414 print_space ();
2415 exp_print_tree (data->exp);
2418 print_nl ();
2420 print_dot = addr + TO_ADDR (size);
2423 /* Print an address statement. These are generated by options like
2424 -Ttext. */
2426 static void
2427 print_address_statement (lang_address_statement_type *address)
2429 minfo (_("Address of section %s set to "), address->section_name);
2430 exp_print_tree (address->address);
2431 print_nl ();
2434 /* Print a reloc statement. */
2436 static void
2437 print_reloc_statement (lang_reloc_statement_type *reloc)
2439 int i;
2440 bfd_vma addr;
2441 bfd_size_type size;
2443 init_opb ();
2444 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2445 print_space ();
2447 addr = reloc->output_vma;
2448 if (reloc->output_section != NULL)
2449 addr += reloc->output_section->vma;
2451 size = bfd_get_reloc_size (reloc->howto);
2453 minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
2455 if (reloc->name != NULL)
2456 minfo ("%s+", reloc->name);
2457 else
2458 minfo ("%s+", reloc->section->name);
2460 exp_print_tree (reloc->addend_exp);
2462 print_nl ();
2464 print_dot = addr + TO_ADDR (size);
2467 static void
2468 print_padding_statement (lang_padding_statement_type *s)
2470 int len;
2471 bfd_vma addr;
2473 init_opb ();
2474 minfo (" *fill*");
2476 len = sizeof " *fill*" - 1;
2477 while (len < SECTION_NAME_MAP_LENGTH)
2479 print_space ();
2480 ++len;
2483 addr = s->output_offset;
2484 if (s->output_section != NULL)
2485 addr += s->output_section->vma;
2486 minfo ("0x%V %W ", addr, s->size);
2488 if (s->fill->size != 0)
2490 size_t size;
2491 unsigned char *p;
2492 for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
2493 fprintf (config.map_file, "%02x", *p);
2496 print_nl ();
2498 print_dot = addr + TO_ADDR (s->size);
2501 static void
2502 print_wild_statement (lang_wild_statement_type *w,
2503 lang_output_section_statement_type *os)
2505 struct wildcard_list *sec;
2507 print_space ();
2509 if (w->filenames_sorted)
2510 minfo ("SORT(");
2511 if (w->filename != NULL)
2512 minfo ("%s", w->filename);
2513 else
2514 minfo ("*");
2515 if (w->filenames_sorted)
2516 minfo (")");
2518 minfo ("(");
2519 for (sec = w->section_list; sec; sec = sec->next)
2521 if (sec->spec.sorted)
2522 minfo ("SORT(");
2523 if (sec->spec.exclude_name_list != NULL)
2525 name_list *tmp;
2526 minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
2527 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
2528 minfo (" %s", tmp->name);
2529 minfo (") ");
2531 if (sec->spec.name != NULL)
2532 minfo ("%s", sec->spec.name);
2533 else
2534 minfo ("*");
2535 if (sec->spec.sorted)
2536 minfo (")");
2537 if (sec->next)
2538 minfo (" ");
2540 minfo (")");
2542 print_nl ();
2544 print_statement_list (w->children.head, os);
2547 /* Print a group statement. */
2549 static void
2550 print_group (lang_group_statement_type *s,
2551 lang_output_section_statement_type *os)
2553 fprintf (config.map_file, "START GROUP\n");
2554 print_statement_list (s->children.head, os);
2555 fprintf (config.map_file, "END GROUP\n");
2558 /* Print the list of statements in S.
2559 This can be called for any statement type. */
2561 static void
2562 print_statement_list (lang_statement_union_type *s,
2563 lang_output_section_statement_type *os)
2565 while (s != NULL)
2567 print_statement (s, os);
2568 s = s->header.next;
2572 /* Print the first statement in statement list S.
2573 This can be called for any statement type. */
2575 static void
2576 print_statement (lang_statement_union_type *s,
2577 lang_output_section_statement_type *os)
2579 switch (s->header.type)
2581 default:
2582 fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
2583 FAIL ();
2584 break;
2585 case lang_constructors_statement_enum:
2586 if (constructor_list.head != NULL)
2588 if (constructors_sorted)
2589 minfo (" SORT (CONSTRUCTORS)\n");
2590 else
2591 minfo (" CONSTRUCTORS\n");
2592 print_statement_list (constructor_list.head, os);
2594 break;
2595 case lang_wild_statement_enum:
2596 print_wild_statement (&s->wild_statement, os);
2597 break;
2598 case lang_address_statement_enum:
2599 print_address_statement (&s->address_statement);
2600 break;
2601 case lang_object_symbols_statement_enum:
2602 minfo (" CREATE_OBJECT_SYMBOLS\n");
2603 break;
2604 case lang_fill_statement_enum:
2605 print_fill_statement (&s->fill_statement);
2606 break;
2607 case lang_data_statement_enum:
2608 print_data_statement (&s->data_statement);
2609 break;
2610 case lang_reloc_statement_enum:
2611 print_reloc_statement (&s->reloc_statement);
2612 break;
2613 case lang_input_section_enum:
2614 print_input_section (&s->input_section);
2615 break;
2616 case lang_padding_statement_enum:
2617 print_padding_statement (&s->padding_statement);
2618 break;
2619 case lang_output_section_statement_enum:
2620 print_output_section_statement (&s->output_section_statement);
2621 break;
2622 case lang_assignment_statement_enum:
2623 print_assignment (&s->assignment_statement, os);
2624 break;
2625 case lang_target_statement_enum:
2626 fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
2627 break;
2628 case lang_output_statement_enum:
2629 minfo ("OUTPUT(%s", s->output_statement.name);
2630 if (output_target != NULL)
2631 minfo (" %s", output_target);
2632 minfo (")\n");
2633 break;
2634 case lang_input_statement_enum:
2635 print_input_statement (&s->input_statement);
2636 break;
2637 case lang_group_statement_enum:
2638 print_group (&s->group_statement, os);
2639 break;
2640 case lang_afile_asection_pair_statement_enum:
2641 FAIL ();
2642 break;
2646 static void
2647 print_statements (void)
2649 print_statement_list (statement_list.head, abs_output_section);
2652 /* Print the first N statements in statement list S to STDERR.
2653 If N == 0, nothing is printed.
2654 If N < 0, the entire list is printed.
2655 Intended to be called from GDB. */
2657 void
2658 dprint_statement (lang_statement_union_type *s, int n)
2660 FILE *map_save = config.map_file;
2662 config.map_file = stderr;
2664 if (n < 0)
2665 print_statement_list (s, abs_output_section);
2666 else
2668 while (s && --n >= 0)
2670 print_statement (s, abs_output_section);
2671 s = s->header.next;
2675 config.map_file = map_save;
2678 static void
2679 insert_pad (lang_statement_union_type **ptr,
2680 fill_type *fill,
2681 unsigned int alignment_needed,
2682 asection *output_section,
2683 bfd_vma dot)
2685 static fill_type zero_fill = { 1, { 0 } };
2686 lang_statement_union_type *pad;
2688 pad = ((lang_statement_union_type *)
2689 ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
2690 if (ptr != &statement_list.head
2691 && pad->header.type == lang_padding_statement_enum
2692 && pad->padding_statement.output_section == output_section)
2694 /* Use the existing pad statement. The above test on output
2695 section is probably redundant, but it doesn't hurt to check. */
2697 else
2699 /* Make a new padding statement, linked into existing chain. */
2700 pad = stat_alloc (sizeof (lang_padding_statement_type));
2701 pad->header.next = *ptr;
2702 *ptr = pad;
2703 pad->header.type = lang_padding_statement_enum;
2704 pad->padding_statement.output_section = output_section;
2705 if (fill == NULL)
2706 fill = &zero_fill;
2707 pad->padding_statement.fill = fill;
2709 pad->padding_statement.output_offset = dot - output_section->vma;
2710 pad->padding_statement.size = alignment_needed;
2711 output_section->_raw_size += alignment_needed;
2714 /* Work out how much this section will move the dot point. */
2716 static bfd_vma
2717 size_input_section (lang_statement_union_type **this_ptr,
2718 lang_output_section_statement_type *output_section_statement,
2719 fill_type *fill,
2720 bfd_vma dot)
2722 lang_input_section_type *is = &((*this_ptr)->input_section);
2723 asection *i = is->section;
2725 if (!is->ifile->just_syms_flag)
2727 unsigned int alignment_needed;
2728 asection *o;
2730 /* Align this section first to the input sections requirement,
2731 then to the output section's requirement. If this alignment
2732 is greater than any seen before, then record it too. Perform
2733 the alignment by inserting a magic 'padding' statement. */
2735 if (output_section_statement->subsection_alignment != -1)
2736 i->alignment_power = output_section_statement->subsection_alignment;
2738 o = output_section_statement->bfd_section;
2739 if (o->alignment_power < i->alignment_power)
2740 o->alignment_power = i->alignment_power;
2742 alignment_needed = align_power (dot, i->alignment_power) - dot;
2744 if (alignment_needed != 0)
2746 insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
2747 dot += alignment_needed;
2750 /* Remember where in the output section this input section goes. */
2752 i->output_offset = dot - o->vma;
2754 /* Mark how big the output section must be to contain this now. */
2755 if (i->_cooked_size != 0)
2756 dot += TO_ADDR (i->_cooked_size);
2757 else
2758 dot += TO_ADDR (i->_raw_size);
2759 o->_raw_size = TO_SIZE (dot - o->vma);
2761 else
2763 i->output_offset = i->vma - output_section_statement->bfd_section->vma;
2766 return dot;
2769 #define IGNORE_SECTION(bfd, s) \
2770 (((bfd_get_section_flags (bfd, s) & SEC_THREAD_LOCAL) \
2771 ? ((bfd_get_section_flags (bfd, s) & (SEC_LOAD | SEC_NEVER_LOAD)) \
2772 != SEC_LOAD) \
2773 : ((bfd_get_section_flags (bfd, s) & (SEC_ALLOC | SEC_NEVER_LOAD)) \
2774 != SEC_ALLOC)) \
2775 || bfd_section_size (bfd, s) == 0)
2777 /* Check to see if any allocated sections overlap with other allocated
2778 sections. This can happen when the linker script specifically specifies
2779 the output section addresses of the two sections. */
2781 static void
2782 lang_check_section_addresses (void)
2784 asection *s;
2786 /* Scan all sections in the output list. */
2787 for (s = output_bfd->sections; s != NULL; s = s->next)
2789 asection *os;
2791 /* Ignore sections which are not loaded or which have no contents. */
2792 if (IGNORE_SECTION (output_bfd, s))
2793 continue;
2795 /* Once we reach section 's' stop our seach. This prevents two
2796 warning messages from being produced, one for 'section A overlaps
2797 section B' and one for 'section B overlaps section A'. */
2798 for (os = output_bfd->sections; os != s; os = os->next)
2800 bfd_vma s_start;
2801 bfd_vma s_end;
2802 bfd_vma os_start;
2803 bfd_vma os_end;
2805 /* Only consider loadable sections with real contents. */
2806 if (IGNORE_SECTION (output_bfd, os))
2807 continue;
2809 /* We must check the sections' LMA addresses not their
2810 VMA addresses because overlay sections can have
2811 overlapping VMAs but they must have distinct LMAs. */
2812 s_start = bfd_section_lma (output_bfd, s);
2813 os_start = bfd_section_lma (output_bfd, os);
2814 s_end = s_start + TO_ADDR (bfd_section_size (output_bfd, s)) - 1;
2815 os_end = os_start + TO_ADDR (bfd_section_size (output_bfd, os)) - 1;
2817 /* Look for an overlap. */
2818 if ((s_end < os_start) || (s_start > os_end))
2819 continue;
2821 einfo (
2822 _("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
2823 s->name, s_start, s_end, os->name, os_start, os_end);
2825 /* Once we have found one overlap for this section,
2826 stop looking for others. */
2827 break;
2832 /* Make sure the new address is within the region. We explicitly permit the
2833 current address to be at the exact end of the region when the address is
2834 non-zero, in case the region is at the end of addressable memory and the
2835 calculation wraps around. */
2837 static void
2838 os_region_check (lang_output_section_statement_type *os,
2839 lang_memory_region_type *region,
2840 etree_type *tree,
2841 bfd_vma base)
2843 if ((region->current < region->origin
2844 || (region->current - region->origin > region->length))
2845 && ((region->current != region->origin + region->length)
2846 || base == 0))
2848 if (tree != NULL)
2850 einfo (_("%X%P: address 0x%v of %B section %s is not within region %s\n"),
2851 region->current,
2852 os->bfd_section->owner,
2853 os->bfd_section->name,
2854 region->name);
2856 else
2858 einfo (_("%X%P: region %s is full (%B section %s)\n"),
2859 region->name,
2860 os->bfd_section->owner,
2861 os->bfd_section->name);
2863 /* Reset the region pointer. */
2864 region->current = region->origin;
2868 /* Set the sizes for all the output sections. */
2870 static bfd_vma
2871 lang_size_sections_1
2872 (lang_statement_union_type *s,
2873 lang_output_section_statement_type *output_section_statement,
2874 lang_statement_union_type **prev,
2875 fill_type *fill,
2876 bfd_vma dot,
2877 bfd_boolean *relax,
2878 bfd_boolean check_regions)
2880 /* Size up the sections from their constituent parts. */
2881 for (; s != NULL; s = s->header.next)
2883 switch (s->header.type)
2885 case lang_output_section_statement_enum:
2887 bfd_vma after;
2888 lang_output_section_statement_type *os;
2890 os = &s->output_section_statement;
2891 if (os->bfd_section == NULL)
2892 /* This section was never actually created. */
2893 break;
2895 /* If this is a COFF shared library section, use the size and
2896 address from the input section. FIXME: This is COFF
2897 specific; it would be cleaner if there were some other way
2898 to do this, but nothing simple comes to mind. */
2899 if ((os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
2901 asection *input;
2903 if (os->children.head == NULL
2904 || os->children.head->header.next != NULL
2905 || os->children.head->header.type != lang_input_section_enum)
2906 einfo (_("%P%X: Internal error on COFF shared library section %s\n"),
2907 os->name);
2909 input = os->children.head->input_section.section;
2910 bfd_set_section_vma (os->bfd_section->owner,
2911 os->bfd_section,
2912 bfd_section_vma (input->owner, input));
2913 os->bfd_section->_raw_size = input->_raw_size;
2914 break;
2917 if (bfd_is_abs_section (os->bfd_section))
2919 /* No matter what happens, an abs section starts at zero. */
2920 ASSERT (os->bfd_section->vma == 0);
2922 else
2924 if (os->addr_tree == NULL)
2926 /* No address specified for this section, get one
2927 from the region specification. */
2928 if (os->region == NULL
2929 || (((bfd_get_section_flags (output_bfd, os->bfd_section)
2930 & (SEC_ALLOC | SEC_LOAD)) != 0)
2931 && os->region->name[0] == '*'
2932 && strcmp (os->region->name, DEFAULT_MEMORY_REGION) == 0))
2934 os->region = lang_memory_default (os->bfd_section);
2937 /* If a loadable section is using the default memory
2938 region, and some non default memory regions were
2939 defined, issue an error message. */
2940 if (!IGNORE_SECTION (output_bfd, os->bfd_section)
2941 && ! link_info.relocatable
2942 && check_regions
2943 && strcmp (os->region->name, DEFAULT_MEMORY_REGION) == 0
2944 && lang_memory_region_list != NULL
2945 && (strcmp (lang_memory_region_list->name,
2946 DEFAULT_MEMORY_REGION) != 0
2947 || lang_memory_region_list->next != NULL))
2949 /* By default this is an error rather than just a
2950 warning because if we allocate the section to the
2951 default memory region we can end up creating an
2952 excessively large binary, or even seg faulting when
2953 attempting to perform a negative seek. See
2954 http://sources.redhat.com/ml/binutils/2003-04/msg00423.html
2955 for an example of this. This behaviour can be
2956 overridden by the using the --no-check-sections
2957 switch. */
2958 if (command_line.check_section_addresses)
2959 einfo (_("%P%F: error: no memory region specified for loadable section `%s'\n"),
2960 bfd_get_section_name (output_bfd,
2961 os->bfd_section));
2962 else
2963 einfo (_("%P: warning: no memory region specified for loadable section `%s'\n"),
2964 bfd_get_section_name (output_bfd,
2965 os->bfd_section));
2968 dot = os->region->current;
2970 if (os->section_alignment == -1)
2972 bfd_vma olddot;
2974 olddot = dot;
2975 dot = align_power (dot,
2976 os->bfd_section->alignment_power);
2978 if (dot != olddot && config.warn_section_align)
2979 einfo (_("%P: warning: changing start of section %s by %u bytes\n"),
2980 os->name, (unsigned int) (dot - olddot));
2983 else
2985 etree_value_type r;
2987 os->processed = -1;
2988 r = exp_fold_tree (os->addr_tree,
2989 abs_output_section,
2990 lang_allocating_phase_enum,
2991 dot, &dot);
2992 os->processed = 0;
2994 if (!r.valid_p)
2995 einfo (_("%F%S: non constant or forward reference address expression for section %s\n"),
2996 os->name);
2998 dot = r.value + r.section->bfd_section->vma;
3001 /* The section starts here.
3002 First, align to what the section needs. */
3004 if (os->section_alignment != -1)
3005 dot = align_power (dot, os->section_alignment);
3007 bfd_set_section_vma (0, os->bfd_section, dot);
3009 os->bfd_section->output_offset = 0;
3012 lang_size_sections_1 (os->children.head, os, &os->children.head,
3013 os->fill, dot, relax, check_regions);
3015 /* Put the section within the requested block size, or
3016 align at the block boundary. */
3017 after = ((os->bfd_section->vma
3018 + TO_ADDR (os->bfd_section->_raw_size)
3019 + os->block_value - 1)
3020 & - (bfd_vma) os->block_value);
3022 if (bfd_is_abs_section (os->bfd_section))
3023 ASSERT (after == os->bfd_section->vma);
3024 else
3025 os->bfd_section->_raw_size
3026 = TO_SIZE (after - os->bfd_section->vma);
3028 dot = os->bfd_section->vma;
3029 /* .tbss sections effectively have zero size. */
3030 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
3031 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
3032 || link_info.relocatable)
3033 dot += TO_ADDR (os->bfd_section->_raw_size);
3035 os->processed = 1;
3037 if (os->update_dot_tree != 0)
3038 exp_fold_tree (os->update_dot_tree, abs_output_section,
3039 lang_allocating_phase_enum, dot, &dot);
3041 /* Update dot in the region ?
3042 We only do this if the section is going to be allocated,
3043 since unallocated sections do not contribute to the region's
3044 overall size in memory.
3046 If the SEC_NEVER_LOAD bit is not set, it will affect the
3047 addresses of sections after it. We have to update
3048 dot. */
3049 if (os->region != NULL
3050 && ((bfd_get_section_flags (output_bfd, os->bfd_section)
3051 & SEC_NEVER_LOAD) == 0
3052 || (bfd_get_section_flags (output_bfd, os->bfd_section)
3053 & (SEC_ALLOC | SEC_LOAD))))
3055 os->region->current = dot;
3057 if (check_regions)
3058 /* Make sure the new address is within the region. */
3059 os_region_check (os, os->region, os->addr_tree,
3060 os->bfd_section->vma);
3062 /* If there's no load address specified, use the run
3063 region as the load region. */
3064 if (os->lma_region == NULL && os->load_base == NULL)
3065 os->lma_region = os->region;
3067 if (os->lma_region != NULL && os->lma_region != os->region)
3069 /* Set load_base, which will be handled later. */
3070 os->load_base = exp_intop (os->lma_region->current);
3071 os->lma_region->current +=
3072 TO_ADDR (os->bfd_section->_raw_size);
3073 if (check_regions)
3074 os_region_check (os, os->lma_region, NULL,
3075 os->bfd_section->lma);
3079 break;
3081 case lang_constructors_statement_enum:
3082 dot = lang_size_sections_1 (constructor_list.head,
3083 output_section_statement,
3084 &s->wild_statement.children.head,
3085 fill, dot, relax, check_regions);
3086 break;
3088 case lang_data_statement_enum:
3090 unsigned int size = 0;
3092 s->data_statement.output_vma =
3093 dot - output_section_statement->bfd_section->vma;
3094 s->data_statement.output_section =
3095 output_section_statement->bfd_section;
3097 /* We might refer to provided symbols in the expression, and
3098 need to mark them as needed. */
3099 exp_fold_tree (s->data_statement.exp, abs_output_section,
3100 lang_allocating_phase_enum, dot, &dot);
3102 switch (s->data_statement.type)
3104 default:
3105 abort ();
3106 case QUAD:
3107 case SQUAD:
3108 size = QUAD_SIZE;
3109 break;
3110 case LONG:
3111 size = LONG_SIZE;
3112 break;
3113 case SHORT:
3114 size = SHORT_SIZE;
3115 break;
3116 case BYTE:
3117 size = BYTE_SIZE;
3118 break;
3120 if (size < TO_SIZE ((unsigned) 1))
3121 size = TO_SIZE ((unsigned) 1);
3122 dot += TO_ADDR (size);
3123 output_section_statement->bfd_section->_raw_size += size;
3124 /* The output section gets contents, and then we inspect for
3125 any flags set in the input script which override any ALLOC. */
3126 output_section_statement->bfd_section->flags |= SEC_HAS_CONTENTS;
3127 if (!(output_section_statement->flags & SEC_NEVER_LOAD))
3129 output_section_statement->bfd_section->flags |=
3130 SEC_ALLOC | SEC_LOAD;
3133 break;
3135 case lang_reloc_statement_enum:
3137 int size;
3139 s->reloc_statement.output_vma =
3140 dot - output_section_statement->bfd_section->vma;
3141 s->reloc_statement.output_section =
3142 output_section_statement->bfd_section;
3143 size = bfd_get_reloc_size (s->reloc_statement.howto);
3144 dot += TO_ADDR (size);
3145 output_section_statement->bfd_section->_raw_size += size;
3147 break;
3149 case lang_wild_statement_enum:
3151 dot = lang_size_sections_1 (s->wild_statement.children.head,
3152 output_section_statement,
3153 &s->wild_statement.children.head,
3154 fill, dot, relax, check_regions);
3156 break;
3158 case lang_object_symbols_statement_enum:
3159 link_info.create_object_symbols_section =
3160 output_section_statement->bfd_section;
3161 break;
3162 case lang_output_statement_enum:
3163 case lang_target_statement_enum:
3164 break;
3165 case lang_input_section_enum:
3167 asection *i;
3169 i = (*prev)->input_section.section;
3170 if (! relax)
3172 if (i->_cooked_size == 0)
3173 i->_cooked_size = i->_raw_size;
3175 else
3177 bfd_boolean again;
3179 if (! bfd_relax_section (i->owner, i, &link_info, &again))
3180 einfo (_("%P%F: can't relax section: %E\n"));
3181 if (again)
3182 *relax = TRUE;
3184 dot = size_input_section (prev, output_section_statement,
3185 output_section_statement->fill, dot);
3187 break;
3188 case lang_input_statement_enum:
3189 break;
3190 case lang_fill_statement_enum:
3191 s->fill_statement.output_section =
3192 output_section_statement->bfd_section;
3194 fill = s->fill_statement.fill;
3195 break;
3196 case lang_assignment_statement_enum:
3198 bfd_vma newdot = dot;
3200 exp_fold_tree (s->assignment_statement.exp,
3201 output_section_statement,
3202 lang_allocating_phase_enum,
3203 dot,
3204 &newdot);
3206 if (newdot != dot)
3208 if (output_section_statement == abs_output_section)
3210 /* If we don't have an output section, then just adjust
3211 the default memory address. */
3212 lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE)->current = newdot;
3214 else
3216 /* Insert a pad after this statement. We can't
3217 put the pad before when relaxing, in case the
3218 assignment references dot. */
3219 insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
3220 output_section_statement->bfd_section, dot);
3222 /* Don't neuter the pad below when relaxing. */
3223 s = s->header.next;
3226 /* If dot is advanced, this implies that the section should
3227 have space allocated to it, unless the user has explicitly
3228 stated that the section should never be loaded. */
3229 if (!(output_section_statement->flags & (SEC_NEVER_LOAD | SEC_ALLOC)))
3230 output_section_statement->bfd_section->flags |= SEC_ALLOC;
3232 dot = newdot;
3235 break;
3237 case lang_padding_statement_enum:
3238 /* If this is the first time lang_size_sections is called,
3239 we won't have any padding statements. If this is the
3240 second or later passes when relaxing, we should allow
3241 padding to shrink. If padding is needed on this pass, it
3242 will be added back in. */
3243 s->padding_statement.size = 0;
3245 /* Make sure output_offset is valid. If relaxation shrinks
3246 the section and this pad isn't needed, it's possible to
3247 have output_offset larger than the final size of the
3248 section. bfd_set_section_contents will complain even for
3249 a pad size of zero. */
3250 s->padding_statement.output_offset
3251 = dot - output_section_statement->bfd_section->vma;
3252 break;
3254 case lang_group_statement_enum:
3255 dot = lang_size_sections_1 (s->group_statement.children.head,
3256 output_section_statement,
3257 &s->group_statement.children.head,
3258 fill, dot, relax, check_regions);
3259 break;
3261 default:
3262 FAIL ();
3263 break;
3265 /* We can only get here when relaxing is turned on. */
3266 case lang_address_statement_enum:
3267 break;
3269 prev = &s->header.next;
3271 return dot;
3274 bfd_vma
3275 lang_size_sections
3276 (lang_statement_union_type *s,
3277 lang_output_section_statement_type *output_section_statement,
3278 lang_statement_union_type **prev,
3279 fill_type *fill,
3280 bfd_vma dot,
3281 bfd_boolean *relax,
3282 bfd_boolean check_regions)
3284 bfd_vma result;
3285 asection *o;
3287 /* Callers of exp_fold_tree need to increment this. */
3288 lang_statement_iteration++;
3290 exp_data_seg.phase = exp_dataseg_none;
3291 result = lang_size_sections_1 (s, output_section_statement, prev, fill,
3292 dot, relax, check_regions);
3293 if (exp_data_seg.phase == exp_dataseg_end_seen)
3295 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
3296 a page could be saved in the data segment. */
3297 bfd_vma first, last;
3299 first = -exp_data_seg.base & (exp_data_seg.pagesize - 1);
3300 last = exp_data_seg.end & (exp_data_seg.pagesize - 1);
3301 if (first && last
3302 && ((exp_data_seg.base & ~(exp_data_seg.pagesize - 1))
3303 != (exp_data_seg.end & ~(exp_data_seg.pagesize - 1)))
3304 && first + last <= exp_data_seg.pagesize)
3306 exp_data_seg.phase = exp_dataseg_adjust;
3307 lang_statement_iteration++;
3308 result = lang_size_sections_1 (s, output_section_statement, prev,
3309 fill, dot, relax, check_regions);
3313 /* Some backend relaxers want to refer to the output section size. Give
3314 them a section size that does not change on the next call while they
3315 relax. We can't set this at top because lang_reset_memory_regions
3316 which is called before we get here, sets _raw_size to 0 on relaxing
3317 rounds. */
3318 for (o = output_bfd->sections; o != NULL; o = o->next)
3319 o->_cooked_size = o->_raw_size;
3321 return result;
3324 /* Worker function for lang_do_assignments. Recursiveness goes here. */
3326 static bfd_vma
3327 lang_do_assignments_1
3328 (lang_statement_union_type *s,
3329 lang_output_section_statement_type *output_section_statement,
3330 fill_type *fill,
3331 bfd_vma dot)
3333 for (; s != NULL; s = s->header.next)
3335 switch (s->header.type)
3337 case lang_constructors_statement_enum:
3338 dot = lang_do_assignments_1 (constructor_list.head,
3339 output_section_statement,
3340 fill,
3341 dot);
3342 break;
3344 case lang_output_section_statement_enum:
3346 lang_output_section_statement_type *os;
3348 os = &(s->output_section_statement);
3349 if (os->bfd_section != NULL)
3351 dot = os->bfd_section->vma;
3352 lang_do_assignments_1 (os->children.head, os, os->fill, dot);
3353 /* .tbss sections effectively have zero size. */
3354 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
3355 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
3356 || link_info.relocatable)
3357 dot += TO_ADDR (os->bfd_section->_raw_size);
3359 if (os->load_base)
3361 /* If nothing has been placed into the output section then
3362 it won't have a bfd_section. */
3363 if (os->bfd_section)
3365 os->bfd_section->lma
3366 = exp_get_abs_int (os->load_base, 0, "load base",
3367 lang_final_phase_enum);
3371 break;
3372 case lang_wild_statement_enum:
3374 dot = lang_do_assignments_1 (s->wild_statement.children.head,
3375 output_section_statement,
3376 fill, dot);
3378 break;
3380 case lang_object_symbols_statement_enum:
3381 case lang_output_statement_enum:
3382 case lang_target_statement_enum:
3383 #if 0
3384 case lang_common_statement_enum:
3385 #endif
3386 break;
3387 case lang_data_statement_enum:
3389 etree_value_type value;
3391 value = exp_fold_tree (s->data_statement.exp,
3392 abs_output_section,
3393 lang_final_phase_enum, dot, &dot);
3394 if (!value.valid_p)
3395 einfo (_("%F%P: invalid data statement\n"));
3396 s->data_statement.value
3397 = value.value + value.section->bfd_section->vma;
3400 unsigned int size;
3401 switch (s->data_statement.type)
3403 default:
3404 abort ();
3405 case QUAD:
3406 case SQUAD:
3407 size = QUAD_SIZE;
3408 break;
3409 case LONG:
3410 size = LONG_SIZE;
3411 break;
3412 case SHORT:
3413 size = SHORT_SIZE;
3414 break;
3415 case BYTE:
3416 size = BYTE_SIZE;
3417 break;
3419 if (size < TO_SIZE ((unsigned) 1))
3420 size = TO_SIZE ((unsigned) 1);
3421 dot += TO_ADDR (size);
3423 break;
3425 case lang_reloc_statement_enum:
3427 etree_value_type value;
3429 value = exp_fold_tree (s->reloc_statement.addend_exp,
3430 abs_output_section,
3431 lang_final_phase_enum, dot, &dot);
3432 s->reloc_statement.addend_value = value.value;
3433 if (!value.valid_p)
3434 einfo (_("%F%P: invalid reloc statement\n"));
3436 dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
3437 break;
3439 case lang_input_section_enum:
3441 asection *in = s->input_section.section;
3443 if (in->_cooked_size != 0)
3444 dot += TO_ADDR (in->_cooked_size);
3445 else
3446 dot += TO_ADDR (in->_raw_size);
3448 break;
3450 case lang_input_statement_enum:
3451 break;
3452 case lang_fill_statement_enum:
3453 fill = s->fill_statement.fill;
3454 break;
3455 case lang_assignment_statement_enum:
3457 exp_fold_tree (s->assignment_statement.exp,
3458 output_section_statement,
3459 lang_final_phase_enum,
3460 dot,
3461 &dot);
3464 break;
3465 case lang_padding_statement_enum:
3466 dot += TO_ADDR (s->padding_statement.size);
3467 break;
3469 case lang_group_statement_enum:
3470 dot = lang_do_assignments_1 (s->group_statement.children.head,
3471 output_section_statement,
3472 fill, dot);
3474 break;
3476 default:
3477 FAIL ();
3478 break;
3479 case lang_address_statement_enum:
3480 break;
3484 return dot;
3487 void
3488 lang_do_assignments (lang_statement_union_type *s,
3489 lang_output_section_statement_type *output_section_statement,
3490 fill_type *fill,
3491 bfd_vma dot)
3493 /* Callers of exp_fold_tree need to increment this. */
3494 lang_statement_iteration++;
3495 lang_do_assignments_1 (s, output_section_statement, fill, dot);
3498 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
3499 operator .startof. (section_name), it produces an undefined symbol
3500 .startof.section_name. Similarly, when it sees
3501 .sizeof. (section_name), it produces an undefined symbol
3502 .sizeof.section_name. For all the output sections, we look for
3503 such symbols, and set them to the correct value. */
3505 static void
3506 lang_set_startof (void)
3508 asection *s;
3510 if (link_info.relocatable)
3511 return;
3513 for (s = output_bfd->sections; s != NULL; s = s->next)
3515 const char *secname;
3516 char *buf;
3517 struct bfd_link_hash_entry *h;
3519 secname = bfd_get_section_name (output_bfd, s);
3520 buf = xmalloc (10 + strlen (secname));
3522 sprintf (buf, ".startof.%s", secname);
3523 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
3524 if (h != NULL && h->type == bfd_link_hash_undefined)
3526 h->type = bfd_link_hash_defined;
3527 h->u.def.value = bfd_get_section_vma (output_bfd, s);
3528 h->u.def.section = bfd_abs_section_ptr;
3531 sprintf (buf, ".sizeof.%s", secname);
3532 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
3533 if (h != NULL && h->type == bfd_link_hash_undefined)
3535 h->type = bfd_link_hash_defined;
3536 if (s->_cooked_size != 0)
3537 h->u.def.value = TO_ADDR (s->_cooked_size);
3538 else
3539 h->u.def.value = TO_ADDR (s->_raw_size);
3540 h->u.def.section = bfd_abs_section_ptr;
3543 free (buf);
3547 static void
3548 lang_finish (void)
3550 struct bfd_link_hash_entry *h;
3551 bfd_boolean warn;
3553 if (link_info.relocatable || link_info.shared)
3554 warn = FALSE;
3555 else
3556 warn = TRUE;
3558 if (entry_symbol.name == NULL)
3560 /* No entry has been specified. Look for start, but don't warn
3561 if we don't find it. */
3562 entry_symbol.name = "start";
3563 warn = FALSE;
3566 h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
3567 FALSE, FALSE, TRUE);
3568 if (h != NULL
3569 && (h->type == bfd_link_hash_defined
3570 || h->type == bfd_link_hash_defweak)
3571 && h->u.def.section->output_section != NULL)
3573 bfd_vma val;
3575 val = (h->u.def.value
3576 + bfd_get_section_vma (output_bfd,
3577 h->u.def.section->output_section)
3578 + h->u.def.section->output_offset);
3579 if (! bfd_set_start_address (output_bfd, val))
3580 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
3582 else
3584 bfd_vma val;
3585 const char *send;
3587 /* We couldn't find the entry symbol. Try parsing it as a
3588 number. */
3589 val = bfd_scan_vma (entry_symbol.name, &send, 0);
3590 if (*send == '\0')
3592 if (! bfd_set_start_address (output_bfd, val))
3593 einfo (_("%P%F: can't set start address\n"));
3595 else
3597 asection *ts;
3599 /* Can't find the entry symbol, and it's not a number. Use
3600 the first address in the text section. */
3601 ts = bfd_get_section_by_name (output_bfd, entry_section);
3602 if (ts != NULL)
3604 if (warn)
3605 einfo (_("%P: warning: cannot find entry symbol %s; defaulting to %V\n"),
3606 entry_symbol.name,
3607 bfd_get_section_vma (output_bfd, ts));
3608 if (! bfd_set_start_address (output_bfd,
3609 bfd_get_section_vma (output_bfd,
3610 ts)))
3611 einfo (_("%P%F: can't set start address\n"));
3613 else
3615 if (warn)
3616 einfo (_("%P: warning: cannot find entry symbol %s; not setting start address\n"),
3617 entry_symbol.name);
3622 bfd_hash_table_free (&lang_definedness_table);
3625 /* This is a small function used when we want to ignore errors from
3626 BFD. */
3628 static void
3629 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
3631 /* Don't do anything. */
3634 /* Check that the architecture of all the input files is compatible
3635 with the output file. Also call the backend to let it do any
3636 other checking that is needed. */
3638 static void
3639 lang_check (void)
3641 lang_statement_union_type *file;
3642 bfd *input_bfd;
3643 const bfd_arch_info_type *compatible;
3645 for (file = file_chain.head; file != NULL; file = file->input_statement.next)
3647 input_bfd = file->input_statement.the_bfd;
3648 compatible = bfd_arch_get_compatible (input_bfd, output_bfd,
3649 command_line.accept_unknown_input_arch);
3651 /* In general it is not possible to perform a relocatable
3652 link between differing object formats when the input
3653 file has relocations, because the relocations in the
3654 input format may not have equivalent representations in
3655 the output format (and besides BFD does not translate
3656 relocs for other link purposes than a final link). */
3657 if ((link_info.relocatable || link_info.emitrelocations)
3658 && (compatible == NULL
3659 || bfd_get_flavour (input_bfd) != bfd_get_flavour (output_bfd))
3660 && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
3662 einfo (_("%P%F: Relocatable linking with relocations from format %s (%B) to format %s (%B) is not supported\n"),
3663 bfd_get_target (input_bfd), input_bfd,
3664 bfd_get_target (output_bfd), output_bfd);
3665 /* einfo with %F exits. */
3668 if (compatible == NULL)
3670 if (command_line.warn_mismatch)
3671 einfo (_("%P: warning: %s architecture of input file `%B' is incompatible with %s output\n"),
3672 bfd_printable_name (input_bfd), input_bfd,
3673 bfd_printable_name (output_bfd));
3675 else if (bfd_count_sections (input_bfd))
3677 /* If the input bfd has no contents, it shouldn't set the
3678 private data of the output bfd. */
3680 bfd_error_handler_type pfn = NULL;
3682 /* If we aren't supposed to warn about mismatched input
3683 files, temporarily set the BFD error handler to a
3684 function which will do nothing. We still want to call
3685 bfd_merge_private_bfd_data, since it may set up
3686 information which is needed in the output file. */
3687 if (! command_line.warn_mismatch)
3688 pfn = bfd_set_error_handler (ignore_bfd_errors);
3689 if (! bfd_merge_private_bfd_data (input_bfd, output_bfd))
3691 if (command_line.warn_mismatch)
3692 einfo (_("%P%X: failed to merge target specific data of file %B\n"),
3693 input_bfd);
3695 if (! command_line.warn_mismatch)
3696 bfd_set_error_handler (pfn);
3701 /* Look through all the global common symbols and attach them to the
3702 correct section. The -sort-common command line switch may be used
3703 to roughly sort the entries by size. */
3705 static void
3706 lang_common (void)
3708 if (command_line.inhibit_common_definition)
3709 return;
3710 if (link_info.relocatable
3711 && ! command_line.force_common_definition)
3712 return;
3714 if (! config.sort_common)
3715 bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
3716 else
3718 int power;
3720 for (power = 4; power >= 0; power--)
3721 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
3725 /* Place one common symbol in the correct section. */
3727 static bfd_boolean
3728 lang_one_common (struct bfd_link_hash_entry *h, void *info)
3730 unsigned int power_of_two;
3731 bfd_vma size;
3732 asection *section;
3734 if (h->type != bfd_link_hash_common)
3735 return TRUE;
3737 size = h->u.c.size;
3738 power_of_two = h->u.c.p->alignment_power;
3740 if (config.sort_common
3741 && power_of_two < (unsigned int) *(int *) info)
3742 return TRUE;
3744 section = h->u.c.p->section;
3746 /* Increase the size of the section to align the common sym. */
3747 section->_cooked_size += ((bfd_vma) 1 << (power_of_two + opb_shift)) - 1;
3748 section->_cooked_size &= (- (bfd_vma) 1 << (power_of_two + opb_shift));
3750 /* Adjust the alignment if necessary. */
3751 if (power_of_two > section->alignment_power)
3752 section->alignment_power = power_of_two;
3754 /* Change the symbol from common to defined. */
3755 h->type = bfd_link_hash_defined;
3756 h->u.def.section = section;
3757 h->u.def.value = section->_cooked_size;
3759 /* Increase the size of the section. */
3760 section->_cooked_size += size;
3762 /* Make sure the section is allocated in memory, and make sure that
3763 it is no longer a common section. */
3764 section->flags |= SEC_ALLOC;
3765 section->flags &= ~SEC_IS_COMMON;
3767 if (config.map_file != NULL)
3769 static bfd_boolean header_printed;
3770 int len;
3771 char *name;
3772 char buf[50];
3774 if (! header_printed)
3776 minfo (_("\nAllocating common symbols\n"));
3777 minfo (_("Common symbol size file\n\n"));
3778 header_printed = TRUE;
3781 name = demangle (h->root.string);
3782 minfo ("%s", name);
3783 len = strlen (name);
3784 free (name);
3786 if (len >= 19)
3788 print_nl ();
3789 len = 0;
3791 while (len < 20)
3793 print_space ();
3794 ++len;
3797 minfo ("0x");
3798 if (size <= 0xffffffff)
3799 sprintf (buf, "%lx", (unsigned long) size);
3800 else
3801 sprintf_vma (buf, size);
3802 minfo ("%s", buf);
3803 len = strlen (buf);
3805 while (len < 16)
3807 print_space ();
3808 ++len;
3811 minfo ("%B\n", section->owner);
3814 return TRUE;
3817 /* Run through the input files and ensure that every input section has
3818 somewhere to go. If one is found without a destination then create
3819 an input request and place it into the statement tree. */
3821 static void
3822 lang_place_orphans (void)
3824 LANG_FOR_EACH_INPUT_STATEMENT (file)
3826 asection *s;
3828 for (s = file->the_bfd->sections; s != NULL; s = s->next)
3830 if (s->output_section == NULL)
3832 /* This section of the file is not attached, root
3833 around for a sensible place for it to go. */
3835 if (file->just_syms_flag)
3837 abort ();
3839 else if (strcmp (s->name, "COMMON") == 0)
3841 /* This is a lonely common section which must have
3842 come from an archive. We attach to the section
3843 with the wildcard. */
3844 if (! link_info.relocatable
3845 || command_line.force_common_definition)
3847 if (default_common_section == NULL)
3849 #if 0
3850 /* This message happens when using the
3851 svr3.ifile linker script, so I have
3852 disabled it. */
3853 info_msg (_("%P: no [COMMON] command, defaulting to .bss\n"));
3854 #endif
3855 default_common_section =
3856 lang_output_section_statement_lookup (".bss");
3859 lang_add_section (&default_common_section->children, s,
3860 default_common_section, file);
3863 else if (ldemul_place_orphan (file, s))
3865 else
3867 lang_output_section_statement_type *os;
3869 os = lang_output_section_statement_lookup (s->name);
3870 lang_add_section (&os->children, s, os, file);
3877 void
3878 lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
3880 flagword *ptr_flags;
3882 ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
3883 while (*flags)
3885 switch (*flags)
3887 case 'A': case 'a':
3888 *ptr_flags |= SEC_ALLOC;
3889 break;
3891 case 'R': case 'r':
3892 *ptr_flags |= SEC_READONLY;
3893 break;
3895 case 'W': case 'w':
3896 *ptr_flags |= SEC_DATA;
3897 break;
3899 case 'X': case 'x':
3900 *ptr_flags |= SEC_CODE;
3901 break;
3903 case 'L': case 'l':
3904 case 'I': case 'i':
3905 *ptr_flags |= SEC_LOAD;
3906 break;
3908 default:
3909 einfo (_("%P%F: invalid syntax in flags\n"));
3910 break;
3912 flags++;
3916 /* Call a function on each input file. This function will be called
3917 on an archive, but not on the elements. */
3919 void
3920 lang_for_each_input_file (void (*func) (lang_input_statement_type *))
3922 lang_input_statement_type *f;
3924 for (f = (lang_input_statement_type *) input_file_chain.head;
3925 f != NULL;
3926 f = (lang_input_statement_type *) f->next_real_file)
3927 func (f);
3930 /* Call a function on each file. The function will be called on all
3931 the elements of an archive which are included in the link, but will
3932 not be called on the archive file itself. */
3934 void
3935 lang_for_each_file (void (*func) (lang_input_statement_type *))
3937 LANG_FOR_EACH_INPUT_STATEMENT (f)
3939 func (f);
3943 void
3944 ldlang_add_file (lang_input_statement_type *entry)
3946 bfd **pp;
3948 lang_statement_append (&file_chain,
3949 (lang_statement_union_type *) entry,
3950 &entry->next);
3952 /* The BFD linker needs to have a list of all input BFDs involved in
3953 a link. */
3954 ASSERT (entry->the_bfd->link_next == NULL);
3955 ASSERT (entry->the_bfd != output_bfd);
3956 for (pp = &link_info.input_bfds; *pp != NULL; pp = &(*pp)->link_next)
3958 *pp = entry->the_bfd;
3959 entry->the_bfd->usrdata = entry;
3960 bfd_set_gp_size (entry->the_bfd, g_switch_value);
3962 /* Look through the sections and check for any which should not be
3963 included in the link. We need to do this now, so that we can
3964 notice when the backend linker tries to report multiple
3965 definition errors for symbols which are in sections we aren't
3966 going to link. FIXME: It might be better to entirely ignore
3967 symbols which are defined in sections which are going to be
3968 discarded. This would require modifying the backend linker for
3969 each backend which might set the SEC_LINK_ONCE flag. If we do
3970 this, we should probably handle SEC_EXCLUDE in the same way. */
3972 bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
3975 void
3976 lang_add_output (const char *name, int from_script)
3978 /* Make -o on command line override OUTPUT in script. */
3979 if (!had_output_filename || !from_script)
3981 output_filename = name;
3982 had_output_filename = TRUE;
3986 static lang_output_section_statement_type *current_section;
3988 static int
3989 topower (int x)
3991 unsigned int i = 1;
3992 int l;
3994 if (x < 0)
3995 return -1;
3997 for (l = 0; l < 32; l++)
3999 if (i >= (unsigned int) x)
4000 return l;
4001 i <<= 1;
4004 return 0;
4007 lang_output_section_statement_type *
4008 lang_enter_output_section_statement (const char *output_section_statement_name,
4009 etree_type *address_exp,
4010 enum section_type sectype,
4011 etree_type *align,
4012 etree_type *subalign,
4013 etree_type *ebase)
4015 lang_output_section_statement_type *os;
4017 current_section =
4018 os =
4019 lang_output_section_statement_lookup (output_section_statement_name);
4021 /* Add this statement to tree. */
4022 #if 0
4023 add_statement (lang_output_section_statement_enum,
4024 output_section_statement);
4025 #endif
4026 /* Make next things chain into subchain of this. */
4028 if (os->addr_tree == NULL)
4030 os->addr_tree = address_exp;
4032 os->sectype = sectype;
4033 if (sectype != noload_section)
4034 os->flags = SEC_NO_FLAGS;
4035 else
4036 os->flags = SEC_NEVER_LOAD;
4037 os->block_value = 1;
4038 stat_ptr = &os->children;
4040 os->subsection_alignment =
4041 topower (exp_get_value_int (subalign, -1, "subsection alignment", 0));
4042 os->section_alignment =
4043 topower (exp_get_value_int (align, -1, "section alignment", 0));
4045 os->load_base = ebase;
4046 return os;
4049 void
4050 lang_final (void)
4052 lang_output_statement_type *new =
4053 new_stat (lang_output_statement, stat_ptr);
4055 new->name = output_filename;
4058 /* Reset the current counters in the regions. */
4060 void
4061 lang_reset_memory_regions (void)
4063 lang_memory_region_type *p = lang_memory_region_list;
4064 asection *o;
4066 for (p = lang_memory_region_list; p != NULL; p = p->next)
4068 p->old_length = (bfd_size_type) (p->current - p->origin);
4069 p->current = p->origin;
4072 for (o = output_bfd->sections; o != NULL; o = o->next)
4073 o->_raw_size = 0;
4076 /* If the wild pattern was marked KEEP, the member sections
4077 should be as well. */
4079 static void
4080 gc_section_callback (lang_wild_statement_type *ptr,
4081 struct wildcard_list *sec ATTRIBUTE_UNUSED,
4082 asection *section,
4083 lang_input_statement_type *file ATTRIBUTE_UNUSED,
4084 void *data ATTRIBUTE_UNUSED)
4086 if (ptr->keep_sections)
4087 section->flags |= SEC_KEEP;
4090 /* Handle a wild statement, marking it against GC. */
4092 static void
4093 lang_gc_wild (lang_wild_statement_type *s)
4095 walk_wild (s, gc_section_callback, NULL);
4098 /* Iterate over sections marking them against GC. */
4100 static void
4101 lang_gc_sections_1 (lang_statement_union_type *s)
4103 for (; s != NULL; s = s->header.next)
4105 switch (s->header.type)
4107 case lang_wild_statement_enum:
4108 lang_gc_wild (&s->wild_statement);
4109 break;
4110 case lang_constructors_statement_enum:
4111 lang_gc_sections_1 (constructor_list.head);
4112 break;
4113 case lang_output_section_statement_enum:
4114 lang_gc_sections_1 (s->output_section_statement.children.head);
4115 break;
4116 case lang_group_statement_enum:
4117 lang_gc_sections_1 (s->group_statement.children.head);
4118 break;
4119 default:
4120 break;
4125 static void
4126 lang_gc_sections (void)
4128 struct bfd_link_hash_entry *h;
4129 ldlang_undef_chain_list_type *ulist;
4131 /* Keep all sections so marked in the link script. */
4133 lang_gc_sections_1 (statement_list.head);
4135 /* Keep all sections containing symbols undefined on the command-line,
4136 and the section containing the entry symbol. */
4138 for (ulist = link_info.gc_sym_list; ulist; ulist = ulist->next)
4140 h = bfd_link_hash_lookup (link_info.hash, ulist->name,
4141 FALSE, FALSE, FALSE);
4143 if (h != NULL
4144 && (h->type == bfd_link_hash_defined
4145 || h->type == bfd_link_hash_defweak)
4146 && ! bfd_is_abs_section (h->u.def.section))
4148 h->u.def.section->flags |= SEC_KEEP;
4152 bfd_gc_sections (output_bfd, &link_info);
4155 void
4156 lang_process (void)
4158 lang_reasonable_defaults ();
4159 current_target = default_target;
4161 /* Open the output file. */
4162 lang_for_each_statement (ldlang_open_output);
4163 init_opb ();
4165 ldemul_create_output_section_statements ();
4167 /* Add to the hash table all undefineds on the command line. */
4168 lang_place_undefineds ();
4170 already_linked_table_init ();
4172 /* Create a bfd for each input file. */
4173 current_target = default_target;
4174 open_input_bfds (statement_list.head, FALSE);
4176 link_info.gc_sym_list = &entry_symbol;
4177 if (entry_symbol.name == NULL)
4178 link_info.gc_sym_list = ldlang_undef_chain_list_head;
4180 ldemul_after_open ();
4182 already_linked_table_free ();
4184 /* Make sure that we're not mixing architectures. We call this
4185 after all the input files have been opened, but before we do any
4186 other processing, so that any operations merge_private_bfd_data
4187 does on the output file will be known during the rest of the
4188 link. */
4189 lang_check ();
4191 /* Handle .exports instead of a version script if we're told to do so. */
4192 if (command_line.version_exports_section)
4193 lang_do_version_exports_section ();
4195 /* Build all sets based on the information gathered from the input
4196 files. */
4197 ldctor_build_sets ();
4199 /* Remove unreferenced sections if asked to. */
4200 if (command_line.gc_sections)
4201 lang_gc_sections ();
4203 /* If there were any SEC_MERGE sections, finish their merging, so that
4204 section sizes can be computed. This has to be done after GC of sections,
4205 so that GCed sections are not merged, but before assigning output
4206 sections, since removing whole input sections is hard then. */
4207 bfd_merge_sections (output_bfd, &link_info);
4209 /* Size up the common data. */
4210 lang_common ();
4212 /* Run through the contours of the script and attach input sections
4213 to the correct output sections. */
4214 map_input_to_output_sections (statement_list.head, NULL, NULL);
4216 /* Find any sections not attached explicitly and handle them. */
4217 lang_place_orphans ();
4219 if (! link_info.relocatable)
4221 /* Look for a text section and set the readonly attribute in it. */
4222 asection *found = bfd_get_section_by_name (output_bfd, ".text");
4224 if (found != NULL)
4226 if (config.text_read_only)
4227 found->flags |= SEC_READONLY;
4228 else
4229 found->flags &= ~SEC_READONLY;
4233 /* Do anything special before sizing sections. This is where ELF
4234 and other back-ends size dynamic sections. */
4235 ldemul_before_allocation ();
4237 if (!link_info.relocatable)
4238 strip_excluded_output_sections ();
4240 /* We must record the program headers before we try to fix the
4241 section positions, since they will affect SIZEOF_HEADERS. */
4242 lang_record_phdrs ();
4244 /* Size up the sections. */
4245 lang_size_sections (statement_list.head, abs_output_section,
4246 &statement_list.head, 0, 0, NULL,
4247 command_line.relax ? FALSE : TRUE);
4249 /* Now run around and relax if we can. */
4250 if (command_line.relax)
4252 /* Keep relaxing until bfd_relax_section gives up. */
4253 bfd_boolean relax_again;
4257 relax_again = FALSE;
4259 /* Note: pe-dll.c does something like this also. If you find
4260 you need to change this code, you probably need to change
4261 pe-dll.c also. DJ */
4263 /* Do all the assignments with our current guesses as to
4264 section sizes. */
4265 lang_do_assignments (statement_list.head, abs_output_section,
4266 NULL, 0);
4268 /* We must do this after lang_do_assignments, because it uses
4269 _raw_size. */
4270 lang_reset_memory_regions ();
4272 /* Perform another relax pass - this time we know where the
4273 globals are, so can make a better guess. */
4274 lang_size_sections (statement_list.head, abs_output_section,
4275 &statement_list.head, 0, 0, &relax_again, FALSE);
4277 /* If the normal relax is done and the relax finalize pass
4278 is not performed yet, we perform another relax pass. */
4279 if (!relax_again && link_info.need_relax_finalize)
4281 link_info.need_relax_finalize = FALSE;
4282 relax_again = TRUE;
4285 while (relax_again);
4287 /* Final extra sizing to report errors. */
4288 lang_do_assignments (statement_list.head, abs_output_section, NULL, 0);
4289 lang_reset_memory_regions ();
4290 lang_size_sections (statement_list.head, abs_output_section,
4291 &statement_list.head, 0, 0, NULL, TRUE);
4294 /* See if anything special should be done now we know how big
4295 everything is. */
4296 ldemul_after_allocation ();
4298 /* Fix any .startof. or .sizeof. symbols. */
4299 lang_set_startof ();
4301 /* Do all the assignments, now that we know the final resting places
4302 of all the symbols. */
4304 lang_do_assignments (statement_list.head, abs_output_section, NULL, 0);
4306 /* Make sure that the section addresses make sense. */
4307 if (! link_info.relocatable
4308 && command_line.check_section_addresses)
4309 lang_check_section_addresses ();
4311 /* Final stuffs. */
4313 ldemul_finish ();
4314 lang_finish ();
4317 /* EXPORTED TO YACC */
4319 void
4320 lang_add_wild (struct wildcard_spec *filespec,
4321 struct wildcard_list *section_list,
4322 bfd_boolean keep_sections)
4324 struct wildcard_list *curr, *next;
4325 lang_wild_statement_type *new;
4327 /* Reverse the list as the parser puts it back to front. */
4328 for (curr = section_list, section_list = NULL;
4329 curr != NULL;
4330 section_list = curr, curr = next)
4332 if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
4333 placed_commons = TRUE;
4335 next = curr->next;
4336 curr->next = section_list;
4339 if (filespec != NULL && filespec->name != NULL)
4341 if (strcmp (filespec->name, "*") == 0)
4342 filespec->name = NULL;
4343 else if (! wildcardp (filespec->name))
4344 lang_has_input_file = TRUE;
4347 new = new_stat (lang_wild_statement, stat_ptr);
4348 new->filename = NULL;
4349 new->filenames_sorted = FALSE;
4350 if (filespec != NULL)
4352 new->filename = filespec->name;
4353 new->filenames_sorted = filespec->sorted;
4355 new->section_list = section_list;
4356 new->keep_sections = keep_sections;
4357 lang_list_init (&new->children);
4360 void
4361 lang_section_start (const char *name, etree_type *address)
4363 lang_address_statement_type *ad;
4365 ad = new_stat (lang_address_statement, stat_ptr);
4366 ad->section_name = name;
4367 ad->address = address;
4370 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
4371 because of a -e argument on the command line, or zero if this is
4372 called by ENTRY in a linker script. Command line arguments take
4373 precedence. */
4375 void
4376 lang_add_entry (const char *name, bfd_boolean cmdline)
4378 if (entry_symbol.name == NULL
4379 || cmdline
4380 || ! entry_from_cmdline)
4382 entry_symbol.name = name;
4383 entry_from_cmdline = cmdline;
4387 void
4388 lang_add_target (const char *name)
4390 lang_target_statement_type *new = new_stat (lang_target_statement,
4391 stat_ptr);
4393 new->target = name;
4397 void
4398 lang_add_map (const char *name)
4400 while (*name)
4402 switch (*name)
4404 case 'F':
4405 map_option_f = TRUE;
4406 break;
4408 name++;
4412 void
4413 lang_add_fill (fill_type *fill)
4415 lang_fill_statement_type *new = new_stat (lang_fill_statement,
4416 stat_ptr);
4418 new->fill = fill;
4421 void
4422 lang_add_data (int type, union etree_union *exp)
4425 lang_data_statement_type *new = new_stat (lang_data_statement,
4426 stat_ptr);
4428 new->exp = exp;
4429 new->type = type;
4433 /* Create a new reloc statement. RELOC is the BFD relocation type to
4434 generate. HOWTO is the corresponding howto structure (we could
4435 look this up, but the caller has already done so). SECTION is the
4436 section to generate a reloc against, or NAME is the name of the
4437 symbol to generate a reloc against. Exactly one of SECTION and
4438 NAME must be NULL. ADDEND is an expression for the addend. */
4440 void
4441 lang_add_reloc (bfd_reloc_code_real_type reloc,
4442 reloc_howto_type *howto,
4443 asection *section,
4444 const char *name,
4445 union etree_union *addend)
4447 lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
4449 p->reloc = reloc;
4450 p->howto = howto;
4451 p->section = section;
4452 p->name = name;
4453 p->addend_exp = addend;
4455 p->addend_value = 0;
4456 p->output_section = NULL;
4457 p->output_vma = 0;
4460 lang_assignment_statement_type *
4461 lang_add_assignment (etree_type *exp)
4463 lang_assignment_statement_type *new = new_stat (lang_assignment_statement,
4464 stat_ptr);
4466 new->exp = exp;
4467 return new;
4470 void
4471 lang_add_attribute (enum statement_enum attribute)
4473 new_statement (attribute, sizeof (lang_statement_union_type), stat_ptr);
4476 void
4477 lang_startup (const char *name)
4479 if (startup_file != NULL)
4481 einfo (_("%P%Fmultiple STARTUP files\n"));
4483 first_file->filename = name;
4484 first_file->local_sym_name = name;
4485 first_file->real = TRUE;
4487 startup_file = name;
4490 void
4491 lang_float (bfd_boolean maybe)
4493 lang_float_flag = maybe;
4497 /* Work out the load- and run-time regions from a script statement, and
4498 store them in *LMA_REGION and *REGION respectively.
4500 MEMSPEC is the name of the run-time region, or the value of
4501 DEFAULT_MEMORY_REGION if the statement didn't specify one.
4502 LMA_MEMSPEC is the name of the load-time region, or null if the
4503 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
4504 had an explicit load address.
4506 It is an error to specify both a load region and a load address. */
4508 static void
4509 lang_get_regions (lang_memory_region_type **region,
4510 lang_memory_region_type **lma_region,
4511 const char *memspec,
4512 const char *lma_memspec,
4513 bfd_boolean have_lma,
4514 bfd_boolean have_vma)
4516 *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
4518 /* If no runtime region or VMA has been specified, but the load region has
4519 been specified, then use the load region for the runtime region as well. */
4520 if (lma_memspec != NULL
4521 && ! have_vma
4522 && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
4523 *region = *lma_region;
4524 else
4525 *region = lang_memory_region_lookup (memspec, FALSE);
4527 if (have_lma && lma_memspec != 0)
4528 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
4531 void
4532 lang_leave_output_section_statement (fill_type *fill, const char *memspec,
4533 lang_output_section_phdr_list *phdrs,
4534 const char *lma_memspec)
4536 lang_get_regions (&current_section->region,
4537 &current_section->lma_region,
4538 memspec, lma_memspec,
4539 current_section->load_base != NULL,
4540 current_section->addr_tree != NULL);
4541 current_section->fill = fill;
4542 current_section->phdrs = phdrs;
4543 stat_ptr = &statement_list;
4546 /* Create an absolute symbol with the given name with the value of the
4547 address of first byte of the section named.
4549 If the symbol already exists, then do nothing. */
4551 void
4552 lang_abs_symbol_at_beginning_of (const char *secname, const char *name)
4554 struct bfd_link_hash_entry *h;
4556 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
4557 if (h == NULL)
4558 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4560 if (h->type == bfd_link_hash_new
4561 || h->type == bfd_link_hash_undefined)
4563 asection *sec;
4565 h->type = bfd_link_hash_defined;
4567 sec = bfd_get_section_by_name (output_bfd, secname);
4568 if (sec == NULL)
4569 h->u.def.value = 0;
4570 else
4571 h->u.def.value = bfd_get_section_vma (output_bfd, sec);
4573 h->u.def.section = bfd_abs_section_ptr;
4577 /* Create an absolute symbol with the given name with the value of the
4578 address of the first byte after the end of the section named.
4580 If the symbol already exists, then do nothing. */
4582 void
4583 lang_abs_symbol_at_end_of (const char *secname, const char *name)
4585 struct bfd_link_hash_entry *h;
4587 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
4588 if (h == NULL)
4589 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4591 if (h->type == bfd_link_hash_new
4592 || h->type == bfd_link_hash_undefined)
4594 asection *sec;
4596 h->type = bfd_link_hash_defined;
4598 sec = bfd_get_section_by_name (output_bfd, secname);
4599 if (sec == NULL)
4600 h->u.def.value = 0;
4601 else
4602 h->u.def.value = (bfd_get_section_vma (output_bfd, sec)
4603 + TO_ADDR (bfd_section_size (output_bfd, sec)));
4605 h->u.def.section = bfd_abs_section_ptr;
4609 void
4610 lang_statement_append (lang_statement_list_type *list,
4611 lang_statement_union_type *element,
4612 lang_statement_union_type **field)
4614 *(list->tail) = element;
4615 list->tail = field;
4618 /* Set the output format type. -oformat overrides scripts. */
4620 void
4621 lang_add_output_format (const char *format,
4622 const char *big,
4623 const char *little,
4624 int from_script)
4626 if (output_target == NULL || !from_script)
4628 if (command_line.endian == ENDIAN_BIG
4629 && big != NULL)
4630 format = big;
4631 else if (command_line.endian == ENDIAN_LITTLE
4632 && little != NULL)
4633 format = little;
4635 output_target = format;
4639 /* Enter a group. This creates a new lang_group_statement, and sets
4640 stat_ptr to build new statements within the group. */
4642 void
4643 lang_enter_group (void)
4645 lang_group_statement_type *g;
4647 g = new_stat (lang_group_statement, stat_ptr);
4648 lang_list_init (&g->children);
4649 stat_ptr = &g->children;
4652 /* Leave a group. This just resets stat_ptr to start writing to the
4653 regular list of statements again. Note that this will not work if
4654 groups can occur inside anything else which can adjust stat_ptr,
4655 but currently they can't. */
4657 void
4658 lang_leave_group (void)
4660 stat_ptr = &statement_list;
4663 /* Add a new program header. This is called for each entry in a PHDRS
4664 command in a linker script. */
4666 void
4667 lang_new_phdr (const char *name,
4668 etree_type *type,
4669 bfd_boolean filehdr,
4670 bfd_boolean phdrs,
4671 etree_type *at,
4672 etree_type *flags)
4674 struct lang_phdr *n, **pp;
4676 n = stat_alloc (sizeof (struct lang_phdr));
4677 n->next = NULL;
4678 n->name = name;
4679 n->type = exp_get_value_int (type, 0, "program header type",
4680 lang_final_phase_enum);
4681 n->filehdr = filehdr;
4682 n->phdrs = phdrs;
4683 n->at = at;
4684 n->flags = flags;
4686 for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
4688 *pp = n;
4691 /* Record the program header information in the output BFD. FIXME: We
4692 should not be calling an ELF specific function here. */
4694 static void
4695 lang_record_phdrs (void)
4697 unsigned int alc;
4698 asection **secs;
4699 lang_output_section_phdr_list *last;
4700 struct lang_phdr *l;
4701 lang_statement_union_type *u;
4703 alc = 10;
4704 secs = xmalloc (alc * sizeof (asection *));
4705 last = NULL;
4706 for (l = lang_phdr_list; l != NULL; l = l->next)
4708 unsigned int c;
4709 flagword flags;
4710 bfd_vma at;
4712 c = 0;
4713 for (u = lang_output_section_statement.head;
4714 u != NULL;
4715 u = u->output_section_statement.next)
4717 lang_output_section_statement_type *os;
4718 lang_output_section_phdr_list *pl;
4720 os = &u->output_section_statement;
4722 pl = os->phdrs;
4723 if (pl != NULL)
4724 last = pl;
4725 else
4727 if (os->sectype == noload_section
4728 || os->bfd_section == NULL
4729 || (os->bfd_section->flags & SEC_ALLOC) == 0)
4730 continue;
4731 pl = last;
4734 if (os->bfd_section == NULL)
4735 continue;
4737 for (; pl != NULL; pl = pl->next)
4739 if (strcmp (pl->name, l->name) == 0)
4741 if (c >= alc)
4743 alc *= 2;
4744 secs = xrealloc (secs, alc * sizeof (asection *));
4746 secs[c] = os->bfd_section;
4747 ++c;
4748 pl->used = TRUE;
4753 if (l->flags == NULL)
4754 flags = 0;
4755 else
4756 flags = exp_get_vma (l->flags, 0, "phdr flags",
4757 lang_final_phase_enum);
4759 if (l->at == NULL)
4760 at = 0;
4761 else
4762 at = exp_get_vma (l->at, 0, "phdr load address",
4763 lang_final_phase_enum);
4765 if (! bfd_record_phdr (output_bfd, l->type,
4766 l->flags != NULL, flags, l->at != NULL,
4767 at, l->filehdr, l->phdrs, c, secs))
4768 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
4771 free (secs);
4773 /* Make sure all the phdr assignments succeeded. */
4774 for (u = lang_output_section_statement.head;
4775 u != NULL;
4776 u = u->output_section_statement.next)
4778 lang_output_section_phdr_list *pl;
4780 if (u->output_section_statement.bfd_section == NULL)
4781 continue;
4783 for (pl = u->output_section_statement.phdrs;
4784 pl != NULL;
4785 pl = pl->next)
4786 if (! pl->used && strcmp (pl->name, "NONE") != 0)
4787 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
4788 u->output_section_statement.name, pl->name);
4792 /* Record a list of sections which may not be cross referenced. */
4794 void
4795 lang_add_nocrossref (lang_nocrossref_type *l)
4797 struct lang_nocrossrefs *n;
4799 n = xmalloc (sizeof *n);
4800 n->next = nocrossref_list;
4801 n->list = l;
4802 nocrossref_list = n;
4804 /* Set notice_all so that we get informed about all symbols. */
4805 link_info.notice_all = TRUE;
4808 /* Overlay handling. We handle overlays with some static variables. */
4810 /* The overlay virtual address. */
4811 static etree_type *overlay_vma;
4812 /* And subsection alignment. */
4813 static etree_type *overlay_subalign;
4815 /* An expression for the maximum section size seen so far. */
4816 static etree_type *overlay_max;
4818 /* A list of all the sections in this overlay. */
4820 struct overlay_list {
4821 struct overlay_list *next;
4822 lang_output_section_statement_type *os;
4825 static struct overlay_list *overlay_list;
4827 /* Start handling an overlay. */
4829 void
4830 lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
4832 /* The grammar should prevent nested overlays from occurring. */
4833 ASSERT (overlay_vma == NULL
4834 && overlay_subalign == NULL
4835 && overlay_max == NULL);
4837 overlay_vma = vma_expr;
4838 overlay_subalign = subalign;
4841 /* Start a section in an overlay. We handle this by calling
4842 lang_enter_output_section_statement with the correct VMA.
4843 lang_leave_overlay sets up the LMA and memory regions. */
4845 void
4846 lang_enter_overlay_section (const char *name)
4848 struct overlay_list *n;
4849 etree_type *size;
4851 lang_enter_output_section_statement (name, overlay_vma, normal_section,
4852 0, overlay_subalign, 0);
4854 /* If this is the first section, then base the VMA of future
4855 sections on this one. This will work correctly even if `.' is
4856 used in the addresses. */
4857 if (overlay_list == NULL)
4858 overlay_vma = exp_nameop (ADDR, name);
4860 /* Remember the section. */
4861 n = xmalloc (sizeof *n);
4862 n->os = current_section;
4863 n->next = overlay_list;
4864 overlay_list = n;
4866 size = exp_nameop (SIZEOF, name);
4868 /* Arrange to work out the maximum section end address. */
4869 if (overlay_max == NULL)
4870 overlay_max = size;
4871 else
4872 overlay_max = exp_binop (MAX_K, overlay_max, size);
4875 /* Finish a section in an overlay. There isn't any special to do
4876 here. */
4878 void
4879 lang_leave_overlay_section (fill_type *fill,
4880 lang_output_section_phdr_list *phdrs)
4882 const char *name;
4883 char *clean, *s2;
4884 const char *s1;
4885 char *buf;
4887 name = current_section->name;
4889 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
4890 region and that no load-time region has been specified. It doesn't
4891 really matter what we say here, since lang_leave_overlay will
4892 override it. */
4893 lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
4895 /* Define the magic symbols. */
4897 clean = xmalloc (strlen (name) + 1);
4898 s2 = clean;
4899 for (s1 = name; *s1 != '\0'; s1++)
4900 if (ISALNUM (*s1) || *s1 == '_')
4901 *s2++ = *s1;
4902 *s2 = '\0';
4904 buf = xmalloc (strlen (clean) + sizeof "__load_start_");
4905 sprintf (buf, "__load_start_%s", clean);
4906 lang_add_assignment (exp_assop ('=', buf,
4907 exp_nameop (LOADADDR, name)));
4909 buf = xmalloc (strlen (clean) + sizeof "__load_stop_");
4910 sprintf (buf, "__load_stop_%s", clean);
4911 lang_add_assignment (exp_assop ('=', buf,
4912 exp_binop ('+',
4913 exp_nameop (LOADADDR, name),
4914 exp_nameop (SIZEOF, name))));
4916 free (clean);
4919 /* Finish an overlay. If there are any overlay wide settings, this
4920 looks through all the sections in the overlay and sets them. */
4922 void
4923 lang_leave_overlay (etree_type *lma_expr,
4924 int nocrossrefs,
4925 fill_type *fill,
4926 const char *memspec,
4927 lang_output_section_phdr_list *phdrs,
4928 const char *lma_memspec)
4930 lang_memory_region_type *region;
4931 lang_memory_region_type *lma_region;
4932 struct overlay_list *l;
4933 lang_nocrossref_type *nocrossref;
4935 lang_get_regions (&region, &lma_region,
4936 memspec, lma_memspec,
4937 lma_expr != NULL, FALSE);
4939 nocrossref = NULL;
4941 /* After setting the size of the last section, set '.' to end of the
4942 overlay region. */
4943 if (overlay_list != NULL)
4944 overlay_list->os->update_dot_tree
4945 = exp_assop ('=', ".", exp_binop ('+', overlay_vma, overlay_max));
4947 l = overlay_list;
4948 while (l != NULL)
4950 struct overlay_list *next;
4952 if (fill != NULL && l->os->fill == NULL)
4953 l->os->fill = fill;
4955 l->os->region = region;
4956 l->os->lma_region = lma_region;
4958 /* The first section has the load address specified in the
4959 OVERLAY statement. The rest are worked out from that.
4960 The base address is not needed (and should be null) if
4961 an LMA region was specified. */
4962 if (l->next == 0)
4963 l->os->load_base = lma_expr;
4964 else if (lma_region == 0)
4965 l->os->load_base = exp_binop ('+',
4966 exp_nameop (LOADADDR, l->next->os->name),
4967 exp_nameop (SIZEOF, l->next->os->name));
4969 if (phdrs != NULL && l->os->phdrs == NULL)
4970 l->os->phdrs = phdrs;
4972 if (nocrossrefs)
4974 lang_nocrossref_type *nc;
4976 nc = xmalloc (sizeof *nc);
4977 nc->name = l->os->name;
4978 nc->next = nocrossref;
4979 nocrossref = nc;
4982 next = l->next;
4983 free (l);
4984 l = next;
4987 if (nocrossref != NULL)
4988 lang_add_nocrossref (nocrossref);
4990 overlay_vma = NULL;
4991 overlay_list = NULL;
4992 overlay_max = NULL;
4995 /* Version handling. This is only useful for ELF. */
4997 /* This global variable holds the version tree that we build. */
4999 struct bfd_elf_version_tree *lang_elf_version_info;
5001 /* If PREV is NULL, return first version pattern matching particular symbol.
5002 If PREV is non-NULL, return first version pattern matching particular
5003 symbol after PREV (previously returned by lang_vers_match). */
5005 static struct bfd_elf_version_expr *
5006 lang_vers_match (struct bfd_elf_version_expr_head *head,
5007 struct bfd_elf_version_expr *prev,
5008 const char *sym)
5010 const char *cxx_sym = sym;
5011 const char *java_sym = sym;
5012 struct bfd_elf_version_expr *expr = NULL;
5014 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
5016 cxx_sym = cplus_demangle (sym, DMGL_PARAMS | DMGL_ANSI);
5017 if (!cxx_sym)
5018 cxx_sym = sym;
5020 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
5022 java_sym = cplus_demangle (sym, DMGL_JAVA);
5023 if (!java_sym)
5024 java_sym = sym;
5027 if (head->htab && (prev == NULL || prev->symbol))
5029 struct bfd_elf_version_expr e;
5031 switch (prev ? prev->mask : 0)
5033 case 0:
5034 if (head->mask & BFD_ELF_VERSION_C_TYPE)
5036 e.symbol = sym;
5037 expr = htab_find (head->htab, &e);
5038 while (expr && strcmp (expr->symbol, sym) == 0)
5039 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
5040 goto out_ret;
5041 else
5042 expr = expr->next;
5044 /* Fallthrough */
5045 case BFD_ELF_VERSION_C_TYPE:
5046 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
5048 e.symbol = cxx_sym;
5049 expr = htab_find (head->htab, &e);
5050 while (expr && strcmp (expr->symbol, cxx_sym) == 0)
5051 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
5052 goto out_ret;
5053 else
5054 expr = expr->next;
5056 /* Fallthrough */
5057 case BFD_ELF_VERSION_CXX_TYPE:
5058 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
5060 e.symbol = java_sym;
5061 expr = htab_find (head->htab, &e);
5062 while (expr && strcmp (expr->symbol, java_sym) == 0)
5063 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
5064 goto out_ret;
5065 else
5066 expr = expr->next;
5068 /* Fallthrough */
5069 default:
5070 break;
5074 /* Finally, try the wildcards. */
5075 if (prev == NULL || prev->symbol)
5076 expr = head->remaining;
5077 else
5078 expr = prev->next;
5079 while (expr)
5081 const char *s;
5083 if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
5084 break;
5086 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
5087 s = java_sym;
5088 else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
5089 s = cxx_sym;
5090 else
5091 s = sym;
5092 if (fnmatch (expr->pattern, s, 0) == 0)
5093 break;
5094 expr = expr->next;
5097 out_ret:
5098 if (cxx_sym != sym)
5099 free ((char *) cxx_sym);
5100 if (java_sym != sym)
5101 free ((char *) java_sym);
5102 return expr;
5105 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
5106 return a string pointing to the symbol name. */
5108 static const char *
5109 realsymbol (const char *pattern)
5111 const char *p;
5112 bfd_boolean changed = FALSE, backslash = FALSE;
5113 char *s, *symbol = xmalloc (strlen (pattern) + 1);
5115 for (p = pattern, s = symbol; *p != '\0'; ++p)
5117 /* It is a glob pattern only if there is no preceding
5118 backslash. */
5119 if (! backslash && (*p == '?' || *p == '*' || *p == '['))
5121 free (symbol);
5122 return NULL;
5125 if (backslash)
5127 /* Remove the preceding backslash. */
5128 *(s - 1) = *p;
5129 changed = TRUE;
5131 else
5132 *s++ = *p;
5134 backslash = *p == '\\';
5137 if (changed)
5139 *s = '\0';
5140 return symbol;
5142 else
5144 free (symbol);
5145 return pattern;
5149 /* This is called for each variable name or match expression. */
5151 struct bfd_elf_version_expr *
5152 lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
5153 const char *new,
5154 const char *lang)
5156 struct bfd_elf_version_expr *ret;
5158 ret = xmalloc (sizeof *ret);
5159 ret->next = orig;
5160 ret->pattern = new;
5161 ret->symver = 0;
5162 ret->script = 0;
5163 ret->symbol = realsymbol (new);
5165 if (lang == NULL || strcasecmp (lang, "C") == 0)
5166 ret->mask = BFD_ELF_VERSION_C_TYPE;
5167 else if (strcasecmp (lang, "C++") == 0)
5168 ret->mask = BFD_ELF_VERSION_CXX_TYPE;
5169 else if (strcasecmp (lang, "Java") == 0)
5170 ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
5171 else
5173 einfo (_("%X%P: unknown language `%s' in version information\n"),
5174 lang);
5175 ret->mask = BFD_ELF_VERSION_C_TYPE;
5178 return ldemul_new_vers_pattern (ret);
5181 /* This is called for each set of variable names and match
5182 expressions. */
5184 struct bfd_elf_version_tree *
5185 lang_new_vers_node (struct bfd_elf_version_expr *globals,
5186 struct bfd_elf_version_expr *locals)
5188 struct bfd_elf_version_tree *ret;
5190 ret = xcalloc (1, sizeof *ret);
5191 ret->globals.list = globals;
5192 ret->locals.list = locals;
5193 ret->match = lang_vers_match;
5194 ret->name_indx = (unsigned int) -1;
5195 return ret;
5198 /* This static variable keeps track of version indices. */
5200 static int version_index;
5202 static hashval_t
5203 version_expr_head_hash (const void *p)
5205 const struct bfd_elf_version_expr *e = p;
5207 return htab_hash_string (e->symbol);
5210 static int
5211 version_expr_head_eq (const void *p1, const void *p2)
5213 const struct bfd_elf_version_expr *e1 = p1;
5214 const struct bfd_elf_version_expr *e2 = p2;
5216 return strcmp (e1->symbol, e2->symbol) == 0;
5219 static void
5220 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
5222 size_t count = 0;
5223 struct bfd_elf_version_expr *e, *next;
5224 struct bfd_elf_version_expr **list_loc, **remaining_loc;
5226 for (e = head->list; e; e = e->next)
5228 if (e->symbol)
5229 count++;
5230 head->mask |= e->mask;
5233 if (count)
5235 head->htab = htab_create (count * 2, version_expr_head_hash,
5236 version_expr_head_eq, NULL);
5237 list_loc = &head->list;
5238 remaining_loc = &head->remaining;
5239 for (e = head->list; e; e = next)
5241 next = e->next;
5242 if (!e->symbol)
5244 *remaining_loc = e;
5245 remaining_loc = &e->next;
5247 else
5249 void **loc = htab_find_slot (head->htab, e, INSERT);
5251 if (*loc)
5253 struct bfd_elf_version_expr *e1, *last;
5255 e1 = *loc;
5256 last = NULL;
5259 if (e1->mask == e->mask)
5261 last = NULL;
5262 break;
5264 last = e1;
5265 e1 = e1->next;
5267 while (e1 && strcmp (e1->symbol, e->symbol) == 0);
5269 if (last == NULL)
5271 /* This is a duplicate. */
5272 /* FIXME: Memory leak. Sometimes pattern is not
5273 xmalloced alone, but in larger chunk of memory. */
5274 /* free (e->symbol); */
5275 free (e);
5277 else
5279 e->next = last->next;
5280 last->next = e;
5283 else
5285 *loc = e;
5286 *list_loc = e;
5287 list_loc = &e->next;
5291 *remaining_loc = NULL;
5292 *list_loc = head->remaining;
5294 else
5295 head->remaining = head->list;
5298 /* This is called when we know the name and dependencies of the
5299 version. */
5301 void
5302 lang_register_vers_node (const char *name,
5303 struct bfd_elf_version_tree *version,
5304 struct bfd_elf_version_deps *deps)
5306 struct bfd_elf_version_tree *t, **pp;
5307 struct bfd_elf_version_expr *e1;
5309 if (name == NULL)
5310 name = "";
5312 if ((name[0] == '\0' && lang_elf_version_info != NULL)
5313 || (lang_elf_version_info && lang_elf_version_info->name[0] == '\0'))
5315 einfo (_("%X%P: anonymous version tag cannot be combined with other version tags\n"));
5316 free (version);
5317 return;
5320 /* Make sure this node has a unique name. */
5321 for (t = lang_elf_version_info; t != NULL; t = t->next)
5322 if (strcmp (t->name, name) == 0)
5323 einfo (_("%X%P: duplicate version tag `%s'\n"), name);
5325 lang_finalize_version_expr_head (&version->globals);
5326 lang_finalize_version_expr_head (&version->locals);
5328 /* Check the global and local match names, and make sure there
5329 aren't any duplicates. */
5331 for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
5333 for (t = lang_elf_version_info; t != NULL; t = t->next)
5335 struct bfd_elf_version_expr *e2;
5337 if (t->locals.htab && e1->symbol)
5339 e2 = htab_find (t->locals.htab, e1);
5340 while (e2 && strcmp (e1->symbol, e2->symbol) == 0)
5342 if (e1->mask == e2->mask)
5343 einfo (_("%X%P: duplicate expression `%s' in version information\n"),
5344 e1->symbol);
5345 e2 = e2->next;
5348 else if (!e1->symbol)
5349 for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
5350 if (strcmp (e1->pattern, e2->pattern) == 0 && e1->mask == e2->mask)
5351 einfo (_("%X%P: duplicate expression `%s' in version information\n"),
5352 e1->pattern);
5356 for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
5358 for (t = lang_elf_version_info; t != NULL; t = t->next)
5360 struct bfd_elf_version_expr *e2;
5362 if (t->globals.htab && e1->symbol)
5364 e2 = htab_find (t->globals.htab, e1);
5365 while (e2 && strcmp (e1->symbol, e2->symbol) == 0)
5367 if (e1->mask == e2->mask)
5368 einfo (_("%X%P: duplicate expression `%s' in version information\n"),
5369 e1->symbol);
5370 e2 = e2->next;
5373 else if (!e1->symbol)
5374 for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
5375 if (strcmp (e1->pattern, e2->pattern) == 0 && e1->mask == e2->mask)
5376 einfo (_("%X%P: duplicate expression `%s' in version information\n"),
5377 e1->pattern);
5381 version->deps = deps;
5382 version->name = name;
5383 if (name[0] != '\0')
5385 ++version_index;
5386 version->vernum = version_index;
5388 else
5389 version->vernum = 0;
5391 for (pp = &lang_elf_version_info; *pp != NULL; pp = &(*pp)->next)
5393 *pp = version;
5396 /* This is called when we see a version dependency. */
5398 struct bfd_elf_version_deps *
5399 lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
5401 struct bfd_elf_version_deps *ret;
5402 struct bfd_elf_version_tree *t;
5404 ret = xmalloc (sizeof *ret);
5405 ret->next = list;
5407 for (t = lang_elf_version_info; t != NULL; t = t->next)
5409 if (strcmp (t->name, name) == 0)
5411 ret->version_needed = t;
5412 return ret;
5416 einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
5418 return ret;
5421 static void
5422 lang_do_version_exports_section (void)
5424 struct bfd_elf_version_expr *greg = NULL, *lreg;
5426 LANG_FOR_EACH_INPUT_STATEMENT (is)
5428 asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
5429 char *contents, *p;
5430 bfd_size_type len;
5432 if (sec == NULL)
5433 continue;
5435 len = bfd_section_size (is->the_bfd, sec);
5436 contents = xmalloc (len);
5437 if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
5438 einfo (_("%X%P: unable to read .exports section contents\n"), sec);
5440 p = contents;
5441 while (p < contents + len)
5443 greg = lang_new_vers_pattern (greg, p, NULL);
5444 p = strchr (p, '\0') + 1;
5447 /* Do not free the contents, as we used them creating the regex. */
5449 /* Do not include this section in the link. */
5450 bfd_set_section_flags (is->the_bfd, sec,
5451 bfd_get_section_flags (is->the_bfd, sec) | SEC_EXCLUDE);
5454 lreg = lang_new_vers_pattern (NULL, "*", NULL);
5455 lang_register_vers_node (command_line.version_exports_section,
5456 lang_new_vers_node (greg, lreg), NULL);
5459 void
5460 lang_add_unique (const char *name)
5462 struct unique_sections *ent;
5464 for (ent = unique_section_list; ent; ent = ent->next)
5465 if (strcmp (ent->name, name) == 0)
5466 return;
5468 ent = xmalloc (sizeof *ent);
5469 ent->name = xstrdup (name);
5470 ent->next = unique_section_list;
5471 unique_section_list = ent;