gas/
[binutils.git] / ld / ldlang.c
blob496e9f86d62ba607ad4c68889505f2b20d386104
1 /* Linker command language support.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005
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, 51 Franklin Street - Fifth Floor, Boston, MA
21 02110-1301, 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;
50 static struct obstack map_obstack;
52 #define obstack_chunk_alloc xmalloc
53 #define obstack_chunk_free free
54 static const char *startup_file;
55 static lang_statement_list_type input_file_chain;
56 static bfd_boolean placed_commons = FALSE;
57 static bfd_boolean stripped_excluded_sections = FALSE;
58 static lang_output_section_statement_type *default_common_section;
59 static bfd_boolean map_option_f;
60 static bfd_vma print_dot;
61 static lang_input_statement_type *first_file;
62 static const char *current_target;
63 static const char *output_target;
64 static lang_statement_list_type statement_list;
65 static struct lang_phdr *lang_phdr_list;
66 static struct bfd_hash_table lang_definedness_table;
68 /* Forward declarations. */
69 static void exp_init_os (etree_type *);
70 static void init_map_userdata (bfd *, asection *, void *);
71 static lang_input_statement_type *lookup_name (const char *);
72 static bfd_boolean load_symbols (lang_input_statement_type *,
73 lang_statement_list_type *);
74 static struct bfd_hash_entry *lang_definedness_newfunc
75 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
76 static void insert_undefined (const char *);
77 static void print_all_symbols (asection *);
78 static bfd_boolean sort_def_symbol (struct bfd_link_hash_entry *, void *);
79 static void print_statement (lang_statement_union_type *,
80 lang_output_section_statement_type *);
81 static void print_statement_list (lang_statement_union_type *,
82 lang_output_section_statement_type *);
83 static void print_statements (void);
84 static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
85 static void lang_record_phdrs (void);
86 static void lang_do_version_exports_section (void);
88 /* Exported variables. */
89 lang_output_section_statement_type *abs_output_section;
90 lang_statement_list_type lang_output_section_statement;
91 lang_statement_list_type *stat_ptr = &statement_list;
92 lang_statement_list_type file_chain = { NULL, NULL };
93 struct bfd_sym_chain entry_symbol = { NULL, NULL };
94 static const char *entry_symbol_default = "start";
95 const char *entry_section = ".text";
96 bfd_boolean entry_from_cmdline;
97 bfd_boolean lang_has_input_file = FALSE;
98 bfd_boolean had_output_filename = FALSE;
99 bfd_boolean lang_float_flag = FALSE;
100 bfd_boolean delete_output_file_on_failure = FALSE;
101 struct lang_nocrossrefs *nocrossref_list;
102 static struct unique_sections *unique_section_list;
103 static bfd_boolean ldlang_sysrooted_script = FALSE;
105 /* Functions that traverse the linker script and might evaluate
106 DEFINED() need to increment this. */
107 int lang_statement_iteration = 0;
109 etree_type *base; /* Relocation base - or null */
111 /* Return TRUE if the PATTERN argument is a wildcard pattern.
112 Although backslashes are treated specially if a pattern contains
113 wildcards, we do not consider the mere presence of a backslash to
114 be enough to cause the pattern to be treated as a wildcard.
115 That lets us handle DOS filenames more naturally. */
116 #define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL)
118 #define new_stat(x, y) \
119 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
121 #define outside_section_address(q) \
122 ((q)->output_offset + (q)->output_section->vma)
124 #define outside_symbol_address(q) \
125 ((q)->value + outside_section_address (q->section))
127 #define SECTION_NAME_MAP_LENGTH (16)
129 void *
130 stat_alloc (size_t size)
132 return obstack_alloc (&stat_obstack, size);
135 bfd_boolean
136 unique_section_p (const asection *sec)
138 struct unique_sections *unam;
139 const char *secnam;
141 if (link_info.relocatable
142 && sec->owner != NULL
143 && bfd_is_group_section (sec->owner, sec))
144 return TRUE;
146 secnam = sec->name;
147 for (unam = unique_section_list; unam; unam = unam->next)
148 if (wildcardp (unam->name)
149 ? fnmatch (unam->name, secnam, 0) == 0
150 : strcmp (unam->name, secnam) == 0)
152 return TRUE;
155 return FALSE;
158 /* Generic traversal routines for finding matching sections. */
160 /* Try processing a section against a wildcard. This just calls
161 the callback unless the filename exclusion list is present
162 and excludes the file. It's hardly ever present so this
163 function is very fast. */
165 static void
166 walk_wild_consider_section (lang_wild_statement_type *ptr,
167 lang_input_statement_type *file,
168 asection *s,
169 struct wildcard_list *sec,
170 callback_t callback,
171 void *data)
173 bfd_boolean skip = FALSE;
174 struct name_list *list_tmp;
176 /* Don't process sections from files which were
177 excluded. */
178 for (list_tmp = sec->spec.exclude_name_list;
179 list_tmp;
180 list_tmp = list_tmp->next)
182 bfd_boolean is_wildcard = wildcardp (list_tmp->name);
183 if (is_wildcard)
184 skip = fnmatch (list_tmp->name, file->filename, 0) == 0;
185 else
186 skip = strcmp (list_tmp->name, file->filename) == 0;
188 /* If this file is part of an archive, and the archive is
189 excluded, exclude this file. */
190 if (! skip && file->the_bfd != NULL
191 && file->the_bfd->my_archive != NULL
192 && file->the_bfd->my_archive->filename != NULL)
194 if (is_wildcard)
195 skip = fnmatch (list_tmp->name,
196 file->the_bfd->my_archive->filename,
197 0) == 0;
198 else
199 skip = strcmp (list_tmp->name,
200 file->the_bfd->my_archive->filename) == 0;
203 if (skip)
204 break;
207 if (!skip)
208 (*callback) (ptr, sec, s, file, data);
211 /* Lowest common denominator routine that can handle everything correctly,
212 but slowly. */
214 static void
215 walk_wild_section_general (lang_wild_statement_type *ptr,
216 lang_input_statement_type *file,
217 callback_t callback,
218 void *data)
220 asection *s;
221 struct wildcard_list *sec;
223 for (s = file->the_bfd->sections; s != NULL; s = s->next)
225 sec = ptr->section_list;
226 if (sec == NULL)
227 (*callback) (ptr, sec, s, file, data);
229 while (sec != NULL)
231 bfd_boolean skip = FALSE;
233 if (sec->spec.name != NULL)
235 const char *sname = bfd_get_section_name (file->the_bfd, s);
237 if (wildcardp (sec->spec.name))
238 skip = fnmatch (sec->spec.name, sname, 0) != 0;
239 else
240 skip = strcmp (sec->spec.name, sname) != 0;
243 if (!skip)
244 walk_wild_consider_section (ptr, file, s, sec, callback, data);
246 sec = sec->next;
251 /* Routines to find a single section given its name. If there's more
252 than one section with that name, we report that. */
254 typedef struct
256 asection *found_section;
257 bfd_boolean multiple_sections_found;
258 } section_iterator_callback_data;
260 static bfd_boolean
261 section_iterator_callback (bfd *bfd ATTRIBUTE_UNUSED, asection *s, void *data)
263 section_iterator_callback_data *d = data;
265 if (d->found_section != NULL)
267 d->multiple_sections_found = TRUE;
268 return TRUE;
271 d->found_section = s;
272 return FALSE;
275 static asection *
276 find_section (lang_input_statement_type *file,
277 struct wildcard_list *sec,
278 bfd_boolean *multiple_sections_found)
280 section_iterator_callback_data cb_data = { NULL, FALSE };
282 bfd_get_section_by_name_if (file->the_bfd, sec->spec.name,
283 section_iterator_callback, &cb_data);
284 *multiple_sections_found = cb_data.multiple_sections_found;
285 return cb_data.found_section;
288 /* Code for handling simple wildcards without going through fnmatch,
289 which can be expensive because of charset translations etc. */
291 /* A simple wild is a literal string followed by a single '*',
292 where the literal part is at least 4 characters long. */
294 static bfd_boolean
295 is_simple_wild (const char *name)
297 size_t len = strcspn (name, "*?[");
298 return len >= 4 && name[len] == '*' && name[len + 1] == '\0';
301 static bfd_boolean
302 match_simple_wild (const char *pattern, const char *name)
304 /* The first four characters of the pattern are guaranteed valid
305 non-wildcard characters. So we can go faster. */
306 if (pattern[0] != name[0] || pattern[1] != name[1]
307 || pattern[2] != name[2] || pattern[3] != name[3])
308 return FALSE;
310 pattern += 4;
311 name += 4;
312 while (*pattern != '*')
313 if (*name++ != *pattern++)
314 return FALSE;
316 return TRUE;
319 /* Specialized, optimized routines for handling different kinds of
320 wildcards */
322 static void
323 walk_wild_section_specs1_wild0 (lang_wild_statement_type *ptr,
324 lang_input_statement_type *file,
325 callback_t callback,
326 void *data)
328 /* We can just do a hash lookup for the section with the right name.
329 But if that lookup discovers more than one section with the name
330 (should be rare), we fall back to the general algorithm because
331 we would otherwise have to sort the sections to make sure they
332 get processed in the bfd's order. */
333 bfd_boolean multiple_sections_found;
334 struct wildcard_list *sec0 = ptr->handler_data[0];
335 asection *s0 = find_section (file, sec0, &multiple_sections_found);
337 if (multiple_sections_found)
338 walk_wild_section_general (ptr, file, callback, data);
339 else if (s0)
340 walk_wild_consider_section (ptr, file, s0, sec0, callback, data);
343 static void
344 walk_wild_section_specs1_wild1 (lang_wild_statement_type *ptr,
345 lang_input_statement_type *file,
346 callback_t callback,
347 void *data)
349 asection *s;
350 struct wildcard_list *wildsec0 = ptr->handler_data[0];
352 for (s = file->the_bfd->sections; s != NULL; s = s->next)
354 const char *sname = bfd_get_section_name (file->the_bfd, s);
355 bfd_boolean skip = !match_simple_wild (wildsec0->spec.name, sname);
357 if (!skip)
358 walk_wild_consider_section (ptr, file, s, wildsec0, callback, data);
362 static void
363 walk_wild_section_specs2_wild1 (lang_wild_statement_type *ptr,
364 lang_input_statement_type *file,
365 callback_t callback,
366 void *data)
368 asection *s;
369 struct wildcard_list *sec0 = ptr->handler_data[0];
370 struct wildcard_list *wildsec1 = ptr->handler_data[1];
371 bfd_boolean multiple_sections_found;
372 asection *s0 = find_section (file, sec0, &multiple_sections_found);
374 if (multiple_sections_found)
376 walk_wild_section_general (ptr, file, callback, data);
377 return;
380 /* Note that if the section was not found, s0 is NULL and
381 we'll simply never succeed the s == s0 test below. */
382 for (s = file->the_bfd->sections; s != NULL; s = s->next)
384 /* Recall that in this code path, a section cannot satisfy more
385 than one spec, so if s == s0 then it cannot match
386 wildspec1. */
387 if (s == s0)
388 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
389 else
391 const char *sname = bfd_get_section_name (file->the_bfd, s);
392 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
394 if (!skip)
395 walk_wild_consider_section (ptr, file, s, wildsec1, callback,
396 data);
401 static void
402 walk_wild_section_specs3_wild2 (lang_wild_statement_type *ptr,
403 lang_input_statement_type *file,
404 callback_t callback,
405 void *data)
407 asection *s;
408 struct wildcard_list *sec0 = ptr->handler_data[0];
409 struct wildcard_list *wildsec1 = ptr->handler_data[1];
410 struct wildcard_list *wildsec2 = ptr->handler_data[2];
411 bfd_boolean multiple_sections_found;
412 asection *s0 = find_section (file, sec0, &multiple_sections_found);
414 if (multiple_sections_found)
416 walk_wild_section_general (ptr, file, callback, data);
417 return;
420 for (s = file->the_bfd->sections; s != NULL; s = s->next)
422 if (s == s0)
423 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
424 else
426 const char *sname = bfd_get_section_name (file->the_bfd, s);
427 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
429 if (!skip)
430 walk_wild_consider_section (ptr, file, s, wildsec1, callback, data);
431 else
433 skip = !match_simple_wild (wildsec2->spec.name, sname);
434 if (!skip)
435 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
436 data);
442 static void
443 walk_wild_section_specs4_wild2 (lang_wild_statement_type *ptr,
444 lang_input_statement_type *file,
445 callback_t callback,
446 void *data)
448 asection *s;
449 struct wildcard_list *sec0 = ptr->handler_data[0];
450 struct wildcard_list *sec1 = ptr->handler_data[1];
451 struct wildcard_list *wildsec2 = ptr->handler_data[2];
452 struct wildcard_list *wildsec3 = ptr->handler_data[3];
453 bfd_boolean multiple_sections_found;
454 asection *s0 = find_section (file, sec0, &multiple_sections_found), *s1;
456 if (multiple_sections_found)
458 walk_wild_section_general (ptr, file, callback, data);
459 return;
462 s1 = find_section (file, sec1, &multiple_sections_found);
463 if (multiple_sections_found)
465 walk_wild_section_general (ptr, file, callback, data);
466 return;
469 for (s = file->the_bfd->sections; s != NULL; s = s->next)
471 if (s == s0)
472 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
473 else
474 if (s == s1)
475 walk_wild_consider_section (ptr, file, s, sec1, callback, data);
476 else
478 const char *sname = bfd_get_section_name (file->the_bfd, s);
479 bfd_boolean skip = !match_simple_wild (wildsec2->spec.name,
480 sname);
482 if (!skip)
483 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
484 data);
485 else
487 skip = !match_simple_wild (wildsec3->spec.name, sname);
488 if (!skip)
489 walk_wild_consider_section (ptr, file, s, wildsec3,
490 callback, data);
496 static void
497 walk_wild_section (lang_wild_statement_type *ptr,
498 lang_input_statement_type *file,
499 callback_t callback,
500 void *data)
502 if (file->just_syms_flag)
503 return;
505 (*ptr->walk_wild_section_handler) (ptr, file, callback, data);
508 /* Returns TRUE when name1 is a wildcard spec that might match
509 something name2 can match. We're conservative: we return FALSE
510 only if the prefixes of name1 and name2 are different up to the
511 first wildcard character. */
513 static bfd_boolean
514 wild_spec_can_overlap (const char *name1, const char *name2)
516 size_t prefix1_len = strcspn (name1, "?*[");
517 size_t prefix2_len = strcspn (name2, "?*[");
518 size_t min_prefix_len;
520 /* Note that if there is no wildcard character, then we treat the
521 terminating 0 as part of the prefix. Thus ".text" won't match
522 ".text." or ".text.*", for example. */
523 if (name1[prefix1_len] == '\0')
524 prefix1_len++;
525 if (name2[prefix2_len] == '\0')
526 prefix2_len++;
528 min_prefix_len = prefix1_len < prefix2_len ? prefix1_len : prefix2_len;
530 return memcmp (name1, name2, min_prefix_len) == 0;
533 /* Select specialized code to handle various kinds of wildcard
534 statements. */
536 static void
537 analyze_walk_wild_section_handler (lang_wild_statement_type *ptr)
539 int sec_count = 0;
540 int wild_name_count = 0;
541 struct wildcard_list *sec;
542 int signature;
543 int data_counter;
545 ptr->walk_wild_section_handler = walk_wild_section_general;
547 /* Count how many wildcard_specs there are, and how many of those
548 actually use wildcards in the name. Also, bail out if any of the
549 wildcard names are NULL. (Can this actually happen?
550 walk_wild_section used to test for it.) And bail out if any
551 of the wildcards are more complex than a simple string
552 ending in a single '*'. */
553 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
555 ++sec_count;
556 if (sec->spec.name == NULL)
557 return;
558 if (wildcardp (sec->spec.name))
560 ++wild_name_count;
561 if (!is_simple_wild (sec->spec.name))
562 return;
566 /* The zero-spec case would be easy to optimize but it doesn't
567 happen in practice. Likewise, more than 4 specs doesn't
568 happen in practice. */
569 if (sec_count == 0 || sec_count > 4)
570 return;
572 /* Check that no two specs can match the same section. */
573 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
575 struct wildcard_list *sec2;
576 for (sec2 = sec->next; sec2 != NULL; sec2 = sec2->next)
578 if (wild_spec_can_overlap (sec->spec.name, sec2->spec.name))
579 return;
583 signature = (sec_count << 8) + wild_name_count;
584 switch (signature)
586 case 0x0100:
587 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild0;
588 break;
589 case 0x0101:
590 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild1;
591 break;
592 case 0x0201:
593 ptr->walk_wild_section_handler = walk_wild_section_specs2_wild1;
594 break;
595 case 0x0302:
596 ptr->walk_wild_section_handler = walk_wild_section_specs3_wild2;
597 break;
598 case 0x0402:
599 ptr->walk_wild_section_handler = walk_wild_section_specs4_wild2;
600 break;
601 default:
602 return;
605 /* Now fill the data array with pointers to the specs, first the
606 specs with non-wildcard names, then the specs with wildcard
607 names. It's OK to process the specs in different order from the
608 given order, because we've already determined that no section
609 will match more than one spec. */
610 data_counter = 0;
611 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
612 if (!wildcardp (sec->spec.name))
613 ptr->handler_data[data_counter++] = sec;
614 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
615 if (wildcardp (sec->spec.name))
616 ptr->handler_data[data_counter++] = sec;
619 /* Handle a wild statement for a single file F. */
621 static void
622 walk_wild_file (lang_wild_statement_type *s,
623 lang_input_statement_type *f,
624 callback_t callback,
625 void *data)
627 if (f->the_bfd == NULL
628 || ! bfd_check_format (f->the_bfd, bfd_archive))
629 walk_wild_section (s, f, callback, data);
630 else
632 bfd *member;
634 /* This is an archive file. We must map each member of the
635 archive separately. */
636 member = bfd_openr_next_archived_file (f->the_bfd, NULL);
637 while (member != NULL)
639 /* When lookup_name is called, it will call the add_symbols
640 entry point for the archive. For each element of the
641 archive which is included, BFD will call ldlang_add_file,
642 which will set the usrdata field of the member to the
643 lang_input_statement. */
644 if (member->usrdata != NULL)
646 walk_wild_section (s, member->usrdata, callback, data);
649 member = bfd_openr_next_archived_file (f->the_bfd, member);
654 static void
655 walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
657 const char *file_spec = s->filename;
659 if (file_spec == NULL)
661 /* Perform the iteration over all files in the list. */
662 LANG_FOR_EACH_INPUT_STATEMENT (f)
664 walk_wild_file (s, f, callback, data);
667 else if (wildcardp (file_spec))
669 LANG_FOR_EACH_INPUT_STATEMENT (f)
671 if (fnmatch (file_spec, f->filename, FNM_FILE_NAME) == 0)
672 walk_wild_file (s, f, callback, data);
675 else
677 lang_input_statement_type *f;
679 /* Perform the iteration over a single file. */
680 f = lookup_name (file_spec);
681 if (f)
682 walk_wild_file (s, f, callback, data);
686 /* lang_for_each_statement walks the parse tree and calls the provided
687 function for each node. */
689 static void
690 lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
691 lang_statement_union_type *s)
693 for (; s != NULL; s = s->header.next)
695 func (s);
697 switch (s->header.type)
699 case lang_constructors_statement_enum:
700 lang_for_each_statement_worker (func, constructor_list.head);
701 break;
702 case lang_output_section_statement_enum:
703 lang_for_each_statement_worker
704 (func, s->output_section_statement.children.head);
705 break;
706 case lang_wild_statement_enum:
707 lang_for_each_statement_worker (func,
708 s->wild_statement.children.head);
709 break;
710 case lang_group_statement_enum:
711 lang_for_each_statement_worker (func,
712 s->group_statement.children.head);
713 break;
714 case lang_data_statement_enum:
715 case lang_reloc_statement_enum:
716 case lang_object_symbols_statement_enum:
717 case lang_output_statement_enum:
718 case lang_target_statement_enum:
719 case lang_input_section_enum:
720 case lang_input_statement_enum:
721 case lang_assignment_statement_enum:
722 case lang_padding_statement_enum:
723 case lang_address_statement_enum:
724 case lang_fill_statement_enum:
725 break;
726 default:
727 FAIL ();
728 break;
733 void
734 lang_for_each_statement (void (*func) (lang_statement_union_type *))
736 lang_for_each_statement_worker (func, statement_list.head);
739 /*----------------------------------------------------------------------*/
741 void
742 lang_list_init (lang_statement_list_type *list)
744 list->head = NULL;
745 list->tail = &list->head;
748 /* Build a new statement node for the parse tree. */
750 static lang_statement_union_type *
751 new_statement (enum statement_enum type,
752 size_t size,
753 lang_statement_list_type *list)
755 lang_statement_union_type *new;
757 new = stat_alloc (size);
758 new->header.type = type;
759 new->header.next = NULL;
760 lang_statement_append (list, new, &new->header.next);
761 return new;
764 /* Build a new input file node for the language. There are several
765 ways in which we treat an input file, eg, we only look at symbols,
766 or prefix it with a -l etc.
768 We can be supplied with requests for input files more than once;
769 they may, for example be split over several lines like foo.o(.text)
770 foo.o(.data) etc, so when asked for a file we check that we haven't
771 got it already so we don't duplicate the bfd. */
773 static lang_input_statement_type *
774 new_afile (const char *name,
775 lang_input_file_enum_type file_type,
776 const char *target,
777 bfd_boolean add_to_list)
779 lang_input_statement_type *p;
781 if (add_to_list)
782 p = new_stat (lang_input_statement, stat_ptr);
783 else
785 p = stat_alloc (sizeof (lang_input_statement_type));
786 p->header.next = NULL;
789 lang_has_input_file = TRUE;
790 p->target = target;
791 p->sysrooted = FALSE;
792 switch (file_type)
794 case lang_input_file_is_symbols_only_enum:
795 p->filename = name;
796 p->is_archive = FALSE;
797 p->real = TRUE;
798 p->local_sym_name = name;
799 p->just_syms_flag = TRUE;
800 p->search_dirs_flag = FALSE;
801 break;
802 case lang_input_file_is_fake_enum:
803 p->filename = name;
804 p->is_archive = FALSE;
805 p->real = FALSE;
806 p->local_sym_name = name;
807 p->just_syms_flag = FALSE;
808 p->search_dirs_flag = FALSE;
809 break;
810 case lang_input_file_is_l_enum:
811 p->is_archive = TRUE;
812 p->filename = name;
813 p->real = TRUE;
814 p->local_sym_name = concat ("-l", name, NULL);
815 p->just_syms_flag = FALSE;
816 p->search_dirs_flag = TRUE;
817 break;
818 case lang_input_file_is_marker_enum:
819 p->filename = name;
820 p->is_archive = FALSE;
821 p->real = FALSE;
822 p->local_sym_name = name;
823 p->just_syms_flag = FALSE;
824 p->search_dirs_flag = TRUE;
825 break;
826 case lang_input_file_is_search_file_enum:
827 p->sysrooted = ldlang_sysrooted_script;
828 p->filename = name;
829 p->is_archive = FALSE;
830 p->real = TRUE;
831 p->local_sym_name = name;
832 p->just_syms_flag = FALSE;
833 p->search_dirs_flag = TRUE;
834 break;
835 case lang_input_file_is_file_enum:
836 p->filename = name;
837 p->is_archive = FALSE;
838 p->real = TRUE;
839 p->local_sym_name = name;
840 p->just_syms_flag = FALSE;
841 p->search_dirs_flag = FALSE;
842 break;
843 default:
844 FAIL ();
846 p->the_bfd = NULL;
847 p->asymbols = NULL;
848 p->next_real_file = NULL;
849 p->next = NULL;
850 p->symbol_count = 0;
851 p->dynamic = config.dynamic_link;
852 p->add_needed = add_needed;
853 p->as_needed = as_needed;
854 p->whole_archive = whole_archive;
855 p->loaded = FALSE;
856 lang_statement_append (&input_file_chain,
857 (lang_statement_union_type *) p,
858 &p->next_real_file);
859 return p;
862 lang_input_statement_type *
863 lang_add_input_file (const char *name,
864 lang_input_file_enum_type file_type,
865 const char *target)
867 lang_has_input_file = TRUE;
868 return new_afile (name, file_type, target, TRUE);
871 struct output_statement_hash_entry
873 struct bfd_hash_entry root;
874 lang_output_section_statement_type os;
877 /* The hash table. */
879 static struct bfd_hash_table output_statement_table;
881 /* Support routines for the hash table used by lang_output_section_find,
882 initialize the table, fill in an entry and remove the table. */
884 static struct bfd_hash_entry *
885 output_statement_newfunc (struct bfd_hash_entry *entry,
886 struct bfd_hash_table *table,
887 const char *string)
889 lang_output_section_statement_type **nextp;
890 struct output_statement_hash_entry *ret;
892 if (entry == NULL)
894 entry = bfd_hash_allocate (table, sizeof (*ret));
895 if (entry == NULL)
896 return entry;
899 entry = bfd_hash_newfunc (entry, table, string);
900 if (entry == NULL)
901 return entry;
903 ret = (struct output_statement_hash_entry *) entry;
904 memset (&ret->os, 0, sizeof (ret->os));
905 ret->os.header.type = lang_output_section_statement_enum;
906 ret->os.subsection_alignment = -1;
907 ret->os.section_alignment = -1;
908 ret->os.block_value = 1;
909 lang_list_init (&ret->os.children);
910 lang_statement_append (stat_ptr,
911 (lang_statement_union_type *) &ret->os,
912 &ret->os.header.next);
914 /* GCC's strict aliasing rules prevent us from just casting the
915 address, so we store the pointer in a variable and cast that
916 instead. */
917 nextp = &ret->os.next;
918 lang_statement_append (&lang_output_section_statement,
919 (lang_statement_union_type *) &ret->os,
920 (lang_statement_union_type **) nextp);
921 return &ret->root;
924 static void
925 output_statement_table_init (void)
927 if (! bfd_hash_table_init_n (&output_statement_table,
928 output_statement_newfunc, 61))
929 einfo (_("%P%F: can not create hash table: %E\n"));
932 static void
933 output_statement_table_free (void)
935 bfd_hash_table_free (&output_statement_table);
938 /* Build enough state so that the parser can build its tree. */
940 void
941 lang_init (void)
943 obstack_begin (&stat_obstack, 1000);
945 stat_ptr = &statement_list;
947 output_statement_table_init ();
949 lang_list_init (stat_ptr);
951 lang_list_init (&input_file_chain);
952 lang_list_init (&lang_output_section_statement);
953 lang_list_init (&file_chain);
954 first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
955 NULL);
956 abs_output_section =
957 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME);
959 abs_output_section->bfd_section = bfd_abs_section_ptr;
961 /* The value "3" is ad-hoc, somewhat related to the expected number of
962 DEFINED expressions in a linker script. For most default linker
963 scripts, there are none. Why a hash table then? Well, it's somewhat
964 simpler to re-use working machinery than using a linked list in terms
965 of code-complexity here in ld, besides the initialization which just
966 looks like other code here. */
967 if (!bfd_hash_table_init_n (&lang_definedness_table,
968 lang_definedness_newfunc, 3))
969 einfo (_("%P%F: can not create hash table: %E\n"));
972 void
973 lang_finish (void)
975 output_statement_table_free ();
978 /*----------------------------------------------------------------------
979 A region is an area of memory declared with the
980 MEMORY { name:org=exp, len=exp ... }
981 syntax.
983 We maintain a list of all the regions here.
985 If no regions are specified in the script, then the default is used
986 which is created when looked up to be the entire data space.
988 If create is true we are creating a region inside a MEMORY block.
989 In this case it is probably an error to create a region that has
990 already been created. If we are not inside a MEMORY block it is
991 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
992 and so we issue a warning. */
994 static lang_memory_region_type *lang_memory_region_list;
995 static lang_memory_region_type **lang_memory_region_list_tail
996 = &lang_memory_region_list;
998 lang_memory_region_type *
999 lang_memory_region_lookup (const char *const name, bfd_boolean create)
1001 lang_memory_region_type *p;
1002 lang_memory_region_type *new;
1004 /* NAME is NULL for LMA memspecs if no region was specified. */
1005 if (name == NULL)
1006 return NULL;
1008 for (p = lang_memory_region_list; p != NULL; p = p->next)
1009 if (strcmp (p->name, name) == 0)
1011 if (create)
1012 einfo (_("%P:%S: warning: redeclaration of memory region '%s'\n"),
1013 name);
1014 return p;
1017 if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
1018 einfo (_("%P:%S: warning: memory region %s not declared\n"), name);
1020 new = stat_alloc (sizeof (lang_memory_region_type));
1022 new->name = xstrdup (name);
1023 new->next = NULL;
1025 *lang_memory_region_list_tail = new;
1026 lang_memory_region_list_tail = &new->next;
1027 new->origin = 0;
1028 new->flags = 0;
1029 new->not_flags = 0;
1030 new->length = ~(bfd_size_type) 0;
1031 new->current = 0;
1032 new->had_full_message = FALSE;
1034 return new;
1037 static lang_memory_region_type *
1038 lang_memory_default (asection *section)
1040 lang_memory_region_type *p;
1042 flagword sec_flags = section->flags;
1044 /* Override SEC_DATA to mean a writable section. */
1045 if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
1046 sec_flags |= SEC_DATA;
1048 for (p = lang_memory_region_list; p != NULL; p = p->next)
1050 if ((p->flags & sec_flags) != 0
1051 && (p->not_flags & sec_flags) == 0)
1053 return p;
1056 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
1059 lang_output_section_statement_type *
1060 lang_output_section_find (const char *const name)
1062 struct output_statement_hash_entry *entry;
1063 unsigned long hash;
1065 entry = ((struct output_statement_hash_entry *)
1066 bfd_hash_lookup (&output_statement_table, name, FALSE, FALSE));
1067 if (entry == NULL)
1068 return NULL;
1070 hash = entry->root.hash;
1073 if (entry->os.constraint != -1)
1074 return &entry->os;
1075 entry = (struct output_statement_hash_entry *) entry->root.next;
1077 while (entry != NULL
1078 && entry->root.hash == hash
1079 && strcmp (name, entry->os.name) == 0);
1081 return NULL;
1084 static lang_output_section_statement_type *
1085 lang_output_section_statement_lookup_1 (const char *const name, int constraint)
1087 struct output_statement_hash_entry *entry;
1088 struct output_statement_hash_entry *last_ent;
1089 unsigned long hash;
1091 entry = ((struct output_statement_hash_entry *)
1092 bfd_hash_lookup (&output_statement_table, name, TRUE, FALSE));
1093 if (entry == NULL)
1095 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1096 return NULL;
1099 if (entry->os.name != NULL)
1101 /* We have a section of this name, but it might not have the correct
1102 constraint. */
1103 hash = entry->root.hash;
1106 if (entry->os.constraint != -1
1107 && (constraint == 0
1108 || (constraint == entry->os.constraint
1109 && constraint != SPECIAL)))
1110 return &entry->os;
1111 last_ent = entry;
1112 entry = (struct output_statement_hash_entry *) entry->root.next;
1114 while (entry != NULL
1115 && entry->root.hash == hash
1116 && strcmp (name, entry->os.name) == 0);
1118 entry = ((struct output_statement_hash_entry *)
1119 output_statement_newfunc (NULL, &output_statement_table, name));
1120 if (entry == NULL)
1122 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1123 return NULL;
1125 entry->root = last_ent->root;
1126 last_ent->root.next = &entry->root;
1129 entry->os.name = name;
1130 entry->os.constraint = constraint;
1131 return &entry->os;
1134 lang_output_section_statement_type *
1135 lang_output_section_statement_lookup (const char *const name)
1137 return lang_output_section_statement_lookup_1 (name, 0);
1140 /* A variant of lang_output_section_find used by place_orphan.
1141 Returns the output statement that should precede a new output
1142 statement for SEC. If an exact match is found on certain flags,
1143 sets *EXACT too. */
1145 lang_output_section_statement_type *
1146 lang_output_section_find_by_flags (const asection *sec,
1147 lang_output_section_statement_type **exact)
1149 lang_output_section_statement_type *first, *look, *found;
1150 flagword flags;
1152 /* We know the first statement on this list is *ABS*. May as well
1153 skip it. */
1154 first = &lang_output_section_statement.head->output_section_statement;
1155 first = first->next;
1157 /* First try for an exact match. */
1158 found = NULL;
1159 for (look = first; look; look = look->next)
1161 flags = look->flags;
1162 if (look->bfd_section != NULL)
1164 flags = look->bfd_section->flags;
1165 if (!bfd_match_sections_by_type (output_bfd,
1166 look->bfd_section,
1167 sec->owner, sec))
1168 continue;
1170 flags ^= sec->flags;
1171 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY
1172 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1173 found = look;
1175 if (found != NULL)
1177 *exact = found;
1178 return found;
1181 if (sec->flags & SEC_CODE)
1183 /* Try for a rw code section. */
1184 for (look = first; look; look = look->next)
1186 flags = look->flags;
1187 if (look->bfd_section != NULL)
1189 flags = look->bfd_section->flags;
1190 if (!bfd_match_sections_by_type (output_bfd,
1191 look->bfd_section,
1192 sec->owner, sec))
1193 continue;
1195 flags ^= sec->flags;
1196 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1197 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1198 found = look;
1200 return found;
1203 if (sec->flags & (SEC_READONLY | SEC_THREAD_LOCAL))
1205 /* .rodata can go after .text, .sdata2 after .rodata. */
1206 for (look = first; look; look = look->next)
1208 flags = look->flags;
1209 if (look->bfd_section != NULL)
1211 flags = look->bfd_section->flags;
1212 if (!bfd_match_sections_by_type (output_bfd,
1213 look->bfd_section,
1214 sec->owner, sec))
1215 continue;
1217 flags ^= sec->flags;
1218 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1219 | SEC_READONLY))
1220 && !(look->flags & (SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1221 found = look;
1223 return found;
1226 if (sec->flags & SEC_SMALL_DATA)
1228 /* .sdata goes after .data, .sbss after .sdata. */
1229 for (look = first; look; look = look->next)
1231 flags = look->flags;
1232 if (look->bfd_section != NULL)
1234 flags = look->bfd_section->flags;
1235 if (!bfd_match_sections_by_type (output_bfd,
1236 look->bfd_section,
1237 sec->owner, sec))
1238 continue;
1240 flags ^= sec->flags;
1241 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1242 | SEC_THREAD_LOCAL))
1243 || ((look->flags & SEC_SMALL_DATA)
1244 && !(sec->flags & SEC_HAS_CONTENTS)))
1245 found = look;
1247 return found;
1250 if (sec->flags & SEC_HAS_CONTENTS)
1252 /* .data goes after .rodata. */
1253 for (look = first; look; look = look->next)
1255 flags = look->flags;
1256 if (look->bfd_section != NULL)
1258 flags = look->bfd_section->flags;
1259 if (!bfd_match_sections_by_type (output_bfd,
1260 look->bfd_section,
1261 sec->owner, sec))
1262 continue;
1264 flags ^= sec->flags;
1265 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1266 | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1267 found = look;
1269 return found;
1272 /* .bss goes last. */
1273 for (look = first; look; look = look->next)
1275 flags = look->flags;
1276 if (look->bfd_section != NULL)
1278 flags = look->bfd_section->flags;
1279 if (!bfd_match_sections_by_type (output_bfd,
1280 look->bfd_section,
1281 sec->owner, sec))
1282 continue;
1284 flags ^= sec->flags;
1285 if (!(flags & SEC_ALLOC))
1286 found = look;
1289 return found;
1292 /* Find the last output section before given output statement.
1293 Used by place_orphan. */
1295 static asection *
1296 output_prev_sec_find (lang_output_section_statement_type *os)
1298 asection *s = (asection *) NULL;
1299 lang_output_section_statement_type *lookup;
1301 for (lookup = &lang_output_section_statement.head->output_section_statement;
1302 lookup != NULL;
1303 lookup = lookup->next)
1305 if (lookup->constraint == -1)
1306 continue;
1307 if (lookup == os)
1308 return s;
1310 if (lookup->bfd_section != NULL && lookup->bfd_section->owner != NULL)
1311 s = lookup->bfd_section;
1314 return NULL;
1317 lang_output_section_statement_type *
1318 lang_insert_orphan (lang_input_statement_type *file,
1319 asection *s,
1320 const char *secname,
1321 lang_output_section_statement_type *after,
1322 struct orphan_save *place,
1323 etree_type *address,
1324 lang_statement_list_type *add_child)
1326 lang_statement_list_type *old;
1327 lang_statement_list_type add;
1328 const char *ps;
1329 etree_type *load_base;
1330 lang_output_section_statement_type *os;
1331 lang_output_section_statement_type **os_tail;
1333 /* Start building a list of statements for this section.
1334 First save the current statement pointer. */
1335 old = stat_ptr;
1337 /* If we have found an appropriate place for the output section
1338 statements for this orphan, add them to our own private list,
1339 inserting them later into the global statement list. */
1340 if (after != NULL)
1342 stat_ptr = &add;
1343 lang_list_init (stat_ptr);
1346 ps = NULL;
1347 if (config.build_constructors)
1349 /* If the name of the section is representable in C, then create
1350 symbols to mark the start and the end of the section. */
1351 for (ps = secname; *ps != '\0'; ps++)
1352 if (! ISALNUM ((unsigned char) *ps) && *ps != '_')
1353 break;
1354 if (*ps == '\0')
1356 char *symname;
1357 etree_type *e_align;
1359 symname = (char *) xmalloc (ps - secname + sizeof "__start_" + 1);
1360 symname[0] = bfd_get_symbol_leading_char (output_bfd);
1361 sprintf (symname + (symname[0] != 0), "__start_%s", secname);
1362 e_align = exp_unop (ALIGN_K,
1363 exp_intop ((bfd_vma) 1 << s->alignment_power));
1364 lang_add_assignment (exp_assop ('=', ".", e_align));
1365 lang_add_assignment (exp_assop ('=', symname,
1366 exp_nameop (NAME, ".")));
1370 if (link_info.relocatable || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)
1371 address = exp_intop (0);
1373 load_base = NULL;
1374 if (after != NULL && after->load_base != NULL)
1376 etree_type *lma_from_vma;
1377 lma_from_vma = exp_binop ('-', after->load_base,
1378 exp_nameop (ADDR, after->name));
1379 load_base = exp_binop ('+', lma_from_vma,
1380 exp_nameop (ADDR, secname));
1383 os_tail = ((lang_output_section_statement_type **)
1384 lang_output_section_statement.tail);
1385 os = lang_enter_output_section_statement (secname, address, 0, NULL, NULL,
1386 load_base, 0);
1388 if (add_child == NULL)
1389 add_child = &os->children;
1390 lang_add_section (add_child, s, os, file);
1392 lang_leave_output_section_statement (0, "*default*", NULL, NULL);
1394 if (config.build_constructors && *ps == '\0')
1396 char *symname;
1398 /* lang_leave_ouput_section_statement resets stat_ptr.
1399 Put stat_ptr back where we want it. */
1400 if (after != NULL)
1401 stat_ptr = &add;
1403 symname = (char *) xmalloc (ps - secname + sizeof "__stop_" + 1);
1404 symname[0] = bfd_get_symbol_leading_char (output_bfd);
1405 sprintf (symname + (symname[0] != 0), "__stop_%s", secname);
1406 lang_add_assignment (exp_assop ('=', symname,
1407 exp_nameop (NAME, ".")));
1410 /* Restore the global list pointer. */
1411 if (after != NULL)
1412 stat_ptr = old;
1414 if (after != NULL && os->bfd_section != NULL)
1416 asection *snew, *as;
1418 snew = os->bfd_section;
1420 /* Shuffle the bfd section list to make the output file look
1421 neater. This is really only cosmetic. */
1422 if (place->section == NULL
1423 && after != (&lang_output_section_statement.head
1424 ->output_section_statement))
1426 asection *bfd_section = after->bfd_section;
1428 /* If the output statement hasn't been used to place any input
1429 sections (and thus doesn't have an output bfd_section),
1430 look for the closest prior output statement having an
1431 output section. */
1432 if (bfd_section == NULL)
1433 bfd_section = output_prev_sec_find (after);
1435 if (bfd_section != NULL && bfd_section != snew)
1436 place->section = &bfd_section->next;
1439 if (place->section == NULL)
1440 place->section = &output_bfd->sections;
1442 as = *place->section;
1443 if (as != snew && as->prev != snew)
1445 /* Unlink the section. */
1446 bfd_section_list_remove (output_bfd, snew);
1448 /* Now tack it back on in the right place. */
1449 bfd_section_list_insert_before (output_bfd, as, snew);
1452 /* Save the end of this list. Further ophans of this type will
1453 follow the one we've just added. */
1454 place->section = &snew->next;
1456 /* The following is non-cosmetic. We try to put the output
1457 statements in some sort of reasonable order here, because they
1458 determine the final load addresses of the orphan sections.
1459 In addition, placing output statements in the wrong order may
1460 require extra segments. For instance, given a typical
1461 situation of all read-only sections placed in one segment and
1462 following that a segment containing all the read-write
1463 sections, we wouldn't want to place an orphan read/write
1464 section before or amongst the read-only ones. */
1465 if (add.head != NULL)
1467 lang_output_section_statement_type *newly_added_os;
1469 if (place->stmt == NULL)
1471 lang_statement_union_type **where;
1472 lang_statement_union_type **assign = NULL;
1474 /* Look for a suitable place for the new statement list.
1475 The idea is to skip over anything that might be inside
1476 a SECTIONS {} statement in a script, before we find
1477 another output_section_statement. Assignments to "dot"
1478 before an output section statement are assumed to
1479 belong to it. */
1480 for (where = &after->header.next;
1481 *where != NULL;
1482 where = &(*where)->header.next)
1484 switch ((*where)->header.type)
1486 case lang_assignment_statement_enum:
1487 if (assign == NULL)
1489 lang_assignment_statement_type *ass;
1490 ass = &(*where)->assignment_statement;
1491 if (ass->exp->type.node_class != etree_assert
1492 && ass->exp->assign.dst[0] == '.'
1493 && ass->exp->assign.dst[1] == 0)
1494 assign = where;
1496 continue;
1497 case lang_wild_statement_enum:
1498 case lang_input_section_enum:
1499 case lang_object_symbols_statement_enum:
1500 case lang_fill_statement_enum:
1501 case lang_data_statement_enum:
1502 case lang_reloc_statement_enum:
1503 case lang_padding_statement_enum:
1504 case lang_constructors_statement_enum:
1505 assign = NULL;
1506 continue;
1507 case lang_output_section_statement_enum:
1508 if (assign != NULL)
1509 where = assign;
1510 case lang_input_statement_enum:
1511 case lang_address_statement_enum:
1512 case lang_target_statement_enum:
1513 case lang_output_statement_enum:
1514 case lang_group_statement_enum:
1515 case lang_afile_asection_pair_statement_enum:
1516 break;
1518 break;
1521 *add.tail = *where;
1522 *where = add.head;
1524 place->os_tail = &after->next;
1526 else
1528 /* Put it after the last orphan statement we added. */
1529 *add.tail = *place->stmt;
1530 *place->stmt = add.head;
1533 /* Fix the global list pointer if we happened to tack our
1534 new list at the tail. */
1535 if (*old->tail == add.head)
1536 old->tail = add.tail;
1538 /* Save the end of this list. */
1539 place->stmt = add.tail;
1541 /* Do the same for the list of output section statements. */
1542 newly_added_os = *os_tail;
1543 *os_tail = NULL;
1544 newly_added_os->next = *place->os_tail;
1545 *place->os_tail = newly_added_os;
1546 place->os_tail = &newly_added_os->next;
1548 /* Fixing the global list pointer here is a little different.
1549 We added to the list in lang_enter_output_section_statement,
1550 trimmed off the new output_section_statment above when
1551 assigning *os_tail = NULL, but possibly added it back in
1552 the same place when assigning *place->os_tail. */
1553 if (*os_tail == NULL)
1554 lang_output_section_statement.tail
1555 = (lang_statement_union_type **) os_tail;
1558 return os;
1561 static void
1562 lang_map_flags (flagword flag)
1564 if (flag & SEC_ALLOC)
1565 minfo ("a");
1567 if (flag & SEC_CODE)
1568 minfo ("x");
1570 if (flag & SEC_READONLY)
1571 minfo ("r");
1573 if (flag & SEC_DATA)
1574 minfo ("w");
1576 if (flag & SEC_LOAD)
1577 minfo ("l");
1580 void
1581 lang_map (void)
1583 lang_memory_region_type *m;
1584 bfd *p;
1586 minfo (_("\nMemory Configuration\n\n"));
1587 fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
1588 _("Name"), _("Origin"), _("Length"), _("Attributes"));
1590 for (m = lang_memory_region_list; m != NULL; m = m->next)
1592 char buf[100];
1593 int len;
1595 fprintf (config.map_file, "%-16s ", m->name);
1597 sprintf_vma (buf, m->origin);
1598 minfo ("0x%s ", buf);
1599 len = strlen (buf);
1600 while (len < 16)
1602 print_space ();
1603 ++len;
1606 minfo ("0x%V", m->length);
1607 if (m->flags || m->not_flags)
1609 #ifndef BFD64
1610 minfo (" ");
1611 #endif
1612 if (m->flags)
1614 print_space ();
1615 lang_map_flags (m->flags);
1618 if (m->not_flags)
1620 minfo (" !");
1621 lang_map_flags (m->not_flags);
1625 print_nl ();
1628 fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
1630 if (! command_line.reduce_memory_overheads)
1632 obstack_begin (&map_obstack, 1000);
1633 for (p = link_info.input_bfds; p != (bfd *) NULL; p = p->link_next)
1634 bfd_map_over_sections (p, init_map_userdata, 0);
1635 bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0);
1637 print_statements ();
1640 static void
1641 init_map_userdata (abfd, sec, data)
1642 bfd *abfd ATTRIBUTE_UNUSED;
1643 asection *sec;
1644 void *data ATTRIBUTE_UNUSED;
1646 fat_section_userdata_type *new_data
1647 = ((fat_section_userdata_type *) (stat_alloc
1648 (sizeof (fat_section_userdata_type))));
1650 ASSERT (get_userdata (sec) == NULL);
1651 get_userdata (sec) = new_data;
1652 new_data->map_symbol_def_tail = &new_data->map_symbol_def_head;
1655 static bfd_boolean
1656 sort_def_symbol (hash_entry, info)
1657 struct bfd_link_hash_entry *hash_entry;
1658 void *info ATTRIBUTE_UNUSED;
1660 if (hash_entry->type == bfd_link_hash_defined
1661 || hash_entry->type == bfd_link_hash_defweak)
1663 struct fat_user_section_struct *ud;
1664 struct map_symbol_def *def;
1666 ud = get_userdata (hash_entry->u.def.section);
1667 if (! ud)
1669 /* ??? What do we have to do to initialize this beforehand? */
1670 /* The first time we get here is bfd_abs_section... */
1671 init_map_userdata (0, hash_entry->u.def.section, 0);
1672 ud = get_userdata (hash_entry->u.def.section);
1674 else if (!ud->map_symbol_def_tail)
1675 ud->map_symbol_def_tail = &ud->map_symbol_def_head;
1677 def = obstack_alloc (&map_obstack, sizeof *def);
1678 def->entry = hash_entry;
1679 *(ud->map_symbol_def_tail) = def;
1680 ud->map_symbol_def_tail = &def->next;
1682 return TRUE;
1685 /* Initialize an output section. */
1687 static void
1688 init_os (lang_output_section_statement_type *s, asection *isec)
1690 if (s->bfd_section != NULL)
1691 return;
1693 if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
1694 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
1696 s->bfd_section = bfd_get_section_by_name (output_bfd, s->name);
1697 if (s->bfd_section == NULL)
1698 s->bfd_section = bfd_make_section (output_bfd, s->name);
1699 if (s->bfd_section == NULL)
1701 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
1702 output_bfd->xvec->name, s->name);
1704 s->bfd_section->output_section = s->bfd_section;
1705 s->bfd_section->output_offset = 0;
1706 if (!command_line.reduce_memory_overheads)
1708 fat_section_userdata_type *new
1709 = stat_alloc (sizeof (fat_section_userdata_type));
1710 memset (new, 0, sizeof (fat_section_userdata_type));
1711 get_userdata (s->bfd_section) = new;
1715 /* If there is a base address, make sure that any sections it might
1716 mention are initialized. */
1717 if (s->addr_tree != NULL)
1718 exp_init_os (s->addr_tree);
1720 if (s->load_base != NULL)
1721 exp_init_os (s->load_base);
1723 if (isec)
1724 bfd_init_private_section_data (isec->owner, isec,
1725 output_bfd, s->bfd_section,
1726 &link_info);
1729 /* Make sure that all output sections mentioned in an expression are
1730 initialized. */
1732 static void
1733 exp_init_os (etree_type *exp)
1735 switch (exp->type.node_class)
1737 case etree_assign:
1738 case etree_provide:
1739 exp_init_os (exp->assign.src);
1740 break;
1742 case etree_binary:
1743 exp_init_os (exp->binary.lhs);
1744 exp_init_os (exp->binary.rhs);
1745 break;
1747 case etree_trinary:
1748 exp_init_os (exp->trinary.cond);
1749 exp_init_os (exp->trinary.lhs);
1750 exp_init_os (exp->trinary.rhs);
1751 break;
1753 case etree_assert:
1754 exp_init_os (exp->assert_s.child);
1755 break;
1757 case etree_unary:
1758 exp_init_os (exp->unary.child);
1759 break;
1761 case etree_name:
1762 switch (exp->type.node_code)
1764 case ADDR:
1765 case LOADADDR:
1766 case SIZEOF:
1768 lang_output_section_statement_type *os;
1770 os = lang_output_section_find (exp->name.name);
1771 if (os != NULL && os->bfd_section == NULL)
1772 init_os (os, NULL);
1775 break;
1777 default:
1778 break;
1782 static void
1783 section_already_linked (bfd *abfd, asection *sec, void *data)
1785 lang_input_statement_type *entry = data;
1787 /* If we are only reading symbols from this object, then we want to
1788 discard all sections. */
1789 if (entry->just_syms_flag)
1791 bfd_link_just_syms (abfd, sec, &link_info);
1792 return;
1795 if (!(abfd->flags & DYNAMIC))
1796 bfd_section_already_linked (abfd, sec);
1799 /* The wild routines.
1801 These expand statements like *(.text) and foo.o to a list of
1802 explicit actions, like foo.o(.text), bar.o(.text) and
1803 foo.o(.text, .data). */
1805 /* Add SECTION to the output section OUTPUT. Do this by creating a
1806 lang_input_section statement which is placed at PTR. FILE is the
1807 input file which holds SECTION. */
1809 void
1810 lang_add_section (lang_statement_list_type *ptr,
1811 asection *section,
1812 lang_output_section_statement_type *output,
1813 lang_input_statement_type *file)
1815 flagword flags = section->flags;
1816 bfd_boolean discard;
1818 /* Discard sections marked with SEC_EXCLUDE. */
1819 discard = (flags & SEC_EXCLUDE) != 0;
1821 /* Discard input sections which are assigned to a section named
1822 DISCARD_SECTION_NAME. */
1823 if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
1824 discard = TRUE;
1826 /* Discard debugging sections if we are stripping debugging
1827 information. */
1828 if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
1829 && (flags & SEC_DEBUGGING) != 0)
1830 discard = TRUE;
1832 if (discard)
1834 if (section->output_section == NULL)
1836 /* This prevents future calls from assigning this section. */
1837 section->output_section = bfd_abs_section_ptr;
1839 return;
1842 if (section->output_section == NULL)
1844 bfd_boolean first;
1845 lang_input_section_type *new;
1846 flagword flags;
1848 if (output->bfd_section == NULL)
1849 init_os (output, section);
1851 first = ! output->bfd_section->linker_has_input;
1852 output->bfd_section->linker_has_input = 1;
1854 if (!link_info.relocatable
1855 && !stripped_excluded_sections)
1857 asection *s = output->bfd_section->map_tail.s;
1858 output->bfd_section->map_tail.s = section;
1859 section->map_head.s = NULL;
1860 section->map_tail.s = s;
1861 if (s != NULL)
1862 s->map_head.s = section;
1863 else
1864 output->bfd_section->map_head.s = section;
1867 /* Add a section reference to the list. */
1868 new = new_stat (lang_input_section, ptr);
1870 new->section = section;
1871 new->ifile = file;
1872 section->output_section = output->bfd_section;
1874 flags = section->flags;
1876 /* We don't copy the SEC_NEVER_LOAD flag from an input section
1877 to an output section, because we want to be able to include a
1878 SEC_NEVER_LOAD section in the middle of an otherwise loaded
1879 section (I don't know why we want to do this, but we do).
1880 build_link_order in ldwrite.c handles this case by turning
1881 the embedded SEC_NEVER_LOAD section into a fill. */
1883 flags &= ~ SEC_NEVER_LOAD;
1885 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
1886 already been processed. One reason to do this is that on pe
1887 format targets, .text$foo sections go into .text and it's odd
1888 to see .text with SEC_LINK_ONCE set. */
1890 if (! link_info.relocatable)
1891 flags &= ~ (SEC_LINK_ONCE | SEC_LINK_DUPLICATES);
1893 /* If this is not the first input section, and the SEC_READONLY
1894 flag is not currently set, then don't set it just because the
1895 input section has it set. */
1897 if (! first && (output->bfd_section->flags & SEC_READONLY) == 0)
1898 flags &= ~ SEC_READONLY;
1900 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
1901 if (! first
1902 && ((output->bfd_section->flags & (SEC_MERGE | SEC_STRINGS))
1903 != (flags & (SEC_MERGE | SEC_STRINGS))
1904 || ((flags & SEC_MERGE)
1905 && output->bfd_section->entsize != section->entsize)))
1907 output->bfd_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
1908 flags &= ~ (SEC_MERGE | SEC_STRINGS);
1911 output->bfd_section->flags |= flags;
1913 if (flags & SEC_MERGE)
1914 output->bfd_section->entsize = section->entsize;
1916 /* If SEC_READONLY is not set in the input section, then clear
1917 it from the output section. */
1918 if ((section->flags & SEC_READONLY) == 0)
1919 output->bfd_section->flags &= ~SEC_READONLY;
1921 switch (output->sectype)
1923 case normal_section:
1924 break;
1925 case dsect_section:
1926 case copy_section:
1927 case info_section:
1928 case overlay_section:
1929 output->bfd_section->flags &= ~SEC_ALLOC;
1930 break;
1931 case noload_section:
1932 output->bfd_section->flags &= ~SEC_LOAD;
1933 output->bfd_section->flags |= SEC_NEVER_LOAD;
1934 break;
1937 /* Copy over SEC_SMALL_DATA. */
1938 if (section->flags & SEC_SMALL_DATA)
1939 output->bfd_section->flags |= SEC_SMALL_DATA;
1941 if (section->alignment_power > output->bfd_section->alignment_power)
1942 output->bfd_section->alignment_power = section->alignment_power;
1944 /* If supplied an alignment, then force it. */
1945 if (output->section_alignment != -1)
1946 output->bfd_section->alignment_power = output->section_alignment;
1948 if (bfd_get_arch (section->owner) == bfd_arch_tic54x
1949 && (section->flags & SEC_TIC54X_BLOCK) != 0)
1951 output->bfd_section->flags |= SEC_TIC54X_BLOCK;
1952 /* FIXME: This value should really be obtained from the bfd... */
1953 output->block_value = 128;
1958 /* Compare sections ASEC and BSEC according to SORT. */
1960 static int
1961 compare_section (sort_type sort, asection *asec, asection *bsec)
1963 int ret;
1965 switch (sort)
1967 default:
1968 abort ();
1970 case by_alignment_name:
1971 ret = (bfd_section_alignment (bsec->owner, bsec)
1972 - bfd_section_alignment (asec->owner, asec));
1973 if (ret)
1974 break;
1975 /* Fall through. */
1977 case by_name:
1978 ret = strcmp (bfd_get_section_name (asec->owner, asec),
1979 bfd_get_section_name (bsec->owner, bsec));
1980 break;
1982 case by_name_alignment:
1983 ret = strcmp (bfd_get_section_name (asec->owner, asec),
1984 bfd_get_section_name (bsec->owner, bsec));
1985 if (ret)
1986 break;
1987 /* Fall through. */
1989 case by_alignment:
1990 ret = (bfd_section_alignment (bsec->owner, bsec)
1991 - bfd_section_alignment (asec->owner, asec));
1992 break;
1995 return ret;
1998 /* Handle wildcard sorting. This returns the lang_input_section which
1999 should follow the one we are going to create for SECTION and FILE,
2000 based on the sorting requirements of WILD. It returns NULL if the
2001 new section should just go at the end of the current list. */
2003 static lang_statement_union_type *
2004 wild_sort (lang_wild_statement_type *wild,
2005 struct wildcard_list *sec,
2006 lang_input_statement_type *file,
2007 asection *section)
2009 const char *section_name;
2010 lang_statement_union_type *l;
2012 if (!wild->filenames_sorted
2013 && (sec == NULL || sec->spec.sorted == none))
2014 return NULL;
2016 section_name = bfd_get_section_name (file->the_bfd, section);
2017 for (l = wild->children.head; l != NULL; l = l->header.next)
2019 lang_input_section_type *ls;
2021 if (l->header.type != lang_input_section_enum)
2022 continue;
2023 ls = &l->input_section;
2025 /* Sorting by filename takes precedence over sorting by section
2026 name. */
2028 if (wild->filenames_sorted)
2030 const char *fn, *ln;
2031 bfd_boolean fa, la;
2032 int i;
2034 /* The PE support for the .idata section as generated by
2035 dlltool assumes that files will be sorted by the name of
2036 the archive and then the name of the file within the
2037 archive. */
2039 if (file->the_bfd != NULL
2040 && bfd_my_archive (file->the_bfd) != NULL)
2042 fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
2043 fa = TRUE;
2045 else
2047 fn = file->filename;
2048 fa = FALSE;
2051 if (ls->ifile->the_bfd != NULL
2052 && bfd_my_archive (ls->ifile->the_bfd) != NULL)
2054 ln = bfd_get_filename (bfd_my_archive (ls->ifile->the_bfd));
2055 la = TRUE;
2057 else
2059 ln = ls->ifile->filename;
2060 la = FALSE;
2063 i = strcmp (fn, ln);
2064 if (i > 0)
2065 continue;
2066 else if (i < 0)
2067 break;
2069 if (fa || la)
2071 if (fa)
2072 fn = file->filename;
2073 if (la)
2074 ln = ls->ifile->filename;
2076 i = strcmp (fn, ln);
2077 if (i > 0)
2078 continue;
2079 else if (i < 0)
2080 break;
2084 /* Here either the files are not sorted by name, or we are
2085 looking at the sections for this file. */
2087 if (sec != NULL && sec->spec.sorted != none)
2088 if (compare_section (sec->spec.sorted, section, ls->section) < 0)
2089 break;
2092 return l;
2095 /* Expand a wild statement for a particular FILE. SECTION may be
2096 NULL, in which case it is a wild card. */
2098 static void
2099 output_section_callback (lang_wild_statement_type *ptr,
2100 struct wildcard_list *sec,
2101 asection *section,
2102 lang_input_statement_type *file,
2103 void *output)
2105 lang_statement_union_type *before;
2107 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2108 if (unique_section_p (section))
2109 return;
2111 before = wild_sort (ptr, sec, file, section);
2113 /* Here BEFORE points to the lang_input_section which
2114 should follow the one we are about to add. If BEFORE
2115 is NULL, then the section should just go at the end
2116 of the current list. */
2118 if (before == NULL)
2119 lang_add_section (&ptr->children, section,
2120 (lang_output_section_statement_type *) output,
2121 file);
2122 else
2124 lang_statement_list_type list;
2125 lang_statement_union_type **pp;
2127 lang_list_init (&list);
2128 lang_add_section (&list, section,
2129 (lang_output_section_statement_type *) output,
2130 file);
2132 /* If we are discarding the section, LIST.HEAD will
2133 be NULL. */
2134 if (list.head != NULL)
2136 ASSERT (list.head->header.next == NULL);
2138 for (pp = &ptr->children.head;
2139 *pp != before;
2140 pp = &(*pp)->header.next)
2141 ASSERT (*pp != NULL);
2143 list.head->header.next = *pp;
2144 *pp = list.head;
2149 /* Check if all sections in a wild statement for a particular FILE
2150 are readonly. */
2152 static void
2153 check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
2154 struct wildcard_list *sec ATTRIBUTE_UNUSED,
2155 asection *section,
2156 lang_input_statement_type *file ATTRIBUTE_UNUSED,
2157 void *data)
2159 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2160 if (unique_section_p (section))
2161 return;
2163 if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0)
2164 ((lang_output_section_statement_type *) data)->all_input_readonly = FALSE;
2167 /* This is passed a file name which must have been seen already and
2168 added to the statement tree. We will see if it has been opened
2169 already and had its symbols read. If not then we'll read it. */
2171 static lang_input_statement_type *
2172 lookup_name (const char *name)
2174 lang_input_statement_type *search;
2176 for (search = (lang_input_statement_type *) input_file_chain.head;
2177 search != NULL;
2178 search = (lang_input_statement_type *) search->next_real_file)
2180 /* Use the local_sym_name as the name of the file that has
2181 already been loaded as filename might have been transformed
2182 via the search directory lookup mechanism. */
2183 const char * filename = search->local_sym_name;
2185 if (filename == NULL && name == NULL)
2186 return search;
2187 if (filename != NULL
2188 && name != NULL
2189 && strcmp (filename, name) == 0)
2190 break;
2193 if (search == NULL)
2194 search = new_afile (name, lang_input_file_is_search_file_enum,
2195 default_target, FALSE);
2197 /* If we have already added this file, or this file is not real
2198 (FIXME: can that ever actually happen?) or the name is NULL
2199 (FIXME: can that ever actually happen?) don't add this file. */
2200 if (search->loaded
2201 || ! search->real
2202 || search->filename == NULL)
2203 return search;
2205 if (! load_symbols (search, NULL))
2206 return NULL;
2208 return search;
2211 /* Save LIST as a list of libraries whose symbols should not be exported. */
2213 struct excluded_lib
2215 char *name;
2216 struct excluded_lib *next;
2218 static struct excluded_lib *excluded_libs;
2220 void
2221 add_excluded_libs (const char *list)
2223 const char *p = list, *end;
2225 while (*p != '\0')
2227 struct excluded_lib *entry;
2228 end = strpbrk (p, ",:");
2229 if (end == NULL)
2230 end = p + strlen (p);
2231 entry = xmalloc (sizeof (*entry));
2232 entry->next = excluded_libs;
2233 entry->name = xmalloc (end - p + 1);
2234 memcpy (entry->name, p, end - p);
2235 entry->name[end - p] = '\0';
2236 excluded_libs = entry;
2237 if (*end == '\0')
2238 break;
2239 p = end + 1;
2243 static void
2244 check_excluded_libs (bfd *abfd)
2246 struct excluded_lib *lib = excluded_libs;
2248 while (lib)
2250 int len = strlen (lib->name);
2251 const char *filename = lbasename (abfd->filename);
2253 if (strcmp (lib->name, "ALL") == 0)
2255 abfd->no_export = TRUE;
2256 return;
2259 if (strncmp (lib->name, filename, len) == 0
2260 && (filename[len] == '\0'
2261 || (filename[len] == '.' && filename[len + 1] == 'a'
2262 && filename[len + 2] == '\0')))
2264 abfd->no_export = TRUE;
2265 return;
2268 lib = lib->next;
2272 /* Get the symbols for an input file. */
2274 static bfd_boolean
2275 load_symbols (lang_input_statement_type *entry,
2276 lang_statement_list_type *place)
2278 char **matching;
2280 if (entry->loaded)
2281 return TRUE;
2283 ldfile_open_file (entry);
2285 if (! bfd_check_format (entry->the_bfd, bfd_archive)
2286 && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
2288 bfd_error_type err;
2289 lang_statement_list_type *hold;
2290 bfd_boolean bad_load = TRUE;
2291 bfd_boolean save_ldlang_sysrooted_script;
2293 err = bfd_get_error ();
2295 /* See if the emulation has some special knowledge. */
2296 if (ldemul_unrecognized_file (entry))
2297 return TRUE;
2299 if (err == bfd_error_file_ambiguously_recognized)
2301 char **p;
2303 einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
2304 einfo (_("%B: matching formats:"), entry->the_bfd);
2305 for (p = matching; *p != NULL; p++)
2306 einfo (" %s", *p);
2307 einfo ("%F\n");
2309 else if (err != bfd_error_file_not_recognized
2310 || place == NULL)
2311 einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
2312 else
2313 bad_load = FALSE;
2315 bfd_close (entry->the_bfd);
2316 entry->the_bfd = NULL;
2318 /* Try to interpret the file as a linker script. */
2319 ldfile_open_command_file (entry->filename);
2321 hold = stat_ptr;
2322 stat_ptr = place;
2323 save_ldlang_sysrooted_script = ldlang_sysrooted_script;
2324 ldlang_sysrooted_script = entry->sysrooted;
2326 ldfile_assumed_script = TRUE;
2327 parser_input = input_script;
2328 /* We want to use the same -Bdynamic/-Bstatic as the one for
2329 ENTRY. */
2330 config.dynamic_link = entry->dynamic;
2331 yyparse ();
2332 ldfile_assumed_script = FALSE;
2334 ldlang_sysrooted_script = save_ldlang_sysrooted_script;
2335 stat_ptr = hold;
2337 return ! bad_load;
2340 if (ldemul_recognized_file (entry))
2341 return TRUE;
2343 /* We don't call ldlang_add_file for an archive. Instead, the
2344 add_symbols entry point will call ldlang_add_file, via the
2345 add_archive_element callback, for each element of the archive
2346 which is used. */
2347 switch (bfd_get_format (entry->the_bfd))
2349 default:
2350 break;
2352 case bfd_object:
2353 ldlang_add_file (entry);
2354 if (trace_files || trace_file_tries)
2355 info_msg ("%I\n", entry);
2356 break;
2358 case bfd_archive:
2359 check_excluded_libs (entry->the_bfd);
2361 if (entry->whole_archive)
2363 bfd *member = NULL;
2364 bfd_boolean loaded = TRUE;
2366 for (;;)
2368 member = bfd_openr_next_archived_file (entry->the_bfd, member);
2370 if (member == NULL)
2371 break;
2373 if (! bfd_check_format (member, bfd_object))
2375 einfo (_("%F%B: member %B in archive is not an object\n"),
2376 entry->the_bfd, member);
2377 loaded = FALSE;
2380 if (! ((*link_info.callbacks->add_archive_element)
2381 (&link_info, member, "--whole-archive")))
2382 abort ();
2384 if (! bfd_link_add_symbols (member, &link_info))
2386 einfo (_("%F%B: could not read symbols: %E\n"), member);
2387 loaded = FALSE;
2391 entry->loaded = loaded;
2392 return loaded;
2394 break;
2397 if (bfd_link_add_symbols (entry->the_bfd, &link_info))
2398 entry->loaded = TRUE;
2399 else
2400 einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
2402 return entry->loaded;
2405 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
2406 may be NULL, indicating that it is a wildcard. Separate
2407 lang_input_section statements are created for each part of the
2408 expansion; they are added after the wild statement S. OUTPUT is
2409 the output section. */
2411 static void
2412 wild (lang_wild_statement_type *s,
2413 const char *target ATTRIBUTE_UNUSED,
2414 lang_output_section_statement_type *output)
2416 struct wildcard_list *sec;
2418 walk_wild (s, output_section_callback, output);
2420 for (sec = s->section_list; sec != NULL; sec = sec->next)
2422 if (default_common_section != NULL)
2423 break;
2424 if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
2426 /* Remember the section that common is going to in case we
2427 later get something which doesn't know where to put it. */
2428 default_common_section = output;
2433 /* Return TRUE iff target is the sought target. */
2435 static int
2436 get_target (const bfd_target *target, void *data)
2438 const char *sought = data;
2440 return strcmp (target->name, sought) == 0;
2443 /* Like strcpy() but convert to lower case as well. */
2445 static void
2446 stricpy (char *dest, char *src)
2448 char c;
2450 while ((c = *src++) != 0)
2451 *dest++ = TOLOWER (c);
2453 *dest = 0;
2456 /* Remove the first occurrence of needle (if any) in haystack
2457 from haystack. */
2459 static void
2460 strcut (char *haystack, char *needle)
2462 haystack = strstr (haystack, needle);
2464 if (haystack)
2466 char *src;
2468 for (src = haystack + strlen (needle); *src;)
2469 *haystack++ = *src++;
2471 *haystack = 0;
2475 /* Compare two target format name strings.
2476 Return a value indicating how "similar" they are. */
2478 static int
2479 name_compare (char *first, char *second)
2481 char *copy1;
2482 char *copy2;
2483 int result;
2485 copy1 = xmalloc (strlen (first) + 1);
2486 copy2 = xmalloc (strlen (second) + 1);
2488 /* Convert the names to lower case. */
2489 stricpy (copy1, first);
2490 stricpy (copy2, second);
2492 /* Remove size and endian strings from the name. */
2493 strcut (copy1, "big");
2494 strcut (copy1, "little");
2495 strcut (copy2, "big");
2496 strcut (copy2, "little");
2498 /* Return a value based on how many characters match,
2499 starting from the beginning. If both strings are
2500 the same then return 10 * their length. */
2501 for (result = 0; copy1[result] == copy2[result]; result++)
2502 if (copy1[result] == 0)
2504 result *= 10;
2505 break;
2508 free (copy1);
2509 free (copy2);
2511 return result;
2514 /* Set by closest_target_match() below. */
2515 static const bfd_target *winner;
2517 /* Scan all the valid bfd targets looking for one that has the endianness
2518 requirement that was specified on the command line, and is the nearest
2519 match to the original output target. */
2521 static int
2522 closest_target_match (const bfd_target *target, void *data)
2524 const bfd_target *original = data;
2526 if (command_line.endian == ENDIAN_BIG
2527 && target->byteorder != BFD_ENDIAN_BIG)
2528 return 0;
2530 if (command_line.endian == ENDIAN_LITTLE
2531 && target->byteorder != BFD_ENDIAN_LITTLE)
2532 return 0;
2534 /* Must be the same flavour. */
2535 if (target->flavour != original->flavour)
2536 return 0;
2538 /* If we have not found a potential winner yet, then record this one. */
2539 if (winner == NULL)
2541 winner = target;
2542 return 0;
2545 /* Oh dear, we now have two potential candidates for a successful match.
2546 Compare their names and choose the better one. */
2547 if (name_compare (target->name, original->name)
2548 > name_compare (winner->name, original->name))
2549 winner = target;
2551 /* Keep on searching until wqe have checked them all. */
2552 return 0;
2555 /* Return the BFD target format of the first input file. */
2557 static char *
2558 get_first_input_target (void)
2560 char *target = NULL;
2562 LANG_FOR_EACH_INPUT_STATEMENT (s)
2564 if (s->header.type == lang_input_statement_enum
2565 && s->real)
2567 ldfile_open_file (s);
2569 if (s->the_bfd != NULL
2570 && bfd_check_format (s->the_bfd, bfd_object))
2572 target = bfd_get_target (s->the_bfd);
2574 if (target != NULL)
2575 break;
2580 return target;
2583 const char *
2584 lang_get_output_target (void)
2586 const char *target;
2588 /* Has the user told us which output format to use? */
2589 if (output_target != NULL)
2590 return output_target;
2592 /* No - has the current target been set to something other than
2593 the default? */
2594 if (current_target != default_target)
2595 return current_target;
2597 /* No - can we determine the format of the first input file? */
2598 target = get_first_input_target ();
2599 if (target != NULL)
2600 return target;
2602 /* Failed - use the default output target. */
2603 return default_target;
2606 /* Open the output file. */
2608 static bfd *
2609 open_output (const char *name)
2611 bfd *output;
2613 output_target = lang_get_output_target ();
2615 /* Has the user requested a particular endianness on the command
2616 line? */
2617 if (command_line.endian != ENDIAN_UNSET)
2619 const bfd_target *target;
2620 enum bfd_endian desired_endian;
2622 /* Get the chosen target. */
2623 target = bfd_search_for_target (get_target, (void *) output_target);
2625 /* If the target is not supported, we cannot do anything. */
2626 if (target != NULL)
2628 if (command_line.endian == ENDIAN_BIG)
2629 desired_endian = BFD_ENDIAN_BIG;
2630 else
2631 desired_endian = BFD_ENDIAN_LITTLE;
2633 /* See if the target has the wrong endianness. This should
2634 not happen if the linker script has provided big and
2635 little endian alternatives, but some scrips don't do
2636 this. */
2637 if (target->byteorder != desired_endian)
2639 /* If it does, then see if the target provides
2640 an alternative with the correct endianness. */
2641 if (target->alternative_target != NULL
2642 && (target->alternative_target->byteorder == desired_endian))
2643 output_target = target->alternative_target->name;
2644 else
2646 /* Try to find a target as similar as possible to
2647 the default target, but which has the desired
2648 endian characteristic. */
2649 bfd_search_for_target (closest_target_match,
2650 (void *) target);
2652 /* Oh dear - we could not find any targets that
2653 satisfy our requirements. */
2654 if (winner == NULL)
2655 einfo (_("%P: warning: could not find any targets"
2656 " that match endianness requirement\n"));
2657 else
2658 output_target = winner->name;
2664 output = bfd_openw (name, output_target);
2666 if (output == NULL)
2668 if (bfd_get_error () == bfd_error_invalid_target)
2669 einfo (_("%P%F: target %s not found\n"), output_target);
2671 einfo (_("%P%F: cannot open output file %s: %E\n"), name);
2674 delete_output_file_on_failure = TRUE;
2676 if (! bfd_set_format (output, bfd_object))
2677 einfo (_("%P%F:%s: can not make object file: %E\n"), name);
2678 if (! bfd_set_arch_mach (output,
2679 ldfile_output_architecture,
2680 ldfile_output_machine))
2681 einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
2683 link_info.hash = bfd_link_hash_table_create (output);
2684 if (link_info.hash == NULL)
2685 einfo (_("%P%F: can not create hash table: %E\n"));
2687 bfd_set_gp_size (output, g_switch_value);
2688 return output;
2691 static void
2692 ldlang_open_output (lang_statement_union_type *statement)
2694 switch (statement->header.type)
2696 case lang_output_statement_enum:
2697 ASSERT (output_bfd == NULL);
2698 output_bfd = open_output (statement->output_statement.name);
2699 ldemul_set_output_arch ();
2700 if (config.magic_demand_paged && !link_info.relocatable)
2701 output_bfd->flags |= D_PAGED;
2702 else
2703 output_bfd->flags &= ~D_PAGED;
2704 if (config.text_read_only)
2705 output_bfd->flags |= WP_TEXT;
2706 else
2707 output_bfd->flags &= ~WP_TEXT;
2708 if (link_info.traditional_format)
2709 output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
2710 else
2711 output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
2712 break;
2714 case lang_target_statement_enum:
2715 current_target = statement->target_statement.target;
2716 break;
2717 default:
2718 break;
2722 /* Convert between addresses in bytes and sizes in octets.
2723 For currently supported targets, octets_per_byte is always a power
2724 of two, so we can use shifts. */
2725 #define TO_ADDR(X) ((X) >> opb_shift)
2726 #define TO_SIZE(X) ((X) << opb_shift)
2728 /* Support the above. */
2729 static unsigned int opb_shift = 0;
2731 static void
2732 init_opb (void)
2734 unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
2735 ldfile_output_machine);
2736 opb_shift = 0;
2737 if (x > 1)
2738 while ((x & 1) == 0)
2740 x >>= 1;
2741 ++opb_shift;
2743 ASSERT (x == 1);
2746 /* Open all the input files. */
2748 static void
2749 open_input_bfds (lang_statement_union_type *s, bfd_boolean force)
2751 for (; s != NULL; s = s->header.next)
2753 switch (s->header.type)
2755 case lang_constructors_statement_enum:
2756 open_input_bfds (constructor_list.head, force);
2757 break;
2758 case lang_output_section_statement_enum:
2759 open_input_bfds (s->output_section_statement.children.head, force);
2760 break;
2761 case lang_wild_statement_enum:
2762 /* Maybe we should load the file's symbols. */
2763 if (s->wild_statement.filename
2764 && ! wildcardp (s->wild_statement.filename))
2765 lookup_name (s->wild_statement.filename);
2766 open_input_bfds (s->wild_statement.children.head, force);
2767 break;
2768 case lang_group_statement_enum:
2770 struct bfd_link_hash_entry *undefs;
2772 /* We must continually search the entries in the group
2773 until no new symbols are added to the list of undefined
2774 symbols. */
2778 undefs = link_info.hash->undefs_tail;
2779 open_input_bfds (s->group_statement.children.head, TRUE);
2781 while (undefs != link_info.hash->undefs_tail);
2783 break;
2784 case lang_target_statement_enum:
2785 current_target = s->target_statement.target;
2786 break;
2787 case lang_input_statement_enum:
2788 if (s->input_statement.real)
2790 lang_statement_list_type add;
2792 s->input_statement.target = current_target;
2794 /* If we are being called from within a group, and this
2795 is an archive which has already been searched, then
2796 force it to be researched unless the whole archive
2797 has been loaded already. */
2798 if (force
2799 && !s->input_statement.whole_archive
2800 && s->input_statement.loaded
2801 && bfd_check_format (s->input_statement.the_bfd,
2802 bfd_archive))
2803 s->input_statement.loaded = FALSE;
2805 lang_list_init (&add);
2807 if (! load_symbols (&s->input_statement, &add))
2808 config.make_executable = FALSE;
2810 if (add.head != NULL)
2812 *add.tail = s->header.next;
2813 s->header.next = add.head;
2816 break;
2817 default:
2818 break;
2823 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
2825 void
2826 lang_track_definedness (const char *name)
2828 if (bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE) == NULL)
2829 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
2832 /* New-function for the definedness hash table. */
2834 static struct bfd_hash_entry *
2835 lang_definedness_newfunc (struct bfd_hash_entry *entry,
2836 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
2837 const char *name ATTRIBUTE_UNUSED)
2839 struct lang_definedness_hash_entry *ret
2840 = (struct lang_definedness_hash_entry *) entry;
2842 if (ret == NULL)
2843 ret = (struct lang_definedness_hash_entry *)
2844 bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
2846 if (ret == NULL)
2847 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
2849 ret->iteration = -1;
2850 return &ret->root;
2853 /* Return the iteration when the definition of NAME was last updated. A
2854 value of -1 means that the symbol is not defined in the linker script
2855 or the command line, but may be defined in the linker symbol table. */
2858 lang_symbol_definition_iteration (const char *name)
2860 struct lang_definedness_hash_entry *defentry
2861 = (struct lang_definedness_hash_entry *)
2862 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
2864 /* We've already created this one on the presence of DEFINED in the
2865 script, so it can't be NULL unless something is borked elsewhere in
2866 the code. */
2867 if (defentry == NULL)
2868 FAIL ();
2870 return defentry->iteration;
2873 /* Update the definedness state of NAME. */
2875 void
2876 lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
2878 struct lang_definedness_hash_entry *defentry
2879 = (struct lang_definedness_hash_entry *)
2880 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
2882 /* We don't keep track of symbols not tested with DEFINED. */
2883 if (defentry == NULL)
2884 return;
2886 /* If the symbol was already defined, and not from an earlier statement
2887 iteration, don't update the definedness iteration, because that'd
2888 make the symbol seem defined in the linker script at this point, and
2889 it wasn't; it was defined in some object. If we do anyway, DEFINED
2890 would start to yield false before this point and the construct "sym =
2891 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
2892 in an object. */
2893 if (h->type != bfd_link_hash_undefined
2894 && h->type != bfd_link_hash_common
2895 && h->type != bfd_link_hash_new
2896 && defentry->iteration == -1)
2897 return;
2899 defentry->iteration = lang_statement_iteration;
2902 /* Add the supplied name to the symbol table as an undefined reference.
2903 This is a two step process as the symbol table doesn't even exist at
2904 the time the ld command line is processed. First we put the name
2905 on a list, then, once the output file has been opened, transfer the
2906 name to the symbol table. */
2908 typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
2910 #define ldlang_undef_chain_list_head entry_symbol.next
2912 void
2913 ldlang_add_undef (const char *const name)
2915 ldlang_undef_chain_list_type *new =
2916 stat_alloc (sizeof (ldlang_undef_chain_list_type));
2918 new->next = ldlang_undef_chain_list_head;
2919 ldlang_undef_chain_list_head = new;
2921 new->name = xstrdup (name);
2923 if (output_bfd != NULL)
2924 insert_undefined (new->name);
2927 /* Insert NAME as undefined in the symbol table. */
2929 static void
2930 insert_undefined (const char *name)
2932 struct bfd_link_hash_entry *h;
2934 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
2935 if (h == NULL)
2936 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
2937 if (h->type == bfd_link_hash_new)
2939 h->type = bfd_link_hash_undefined;
2940 h->u.undef.abfd = NULL;
2941 bfd_link_add_undef (link_info.hash, h);
2945 /* Run through the list of undefineds created above and place them
2946 into the linker hash table as undefined symbols belonging to the
2947 script file. */
2949 static void
2950 lang_place_undefineds (void)
2952 ldlang_undef_chain_list_type *ptr;
2954 for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
2955 insert_undefined (ptr->name);
2958 /* Check for all readonly or some readwrite sections. */
2960 static void
2961 check_input_sections
2962 (lang_statement_union_type *s,
2963 lang_output_section_statement_type *output_section_statement)
2965 for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
2967 switch (s->header.type)
2969 case lang_wild_statement_enum:
2970 walk_wild (&s->wild_statement, check_section_callback,
2971 output_section_statement);
2972 if (! output_section_statement->all_input_readonly)
2973 return;
2974 break;
2975 case lang_constructors_statement_enum:
2976 check_input_sections (constructor_list.head,
2977 output_section_statement);
2978 if (! output_section_statement->all_input_readonly)
2979 return;
2980 break;
2981 case lang_group_statement_enum:
2982 check_input_sections (s->group_statement.children.head,
2983 output_section_statement);
2984 if (! output_section_statement->all_input_readonly)
2985 return;
2986 break;
2987 default:
2988 break;
2993 /* Update wildcard statements if needed. */
2995 static void
2996 update_wild_statements (lang_statement_union_type *s)
2998 struct wildcard_list *sec;
3000 switch (sort_section)
3002 default:
3003 FAIL ();
3005 case none:
3006 break;
3008 case by_name:
3009 case by_alignment:
3010 for (; s != NULL; s = s->header.next)
3012 switch (s->header.type)
3014 default:
3015 break;
3017 case lang_wild_statement_enum:
3018 sec = s->wild_statement.section_list;
3019 if (sec != NULL)
3021 switch (sec->spec.sorted)
3023 case none:
3024 sec->spec.sorted = sort_section;
3025 break;
3026 case by_name:
3027 if (sort_section == by_alignment)
3028 sec->spec.sorted = by_name_alignment;
3029 break;
3030 case by_alignment:
3031 if (sort_section == by_name)
3032 sec->spec.sorted = by_alignment_name;
3033 break;
3034 default:
3035 break;
3038 break;
3040 case lang_constructors_statement_enum:
3041 update_wild_statements (constructor_list.head);
3042 break;
3044 case lang_output_section_statement_enum:
3045 update_wild_statements
3046 (s->output_section_statement.children.head);
3047 break;
3049 case lang_group_statement_enum:
3050 update_wild_statements (s->group_statement.children.head);
3051 break;
3054 break;
3058 /* Open input files and attach to output sections. */
3060 static void
3061 map_input_to_output_sections
3062 (lang_statement_union_type *s, const char *target,
3063 lang_output_section_statement_type *os)
3065 for (; s != NULL; s = s->header.next)
3067 switch (s->header.type)
3069 case lang_wild_statement_enum:
3070 wild (&s->wild_statement, target, os);
3071 break;
3072 case lang_constructors_statement_enum:
3073 map_input_to_output_sections (constructor_list.head,
3074 target,
3075 os);
3076 break;
3077 case lang_output_section_statement_enum:
3078 if (s->output_section_statement.constraint)
3080 if (s->output_section_statement.constraint != ONLY_IF_RW
3081 && s->output_section_statement.constraint != ONLY_IF_RO)
3082 break;
3083 s->output_section_statement.all_input_readonly = TRUE;
3084 check_input_sections (s->output_section_statement.children.head,
3085 &s->output_section_statement);
3086 if ((s->output_section_statement.all_input_readonly
3087 && s->output_section_statement.constraint == ONLY_IF_RW)
3088 || (!s->output_section_statement.all_input_readonly
3089 && s->output_section_statement.constraint == ONLY_IF_RO))
3091 s->output_section_statement.constraint = -1;
3092 break;
3096 map_input_to_output_sections (s->output_section_statement.children.head,
3097 target,
3098 &s->output_section_statement);
3099 break;
3100 case lang_output_statement_enum:
3101 break;
3102 case lang_target_statement_enum:
3103 target = s->target_statement.target;
3104 break;
3105 case lang_group_statement_enum:
3106 map_input_to_output_sections (s->group_statement.children.head,
3107 target,
3108 os);
3109 break;
3110 case lang_data_statement_enum:
3111 /* Make sure that any sections mentioned in the expression
3112 are initialized. */
3113 exp_init_os (s->data_statement.exp);
3114 if (os != NULL && os->bfd_section == NULL)
3115 init_os (os, NULL);
3116 /* The output section gets contents, and then we inspect for
3117 any flags set in the input script which override any ALLOC. */
3118 os->bfd_section->flags |= SEC_HAS_CONTENTS;
3119 if (!(os->flags & SEC_NEVER_LOAD))
3120 os->bfd_section->flags |= SEC_ALLOC | SEC_LOAD;
3121 break;
3122 case lang_fill_statement_enum:
3123 case lang_input_section_enum:
3124 case lang_object_symbols_statement_enum:
3125 case lang_reloc_statement_enum:
3126 case lang_padding_statement_enum:
3127 case lang_input_statement_enum:
3128 if (os != NULL && os->bfd_section == NULL)
3129 init_os (os, NULL);
3130 break;
3131 case lang_assignment_statement_enum:
3132 if (os != NULL && os->bfd_section == NULL)
3133 init_os (os, NULL);
3135 /* Make sure that any sections mentioned in the assignment
3136 are initialized. */
3137 exp_init_os (s->assignment_statement.exp);
3138 break;
3139 case lang_afile_asection_pair_statement_enum:
3140 FAIL ();
3141 break;
3142 case lang_address_statement_enum:
3143 /* Mark the specified section with the supplied address.
3145 If this section was actually a segment marker, then the
3146 directive is ignored if the linker script explicitly
3147 processed the segment marker. Originally, the linker
3148 treated segment directives (like -Ttext on the
3149 command-line) as section directives. We honor the
3150 section directive semantics for backwards compatibilty;
3151 linker scripts that do not specifically check for
3152 SEGMENT_START automatically get the old semantics. */
3153 if (!s->address_statement.segment
3154 || !s->address_statement.segment->used)
3156 lang_output_section_statement_type *aos
3157 = (lang_output_section_statement_lookup
3158 (s->address_statement.section_name));
3160 if (aos->bfd_section == NULL)
3161 init_os (aos, NULL);
3162 aos->addr_tree = s->address_statement.address;
3164 break;
3169 /* An output section might have been removed after its statement was
3170 added. For example, ldemul_before_allocation can remove dynamic
3171 sections if they turn out to be not needed. Clean them up here. */
3173 void
3174 strip_excluded_output_sections (void)
3176 lang_output_section_statement_type *os;
3178 /* Run lang_size_sections (if not already done). */
3179 if (expld.phase != lang_mark_phase_enum)
3181 expld.phase = lang_mark_phase_enum;
3182 expld.dataseg.phase = exp_dataseg_none;
3183 one_lang_size_sections_pass (NULL, FALSE);
3184 lang_reset_memory_regions ();
3187 for (os = &lang_output_section_statement.head->output_section_statement;
3188 os != NULL;
3189 os = os->next)
3191 asection *output_section;
3192 bfd_boolean exclude;
3194 if (os->constraint == -1)
3195 continue;
3197 output_section = os->bfd_section;
3198 if (output_section == NULL)
3199 continue;
3201 exclude = (output_section->rawsize == 0
3202 && (output_section->flags & SEC_KEEP) == 0
3203 && !bfd_section_removed_from_list (output_bfd,
3204 output_section));
3206 /* Some sections have not yet been sized, notably .gnu.version,
3207 .dynsym, .dynstr and .hash. These all have SEC_LINKER_CREATED
3208 input sections, so don't drop output sections that have such
3209 input sections unless they are also marked SEC_EXCLUDE. */
3210 if (exclude && output_section->map_head.s != NULL)
3212 asection *s;
3214 for (s = output_section->map_head.s; s != NULL; s = s->map_head.s)
3215 if ((s->flags & SEC_LINKER_CREATED) != 0
3216 && (s->flags & SEC_EXCLUDE) == 0)
3218 exclude = FALSE;
3219 break;
3223 /* TODO: Don't just junk map_head.s, turn them into link_orders. */
3224 output_section->map_head.link_order = NULL;
3225 output_section->map_tail.link_order = NULL;
3227 if (exclude)
3229 /* We don't set bfd_section to NULL since bfd_section of the
3230 removed output section statement may still be used. */
3231 os->ignored = TRUE;
3232 output_section->flags |= SEC_EXCLUDE;
3233 bfd_section_list_remove (output_bfd, output_section);
3234 output_bfd->section_count--;
3238 /* Stop future calls to lang_add_section from messing with map_head
3239 and map_tail link_order fields. */
3240 stripped_excluded_sections = TRUE;
3243 static void
3244 print_output_section_statement
3245 (lang_output_section_statement_type *output_section_statement)
3247 asection *section = output_section_statement->bfd_section;
3248 int len;
3250 if (output_section_statement != abs_output_section)
3252 minfo ("\n%s", output_section_statement->name);
3254 if (section != NULL)
3256 print_dot = section->vma;
3258 len = strlen (output_section_statement->name);
3259 if (len >= SECTION_NAME_MAP_LENGTH - 1)
3261 print_nl ();
3262 len = 0;
3264 while (len < SECTION_NAME_MAP_LENGTH)
3266 print_space ();
3267 ++len;
3270 minfo ("0x%V %W", section->vma, section->size);
3272 if (output_section_statement->load_base != NULL)
3274 bfd_vma addr;
3276 addr = exp_get_abs_int (output_section_statement->load_base, 0,
3277 "load base");
3278 minfo (_(" load address 0x%V"), addr);
3282 print_nl ();
3285 print_statement_list (output_section_statement->children.head,
3286 output_section_statement);
3289 /* Scan for the use of the destination in the right hand side
3290 of an expression. In such cases we will not compute the
3291 correct expression, since the value of DST that is used on
3292 the right hand side will be its final value, not its value
3293 just before this expression is evaluated. */
3295 static bfd_boolean
3296 scan_for_self_assignment (const char * dst, etree_type * rhs)
3298 if (rhs == NULL || dst == NULL)
3299 return FALSE;
3301 switch (rhs->type.node_class)
3303 case etree_binary:
3304 return scan_for_self_assignment (dst, rhs->binary.lhs)
3305 || scan_for_self_assignment (dst, rhs->binary.rhs);
3307 case etree_trinary:
3308 return scan_for_self_assignment (dst, rhs->trinary.lhs)
3309 || scan_for_self_assignment (dst, rhs->trinary.rhs);
3311 case etree_assign:
3312 case etree_provided:
3313 case etree_provide:
3314 if (strcmp (dst, rhs->assign.dst) == 0)
3315 return TRUE;
3316 return scan_for_self_assignment (dst, rhs->assign.src);
3318 case etree_unary:
3319 return scan_for_self_assignment (dst, rhs->unary.child);
3321 case etree_value:
3322 if (rhs->value.str)
3323 return strcmp (dst, rhs->value.str) == 0;
3324 return FALSE;
3326 case etree_name:
3327 if (rhs->name.name)
3328 return strcmp (dst, rhs->name.name) == 0;
3329 return FALSE;
3331 default:
3332 break;
3335 return FALSE;
3339 static void
3340 print_assignment (lang_assignment_statement_type *assignment,
3341 lang_output_section_statement_type *output_section)
3343 unsigned int i;
3344 bfd_boolean is_dot;
3345 bfd_boolean computation_is_valid = TRUE;
3346 etree_type *tree;
3348 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3349 print_space ();
3351 if (assignment->exp->type.node_class == etree_assert)
3353 is_dot = FALSE;
3354 tree = assignment->exp->assert_s.child;
3355 computation_is_valid = TRUE;
3357 else
3359 const char *dst = assignment->exp->assign.dst;
3361 is_dot = (dst[0] == '.' && dst[1] == 0);
3362 tree = assignment->exp->assign.src;
3363 computation_is_valid = is_dot || (scan_for_self_assignment (dst, tree) == FALSE);
3366 exp_fold_tree (tree, output_section->bfd_section, &print_dot);
3367 if (expld.result.valid_p)
3369 bfd_vma value;
3371 if (computation_is_valid)
3373 value = expld.result.value;
3375 if (expld.result.section)
3376 value += expld.result.section->vma;
3378 minfo ("0x%V", value);
3379 if (is_dot)
3380 print_dot = value;
3382 else
3384 struct bfd_link_hash_entry *h;
3386 h = bfd_link_hash_lookup (link_info.hash, assignment->exp->assign.dst,
3387 FALSE, FALSE, TRUE);
3388 if (h)
3390 value = h->u.def.value;
3392 if (expld.result.section)
3393 value += expld.result.section->vma;
3395 minfo ("[0x%V]", value);
3397 else
3398 minfo ("[unresolved]");
3401 else
3403 minfo ("*undef* ");
3404 #ifdef BFD64
3405 minfo (" ");
3406 #endif
3409 minfo (" ");
3410 exp_print_tree (assignment->exp);
3411 print_nl ();
3414 static void
3415 print_input_statement (lang_input_statement_type *statm)
3417 if (statm->filename != NULL)
3419 fprintf (config.map_file, "LOAD %s\n", statm->filename);
3423 /* Print all symbols defined in a particular section. This is called
3424 via bfd_link_hash_traverse, or by print_all_symbols. */
3426 static bfd_boolean
3427 print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
3429 asection *sec = ptr;
3431 if ((hash_entry->type == bfd_link_hash_defined
3432 || hash_entry->type == bfd_link_hash_defweak)
3433 && sec == hash_entry->u.def.section)
3435 int i;
3437 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3438 print_space ();
3439 minfo ("0x%V ",
3440 (hash_entry->u.def.value
3441 + hash_entry->u.def.section->output_offset
3442 + hash_entry->u.def.section->output_section->vma));
3444 minfo (" %T\n", hash_entry->root.string);
3447 return TRUE;
3450 static void
3451 print_all_symbols (sec)
3452 asection *sec;
3454 struct fat_user_section_struct *ud = get_userdata (sec);
3455 struct map_symbol_def *def;
3457 if (!ud)
3458 return;
3460 *ud->map_symbol_def_tail = 0;
3461 for (def = ud->map_symbol_def_head; def; def = def->next)
3462 print_one_symbol (def->entry, sec);
3465 /* Print information about an input section to the map file. */
3467 static void
3468 print_input_section (lang_input_section_type *in)
3470 asection *i = in->section;
3471 bfd_size_type size = i->size;
3473 init_opb ();
3474 if (size != 0)
3476 int len;
3477 bfd_vma addr;
3479 print_space ();
3480 minfo ("%s", i->name);
3482 len = 1 + strlen (i->name);
3483 if (len >= SECTION_NAME_MAP_LENGTH - 1)
3485 print_nl ();
3486 len = 0;
3488 while (len < SECTION_NAME_MAP_LENGTH)
3490 print_space ();
3491 ++len;
3494 if (i->output_section != NULL && (i->flags & SEC_EXCLUDE) == 0)
3495 addr = i->output_section->vma + i->output_offset;
3496 else
3498 addr = print_dot;
3499 size = 0;
3502 minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
3504 if (size != i->rawsize && i->rawsize != 0)
3506 len = SECTION_NAME_MAP_LENGTH + 3;
3507 #ifdef BFD64
3508 len += 16;
3509 #else
3510 len += 8;
3511 #endif
3512 while (len > 0)
3514 print_space ();
3515 --len;
3518 minfo (_("%W (size before relaxing)\n"), i->rawsize);
3521 if (i->output_section != NULL && (i->flags & SEC_EXCLUDE) == 0)
3523 if (command_line.reduce_memory_overheads)
3524 bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
3525 else
3526 print_all_symbols (i);
3528 print_dot = addr + TO_ADDR (size);
3533 static void
3534 print_fill_statement (lang_fill_statement_type *fill)
3536 size_t size;
3537 unsigned char *p;
3538 fputs (" FILL mask 0x", config.map_file);
3539 for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
3540 fprintf (config.map_file, "%02x", *p);
3541 fputs ("\n", config.map_file);
3544 static void
3545 print_data_statement (lang_data_statement_type *data)
3547 int i;
3548 bfd_vma addr;
3549 bfd_size_type size;
3550 const char *name;
3552 init_opb ();
3553 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3554 print_space ();
3556 addr = data->output_offset;
3557 if (data->output_section != NULL)
3558 addr += data->output_section->vma;
3560 switch (data->type)
3562 default:
3563 abort ();
3564 case BYTE:
3565 size = BYTE_SIZE;
3566 name = "BYTE";
3567 break;
3568 case SHORT:
3569 size = SHORT_SIZE;
3570 name = "SHORT";
3571 break;
3572 case LONG:
3573 size = LONG_SIZE;
3574 name = "LONG";
3575 break;
3576 case QUAD:
3577 size = QUAD_SIZE;
3578 name = "QUAD";
3579 break;
3580 case SQUAD:
3581 size = QUAD_SIZE;
3582 name = "SQUAD";
3583 break;
3586 minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
3588 if (data->exp->type.node_class != etree_value)
3590 print_space ();
3591 exp_print_tree (data->exp);
3594 print_nl ();
3596 print_dot = addr + TO_ADDR (size);
3599 /* Print an address statement. These are generated by options like
3600 -Ttext. */
3602 static void
3603 print_address_statement (lang_address_statement_type *address)
3605 minfo (_("Address of section %s set to "), address->section_name);
3606 exp_print_tree (address->address);
3607 print_nl ();
3610 /* Print a reloc statement. */
3612 static void
3613 print_reloc_statement (lang_reloc_statement_type *reloc)
3615 int i;
3616 bfd_vma addr;
3617 bfd_size_type size;
3619 init_opb ();
3620 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3621 print_space ();
3623 addr = reloc->output_offset;
3624 if (reloc->output_section != NULL)
3625 addr += reloc->output_section->vma;
3627 size = bfd_get_reloc_size (reloc->howto);
3629 minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
3631 if (reloc->name != NULL)
3632 minfo ("%s+", reloc->name);
3633 else
3634 minfo ("%s+", reloc->section->name);
3636 exp_print_tree (reloc->addend_exp);
3638 print_nl ();
3640 print_dot = addr + TO_ADDR (size);
3643 static void
3644 print_padding_statement (lang_padding_statement_type *s)
3646 int len;
3647 bfd_vma addr;
3649 init_opb ();
3650 minfo (" *fill*");
3652 len = sizeof " *fill*" - 1;
3653 while (len < SECTION_NAME_MAP_LENGTH)
3655 print_space ();
3656 ++len;
3659 addr = s->output_offset;
3660 if (s->output_section != NULL)
3661 addr += s->output_section->vma;
3662 minfo ("0x%V %W ", addr, (bfd_vma) s->size);
3664 if (s->fill->size != 0)
3666 size_t size;
3667 unsigned char *p;
3668 for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
3669 fprintf (config.map_file, "%02x", *p);
3672 print_nl ();
3674 print_dot = addr + TO_ADDR (s->size);
3677 static void
3678 print_wild_statement (lang_wild_statement_type *w,
3679 lang_output_section_statement_type *os)
3681 struct wildcard_list *sec;
3683 print_space ();
3685 if (w->filenames_sorted)
3686 minfo ("SORT(");
3687 if (w->filename != NULL)
3688 minfo ("%s", w->filename);
3689 else
3690 minfo ("*");
3691 if (w->filenames_sorted)
3692 minfo (")");
3694 minfo ("(");
3695 for (sec = w->section_list; sec; sec = sec->next)
3697 if (sec->spec.sorted)
3698 minfo ("SORT(");
3699 if (sec->spec.exclude_name_list != NULL)
3701 name_list *tmp;
3702 minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
3703 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
3704 minfo (" %s", tmp->name);
3705 minfo (") ");
3707 if (sec->spec.name != NULL)
3708 minfo ("%s", sec->spec.name);
3709 else
3710 minfo ("*");
3711 if (sec->spec.sorted)
3712 minfo (")");
3713 if (sec->next)
3714 minfo (" ");
3716 minfo (")");
3718 print_nl ();
3720 print_statement_list (w->children.head, os);
3723 /* Print a group statement. */
3725 static void
3726 print_group (lang_group_statement_type *s,
3727 lang_output_section_statement_type *os)
3729 fprintf (config.map_file, "START GROUP\n");
3730 print_statement_list (s->children.head, os);
3731 fprintf (config.map_file, "END GROUP\n");
3734 /* Print the list of statements in S.
3735 This can be called for any statement type. */
3737 static void
3738 print_statement_list (lang_statement_union_type *s,
3739 lang_output_section_statement_type *os)
3741 while (s != NULL)
3743 print_statement (s, os);
3744 s = s->header.next;
3748 /* Print the first statement in statement list S.
3749 This can be called for any statement type. */
3751 static void
3752 print_statement (lang_statement_union_type *s,
3753 lang_output_section_statement_type *os)
3755 switch (s->header.type)
3757 default:
3758 fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
3759 FAIL ();
3760 break;
3761 case lang_constructors_statement_enum:
3762 if (constructor_list.head != NULL)
3764 if (constructors_sorted)
3765 minfo (" SORT (CONSTRUCTORS)\n");
3766 else
3767 minfo (" CONSTRUCTORS\n");
3768 print_statement_list (constructor_list.head, os);
3770 break;
3771 case lang_wild_statement_enum:
3772 print_wild_statement (&s->wild_statement, os);
3773 break;
3774 case lang_address_statement_enum:
3775 print_address_statement (&s->address_statement);
3776 break;
3777 case lang_object_symbols_statement_enum:
3778 minfo (" CREATE_OBJECT_SYMBOLS\n");
3779 break;
3780 case lang_fill_statement_enum:
3781 print_fill_statement (&s->fill_statement);
3782 break;
3783 case lang_data_statement_enum:
3784 print_data_statement (&s->data_statement);
3785 break;
3786 case lang_reloc_statement_enum:
3787 print_reloc_statement (&s->reloc_statement);
3788 break;
3789 case lang_input_section_enum:
3790 print_input_section (&s->input_section);
3791 break;
3792 case lang_padding_statement_enum:
3793 print_padding_statement (&s->padding_statement);
3794 break;
3795 case lang_output_section_statement_enum:
3796 print_output_section_statement (&s->output_section_statement);
3797 break;
3798 case lang_assignment_statement_enum:
3799 print_assignment (&s->assignment_statement, os);
3800 break;
3801 case lang_target_statement_enum:
3802 fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
3803 break;
3804 case lang_output_statement_enum:
3805 minfo ("OUTPUT(%s", s->output_statement.name);
3806 if (output_target != NULL)
3807 minfo (" %s", output_target);
3808 minfo (")\n");
3809 break;
3810 case lang_input_statement_enum:
3811 print_input_statement (&s->input_statement);
3812 break;
3813 case lang_group_statement_enum:
3814 print_group (&s->group_statement, os);
3815 break;
3816 case lang_afile_asection_pair_statement_enum:
3817 FAIL ();
3818 break;
3822 static void
3823 print_statements (void)
3825 print_statement_list (statement_list.head, abs_output_section);
3828 /* Print the first N statements in statement list S to STDERR.
3829 If N == 0, nothing is printed.
3830 If N < 0, the entire list is printed.
3831 Intended to be called from GDB. */
3833 void
3834 dprint_statement (lang_statement_union_type *s, int n)
3836 FILE *map_save = config.map_file;
3838 config.map_file = stderr;
3840 if (n < 0)
3841 print_statement_list (s, abs_output_section);
3842 else
3844 while (s && --n >= 0)
3846 print_statement (s, abs_output_section);
3847 s = s->header.next;
3851 config.map_file = map_save;
3854 static void
3855 insert_pad (lang_statement_union_type **ptr,
3856 fill_type *fill,
3857 unsigned int alignment_needed,
3858 asection *output_section,
3859 bfd_vma dot)
3861 static fill_type zero_fill = { 1, { 0 } };
3862 lang_statement_union_type *pad = NULL;
3864 if (ptr != &statement_list.head)
3865 pad = ((lang_statement_union_type *)
3866 ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
3867 if (pad != NULL
3868 && pad->header.type == lang_padding_statement_enum
3869 && pad->padding_statement.output_section == output_section)
3871 /* Use the existing pad statement. */
3873 else if ((pad = *ptr) != NULL
3874 && pad->header.type == lang_padding_statement_enum
3875 && pad->padding_statement.output_section == output_section)
3877 /* Use the existing pad statement. */
3879 else
3881 /* Make a new padding statement, linked into existing chain. */
3882 pad = stat_alloc (sizeof (lang_padding_statement_type));
3883 pad->header.next = *ptr;
3884 *ptr = pad;
3885 pad->header.type = lang_padding_statement_enum;
3886 pad->padding_statement.output_section = output_section;
3887 if (fill == NULL)
3888 fill = &zero_fill;
3889 pad->padding_statement.fill = fill;
3891 pad->padding_statement.output_offset = dot - output_section->vma;
3892 pad->padding_statement.size = alignment_needed;
3893 output_section->size += alignment_needed;
3896 /* Work out how much this section will move the dot point. */
3898 static bfd_vma
3899 size_input_section
3900 (lang_statement_union_type **this_ptr,
3901 lang_output_section_statement_type *output_section_statement,
3902 fill_type *fill,
3903 bfd_vma dot)
3905 lang_input_section_type *is = &((*this_ptr)->input_section);
3906 asection *i = is->section;
3908 if (!is->ifile->just_syms_flag && (i->flags & SEC_EXCLUDE) == 0)
3910 unsigned int alignment_needed;
3911 asection *o;
3913 /* Align this section first to the input sections requirement,
3914 then to the output section's requirement. If this alignment
3915 is greater than any seen before, then record it too. Perform
3916 the alignment by inserting a magic 'padding' statement. */
3918 if (output_section_statement->subsection_alignment != -1)
3919 i->alignment_power = output_section_statement->subsection_alignment;
3921 o = output_section_statement->bfd_section;
3922 if (o->alignment_power < i->alignment_power)
3923 o->alignment_power = i->alignment_power;
3925 alignment_needed = align_power (dot, i->alignment_power) - dot;
3927 if (alignment_needed != 0)
3929 insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
3930 dot += alignment_needed;
3933 /* Remember where in the output section this input section goes. */
3935 i->output_offset = dot - o->vma;
3937 /* Mark how big the output section must be to contain this now. */
3938 dot += TO_ADDR (i->size);
3939 o->size = TO_SIZE (dot - o->vma);
3941 else
3943 i->output_offset = i->vma - output_section_statement->bfd_section->vma;
3946 return dot;
3949 static int
3950 sort_sections_by_lma (const void *arg1, const void *arg2)
3952 const asection *sec1 = *(const asection **) arg1;
3953 const asection *sec2 = *(const asection **) arg2;
3955 if (bfd_section_lma (sec1->owner, sec1)
3956 < bfd_section_lma (sec2->owner, sec2))
3957 return -1;
3958 else if (bfd_section_lma (sec1->owner, sec1)
3959 > bfd_section_lma (sec2->owner, sec2))
3960 return 1;
3962 return 0;
3965 #define IGNORE_SECTION(s) \
3966 ((s->flags & SEC_NEVER_LOAD) != 0 \
3967 || (s->flags & SEC_ALLOC) == 0 \
3968 || ((s->flags & SEC_THREAD_LOCAL) != 0 \
3969 && (s->flags & SEC_LOAD) == 0))
3971 /* Check to see if any allocated sections overlap with other allocated
3972 sections. This can happen if a linker script specifies the output
3973 section addresses of the two sections. */
3975 static void
3976 lang_check_section_addresses (void)
3978 asection *s, *os;
3979 asection **sections, **spp;
3980 unsigned int count;
3981 bfd_vma s_start;
3982 bfd_vma s_end;
3983 bfd_vma os_start;
3984 bfd_vma os_end;
3985 bfd_size_type amt;
3987 if (bfd_count_sections (output_bfd) <= 1)
3988 return;
3990 amt = bfd_count_sections (output_bfd) * sizeof (asection *);
3991 sections = xmalloc (amt);
3993 /* Scan all sections in the output list. */
3994 count = 0;
3995 for (s = output_bfd->sections; s != NULL; s = s->next)
3997 /* Only consider loadable sections with real contents. */
3998 if (IGNORE_SECTION (s) || s->size == 0)
3999 continue;
4001 sections[count] = s;
4002 count++;
4005 if (count <= 1)
4006 return;
4008 qsort (sections, (size_t) count, sizeof (asection *),
4009 sort_sections_by_lma);
4011 spp = sections;
4012 s = *spp++;
4013 s_start = bfd_section_lma (output_bfd, s);
4014 s_end = s_start + TO_ADDR (s->size) - 1;
4015 for (count--; count; count--)
4017 /* We must check the sections' LMA addresses not their VMA
4018 addresses because overlay sections can have overlapping VMAs
4019 but they must have distinct LMAs. */
4020 os = s;
4021 os_start = s_start;
4022 os_end = s_end;
4023 s = *spp++;
4024 s_start = bfd_section_lma (output_bfd, s);
4025 s_end = s_start + TO_ADDR (s->size) - 1;
4027 /* Look for an overlap. */
4028 if (s_end >= os_start && s_start <= os_end)
4029 einfo (_("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
4030 s->name, s_start, s_end, os->name, os_start, os_end);
4033 free (sections);
4036 /* Make sure the new address is within the region. We explicitly permit the
4037 current address to be at the exact end of the region when the address is
4038 non-zero, in case the region is at the end of addressable memory and the
4039 calculation wraps around. */
4041 static void
4042 os_region_check (lang_output_section_statement_type *os,
4043 lang_memory_region_type *region,
4044 etree_type *tree,
4045 bfd_vma base)
4047 if ((region->current < region->origin
4048 || (region->current - region->origin > region->length))
4049 && ((region->current != region->origin + region->length)
4050 || base == 0))
4052 if (tree != NULL)
4054 einfo (_("%X%P: address 0x%v of %B section %s"
4055 " is not within region %s\n"),
4056 region->current,
4057 os->bfd_section->owner,
4058 os->bfd_section->name,
4059 region->name);
4061 else
4063 einfo (_("%X%P: region %s is full (%B section %s)\n"),
4064 region->name,
4065 os->bfd_section->owner,
4066 os->bfd_section->name);
4068 /* Reset the region pointer. */
4069 region->current = region->origin;
4073 /* Set the sizes for all the output sections. */
4075 static bfd_vma
4076 lang_size_sections_1
4077 (lang_statement_union_type *s,
4078 lang_output_section_statement_type *output_section_statement,
4079 lang_statement_union_type **prev,
4080 fill_type *fill,
4081 bfd_vma dot,
4082 bfd_boolean *relax,
4083 bfd_boolean check_regions)
4085 /* Size up the sections from their constituent parts. */
4086 for (; s != NULL; s = s->header.next)
4088 switch (s->header.type)
4090 case lang_output_section_statement_enum:
4092 bfd_vma newdot, after;
4093 lang_output_section_statement_type *os;
4095 os = &s->output_section_statement;
4096 if (os->addr_tree != NULL)
4098 os->processed = FALSE;
4099 exp_fold_tree (os->addr_tree, bfd_abs_section_ptr, &dot);
4101 if (!expld.result.valid_p
4102 && expld.phase != lang_mark_phase_enum)
4103 einfo (_("%F%S: non constant or forward reference"
4104 " address expression for section %s\n"),
4105 os->name);
4107 dot = expld.result.value + expld.result.section->vma;
4110 if (os->bfd_section == NULL)
4111 /* This section was removed or never actually created. */
4112 break;
4114 /* If this is a COFF shared library section, use the size and
4115 address from the input section. FIXME: This is COFF
4116 specific; it would be cleaner if there were some other way
4117 to do this, but nothing simple comes to mind. */
4118 if ((bfd_get_flavour (output_bfd) == bfd_target_ecoff_flavour
4119 || bfd_get_flavour (output_bfd) == bfd_target_coff_flavour)
4120 && (os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
4122 asection *input;
4124 if (os->children.head == NULL
4125 || os->children.head->header.next != NULL
4126 || (os->children.head->header.type
4127 != lang_input_section_enum))
4128 einfo (_("%P%X: Internal error on COFF shared library"
4129 " section %s\n"), os->name);
4131 input = os->children.head->input_section.section;
4132 bfd_set_section_vma (os->bfd_section->owner,
4133 os->bfd_section,
4134 bfd_section_vma (input->owner, input));
4135 os->bfd_section->size = input->size;
4136 break;
4139 newdot = dot;
4140 if (bfd_is_abs_section (os->bfd_section))
4142 /* No matter what happens, an abs section starts at zero. */
4143 ASSERT (os->bfd_section->vma == 0);
4145 else
4147 if (os->addr_tree == NULL)
4149 /* No address specified for this section, get one
4150 from the region specification. */
4151 if (os->region == NULL
4152 || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))
4153 && os->region->name[0] == '*'
4154 && strcmp (os->region->name,
4155 DEFAULT_MEMORY_REGION) == 0))
4157 os->region = lang_memory_default (os->bfd_section);
4160 /* If a loadable section is using the default memory
4161 region, and some non default memory regions were
4162 defined, issue an error message. */
4163 if (!IGNORE_SECTION (os->bfd_section)
4164 && ! link_info.relocatable
4165 && check_regions
4166 && strcmp (os->region->name,
4167 DEFAULT_MEMORY_REGION) == 0
4168 && lang_memory_region_list != NULL
4169 && (strcmp (lang_memory_region_list->name,
4170 DEFAULT_MEMORY_REGION) != 0
4171 || lang_memory_region_list->next != NULL)
4172 && expld.phase != lang_mark_phase_enum)
4174 /* By default this is an error rather than just a
4175 warning because if we allocate the section to the
4176 default memory region we can end up creating an
4177 excessively large binary, or even seg faulting when
4178 attempting to perform a negative seek. See
4179 sources.redhat.com/ml/binutils/2003-04/msg00423.html
4180 for an example of this. This behaviour can be
4181 overridden by the using the --no-check-sections
4182 switch. */
4183 if (command_line.check_section_addresses)
4184 einfo (_("%P%F: error: no memory region specified"
4185 " for loadable section `%s'\n"),
4186 bfd_get_section_name (output_bfd,
4187 os->bfd_section));
4188 else
4189 einfo (_("%P: warning: no memory region specified"
4190 " for loadable section `%s'\n"),
4191 bfd_get_section_name (output_bfd,
4192 os->bfd_section));
4195 newdot = os->region->current;
4197 if (os->section_alignment == -1)
4199 bfd_vma savedot = newdot;
4200 newdot = align_power (newdot,
4201 os->bfd_section->alignment_power);
4203 if (newdot != savedot
4204 && config.warn_section_align
4205 && expld.phase != lang_mark_phase_enum)
4206 einfo (_("%P: warning: changing start of section"
4207 " %s by %lu bytes\n"),
4208 os->name, (unsigned long) (newdot - savedot));
4212 /* The section starts here.
4213 First, align to what the section needs. */
4215 if (os->section_alignment != -1)
4216 newdot = align_power (newdot, os->section_alignment);
4218 bfd_set_section_vma (0, os->bfd_section, newdot);
4220 os->bfd_section->output_offset = 0;
4223 lang_size_sections_1 (os->children.head, os, &os->children.head,
4224 os->fill, newdot, relax, check_regions);
4226 os->processed = TRUE;
4228 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
4230 ASSERT (os->bfd_section->size == 0);
4231 break;
4234 dot = os->bfd_section->vma;
4236 /* Put the section within the requested block size, or
4237 align at the block boundary. */
4238 after = ((dot
4239 + TO_ADDR (os->bfd_section->size)
4240 + os->block_value - 1)
4241 & - (bfd_vma) os->block_value);
4243 os->bfd_section->size = TO_SIZE (after - os->bfd_section->vma);
4245 /* .tbss sections effectively have zero size. */
4246 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
4247 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
4248 || link_info.relocatable)
4249 dot += TO_ADDR (os->bfd_section->size);
4251 if (os->update_dot_tree != 0)
4252 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
4254 /* Update dot in the region ?
4255 We only do this if the section is going to be allocated,
4256 since unallocated sections do not contribute to the region's
4257 overall size in memory.
4259 If the SEC_NEVER_LOAD bit is not set, it will affect the
4260 addresses of sections after it. We have to update
4261 dot. */
4262 if (os->region != NULL
4263 && ((os->bfd_section->flags & SEC_NEVER_LOAD) == 0
4264 || (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))))
4266 os->region->current = dot;
4268 if (check_regions)
4269 /* Make sure the new address is within the region. */
4270 os_region_check (os, os->region, os->addr_tree,
4271 os->bfd_section->vma);
4273 /* If there's no load address specified, use the run
4274 region as the load region. */
4275 if (os->lma_region == NULL && os->load_base == NULL)
4276 os->lma_region = os->region;
4278 if (os->lma_region != NULL && os->lma_region != os->region)
4280 /* Set load_base, which will be handled later. */
4281 os->load_base = exp_intop (os->lma_region->current);
4282 os->lma_region->current +=
4283 TO_ADDR (os->bfd_section->size);
4284 if (check_regions)
4285 os_region_check (os, os->lma_region, NULL,
4286 os->bfd_section->lma);
4290 break;
4292 case lang_constructors_statement_enum:
4293 dot = lang_size_sections_1 (constructor_list.head,
4294 output_section_statement,
4295 &s->wild_statement.children.head,
4296 fill, dot, relax, check_regions);
4297 break;
4299 case lang_data_statement_enum:
4301 unsigned int size = 0;
4303 s->data_statement.output_offset =
4304 dot - output_section_statement->bfd_section->vma;
4305 s->data_statement.output_section =
4306 output_section_statement->bfd_section;
4308 /* We might refer to provided symbols in the expression, and
4309 need to mark them as needed. */
4310 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
4312 switch (s->data_statement.type)
4314 default:
4315 abort ();
4316 case QUAD:
4317 case SQUAD:
4318 size = QUAD_SIZE;
4319 break;
4320 case LONG:
4321 size = LONG_SIZE;
4322 break;
4323 case SHORT:
4324 size = SHORT_SIZE;
4325 break;
4326 case BYTE:
4327 size = BYTE_SIZE;
4328 break;
4330 if (size < TO_SIZE ((unsigned) 1))
4331 size = TO_SIZE ((unsigned) 1);
4332 dot += TO_ADDR (size);
4333 output_section_statement->bfd_section->size += size;
4335 break;
4337 case lang_reloc_statement_enum:
4339 int size;
4341 s->reloc_statement.output_offset =
4342 dot - output_section_statement->bfd_section->vma;
4343 s->reloc_statement.output_section =
4344 output_section_statement->bfd_section;
4345 size = bfd_get_reloc_size (s->reloc_statement.howto);
4346 dot += TO_ADDR (size);
4347 output_section_statement->bfd_section->size += size;
4349 break;
4351 case lang_wild_statement_enum:
4352 dot = lang_size_sections_1 (s->wild_statement.children.head,
4353 output_section_statement,
4354 &s->wild_statement.children.head,
4355 fill, dot, relax, check_regions);
4356 break;
4358 case lang_object_symbols_statement_enum:
4359 link_info.create_object_symbols_section =
4360 output_section_statement->bfd_section;
4361 break;
4363 case lang_output_statement_enum:
4364 case lang_target_statement_enum:
4365 break;
4367 case lang_input_section_enum:
4369 asection *i;
4371 i = (*prev)->input_section.section;
4372 if (relax)
4374 bfd_boolean again;
4376 if (! bfd_relax_section (i->owner, i, &link_info, &again))
4377 einfo (_("%P%F: can't relax section: %E\n"));
4378 if (again)
4379 *relax = TRUE;
4381 dot = size_input_section (prev, output_section_statement,
4382 output_section_statement->fill, dot);
4384 break;
4386 case lang_input_statement_enum:
4387 break;
4389 case lang_fill_statement_enum:
4390 s->fill_statement.output_section =
4391 output_section_statement->bfd_section;
4393 fill = s->fill_statement.fill;
4394 break;
4396 case lang_assignment_statement_enum:
4398 bfd_vma newdot = dot;
4400 exp_fold_tree (s->assignment_statement.exp,
4401 output_section_statement->bfd_section,
4402 &newdot);
4404 if (newdot != dot && !output_section_statement->ignored)
4406 if (output_section_statement == abs_output_section)
4408 /* If we don't have an output section, then just adjust
4409 the default memory address. */
4410 lang_memory_region_lookup (DEFAULT_MEMORY_REGION,
4411 FALSE)->current = newdot;
4413 else
4415 /* Insert a pad after this statement. We can't
4416 put the pad before when relaxing, in case the
4417 assignment references dot. */
4418 insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
4419 output_section_statement->bfd_section, dot);
4421 /* Don't neuter the pad below when relaxing. */
4422 s = s->header.next;
4424 /* If dot is advanced, this implies that the section
4425 should have space allocated to it, unless the
4426 user has explicitly stated that the section
4427 should never be loaded. */
4428 if (!(output_section_statement->flags
4429 & (SEC_NEVER_LOAD | SEC_ALLOC)))
4430 output_section_statement->bfd_section->flags |= SEC_ALLOC;
4432 dot = newdot;
4435 break;
4437 case lang_padding_statement_enum:
4438 /* If this is the first time lang_size_sections is called,
4439 we won't have any padding statements. If this is the
4440 second or later passes when relaxing, we should allow
4441 padding to shrink. If padding is needed on this pass, it
4442 will be added back in. */
4443 s->padding_statement.size = 0;
4445 /* Make sure output_offset is valid. If relaxation shrinks
4446 the section and this pad isn't needed, it's possible to
4447 have output_offset larger than the final size of the
4448 section. bfd_set_section_contents will complain even for
4449 a pad size of zero. */
4450 s->padding_statement.output_offset
4451 = dot - output_section_statement->bfd_section->vma;
4452 break;
4454 case lang_group_statement_enum:
4455 dot = lang_size_sections_1 (s->group_statement.children.head,
4456 output_section_statement,
4457 &s->group_statement.children.head,
4458 fill, dot, relax, check_regions);
4459 break;
4461 default:
4462 FAIL ();
4463 break;
4465 /* We can only get here when relaxing is turned on. */
4466 case lang_address_statement_enum:
4467 break;
4469 prev = &s->header.next;
4471 return dot;
4474 void
4475 one_lang_size_sections_pass (bfd_boolean *relax, bfd_boolean check_regions)
4477 lang_statement_iteration++;
4478 lang_size_sections_1 (statement_list.head, abs_output_section,
4479 &statement_list.head, 0, 0, relax, check_regions);
4482 void
4483 lang_size_sections (bfd_boolean *relax, bfd_boolean check_regions)
4485 expld.phase = lang_allocating_phase_enum;
4486 expld.dataseg.phase = exp_dataseg_none;
4488 one_lang_size_sections_pass (relax, check_regions);
4489 if (expld.dataseg.phase == exp_dataseg_end_seen
4490 && link_info.relro && expld.dataseg.relro_end)
4492 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
4493 to put expld.dataseg.relro on a (common) page boundary. */
4494 bfd_vma old_min_base, relro_end, maxpage;
4496 expld.dataseg.phase = exp_dataseg_relro_adjust;
4497 old_min_base = expld.dataseg.min_base;
4498 maxpage = expld.dataseg.maxpagesize;
4499 expld.dataseg.base += (-expld.dataseg.relro_end
4500 & (expld.dataseg.pagesize - 1));
4501 /* Compute the expected PT_GNU_RELRO segment end. */
4502 relro_end = (expld.dataseg.relro_end + expld.dataseg.pagesize - 1)
4503 & ~(expld.dataseg.pagesize - 1);
4504 if (old_min_base + maxpage < expld.dataseg.base)
4506 expld.dataseg.base -= maxpage;
4507 relro_end -= maxpage;
4509 one_lang_size_sections_pass (relax, check_regions);
4510 if (expld.dataseg.relro_end > relro_end)
4512 /* The alignment of sections between DATA_SEGMENT_ALIGN
4513 and DATA_SEGMENT_RELRO_END caused huge padding to be
4514 inserted at DATA_SEGMENT_RELRO_END. Try some other base. */
4515 asection *sec;
4516 unsigned int max_alignment_power = 0;
4518 /* Find maximum alignment power of sections between
4519 DATA_SEGMENT_ALIGN and DATA_SEGMENT_RELRO_END. */
4520 for (sec = output_bfd->sections; sec; sec = sec->next)
4521 if (sec->vma >= expld.dataseg.base
4522 && sec->vma < expld.dataseg.relro_end
4523 && sec->alignment_power > max_alignment_power)
4524 max_alignment_power = sec->alignment_power;
4526 if (((bfd_vma) 1 << max_alignment_power) < expld.dataseg.pagesize)
4528 if (expld.dataseg.base - (1 << max_alignment_power)
4529 < old_min_base)
4530 expld.dataseg.base += expld.dataseg.pagesize;
4531 expld.dataseg.base -= (1 << max_alignment_power);
4532 one_lang_size_sections_pass (relax, check_regions);
4535 link_info.relro_start = expld.dataseg.base;
4536 link_info.relro_end = expld.dataseg.relro_end;
4538 else if (expld.dataseg.phase == exp_dataseg_end_seen)
4540 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
4541 a page could be saved in the data segment. */
4542 bfd_vma first, last;
4544 first = -expld.dataseg.base & (expld.dataseg.pagesize - 1);
4545 last = expld.dataseg.end & (expld.dataseg.pagesize - 1);
4546 if (first && last
4547 && ((expld.dataseg.base & ~(expld.dataseg.pagesize - 1))
4548 != (expld.dataseg.end & ~(expld.dataseg.pagesize - 1)))
4549 && first + last <= expld.dataseg.pagesize)
4551 expld.dataseg.phase = exp_dataseg_adjust;
4552 one_lang_size_sections_pass (relax, check_regions);
4556 expld.phase = lang_final_phase_enum;
4559 /* Worker function for lang_do_assignments. Recursiveness goes here. */
4561 static bfd_vma
4562 lang_do_assignments_1
4563 (lang_statement_union_type *s,
4564 lang_output_section_statement_type *output_section_statement,
4565 fill_type *fill,
4566 bfd_vma dot)
4568 for (; s != NULL; s = s->header.next)
4570 switch (s->header.type)
4572 case lang_constructors_statement_enum:
4573 dot = lang_do_assignments_1 (constructor_list.head,
4574 output_section_statement,
4575 fill,
4576 dot);
4577 break;
4579 case lang_output_section_statement_enum:
4581 lang_output_section_statement_type *os;
4583 os = &(s->output_section_statement);
4584 if (os->bfd_section != NULL && !os->ignored)
4586 dot = os->bfd_section->vma;
4587 lang_do_assignments_1 (os->children.head, os, os->fill, dot);
4588 /* .tbss sections effectively have zero size. */
4589 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
4590 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
4591 || link_info.relocatable)
4592 dot += TO_ADDR (os->bfd_section->size);
4594 if (os->load_base)
4596 /* If nothing has been placed into the output section then
4597 it won't have a bfd_section. */
4598 if (os->bfd_section && !os->ignored)
4600 os->bfd_section->lma
4601 = exp_get_abs_int (os->load_base, 0, "load base");
4605 break;
4607 case lang_wild_statement_enum:
4609 dot = lang_do_assignments_1 (s->wild_statement.children.head,
4610 output_section_statement,
4611 fill, dot);
4612 break;
4614 case lang_object_symbols_statement_enum:
4615 case lang_output_statement_enum:
4616 case lang_target_statement_enum:
4617 break;
4619 case lang_data_statement_enum:
4620 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
4621 if (expld.result.valid_p)
4622 s->data_statement.value = (expld.result.value
4623 + expld.result.section->vma);
4624 else
4625 einfo (_("%F%P: invalid data statement\n"));
4627 unsigned int size;
4628 switch (s->data_statement.type)
4630 default:
4631 abort ();
4632 case QUAD:
4633 case SQUAD:
4634 size = QUAD_SIZE;
4635 break;
4636 case LONG:
4637 size = LONG_SIZE;
4638 break;
4639 case SHORT:
4640 size = SHORT_SIZE;
4641 break;
4642 case BYTE:
4643 size = BYTE_SIZE;
4644 break;
4646 if (size < TO_SIZE ((unsigned) 1))
4647 size = TO_SIZE ((unsigned) 1);
4648 dot += TO_ADDR (size);
4650 break;
4652 case lang_reloc_statement_enum:
4653 exp_fold_tree (s->reloc_statement.addend_exp,
4654 bfd_abs_section_ptr, &dot);
4655 if (expld.result.valid_p)
4656 s->reloc_statement.addend_value = expld.result.value;
4657 else
4658 einfo (_("%F%P: invalid reloc statement\n"));
4659 dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
4660 break;
4662 case lang_input_section_enum:
4664 asection *in = s->input_section.section;
4666 if ((in->flags & SEC_EXCLUDE) == 0)
4667 dot += TO_ADDR (in->size);
4669 break;
4671 case lang_input_statement_enum:
4672 break;
4674 case lang_fill_statement_enum:
4675 fill = s->fill_statement.fill;
4676 break;
4678 case lang_assignment_statement_enum:
4679 exp_fold_tree (s->assignment_statement.exp,
4680 output_section_statement->bfd_section,
4681 &dot);
4682 break;
4684 case lang_padding_statement_enum:
4685 dot += TO_ADDR (s->padding_statement.size);
4686 break;
4688 case lang_group_statement_enum:
4689 dot = lang_do_assignments_1 (s->group_statement.children.head,
4690 output_section_statement,
4691 fill, dot);
4692 break;
4694 default:
4695 FAIL ();
4696 break;
4698 case lang_address_statement_enum:
4699 break;
4702 return dot;
4705 void
4706 lang_do_assignments (void)
4708 lang_statement_iteration++;
4709 lang_do_assignments_1 (statement_list.head, abs_output_section, NULL, 0);
4712 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
4713 operator .startof. (section_name), it produces an undefined symbol
4714 .startof.section_name. Similarly, when it sees
4715 .sizeof. (section_name), it produces an undefined symbol
4716 .sizeof.section_name. For all the output sections, we look for
4717 such symbols, and set them to the correct value. */
4719 static void
4720 lang_set_startof (void)
4722 asection *s;
4724 if (link_info.relocatable)
4725 return;
4727 for (s = output_bfd->sections; s != NULL; s = s->next)
4729 const char *secname;
4730 char *buf;
4731 struct bfd_link_hash_entry *h;
4733 secname = bfd_get_section_name (output_bfd, s);
4734 buf = xmalloc (10 + strlen (secname));
4736 sprintf (buf, ".startof.%s", secname);
4737 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
4738 if (h != NULL && h->type == bfd_link_hash_undefined)
4740 h->type = bfd_link_hash_defined;
4741 h->u.def.value = bfd_get_section_vma (output_bfd, s);
4742 h->u.def.section = bfd_abs_section_ptr;
4745 sprintf (buf, ".sizeof.%s", secname);
4746 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
4747 if (h != NULL && h->type == bfd_link_hash_undefined)
4749 h->type = bfd_link_hash_defined;
4750 h->u.def.value = TO_ADDR (s->size);
4751 h->u.def.section = bfd_abs_section_ptr;
4754 free (buf);
4758 static void
4759 lang_end (void)
4761 struct bfd_link_hash_entry *h;
4762 bfd_boolean warn;
4764 if (link_info.relocatable || link_info.shared)
4765 warn = FALSE;
4766 else
4767 warn = TRUE;
4769 if (entry_symbol.name == NULL)
4771 /* No entry has been specified. Look for the default entry, but
4772 don't warn if we don't find it. */
4773 entry_symbol.name = entry_symbol_default;
4774 warn = FALSE;
4777 h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
4778 FALSE, FALSE, TRUE);
4779 if (h != NULL
4780 && (h->type == bfd_link_hash_defined
4781 || h->type == bfd_link_hash_defweak)
4782 && h->u.def.section->output_section != NULL)
4784 bfd_vma val;
4786 val = (h->u.def.value
4787 + bfd_get_section_vma (output_bfd,
4788 h->u.def.section->output_section)
4789 + h->u.def.section->output_offset);
4790 if (! bfd_set_start_address (output_bfd, val))
4791 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
4793 else
4795 bfd_vma val;
4796 const char *send;
4798 /* We couldn't find the entry symbol. Try parsing it as a
4799 number. */
4800 val = bfd_scan_vma (entry_symbol.name, &send, 0);
4801 if (*send == '\0')
4803 if (! bfd_set_start_address (output_bfd, val))
4804 einfo (_("%P%F: can't set start address\n"));
4806 else
4808 asection *ts;
4810 /* Can't find the entry symbol, and it's not a number. Use
4811 the first address in the text section. */
4812 ts = bfd_get_section_by_name (output_bfd, entry_section);
4813 if (ts != NULL)
4815 if (warn)
4816 einfo (_("%P: warning: cannot find entry symbol %s;"
4817 " defaulting to %V\n"),
4818 entry_symbol.name,
4819 bfd_get_section_vma (output_bfd, ts));
4820 if (! bfd_set_start_address (output_bfd,
4821 bfd_get_section_vma (output_bfd,
4822 ts)))
4823 einfo (_("%P%F: can't set start address\n"));
4825 else
4827 if (warn)
4828 einfo (_("%P: warning: cannot find entry symbol %s;"
4829 " not setting start address\n"),
4830 entry_symbol.name);
4835 /* Don't bfd_hash_table_free (&lang_definedness_table);
4836 map file output may result in a call of lang_track_definedness. */
4839 /* This is a small function used when we want to ignore errors from
4840 BFD. */
4842 static void
4843 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
4845 /* Don't do anything. */
4848 /* Check that the architecture of all the input files is compatible
4849 with the output file. Also call the backend to let it do any
4850 other checking that is needed. */
4852 static void
4853 lang_check (void)
4855 lang_statement_union_type *file;
4856 bfd *input_bfd;
4857 const bfd_arch_info_type *compatible;
4859 for (file = file_chain.head; file != NULL; file = file->input_statement.next)
4861 input_bfd = file->input_statement.the_bfd;
4862 compatible
4863 = bfd_arch_get_compatible (input_bfd, output_bfd,
4864 command_line.accept_unknown_input_arch);
4866 /* In general it is not possible to perform a relocatable
4867 link between differing object formats when the input
4868 file has relocations, because the relocations in the
4869 input format may not have equivalent representations in
4870 the output format (and besides BFD does not translate
4871 relocs for other link purposes than a final link). */
4872 if ((link_info.relocatable || link_info.emitrelocations)
4873 && (compatible == NULL
4874 || bfd_get_flavour (input_bfd) != bfd_get_flavour (output_bfd))
4875 && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
4877 einfo (_("%P%F: Relocatable linking with relocations from"
4878 " format %s (%B) to format %s (%B) is not supported\n"),
4879 bfd_get_target (input_bfd), input_bfd,
4880 bfd_get_target (output_bfd), output_bfd);
4881 /* einfo with %F exits. */
4884 if (compatible == NULL)
4886 if (command_line.warn_mismatch)
4887 einfo (_("%P: warning: %s architecture of input file `%B'"
4888 " is incompatible with %s output\n"),
4889 bfd_printable_name (input_bfd), input_bfd,
4890 bfd_printable_name (output_bfd));
4892 else if (bfd_count_sections (input_bfd))
4894 /* If the input bfd has no contents, it shouldn't set the
4895 private data of the output bfd. */
4897 bfd_error_handler_type pfn = NULL;
4899 /* If we aren't supposed to warn about mismatched input
4900 files, temporarily set the BFD error handler to a
4901 function which will do nothing. We still want to call
4902 bfd_merge_private_bfd_data, since it may set up
4903 information which is needed in the output file. */
4904 if (! command_line.warn_mismatch)
4905 pfn = bfd_set_error_handler (ignore_bfd_errors);
4906 if (! bfd_merge_private_bfd_data (input_bfd, output_bfd))
4908 if (command_line.warn_mismatch)
4909 einfo (_("%P%X: failed to merge target specific data"
4910 " of file %B\n"), input_bfd);
4912 if (! command_line.warn_mismatch)
4913 bfd_set_error_handler (pfn);
4918 /* Look through all the global common symbols and attach them to the
4919 correct section. The -sort-common command line switch may be used
4920 to roughly sort the entries by size. */
4922 static void
4923 lang_common (void)
4925 if (command_line.inhibit_common_definition)
4926 return;
4927 if (link_info.relocatable
4928 && ! command_line.force_common_definition)
4929 return;
4931 if (! config.sort_common)
4932 bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
4933 else
4935 int power;
4937 for (power = 4; power >= 0; power--)
4938 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
4942 /* Place one common symbol in the correct section. */
4944 static bfd_boolean
4945 lang_one_common (struct bfd_link_hash_entry *h, void *info)
4947 unsigned int power_of_two;
4948 bfd_vma size;
4949 asection *section;
4951 if (h->type != bfd_link_hash_common)
4952 return TRUE;
4954 size = h->u.c.size;
4955 power_of_two = h->u.c.p->alignment_power;
4957 if (config.sort_common
4958 && power_of_two < (unsigned int) *(int *) info)
4959 return TRUE;
4961 section = h->u.c.p->section;
4963 /* Increase the size of the section to align the common sym. */
4964 section->size += ((bfd_vma) 1 << (power_of_two + opb_shift)) - 1;
4965 section->size &= (- (bfd_vma) 1 << (power_of_two + opb_shift));
4967 /* Adjust the alignment if necessary. */
4968 if (power_of_two > section->alignment_power)
4969 section->alignment_power = power_of_two;
4971 /* Change the symbol from common to defined. */
4972 h->type = bfd_link_hash_defined;
4973 h->u.def.section = section;
4974 h->u.def.value = section->size;
4976 /* Increase the size of the section. */
4977 section->size += size;
4979 /* Make sure the section is allocated in memory, and make sure that
4980 it is no longer a common section. */
4981 section->flags |= SEC_ALLOC;
4982 section->flags &= ~SEC_IS_COMMON;
4984 if (config.map_file != NULL)
4986 static bfd_boolean header_printed;
4987 int len;
4988 char *name;
4989 char buf[50];
4991 if (! header_printed)
4993 minfo (_("\nAllocating common symbols\n"));
4994 minfo (_("Common symbol size file\n\n"));
4995 header_printed = TRUE;
4998 name = demangle (h->root.string);
4999 minfo ("%s", name);
5000 len = strlen (name);
5001 free (name);
5003 if (len >= 19)
5005 print_nl ();
5006 len = 0;
5008 while (len < 20)
5010 print_space ();
5011 ++len;
5014 minfo ("0x");
5015 if (size <= 0xffffffff)
5016 sprintf (buf, "%lx", (unsigned long) size);
5017 else
5018 sprintf_vma (buf, size);
5019 minfo ("%s", buf);
5020 len = strlen (buf);
5022 while (len < 16)
5024 print_space ();
5025 ++len;
5028 minfo ("%B\n", section->owner);
5031 return TRUE;
5034 /* Run through the input files and ensure that every input section has
5035 somewhere to go. If one is found without a destination then create
5036 an input request and place it into the statement tree. */
5038 static void
5039 lang_place_orphans (void)
5041 LANG_FOR_EACH_INPUT_STATEMENT (file)
5043 asection *s;
5045 for (s = file->the_bfd->sections; s != NULL; s = s->next)
5047 if (s->output_section == NULL)
5049 /* This section of the file is not attached, root
5050 around for a sensible place for it to go. */
5052 if (file->just_syms_flag)
5053 bfd_link_just_syms (file->the_bfd, s, &link_info);
5054 else if ((s->flags & SEC_EXCLUDE) != 0)
5055 s->output_section = bfd_abs_section_ptr;
5056 else if (strcmp (s->name, "COMMON") == 0)
5058 /* This is a lonely common section which must have
5059 come from an archive. We attach to the section
5060 with the wildcard. */
5061 if (! link_info.relocatable
5062 || command_line.force_common_definition)
5064 if (default_common_section == NULL)
5066 default_common_section =
5067 lang_output_section_statement_lookup (".bss");
5070 lang_add_section (&default_common_section->children, s,
5071 default_common_section, file);
5074 else if (ldemul_place_orphan (file, s))
5076 else
5078 lang_output_section_statement_type *os;
5080 os = lang_output_section_statement_lookup (s->name);
5081 lang_add_section (&os->children, s, os, file);
5088 void
5089 lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
5091 flagword *ptr_flags;
5093 ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
5094 while (*flags)
5096 switch (*flags)
5098 case 'A': case 'a':
5099 *ptr_flags |= SEC_ALLOC;
5100 break;
5102 case 'R': case 'r':
5103 *ptr_flags |= SEC_READONLY;
5104 break;
5106 case 'W': case 'w':
5107 *ptr_flags |= SEC_DATA;
5108 break;
5110 case 'X': case 'x':
5111 *ptr_flags |= SEC_CODE;
5112 break;
5114 case 'L': case 'l':
5115 case 'I': case 'i':
5116 *ptr_flags |= SEC_LOAD;
5117 break;
5119 default:
5120 einfo (_("%P%F: invalid syntax in flags\n"));
5121 break;
5123 flags++;
5127 /* Call a function on each input file. This function will be called
5128 on an archive, but not on the elements. */
5130 void
5131 lang_for_each_input_file (void (*func) (lang_input_statement_type *))
5133 lang_input_statement_type *f;
5135 for (f = (lang_input_statement_type *) input_file_chain.head;
5136 f != NULL;
5137 f = (lang_input_statement_type *) f->next_real_file)
5138 func (f);
5141 /* Call a function on each file. The function will be called on all
5142 the elements of an archive which are included in the link, but will
5143 not be called on the archive file itself. */
5145 void
5146 lang_for_each_file (void (*func) (lang_input_statement_type *))
5148 LANG_FOR_EACH_INPUT_STATEMENT (f)
5150 func (f);
5154 void
5155 ldlang_add_file (lang_input_statement_type *entry)
5157 bfd **pp;
5159 lang_statement_append (&file_chain,
5160 (lang_statement_union_type *) entry,
5161 &entry->next);
5163 /* The BFD linker needs to have a list of all input BFDs involved in
5164 a link. */
5165 ASSERT (entry->the_bfd->link_next == NULL);
5166 ASSERT (entry->the_bfd != output_bfd);
5167 for (pp = &link_info.input_bfds; *pp != NULL; pp = &(*pp)->link_next)
5169 *pp = entry->the_bfd;
5170 entry->the_bfd->usrdata = entry;
5171 bfd_set_gp_size (entry->the_bfd, g_switch_value);
5173 /* Look through the sections and check for any which should not be
5174 included in the link. We need to do this now, so that we can
5175 notice when the backend linker tries to report multiple
5176 definition errors for symbols which are in sections we aren't
5177 going to link. FIXME: It might be better to entirely ignore
5178 symbols which are defined in sections which are going to be
5179 discarded. This would require modifying the backend linker for
5180 each backend which might set the SEC_LINK_ONCE flag. If we do
5181 this, we should probably handle SEC_EXCLUDE in the same way. */
5183 bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
5186 void
5187 lang_add_output (const char *name, int from_script)
5189 /* Make -o on command line override OUTPUT in script. */
5190 if (!had_output_filename || !from_script)
5192 output_filename = name;
5193 had_output_filename = TRUE;
5197 static lang_output_section_statement_type *current_section;
5199 static int
5200 topower (int x)
5202 unsigned int i = 1;
5203 int l;
5205 if (x < 0)
5206 return -1;
5208 for (l = 0; l < 32; l++)
5210 if (i >= (unsigned int) x)
5211 return l;
5212 i <<= 1;
5215 return 0;
5218 lang_output_section_statement_type *
5219 lang_enter_output_section_statement (const char *output_section_statement_name,
5220 etree_type *address_exp,
5221 enum section_type sectype,
5222 etree_type *align,
5223 etree_type *subalign,
5224 etree_type *ebase,
5225 int constraint)
5227 lang_output_section_statement_type *os;
5229 current_section =
5230 os =
5231 lang_output_section_statement_lookup_1 (output_section_statement_name,
5232 constraint);
5234 /* Make next things chain into subchain of this. */
5236 if (os->addr_tree == NULL)
5238 os->addr_tree = address_exp;
5240 os->sectype = sectype;
5241 if (sectype != noload_section)
5242 os->flags = SEC_NO_FLAGS;
5243 else
5244 os->flags = SEC_NEVER_LOAD;
5245 os->block_value = 1;
5246 stat_ptr = &os->children;
5248 os->subsection_alignment =
5249 topower (exp_get_value_int (subalign, -1, "subsection alignment"));
5250 os->section_alignment =
5251 topower (exp_get_value_int (align, -1, "section alignment"));
5253 os->load_base = ebase;
5254 return os;
5257 void
5258 lang_final (void)
5260 lang_output_statement_type *new =
5261 new_stat (lang_output_statement, stat_ptr);
5263 new->name = output_filename;
5266 /* Reset the current counters in the regions. */
5268 void
5269 lang_reset_memory_regions (void)
5271 lang_memory_region_type *p = lang_memory_region_list;
5272 asection *o;
5273 lang_output_section_statement_type *os;
5275 for (p = lang_memory_region_list; p != NULL; p = p->next)
5277 p->old_length = (bfd_size_type) (p->current - p->origin);
5278 p->current = p->origin;
5281 for (os = &lang_output_section_statement.head->output_section_statement;
5282 os != NULL;
5283 os = os->next)
5284 os->processed = FALSE;
5286 for (o = output_bfd->sections; o != NULL; o = o->next)
5288 /* Save the last size for possible use by bfd_relax_section. */
5289 o->rawsize = o->size;
5290 o->size = 0;
5294 /* Worker for lang_gc_sections_1. */
5296 static void
5297 gc_section_callback (lang_wild_statement_type *ptr,
5298 struct wildcard_list *sec ATTRIBUTE_UNUSED,
5299 asection *section,
5300 lang_input_statement_type *file ATTRIBUTE_UNUSED,
5301 void *data ATTRIBUTE_UNUSED)
5303 /* If the wild pattern was marked KEEP, the member sections
5304 should be as well. */
5305 if (ptr->keep_sections)
5306 section->flags |= SEC_KEEP;
5309 /* Iterate over sections marking them against GC. */
5311 static void
5312 lang_gc_sections_1 (lang_statement_union_type *s)
5314 for (; s != NULL; s = s->header.next)
5316 switch (s->header.type)
5318 case lang_wild_statement_enum:
5319 walk_wild (&s->wild_statement, gc_section_callback, NULL);
5320 break;
5321 case lang_constructors_statement_enum:
5322 lang_gc_sections_1 (constructor_list.head);
5323 break;
5324 case lang_output_section_statement_enum:
5325 lang_gc_sections_1 (s->output_section_statement.children.head);
5326 break;
5327 case lang_group_statement_enum:
5328 lang_gc_sections_1 (s->group_statement.children.head);
5329 break;
5330 default:
5331 break;
5336 static void
5337 lang_gc_sections (void)
5339 struct bfd_link_hash_entry *h;
5340 ldlang_undef_chain_list_type *ulist;
5342 /* Keep all sections so marked in the link script. */
5344 lang_gc_sections_1 (statement_list.head);
5346 /* Keep all sections containing symbols undefined on the command-line,
5347 and the section containing the entry symbol. */
5349 for (ulist = link_info.gc_sym_list; ulist; ulist = ulist->next)
5351 h = bfd_link_hash_lookup (link_info.hash, ulist->name,
5352 FALSE, FALSE, FALSE);
5354 if (h != NULL
5355 && (h->type == bfd_link_hash_defined
5356 || h->type == bfd_link_hash_defweak)
5357 && ! bfd_is_abs_section (h->u.def.section))
5359 h->u.def.section->flags |= SEC_KEEP;
5363 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
5364 the special case of debug info. (See bfd/stabs.c)
5365 Twiddle the flag here, to simplify later linker code. */
5366 if (link_info.relocatable)
5368 LANG_FOR_EACH_INPUT_STATEMENT (f)
5370 asection *sec;
5371 for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next)
5372 if ((sec->flags & SEC_DEBUGGING) == 0)
5373 sec->flags &= ~SEC_EXCLUDE;
5377 if (link_info.gc_sections)
5378 bfd_gc_sections (output_bfd, &link_info);
5381 void
5382 lang_process (void)
5384 current_target = default_target;
5386 /* Open the output file. */
5387 lang_for_each_statement (ldlang_open_output);
5388 init_opb ();
5390 ldemul_create_output_section_statements ();
5392 /* Add to the hash table all undefineds on the command line. */
5393 lang_place_undefineds ();
5395 if (!bfd_section_already_linked_table_init ())
5396 einfo (_("%P%F: Failed to create hash table\n"));
5398 /* Create a bfd for each input file. */
5399 current_target = default_target;
5400 open_input_bfds (statement_list.head, FALSE);
5402 link_info.gc_sym_list = &entry_symbol;
5403 if (entry_symbol.name == NULL)
5404 link_info.gc_sym_list = ldlang_undef_chain_list_head;
5406 ldemul_after_open ();
5408 bfd_section_already_linked_table_free ();
5410 /* Make sure that we're not mixing architectures. We call this
5411 after all the input files have been opened, but before we do any
5412 other processing, so that any operations merge_private_bfd_data
5413 does on the output file will be known during the rest of the
5414 link. */
5415 lang_check ();
5417 /* Handle .exports instead of a version script if we're told to do so. */
5418 if (command_line.version_exports_section)
5419 lang_do_version_exports_section ();
5421 /* Build all sets based on the information gathered from the input
5422 files. */
5423 ldctor_build_sets ();
5425 /* Remove unreferenced sections if asked to. */
5426 lang_gc_sections ();
5428 /* Size up the common data. */
5429 lang_common ();
5431 /* Update wild statements. */
5432 update_wild_statements (statement_list.head);
5434 /* Run through the contours of the script and attach input sections
5435 to the correct output sections. */
5436 map_input_to_output_sections (statement_list.head, NULL, NULL);
5438 /* Find any sections not attached explicitly and handle them. */
5439 lang_place_orphans ();
5441 if (! link_info.relocatable)
5443 asection *found;
5445 /* Merge SEC_MERGE sections. This has to be done after GC of
5446 sections, so that GCed sections are not merged, but before
5447 assigning dynamic symbols, since removing whole input sections
5448 is hard then. */
5449 bfd_merge_sections (output_bfd, &link_info);
5451 /* Look for a text section and set the readonly attribute in it. */
5452 found = bfd_get_section_by_name (output_bfd, ".text");
5454 if (found != NULL)
5456 if (config.text_read_only)
5457 found->flags |= SEC_READONLY;
5458 else
5459 found->flags &= ~SEC_READONLY;
5463 /* Do anything special before sizing sections. This is where ELF
5464 and other back-ends size dynamic sections. */
5465 ldemul_before_allocation ();
5467 /* We must record the program headers before we try to fix the
5468 section positions, since they will affect SIZEOF_HEADERS. */
5469 lang_record_phdrs ();
5471 /* Size up the sections. */
5472 lang_size_sections (NULL, !command_line.relax);
5474 /* Now run around and relax if we can. */
5475 if (command_line.relax)
5477 /* Keep relaxing until bfd_relax_section gives up. */
5478 bfd_boolean relax_again;
5482 relax_again = FALSE;
5484 /* Note: pe-dll.c does something like this also. If you find
5485 you need to change this code, you probably need to change
5486 pe-dll.c also. DJ */
5488 /* Do all the assignments with our current guesses as to
5489 section sizes. */
5490 lang_do_assignments ();
5492 /* We must do this after lang_do_assignments, because it uses
5493 size. */
5494 lang_reset_memory_regions ();
5496 /* Perform another relax pass - this time we know where the
5497 globals are, so can make a better guess. */
5498 lang_size_sections (&relax_again, FALSE);
5500 /* If the normal relax is done and the relax finalize pass
5501 is not performed yet, we perform another relax pass. */
5502 if (!relax_again && link_info.need_relax_finalize)
5504 link_info.need_relax_finalize = FALSE;
5505 relax_again = TRUE;
5508 while (relax_again);
5510 /* Final extra sizing to report errors. */
5511 lang_do_assignments ();
5512 lang_reset_memory_regions ();
5513 lang_size_sections (NULL, TRUE);
5516 /* See if anything special should be done now we know how big
5517 everything is. */
5518 ldemul_after_allocation ();
5520 /* Fix any .startof. or .sizeof. symbols. */
5521 lang_set_startof ();
5523 /* Do all the assignments, now that we know the final resting places
5524 of all the symbols. */
5526 lang_do_assignments ();
5528 /* Make sure that the section addresses make sense. */
5529 if (! link_info.relocatable
5530 && command_line.check_section_addresses)
5531 lang_check_section_addresses ();
5533 /* Final stuffs. */
5534 ldemul_finish ();
5535 lang_end ();
5538 /* EXPORTED TO YACC */
5540 void
5541 lang_add_wild (struct wildcard_spec *filespec,
5542 struct wildcard_list *section_list,
5543 bfd_boolean keep_sections)
5545 struct wildcard_list *curr, *next;
5546 lang_wild_statement_type *new;
5548 /* Reverse the list as the parser puts it back to front. */
5549 for (curr = section_list, section_list = NULL;
5550 curr != NULL;
5551 section_list = curr, curr = next)
5553 if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
5554 placed_commons = TRUE;
5556 next = curr->next;
5557 curr->next = section_list;
5560 if (filespec != NULL && filespec->name != NULL)
5562 if (strcmp (filespec->name, "*") == 0)
5563 filespec->name = NULL;
5564 else if (! wildcardp (filespec->name))
5565 lang_has_input_file = TRUE;
5568 new = new_stat (lang_wild_statement, stat_ptr);
5569 new->filename = NULL;
5570 new->filenames_sorted = FALSE;
5571 if (filespec != NULL)
5573 new->filename = filespec->name;
5574 new->filenames_sorted = filespec->sorted == by_name;
5576 new->section_list = section_list;
5577 new->keep_sections = keep_sections;
5578 lang_list_init (&new->children);
5579 analyze_walk_wild_section_handler (new);
5582 void
5583 lang_section_start (const char *name, etree_type *address,
5584 const segment_type *segment)
5586 lang_address_statement_type *ad;
5588 ad = new_stat (lang_address_statement, stat_ptr);
5589 ad->section_name = name;
5590 ad->address = address;
5591 ad->segment = segment;
5594 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
5595 because of a -e argument on the command line, or zero if this is
5596 called by ENTRY in a linker script. Command line arguments take
5597 precedence. */
5599 void
5600 lang_add_entry (const char *name, bfd_boolean cmdline)
5602 if (entry_symbol.name == NULL
5603 || cmdline
5604 || ! entry_from_cmdline)
5606 entry_symbol.name = name;
5607 entry_from_cmdline = cmdline;
5611 /* Set the default start symbol to NAME. .em files should use this,
5612 not lang_add_entry, to override the use of "start" if neither the
5613 linker script nor the command line specifies an entry point. NAME
5614 must be permanently allocated. */
5615 void
5616 lang_default_entry (const char *name)
5618 entry_symbol_default = name;
5621 void
5622 lang_add_target (const char *name)
5624 lang_target_statement_type *new = new_stat (lang_target_statement,
5625 stat_ptr);
5627 new->target = name;
5631 void
5632 lang_add_map (const char *name)
5634 while (*name)
5636 switch (*name)
5638 case 'F':
5639 map_option_f = TRUE;
5640 break;
5642 name++;
5646 void
5647 lang_add_fill (fill_type *fill)
5649 lang_fill_statement_type *new = new_stat (lang_fill_statement,
5650 stat_ptr);
5652 new->fill = fill;
5655 void
5656 lang_add_data (int type, union etree_union *exp)
5659 lang_data_statement_type *new = new_stat (lang_data_statement,
5660 stat_ptr);
5662 new->exp = exp;
5663 new->type = type;
5667 /* Create a new reloc statement. RELOC is the BFD relocation type to
5668 generate. HOWTO is the corresponding howto structure (we could
5669 look this up, but the caller has already done so). SECTION is the
5670 section to generate a reloc against, or NAME is the name of the
5671 symbol to generate a reloc against. Exactly one of SECTION and
5672 NAME must be NULL. ADDEND is an expression for the addend. */
5674 void
5675 lang_add_reloc (bfd_reloc_code_real_type reloc,
5676 reloc_howto_type *howto,
5677 asection *section,
5678 const char *name,
5679 union etree_union *addend)
5681 lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
5683 p->reloc = reloc;
5684 p->howto = howto;
5685 p->section = section;
5686 p->name = name;
5687 p->addend_exp = addend;
5689 p->addend_value = 0;
5690 p->output_section = NULL;
5691 p->output_offset = 0;
5694 lang_assignment_statement_type *
5695 lang_add_assignment (etree_type *exp)
5697 lang_assignment_statement_type *new = new_stat (lang_assignment_statement,
5698 stat_ptr);
5700 new->exp = exp;
5701 return new;
5704 void
5705 lang_add_attribute (enum statement_enum attribute)
5707 new_statement (attribute, sizeof (lang_statement_union_type), stat_ptr);
5710 void
5711 lang_startup (const char *name)
5713 if (startup_file != NULL)
5715 einfo (_("%P%F: multiple STARTUP files\n"));
5717 first_file->filename = name;
5718 first_file->local_sym_name = name;
5719 first_file->real = TRUE;
5721 startup_file = name;
5724 void
5725 lang_float (bfd_boolean maybe)
5727 lang_float_flag = maybe;
5731 /* Work out the load- and run-time regions from a script statement, and
5732 store them in *LMA_REGION and *REGION respectively.
5734 MEMSPEC is the name of the run-time region, or the value of
5735 DEFAULT_MEMORY_REGION if the statement didn't specify one.
5736 LMA_MEMSPEC is the name of the load-time region, or null if the
5737 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
5738 had an explicit load address.
5740 It is an error to specify both a load region and a load address. */
5742 static void
5743 lang_get_regions (lang_memory_region_type **region,
5744 lang_memory_region_type **lma_region,
5745 const char *memspec,
5746 const char *lma_memspec,
5747 bfd_boolean have_lma,
5748 bfd_boolean have_vma)
5750 *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
5752 /* If no runtime region or VMA has been specified, but the load region
5753 has been specified, then use the load region for the runtime region
5754 as well. */
5755 if (lma_memspec != NULL
5756 && ! have_vma
5757 && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
5758 *region = *lma_region;
5759 else
5760 *region = lang_memory_region_lookup (memspec, FALSE);
5762 if (have_lma && lma_memspec != 0)
5763 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
5766 void
5767 lang_leave_output_section_statement (fill_type *fill, const char *memspec,
5768 lang_output_section_phdr_list *phdrs,
5769 const char *lma_memspec)
5771 lang_get_regions (&current_section->region,
5772 &current_section->lma_region,
5773 memspec, lma_memspec,
5774 current_section->load_base != NULL,
5775 current_section->addr_tree != NULL);
5776 current_section->fill = fill;
5777 current_section->phdrs = phdrs;
5778 stat_ptr = &statement_list;
5781 /* Create an absolute symbol with the given name with the value of the
5782 address of first byte of the section named.
5784 If the symbol already exists, then do nothing. */
5786 void
5787 lang_abs_symbol_at_beginning_of (const char *secname, const char *name)
5789 struct bfd_link_hash_entry *h;
5791 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
5792 if (h == NULL)
5793 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
5795 if (h->type == bfd_link_hash_new
5796 || h->type == bfd_link_hash_undefined)
5798 asection *sec;
5800 h->type = bfd_link_hash_defined;
5802 sec = bfd_get_section_by_name (output_bfd, secname);
5803 if (sec == NULL)
5804 h->u.def.value = 0;
5805 else
5806 h->u.def.value = bfd_get_section_vma (output_bfd, sec);
5808 h->u.def.section = bfd_abs_section_ptr;
5812 /* Create an absolute symbol with the given name with the value of the
5813 address of the first byte after the end of the section named.
5815 If the symbol already exists, then do nothing. */
5817 void
5818 lang_abs_symbol_at_end_of (const char *secname, const char *name)
5820 struct bfd_link_hash_entry *h;
5822 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
5823 if (h == NULL)
5824 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
5826 if (h->type == bfd_link_hash_new
5827 || h->type == bfd_link_hash_undefined)
5829 asection *sec;
5831 h->type = bfd_link_hash_defined;
5833 sec = bfd_get_section_by_name (output_bfd, secname);
5834 if (sec == NULL)
5835 h->u.def.value = 0;
5836 else
5837 h->u.def.value = (bfd_get_section_vma (output_bfd, sec)
5838 + TO_ADDR (sec->size));
5840 h->u.def.section = bfd_abs_section_ptr;
5844 void
5845 lang_statement_append (lang_statement_list_type *list,
5846 lang_statement_union_type *element,
5847 lang_statement_union_type **field)
5849 *(list->tail) = element;
5850 list->tail = field;
5853 /* Set the output format type. -oformat overrides scripts. */
5855 void
5856 lang_add_output_format (const char *format,
5857 const char *big,
5858 const char *little,
5859 int from_script)
5861 if (output_target == NULL || !from_script)
5863 if (command_line.endian == ENDIAN_BIG
5864 && big != NULL)
5865 format = big;
5866 else if (command_line.endian == ENDIAN_LITTLE
5867 && little != NULL)
5868 format = little;
5870 output_target = format;
5874 /* Enter a group. This creates a new lang_group_statement, and sets
5875 stat_ptr to build new statements within the group. */
5877 void
5878 lang_enter_group (void)
5880 lang_group_statement_type *g;
5882 g = new_stat (lang_group_statement, stat_ptr);
5883 lang_list_init (&g->children);
5884 stat_ptr = &g->children;
5887 /* Leave a group. This just resets stat_ptr to start writing to the
5888 regular list of statements again. Note that this will not work if
5889 groups can occur inside anything else which can adjust stat_ptr,
5890 but currently they can't. */
5892 void
5893 lang_leave_group (void)
5895 stat_ptr = &statement_list;
5898 /* Add a new program header. This is called for each entry in a PHDRS
5899 command in a linker script. */
5901 void
5902 lang_new_phdr (const char *name,
5903 etree_type *type,
5904 bfd_boolean filehdr,
5905 bfd_boolean phdrs,
5906 etree_type *at,
5907 etree_type *flags)
5909 struct lang_phdr *n, **pp;
5911 n = stat_alloc (sizeof (struct lang_phdr));
5912 n->next = NULL;
5913 n->name = name;
5914 n->type = exp_get_value_int (type, 0, "program header type");
5915 n->filehdr = filehdr;
5916 n->phdrs = phdrs;
5917 n->at = at;
5918 n->flags = flags;
5920 for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
5922 *pp = n;
5925 /* Record the program header information in the output BFD. FIXME: We
5926 should not be calling an ELF specific function here. */
5928 static void
5929 lang_record_phdrs (void)
5931 unsigned int alc;
5932 asection **secs;
5933 lang_output_section_phdr_list *last;
5934 struct lang_phdr *l;
5935 lang_output_section_statement_type *os;
5937 alc = 10;
5938 secs = xmalloc (alc * sizeof (asection *));
5939 last = NULL;
5940 for (l = lang_phdr_list; l != NULL; l = l->next)
5942 unsigned int c;
5943 flagword flags;
5944 bfd_vma at;
5946 c = 0;
5947 for (os = &lang_output_section_statement.head->output_section_statement;
5948 os != NULL;
5949 os = os->next)
5951 lang_output_section_phdr_list *pl;
5953 if (os->constraint == -1)
5954 continue;
5956 pl = os->phdrs;
5957 if (pl != NULL)
5958 last = pl;
5959 else
5961 if (os->sectype == noload_section
5962 || os->bfd_section == NULL
5963 || (os->bfd_section->flags & SEC_ALLOC) == 0)
5964 continue;
5965 pl = last;
5968 if (os->bfd_section == NULL)
5969 continue;
5971 for (; pl != NULL; pl = pl->next)
5973 if (strcmp (pl->name, l->name) == 0)
5975 if (c >= alc)
5977 alc *= 2;
5978 secs = xrealloc (secs, alc * sizeof (asection *));
5980 secs[c] = os->bfd_section;
5981 ++c;
5982 pl->used = TRUE;
5987 if (l->flags == NULL)
5988 flags = 0;
5989 else
5990 flags = exp_get_vma (l->flags, 0, "phdr flags");
5992 if (l->at == NULL)
5993 at = 0;
5994 else
5995 at = exp_get_vma (l->at, 0, "phdr load address");
5997 if (! bfd_record_phdr (output_bfd, l->type,
5998 l->flags != NULL, flags, l->at != NULL,
5999 at, l->filehdr, l->phdrs, c, secs))
6000 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
6003 free (secs);
6005 /* Make sure all the phdr assignments succeeded. */
6006 for (os = &lang_output_section_statement.head->output_section_statement;
6007 os != NULL;
6008 os = os->next)
6010 lang_output_section_phdr_list *pl;
6012 if (os->constraint == -1
6013 || os->bfd_section == NULL)
6014 continue;
6016 for (pl = os->phdrs;
6017 pl != NULL;
6018 pl = pl->next)
6019 if (! pl->used && strcmp (pl->name, "NONE") != 0)
6020 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
6021 os->name, pl->name);
6025 /* Record a list of sections which may not be cross referenced. */
6027 void
6028 lang_add_nocrossref (lang_nocrossref_type *l)
6030 struct lang_nocrossrefs *n;
6032 n = xmalloc (sizeof *n);
6033 n->next = nocrossref_list;
6034 n->list = l;
6035 nocrossref_list = n;
6037 /* Set notice_all so that we get informed about all symbols. */
6038 link_info.notice_all = TRUE;
6041 /* Overlay handling. We handle overlays with some static variables. */
6043 /* The overlay virtual address. */
6044 static etree_type *overlay_vma;
6045 /* And subsection alignment. */
6046 static etree_type *overlay_subalign;
6048 /* An expression for the maximum section size seen so far. */
6049 static etree_type *overlay_max;
6051 /* A list of all the sections in this overlay. */
6053 struct overlay_list {
6054 struct overlay_list *next;
6055 lang_output_section_statement_type *os;
6058 static struct overlay_list *overlay_list;
6060 /* Start handling an overlay. */
6062 void
6063 lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
6065 /* The grammar should prevent nested overlays from occurring. */
6066 ASSERT (overlay_vma == NULL
6067 && overlay_subalign == NULL
6068 && overlay_max == NULL);
6070 overlay_vma = vma_expr;
6071 overlay_subalign = subalign;
6074 /* Start a section in an overlay. We handle this by calling
6075 lang_enter_output_section_statement with the correct VMA.
6076 lang_leave_overlay sets up the LMA and memory regions. */
6078 void
6079 lang_enter_overlay_section (const char *name)
6081 struct overlay_list *n;
6082 etree_type *size;
6084 lang_enter_output_section_statement (name, overlay_vma, normal_section,
6085 0, overlay_subalign, 0, 0);
6087 /* If this is the first section, then base the VMA of future
6088 sections on this one. This will work correctly even if `.' is
6089 used in the addresses. */
6090 if (overlay_list == NULL)
6091 overlay_vma = exp_nameop (ADDR, name);
6093 /* Remember the section. */
6094 n = xmalloc (sizeof *n);
6095 n->os = current_section;
6096 n->next = overlay_list;
6097 overlay_list = n;
6099 size = exp_nameop (SIZEOF, name);
6101 /* Arrange to work out the maximum section end address. */
6102 if (overlay_max == NULL)
6103 overlay_max = size;
6104 else
6105 overlay_max = exp_binop (MAX_K, overlay_max, size);
6108 /* Finish a section in an overlay. There isn't any special to do
6109 here. */
6111 void
6112 lang_leave_overlay_section (fill_type *fill,
6113 lang_output_section_phdr_list *phdrs)
6115 const char *name;
6116 char *clean, *s2;
6117 const char *s1;
6118 char *buf;
6120 name = current_section->name;
6122 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
6123 region and that no load-time region has been specified. It doesn't
6124 really matter what we say here, since lang_leave_overlay will
6125 override it. */
6126 lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
6128 /* Define the magic symbols. */
6130 clean = xmalloc (strlen (name) + 1);
6131 s2 = clean;
6132 for (s1 = name; *s1 != '\0'; s1++)
6133 if (ISALNUM (*s1) || *s1 == '_')
6134 *s2++ = *s1;
6135 *s2 = '\0';
6137 buf = xmalloc (strlen (clean) + sizeof "__load_start_");
6138 sprintf (buf, "__load_start_%s", clean);
6139 lang_add_assignment (exp_assop ('=', buf,
6140 exp_nameop (LOADADDR, name)));
6142 buf = xmalloc (strlen (clean) + sizeof "__load_stop_");
6143 sprintf (buf, "__load_stop_%s", clean);
6144 lang_add_assignment (exp_assop ('=', buf,
6145 exp_binop ('+',
6146 exp_nameop (LOADADDR, name),
6147 exp_nameop (SIZEOF, name))));
6149 free (clean);
6152 /* Finish an overlay. If there are any overlay wide settings, this
6153 looks through all the sections in the overlay and sets them. */
6155 void
6156 lang_leave_overlay (etree_type *lma_expr,
6157 int nocrossrefs,
6158 fill_type *fill,
6159 const char *memspec,
6160 lang_output_section_phdr_list *phdrs,
6161 const char *lma_memspec)
6163 lang_memory_region_type *region;
6164 lang_memory_region_type *lma_region;
6165 struct overlay_list *l;
6166 lang_nocrossref_type *nocrossref;
6168 lang_get_regions (&region, &lma_region,
6169 memspec, lma_memspec,
6170 lma_expr != NULL, FALSE);
6172 nocrossref = NULL;
6174 /* After setting the size of the last section, set '.' to end of the
6175 overlay region. */
6176 if (overlay_list != NULL)
6177 overlay_list->os->update_dot_tree
6178 = exp_assop ('=', ".", exp_binop ('+', overlay_vma, overlay_max));
6180 l = overlay_list;
6181 while (l != NULL)
6183 struct overlay_list *next;
6185 if (fill != NULL && l->os->fill == NULL)
6186 l->os->fill = fill;
6188 l->os->region = region;
6189 l->os->lma_region = lma_region;
6191 /* The first section has the load address specified in the
6192 OVERLAY statement. The rest are worked out from that.
6193 The base address is not needed (and should be null) if
6194 an LMA region was specified. */
6195 if (l->next == 0)
6196 l->os->load_base = lma_expr;
6197 else if (lma_region == 0)
6198 l->os->load_base = exp_binop ('+',
6199 exp_nameop (LOADADDR, l->next->os->name),
6200 exp_nameop (SIZEOF, l->next->os->name));
6202 if (phdrs != NULL && l->os->phdrs == NULL)
6203 l->os->phdrs = phdrs;
6205 if (nocrossrefs)
6207 lang_nocrossref_type *nc;
6209 nc = xmalloc (sizeof *nc);
6210 nc->name = l->os->name;
6211 nc->next = nocrossref;
6212 nocrossref = nc;
6215 next = l->next;
6216 free (l);
6217 l = next;
6220 if (nocrossref != NULL)
6221 lang_add_nocrossref (nocrossref);
6223 overlay_vma = NULL;
6224 overlay_list = NULL;
6225 overlay_max = NULL;
6228 /* Version handling. This is only useful for ELF. */
6230 /* This global variable holds the version tree that we build. */
6232 struct bfd_elf_version_tree *lang_elf_version_info;
6234 /* If PREV is NULL, return first version pattern matching particular symbol.
6235 If PREV is non-NULL, return first version pattern matching particular
6236 symbol after PREV (previously returned by lang_vers_match). */
6238 static struct bfd_elf_version_expr *
6239 lang_vers_match (struct bfd_elf_version_expr_head *head,
6240 struct bfd_elf_version_expr *prev,
6241 const char *sym)
6243 const char *cxx_sym = sym;
6244 const char *java_sym = sym;
6245 struct bfd_elf_version_expr *expr = NULL;
6247 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
6249 cxx_sym = cplus_demangle (sym, DMGL_PARAMS | DMGL_ANSI);
6250 if (!cxx_sym)
6251 cxx_sym = sym;
6253 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
6255 java_sym = cplus_demangle (sym, DMGL_JAVA);
6256 if (!java_sym)
6257 java_sym = sym;
6260 if (head->htab && (prev == NULL || prev->symbol))
6262 struct bfd_elf_version_expr e;
6264 switch (prev ? prev->mask : 0)
6266 case 0:
6267 if (head->mask & BFD_ELF_VERSION_C_TYPE)
6269 e.symbol = sym;
6270 expr = htab_find (head->htab, &e);
6271 while (expr && strcmp (expr->symbol, sym) == 0)
6272 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
6273 goto out_ret;
6274 else
6275 expr = expr->next;
6277 /* Fallthrough */
6278 case BFD_ELF_VERSION_C_TYPE:
6279 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
6281 e.symbol = cxx_sym;
6282 expr = htab_find (head->htab, &e);
6283 while (expr && strcmp (expr->symbol, cxx_sym) == 0)
6284 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
6285 goto out_ret;
6286 else
6287 expr = expr->next;
6289 /* Fallthrough */
6290 case BFD_ELF_VERSION_CXX_TYPE:
6291 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
6293 e.symbol = java_sym;
6294 expr = htab_find (head->htab, &e);
6295 while (expr && strcmp (expr->symbol, java_sym) == 0)
6296 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
6297 goto out_ret;
6298 else
6299 expr = expr->next;
6301 /* Fallthrough */
6302 default:
6303 break;
6307 /* Finally, try the wildcards. */
6308 if (prev == NULL || prev->symbol)
6309 expr = head->remaining;
6310 else
6311 expr = prev->next;
6312 for (; expr; expr = expr->next)
6314 const char *s;
6316 if (!expr->pattern)
6317 continue;
6319 if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
6320 break;
6322 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
6323 s = java_sym;
6324 else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
6325 s = cxx_sym;
6326 else
6327 s = sym;
6328 if (fnmatch (expr->pattern, s, 0) == 0)
6329 break;
6332 out_ret:
6333 if (cxx_sym != sym)
6334 free ((char *) cxx_sym);
6335 if (java_sym != sym)
6336 free ((char *) java_sym);
6337 return expr;
6340 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
6341 return a string pointing to the symbol name. */
6343 static const char *
6344 realsymbol (const char *pattern)
6346 const char *p;
6347 bfd_boolean changed = FALSE, backslash = FALSE;
6348 char *s, *symbol = xmalloc (strlen (pattern) + 1);
6350 for (p = pattern, s = symbol; *p != '\0'; ++p)
6352 /* It is a glob pattern only if there is no preceding
6353 backslash. */
6354 if (! backslash && (*p == '?' || *p == '*' || *p == '['))
6356 free (symbol);
6357 return NULL;
6360 if (backslash)
6362 /* Remove the preceding backslash. */
6363 *(s - 1) = *p;
6364 changed = TRUE;
6366 else
6367 *s++ = *p;
6369 backslash = *p == '\\';
6372 if (changed)
6374 *s = '\0';
6375 return symbol;
6377 else
6379 free (symbol);
6380 return pattern;
6384 /* This is called for each variable name or match expression. NEW is
6385 the name of the symbol to match, or, if LITERAL_P is FALSE, a glob
6386 pattern to be matched against symbol names. */
6388 struct bfd_elf_version_expr *
6389 lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
6390 const char *new,
6391 const char *lang,
6392 bfd_boolean literal_p)
6394 struct bfd_elf_version_expr *ret;
6396 ret = xmalloc (sizeof *ret);
6397 ret->next = orig;
6398 ret->pattern = literal_p ? NULL : new;
6399 ret->symver = 0;
6400 ret->script = 0;
6401 ret->symbol = literal_p ? new : realsymbol (new);
6403 if (lang == NULL || strcasecmp (lang, "C") == 0)
6404 ret->mask = BFD_ELF_VERSION_C_TYPE;
6405 else if (strcasecmp (lang, "C++") == 0)
6406 ret->mask = BFD_ELF_VERSION_CXX_TYPE;
6407 else if (strcasecmp (lang, "Java") == 0)
6408 ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
6409 else
6411 einfo (_("%X%P: unknown language `%s' in version information\n"),
6412 lang);
6413 ret->mask = BFD_ELF_VERSION_C_TYPE;
6416 return ldemul_new_vers_pattern (ret);
6419 /* This is called for each set of variable names and match
6420 expressions. */
6422 struct bfd_elf_version_tree *
6423 lang_new_vers_node (struct bfd_elf_version_expr *globals,
6424 struct bfd_elf_version_expr *locals)
6426 struct bfd_elf_version_tree *ret;
6428 ret = xcalloc (1, sizeof *ret);
6429 ret->globals.list = globals;
6430 ret->locals.list = locals;
6431 ret->match = lang_vers_match;
6432 ret->name_indx = (unsigned int) -1;
6433 return ret;
6436 /* This static variable keeps track of version indices. */
6438 static int version_index;
6440 static hashval_t
6441 version_expr_head_hash (const void *p)
6443 const struct bfd_elf_version_expr *e = p;
6445 return htab_hash_string (e->symbol);
6448 static int
6449 version_expr_head_eq (const void *p1, const void *p2)
6451 const struct bfd_elf_version_expr *e1 = p1;
6452 const struct bfd_elf_version_expr *e2 = p2;
6454 return strcmp (e1->symbol, e2->symbol) == 0;
6457 static void
6458 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
6460 size_t count = 0;
6461 struct bfd_elf_version_expr *e, *next;
6462 struct bfd_elf_version_expr **list_loc, **remaining_loc;
6464 for (e = head->list; e; e = e->next)
6466 if (e->symbol)
6467 count++;
6468 head->mask |= e->mask;
6471 if (count)
6473 head->htab = htab_create (count * 2, version_expr_head_hash,
6474 version_expr_head_eq, NULL);
6475 list_loc = &head->list;
6476 remaining_loc = &head->remaining;
6477 for (e = head->list; e; e = next)
6479 next = e->next;
6480 if (!e->symbol)
6482 *remaining_loc = e;
6483 remaining_loc = &e->next;
6485 else
6487 void **loc = htab_find_slot (head->htab, e, INSERT);
6489 if (*loc)
6491 struct bfd_elf_version_expr *e1, *last;
6493 e1 = *loc;
6494 last = NULL;
6497 if (e1->mask == e->mask)
6499 last = NULL;
6500 break;
6502 last = e1;
6503 e1 = e1->next;
6505 while (e1 && strcmp (e1->symbol, e->symbol) == 0);
6507 if (last == NULL)
6509 /* This is a duplicate. */
6510 /* FIXME: Memory leak. Sometimes pattern is not
6511 xmalloced alone, but in larger chunk of memory. */
6512 /* free (e->symbol); */
6513 free (e);
6515 else
6517 e->next = last->next;
6518 last->next = e;
6521 else
6523 *loc = e;
6524 *list_loc = e;
6525 list_loc = &e->next;
6529 *remaining_loc = NULL;
6530 *list_loc = head->remaining;
6532 else
6533 head->remaining = head->list;
6536 /* This is called when we know the name and dependencies of the
6537 version. */
6539 void
6540 lang_register_vers_node (const char *name,
6541 struct bfd_elf_version_tree *version,
6542 struct bfd_elf_version_deps *deps)
6544 struct bfd_elf_version_tree *t, **pp;
6545 struct bfd_elf_version_expr *e1;
6547 if (name == NULL)
6548 name = "";
6550 if ((name[0] == '\0' && lang_elf_version_info != NULL)
6551 || (lang_elf_version_info && lang_elf_version_info->name[0] == '\0'))
6553 einfo (_("%X%P: anonymous version tag cannot be combined"
6554 " with other version tags\n"));
6555 free (version);
6556 return;
6559 /* Make sure this node has a unique name. */
6560 for (t = lang_elf_version_info; t != NULL; t = t->next)
6561 if (strcmp (t->name, name) == 0)
6562 einfo (_("%X%P: duplicate version tag `%s'\n"), name);
6564 lang_finalize_version_expr_head (&version->globals);
6565 lang_finalize_version_expr_head (&version->locals);
6567 /* Check the global and local match names, and make sure there
6568 aren't any duplicates. */
6570 for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
6572 for (t = lang_elf_version_info; t != NULL; t = t->next)
6574 struct bfd_elf_version_expr *e2;
6576 if (t->locals.htab && e1->symbol)
6578 e2 = htab_find (t->locals.htab, e1);
6579 while (e2 && strcmp (e1->symbol, e2->symbol) == 0)
6581 if (e1->mask == e2->mask)
6582 einfo (_("%X%P: duplicate expression `%s'"
6583 " in version information\n"), e1->symbol);
6584 e2 = e2->next;
6587 else if (!e1->symbol)
6588 for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
6589 if (strcmp (e1->pattern, e2->pattern) == 0
6590 && e1->mask == e2->mask)
6591 einfo (_("%X%P: duplicate expression `%s'"
6592 " in version information\n"), e1->pattern);
6596 for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
6598 for (t = lang_elf_version_info; t != NULL; t = t->next)
6600 struct bfd_elf_version_expr *e2;
6602 if (t->globals.htab && e1->symbol)
6604 e2 = htab_find (t->globals.htab, e1);
6605 while (e2 && strcmp (e1->symbol, e2->symbol) == 0)
6607 if (e1->mask == e2->mask)
6608 einfo (_("%X%P: duplicate expression `%s'"
6609 " in version information\n"),
6610 e1->symbol);
6611 e2 = e2->next;
6614 else if (!e1->symbol)
6615 for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
6616 if (strcmp (e1->pattern, e2->pattern) == 0
6617 && e1->mask == e2->mask)
6618 einfo (_("%X%P: duplicate expression `%s'"
6619 " in version information\n"), e1->pattern);
6623 version->deps = deps;
6624 version->name = name;
6625 if (name[0] != '\0')
6627 ++version_index;
6628 version->vernum = version_index;
6630 else
6631 version->vernum = 0;
6633 for (pp = &lang_elf_version_info; *pp != NULL; pp = &(*pp)->next)
6635 *pp = version;
6638 /* This is called when we see a version dependency. */
6640 struct bfd_elf_version_deps *
6641 lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
6643 struct bfd_elf_version_deps *ret;
6644 struct bfd_elf_version_tree *t;
6646 ret = xmalloc (sizeof *ret);
6647 ret->next = list;
6649 for (t = lang_elf_version_info; t != NULL; t = t->next)
6651 if (strcmp (t->name, name) == 0)
6653 ret->version_needed = t;
6654 return ret;
6658 einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
6660 return ret;
6663 static void
6664 lang_do_version_exports_section (void)
6666 struct bfd_elf_version_expr *greg = NULL, *lreg;
6668 LANG_FOR_EACH_INPUT_STATEMENT (is)
6670 asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
6671 char *contents, *p;
6672 bfd_size_type len;
6674 if (sec == NULL)
6675 continue;
6677 len = sec->size;
6678 contents = xmalloc (len);
6679 if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
6680 einfo (_("%X%P: unable to read .exports section contents\n"), sec);
6682 p = contents;
6683 while (p < contents + len)
6685 greg = lang_new_vers_pattern (greg, p, NULL, FALSE);
6686 p = strchr (p, '\0') + 1;
6689 /* Do not free the contents, as we used them creating the regex. */
6691 /* Do not include this section in the link. */
6692 sec->flags |= SEC_EXCLUDE;
6695 lreg = lang_new_vers_pattern (NULL, "*", NULL, FALSE);
6696 lang_register_vers_node (command_line.version_exports_section,
6697 lang_new_vers_node (greg, lreg), NULL);
6700 void
6701 lang_add_unique (const char *name)
6703 struct unique_sections *ent;
6705 for (ent = unique_section_list; ent; ent = ent->next)
6706 if (strcmp (ent->name, name) == 0)
6707 return;
6709 ent = xmalloc (sizeof *ent);
6710 ent->name = xstrdup (name);
6711 ent->next = unique_section_list;
6712 unique_section_list = ent;