Reload --as-needed libraries inside groups
[external/binutils.git] / ld / ldlang.c
1 /* Linker command language support.
2    Copyright (C) 1991-2014 Free Software Foundation, Inc.
3
4    This file is part of the GNU Binutils.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19    MA 02110-1301, USA.  */
20
21 #include "sysdep.h"
22 #include "bfd.h"
23 #include "libiberty.h"
24 #include "filenames.h"
25 #include "safe-ctype.h"
26 #include "obstack.h"
27 #include "bfdlink.h"
28
29 #include "ld.h"
30 #include "ldmain.h"
31 #include "ldexp.h"
32 #include "ldlang.h"
33 #include <ldgram.h>
34 #include "ldlex.h"
35 #include "ldmisc.h"
36 #include "ldctor.h"
37 #include "ldfile.h"
38 #include "ldemul.h"
39 #include "fnmatch.h"
40 #include "demangle.h"
41 #include "hashtab.h"
42 #include "libbfd.h"
43 #ifdef ENABLE_PLUGINS
44 #include "plugin.h"
45 #endif /* ENABLE_PLUGINS */
46
47 #ifndef offsetof
48 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
49 #endif
50
51 /* Locals variables.  */
52 static struct obstack stat_obstack;
53 static struct obstack map_obstack;
54
55 #define obstack_chunk_alloc xmalloc
56 #define obstack_chunk_free free
57 static const char *entry_symbol_default = "start";
58 static bfd_boolean placed_commons = FALSE;
59 static bfd_boolean stripped_excluded_sections = FALSE;
60 static lang_output_section_statement_type *default_common_section;
61 static bfd_boolean map_option_f;
62 static bfd_vma print_dot;
63 static lang_input_statement_type *first_file;
64 static const char *current_target;
65 static lang_statement_list_type statement_list;
66 static struct bfd_hash_table lang_definedness_table;
67 static lang_statement_list_type *stat_save[10];
68 static lang_statement_list_type **stat_save_ptr = &stat_save[0];
69 static struct unique_sections *unique_section_list;
70 static struct asneeded_minfo *asneeded_list_head;
71
72 /* Forward declarations.  */
73 static void exp_init_os (etree_type *);
74 static lang_input_statement_type *lookup_name (const char *);
75 static struct bfd_hash_entry *lang_definedness_newfunc
76  (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
77 static void insert_undefined (const char *);
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 void print_input_section (asection *, bfd_boolean);
85 static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
86 static void lang_record_phdrs (void);
87 static void lang_do_version_exports_section (void);
88 static void lang_finalize_version_expr_head
89   (struct bfd_elf_version_expr_head *);
90
91 /* Exported variables.  */
92 const char *output_target;
93 lang_output_section_statement_type *abs_output_section;
94 lang_statement_list_type lang_output_section_statement;
95 lang_statement_list_type *stat_ptr = &statement_list;
96 lang_statement_list_type file_chain = { NULL, NULL };
97 lang_statement_list_type input_file_chain;
98 struct bfd_sym_chain entry_symbol = { NULL, NULL };
99 const char *entry_section = ".text";
100 struct lang_input_statement_flags input_flags;
101 bfd_boolean entry_from_cmdline;
102 bfd_boolean undef_from_cmdline;
103 bfd_boolean lang_has_input_file = FALSE;
104 bfd_boolean had_output_filename = FALSE;
105 bfd_boolean lang_float_flag = FALSE;
106 bfd_boolean delete_output_file_on_failure = FALSE;
107 struct lang_phdr *lang_phdr_list;
108 struct lang_nocrossrefs *nocrossref_list;
109 struct asneeded_minfo **asneeded_list_tail;
110
111  /* Functions that traverse the linker script and might evaluate
112     DEFINED() need to increment this at the start of the traversal.  */
113 int lang_statement_iteration = 0;
114
115 /* Return TRUE if the PATTERN argument is a wildcard pattern.
116    Although backslashes are treated specially if a pattern contains
117    wildcards, we do not consider the mere presence of a backslash to
118    be enough to cause the pattern to be treated as a wildcard.
119    That lets us handle DOS filenames more naturally.  */
120 #define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL)
121
122 #define new_stat(x, y) \
123   (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
124
125 #define outside_section_address(q) \
126   ((q)->output_offset + (q)->output_section->vma)
127
128 #define outside_symbol_address(q) \
129   ((q)->value + outside_section_address (q->section))
130
131 #define SECTION_NAME_MAP_LENGTH (16)
132
133 void *
134 stat_alloc (size_t size)
135 {
136   return obstack_alloc (&stat_obstack, size);
137 }
138
139 static int
140 name_match (const char *pattern, const char *name)
141 {
142   if (wildcardp (pattern))
143     return fnmatch (pattern, name, 0);
144   return strcmp (pattern, name);
145 }
146
147 /* If PATTERN is of the form archive:file, return a pointer to the
148    separator.  If not, return NULL.  */
149
150 static char *
151 archive_path (const char *pattern)
152 {
153   char *p = NULL;
154
155   if (link_info.path_separator == 0)
156     return p;
157
158   p = strchr (pattern, link_info.path_separator);
159 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
160   if (p == NULL || link_info.path_separator != ':')
161     return p;
162
163   /* Assume a match on the second char is part of drive specifier,
164      as in "c:\silly.dos".  */
165   if (p == pattern + 1 && ISALPHA (*pattern))
166     p = strchr (p + 1, link_info.path_separator);
167 #endif
168   return p;
169 }
170
171 /* Given that FILE_SPEC results in a non-NULL SEP result from archive_path,
172    return whether F matches FILE_SPEC.  */
173
174 static bfd_boolean
175 input_statement_is_archive_path (const char *file_spec, char *sep,
176                                  lang_input_statement_type *f)
177 {
178   bfd_boolean match = FALSE;
179
180   if ((*(sep + 1) == 0
181        || name_match (sep + 1, f->filename) == 0)
182       && ((sep != file_spec)
183           == (f->the_bfd != NULL && f->the_bfd->my_archive != NULL)))
184     {
185       match = TRUE;
186
187       if (sep != file_spec)
188         {
189           const char *aname = f->the_bfd->my_archive->filename;
190           *sep = 0;
191           match = name_match (file_spec, aname) == 0;
192           *sep = link_info.path_separator;
193         }
194     }
195   return match;
196 }
197
198 static bfd_boolean
199 unique_section_p (const asection *sec,
200                   const lang_output_section_statement_type *os)
201 {
202   struct unique_sections *unam;
203   const char *secnam;
204
205   if (link_info.relocatable
206       && sec->owner != NULL
207       && bfd_is_group_section (sec->owner, sec))
208     return !(os != NULL
209              && strcmp (os->name, DISCARD_SECTION_NAME) == 0);
210
211   secnam = sec->name;
212   for (unam = unique_section_list; unam; unam = unam->next)
213     if (name_match (unam->name, secnam) == 0)
214       return TRUE;
215
216   return FALSE;
217 }
218
219 /* Generic traversal routines for finding matching sections.  */
220
221 /* Try processing a section against a wildcard.  This just calls
222    the callback unless the filename exclusion list is present
223    and excludes the file.  It's hardly ever present so this
224    function is very fast.  */
225
226 static void
227 walk_wild_consider_section (lang_wild_statement_type *ptr,
228                             lang_input_statement_type *file,
229                             asection *s,
230                             struct wildcard_list *sec,
231                             callback_t callback,
232                             void *data)
233 {
234   struct name_list *list_tmp;
235
236   /* Don't process sections from files which were excluded.  */
237   for (list_tmp = sec->spec.exclude_name_list;
238        list_tmp;
239        list_tmp = list_tmp->next)
240     {
241       char *p = archive_path (list_tmp->name);
242
243       if (p != NULL)
244         {
245           if (input_statement_is_archive_path (list_tmp->name, p, file))
246             return;
247         }
248
249       else if (name_match (list_tmp->name, file->filename) == 0)
250         return;
251
252       /* FIXME: Perhaps remove the following at some stage?  Matching
253          unadorned archives like this was never documented and has
254          been superceded by the archive:path syntax.  */
255       else if (file->the_bfd != NULL
256                && file->the_bfd->my_archive != NULL
257                && name_match (list_tmp->name,
258                               file->the_bfd->my_archive->filename) == 0)
259         return;
260     }
261
262   (*callback) (ptr, sec, s, ptr->section_flag_list, file, data);
263 }
264
265 /* Lowest common denominator routine that can handle everything correctly,
266    but slowly.  */
267
268 static void
269 walk_wild_section_general (lang_wild_statement_type *ptr,
270                            lang_input_statement_type *file,
271                            callback_t callback,
272                            void *data)
273 {
274   asection *s;
275   struct wildcard_list *sec;
276
277   for (s = file->the_bfd->sections; s != NULL; s = s->next)
278     {
279       sec = ptr->section_list;
280       if (sec == NULL)
281         (*callback) (ptr, sec, s, ptr->section_flag_list, file, data);
282
283       while (sec != NULL)
284         {
285           bfd_boolean skip = FALSE;
286
287           if (sec->spec.name != NULL)
288             {
289               const char *sname = bfd_get_section_name (file->the_bfd, s);
290
291               skip = name_match (sec->spec.name, sname) != 0;
292             }
293
294           if (!skip)
295             walk_wild_consider_section (ptr, file, s, sec, callback, data);
296
297           sec = sec->next;
298         }
299     }
300 }
301
302 /* Routines to find a single section given its name.  If there's more
303    than one section with that name, we report that.  */
304
305 typedef struct
306 {
307   asection *found_section;
308   bfd_boolean multiple_sections_found;
309 } section_iterator_callback_data;
310
311 static bfd_boolean
312 section_iterator_callback (bfd *abfd ATTRIBUTE_UNUSED, asection *s, void *data)
313 {
314   section_iterator_callback_data *d = (section_iterator_callback_data *) data;
315
316   if (d->found_section != NULL)
317     {
318       d->multiple_sections_found = TRUE;
319       return TRUE;
320     }
321
322   d->found_section = s;
323   return FALSE;
324 }
325
326 static asection *
327 find_section (lang_input_statement_type *file,
328               struct wildcard_list *sec,
329               bfd_boolean *multiple_sections_found)
330 {
331   section_iterator_callback_data cb_data = { NULL, FALSE };
332
333   bfd_get_section_by_name_if (file->the_bfd, sec->spec.name,
334                               section_iterator_callback, &cb_data);
335   *multiple_sections_found = cb_data.multiple_sections_found;
336   return cb_data.found_section;
337 }
338
339 /* Code for handling simple wildcards without going through fnmatch,
340    which can be expensive because of charset translations etc.  */
341
342 /* A simple wild is a literal string followed by a single '*',
343    where the literal part is at least 4 characters long.  */
344
345 static bfd_boolean
346 is_simple_wild (const char *name)
347 {
348   size_t len = strcspn (name, "*?[");
349   return len >= 4 && name[len] == '*' && name[len + 1] == '\0';
350 }
351
352 static bfd_boolean
353 match_simple_wild (const char *pattern, const char *name)
354 {
355   /* The first four characters of the pattern are guaranteed valid
356      non-wildcard characters.  So we can go faster.  */
357   if (pattern[0] != name[0] || pattern[1] != name[1]
358       || pattern[2] != name[2] || pattern[3] != name[3])
359     return FALSE;
360
361   pattern += 4;
362   name += 4;
363   while (*pattern != '*')
364     if (*name++ != *pattern++)
365       return FALSE;
366
367   return TRUE;
368 }
369
370 /* Return the numerical value of the init_priority attribute from
371    section name NAME.  */
372
373 static unsigned long
374 get_init_priority (const char *name)
375 {
376   char *end;
377   unsigned long init_priority;
378
379   /* GCC uses the following section names for the init_priority
380      attribute with numerical values 101 and 65535 inclusive. A
381      lower value means a higher priority.
382
383      1: .init_array.NNNN/.fini_array.NNNN: Where NNNN is the
384         decimal numerical value of the init_priority attribute.
385         The order of execution in .init_array is forward and
386         .fini_array is backward.
387      2: .ctors.NNNN/.dtors.NNNN: Where NNNN is 65535 minus the
388         decimal numerical value of the init_priority attribute.
389         The order of execution in .ctors is backward and .dtors
390         is forward.
391    */
392   if (strncmp (name, ".init_array.", 12) == 0
393       || strncmp (name, ".fini_array.", 12) == 0)
394     {
395       init_priority = strtoul (name + 12, &end, 10);
396       return *end ? 0 : init_priority;
397     }
398   else if (strncmp (name, ".ctors.", 7) == 0
399            || strncmp (name, ".dtors.", 7) == 0)
400     {
401       init_priority = strtoul (name + 7, &end, 10);
402       return *end ? 0 : 65535 - init_priority;
403     }
404
405   return 0;
406 }
407
408 /* Compare sections ASEC and BSEC according to SORT.  */
409
410 static int
411 compare_section (sort_type sort, asection *asec, asection *bsec)
412 {
413   int ret;
414   unsigned long ainit_priority, binit_priority;
415
416   switch (sort)
417     {
418     default:
419       abort ();
420
421     case by_init_priority:
422       ainit_priority
423         = get_init_priority (bfd_get_section_name (asec->owner, asec));
424       binit_priority
425         = get_init_priority (bfd_get_section_name (bsec->owner, bsec));
426       if (ainit_priority == 0 || binit_priority == 0)
427         goto sort_by_name;
428       ret = ainit_priority - binit_priority;
429       if (ret)
430         break;
431       else
432         goto sort_by_name;
433
434     case by_alignment_name:
435       ret = (bfd_section_alignment (bsec->owner, bsec)
436              - bfd_section_alignment (asec->owner, asec));
437       if (ret)
438         break;
439       /* Fall through.  */
440
441     case by_name:
442 sort_by_name:
443       ret = strcmp (bfd_get_section_name (asec->owner, asec),
444                     bfd_get_section_name (bsec->owner, bsec));
445       break;
446
447     case by_name_alignment:
448       ret = strcmp (bfd_get_section_name (asec->owner, asec),
449                     bfd_get_section_name (bsec->owner, bsec));
450       if (ret)
451         break;
452       /* Fall through.  */
453
454     case by_alignment:
455       ret = (bfd_section_alignment (bsec->owner, bsec)
456              - bfd_section_alignment (asec->owner, asec));
457       break;
458     }
459
460   return ret;
461 }
462
463 /* Build a Binary Search Tree to sort sections, unlike insertion sort
464    used in wild_sort(). BST is considerably faster if the number of
465    of sections are large.  */
466
467 static lang_section_bst_type **
468 wild_sort_fast (lang_wild_statement_type *wild,
469                 struct wildcard_list *sec,
470                 lang_input_statement_type *file ATTRIBUTE_UNUSED,
471                 asection *section)
472 {
473   lang_section_bst_type **tree;
474
475   tree = &wild->tree;
476   if (!wild->filenames_sorted
477       && (sec == NULL || sec->spec.sorted == none))
478     {
479       /* Append at the right end of tree.  */
480       while (*tree)
481         tree = &((*tree)->right);
482       return tree;
483     }
484
485   while (*tree)
486     {
487       /* Find the correct node to append this section.  */
488       if (compare_section (sec->spec.sorted, section, (*tree)->section) < 0)
489         tree = &((*tree)->left);
490       else
491         tree = &((*tree)->right);
492     }
493
494   return tree;
495 }
496
497 /* Use wild_sort_fast to build a BST to sort sections.  */
498
499 static void
500 output_section_callback_fast (lang_wild_statement_type *ptr,
501                               struct wildcard_list *sec,
502                               asection *section,
503                               struct flag_info *sflag_list ATTRIBUTE_UNUSED,
504                               lang_input_statement_type *file,
505                               void *output)
506 {
507   lang_section_bst_type *node;
508   lang_section_bst_type **tree;
509   lang_output_section_statement_type *os;
510
511   os = (lang_output_section_statement_type *) output;
512
513   if (unique_section_p (section, os))
514     return;
515
516   node = (lang_section_bst_type *) xmalloc (sizeof (lang_section_bst_type));
517   node->left = 0;
518   node->right = 0;
519   node->section = section;
520
521   tree = wild_sort_fast (ptr, sec, file, section);
522   if (tree != NULL)
523     *tree = node;
524 }
525
526 /* Convert a sorted sections' BST back to list form.  */
527
528 static void
529 output_section_callback_tree_to_list (lang_wild_statement_type *ptr,
530                                       lang_section_bst_type *tree,
531                                       void *output)
532 {
533   if (tree->left)
534     output_section_callback_tree_to_list (ptr, tree->left, output);
535
536   lang_add_section (&ptr->children, tree->section, NULL,
537                     (lang_output_section_statement_type *) output);
538
539   if (tree->right)
540     output_section_callback_tree_to_list (ptr, tree->right, output);
541
542   free (tree);
543 }
544
545 /* Specialized, optimized routines for handling different kinds of
546    wildcards */
547
548 static void
549 walk_wild_section_specs1_wild0 (lang_wild_statement_type *ptr,
550                                 lang_input_statement_type *file,
551                                 callback_t callback,
552                                 void *data)
553 {
554   /* We can just do a hash lookup for the section with the right name.
555      But if that lookup discovers more than one section with the name
556      (should be rare), we fall back to the general algorithm because
557      we would otherwise have to sort the sections to make sure they
558      get processed in the bfd's order.  */
559   bfd_boolean multiple_sections_found;
560   struct wildcard_list *sec0 = ptr->handler_data[0];
561   asection *s0 = find_section (file, sec0, &multiple_sections_found);
562
563   if (multiple_sections_found)
564     walk_wild_section_general (ptr, file, callback, data);
565   else if (s0)
566     walk_wild_consider_section (ptr, file, s0, sec0, callback, data);
567 }
568
569 static void
570 walk_wild_section_specs1_wild1 (lang_wild_statement_type *ptr,
571                                 lang_input_statement_type *file,
572                                 callback_t callback,
573                                 void *data)
574 {
575   asection *s;
576   struct wildcard_list *wildsec0 = ptr->handler_data[0];
577
578   for (s = file->the_bfd->sections; s != NULL; s = s->next)
579     {
580       const char *sname = bfd_get_section_name (file->the_bfd, s);
581       bfd_boolean skip = !match_simple_wild (wildsec0->spec.name, sname);
582
583       if (!skip)
584         walk_wild_consider_section (ptr, file, s, wildsec0, callback, data);
585     }
586 }
587
588 static void
589 walk_wild_section_specs2_wild1 (lang_wild_statement_type *ptr,
590                                 lang_input_statement_type *file,
591                                 callback_t callback,
592                                 void *data)
593 {
594   asection *s;
595   struct wildcard_list *sec0 = ptr->handler_data[0];
596   struct wildcard_list *wildsec1 = ptr->handler_data[1];
597   bfd_boolean multiple_sections_found;
598   asection *s0 = find_section (file, sec0, &multiple_sections_found);
599
600   if (multiple_sections_found)
601     {
602       walk_wild_section_general (ptr, file, callback, data);
603       return;
604     }
605
606   /* Note that if the section was not found, s0 is NULL and
607      we'll simply never succeed the s == s0 test below.  */
608   for (s = file->the_bfd->sections; s != NULL; s = s->next)
609     {
610       /* Recall that in this code path, a section cannot satisfy more
611          than one spec, so if s == s0 then it cannot match
612          wildspec1.  */
613       if (s == s0)
614         walk_wild_consider_section (ptr, file, s, sec0, callback, data);
615       else
616         {
617           const char *sname = bfd_get_section_name (file->the_bfd, s);
618           bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
619
620           if (!skip)
621             walk_wild_consider_section (ptr, file, s, wildsec1, callback,
622                                         data);
623         }
624     }
625 }
626
627 static void
628 walk_wild_section_specs3_wild2 (lang_wild_statement_type *ptr,
629                                 lang_input_statement_type *file,
630                                 callback_t callback,
631                                 void *data)
632 {
633   asection *s;
634   struct wildcard_list *sec0 = ptr->handler_data[0];
635   struct wildcard_list *wildsec1 = ptr->handler_data[1];
636   struct wildcard_list *wildsec2 = ptr->handler_data[2];
637   bfd_boolean multiple_sections_found;
638   asection *s0 = find_section (file, sec0, &multiple_sections_found);
639
640   if (multiple_sections_found)
641     {
642       walk_wild_section_general (ptr, file, callback, data);
643       return;
644     }
645
646   for (s = file->the_bfd->sections; s != NULL; s = s->next)
647     {
648       if (s == s0)
649         walk_wild_consider_section (ptr, file, s, sec0, callback, data);
650       else
651         {
652           const char *sname = bfd_get_section_name (file->the_bfd, s);
653           bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
654
655           if (!skip)
656             walk_wild_consider_section (ptr, file, s, wildsec1, callback, data);
657           else
658             {
659               skip = !match_simple_wild (wildsec2->spec.name, sname);
660               if (!skip)
661                 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
662                                             data);
663             }
664         }
665     }
666 }
667
668 static void
669 walk_wild_section_specs4_wild2 (lang_wild_statement_type *ptr,
670                                 lang_input_statement_type *file,
671                                 callback_t callback,
672                                 void *data)
673 {
674   asection *s;
675   struct wildcard_list *sec0 = ptr->handler_data[0];
676   struct wildcard_list *sec1 = ptr->handler_data[1];
677   struct wildcard_list *wildsec2 = ptr->handler_data[2];
678   struct wildcard_list *wildsec3 = ptr->handler_data[3];
679   bfd_boolean multiple_sections_found;
680   asection *s0 = find_section (file, sec0, &multiple_sections_found), *s1;
681
682   if (multiple_sections_found)
683     {
684       walk_wild_section_general (ptr, file, callback, data);
685       return;
686     }
687
688   s1 = find_section (file, sec1, &multiple_sections_found);
689   if (multiple_sections_found)
690     {
691       walk_wild_section_general (ptr, file, callback, data);
692       return;
693     }
694
695   for (s = file->the_bfd->sections; s != NULL; s = s->next)
696     {
697       if (s == s0)
698         walk_wild_consider_section (ptr, file, s, sec0, callback, data);
699       else
700         if (s == s1)
701           walk_wild_consider_section (ptr, file, s, sec1, callback, data);
702         else
703           {
704             const char *sname = bfd_get_section_name (file->the_bfd, s);
705             bfd_boolean skip = !match_simple_wild (wildsec2->spec.name,
706                                                    sname);
707
708             if (!skip)
709               walk_wild_consider_section (ptr, file, s, wildsec2, callback,
710                                           data);
711             else
712               {
713                 skip = !match_simple_wild (wildsec3->spec.name, sname);
714                 if (!skip)
715                   walk_wild_consider_section (ptr, file, s, wildsec3,
716                                               callback, data);
717               }
718           }
719     }
720 }
721
722 static void
723 walk_wild_section (lang_wild_statement_type *ptr,
724                    lang_input_statement_type *file,
725                    callback_t callback,
726                    void *data)
727 {
728   if (file->flags.just_syms)
729     return;
730
731   (*ptr->walk_wild_section_handler) (ptr, file, callback, data);
732 }
733
734 /* Returns TRUE when name1 is a wildcard spec that might match
735    something name2 can match.  We're conservative: we return FALSE
736    only if the prefixes of name1 and name2 are different up to the
737    first wildcard character.  */
738
739 static bfd_boolean
740 wild_spec_can_overlap (const char *name1, const char *name2)
741 {
742   size_t prefix1_len = strcspn (name1, "?*[");
743   size_t prefix2_len = strcspn (name2, "?*[");
744   size_t min_prefix_len;
745
746   /* Note that if there is no wildcard character, then we treat the
747      terminating 0 as part of the prefix.  Thus ".text" won't match
748      ".text." or ".text.*", for example.  */
749   if (name1[prefix1_len] == '\0')
750     prefix1_len++;
751   if (name2[prefix2_len] == '\0')
752     prefix2_len++;
753
754   min_prefix_len = prefix1_len < prefix2_len ? prefix1_len : prefix2_len;
755
756   return memcmp (name1, name2, min_prefix_len) == 0;
757 }
758
759 /* Select specialized code to handle various kinds of wildcard
760    statements.  */
761
762 static void
763 analyze_walk_wild_section_handler (lang_wild_statement_type *ptr)
764 {
765   int sec_count = 0;
766   int wild_name_count = 0;
767   struct wildcard_list *sec;
768   int signature;
769   int data_counter;
770
771   ptr->walk_wild_section_handler = walk_wild_section_general;
772   ptr->handler_data[0] = NULL;
773   ptr->handler_data[1] = NULL;
774   ptr->handler_data[2] = NULL;
775   ptr->handler_data[3] = NULL;
776   ptr->tree = NULL;
777
778   /* Count how many wildcard_specs there are, and how many of those
779      actually use wildcards in the name.  Also, bail out if any of the
780      wildcard names are NULL. (Can this actually happen?
781      walk_wild_section used to test for it.)  And bail out if any
782      of the wildcards are more complex than a simple string
783      ending in a single '*'.  */
784   for (sec = ptr->section_list; sec != NULL; sec = sec->next)
785     {
786       ++sec_count;
787       if (sec->spec.name == NULL)
788         return;
789       if (wildcardp (sec->spec.name))
790         {
791           ++wild_name_count;
792           if (!is_simple_wild (sec->spec.name))
793             return;
794         }
795     }
796
797   /* The zero-spec case would be easy to optimize but it doesn't
798      happen in practice.  Likewise, more than 4 specs doesn't
799      happen in practice.  */
800   if (sec_count == 0 || sec_count > 4)
801     return;
802
803   /* Check that no two specs can match the same section.  */
804   for (sec = ptr->section_list; sec != NULL; sec = sec->next)
805     {
806       struct wildcard_list *sec2;
807       for (sec2 = sec->next; sec2 != NULL; sec2 = sec2->next)
808         {
809           if (wild_spec_can_overlap (sec->spec.name, sec2->spec.name))
810             return;
811         }
812     }
813
814   signature = (sec_count << 8) + wild_name_count;
815   switch (signature)
816     {
817     case 0x0100:
818       ptr->walk_wild_section_handler = walk_wild_section_specs1_wild0;
819       break;
820     case 0x0101:
821       ptr->walk_wild_section_handler = walk_wild_section_specs1_wild1;
822       break;
823     case 0x0201:
824       ptr->walk_wild_section_handler = walk_wild_section_specs2_wild1;
825       break;
826     case 0x0302:
827       ptr->walk_wild_section_handler = walk_wild_section_specs3_wild2;
828       break;
829     case 0x0402:
830       ptr->walk_wild_section_handler = walk_wild_section_specs4_wild2;
831       break;
832     default:
833       return;
834     }
835
836   /* Now fill the data array with pointers to the specs, first the
837      specs with non-wildcard names, then the specs with wildcard
838      names.  It's OK to process the specs in different order from the
839      given order, because we've already determined that no section
840      will match more than one spec.  */
841   data_counter = 0;
842   for (sec = ptr->section_list; sec != NULL; sec = sec->next)
843     if (!wildcardp (sec->spec.name))
844       ptr->handler_data[data_counter++] = sec;
845   for (sec = ptr->section_list; sec != NULL; sec = sec->next)
846     if (wildcardp (sec->spec.name))
847       ptr->handler_data[data_counter++] = sec;
848 }
849
850 /* Handle a wild statement for a single file F.  */
851
852 static void
853 walk_wild_file (lang_wild_statement_type *s,
854                 lang_input_statement_type *f,
855                 callback_t callback,
856                 void *data)
857 {
858   if (f->the_bfd == NULL
859       || ! bfd_check_format (f->the_bfd, bfd_archive))
860     walk_wild_section (s, f, callback, data);
861   else
862     {
863       bfd *member;
864
865       /* This is an archive file.  We must map each member of the
866          archive separately.  */
867       member = bfd_openr_next_archived_file (f->the_bfd, NULL);
868       while (member != NULL)
869         {
870           /* When lookup_name is called, it will call the add_symbols
871              entry point for the archive.  For each element of the
872              archive which is included, BFD will call ldlang_add_file,
873              which will set the usrdata field of the member to the
874              lang_input_statement.  */
875           if (member->usrdata != NULL)
876             {
877               walk_wild_section (s,
878                                  (lang_input_statement_type *) member->usrdata,
879                                  callback, data);
880             }
881
882           member = bfd_openr_next_archived_file (f->the_bfd, member);
883         }
884     }
885 }
886
887 static void
888 walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
889 {
890   const char *file_spec = s->filename;
891   char *p;
892
893   if (file_spec == NULL)
894     {
895       /* Perform the iteration over all files in the list.  */
896       LANG_FOR_EACH_INPUT_STATEMENT (f)
897         {
898           walk_wild_file (s, f, callback, data);
899         }
900     }
901   else if ((p = archive_path (file_spec)) != NULL)
902     {
903       LANG_FOR_EACH_INPUT_STATEMENT (f)
904         {
905           if (input_statement_is_archive_path (file_spec, p, f))
906             walk_wild_file (s, f, callback, data);
907         }
908     }
909   else if (wildcardp (file_spec))
910     {
911       LANG_FOR_EACH_INPUT_STATEMENT (f)
912         {
913           if (fnmatch (file_spec, f->filename, 0) == 0)
914             walk_wild_file (s, f, callback, data);
915         }
916     }
917   else
918     {
919       lang_input_statement_type *f;
920
921       /* Perform the iteration over a single file.  */
922       f = lookup_name (file_spec);
923       if (f)
924         walk_wild_file (s, f, callback, data);
925     }
926 }
927
928 /* lang_for_each_statement walks the parse tree and calls the provided
929    function for each node, except those inside output section statements
930    with constraint set to -1.  */
931
932 void
933 lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
934                                 lang_statement_union_type *s)
935 {
936   for (; s != NULL; s = s->header.next)
937     {
938       func (s);
939
940       switch (s->header.type)
941         {
942         case lang_constructors_statement_enum:
943           lang_for_each_statement_worker (func, constructor_list.head);
944           break;
945         case lang_output_section_statement_enum:
946           if (s->output_section_statement.constraint != -1)
947             lang_for_each_statement_worker
948               (func, s->output_section_statement.children.head);
949           break;
950         case lang_wild_statement_enum:
951           lang_for_each_statement_worker (func,
952                                           s->wild_statement.children.head);
953           break;
954         case lang_group_statement_enum:
955           lang_for_each_statement_worker (func,
956                                           s->group_statement.children.head);
957           break;
958         case lang_data_statement_enum:
959         case lang_reloc_statement_enum:
960         case lang_object_symbols_statement_enum:
961         case lang_output_statement_enum:
962         case lang_target_statement_enum:
963         case lang_input_section_enum:
964         case lang_input_statement_enum:
965         case lang_assignment_statement_enum:
966         case lang_padding_statement_enum:
967         case lang_address_statement_enum:
968         case lang_fill_statement_enum:
969         case lang_insert_statement_enum:
970           break;
971         default:
972           FAIL ();
973           break;
974         }
975     }
976 }
977
978 void
979 lang_for_each_statement (void (*func) (lang_statement_union_type *))
980 {
981   lang_for_each_statement_worker (func, statement_list.head);
982 }
983
984 /*----------------------------------------------------------------------*/
985
986 void
987 lang_list_init (lang_statement_list_type *list)
988 {
989   list->head = NULL;
990   list->tail = &list->head;
991 }
992
993 void
994 push_stat_ptr (lang_statement_list_type *new_ptr)
995 {
996   if (stat_save_ptr >= stat_save + sizeof (stat_save) / sizeof (stat_save[0]))
997     abort ();
998   *stat_save_ptr++ = stat_ptr;
999   stat_ptr = new_ptr;
1000 }
1001
1002 void
1003 pop_stat_ptr (void)
1004 {
1005   if (stat_save_ptr <= stat_save)
1006     abort ();
1007   stat_ptr = *--stat_save_ptr;
1008 }
1009
1010 /* Build a new statement node for the parse tree.  */
1011
1012 static lang_statement_union_type *
1013 new_statement (enum statement_enum type,
1014                size_t size,
1015                lang_statement_list_type *list)
1016 {
1017   lang_statement_union_type *new_stmt;
1018
1019   new_stmt = (lang_statement_union_type *) stat_alloc (size);
1020   new_stmt->header.type = type;
1021   new_stmt->header.next = NULL;
1022   lang_statement_append (list, new_stmt, &new_stmt->header.next);
1023   return new_stmt;
1024 }
1025
1026 /* Build a new input file node for the language.  There are several
1027    ways in which we treat an input file, eg, we only look at symbols,
1028    or prefix it with a -l etc.
1029
1030    We can be supplied with requests for input files more than once;
1031    they may, for example be split over several lines like foo.o(.text)
1032    foo.o(.data) etc, so when asked for a file we check that we haven't
1033    got it already so we don't duplicate the bfd.  */
1034
1035 static lang_input_statement_type *
1036 new_afile (const char *name,
1037            lang_input_file_enum_type file_type,
1038            const char *target,
1039            bfd_boolean add_to_list)
1040 {
1041   lang_input_statement_type *p;
1042
1043   lang_has_input_file = TRUE;
1044
1045   if (add_to_list)
1046     p = (lang_input_statement_type *) new_stat (lang_input_statement, stat_ptr);
1047   else
1048     {
1049       p = (lang_input_statement_type *)
1050           stat_alloc (sizeof (lang_input_statement_type));
1051       p->header.type = lang_input_statement_enum;
1052       p->header.next = NULL;
1053     }
1054
1055   memset (&p->the_bfd, 0,
1056           sizeof (*p) - offsetof (lang_input_statement_type, the_bfd));
1057   p->target = target;
1058   p->flags.dynamic = input_flags.dynamic;
1059   p->flags.add_DT_NEEDED_for_dynamic = input_flags.add_DT_NEEDED_for_dynamic;
1060   p->flags.add_DT_NEEDED_for_regular = input_flags.add_DT_NEEDED_for_regular;
1061   p->flags.whole_archive = input_flags.whole_archive;
1062   p->flags.sysrooted = input_flags.sysrooted;
1063
1064   switch (file_type)
1065     {
1066     case lang_input_file_is_symbols_only_enum:
1067       p->filename = name;
1068       p->local_sym_name = name;
1069       p->flags.real = TRUE;
1070       p->flags.just_syms = TRUE;
1071       break;
1072     case lang_input_file_is_fake_enum:
1073       p->filename = name;
1074       p->local_sym_name = name;
1075       break;
1076     case lang_input_file_is_l_enum:
1077       if (name[0] == ':' && name[1] != '\0')
1078         {
1079           p->filename = name + 1;
1080           p->flags.full_name_provided = TRUE;
1081         }
1082       else
1083         p->filename = name;
1084       p->local_sym_name = concat ("-l", name, (const char *) NULL);
1085       p->flags.maybe_archive = TRUE;
1086       p->flags.real = TRUE;
1087       p->flags.search_dirs = TRUE;
1088       break;
1089     case lang_input_file_is_marker_enum:
1090       p->filename = name;
1091       p->local_sym_name = name;
1092       p->flags.search_dirs = TRUE;
1093       break;
1094     case lang_input_file_is_search_file_enum:
1095       p->filename = name;
1096       p->local_sym_name = name;
1097       p->flags.real = TRUE;
1098       p->flags.search_dirs = TRUE;
1099       break;
1100     case lang_input_file_is_file_enum:
1101       p->filename = name;
1102       p->local_sym_name = name;
1103       p->flags.real = TRUE;
1104       break;
1105     default:
1106       FAIL ();
1107     }
1108
1109   lang_statement_append (&input_file_chain,
1110                          (lang_statement_union_type *) p,
1111                          &p->next_real_file);
1112   return p;
1113 }
1114
1115 lang_input_statement_type *
1116 lang_add_input_file (const char *name,
1117                      lang_input_file_enum_type file_type,
1118                      const char *target)
1119 {
1120   return new_afile (name, file_type, target, TRUE);
1121 }
1122
1123 struct out_section_hash_entry
1124 {
1125   struct bfd_hash_entry root;
1126   lang_statement_union_type s;
1127 };
1128
1129 /* The hash table.  */
1130
1131 static struct bfd_hash_table output_section_statement_table;
1132
1133 /* Support routines for the hash table used by lang_output_section_find,
1134    initialize the table, fill in an entry and remove the table.  */
1135
1136 static struct bfd_hash_entry *
1137 output_section_statement_newfunc (struct bfd_hash_entry *entry,
1138                                   struct bfd_hash_table *table,
1139                                   const char *string)
1140 {
1141   lang_output_section_statement_type **nextp;
1142   struct out_section_hash_entry *ret;
1143
1144   if (entry == NULL)
1145     {
1146       entry = (struct bfd_hash_entry *) bfd_hash_allocate (table,
1147                                                            sizeof (*ret));
1148       if (entry == NULL)
1149         return entry;
1150     }
1151
1152   entry = bfd_hash_newfunc (entry, table, string);
1153   if (entry == NULL)
1154     return entry;
1155
1156   ret = (struct out_section_hash_entry *) entry;
1157   memset (&ret->s, 0, sizeof (ret->s));
1158   ret->s.header.type = lang_output_section_statement_enum;
1159   ret->s.output_section_statement.subsection_alignment = -1;
1160   ret->s.output_section_statement.section_alignment = -1;
1161   ret->s.output_section_statement.block_value = 1;
1162   lang_list_init (&ret->s.output_section_statement.children);
1163   lang_statement_append (stat_ptr, &ret->s, &ret->s.header.next);
1164
1165   /* For every output section statement added to the list, except the
1166      first one, lang_output_section_statement.tail points to the "next"
1167      field of the last element of the list.  */
1168   if (lang_output_section_statement.head != NULL)
1169     ret->s.output_section_statement.prev
1170       = ((lang_output_section_statement_type *)
1171          ((char *) lang_output_section_statement.tail
1172           - offsetof (lang_output_section_statement_type, next)));
1173
1174   /* GCC's strict aliasing rules prevent us from just casting the
1175      address, so we store the pointer in a variable and cast that
1176      instead.  */
1177   nextp = &ret->s.output_section_statement.next;
1178   lang_statement_append (&lang_output_section_statement,
1179                          &ret->s,
1180                          (lang_statement_union_type **) nextp);
1181   return &ret->root;
1182 }
1183
1184 static void
1185 output_section_statement_table_init (void)
1186 {
1187   if (!bfd_hash_table_init_n (&output_section_statement_table,
1188                               output_section_statement_newfunc,
1189                               sizeof (struct out_section_hash_entry),
1190                               61))
1191     einfo (_("%P%F: can not create hash table: %E\n"));
1192 }
1193
1194 static void
1195 output_section_statement_table_free (void)
1196 {
1197   bfd_hash_table_free (&output_section_statement_table);
1198 }
1199
1200 /* Build enough state so that the parser can build its tree.  */
1201
1202 void
1203 lang_init (void)
1204 {
1205   obstack_begin (&stat_obstack, 1000);
1206
1207   stat_ptr = &statement_list;
1208
1209   output_section_statement_table_init ();
1210
1211   lang_list_init (stat_ptr);
1212
1213   lang_list_init (&input_file_chain);
1214   lang_list_init (&lang_output_section_statement);
1215   lang_list_init (&file_chain);
1216   first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
1217                                     NULL);
1218   abs_output_section =
1219     lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME, 0, TRUE);
1220
1221   abs_output_section->bfd_section = bfd_abs_section_ptr;
1222
1223   /* The value "13" is ad-hoc, somewhat related to the expected number of
1224      assignments in a linker script.  */
1225   if (!bfd_hash_table_init_n (&lang_definedness_table,
1226                               lang_definedness_newfunc,
1227                               sizeof (struct lang_definedness_hash_entry),
1228                               13))
1229     einfo (_("%P%F: can not create hash table: %E\n"));
1230
1231   asneeded_list_head = NULL;
1232   asneeded_list_tail = &asneeded_list_head;
1233 }
1234
1235 void
1236 lang_finish (void)
1237 {
1238   bfd_hash_table_free (&lang_definedness_table);
1239   output_section_statement_table_free ();
1240 }
1241
1242 /*----------------------------------------------------------------------
1243   A region is an area of memory declared with the
1244   MEMORY {  name:org=exp, len=exp ... }
1245   syntax.
1246
1247   We maintain a list of all the regions here.
1248
1249   If no regions are specified in the script, then the default is used
1250   which is created when looked up to be the entire data space.
1251
1252   If create is true we are creating a region inside a MEMORY block.
1253   In this case it is probably an error to create a region that has
1254   already been created.  If we are not inside a MEMORY block it is
1255   dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
1256   and so we issue a warning.
1257
1258   Each region has at least one name.  The first name is either
1259   DEFAULT_MEMORY_REGION or the name given in the MEMORY block.  You can add
1260   alias names to an existing region within a script with
1261   REGION_ALIAS (alias, region_name).  Each name corresponds to at most one
1262   region.  */
1263
1264 static lang_memory_region_type *lang_memory_region_list;
1265 static lang_memory_region_type **lang_memory_region_list_tail
1266   = &lang_memory_region_list;
1267
1268 lang_memory_region_type *
1269 lang_memory_region_lookup (const char *const name, bfd_boolean create)
1270 {
1271   lang_memory_region_name *n;
1272   lang_memory_region_type *r;
1273   lang_memory_region_type *new_region;
1274
1275   /* NAME is NULL for LMA memspecs if no region was specified.  */
1276   if (name == NULL)
1277     return NULL;
1278
1279   for (r = lang_memory_region_list; r != NULL; r = r->next)
1280     for (n = &r->name_list; n != NULL; n = n->next)
1281       if (strcmp (n->name, name) == 0)
1282         {
1283           if (create)
1284             einfo (_("%P:%S: warning: redeclaration of memory region `%s'\n"),
1285                    NULL, name);
1286           return r;
1287         }
1288
1289   if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
1290     einfo (_("%P:%S: warning: memory region `%s' not declared\n"),
1291            NULL, name);
1292
1293   new_region = (lang_memory_region_type *)
1294       stat_alloc (sizeof (lang_memory_region_type));
1295
1296   new_region->name_list.name = xstrdup (name);
1297   new_region->name_list.next = NULL;
1298   new_region->next = NULL;
1299   new_region->origin = 0;
1300   new_region->length = ~(bfd_size_type) 0;
1301   new_region->current = 0;
1302   new_region->last_os = NULL;
1303   new_region->flags = 0;
1304   new_region->not_flags = 0;
1305   new_region->had_full_message = FALSE;
1306
1307   *lang_memory_region_list_tail = new_region;
1308   lang_memory_region_list_tail = &new_region->next;
1309
1310   return new_region;
1311 }
1312
1313 void
1314 lang_memory_region_alias (const char * alias, const char * region_name)
1315 {
1316   lang_memory_region_name * n;
1317   lang_memory_region_type * r;
1318   lang_memory_region_type * region;
1319
1320   /* The default region must be unique.  This ensures that it is not necessary
1321      to iterate through the name list if someone wants the check if a region is
1322      the default memory region.  */
1323   if (strcmp (region_name, DEFAULT_MEMORY_REGION) == 0
1324       || strcmp (alias, DEFAULT_MEMORY_REGION) == 0)
1325     einfo (_("%F%P:%S: error: alias for default memory region\n"), NULL);
1326
1327   /* Look for the target region and check if the alias is not already
1328      in use.  */
1329   region = NULL;
1330   for (r = lang_memory_region_list; r != NULL; r = r->next)
1331     for (n = &r->name_list; n != NULL; n = n->next)
1332       {
1333         if (region == NULL && strcmp (n->name, region_name) == 0)
1334           region = r;
1335         if (strcmp (n->name, alias) == 0)
1336           einfo (_("%F%P:%S: error: redefinition of memory region "
1337                    "alias `%s'\n"),
1338                  NULL, alias);
1339       }
1340
1341   /* Check if the target region exists.  */
1342   if (region == NULL)
1343     einfo (_("%F%P:%S: error: memory region `%s' "
1344              "for alias `%s' does not exist\n"),
1345            NULL, region_name, alias);
1346
1347   /* Add alias to region name list.  */
1348   n = (lang_memory_region_name *) stat_alloc (sizeof (lang_memory_region_name));
1349   n->name = xstrdup (alias);
1350   n->next = region->name_list.next;
1351   region->name_list.next = n;
1352 }
1353
1354 static lang_memory_region_type *
1355 lang_memory_default (asection * section)
1356 {
1357   lang_memory_region_type *p;
1358
1359   flagword sec_flags = section->flags;
1360
1361   /* Override SEC_DATA to mean a writable section.  */
1362   if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
1363     sec_flags |= SEC_DATA;
1364
1365   for (p = lang_memory_region_list; p != NULL; p = p->next)
1366     {
1367       if ((p->flags & sec_flags) != 0
1368           && (p->not_flags & sec_flags) == 0)
1369         {
1370           return p;
1371         }
1372     }
1373   return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
1374 }
1375
1376 /* Get the output section statement directly from the userdata.  */
1377
1378 lang_output_section_statement_type *
1379 lang_output_section_get (const asection *output_section)
1380 {
1381   return get_userdata (output_section);
1382 }
1383
1384 /* Find or create an output_section_statement with the given NAME.
1385    If CONSTRAINT is non-zero match one with that constraint, otherwise
1386    match any non-negative constraint.  If CREATE, always make a
1387    new output_section_statement for SPECIAL CONSTRAINT.  */
1388
1389 lang_output_section_statement_type *
1390 lang_output_section_statement_lookup (const char *name,
1391                                       int constraint,
1392                                       bfd_boolean create)
1393 {
1394   struct out_section_hash_entry *entry;
1395
1396   entry = ((struct out_section_hash_entry *)
1397            bfd_hash_lookup (&output_section_statement_table, name,
1398                             create, FALSE));
1399   if (entry == NULL)
1400     {
1401       if (create)
1402         einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1403       return NULL;
1404     }
1405
1406   if (entry->s.output_section_statement.name != NULL)
1407     {
1408       /* We have a section of this name, but it might not have the correct
1409          constraint.  */
1410       struct out_section_hash_entry *last_ent;
1411
1412       name = entry->s.output_section_statement.name;
1413       if (create && constraint == SPECIAL)
1414         /* Not traversing to the end reverses the order of the second
1415            and subsequent SPECIAL sections in the hash table chain,
1416            but that shouldn't matter.  */
1417         last_ent = entry;
1418       else
1419         do
1420           {
1421             if (constraint == entry->s.output_section_statement.constraint
1422                 || (constraint == 0
1423                     && entry->s.output_section_statement.constraint >= 0))
1424               return &entry->s.output_section_statement;
1425             last_ent = entry;
1426             entry = (struct out_section_hash_entry *) entry->root.next;
1427           }
1428         while (entry != NULL
1429                && name == entry->s.output_section_statement.name);
1430
1431       if (!create)
1432         return NULL;
1433
1434       entry
1435         = ((struct out_section_hash_entry *)
1436            output_section_statement_newfunc (NULL,
1437                                              &output_section_statement_table,
1438                                              name));
1439       if (entry == NULL)
1440         {
1441           einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1442           return NULL;
1443         }
1444       entry->root = last_ent->root;
1445       last_ent->root.next = &entry->root;
1446     }
1447
1448   entry->s.output_section_statement.name = name;
1449   entry->s.output_section_statement.constraint = constraint;
1450   return &entry->s.output_section_statement;
1451 }
1452
1453 /* Find the next output_section_statement with the same name as OS.
1454    If CONSTRAINT is non-zero, find one with that constraint otherwise
1455    match any non-negative constraint.  */
1456
1457 lang_output_section_statement_type *
1458 next_matching_output_section_statement (lang_output_section_statement_type *os,
1459                                         int constraint)
1460 {
1461   /* All output_section_statements are actually part of a
1462      struct out_section_hash_entry.  */
1463   struct out_section_hash_entry *entry = (struct out_section_hash_entry *)
1464     ((char *) os
1465      - offsetof (struct out_section_hash_entry, s.output_section_statement));
1466   const char *name = os->name;
1467
1468   ASSERT (name == entry->root.string);
1469   do
1470     {
1471       entry = (struct out_section_hash_entry *) entry->root.next;
1472       if (entry == NULL
1473           || name != entry->s.output_section_statement.name)
1474         return NULL;
1475     }
1476   while (constraint != entry->s.output_section_statement.constraint
1477          && (constraint != 0
1478              || entry->s.output_section_statement.constraint < 0));
1479
1480   return &entry->s.output_section_statement;
1481 }
1482
1483 /* A variant of lang_output_section_find used by place_orphan.
1484    Returns the output statement that should precede a new output
1485    statement for SEC.  If an exact match is found on certain flags,
1486    sets *EXACT too.  */
1487
1488 lang_output_section_statement_type *
1489 lang_output_section_find_by_flags (const asection *sec,
1490                                    lang_output_section_statement_type **exact,
1491                                    lang_match_sec_type_func match_type)
1492 {
1493   lang_output_section_statement_type *first, *look, *found;
1494   flagword look_flags, sec_flags, differ;
1495
1496   /* We know the first statement on this list is *ABS*.  May as well
1497      skip it.  */
1498   first = &lang_output_section_statement.head->output_section_statement;
1499   first = first->next;
1500
1501   /* First try for an exact match.  */
1502   sec_flags = sec->flags;
1503   found = NULL;
1504   for (look = first; look; look = look->next)
1505     {
1506       look_flags = look->flags;
1507       if (look->bfd_section != NULL)
1508         {
1509           look_flags = look->bfd_section->flags;
1510           if (match_type && !match_type (link_info.output_bfd,
1511                                          look->bfd_section,
1512                                          sec->owner, sec))
1513             continue;
1514         }
1515       differ = look_flags ^ sec_flags;
1516       if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY
1517                       | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1518         found = look;
1519     }
1520   if (found != NULL)
1521     {
1522       if (exact != NULL)
1523         *exact = found;
1524       return found;
1525     }
1526
1527   if ((sec_flags & SEC_CODE) != 0
1528       && (sec_flags & SEC_ALLOC) != 0)
1529     {
1530       /* Try for a rw code section.  */
1531       for (look = first; look; look = look->next)
1532         {
1533           look_flags = look->flags;
1534           if (look->bfd_section != NULL)
1535             {
1536               look_flags = look->bfd_section->flags;
1537               if (match_type && !match_type (link_info.output_bfd,
1538                                              look->bfd_section,
1539                                              sec->owner, sec))
1540                 continue;
1541             }
1542           differ = look_flags ^ sec_flags;
1543           if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1544                           | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1545             found = look;
1546         }
1547     }
1548   else if ((sec_flags & SEC_READONLY) != 0
1549            && (sec_flags & SEC_ALLOC) != 0)
1550     {
1551       /* .rodata can go after .text, .sdata2 after .rodata.  */
1552       for (look = first; look; look = look->next)
1553         {
1554           look_flags = look->flags;
1555           if (look->bfd_section != NULL)
1556             {
1557               look_flags = look->bfd_section->flags;
1558               if (match_type && !match_type (link_info.output_bfd,
1559                                              look->bfd_section,
1560                                              sec->owner, sec))
1561                 continue;
1562             }
1563           differ = look_flags ^ sec_flags;
1564           if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1565                           | SEC_READONLY | SEC_SMALL_DATA))
1566               || (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1567                               | SEC_READONLY))
1568                   && !(look_flags & SEC_SMALL_DATA)))
1569             found = look;
1570         }
1571     }
1572   else if ((sec_flags & SEC_THREAD_LOCAL) != 0
1573            && (sec_flags & SEC_ALLOC) != 0)
1574     {
1575       /* .tdata can go after .data, .tbss after .tdata.  Treat .tbss
1576          as if it were a loaded section, and don't use match_type.  */
1577       bfd_boolean seen_thread_local = FALSE;
1578
1579       match_type = NULL;
1580       for (look = first; look; look = look->next)
1581         {
1582           look_flags = look->flags;
1583           if (look->bfd_section != NULL)
1584             look_flags = look->bfd_section->flags;
1585
1586           differ = look_flags ^ (sec_flags | SEC_LOAD | SEC_HAS_CONTENTS);
1587           if (!(differ & (SEC_THREAD_LOCAL | SEC_ALLOC)))
1588             {
1589               /* .tdata and .tbss must be adjacent and in that order.  */
1590               if (!(look_flags & SEC_LOAD)
1591                   && (sec_flags & SEC_LOAD))
1592                 /* ..so if we're at a .tbss section and we're placing
1593                    a .tdata section stop looking and return the
1594                    previous section.  */
1595                 break;
1596               found = look;
1597               seen_thread_local = TRUE;
1598             }
1599           else if (seen_thread_local)
1600             break;
1601           else if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD)))
1602             found = look;
1603         }
1604     }
1605   else if ((sec_flags & SEC_SMALL_DATA) != 0
1606            && (sec_flags & SEC_ALLOC) != 0)
1607     {
1608       /* .sdata goes after .data, .sbss after .sdata.  */
1609       for (look = first; look; look = look->next)
1610         {
1611           look_flags = look->flags;
1612           if (look->bfd_section != NULL)
1613             {
1614               look_flags = look->bfd_section->flags;
1615               if (match_type && !match_type (link_info.output_bfd,
1616                                              look->bfd_section,
1617                                              sec->owner, sec))
1618                 continue;
1619             }
1620           differ = look_flags ^ sec_flags;
1621           if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1622                           | SEC_THREAD_LOCAL))
1623               || ((look_flags & SEC_SMALL_DATA)
1624                   && !(sec_flags & SEC_HAS_CONTENTS)))
1625             found = look;
1626         }
1627     }
1628   else if ((sec_flags & SEC_HAS_CONTENTS) != 0
1629            && (sec_flags & SEC_ALLOC) != 0)
1630     {
1631       /* .data goes after .rodata.  */
1632       for (look = first; look; look = look->next)
1633         {
1634           look_flags = look->flags;
1635           if (look->bfd_section != NULL)
1636             {
1637               look_flags = look->bfd_section->flags;
1638               if (match_type && !match_type (link_info.output_bfd,
1639                                              look->bfd_section,
1640                                              sec->owner, sec))
1641                 continue;
1642             }
1643           differ = look_flags ^ sec_flags;
1644           if (!(differ & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1645                           | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1646             found = look;
1647         }
1648     }
1649   else if ((sec_flags & SEC_ALLOC) != 0)
1650     {
1651       /* .bss goes after any other alloc section.  */
1652       for (look = first; look; look = look->next)
1653         {
1654           look_flags = look->flags;
1655           if (look->bfd_section != NULL)
1656             {
1657               look_flags = look->bfd_section->flags;
1658               if (match_type && !match_type (link_info.output_bfd,
1659                                              look->bfd_section,
1660                                              sec->owner, sec))
1661                 continue;
1662             }
1663           differ = look_flags ^ sec_flags;
1664           if (!(differ & SEC_ALLOC))
1665             found = look;
1666         }
1667     }
1668   else
1669     {
1670       /* non-alloc go last.  */
1671       for (look = first; look; look = look->next)
1672         {
1673           look_flags = look->flags;
1674           if (look->bfd_section != NULL)
1675             look_flags = look->bfd_section->flags;
1676           differ = look_flags ^ sec_flags;
1677           if (!(differ & SEC_DEBUGGING))
1678             found = look;
1679         }
1680       return found;
1681     }
1682
1683   if (found || !match_type)
1684     return found;
1685
1686   return lang_output_section_find_by_flags (sec, NULL, NULL);
1687 }
1688
1689 /* Find the last output section before given output statement.
1690    Used by place_orphan.  */
1691
1692 static asection *
1693 output_prev_sec_find (lang_output_section_statement_type *os)
1694 {
1695   lang_output_section_statement_type *lookup;
1696
1697   for (lookup = os->prev; lookup != NULL; lookup = lookup->prev)
1698     {
1699       if (lookup->constraint < 0)
1700         continue;
1701
1702       if (lookup->bfd_section != NULL && lookup->bfd_section->owner != NULL)
1703         return lookup->bfd_section;
1704     }
1705
1706   return NULL;
1707 }
1708
1709 /* Look for a suitable place for a new output section statement.  The
1710    idea is to skip over anything that might be inside a SECTIONS {}
1711    statement in a script, before we find another output section
1712    statement.  Assignments to "dot" before an output section statement
1713    are assumed to belong to it, except in two cases;  The first
1714    assignment to dot, and assignments before non-alloc sections.
1715    Otherwise we might put an orphan before . = . + SIZEOF_HEADERS or
1716    similar assignments that set the initial address, or we might
1717    insert non-alloc note sections among assignments setting end of
1718    image symbols.  */
1719
1720 static lang_statement_union_type **
1721 insert_os_after (lang_output_section_statement_type *after)
1722 {
1723   lang_statement_union_type **where;
1724   lang_statement_union_type **assign = NULL;
1725   bfd_boolean ignore_first;
1726
1727   ignore_first
1728     = after == &lang_output_section_statement.head->output_section_statement;
1729
1730   for (where = &after->header.next;
1731        *where != NULL;
1732        where = &(*where)->header.next)
1733     {
1734       switch ((*where)->header.type)
1735         {
1736         case lang_assignment_statement_enum:
1737           if (assign == NULL)
1738             {
1739               lang_assignment_statement_type *ass;
1740
1741               ass = &(*where)->assignment_statement;
1742               if (ass->exp->type.node_class != etree_assert
1743                   && ass->exp->assign.dst[0] == '.'
1744                   && ass->exp->assign.dst[1] == 0
1745                   && !ignore_first)
1746                 assign = where;
1747             }
1748           ignore_first = FALSE;
1749           continue;
1750         case lang_wild_statement_enum:
1751         case lang_input_section_enum:
1752         case lang_object_symbols_statement_enum:
1753         case lang_fill_statement_enum:
1754         case lang_data_statement_enum:
1755         case lang_reloc_statement_enum:
1756         case lang_padding_statement_enum:
1757         case lang_constructors_statement_enum:
1758           assign = NULL;
1759           continue;
1760         case lang_output_section_statement_enum:
1761           if (assign != NULL)
1762             {
1763               asection *s = (*where)->output_section_statement.bfd_section;
1764
1765               if (s == NULL
1766                   || s->map_head.s == NULL
1767                   || (s->flags & SEC_ALLOC) != 0)
1768                 where = assign;
1769             }
1770           break;
1771         case lang_input_statement_enum:
1772         case lang_address_statement_enum:
1773         case lang_target_statement_enum:
1774         case lang_output_statement_enum:
1775         case lang_group_statement_enum:
1776         case lang_insert_statement_enum:
1777           continue;
1778         }
1779       break;
1780     }
1781
1782   return where;
1783 }
1784
1785 lang_output_section_statement_type *
1786 lang_insert_orphan (asection *s,
1787                     const char *secname,
1788                     int constraint,
1789                     lang_output_section_statement_type *after,
1790                     struct orphan_save *place,
1791                     etree_type *address,
1792                     lang_statement_list_type *add_child)
1793 {
1794   lang_statement_list_type add;
1795   const char *ps;
1796   lang_output_section_statement_type *os;
1797   lang_output_section_statement_type **os_tail;
1798
1799   /* If we have found an appropriate place for the output section
1800      statements for this orphan, add them to our own private list,
1801      inserting them later into the global statement list.  */
1802   if (after != NULL)
1803     {
1804       lang_list_init (&add);
1805       push_stat_ptr (&add);
1806     }
1807
1808   if (link_info.relocatable || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)
1809     address = exp_intop (0);
1810
1811   os_tail = ((lang_output_section_statement_type **)
1812              lang_output_section_statement.tail);
1813   os = lang_enter_output_section_statement (secname, address, normal_section,
1814                                             NULL, NULL, NULL, constraint, 0);
1815
1816   ps = NULL;
1817   if (config.build_constructors && *os_tail == os)
1818     {
1819       /* If the name of the section is representable in C, then create
1820          symbols to mark the start and the end of the section.  */
1821       for (ps = secname; *ps != '\0'; ps++)
1822         if (! ISALNUM ((unsigned char) *ps) && *ps != '_')
1823           break;
1824       if (*ps == '\0')
1825         {
1826           char *symname;
1827
1828           symname = (char *) xmalloc (ps - secname + sizeof "__start_" + 1);
1829           symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1830           sprintf (symname + (symname[0] != 0), "__start_%s", secname);
1831           lang_add_assignment (exp_provide (symname,
1832                                             exp_nameop (NAME, "."),
1833                                             FALSE));
1834         }
1835     }
1836
1837   if (add_child == NULL)
1838     add_child = &os->children;
1839   lang_add_section (add_child, s, NULL, os);
1840
1841   if (after && (s->flags & (SEC_LOAD | SEC_ALLOC)) != 0)
1842     {
1843       const char *region = (after->region
1844                             ? after->region->name_list.name
1845                             : DEFAULT_MEMORY_REGION);
1846       const char *lma_region = (after->lma_region
1847                                 ? after->lma_region->name_list.name
1848                                 : NULL);
1849       lang_leave_output_section_statement (NULL, region, after->phdrs,
1850                                            lma_region);
1851     }
1852   else
1853     lang_leave_output_section_statement (NULL, DEFAULT_MEMORY_REGION, NULL,
1854                                          NULL);
1855
1856   if (ps != NULL && *ps == '\0')
1857     {
1858       char *symname;
1859
1860       symname = (char *) xmalloc (ps - secname + sizeof "__stop_" + 1);
1861       symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1862       sprintf (symname + (symname[0] != 0), "__stop_%s", secname);
1863       lang_add_assignment (exp_provide (symname,
1864                                         exp_nameop (NAME, "."),
1865                                         FALSE));
1866     }
1867
1868   /* Restore the global list pointer.  */
1869   if (after != NULL)
1870     pop_stat_ptr ();
1871
1872   if (after != NULL && os->bfd_section != NULL)
1873     {
1874       asection *snew, *as;
1875
1876       snew = os->bfd_section;
1877
1878       /* Shuffle the bfd section list to make the output file look
1879          neater.  This is really only cosmetic.  */
1880       if (place->section == NULL
1881           && after != (&lang_output_section_statement.head
1882                        ->output_section_statement))
1883         {
1884           asection *bfd_section = after->bfd_section;
1885
1886           /* If the output statement hasn't been used to place any input
1887              sections (and thus doesn't have an output bfd_section),
1888              look for the closest prior output statement having an
1889              output section.  */
1890           if (bfd_section == NULL)
1891             bfd_section = output_prev_sec_find (after);
1892
1893           if (bfd_section != NULL && bfd_section != snew)
1894             place->section = &bfd_section->next;
1895         }
1896
1897       if (place->section == NULL)
1898         place->section = &link_info.output_bfd->sections;
1899
1900       as = *place->section;
1901
1902       if (!as)
1903         {
1904           /* Put the section at the end of the list.  */
1905
1906           /* Unlink the section.  */
1907           bfd_section_list_remove (link_info.output_bfd, snew);
1908
1909           /* Now tack it back on in the right place.  */
1910           bfd_section_list_append (link_info.output_bfd, snew);
1911         }
1912       else if (as != snew && as->prev != snew)
1913         {
1914           /* Unlink the section.  */
1915           bfd_section_list_remove (link_info.output_bfd, snew);
1916
1917           /* Now tack it back on in the right place.  */
1918           bfd_section_list_insert_before (link_info.output_bfd, as, snew);
1919         }
1920
1921       /* Save the end of this list.  Further ophans of this type will
1922          follow the one we've just added.  */
1923       place->section = &snew->next;
1924
1925       /* The following is non-cosmetic.  We try to put the output
1926          statements in some sort of reasonable order here, because they
1927          determine the final load addresses of the orphan sections.
1928          In addition, placing output statements in the wrong order may
1929          require extra segments.  For instance, given a typical
1930          situation of all read-only sections placed in one segment and
1931          following that a segment containing all the read-write
1932          sections, we wouldn't want to place an orphan read/write
1933          section before or amongst the read-only ones.  */
1934       if (add.head != NULL)
1935         {
1936           lang_output_section_statement_type *newly_added_os;
1937
1938           if (place->stmt == NULL)
1939             {
1940               lang_statement_union_type **where = insert_os_after (after);
1941
1942               *add.tail = *where;
1943               *where = add.head;
1944
1945               place->os_tail = &after->next;
1946             }
1947           else
1948             {
1949               /* Put it after the last orphan statement we added.  */
1950               *add.tail = *place->stmt;
1951               *place->stmt = add.head;
1952             }
1953
1954           /* Fix the global list pointer if we happened to tack our
1955              new list at the tail.  */
1956           if (*stat_ptr->tail == add.head)
1957             stat_ptr->tail = add.tail;
1958
1959           /* Save the end of this list.  */
1960           place->stmt = add.tail;
1961
1962           /* Do the same for the list of output section statements.  */
1963           newly_added_os = *os_tail;
1964           *os_tail = NULL;
1965           newly_added_os->prev = (lang_output_section_statement_type *)
1966             ((char *) place->os_tail
1967              - offsetof (lang_output_section_statement_type, next));
1968           newly_added_os->next = *place->os_tail;
1969           if (newly_added_os->next != NULL)
1970             newly_added_os->next->prev = newly_added_os;
1971           *place->os_tail = newly_added_os;
1972           place->os_tail = &newly_added_os->next;
1973
1974           /* Fixing the global list pointer here is a little different.
1975              We added to the list in lang_enter_output_section_statement,
1976              trimmed off the new output_section_statment above when
1977              assigning *os_tail = NULL, but possibly added it back in
1978              the same place when assigning *place->os_tail.  */
1979           if (*os_tail == NULL)
1980             lang_output_section_statement.tail
1981               = (lang_statement_union_type **) os_tail;
1982         }
1983     }
1984   return os;
1985 }
1986
1987 static void
1988 lang_print_asneeded (void)
1989 {
1990   struct asneeded_minfo *m;
1991   char buf[100];
1992
1993   if (asneeded_list_head == NULL)
1994     return;
1995
1996   sprintf (buf, _("\nAs-needed library included "
1997                   "to satisfy reference by file (symbol)\n\n"));
1998   minfo ("%s", buf);
1999
2000   for (m = asneeded_list_head; m != NULL; m = m->next)
2001     {
2002       size_t len;
2003
2004       minfo ("%s", m->soname);
2005       len = strlen (m->soname);
2006
2007       if (len >= 29)
2008         {
2009           print_nl ();
2010           len = 0;
2011         }
2012       while (len < 30)
2013         {
2014           print_space ();
2015           ++len;
2016         }
2017
2018       if (m->ref != NULL)
2019         minfo ("%B ", m->ref);
2020       minfo ("(%T)\n", m->name);
2021     }
2022 }
2023
2024 static void
2025 lang_map_flags (flagword flag)
2026 {
2027   if (flag & SEC_ALLOC)
2028     minfo ("a");
2029
2030   if (flag & SEC_CODE)
2031     minfo ("x");
2032
2033   if (flag & SEC_READONLY)
2034     minfo ("r");
2035
2036   if (flag & SEC_DATA)
2037     minfo ("w");
2038
2039   if (flag & SEC_LOAD)
2040     minfo ("l");
2041 }
2042
2043 void
2044 lang_map (void)
2045 {
2046   lang_memory_region_type *m;
2047   bfd_boolean dis_header_printed = FALSE;
2048
2049   LANG_FOR_EACH_INPUT_STATEMENT (file)
2050     {
2051       asection *s;
2052
2053       if ((file->the_bfd->flags & (BFD_LINKER_CREATED | DYNAMIC)) != 0
2054           || file->flags.just_syms)
2055         continue;
2056
2057       for (s = file->the_bfd->sections; s != NULL; s = s->next)
2058         if ((s->output_section == NULL
2059              || s->output_section->owner != link_info.output_bfd)
2060             && (s->flags & (SEC_LINKER_CREATED | SEC_KEEP)) == 0)
2061           {
2062             if (! dis_header_printed)
2063               {
2064                 fprintf (config.map_file, _("\nDiscarded input sections\n\n"));
2065                 dis_header_printed = TRUE;
2066               }
2067
2068             print_input_section (s, TRUE);
2069           }
2070     }
2071
2072   minfo (_("\nMemory Configuration\n\n"));
2073   fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
2074            _("Name"), _("Origin"), _("Length"), _("Attributes"));
2075
2076   for (m = lang_memory_region_list; m != NULL; m = m->next)
2077     {
2078       char buf[100];
2079       int len;
2080
2081       fprintf (config.map_file, "%-16s ", m->name_list.name);
2082
2083       sprintf_vma (buf, m->origin);
2084       minfo ("0x%s ", buf);
2085       len = strlen (buf);
2086       while (len < 16)
2087         {
2088           print_space ();
2089           ++len;
2090         }
2091
2092       minfo ("0x%V", m->length);
2093       if (m->flags || m->not_flags)
2094         {
2095 #ifndef BFD64
2096           minfo ("        ");
2097 #endif
2098           if (m->flags)
2099             {
2100               print_space ();
2101               lang_map_flags (m->flags);
2102             }
2103
2104           if (m->not_flags)
2105             {
2106               minfo (" !");
2107               lang_map_flags (m->not_flags);
2108             }
2109         }
2110
2111       print_nl ();
2112     }
2113
2114   fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
2115
2116   if (! link_info.reduce_memory_overheads)
2117     {
2118       obstack_begin (&map_obstack, 1000);
2119       bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0);
2120     }
2121   lang_statement_iteration++;
2122   print_statements ();
2123
2124   ldemul_extra_map_file_text (link_info.output_bfd, &link_info, config.map_file);
2125 }
2126
2127 static bfd_boolean
2128 sort_def_symbol (struct bfd_link_hash_entry *hash_entry,
2129                  void *info ATTRIBUTE_UNUSED)
2130 {
2131   if ((hash_entry->type == bfd_link_hash_defined
2132        || hash_entry->type == bfd_link_hash_defweak)
2133       && hash_entry->u.def.section->owner != link_info.output_bfd
2134       && hash_entry->u.def.section->owner != NULL)
2135     {
2136       input_section_userdata_type *ud;
2137       struct map_symbol_def *def;
2138
2139       ud = ((input_section_userdata_type *)
2140             get_userdata (hash_entry->u.def.section));
2141       if (!ud)
2142         {
2143           ud = (input_section_userdata_type *) stat_alloc (sizeof (*ud));
2144           get_userdata (hash_entry->u.def.section) = ud;
2145           ud->map_symbol_def_tail = &ud->map_symbol_def_head;
2146           ud->map_symbol_def_count = 0;
2147         }
2148       else if (!ud->map_symbol_def_tail)
2149         ud->map_symbol_def_tail = &ud->map_symbol_def_head;
2150
2151       def = (struct map_symbol_def *) obstack_alloc (&map_obstack, sizeof *def);
2152       def->entry = hash_entry;
2153       *(ud->map_symbol_def_tail) = def;
2154       ud->map_symbol_def_tail = &def->next;
2155       ud->map_symbol_def_count++;
2156     }
2157   return TRUE;
2158 }
2159
2160 /* Initialize an output section.  */
2161
2162 static void
2163 init_os (lang_output_section_statement_type *s, flagword flags)
2164 {
2165   if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
2166     einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
2167
2168   if (s->constraint != SPECIAL)
2169     s->bfd_section = bfd_get_section_by_name (link_info.output_bfd, s->name);
2170   if (s->bfd_section == NULL)
2171     s->bfd_section = bfd_make_section_anyway_with_flags (link_info.output_bfd,
2172                                                          s->name, flags);
2173   if (s->bfd_section == NULL)
2174     {
2175       einfo (_("%P%F: output format %s cannot represent section called %s\n"),
2176              link_info.output_bfd->xvec->name, s->name);
2177     }
2178   s->bfd_section->output_section = s->bfd_section;
2179   s->bfd_section->output_offset = 0;
2180
2181   /* Set the userdata of the output section to the output section
2182      statement to avoid lookup.  */
2183   get_userdata (s->bfd_section) = s;
2184
2185   /* If there is a base address, make sure that any sections it might
2186      mention are initialized.  */
2187   if (s->addr_tree != NULL)
2188     exp_init_os (s->addr_tree);
2189
2190   if (s->load_base != NULL)
2191     exp_init_os (s->load_base);
2192
2193   /* If supplied an alignment, set it.  */
2194   if (s->section_alignment != -1)
2195     s->bfd_section->alignment_power = s->section_alignment;
2196 }
2197
2198 /* Make sure that all output sections mentioned in an expression are
2199    initialized.  */
2200
2201 static void
2202 exp_init_os (etree_type *exp)
2203 {
2204   switch (exp->type.node_class)
2205     {
2206     case etree_assign:
2207     case etree_provide:
2208       exp_init_os (exp->assign.src);
2209       break;
2210
2211     case etree_binary:
2212       exp_init_os (exp->binary.lhs);
2213       exp_init_os (exp->binary.rhs);
2214       break;
2215
2216     case etree_trinary:
2217       exp_init_os (exp->trinary.cond);
2218       exp_init_os (exp->trinary.lhs);
2219       exp_init_os (exp->trinary.rhs);
2220       break;
2221
2222     case etree_assert:
2223       exp_init_os (exp->assert_s.child);
2224       break;
2225
2226     case etree_unary:
2227       exp_init_os (exp->unary.child);
2228       break;
2229
2230     case etree_name:
2231       switch (exp->type.node_code)
2232         {
2233         case ADDR:
2234         case LOADADDR:
2235         case SIZEOF:
2236           {
2237             lang_output_section_statement_type *os;
2238
2239             os = lang_output_section_find (exp->name.name);
2240             if (os != NULL && os->bfd_section == NULL)
2241               init_os (os, 0);
2242           }
2243         }
2244       break;
2245
2246     default:
2247       break;
2248     }
2249 }
2250 \f
2251 static void
2252 section_already_linked (bfd *abfd, asection *sec, void *data)
2253 {
2254   lang_input_statement_type *entry = (lang_input_statement_type *) data;
2255
2256   /* If we are only reading symbols from this object, then we want to
2257      discard all sections.  */
2258   if (entry->flags.just_syms)
2259     {
2260       bfd_link_just_syms (abfd, sec, &link_info);
2261       return;
2262     }
2263
2264   if (!(abfd->flags & DYNAMIC))
2265     bfd_section_already_linked (abfd, sec, &link_info);
2266 }
2267 \f
2268 /* The wild routines.
2269
2270    These expand statements like *(.text) and foo.o to a list of
2271    explicit actions, like foo.o(.text), bar.o(.text) and
2272    foo.o(.text, .data).  */
2273
2274 /* Add SECTION to the output section OUTPUT.  Do this by creating a
2275    lang_input_section statement which is placed at PTR.  */
2276
2277 void
2278 lang_add_section (lang_statement_list_type *ptr,
2279                   asection *section,
2280                   struct flag_info *sflag_info,
2281                   lang_output_section_statement_type *output)
2282 {
2283   flagword flags = section->flags;
2284
2285   bfd_boolean discard;
2286   lang_input_section_type *new_section;
2287   bfd *abfd = link_info.output_bfd;
2288
2289   /* Discard sections marked with SEC_EXCLUDE.  */
2290   discard = (flags & SEC_EXCLUDE) != 0;
2291
2292   /* Discard input sections which are assigned to a section named
2293      DISCARD_SECTION_NAME.  */
2294   if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
2295     discard = TRUE;
2296
2297   /* Discard debugging sections if we are stripping debugging
2298      information.  */
2299   if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
2300       && (flags & SEC_DEBUGGING) != 0)
2301     discard = TRUE;
2302
2303   if (discard)
2304     {
2305       if (section->output_section == NULL)
2306         {
2307           /* This prevents future calls from assigning this section.  */
2308           section->output_section = bfd_abs_section_ptr;
2309         }
2310       return;
2311     }
2312
2313   if (sflag_info)
2314     {
2315       bfd_boolean keep;
2316
2317       keep = bfd_lookup_section_flags (&link_info, sflag_info, section);
2318       if (!keep)
2319         return;
2320     }
2321
2322   if (section->output_section != NULL)
2323     return;
2324
2325   /* We don't copy the SEC_NEVER_LOAD flag from an input section
2326      to an output section, because we want to be able to include a
2327      SEC_NEVER_LOAD section in the middle of an otherwise loaded
2328      section (I don't know why we want to do this, but we do).
2329      build_link_order in ldwrite.c handles this case by turning
2330      the embedded SEC_NEVER_LOAD section into a fill.  */
2331   flags &= ~ SEC_NEVER_LOAD;
2332
2333   /* If final link, don't copy the SEC_LINK_ONCE flags, they've
2334      already been processed.  One reason to do this is that on pe
2335      format targets, .text$foo sections go into .text and it's odd
2336      to see .text with SEC_LINK_ONCE set.  */
2337
2338   if (!link_info.relocatable)
2339     flags &= ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC);
2340
2341   switch (output->sectype)
2342     {
2343     case normal_section:
2344     case overlay_section:
2345       break;
2346     case noalloc_section:
2347       flags &= ~SEC_ALLOC;
2348       break;
2349     case noload_section:
2350       flags &= ~SEC_LOAD;
2351       flags |= SEC_NEVER_LOAD;
2352       /* Unfortunately GNU ld has managed to evolve two different
2353          meanings to NOLOAD in scripts.  ELF gets a .bss style noload,
2354          alloc, no contents section.  All others get a noload, noalloc
2355          section.  */
2356       if (bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour)
2357         flags &= ~SEC_HAS_CONTENTS;
2358       else
2359         flags &= ~SEC_ALLOC;
2360       break;
2361     }
2362
2363   if (output->bfd_section == NULL)
2364     init_os (output, flags);
2365
2366   /* If SEC_READONLY is not set in the input section, then clear
2367      it from the output section.  */
2368   output->bfd_section->flags &= flags | ~SEC_READONLY;
2369
2370   if (output->bfd_section->linker_has_input)
2371     {
2372       /* Only set SEC_READONLY flag on the first input section.  */
2373       flags &= ~ SEC_READONLY;
2374
2375       /* Keep SEC_MERGE and SEC_STRINGS only if they are the same.  */
2376       if ((output->bfd_section->flags & (SEC_MERGE | SEC_STRINGS))
2377           != (flags & (SEC_MERGE | SEC_STRINGS))
2378           || ((flags & SEC_MERGE) != 0
2379               && output->bfd_section->entsize != section->entsize))
2380         {
2381           output->bfd_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
2382           flags &= ~ (SEC_MERGE | SEC_STRINGS);
2383         }
2384     }
2385   output->bfd_section->flags |= flags;
2386
2387   if (!output->bfd_section->linker_has_input)
2388     {
2389       output->bfd_section->linker_has_input = 1;
2390       /* This must happen after flags have been updated.  The output
2391          section may have been created before we saw its first input
2392          section, eg. for a data statement.  */
2393       bfd_init_private_section_data (section->owner, section,
2394                                      link_info.output_bfd,
2395                                      output->bfd_section,
2396                                      &link_info);
2397       if ((flags & SEC_MERGE) != 0)
2398         output->bfd_section->entsize = section->entsize;
2399     }
2400
2401   if ((flags & SEC_TIC54X_BLOCK) != 0
2402       && bfd_get_arch (section->owner) == bfd_arch_tic54x)
2403     {
2404       /* FIXME: This value should really be obtained from the bfd...  */
2405       output->block_value = 128;
2406     }
2407
2408   if (section->alignment_power > output->bfd_section->alignment_power)
2409     output->bfd_section->alignment_power = section->alignment_power;
2410
2411   section->output_section = output->bfd_section;
2412
2413   if (!link_info.relocatable
2414       && !stripped_excluded_sections)
2415     {
2416       asection *s = output->bfd_section->map_tail.s;
2417       output->bfd_section->map_tail.s = section;
2418       section->map_head.s = NULL;
2419       section->map_tail.s = s;
2420       if (s != NULL)
2421         s->map_head.s = section;
2422       else
2423         output->bfd_section->map_head.s = section;
2424     }
2425
2426   /* Add a section reference to the list.  */
2427   new_section = new_stat (lang_input_section, ptr);
2428   new_section->section = section;
2429 }
2430
2431 /* Handle wildcard sorting.  This returns the lang_input_section which
2432    should follow the one we are going to create for SECTION and FILE,
2433    based on the sorting requirements of WILD.  It returns NULL if the
2434    new section should just go at the end of the current list.  */
2435
2436 static lang_statement_union_type *
2437 wild_sort (lang_wild_statement_type *wild,
2438            struct wildcard_list *sec,
2439            lang_input_statement_type *file,
2440            asection *section)
2441 {
2442   lang_statement_union_type *l;
2443
2444   if (!wild->filenames_sorted
2445       && (sec == NULL || sec->spec.sorted == none))
2446     return NULL;
2447
2448   for (l = wild->children.head; l != NULL; l = l->header.next)
2449     {
2450       lang_input_section_type *ls;
2451
2452       if (l->header.type != lang_input_section_enum)
2453         continue;
2454       ls = &l->input_section;
2455
2456       /* Sorting by filename takes precedence over sorting by section
2457          name.  */
2458
2459       if (wild->filenames_sorted)
2460         {
2461           const char *fn, *ln;
2462           bfd_boolean fa, la;
2463           int i;
2464
2465           /* The PE support for the .idata section as generated by
2466              dlltool assumes that files will be sorted by the name of
2467              the archive and then the name of the file within the
2468              archive.  */
2469
2470           if (file->the_bfd != NULL
2471               && bfd_my_archive (file->the_bfd) != NULL)
2472             {
2473               fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
2474               fa = TRUE;
2475             }
2476           else
2477             {
2478               fn = file->filename;
2479               fa = FALSE;
2480             }
2481
2482           if (bfd_my_archive (ls->section->owner) != NULL)
2483             {
2484               ln = bfd_get_filename (bfd_my_archive (ls->section->owner));
2485               la = TRUE;
2486             }
2487           else
2488             {
2489               ln = ls->section->owner->filename;
2490               la = FALSE;
2491             }
2492
2493           i = filename_cmp (fn, ln);
2494           if (i > 0)
2495             continue;
2496           else if (i < 0)
2497             break;
2498
2499           if (fa || la)
2500             {
2501               if (fa)
2502                 fn = file->filename;
2503               if (la)
2504                 ln = ls->section->owner->filename;
2505
2506               i = filename_cmp (fn, ln);
2507               if (i > 0)
2508                 continue;
2509               else if (i < 0)
2510                 break;
2511             }
2512         }
2513
2514       /* Here either the files are not sorted by name, or we are
2515          looking at the sections for this file.  */
2516
2517       if (sec != NULL
2518           && sec->spec.sorted != none
2519           && sec->spec.sorted != by_none)
2520         if (compare_section (sec->spec.sorted, section, ls->section) < 0)
2521           break;
2522     }
2523
2524   return l;
2525 }
2526
2527 /* Expand a wild statement for a particular FILE.  SECTION may be
2528    NULL, in which case it is a wild card.  */
2529
2530 static void
2531 output_section_callback (lang_wild_statement_type *ptr,
2532                          struct wildcard_list *sec,
2533                          asection *section,
2534                          struct flag_info *sflag_info,
2535                          lang_input_statement_type *file,
2536                          void *output)
2537 {
2538   lang_statement_union_type *before;
2539   lang_output_section_statement_type *os;
2540
2541   os = (lang_output_section_statement_type *) output;
2542
2543   /* Exclude sections that match UNIQUE_SECTION_LIST.  */
2544   if (unique_section_p (section, os))
2545     return;
2546
2547   before = wild_sort (ptr, sec, file, section);
2548
2549   /* Here BEFORE points to the lang_input_section which
2550      should follow the one we are about to add.  If BEFORE
2551      is NULL, then the section should just go at the end
2552      of the current list.  */
2553
2554   if (before == NULL)
2555     lang_add_section (&ptr->children, section, sflag_info, os);
2556   else
2557     {
2558       lang_statement_list_type list;
2559       lang_statement_union_type **pp;
2560
2561       lang_list_init (&list);
2562       lang_add_section (&list, section, sflag_info, os);
2563
2564       /* If we are discarding the section, LIST.HEAD will
2565          be NULL.  */
2566       if (list.head != NULL)
2567         {
2568           ASSERT (list.head->header.next == NULL);
2569
2570           for (pp = &ptr->children.head;
2571                *pp != before;
2572                pp = &(*pp)->header.next)
2573             ASSERT (*pp != NULL);
2574
2575           list.head->header.next = *pp;
2576           *pp = list.head;
2577         }
2578     }
2579 }
2580
2581 /* Check if all sections in a wild statement for a particular FILE
2582    are readonly.  */
2583
2584 static void
2585 check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
2586                         struct wildcard_list *sec ATTRIBUTE_UNUSED,
2587                         asection *section,
2588                         struct flag_info *sflag_info ATTRIBUTE_UNUSED,
2589                         lang_input_statement_type *file ATTRIBUTE_UNUSED,
2590                         void *output)
2591 {
2592   lang_output_section_statement_type *os;
2593
2594   os = (lang_output_section_statement_type *) output;
2595
2596   /* Exclude sections that match UNIQUE_SECTION_LIST.  */
2597   if (unique_section_p (section, os))
2598     return;
2599
2600   if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0)
2601     os->all_input_readonly = FALSE;
2602 }
2603
2604 /* This is passed a file name which must have been seen already and
2605    added to the statement tree.  We will see if it has been opened
2606    already and had its symbols read.  If not then we'll read it.  */
2607
2608 static lang_input_statement_type *
2609 lookup_name (const char *name)
2610 {
2611   lang_input_statement_type *search;
2612
2613   for (search = (lang_input_statement_type *) input_file_chain.head;
2614        search != NULL;
2615        search = (lang_input_statement_type *) search->next_real_file)
2616     {
2617       /* Use the local_sym_name as the name of the file that has
2618          already been loaded as filename might have been transformed
2619          via the search directory lookup mechanism.  */
2620       const char *filename = search->local_sym_name;
2621
2622       if (filename != NULL
2623           && filename_cmp (filename, name) == 0)
2624         break;
2625     }
2626
2627   if (search == NULL)
2628     search = new_afile (name, lang_input_file_is_search_file_enum,
2629                         default_target, FALSE);
2630
2631   /* If we have already added this file, or this file is not real
2632      don't add this file.  */
2633   if (search->flags.loaded || !search->flags.real)
2634     return search;
2635
2636   if (! load_symbols (search, NULL))
2637     return NULL;
2638
2639   return search;
2640 }
2641
2642 /* Save LIST as a list of libraries whose symbols should not be exported.  */
2643
2644 struct excluded_lib
2645 {
2646   char *name;
2647   struct excluded_lib *next;
2648 };
2649 static struct excluded_lib *excluded_libs;
2650
2651 void
2652 add_excluded_libs (const char *list)
2653 {
2654   const char *p = list, *end;
2655
2656   while (*p != '\0')
2657     {
2658       struct excluded_lib *entry;
2659       end = strpbrk (p, ",:");
2660       if (end == NULL)
2661         end = p + strlen (p);
2662       entry = (struct excluded_lib *) xmalloc (sizeof (*entry));
2663       entry->next = excluded_libs;
2664       entry->name = (char *) xmalloc (end - p + 1);
2665       memcpy (entry->name, p, end - p);
2666       entry->name[end - p] = '\0';
2667       excluded_libs = entry;
2668       if (*end == '\0')
2669         break;
2670       p = end + 1;
2671     }
2672 }
2673
2674 static void
2675 check_excluded_libs (bfd *abfd)
2676 {
2677   struct excluded_lib *lib = excluded_libs;
2678
2679   while (lib)
2680     {
2681       int len = strlen (lib->name);
2682       const char *filename = lbasename (abfd->filename);
2683
2684       if (strcmp (lib->name, "ALL") == 0)
2685         {
2686           abfd->no_export = TRUE;
2687           return;
2688         }
2689
2690       if (filename_ncmp (lib->name, filename, len) == 0
2691           && (filename[len] == '\0'
2692               || (filename[len] == '.' && filename[len + 1] == 'a'
2693                   && filename[len + 2] == '\0')))
2694         {
2695           abfd->no_export = TRUE;
2696           return;
2697         }
2698
2699       lib = lib->next;
2700     }
2701 }
2702
2703 /* Get the symbols for an input file.  */
2704
2705 bfd_boolean
2706 load_symbols (lang_input_statement_type *entry,
2707               lang_statement_list_type *place)
2708 {
2709   char **matching;
2710
2711   if (entry->flags.loaded)
2712     return TRUE;
2713
2714   ldfile_open_file (entry);
2715
2716   /* Do not process further if the file was missing.  */
2717   if (entry->flags.missing_file)
2718     return TRUE;
2719
2720   if (! bfd_check_format (entry->the_bfd, bfd_archive)
2721       && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
2722     {
2723       bfd_error_type err;
2724       struct lang_input_statement_flags save_flags;
2725       extern FILE *yyin;
2726
2727       err = bfd_get_error ();
2728
2729       /* See if the emulation has some special knowledge.  */
2730       if (ldemul_unrecognized_file (entry))
2731         return TRUE;
2732
2733       if (err == bfd_error_file_ambiguously_recognized)
2734         {
2735           char **p;
2736
2737           einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
2738           einfo (_("%B: matching formats:"), entry->the_bfd);
2739           for (p = matching; *p != NULL; p++)
2740             einfo (" %s", *p);
2741           einfo ("%F\n");
2742         }
2743       else if (err != bfd_error_file_not_recognized
2744                || place == NULL)
2745         einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
2746
2747       bfd_close (entry->the_bfd);
2748       entry->the_bfd = NULL;
2749
2750       /* Try to interpret the file as a linker script.  */
2751       save_flags = input_flags;
2752       ldfile_open_command_file (entry->filename);
2753
2754       push_stat_ptr (place);
2755       input_flags.add_DT_NEEDED_for_regular
2756         = entry->flags.add_DT_NEEDED_for_regular;
2757       input_flags.add_DT_NEEDED_for_dynamic
2758         = entry->flags.add_DT_NEEDED_for_dynamic;
2759       input_flags.whole_archive = entry->flags.whole_archive;
2760       input_flags.dynamic = entry->flags.dynamic;
2761
2762       ldfile_assumed_script = TRUE;
2763       parser_input = input_script;
2764       yyparse ();
2765       ldfile_assumed_script = FALSE;
2766
2767       /* missing_file is sticky.  sysrooted will already have been
2768          restored when seeing EOF in yyparse, but no harm to restore
2769          again.  */
2770       save_flags.missing_file |= input_flags.missing_file;
2771       input_flags = save_flags;
2772       pop_stat_ptr ();
2773       fclose (yyin);
2774       yyin = NULL;
2775       entry->flags.loaded = TRUE;
2776
2777       return TRUE;
2778     }
2779
2780   if (ldemul_recognized_file (entry))
2781     return TRUE;
2782
2783   /* We don't call ldlang_add_file for an archive.  Instead, the
2784      add_symbols entry point will call ldlang_add_file, via the
2785      add_archive_element callback, for each element of the archive
2786      which is used.  */
2787   switch (bfd_get_format (entry->the_bfd))
2788     {
2789     default:
2790       break;
2791
2792     case bfd_object:
2793       if (!entry->flags.reload)
2794         ldlang_add_file (entry);
2795       if (trace_files || verbose)
2796         info_msg ("%I\n", entry);
2797       break;
2798
2799     case bfd_archive:
2800       check_excluded_libs (entry->the_bfd);
2801
2802       if (entry->flags.whole_archive)
2803         {
2804           bfd *member = NULL;
2805           bfd_boolean loaded = TRUE;
2806
2807           for (;;)
2808             {
2809               bfd *subsbfd;
2810               member = bfd_openr_next_archived_file (entry->the_bfd, member);
2811
2812               if (member == NULL)
2813                 break;
2814
2815               if (! bfd_check_format (member, bfd_object))
2816                 {
2817                   einfo (_("%F%B: member %B in archive is not an object\n"),
2818                          entry->the_bfd, member);
2819                   loaded = FALSE;
2820                 }
2821
2822               subsbfd = member;
2823               if (!(*link_info.callbacks
2824                     ->add_archive_element) (&link_info, member,
2825                                             "--whole-archive", &subsbfd))
2826                 abort ();
2827
2828               /* Potentially, the add_archive_element hook may have set a
2829                  substitute BFD for us.  */
2830               if (!bfd_link_add_symbols (subsbfd, &link_info))
2831                 {
2832                   einfo (_("%F%B: error adding symbols: %E\n"), member);
2833                   loaded = FALSE;
2834                 }
2835             }
2836
2837           entry->flags.loaded = loaded;
2838           return loaded;
2839         }
2840       break;
2841     }
2842
2843   if (bfd_link_add_symbols (entry->the_bfd, &link_info))
2844     entry->flags.loaded = TRUE;
2845   else
2846     einfo (_("%F%B: error adding symbols: %E\n"), entry->the_bfd);
2847
2848   return entry->flags.loaded;
2849 }
2850
2851 /* Handle a wild statement.  S->FILENAME or S->SECTION_LIST or both
2852    may be NULL, indicating that it is a wildcard.  Separate
2853    lang_input_section statements are created for each part of the
2854    expansion; they are added after the wild statement S.  OUTPUT is
2855    the output section.  */
2856
2857 static void
2858 wild (lang_wild_statement_type *s,
2859       const char *target ATTRIBUTE_UNUSED,
2860       lang_output_section_statement_type *output)
2861 {
2862   struct wildcard_list *sec;
2863
2864   if (s->handler_data[0]
2865       && s->handler_data[0]->spec.sorted == by_name
2866       && !s->filenames_sorted)
2867     {
2868       lang_section_bst_type *tree;
2869
2870       walk_wild (s, output_section_callback_fast, output);
2871
2872       tree = s->tree;
2873       if (tree)
2874         {
2875           output_section_callback_tree_to_list (s, tree, output);
2876           s->tree = NULL;
2877         }
2878     }
2879   else
2880     walk_wild (s, output_section_callback, output);
2881
2882   if (default_common_section == NULL)
2883     for (sec = s->section_list; sec != NULL; sec = sec->next)
2884       if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
2885         {
2886           /* Remember the section that common is going to in case we
2887              later get something which doesn't know where to put it.  */
2888           default_common_section = output;
2889           break;
2890         }
2891 }
2892
2893 /* Return TRUE iff target is the sought target.  */
2894
2895 static int
2896 get_target (const bfd_target *target, void *data)
2897 {
2898   const char *sought = (const char *) data;
2899
2900   return strcmp (target->name, sought) == 0;
2901 }
2902
2903 /* Like strcpy() but convert to lower case as well.  */
2904
2905 static void
2906 stricpy (char *dest, char *src)
2907 {
2908   char c;
2909
2910   while ((c = *src++) != 0)
2911     *dest++ = TOLOWER (c);
2912
2913   *dest = 0;
2914 }
2915
2916 /* Remove the first occurrence of needle (if any) in haystack
2917    from haystack.  */
2918
2919 static void
2920 strcut (char *haystack, char *needle)
2921 {
2922   haystack = strstr (haystack, needle);
2923
2924   if (haystack)
2925     {
2926       char *src;
2927
2928       for (src = haystack + strlen (needle); *src;)
2929         *haystack++ = *src++;
2930
2931       *haystack = 0;
2932     }
2933 }
2934
2935 /* Compare two target format name strings.
2936    Return a value indicating how "similar" they are.  */
2937
2938 static int
2939 name_compare (char *first, char *second)
2940 {
2941   char *copy1;
2942   char *copy2;
2943   int result;
2944
2945   copy1 = (char *) xmalloc (strlen (first) + 1);
2946   copy2 = (char *) xmalloc (strlen (second) + 1);
2947
2948   /* Convert the names to lower case.  */
2949   stricpy (copy1, first);
2950   stricpy (copy2, second);
2951
2952   /* Remove size and endian strings from the name.  */
2953   strcut (copy1, "big");
2954   strcut (copy1, "little");
2955   strcut (copy2, "big");
2956   strcut (copy2, "little");
2957
2958   /* Return a value based on how many characters match,
2959      starting from the beginning.   If both strings are
2960      the same then return 10 * their length.  */
2961   for (result = 0; copy1[result] == copy2[result]; result++)
2962     if (copy1[result] == 0)
2963       {
2964         result *= 10;
2965         break;
2966       }
2967
2968   free (copy1);
2969   free (copy2);
2970
2971   return result;
2972 }
2973
2974 /* Set by closest_target_match() below.  */
2975 static const bfd_target *winner;
2976
2977 /* Scan all the valid bfd targets looking for one that has the endianness
2978    requirement that was specified on the command line, and is the nearest
2979    match to the original output target.  */
2980
2981 static int
2982 closest_target_match (const bfd_target *target, void *data)
2983 {
2984   const bfd_target *original = (const bfd_target *) data;
2985
2986   if (command_line.endian == ENDIAN_BIG
2987       && target->byteorder != BFD_ENDIAN_BIG)
2988     return 0;
2989
2990   if (command_line.endian == ENDIAN_LITTLE
2991       && target->byteorder != BFD_ENDIAN_LITTLE)
2992     return 0;
2993
2994   /* Must be the same flavour.  */
2995   if (target->flavour != original->flavour)
2996     return 0;
2997
2998   /* Ignore generic big and little endian elf vectors.  */
2999   if (strcmp (target->name, "elf32-big") == 0
3000       || strcmp (target->name, "elf64-big") == 0
3001       || strcmp (target->name, "elf32-little") == 0
3002       || strcmp (target->name, "elf64-little") == 0)
3003     return 0;
3004
3005   /* If we have not found a potential winner yet, then record this one.  */
3006   if (winner == NULL)
3007     {
3008       winner = target;
3009       return 0;
3010     }
3011
3012   /* Oh dear, we now have two potential candidates for a successful match.
3013      Compare their names and choose the better one.  */
3014   if (name_compare (target->name, original->name)
3015       > name_compare (winner->name, original->name))
3016     winner = target;
3017
3018   /* Keep on searching until wqe have checked them all.  */
3019   return 0;
3020 }
3021
3022 /* Return the BFD target format of the first input file.  */
3023
3024 static char *
3025 get_first_input_target (void)
3026 {
3027   char *target = NULL;
3028
3029   LANG_FOR_EACH_INPUT_STATEMENT (s)
3030     {
3031       if (s->header.type == lang_input_statement_enum
3032           && s->flags.real)
3033         {
3034           ldfile_open_file (s);
3035
3036           if (s->the_bfd != NULL
3037               && bfd_check_format (s->the_bfd, bfd_object))
3038             {
3039               target = bfd_get_target (s->the_bfd);
3040
3041               if (target != NULL)
3042                 break;
3043             }
3044         }
3045     }
3046
3047   return target;
3048 }
3049
3050 const char *
3051 lang_get_output_target (void)
3052 {
3053   const char *target;
3054
3055   /* Has the user told us which output format to use?  */
3056   if (output_target != NULL)
3057     return output_target;
3058
3059   /* No - has the current target been set to something other than
3060      the default?  */
3061   if (current_target != default_target && current_target != NULL)
3062     return current_target;
3063
3064   /* No - can we determine the format of the first input file?  */
3065   target = get_first_input_target ();
3066   if (target != NULL)
3067     return target;
3068
3069   /* Failed - use the default output target.  */
3070   return default_target;
3071 }
3072
3073 /* Open the output file.  */
3074
3075 static void
3076 open_output (const char *name)
3077 {
3078   output_target = lang_get_output_target ();
3079
3080   /* Has the user requested a particular endianness on the command
3081      line?  */
3082   if (command_line.endian != ENDIAN_UNSET)
3083     {
3084       const bfd_target *target;
3085       enum bfd_endian desired_endian;
3086
3087       /* Get the chosen target.  */
3088       target = bfd_search_for_target (get_target, (void *) output_target);
3089
3090       /* If the target is not supported, we cannot do anything.  */
3091       if (target != NULL)
3092         {
3093           if (command_line.endian == ENDIAN_BIG)
3094             desired_endian = BFD_ENDIAN_BIG;
3095           else
3096             desired_endian = BFD_ENDIAN_LITTLE;
3097
3098           /* See if the target has the wrong endianness.  This should
3099              not happen if the linker script has provided big and
3100              little endian alternatives, but some scrips don't do
3101              this.  */
3102           if (target->byteorder != desired_endian)
3103             {
3104               /* If it does, then see if the target provides
3105                  an alternative with the correct endianness.  */
3106               if (target->alternative_target != NULL
3107                   && (target->alternative_target->byteorder == desired_endian))
3108                 output_target = target->alternative_target->name;
3109               else
3110                 {
3111                   /* Try to find a target as similar as possible to
3112                      the default target, but which has the desired
3113                      endian characteristic.  */
3114                   bfd_search_for_target (closest_target_match,
3115                                          (void *) target);
3116
3117                   /* Oh dear - we could not find any targets that
3118                      satisfy our requirements.  */
3119                   if (winner == NULL)
3120                     einfo (_("%P: warning: could not find any targets"
3121                              " that match endianness requirement\n"));
3122                   else
3123                     output_target = winner->name;
3124                 }
3125             }
3126         }
3127     }
3128
3129   link_info.output_bfd = bfd_openw (name, output_target);
3130
3131   if (link_info.output_bfd == NULL)
3132     {
3133       if (bfd_get_error () == bfd_error_invalid_target)
3134         einfo (_("%P%F: target %s not found\n"), output_target);
3135
3136       einfo (_("%P%F: cannot open output file %s: %E\n"), name);
3137     }
3138
3139   delete_output_file_on_failure = TRUE;
3140
3141   if (! bfd_set_format (link_info.output_bfd, bfd_object))
3142     einfo (_("%P%F:%s: can not make object file: %E\n"), name);
3143   if (! bfd_set_arch_mach (link_info.output_bfd,
3144                            ldfile_output_architecture,
3145                            ldfile_output_machine))
3146     einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
3147
3148   link_info.hash = bfd_link_hash_table_create (link_info.output_bfd);
3149   if (link_info.hash == NULL)
3150     einfo (_("%P%F: can not create hash table: %E\n"));
3151
3152   bfd_set_gp_size (link_info.output_bfd, g_switch_value);
3153 }
3154
3155 static void
3156 ldlang_open_output (lang_statement_union_type *statement)
3157 {
3158   switch (statement->header.type)
3159     {
3160     case lang_output_statement_enum:
3161       ASSERT (link_info.output_bfd == NULL);
3162       open_output (statement->output_statement.name);
3163       ldemul_set_output_arch ();
3164       if (config.magic_demand_paged && !link_info.relocatable)
3165         link_info.output_bfd->flags |= D_PAGED;
3166       else
3167         link_info.output_bfd->flags &= ~D_PAGED;
3168       if (config.text_read_only)
3169         link_info.output_bfd->flags |= WP_TEXT;
3170       else
3171         link_info.output_bfd->flags &= ~WP_TEXT;
3172       if (link_info.traditional_format)
3173         link_info.output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
3174       else
3175         link_info.output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
3176       break;
3177
3178     case lang_target_statement_enum:
3179       current_target = statement->target_statement.target;
3180       break;
3181     default:
3182       break;
3183     }
3184 }
3185
3186 /* Convert between addresses in bytes and sizes in octets.
3187    For currently supported targets, octets_per_byte is always a power
3188    of two, so we can use shifts.  */
3189 #define TO_ADDR(X) ((X) >> opb_shift)
3190 #define TO_SIZE(X) ((X) << opb_shift)
3191
3192 /* Support the above.  */
3193 static unsigned int opb_shift = 0;
3194
3195 static void
3196 init_opb (void)
3197 {
3198   unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
3199                                               ldfile_output_machine);
3200   opb_shift = 0;
3201   if (x > 1)
3202     while ((x & 1) == 0)
3203       {
3204         x >>= 1;
3205         ++opb_shift;
3206       }
3207   ASSERT (x == 1);
3208 }
3209
3210 /* Open all the input files.  */
3211
3212 enum open_bfd_mode
3213   {
3214     OPEN_BFD_NORMAL = 0,
3215     OPEN_BFD_FORCE = 1,
3216     OPEN_BFD_RESCAN = 2
3217   };
3218 #ifdef ENABLE_PLUGINS
3219 static lang_input_statement_type *plugin_insert = NULL;
3220 #endif
3221
3222 static void
3223 open_input_bfds (lang_statement_union_type *s, enum open_bfd_mode mode)
3224 {
3225   for (; s != NULL; s = s->header.next)
3226     {
3227       switch (s->header.type)
3228         {
3229         case lang_constructors_statement_enum:
3230           open_input_bfds (constructor_list.head, mode);
3231           break;
3232         case lang_output_section_statement_enum:
3233           open_input_bfds (s->output_section_statement.children.head, mode);
3234           break;
3235         case lang_wild_statement_enum:
3236           /* Maybe we should load the file's symbols.  */
3237           if ((mode & OPEN_BFD_RESCAN) == 0
3238               && s->wild_statement.filename
3239               && !wildcardp (s->wild_statement.filename)
3240               && !archive_path (s->wild_statement.filename))
3241             lookup_name (s->wild_statement.filename);
3242           open_input_bfds (s->wild_statement.children.head, mode);
3243           break;
3244         case lang_group_statement_enum:
3245           {
3246             struct bfd_link_hash_entry *undefs;
3247
3248             /* We must continually search the entries in the group
3249                until no new symbols are added to the list of undefined
3250                symbols.  */
3251
3252             do
3253               {
3254                 undefs = link_info.hash->undefs_tail;
3255                 open_input_bfds (s->group_statement.children.head,
3256                                  mode | OPEN_BFD_FORCE);
3257               }
3258             while (undefs != link_info.hash->undefs_tail);
3259           }
3260           break;
3261         case lang_target_statement_enum:
3262           current_target = s->target_statement.target;
3263           break;
3264         case lang_input_statement_enum:
3265           if (s->input_statement.flags.real)
3266             {
3267               lang_statement_union_type **os_tail;
3268               lang_statement_list_type add;
3269               bfd *abfd;
3270
3271               s->input_statement.target = current_target;
3272
3273               /* If we are being called from within a group, and this
3274                  is an archive which has already been searched, then
3275                  force it to be researched unless the whole archive
3276                  has been loaded already.  Do the same for a rescan.
3277                  Likewise reload --as-needed shared libs.  */
3278               if (mode != OPEN_BFD_NORMAL
3279 #ifdef ENABLE_PLUGINS
3280                   && ((mode & OPEN_BFD_RESCAN) == 0
3281                       || plugin_insert == NULL)
3282 #endif
3283                   && s->input_statement.flags.loaded
3284                   && (abfd = s->input_statement.the_bfd) != NULL
3285                   && ((bfd_get_format (abfd) == bfd_archive
3286                        && !s->input_statement.flags.whole_archive)
3287                       || (bfd_get_format (abfd) == bfd_object
3288                           && ((abfd->flags) & DYNAMIC) != 0
3289                           && s->input_statement.flags.add_DT_NEEDED_for_regular
3290                           && plugin_should_reload (abfd))))
3291                 {
3292                   s->input_statement.flags.loaded = FALSE;
3293                   s->input_statement.flags.reload = TRUE;
3294                 }
3295
3296               os_tail = lang_output_section_statement.tail;
3297               lang_list_init (&add);
3298
3299               if (! load_symbols (&s->input_statement, &add))
3300                 config.make_executable = FALSE;
3301
3302               if (add.head != NULL)
3303                 {
3304                   /* If this was a script with output sections then
3305                      tack any added statements on to the end of the
3306                      list.  This avoids having to reorder the output
3307                      section statement list.  Very likely the user
3308                      forgot -T, and whatever we do here will not meet
3309                      naive user expectations.  */
3310                   if (os_tail != lang_output_section_statement.tail)
3311                     {
3312                       einfo (_("%P: warning: %s contains output sections;"
3313                                " did you forget -T?\n"),
3314                              s->input_statement.filename);
3315                       *stat_ptr->tail = add.head;
3316                       stat_ptr->tail = add.tail;
3317                     }
3318                   else
3319                     {
3320                       *add.tail = s->header.next;
3321                       s->header.next = add.head;
3322                     }
3323                 }
3324             }
3325 #ifdef ENABLE_PLUGINS
3326           /* If we have found the point at which a plugin added new
3327              files, clear plugin_insert to enable archive rescan.  */
3328           if (&s->input_statement == plugin_insert)
3329             plugin_insert = NULL;
3330 #endif
3331           break;
3332         case lang_assignment_statement_enum:
3333           if (s->assignment_statement.exp->assign.defsym)
3334             /* This is from a --defsym on the command line.  */
3335             exp_fold_tree_no_dot (s->assignment_statement.exp);
3336           break;
3337         default:
3338           break;
3339         }
3340     }
3341
3342   /* Exit if any of the files were missing.  */
3343   if (input_flags.missing_file)
3344     einfo ("%F");
3345 }
3346
3347 /* New-function for the definedness hash table.  */
3348
3349 static struct bfd_hash_entry *
3350 lang_definedness_newfunc (struct bfd_hash_entry *entry,
3351                           struct bfd_hash_table *table ATTRIBUTE_UNUSED,
3352                           const char *name ATTRIBUTE_UNUSED)
3353 {
3354   struct lang_definedness_hash_entry *ret
3355     = (struct lang_definedness_hash_entry *) entry;
3356
3357   if (ret == NULL)
3358     ret = (struct lang_definedness_hash_entry *)
3359       bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
3360
3361   if (ret == NULL)
3362     einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
3363
3364   ret->by_object = 0;
3365   ret->by_script = 0;
3366   ret->iteration = 0;
3367   return &ret->root;
3368 }
3369
3370 /* Called during processing of linker script script expressions.
3371    For symbols assigned in a linker script, return a struct describing
3372    where the symbol is defined relative to the current expression,
3373    otherwise return NULL.  */
3374
3375 struct lang_definedness_hash_entry *
3376 lang_symbol_defined (const char *name)
3377 {
3378   return ((struct lang_definedness_hash_entry *)
3379           bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE));
3380 }
3381
3382 /* Update the definedness state of NAME.  */
3383
3384 void
3385 lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
3386 {
3387   struct lang_definedness_hash_entry *defentry
3388     = (struct lang_definedness_hash_entry *)
3389     bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE);
3390
3391   if (defentry == NULL)
3392     einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
3393
3394   /* If the symbol was already defined, and not by a script, then it
3395      must be defined by an object file.  */
3396   if (!defentry->by_script
3397       && h->type != bfd_link_hash_undefined
3398       && h->type != bfd_link_hash_common
3399       && h->type != bfd_link_hash_new)
3400     defentry->by_object = 1;
3401
3402   defentry->by_script = 1;
3403   defentry->iteration = lang_statement_iteration;
3404 }
3405
3406 /* Add the supplied name to the symbol table as an undefined reference.
3407    This is a two step process as the symbol table doesn't even exist at
3408    the time the ld command line is processed.  First we put the name
3409    on a list, then, once the output file has been opened, transfer the
3410    name to the symbol table.  */
3411
3412 typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
3413
3414 #define ldlang_undef_chain_list_head entry_symbol.next
3415
3416 void
3417 ldlang_add_undef (const char *const name, bfd_boolean cmdline)
3418 {
3419   ldlang_undef_chain_list_type *new_undef;
3420
3421   undef_from_cmdline = undef_from_cmdline || cmdline;
3422   new_undef = (ldlang_undef_chain_list_type *) stat_alloc (sizeof (*new_undef));
3423   new_undef->next = ldlang_undef_chain_list_head;
3424   ldlang_undef_chain_list_head = new_undef;
3425
3426   new_undef->name = xstrdup (name);
3427
3428   if (link_info.output_bfd != NULL)
3429     insert_undefined (new_undef->name);
3430 }
3431
3432 /* Insert NAME as undefined in the symbol table.  */
3433
3434 static void
3435 insert_undefined (const char *name)
3436 {
3437   struct bfd_link_hash_entry *h;
3438
3439   h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
3440   if (h == NULL)
3441     einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
3442   if (h->type == bfd_link_hash_new)
3443     {
3444       h->type = bfd_link_hash_undefined;
3445       h->u.undef.abfd = NULL;
3446       bfd_link_add_undef (link_info.hash, h);
3447     }
3448 }
3449
3450 /* Run through the list of undefineds created above and place them
3451    into the linker hash table as undefined symbols belonging to the
3452    script file.  */
3453
3454 static void
3455 lang_place_undefineds (void)
3456 {
3457   ldlang_undef_chain_list_type *ptr;
3458
3459   for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
3460     insert_undefined (ptr->name);
3461 }
3462
3463 /* Check for all readonly or some readwrite sections.  */
3464
3465 static void
3466 check_input_sections
3467   (lang_statement_union_type *s,
3468    lang_output_section_statement_type *output_section_statement)
3469 {
3470   for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
3471     {
3472       switch (s->header.type)
3473         {
3474         case lang_wild_statement_enum:
3475           walk_wild (&s->wild_statement, check_section_callback,
3476                      output_section_statement);
3477           if (! output_section_statement->all_input_readonly)
3478             return;
3479           break;
3480         case lang_constructors_statement_enum:
3481           check_input_sections (constructor_list.head,
3482                                 output_section_statement);
3483           if (! output_section_statement->all_input_readonly)
3484             return;
3485           break;
3486         case lang_group_statement_enum:
3487           check_input_sections (s->group_statement.children.head,
3488                                 output_section_statement);
3489           if (! output_section_statement->all_input_readonly)
3490             return;
3491           break;
3492         default:
3493           break;
3494         }
3495     }
3496 }
3497
3498 /* Update wildcard statements if needed.  */
3499
3500 static void
3501 update_wild_statements (lang_statement_union_type *s)
3502 {
3503   struct wildcard_list *sec;
3504
3505   switch (sort_section)
3506     {
3507     default:
3508       FAIL ();
3509
3510     case none:
3511       break;
3512
3513     case by_name:
3514     case by_alignment:
3515       for (; s != NULL; s = s->header.next)
3516         {
3517           switch (s->header.type)
3518             {
3519             default:
3520               break;
3521
3522             case lang_wild_statement_enum:
3523               for (sec = s->wild_statement.section_list; sec != NULL;
3524                    sec = sec->next)
3525                 {
3526                   switch (sec->spec.sorted)
3527                     {
3528                     case none:
3529                       sec->spec.sorted = sort_section;
3530                       break;
3531                     case by_name:
3532                       if (sort_section == by_alignment)
3533                         sec->spec.sorted = by_name_alignment;
3534                       break;
3535                     case by_alignment:
3536                       if (sort_section == by_name)
3537                         sec->spec.sorted = by_alignment_name;
3538                       break;
3539                     default:
3540                       break;
3541                     }
3542                 }
3543               break;
3544
3545             case lang_constructors_statement_enum:
3546               update_wild_statements (constructor_list.head);
3547               break;
3548
3549             case lang_output_section_statement_enum:
3550               /* Don't sort .init/.fini sections.  */
3551               if (strcmp (s->output_section_statement.name, ".init") != 0
3552                   && strcmp (s->output_section_statement.name, ".fini") != 0)
3553                 update_wild_statements
3554                   (s->output_section_statement.children.head);
3555               break;
3556
3557             case lang_group_statement_enum:
3558               update_wild_statements (s->group_statement.children.head);
3559               break;
3560             }
3561         }
3562       break;
3563     }
3564 }
3565
3566 /* Open input files and attach to output sections.  */
3567
3568 static void
3569 map_input_to_output_sections
3570   (lang_statement_union_type *s, const char *target,
3571    lang_output_section_statement_type *os)
3572 {
3573   for (; s != NULL; s = s->header.next)
3574     {
3575       lang_output_section_statement_type *tos;
3576       flagword flags;
3577
3578       switch (s->header.type)
3579         {
3580         case lang_wild_statement_enum:
3581           wild (&s->wild_statement, target, os);
3582           break;
3583         case lang_constructors_statement_enum:
3584           map_input_to_output_sections (constructor_list.head,
3585                                         target,
3586                                         os);
3587           break;
3588         case lang_output_section_statement_enum:
3589           tos = &s->output_section_statement;
3590           if (tos->constraint != 0)
3591             {
3592               if (tos->constraint != ONLY_IF_RW
3593                   && tos->constraint != ONLY_IF_RO)
3594                 break;
3595               tos->all_input_readonly = TRUE;
3596               check_input_sections (tos->children.head, tos);
3597               if (tos->all_input_readonly != (tos->constraint == ONLY_IF_RO))
3598                 {
3599                   tos->constraint = -1;
3600                   break;
3601                 }
3602             }
3603           map_input_to_output_sections (tos->children.head,
3604                                         target,
3605                                         tos);
3606           break;
3607         case lang_output_statement_enum:
3608           break;
3609         case lang_target_statement_enum:
3610           target = s->target_statement.target;
3611           break;
3612         case lang_group_statement_enum:
3613           map_input_to_output_sections (s->group_statement.children.head,
3614                                         target,
3615                                         os);
3616           break;
3617         case lang_data_statement_enum:
3618           /* Make sure that any sections mentioned in the expression
3619              are initialized.  */
3620           exp_init_os (s->data_statement.exp);
3621           /* The output section gets CONTENTS, ALLOC and LOAD, but
3622              these may be overridden by the script.  */
3623           flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD;
3624           switch (os->sectype)
3625             {
3626             case normal_section:
3627             case overlay_section:
3628               break;
3629             case noalloc_section:
3630               flags = SEC_HAS_CONTENTS;
3631               break;
3632             case noload_section:
3633               if (bfd_get_flavour (link_info.output_bfd)
3634                   == bfd_target_elf_flavour)
3635                 flags = SEC_NEVER_LOAD | SEC_ALLOC;
3636               else
3637                 flags = SEC_NEVER_LOAD | SEC_HAS_CONTENTS;
3638               break;
3639             }
3640           if (os->bfd_section == NULL)
3641             init_os (os, flags);
3642           else
3643             os->bfd_section->flags |= flags;
3644           break;
3645         case lang_input_section_enum:
3646           break;
3647         case lang_fill_statement_enum:
3648         case lang_object_symbols_statement_enum:
3649         case lang_reloc_statement_enum:
3650         case lang_padding_statement_enum:
3651         case lang_input_statement_enum:
3652           if (os != NULL && os->bfd_section == NULL)
3653             init_os (os, 0);
3654           break;
3655         case lang_assignment_statement_enum:
3656           if (os != NULL && os->bfd_section == NULL)
3657             init_os (os, 0);
3658
3659           /* Make sure that any sections mentioned in the assignment
3660              are initialized.  */
3661           exp_init_os (s->assignment_statement.exp);
3662           break;
3663         case lang_address_statement_enum:
3664           /* Mark the specified section with the supplied address.
3665              If this section was actually a segment marker, then the
3666              directive is ignored if the linker script explicitly
3667              processed the segment marker.  Originally, the linker
3668              treated segment directives (like -Ttext on the
3669              command-line) as section directives.  We honor the
3670              section directive semantics for backwards compatibilty;
3671              linker scripts that do not specifically check for
3672              SEGMENT_START automatically get the old semantics.  */
3673           if (!s->address_statement.segment
3674               || !s->address_statement.segment->used)
3675             {
3676               const char *name = s->address_statement.section_name;
3677
3678               /* Create the output section statement here so that
3679                  orphans with a set address will be placed after other
3680                  script sections.  If we let the orphan placement code
3681                  place them in amongst other sections then the address
3682                  will affect following script sections, which is
3683                  likely to surprise naive users.  */
3684               tos = lang_output_section_statement_lookup (name, 0, TRUE);
3685               tos->addr_tree = s->address_statement.address;
3686               if (tos->bfd_section == NULL)
3687                 init_os (tos, 0);
3688             }
3689           break;
3690         case lang_insert_statement_enum:
3691           break;
3692         }
3693     }
3694 }
3695
3696 /* An insert statement snips out all the linker statements from the
3697    start of the list and places them after the output section
3698    statement specified by the insert.  This operation is complicated
3699    by the fact that we keep a doubly linked list of output section
3700    statements as well as the singly linked list of all statements.  */
3701
3702 static void
3703 process_insert_statements (void)
3704 {
3705   lang_statement_union_type **s;
3706   lang_output_section_statement_type *first_os = NULL;
3707   lang_output_section_statement_type *last_os = NULL;
3708   lang_output_section_statement_type *os;
3709
3710   /* "start of list" is actually the statement immediately after
3711      the special abs_section output statement, so that it isn't
3712      reordered.  */
3713   s = &lang_output_section_statement.head;
3714   while (*(s = &(*s)->header.next) != NULL)
3715     {
3716       if ((*s)->header.type == lang_output_section_statement_enum)
3717         {
3718           /* Keep pointers to the first and last output section
3719              statement in the sequence we may be about to move.  */
3720           os = &(*s)->output_section_statement;
3721
3722           ASSERT (last_os == NULL || last_os->next == os);
3723           last_os = os;
3724
3725           /* Set constraint negative so that lang_output_section_find
3726              won't match this output section statement.  At this
3727              stage in linking constraint has values in the range
3728              [-1, ONLY_IN_RW].  */
3729           last_os->constraint = -2 - last_os->constraint;
3730           if (first_os == NULL)
3731             first_os = last_os;
3732         }
3733       else if ((*s)->header.type == lang_insert_statement_enum)
3734         {
3735           lang_insert_statement_type *i = &(*s)->insert_statement;
3736           lang_output_section_statement_type *where;
3737           lang_statement_union_type **ptr;
3738           lang_statement_union_type *first;
3739
3740           where = lang_output_section_find (i->where);
3741           if (where != NULL && i->is_before)
3742             {
3743               do
3744                 where = where->prev;
3745               while (where != NULL && where->constraint < 0);
3746             }
3747           if (where == NULL)
3748             {
3749               einfo (_("%F%P: %s not found for insert\n"), i->where);
3750               return;
3751             }
3752
3753           /* Deal with reordering the output section statement list.  */
3754           if (last_os != NULL)
3755             {
3756               asection *first_sec, *last_sec;
3757               struct lang_output_section_statement_struct **next;
3758
3759               /* Snip out the output sections we are moving.  */
3760               first_os->prev->next = last_os->next;
3761               if (last_os->next == NULL)
3762                 {
3763                   next = &first_os->prev->next;
3764                   lang_output_section_statement.tail
3765                     = (lang_statement_union_type **) next;
3766                 }
3767               else
3768                 last_os->next->prev = first_os->prev;
3769               /* Add them in at the new position.  */
3770               last_os->next = where->next;
3771               if (where->next == NULL)
3772                 {
3773                   next = &last_os->next;
3774                   lang_output_section_statement.tail
3775                     = (lang_statement_union_type **) next;
3776                 }
3777               else
3778                 where->next->prev = last_os;
3779               first_os->prev = where;
3780               where->next = first_os;
3781
3782               /* Move the bfd sections in the same way.  */
3783               first_sec = NULL;
3784               last_sec = NULL;
3785               for (os = first_os; os != NULL; os = os->next)
3786                 {
3787                   os->constraint = -2 - os->constraint;
3788                   if (os->bfd_section != NULL
3789                       && os->bfd_section->owner != NULL)
3790                     {
3791                       last_sec = os->bfd_section;
3792                       if (first_sec == NULL)
3793                         first_sec = last_sec;
3794                     }
3795                   if (os == last_os)
3796                     break;
3797                 }
3798               if (last_sec != NULL)
3799                 {
3800                   asection *sec = where->bfd_section;
3801                   if (sec == NULL)
3802                     sec = output_prev_sec_find (where);
3803
3804                   /* The place we want to insert must come after the
3805                      sections we are moving.  So if we find no
3806                      section or if the section is the same as our
3807                      last section, then no move is needed.  */
3808                   if (sec != NULL && sec != last_sec)
3809                     {
3810                       /* Trim them off.  */
3811                       if (first_sec->prev != NULL)
3812                         first_sec->prev->next = last_sec->next;
3813                       else
3814                         link_info.output_bfd->sections = last_sec->next;
3815                       if (last_sec->next != NULL)
3816                         last_sec->next->prev = first_sec->prev;
3817                       else
3818                         link_info.output_bfd->section_last = first_sec->prev;
3819                       /* Add back.  */
3820                       last_sec->next = sec->next;
3821                       if (sec->next != NULL)
3822                         sec->next->prev = last_sec;
3823                       else
3824                         link_info.output_bfd->section_last = last_sec;
3825                       first_sec->prev = sec;
3826                       sec->next = first_sec;
3827                     }
3828                 }
3829
3830               first_os = NULL;
3831               last_os = NULL;
3832             }
3833
3834           ptr = insert_os_after (where);
3835           /* Snip everything after the abs_section output statement we
3836              know is at the start of the list, up to and including
3837              the insert statement we are currently processing.  */
3838           first = lang_output_section_statement.head->header.next;
3839           lang_output_section_statement.head->header.next = (*s)->header.next;
3840           /* Add them back where they belong.  */
3841           *s = *ptr;
3842           if (*s == NULL)
3843             statement_list.tail = s;
3844           *ptr = first;
3845           s = &lang_output_section_statement.head;
3846         }
3847     }
3848
3849   /* Undo constraint twiddling.  */
3850   for (os = first_os; os != NULL; os = os->next)
3851     {
3852       os->constraint = -2 - os->constraint;
3853       if (os == last_os)
3854         break;
3855     }
3856 }
3857
3858 /* An output section might have been removed after its statement was
3859    added.  For example, ldemul_before_allocation can remove dynamic
3860    sections if they turn out to be not needed.  Clean them up here.  */
3861
3862 void
3863 strip_excluded_output_sections (void)
3864 {
3865   lang_output_section_statement_type *os;
3866
3867   /* Run lang_size_sections (if not already done).  */
3868   if (expld.phase != lang_mark_phase_enum)
3869     {
3870       expld.phase = lang_mark_phase_enum;
3871       expld.dataseg.phase = exp_dataseg_none;
3872       one_lang_size_sections_pass (NULL, FALSE);
3873       lang_reset_memory_regions ();
3874     }
3875
3876   for (os = &lang_output_section_statement.head->output_section_statement;
3877        os != NULL;
3878        os = os->next)
3879     {
3880       asection *output_section;
3881       bfd_boolean exclude;
3882
3883       if (os->constraint < 0)
3884         continue;
3885
3886       output_section = os->bfd_section;
3887       if (output_section == NULL)
3888         continue;
3889
3890       exclude = (output_section->rawsize == 0
3891                  && (output_section->flags & SEC_KEEP) == 0
3892                  && !bfd_section_removed_from_list (link_info.output_bfd,
3893                                                     output_section));
3894
3895       /* Some sections have not yet been sized, notably .gnu.version,
3896          .dynsym, .dynstr and .hash.  These all have SEC_LINKER_CREATED
3897          input sections, so don't drop output sections that have such
3898          input sections unless they are also marked SEC_EXCLUDE.  */
3899       if (exclude && output_section->map_head.s != NULL)
3900         {
3901           asection *s;
3902
3903           for (s = output_section->map_head.s; s != NULL; s = s->map_head.s)
3904             if ((s->flags & SEC_EXCLUDE) == 0
3905                 && ((s->flags & SEC_LINKER_CREATED) != 0
3906                     || link_info.emitrelocations))
3907               {
3908                 exclude = FALSE;
3909                 break;
3910               }
3911         }
3912
3913       /* TODO: Don't just junk map_head.s, turn them into link_orders.  */
3914       output_section->map_head.link_order = NULL;
3915       output_section->map_tail.link_order = NULL;
3916
3917       if (exclude)
3918         {
3919           /* We don't set bfd_section to NULL since bfd_section of the
3920              removed output section statement may still be used.  */
3921           if (!os->update_dot)
3922             os->ignored = TRUE;
3923           output_section->flags |= SEC_EXCLUDE;
3924           bfd_section_list_remove (link_info.output_bfd, output_section);
3925           link_info.output_bfd->section_count--;
3926         }
3927     }
3928
3929   /* Stop future calls to lang_add_section from messing with map_head
3930      and map_tail link_order fields.  */
3931   stripped_excluded_sections = TRUE;
3932 }
3933
3934 static void
3935 print_output_section_statement
3936   (lang_output_section_statement_type *output_section_statement)
3937 {
3938   asection *section = output_section_statement->bfd_section;
3939   int len;
3940
3941   if (output_section_statement != abs_output_section)
3942     {
3943       minfo ("\n%s", output_section_statement->name);
3944
3945       if (section != NULL)
3946         {
3947           print_dot = section->vma;
3948
3949           len = strlen (output_section_statement->name);
3950           if (len >= SECTION_NAME_MAP_LENGTH - 1)
3951             {
3952               print_nl ();
3953               len = 0;
3954             }
3955           while (len < SECTION_NAME_MAP_LENGTH)
3956             {
3957               print_space ();
3958               ++len;
3959             }
3960
3961           minfo ("0x%V %W", section->vma, section->size);
3962
3963           if (section->vma != section->lma)
3964             minfo (_(" load address 0x%V"), section->lma);
3965
3966           if (output_section_statement->update_dot_tree != NULL)
3967             exp_fold_tree (output_section_statement->update_dot_tree,
3968                            bfd_abs_section_ptr, &print_dot);
3969         }
3970
3971       print_nl ();
3972     }
3973
3974   print_statement_list (output_section_statement->children.head,
3975                         output_section_statement);
3976 }
3977
3978 static void
3979 print_assignment (lang_assignment_statement_type *assignment,
3980                   lang_output_section_statement_type *output_section)
3981 {
3982   unsigned int i;
3983   bfd_boolean is_dot;
3984   etree_type *tree;
3985   asection *osec;
3986
3987   for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
3988     print_space ();
3989
3990   if (assignment->exp->type.node_class == etree_assert)
3991     {
3992       is_dot = FALSE;
3993       tree = assignment->exp->assert_s.child;
3994     }
3995   else
3996     {
3997       const char *dst = assignment->exp->assign.dst;
3998
3999       is_dot = (dst[0] == '.' && dst[1] == 0);
4000       if (!is_dot)
4001         expld.assign_name = dst;
4002       tree = assignment->exp->assign.src;
4003     }
4004
4005   osec = output_section->bfd_section;
4006   if (osec == NULL)
4007     osec = bfd_abs_section_ptr;
4008   exp_fold_tree (tree, osec, &print_dot);
4009   if (expld.result.valid_p)
4010     {
4011       bfd_vma value;
4012
4013       if (assignment->exp->type.node_class == etree_assert
4014           || is_dot
4015           || expld.assign_name != NULL)
4016         {
4017           value = expld.result.value;
4018
4019           if (expld.result.section != NULL)
4020             value += expld.result.section->vma;
4021
4022           minfo ("0x%V", value);
4023           if (is_dot)
4024             print_dot = value;
4025         }
4026       else
4027         {
4028           struct bfd_link_hash_entry *h;
4029
4030           h = bfd_link_hash_lookup (link_info.hash, assignment->exp->assign.dst,
4031                                     FALSE, FALSE, TRUE);
4032           if (h)
4033             {
4034               value = h->u.def.value;
4035               value += h->u.def.section->output_section->vma;
4036               value += h->u.def.section->output_offset;
4037
4038               minfo ("[0x%V]", value);
4039             }
4040           else
4041             minfo ("[unresolved]");
4042         }
4043     }
4044   else
4045     {
4046       minfo ("*undef*   ");
4047 #ifdef BFD64
4048       minfo ("        ");
4049 #endif
4050     }
4051   expld.assign_name = NULL;
4052
4053   minfo ("                ");
4054   exp_print_tree (assignment->exp);
4055   print_nl ();
4056 }
4057
4058 static void
4059 print_input_statement (lang_input_statement_type *statm)
4060 {
4061   if (statm->filename != NULL
4062       && (statm->the_bfd == NULL
4063           || (statm->the_bfd->flags & BFD_LINKER_CREATED) == 0))
4064     fprintf (config.map_file, "LOAD %s\n", statm->filename);
4065 }
4066
4067 /* Print all symbols defined in a particular section.  This is called
4068    via bfd_link_hash_traverse, or by print_all_symbols.  */
4069
4070 static bfd_boolean
4071 print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
4072 {
4073   asection *sec = (asection *) ptr;
4074
4075   if ((hash_entry->type == bfd_link_hash_defined
4076        || hash_entry->type == bfd_link_hash_defweak)
4077       && sec == hash_entry->u.def.section)
4078     {
4079       int i;
4080
4081       for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4082         print_space ();
4083       minfo ("0x%V   ",
4084              (hash_entry->u.def.value
4085               + hash_entry->u.def.section->output_offset
4086               + hash_entry->u.def.section->output_section->vma));
4087
4088       minfo ("             %T\n", hash_entry->root.string);
4089     }
4090
4091   return TRUE;
4092 }
4093
4094 static int
4095 hash_entry_addr_cmp (const void *a, const void *b)
4096 {
4097   const struct bfd_link_hash_entry *l = *(const struct bfd_link_hash_entry **)a;
4098   const struct bfd_link_hash_entry *r = *(const struct bfd_link_hash_entry **)b;
4099
4100   if (l->u.def.value < r->u.def.value)
4101     return -1;
4102   else if (l->u.def.value > r->u.def.value)
4103     return 1;
4104   else
4105     return 0;
4106 }
4107
4108 static void
4109 print_all_symbols (asection *sec)
4110 {
4111   input_section_userdata_type *ud
4112     = (input_section_userdata_type *) get_userdata (sec);
4113   struct map_symbol_def *def;
4114   struct bfd_link_hash_entry **entries;
4115   unsigned int i;
4116
4117   if (!ud)
4118     return;
4119
4120   *ud->map_symbol_def_tail = 0;
4121
4122   /* Sort the symbols by address.  */
4123   entries = (struct bfd_link_hash_entry **)
4124       obstack_alloc (&map_obstack, ud->map_symbol_def_count * sizeof (*entries));
4125
4126   for (i = 0, def = ud->map_symbol_def_head; def; def = def->next, i++)
4127     entries[i] = def->entry;
4128
4129   qsort (entries, ud->map_symbol_def_count, sizeof (*entries),
4130          hash_entry_addr_cmp);
4131
4132   /* Print the symbols.  */
4133   for (i = 0; i < ud->map_symbol_def_count; i++)
4134     print_one_symbol (entries[i], sec);
4135
4136   obstack_free (&map_obstack, entries);
4137 }
4138
4139 /* Print information about an input section to the map file.  */
4140
4141 static void
4142 print_input_section (asection *i, bfd_boolean is_discarded)
4143 {
4144   bfd_size_type size = i->size;
4145   int len;
4146   bfd_vma addr;
4147
4148   init_opb ();
4149
4150   print_space ();
4151   minfo ("%s", i->name);
4152
4153   len = 1 + strlen (i->name);
4154   if (len >= SECTION_NAME_MAP_LENGTH - 1)
4155     {
4156       print_nl ();
4157       len = 0;
4158     }
4159   while (len < SECTION_NAME_MAP_LENGTH)
4160     {
4161       print_space ();
4162       ++len;
4163     }
4164
4165   if (i->output_section != NULL
4166       && i->output_section->owner == link_info.output_bfd)
4167     addr = i->output_section->vma + i->output_offset;
4168   else
4169     {
4170       addr = print_dot;
4171       if (!is_discarded)
4172         size = 0;
4173     }
4174
4175   minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
4176
4177   if (size != i->rawsize && i->rawsize != 0)
4178     {
4179       len = SECTION_NAME_MAP_LENGTH + 3;
4180 #ifdef BFD64
4181       len += 16;
4182 #else
4183       len += 8;
4184 #endif
4185       while (len > 0)
4186         {
4187           print_space ();
4188           --len;
4189         }
4190
4191       minfo (_("%W (size before relaxing)\n"), i->rawsize);
4192     }
4193
4194   if (i->output_section != NULL
4195       && i->output_section->owner == link_info.output_bfd)
4196     {
4197       if (link_info.reduce_memory_overheads)
4198         bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
4199       else
4200         print_all_symbols (i);
4201
4202       /* Update print_dot, but make sure that we do not move it
4203          backwards - this could happen if we have overlays and a
4204          later overlay is shorter than an earier one.  */
4205       if (addr + TO_ADDR (size) > print_dot)
4206         print_dot = addr + TO_ADDR (size);
4207     }
4208 }
4209
4210 static void
4211 print_fill_statement (lang_fill_statement_type *fill)
4212 {
4213   size_t size;
4214   unsigned char *p;
4215   fputs (" FILL mask 0x", config.map_file);
4216   for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
4217     fprintf (config.map_file, "%02x", *p);
4218   fputs ("\n", config.map_file);
4219 }
4220
4221 static void
4222 print_data_statement (lang_data_statement_type *data)
4223 {
4224   int i;
4225   bfd_vma addr;
4226   bfd_size_type size;
4227   const char *name;
4228
4229   init_opb ();
4230   for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4231     print_space ();
4232
4233   addr = data->output_offset;
4234   if (data->output_section != NULL)
4235     addr += data->output_section->vma;
4236
4237   switch (data->type)
4238     {
4239     default:
4240       abort ();
4241     case BYTE:
4242       size = BYTE_SIZE;
4243       name = "BYTE";
4244       break;
4245     case SHORT:
4246       size = SHORT_SIZE;
4247       name = "SHORT";
4248       break;
4249     case LONG:
4250       size = LONG_SIZE;
4251       name = "LONG";
4252       break;
4253     case QUAD:
4254       size = QUAD_SIZE;
4255       name = "QUAD";
4256       break;
4257     case SQUAD:
4258       size = QUAD_SIZE;
4259       name = "SQUAD";
4260       break;
4261     }
4262
4263   minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
4264
4265   if (data->exp->type.node_class != etree_value)
4266     {
4267       print_space ();
4268       exp_print_tree (data->exp);
4269     }
4270
4271   print_nl ();
4272
4273   print_dot = addr + TO_ADDR (size);
4274 }
4275
4276 /* Print an address statement.  These are generated by options like
4277    -Ttext.  */
4278
4279 static void
4280 print_address_statement (lang_address_statement_type *address)
4281 {
4282   minfo (_("Address of section %s set to "), address->section_name);
4283   exp_print_tree (address->address);
4284   print_nl ();
4285 }
4286
4287 /* Print a reloc statement.  */
4288
4289 static void
4290 print_reloc_statement (lang_reloc_statement_type *reloc)
4291 {
4292   int i;
4293   bfd_vma addr;
4294   bfd_size_type size;
4295
4296   init_opb ();
4297   for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4298     print_space ();
4299
4300   addr = reloc->output_offset;
4301   if (reloc->output_section != NULL)
4302     addr += reloc->output_section->vma;
4303
4304   size = bfd_get_reloc_size (reloc->howto);
4305
4306   minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
4307
4308   if (reloc->name != NULL)
4309     minfo ("%s+", reloc->name);
4310   else
4311     minfo ("%s+", reloc->section->name);
4312
4313   exp_print_tree (reloc->addend_exp);
4314
4315   print_nl ();
4316
4317   print_dot = addr + TO_ADDR (size);
4318 }
4319
4320 static void
4321 print_padding_statement (lang_padding_statement_type *s)
4322 {
4323   int len;
4324   bfd_vma addr;
4325
4326   init_opb ();
4327   minfo (" *fill*");
4328
4329   len = sizeof " *fill*" - 1;
4330   while (len < SECTION_NAME_MAP_LENGTH)
4331     {
4332       print_space ();
4333       ++len;
4334     }
4335
4336   addr = s->output_offset;
4337   if (s->output_section != NULL)
4338     addr += s->output_section->vma;
4339   minfo ("0x%V %W ", addr, (bfd_vma) s->size);
4340
4341   if (s->fill->size != 0)
4342     {
4343       size_t size;
4344       unsigned char *p;
4345       for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
4346         fprintf (config.map_file, "%02x", *p);
4347     }
4348
4349   print_nl ();
4350
4351   print_dot = addr + TO_ADDR (s->size);
4352 }
4353
4354 static void
4355 print_wild_statement (lang_wild_statement_type *w,
4356                       lang_output_section_statement_type *os)
4357 {
4358   struct wildcard_list *sec;
4359
4360   print_space ();
4361
4362   if (w->filenames_sorted)
4363     minfo ("SORT(");
4364   if (w->filename != NULL)
4365     minfo ("%s", w->filename);
4366   else
4367     minfo ("*");
4368   if (w->filenames_sorted)
4369     minfo (")");
4370
4371   minfo ("(");
4372   for (sec = w->section_list; sec; sec = sec->next)
4373     {
4374       if (sec->spec.sorted)
4375         minfo ("SORT(");
4376       if (sec->spec.exclude_name_list != NULL)
4377         {
4378           name_list *tmp;
4379           minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
4380           for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
4381             minfo (" %s", tmp->name);
4382           minfo (") ");
4383         }
4384       if (sec->spec.name != NULL)
4385         minfo ("%s", sec->spec.name);
4386       else
4387         minfo ("*");
4388       if (sec->spec.sorted)
4389         minfo (")");
4390       if (sec->next)
4391         minfo (" ");
4392     }
4393   minfo (")");
4394
4395   print_nl ();
4396
4397   print_statement_list (w->children.head, os);
4398 }
4399
4400 /* Print a group statement.  */
4401
4402 static void
4403 print_group (lang_group_statement_type *s,
4404              lang_output_section_statement_type *os)
4405 {
4406   fprintf (config.map_file, "START GROUP\n");
4407   print_statement_list (s->children.head, os);
4408   fprintf (config.map_file, "END GROUP\n");
4409 }
4410
4411 /* Print the list of statements in S.
4412    This can be called for any statement type.  */
4413
4414 static void
4415 print_statement_list (lang_statement_union_type *s,
4416                       lang_output_section_statement_type *os)
4417 {
4418   while (s != NULL)
4419     {
4420       print_statement (s, os);
4421       s = s->header.next;
4422     }
4423 }
4424
4425 /* Print the first statement in statement list S.
4426    This can be called for any statement type.  */
4427
4428 static void
4429 print_statement (lang_statement_union_type *s,
4430                  lang_output_section_statement_type *os)
4431 {
4432   switch (s->header.type)
4433     {
4434     default:
4435       fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
4436       FAIL ();
4437       break;
4438     case lang_constructors_statement_enum:
4439       if (constructor_list.head != NULL)
4440         {
4441           if (constructors_sorted)
4442             minfo (" SORT (CONSTRUCTORS)\n");
4443           else
4444             minfo (" CONSTRUCTORS\n");
4445           print_statement_list (constructor_list.head, os);
4446         }
4447       break;
4448     case lang_wild_statement_enum:
4449       print_wild_statement (&s->wild_statement, os);
4450       break;
4451     case lang_address_statement_enum:
4452       print_address_statement (&s->address_statement);
4453       break;
4454     case lang_object_symbols_statement_enum:
4455       minfo (" CREATE_OBJECT_SYMBOLS\n");
4456       break;
4457     case lang_fill_statement_enum:
4458       print_fill_statement (&s->fill_statement);
4459       break;
4460     case lang_data_statement_enum:
4461       print_data_statement (&s->data_statement);
4462       break;
4463     case lang_reloc_statement_enum:
4464       print_reloc_statement (&s->reloc_statement);
4465       break;
4466     case lang_input_section_enum:
4467       print_input_section (s->input_section.section, FALSE);
4468       break;
4469     case lang_padding_statement_enum:
4470       print_padding_statement (&s->padding_statement);
4471       break;
4472     case lang_output_section_statement_enum:
4473       print_output_section_statement (&s->output_section_statement);
4474       break;
4475     case lang_assignment_statement_enum:
4476       print_assignment (&s->assignment_statement, os);
4477       break;
4478     case lang_target_statement_enum:
4479       fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
4480       break;
4481     case lang_output_statement_enum:
4482       minfo ("OUTPUT(%s", s->output_statement.name);
4483       if (output_target != NULL)
4484         minfo (" %s", output_target);
4485       minfo (")\n");
4486       break;
4487     case lang_input_statement_enum:
4488       print_input_statement (&s->input_statement);
4489       break;
4490     case lang_group_statement_enum:
4491       print_group (&s->group_statement, os);
4492       break;
4493     case lang_insert_statement_enum:
4494       minfo ("INSERT %s %s\n",
4495              s->insert_statement.is_before ? "BEFORE" : "AFTER",
4496              s->insert_statement.where);
4497       break;
4498     }
4499 }
4500
4501 static void
4502 print_statements (void)
4503 {
4504   print_statement_list (statement_list.head, abs_output_section);
4505 }
4506
4507 /* Print the first N statements in statement list S to STDERR.
4508    If N == 0, nothing is printed.
4509    If N < 0, the entire list is printed.
4510    Intended to be called from GDB.  */
4511
4512 void
4513 dprint_statement (lang_statement_union_type *s, int n)
4514 {
4515   FILE *map_save = config.map_file;
4516
4517   config.map_file = stderr;
4518
4519   if (n < 0)
4520     print_statement_list (s, abs_output_section);
4521   else
4522     {
4523       while (s && --n >= 0)
4524         {
4525           print_statement (s, abs_output_section);
4526           s = s->header.next;
4527         }
4528     }
4529
4530   config.map_file = map_save;
4531 }
4532
4533 static void
4534 insert_pad (lang_statement_union_type **ptr,
4535             fill_type *fill,
4536             bfd_size_type alignment_needed,
4537             asection *output_section,
4538             bfd_vma dot)
4539 {
4540   static fill_type zero_fill;
4541   lang_statement_union_type *pad = NULL;
4542
4543   if (ptr != &statement_list.head)
4544     pad = ((lang_statement_union_type *)
4545            ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
4546   if (pad != NULL
4547       && pad->header.type == lang_padding_statement_enum
4548       && pad->padding_statement.output_section == output_section)
4549     {
4550       /* Use the existing pad statement.  */
4551     }
4552   else if ((pad = *ptr) != NULL
4553            && pad->header.type == lang_padding_statement_enum
4554            && pad->padding_statement.output_section == output_section)
4555     {
4556       /* Use the existing pad statement.  */
4557     }
4558   else
4559     {
4560       /* Make a new padding statement, linked into existing chain.  */
4561       pad = (lang_statement_union_type *)
4562           stat_alloc (sizeof (lang_padding_statement_type));
4563       pad->header.next = *ptr;
4564       *ptr = pad;
4565       pad->header.type = lang_padding_statement_enum;
4566       pad->padding_statement.output_section = output_section;
4567       if (fill == NULL)
4568         fill = &zero_fill;
4569       pad->padding_statement.fill = fill;
4570     }
4571   pad->padding_statement.output_offset = dot - output_section->vma;
4572   pad->padding_statement.size = alignment_needed;
4573   output_section->size = TO_SIZE (dot + TO_ADDR (alignment_needed)
4574                                   - output_section->vma);
4575 }
4576
4577 /* Work out how much this section will move the dot point.  */
4578
4579 static bfd_vma
4580 size_input_section
4581   (lang_statement_union_type **this_ptr,
4582    lang_output_section_statement_type *output_section_statement,
4583    fill_type *fill,
4584    bfd_vma dot)
4585 {
4586   lang_input_section_type *is = &((*this_ptr)->input_section);
4587   asection *i = is->section;
4588   asection *o = output_section_statement->bfd_section;
4589
4590   if (i->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
4591     i->output_offset = i->vma - o->vma;
4592   else if ((i->flags & SEC_EXCLUDE) != 0)
4593     i->output_offset = dot - o->vma;
4594   else
4595     {
4596       bfd_size_type alignment_needed;
4597
4598       /* Align this section first to the input sections requirement,
4599          then to the output section's requirement.  If this alignment
4600          is greater than any seen before, then record it too.  Perform
4601          the alignment by inserting a magic 'padding' statement.  */
4602
4603       if (output_section_statement->subsection_alignment != -1)
4604         i->alignment_power = output_section_statement->subsection_alignment;
4605
4606       if (o->alignment_power < i->alignment_power)
4607         o->alignment_power = i->alignment_power;
4608
4609       alignment_needed = align_power (dot, i->alignment_power) - dot;
4610
4611       if (alignment_needed != 0)
4612         {
4613           insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
4614           dot += alignment_needed;
4615         }
4616
4617       /* Remember where in the output section this input section goes.  */
4618       i->output_offset = dot - o->vma;
4619
4620       /* Mark how big the output section must be to contain this now.  */
4621       dot += TO_ADDR (i->size);
4622       o->size = TO_SIZE (dot - o->vma);
4623     }
4624
4625   return dot;
4626 }
4627
4628 static int
4629 sort_sections_by_lma (const void *arg1, const void *arg2)
4630 {
4631   const asection *sec1 = *(const asection **) arg1;
4632   const asection *sec2 = *(const asection **) arg2;
4633
4634   if (bfd_section_lma (sec1->owner, sec1)
4635       < bfd_section_lma (sec2->owner, sec2))
4636     return -1;
4637   else if (bfd_section_lma (sec1->owner, sec1)
4638            > bfd_section_lma (sec2->owner, sec2))
4639     return 1;
4640   else if (sec1->id < sec2->id)
4641     return -1;
4642   else if (sec1->id > sec2->id)
4643     return 1;
4644
4645   return 0;
4646 }
4647
4648 #define IGNORE_SECTION(s) \
4649   ((s->flags & SEC_ALLOC) == 0                          \
4650    || ((s->flags & SEC_THREAD_LOCAL) != 0               \
4651         && (s->flags & SEC_LOAD) == 0))
4652
4653 /* Check to see if any allocated sections overlap with other allocated
4654    sections.  This can happen if a linker script specifies the output
4655    section addresses of the two sections.  Also check whether any memory
4656    region has overflowed.  */
4657
4658 static void
4659 lang_check_section_addresses (void)
4660 {
4661   asection *s, *p;
4662   asection **sections, **spp;
4663   unsigned int count;
4664   bfd_vma s_start;
4665   bfd_vma s_end;
4666   bfd_vma p_start;
4667   bfd_vma p_end;
4668   bfd_size_type amt;
4669   lang_memory_region_type *m;
4670
4671   if (bfd_count_sections (link_info.output_bfd) <= 1)
4672     return;
4673
4674   amt = bfd_count_sections (link_info.output_bfd) * sizeof (asection *);
4675   sections = (asection **) xmalloc (amt);
4676
4677   /* Scan all sections in the output list.  */
4678   count = 0;
4679   for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
4680     {
4681       /* Only consider loadable sections with real contents.  */
4682       if (!(s->flags & SEC_LOAD)
4683           || !(s->flags & SEC_ALLOC)
4684           || s->size == 0)
4685         continue;
4686
4687       sections[count] = s;
4688       count++;
4689     }
4690
4691   if (count <= 1)
4692     return;
4693
4694   qsort (sections, (size_t) count, sizeof (asection *),
4695          sort_sections_by_lma);
4696
4697   spp = sections;
4698   s = *spp++;
4699   s_start = s->lma;
4700   s_end = s_start + TO_ADDR (s->size) - 1;
4701   for (count--; count; count--)
4702     {
4703       /* We must check the sections' LMA addresses not their VMA
4704          addresses because overlay sections can have overlapping VMAs
4705          but they must have distinct LMAs.  */
4706       p = s;
4707       p_start = s_start;
4708       p_end = s_end;
4709       s = *spp++;
4710       s_start = s->lma;
4711       s_end = s_start + TO_ADDR (s->size) - 1;
4712
4713       /* Look for an overlap.  We have sorted sections by lma, so we
4714          know that s_start >= p_start.  Besides the obvious case of
4715          overlap when the current section starts before the previous
4716          one ends, we also must have overlap if the previous section
4717          wraps around the address space.  */
4718       if (s_start <= p_end
4719           || p_end < p_start)
4720         einfo (_("%X%P: section %s loaded at [%V,%V] overlaps section %s loaded at [%V,%V]\n"),
4721                s->name, s_start, s_end, p->name, p_start, p_end);
4722     }
4723
4724   free (sections);
4725
4726   /* If any memory region has overflowed, report by how much.
4727      We do not issue this diagnostic for regions that had sections
4728      explicitly placed outside their bounds; os_region_check's
4729      diagnostics are adequate for that case.
4730
4731      FIXME: It is conceivable that m->current - (m->origin + m->length)
4732      might overflow a 32-bit integer.  There is, alas, no way to print
4733      a bfd_vma quantity in decimal.  */
4734   for (m = lang_memory_region_list; m; m = m->next)
4735     if (m->had_full_message)
4736       einfo (_("%X%P: region `%s' overflowed by %ld bytes\n"),
4737              m->name_list.name, (long)(m->current - (m->origin + m->length)));
4738
4739 }
4740
4741 /* Make sure the new address is within the region.  We explicitly permit the
4742    current address to be at the exact end of the region when the address is
4743    non-zero, in case the region is at the end of addressable memory and the
4744    calculation wraps around.  */
4745
4746 static void
4747 os_region_check (lang_output_section_statement_type *os,
4748                  lang_memory_region_type *region,
4749                  etree_type *tree,
4750                  bfd_vma rbase)
4751 {
4752   if ((region->current < region->origin
4753        || (region->current - region->origin > region->length))
4754       && ((region->current != region->origin + region->length)
4755           || rbase == 0))
4756     {
4757       if (tree != NULL)
4758         {
4759           einfo (_("%X%P: address 0x%v of %B section `%s'"
4760                    " is not within region `%s'\n"),
4761                  region->current,
4762                  os->bfd_section->owner,
4763                  os->bfd_section->name,
4764                  region->name_list.name);
4765         }
4766       else if (!region->had_full_message)
4767         {
4768           region->had_full_message = TRUE;
4769
4770           einfo (_("%X%P: %B section `%s' will not fit in region `%s'\n"),
4771                  os->bfd_section->owner,
4772                  os->bfd_section->name,
4773                  region->name_list.name);
4774         }
4775     }
4776 }
4777
4778 /* Set the sizes for all the output sections.  */
4779
4780 static bfd_vma
4781 lang_size_sections_1
4782   (lang_statement_union_type **prev,
4783    lang_output_section_statement_type *output_section_statement,
4784    fill_type *fill,
4785    bfd_vma dot,
4786    bfd_boolean *relax,
4787    bfd_boolean check_regions)
4788 {
4789   lang_statement_union_type *s;
4790
4791   /* Size up the sections from their constituent parts.  */
4792   for (s = *prev; s != NULL; s = s->header.next)
4793     {
4794       switch (s->header.type)
4795         {
4796         case lang_output_section_statement_enum:
4797           {
4798             bfd_vma newdot, after, dotdelta;
4799             lang_output_section_statement_type *os;
4800             lang_memory_region_type *r;
4801             int section_alignment = 0;
4802
4803             os = &s->output_section_statement;
4804             if (os->constraint == -1)
4805               break;
4806
4807             /* FIXME: We shouldn't need to zero section vmas for ld -r
4808                here, in lang_insert_orphan, or in the default linker scripts.
4809                This is covering for coff backend linker bugs.  See PR6945.  */
4810             if (os->addr_tree == NULL
4811                 && link_info.relocatable
4812                 && (bfd_get_flavour (link_info.output_bfd)
4813                     == bfd_target_coff_flavour))
4814               os->addr_tree = exp_intop (0);
4815             if (os->addr_tree != NULL)
4816               {
4817                 os->processed_vma = FALSE;
4818                 exp_fold_tree (os->addr_tree, bfd_abs_section_ptr, &dot);
4819
4820                 if (expld.result.valid_p)
4821                   {
4822                     dot = expld.result.value;
4823                     if (expld.result.section != NULL)
4824                       dot += expld.result.section->vma;
4825                   }
4826                 else if (expld.phase != lang_mark_phase_enum)
4827                   einfo (_("%F%S: non constant or forward reference"
4828                            " address expression for section %s\n"),
4829                          os->addr_tree, os->name);
4830               }
4831
4832             if (os->bfd_section == NULL)
4833               /* This section was removed or never actually created.  */
4834               break;
4835
4836             /* If this is a COFF shared library section, use the size and
4837                address from the input section.  FIXME: This is COFF
4838                specific; it would be cleaner if there were some other way
4839                to do this, but nothing simple comes to mind.  */
4840             if (((bfd_get_flavour (link_info.output_bfd)
4841                   == bfd_target_ecoff_flavour)
4842                  || (bfd_get_flavour (link_info.output_bfd)
4843                      == bfd_target_coff_flavour))
4844                 && (os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
4845               {
4846                 asection *input;
4847
4848                 if (os->children.head == NULL
4849                     || os->children.head->header.next != NULL
4850                     || (os->children.head->header.type
4851                         != lang_input_section_enum))
4852                   einfo (_("%P%X: Internal error on COFF shared library"
4853                            " section %s\n"), os->name);
4854
4855                 input = os->children.head->input_section.section;
4856                 bfd_set_section_vma (os->bfd_section->owner,
4857                                      os->bfd_section,
4858                                      bfd_section_vma (input->owner, input));
4859                 os->bfd_section->size = input->size;
4860                 break;
4861               }
4862
4863             newdot = dot;
4864             dotdelta = 0;
4865             if (bfd_is_abs_section (os->bfd_section))
4866               {
4867                 /* No matter what happens, an abs section starts at zero.  */
4868                 ASSERT (os->bfd_section->vma == 0);
4869               }
4870             else
4871               {
4872                 if (os->addr_tree == NULL)
4873                   {
4874                     /* No address specified for this section, get one
4875                        from the region specification.  */
4876                     if (os->region == NULL
4877                         || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))
4878                             && os->region->name_list.name[0] == '*'
4879                             && strcmp (os->region->name_list.name,
4880                                        DEFAULT_MEMORY_REGION) == 0))
4881                       {
4882                         os->region = lang_memory_default (os->bfd_section);
4883                       }
4884
4885                     /* If a loadable section is using the default memory
4886                        region, and some non default memory regions were
4887                        defined, issue an error message.  */
4888                     if (!os->ignored
4889                         && !IGNORE_SECTION (os->bfd_section)
4890                         && ! link_info.relocatable
4891                         && check_regions
4892                         && strcmp (os->region->name_list.name,
4893                                    DEFAULT_MEMORY_REGION) == 0
4894                         && lang_memory_region_list != NULL
4895                         && (strcmp (lang_memory_region_list->name_list.name,
4896                                     DEFAULT_MEMORY_REGION) != 0
4897                             || lang_memory_region_list->next != NULL)
4898                         && expld.phase != lang_mark_phase_enum)
4899                       {
4900                         /* By default this is an error rather than just a
4901                            warning because if we allocate the section to the
4902                            default memory region we can end up creating an
4903                            excessively large binary, or even seg faulting when
4904                            attempting to perform a negative seek.  See
4905                            sources.redhat.com/ml/binutils/2003-04/msg00423.html
4906                            for an example of this.  This behaviour can be
4907                            overridden by the using the --no-check-sections
4908                            switch.  */
4909                         if (command_line.check_section_addresses)
4910                           einfo (_("%P%F: error: no memory region specified"
4911                                    " for loadable section `%s'\n"),
4912                                  bfd_get_section_name (link_info.output_bfd,
4913                                                        os->bfd_section));
4914                         else
4915                           einfo (_("%P: warning: no memory region specified"
4916                                    " for loadable section `%s'\n"),
4917                                  bfd_get_section_name (link_info.output_bfd,
4918                                                        os->bfd_section));
4919                       }
4920
4921                     newdot = os->region->current;
4922                     section_alignment = os->bfd_section->alignment_power;
4923                   }
4924                 else
4925                   section_alignment = os->section_alignment;
4926
4927                 /* Align to what the section needs.  */
4928                 if (section_alignment > 0)
4929                   {
4930                     bfd_vma savedot = newdot;
4931                     newdot = align_power (newdot, section_alignment);
4932
4933                     dotdelta = newdot - savedot;
4934                     if (dotdelta != 0
4935                         && (config.warn_section_align
4936                             || os->addr_tree != NULL)
4937                         && expld.phase != lang_mark_phase_enum)
4938                       einfo (_("%P: warning: changing start of section"
4939                                " %s by %lu bytes\n"),
4940                              os->name, (unsigned long) dotdelta);
4941                   }
4942
4943                 bfd_set_section_vma (0, os->bfd_section, newdot);
4944
4945                 os->bfd_section->output_offset = 0;
4946               }
4947
4948             lang_size_sections_1 (&os->children.head, os,
4949                                   os->fill, newdot, relax, check_regions);
4950
4951             os->processed_vma = TRUE;
4952
4953             if (bfd_is_abs_section (os->bfd_section) || os->ignored)
4954               /* Except for some special linker created sections,
4955                  no output section should change from zero size
4956                  after strip_excluded_output_sections.  A non-zero
4957                  size on an ignored section indicates that some
4958                  input section was not sized early enough.  */
4959               ASSERT (os->bfd_section->size == 0);
4960             else
4961               {
4962                 dot = os->bfd_section->vma;
4963
4964                 /* Put the section within the requested block size, or
4965                    align at the block boundary.  */
4966                 after = ((dot
4967                           + TO_ADDR (os->bfd_section->size)
4968                           + os->block_value - 1)
4969                          & - (bfd_vma) os->block_value);
4970
4971                 os->bfd_section->size = TO_SIZE (after - os->bfd_section->vma);
4972               }
4973
4974             /* Set section lma.  */
4975             r = os->region;
4976             if (r == NULL)
4977               r = lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
4978
4979             if (os->load_base)
4980               {
4981                 bfd_vma lma = exp_get_abs_int (os->load_base, 0, "load base");
4982                 os->bfd_section->lma = lma;
4983               }
4984             else if (os->lma_region != NULL)
4985               {
4986                 bfd_vma lma = os->lma_region->current;
4987
4988                 if (os->align_lma_with_input)
4989                   lma += dotdelta;
4990                 else
4991                   {
4992                     /* When LMA_REGION is the same as REGION, align the LMA
4993                        as we did for the VMA, possibly including alignment
4994                        from the bfd section.  If a different region, then
4995                        only align according to the value in the output
4996                        statement.  */
4997                     if (os->lma_region != os->region)
4998                       section_alignment = os->section_alignment;
4999                     if (section_alignment > 0)
5000                       lma = align_power (lma, section_alignment);
5001                   }
5002                 os->bfd_section->lma = lma;
5003               }
5004             else if (r->last_os != NULL
5005                      && (os->bfd_section->flags & SEC_ALLOC) != 0)
5006               {
5007                 bfd_vma lma;
5008                 asection *last;
5009
5010                 last = r->last_os->output_section_statement.bfd_section;
5011
5012                 /* A backwards move of dot should be accompanied by
5013                    an explicit assignment to the section LMA (ie.
5014                    os->load_base set) because backwards moves can
5015                    create overlapping LMAs.  */
5016                 if (dot < last->vma
5017                     && os->bfd_section->size != 0
5018                     && dot + os->bfd_section->size <= last->vma)
5019                   {
5020                     /* If dot moved backwards then leave lma equal to
5021                        vma.  This is the old default lma, which might
5022                        just happen to work when the backwards move is
5023                        sufficiently large.  Nag if this changes anything,
5024                        so people can fix their linker scripts.  */
5025
5026                     if (last->vma != last->lma)
5027                       einfo (_("%P: warning: dot moved backwards before `%s'\n"),
5028                              os->name);
5029                   }
5030                 else
5031                   {
5032                     /* If this is an overlay, set the current lma to that
5033                        at the end of the previous section.  */
5034                     if (os->sectype == overlay_section)
5035                       lma = last->lma + last->size;
5036
5037                     /* Otherwise, keep the same lma to vma relationship
5038                        as the previous section.  */
5039                     else
5040                       lma = dot + last->lma - last->vma;
5041
5042                     if (section_alignment > 0)
5043                       lma = align_power (lma, section_alignment);
5044                     os->bfd_section->lma = lma;
5045                   }
5046               }
5047             os->processed_lma = TRUE;
5048
5049             if (bfd_is_abs_section (os->bfd_section) || os->ignored)
5050               break;
5051
5052             /* Keep track of normal sections using the default
5053                lma region.  We use this to set the lma for
5054                following sections.  Overlays or other linker
5055                script assignment to lma might mean that the
5056                default lma == vma is incorrect.
5057                To avoid warnings about dot moving backwards when using
5058                -Ttext, don't start tracking sections until we find one
5059                of non-zero size or with lma set differently to vma.  */
5060             if (((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5061                  || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0)
5062                 && (os->bfd_section->flags & SEC_ALLOC) != 0
5063                 && (os->bfd_section->size != 0
5064                     || (r->last_os == NULL
5065                         && os->bfd_section->vma != os->bfd_section->lma)
5066                     || (r->last_os != NULL
5067                         && dot >= (r->last_os->output_section_statement
5068                                    .bfd_section->vma)))
5069                 && os->lma_region == NULL
5070                 && !link_info.relocatable)
5071               r->last_os = s;
5072
5073             /* .tbss sections effectively have zero size.  */
5074             if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5075                 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5076                 || link_info.relocatable)
5077               dotdelta = TO_ADDR (os->bfd_section->size);
5078             else
5079               dotdelta = 0;
5080             dot += dotdelta;
5081
5082             if (os->update_dot_tree != 0)
5083               exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5084
5085             /* Update dot in the region ?
5086                We only do this if the section is going to be allocated,
5087                since unallocated sections do not contribute to the region's
5088                overall size in memory.  */
5089             if (os->region != NULL
5090                 && (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD)))
5091               {
5092                 os->region->current = dot;
5093
5094                 if (check_regions)
5095                   /* Make sure the new address is within the region.  */
5096                   os_region_check (os, os->region, os->addr_tree,
5097                                    os->bfd_section->vma);
5098
5099                 if (os->lma_region != NULL && os->lma_region != os->region
5100                     && ((os->bfd_section->flags & SEC_LOAD)
5101                         || os->align_lma_with_input))
5102                   {
5103                     os->lma_region->current = os->bfd_section->lma + dotdelta;
5104
5105                     if (check_regions)
5106                       os_region_check (os, os->lma_region, NULL,
5107                                        os->bfd_section->lma);
5108                   }
5109               }
5110           }
5111           break;
5112
5113         case lang_constructors_statement_enum:
5114           dot = lang_size_sections_1 (&constructor_list.head,
5115                                       output_section_statement,
5116                                       fill, dot, relax, check_regions);
5117           break;
5118
5119         case lang_data_statement_enum:
5120           {
5121             unsigned int size = 0;
5122
5123             s->data_statement.output_offset =
5124               dot - output_section_statement->bfd_section->vma;
5125             s->data_statement.output_section =
5126               output_section_statement->bfd_section;
5127
5128             /* We might refer to provided symbols in the expression, and
5129                need to mark them as needed.  */
5130             exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5131
5132             switch (s->data_statement.type)
5133               {
5134               default:
5135                 abort ();
5136               case QUAD:
5137               case SQUAD:
5138                 size = QUAD_SIZE;
5139                 break;
5140               case LONG:
5141                 size = LONG_SIZE;
5142                 break;
5143               case SHORT:
5144                 size = SHORT_SIZE;
5145                 break;
5146               case BYTE:
5147                 size = BYTE_SIZE;
5148                 break;
5149               }
5150             if (size < TO_SIZE ((unsigned) 1))
5151               size = TO_SIZE ((unsigned) 1);
5152             dot += TO_ADDR (size);
5153             output_section_statement->bfd_section->size
5154               = TO_SIZE (dot - output_section_statement->bfd_section->vma);
5155
5156           }
5157           break;
5158
5159         case lang_reloc_statement_enum:
5160           {
5161             int size;
5162
5163             s->reloc_statement.output_offset =
5164               dot - output_section_statement->bfd_section->vma;
5165             s->reloc_statement.output_section =
5166               output_section_statement->bfd_section;
5167             size = bfd_get_reloc_size (s->reloc_statement.howto);
5168             dot += TO_ADDR (size);
5169             output_section_statement->bfd_section->size
5170               = TO_SIZE (dot - output_section_statement->bfd_section->vma);
5171           }
5172           break;
5173
5174         case lang_wild_statement_enum:
5175           dot = lang_size_sections_1 (&s->wild_statement.children.head,
5176                                       output_section_statement,
5177                                       fill, dot, relax, check_regions);
5178           break;
5179
5180         case lang_object_symbols_statement_enum:
5181           link_info.create_object_symbols_section =
5182             output_section_statement->bfd_section;
5183           break;
5184
5185         case lang_output_statement_enum:
5186         case lang_target_statement_enum:
5187           break;
5188
5189         case lang_input_section_enum:
5190           {
5191             asection *i;
5192
5193             i = s->input_section.section;
5194             if (relax)
5195               {
5196                 bfd_boolean again;
5197
5198                 if (! bfd_relax_section (i->owner, i, &link_info, &again))
5199                   einfo (_("%P%F: can't relax section: %E\n"));
5200                 if (again)
5201                   *relax = TRUE;
5202               }
5203             dot = size_input_section (prev, output_section_statement,
5204                                       fill, dot);
5205           }
5206           break;
5207
5208         case lang_input_statement_enum:
5209           break;
5210
5211         case lang_fill_statement_enum:
5212           s->fill_statement.output_section =
5213             output_section_statement->bfd_section;
5214
5215           fill = s->fill_statement.fill;
5216           break;
5217
5218         case lang_assignment_statement_enum:
5219           {
5220             bfd_vma newdot = dot;
5221             etree_type *tree = s->assignment_statement.exp;
5222
5223             expld.dataseg.relro = exp_dataseg_relro_none;
5224
5225             exp_fold_tree (tree,
5226                            output_section_statement->bfd_section,
5227                            &newdot);
5228
5229             if (expld.dataseg.relro == exp_dataseg_relro_start)
5230               {
5231                 if (!expld.dataseg.relro_start_stat)
5232                   expld.dataseg.relro_start_stat = s;
5233                 else
5234                   {
5235                     ASSERT (expld.dataseg.relro_start_stat == s);
5236                   }
5237               }
5238             else if (expld.dataseg.relro == exp_dataseg_relro_end)
5239               {
5240                 if (!expld.dataseg.relro_end_stat)
5241                   expld.dataseg.relro_end_stat = s;
5242                 else
5243                   {
5244                     ASSERT (expld.dataseg.relro_end_stat == s);
5245                   }
5246               }
5247             expld.dataseg.relro = exp_dataseg_relro_none;
5248
5249             /* This symbol may be relative to this section.  */
5250             if ((tree->type.node_class == etree_provided
5251                  || tree->type.node_class == etree_assign)
5252                 && (tree->assign.dst [0] != '.'
5253                     || tree->assign.dst [1] != '\0'))
5254               output_section_statement->update_dot = 1;
5255
5256             if (!output_section_statement->ignored)
5257               {
5258                 if (output_section_statement == abs_output_section)
5259                   {
5260                     /* If we don't have an output section, then just adjust
5261                        the default memory address.  */
5262                     lang_memory_region_lookup (DEFAULT_MEMORY_REGION,
5263                                                FALSE)->current = newdot;
5264                   }
5265                 else if (newdot != dot)
5266                   {
5267                     /* Insert a pad after this statement.  We can't
5268                        put the pad before when relaxing, in case the
5269                        assignment references dot.  */
5270                     insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
5271                                 output_section_statement->bfd_section, dot);
5272
5273                     /* Don't neuter the pad below when relaxing.  */
5274                     s = s->header.next;
5275
5276                     /* If dot is advanced, this implies that the section
5277                        should have space allocated to it, unless the
5278                        user has explicitly stated that the section
5279                        should not be allocated.  */
5280                     if (output_section_statement->sectype != noalloc_section
5281                         && (output_section_statement->sectype != noload_section
5282                             || (bfd_get_flavour (link_info.output_bfd)
5283                                 == bfd_target_elf_flavour)))
5284                       output_section_statement->bfd_section->flags |= SEC_ALLOC;
5285                   }
5286                 dot = newdot;
5287               }
5288           }
5289           break;
5290
5291         case lang_padding_statement_enum:
5292           /* If this is the first time lang_size_sections is called,
5293              we won't have any padding statements.  If this is the
5294              second or later passes when relaxing, we should allow
5295              padding to shrink.  If padding is needed on this pass, it
5296              will be added back in.  */
5297           s->padding_statement.size = 0;
5298
5299           /* Make sure output_offset is valid.  If relaxation shrinks
5300              the section and this pad isn't needed, it's possible to
5301              have output_offset larger than the final size of the
5302              section.  bfd_set_section_contents will complain even for
5303              a pad size of zero.  */
5304           s->padding_statement.output_offset
5305             = dot - output_section_statement->bfd_section->vma;
5306           break;
5307
5308         case lang_group_statement_enum:
5309           dot = lang_size_sections_1 (&s->group_statement.children.head,
5310                                       output_section_statement,
5311                                       fill, dot, relax, check_regions);
5312           break;
5313
5314         case lang_insert_statement_enum:
5315           break;
5316
5317           /* We can only get here when relaxing is turned on.  */
5318         case lang_address_statement_enum:
5319           break;
5320
5321         default:
5322           FAIL ();
5323           break;
5324         }
5325       prev = &s->header.next;
5326     }
5327   return dot;
5328 }
5329
5330 /* Callback routine that is used in _bfd_elf_map_sections_to_segments.
5331    The BFD library has set NEW_SEGMENT to TRUE iff it thinks that
5332    CURRENT_SECTION and PREVIOUS_SECTION ought to be placed into different
5333    segments.  We are allowed an opportunity to override this decision.  */
5334
5335 bfd_boolean
5336 ldlang_override_segment_assignment (struct bfd_link_info * info ATTRIBUTE_UNUSED,
5337                                     bfd * abfd ATTRIBUTE_UNUSED,
5338                                     asection * current_section,
5339                                     asection * previous_section,
5340                                     bfd_boolean new_segment)
5341 {
5342   lang_output_section_statement_type * cur;
5343   lang_output_section_statement_type * prev;
5344
5345   /* The checks below are only necessary when the BFD library has decided
5346      that the two sections ought to be placed into the same segment.  */
5347   if (new_segment)
5348     return TRUE;
5349
5350   /* Paranoia checks.  */
5351   if (current_section == NULL || previous_section == NULL)
5352     return new_segment;
5353
5354   /* If this flag is set, the target never wants code and non-code
5355      sections comingled in the same segment.  */
5356   if (config.separate_code
5357       && ((current_section->flags ^ previous_section->flags) & SEC_CODE))
5358     return TRUE;
5359
5360   /* Find the memory regions associated with the two sections.
5361      We call lang_output_section_find() here rather than scanning the list
5362      of output sections looking for a matching section pointer because if
5363      we have a large number of sections then a hash lookup is faster.  */
5364   cur  = lang_output_section_find (current_section->name);
5365   prev = lang_output_section_find (previous_section->name);
5366
5367   /* More paranoia.  */
5368   if (cur == NULL || prev == NULL)
5369     return new_segment;
5370
5371   /* If the regions are different then force the sections to live in
5372      different segments.  See the email thread starting at the following
5373      URL for the reasons why this is necessary:
5374      http://sourceware.org/ml/binutils/2007-02/msg00216.html  */
5375   return cur->region != prev->region;
5376 }
5377
5378 void
5379 one_lang_size_sections_pass (bfd_boolean *relax, bfd_boolean check_regions)
5380 {
5381   lang_statement_iteration++;
5382   lang_size_sections_1 (&statement_list.head, abs_output_section,
5383                         0, 0, relax, check_regions);
5384 }
5385
5386 void
5387 lang_size_sections (bfd_boolean *relax, bfd_boolean check_regions)
5388 {
5389   expld.phase = lang_allocating_phase_enum;
5390   expld.dataseg.phase = exp_dataseg_none;
5391
5392   one_lang_size_sections_pass (relax, check_regions);
5393   if (expld.dataseg.phase == exp_dataseg_end_seen
5394       && link_info.relro && expld.dataseg.relro_end)
5395     {
5396       /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
5397          to put expld.dataseg.relro_end on a (common) page boundary.  */
5398       bfd_vma min_base, relro_end, maxpage;
5399
5400       expld.dataseg.phase = exp_dataseg_relro_adjust;
5401       maxpage = expld.dataseg.maxpagesize;
5402       /* MIN_BASE is the absolute minimum address we are allowed to start the
5403          read-write segment (byte before will be mapped read-only).  */
5404       min_base = (expld.dataseg.min_base + maxpage - 1) & ~(maxpage - 1);
5405       expld.dataseg.base += (-expld.dataseg.relro_end
5406                              & (expld.dataseg.pagesize - 1));
5407       /* Compute the expected PT_GNU_RELRO segment end.  */
5408       relro_end = ((expld.dataseg.relro_end + expld.dataseg.pagesize - 1)
5409                    & ~(expld.dataseg.pagesize - 1));
5410       if (min_base + maxpage < expld.dataseg.base)
5411         {
5412           expld.dataseg.base -= maxpage;
5413           relro_end -= maxpage;
5414         }
5415       lang_reset_memory_regions ();
5416       one_lang_size_sections_pass (relax, check_regions);
5417       if (expld.dataseg.relro_end > relro_end)
5418         {
5419           /* The alignment of sections between DATA_SEGMENT_ALIGN
5420              and DATA_SEGMENT_RELRO_END can cause excessive padding to
5421              be inserted at DATA_SEGMENT_RELRO_END.  Try to start a
5422              bit lower so that the section alignments will fit in.  */
5423           asection *sec;
5424           unsigned int max_alignment_power = 0;
5425
5426           /* Find maximum alignment power of sections between
5427              DATA_SEGMENT_ALIGN and DATA_SEGMENT_RELRO_END.  */
5428           for (sec = link_info.output_bfd->sections; sec; sec = sec->next)
5429             if (sec->vma >= expld.dataseg.base
5430                 && sec->vma < expld.dataseg.relro_end
5431                 && sec->alignment_power > max_alignment_power)
5432               max_alignment_power = sec->alignment_power;
5433
5434           if (((bfd_vma) 1 << max_alignment_power) < expld.dataseg.pagesize)
5435             {
5436               /* Aligning the adjusted base guarantees the padding
5437                  between sections won't change.  This is better than
5438                  simply subtracting 1 << max_alignment_power which is
5439                  what we used to do here.  */
5440               expld.dataseg.base &= ~((1 << max_alignment_power) - 1);
5441               lang_reset_memory_regions ();
5442               one_lang_size_sections_pass (relax, check_regions);
5443             }
5444         }
5445       link_info.relro_start = expld.dataseg.base;
5446       link_info.relro_end = expld.dataseg.relro_end;
5447     }
5448   else if (expld.dataseg.phase == exp_dataseg_end_seen)
5449     {
5450       /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
5451          a page could be saved in the data segment.  */
5452       bfd_vma first, last;
5453
5454       first = -expld.dataseg.base & (expld.dataseg.pagesize - 1);
5455       last = expld.dataseg.end & (expld.dataseg.pagesize - 1);
5456       if (first && last
5457           && ((expld.dataseg.base & ~(expld.dataseg.pagesize - 1))
5458               != (expld.dataseg.end & ~(expld.dataseg.pagesize - 1)))
5459           && first + last <= expld.dataseg.pagesize)
5460         {
5461           expld.dataseg.phase = exp_dataseg_adjust;
5462           lang_reset_memory_regions ();
5463           one_lang_size_sections_pass (relax, check_regions);
5464         }
5465       else
5466         expld.dataseg.phase = exp_dataseg_done;
5467     }
5468   else
5469     expld.dataseg.phase = exp_dataseg_done;
5470 }
5471
5472 static lang_output_section_statement_type *current_section;
5473 static lang_assignment_statement_type *current_assign;
5474 static bfd_boolean prefer_next_section;
5475
5476 /* Worker function for lang_do_assignments.  Recursiveness goes here.  */
5477
5478 static bfd_vma
5479 lang_do_assignments_1 (lang_statement_union_type *s,
5480                        lang_output_section_statement_type *current_os,
5481                        fill_type *fill,
5482                        bfd_vma dot,
5483                        bfd_boolean *found_end)
5484 {
5485   for (; s != NULL; s = s->header.next)
5486     {
5487       switch (s->header.type)
5488         {
5489         case lang_constructors_statement_enum:
5490           dot = lang_do_assignments_1 (constructor_list.head,
5491                                        current_os, fill, dot, found_end);
5492           break;
5493
5494         case lang_output_section_statement_enum:
5495           {
5496             lang_output_section_statement_type *os;
5497
5498             os = &(s->output_section_statement);
5499             os->after_end = *found_end;
5500             if (os->bfd_section != NULL && !os->ignored)
5501               {
5502                 if ((os->bfd_section->flags & SEC_ALLOC) != 0)
5503                   {
5504                     current_section = os;
5505                     prefer_next_section = FALSE;
5506                   }
5507                 dot = os->bfd_section->vma;
5508
5509                 lang_do_assignments_1 (os->children.head,
5510                                        os, os->fill, dot, found_end);
5511
5512                 /* .tbss sections effectively have zero size.  */
5513                 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5514                     || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5515                     || link_info.relocatable)
5516                   dot += TO_ADDR (os->bfd_section->size);
5517
5518                 if (os->update_dot_tree != NULL)
5519                   exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5520               }
5521           }
5522           break;
5523
5524         case lang_wild_statement_enum:
5525
5526           dot = lang_do_assignments_1 (s->wild_statement.children.head,
5527                                        current_os, fill, dot, found_end);
5528           break;
5529
5530         case lang_object_symbols_statement_enum:
5531         case lang_output_statement_enum:
5532         case lang_target_statement_enum:
5533           break;
5534
5535         case lang_data_statement_enum:
5536           exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5537           if (expld.result.valid_p)
5538             {
5539               s->data_statement.value = expld.result.value;
5540               if (expld.result.section != NULL)
5541                 s->data_statement.value += expld.result.section->vma;
5542             }
5543           else
5544             einfo (_("%F%P: invalid data statement\n"));
5545           {
5546             unsigned int size;
5547             switch (s->data_statement.type)
5548               {
5549               default:
5550                 abort ();
5551               case QUAD:
5552               case SQUAD:
5553                 size = QUAD_SIZE;
5554                 break;
5555               case LONG:
5556                 size = LONG_SIZE;
5557                 break;
5558               case SHORT:
5559                 size = SHORT_SIZE;
5560                 break;
5561               case BYTE:
5562                 size = BYTE_SIZE;
5563                 break;
5564               }
5565             if (size < TO_SIZE ((unsigned) 1))
5566               size = TO_SIZE ((unsigned) 1);
5567             dot += TO_ADDR (size);
5568           }
5569           break;
5570
5571         case lang_reloc_statement_enum:
5572           exp_fold_tree (s->reloc_statement.addend_exp,
5573                          bfd_abs_section_ptr, &dot);
5574           if (expld.result.valid_p)
5575             s->reloc_statement.addend_value = expld.result.value;
5576           else
5577             einfo (_("%F%P: invalid reloc statement\n"));
5578           dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
5579           break;
5580
5581         case lang_input_section_enum:
5582           {
5583             asection *in = s->input_section.section;
5584
5585             if ((in->flags & SEC_EXCLUDE) == 0)
5586               dot += TO_ADDR (in->size);
5587           }
5588           break;
5589
5590         case lang_input_statement_enum:
5591           break;
5592
5593         case lang_fill_statement_enum:
5594           fill = s->fill_statement.fill;
5595           break;
5596
5597         case lang_assignment_statement_enum:
5598           current_assign = &s->assignment_statement;
5599           if (current_assign->exp->type.node_class != etree_assert)
5600             {
5601               const char *p = current_assign->exp->assign.dst;
5602
5603               if (current_os == abs_output_section && p[0] == '.' && p[1] == 0)
5604                 prefer_next_section = TRUE;
5605
5606               while (*p == '_')
5607                 ++p;
5608               if (strcmp (p, "end") == 0)
5609                 *found_end = TRUE;
5610             }
5611           exp_fold_tree (s->assignment_statement.exp,
5612                          current_os->bfd_section,
5613                          &dot);
5614           break;
5615
5616         case lang_padding_statement_enum:
5617           dot += TO_ADDR (s->padding_statement.size);
5618           break;
5619
5620         case lang_group_statement_enum:
5621           dot = lang_do_assignments_1 (s->group_statement.children.head,
5622                                        current_os, fill, dot, found_end);
5623           break;
5624
5625         case lang_insert_statement_enum:
5626           break;
5627
5628         case lang_address_statement_enum:
5629           break;
5630
5631         default:
5632           FAIL ();
5633           break;
5634         }
5635     }
5636   return dot;
5637 }
5638
5639 void
5640 lang_do_assignments (lang_phase_type phase)
5641 {
5642   bfd_boolean found_end = FALSE;
5643
5644   current_section = NULL;
5645   prefer_next_section = FALSE;
5646   expld.phase = phase;
5647   lang_statement_iteration++;
5648   lang_do_assignments_1 (statement_list.head,
5649                          abs_output_section, NULL, 0, &found_end);
5650 }
5651
5652 /* For an assignment statement outside of an output section statement,
5653    choose the best of neighbouring output sections to use for values
5654    of "dot".  */
5655
5656 asection *
5657 section_for_dot (void)
5658 {
5659   asection *s;
5660
5661   /* Assignments belong to the previous output section, unless there
5662      has been an assignment to "dot", in which case following
5663      assignments belong to the next output section.  (The assumption
5664      is that an assignment to "dot" is setting up the address for the
5665      next output section.)  Except that past the assignment to "_end"
5666      we always associate with the previous section.  This exception is
5667      for targets like SH that define an alloc .stack or other
5668      weirdness after non-alloc sections.  */
5669   if (current_section == NULL || prefer_next_section)
5670     {
5671       lang_statement_union_type *stmt;
5672       lang_output_section_statement_type *os;
5673
5674       for (stmt = (lang_statement_union_type *) current_assign;
5675            stmt != NULL;
5676            stmt = stmt->header.next)
5677         if (stmt->header.type == lang_output_section_statement_enum)
5678           break;
5679
5680       os = &stmt->output_section_statement;
5681       while (os != NULL
5682              && !os->after_end
5683              && (os->bfd_section == NULL
5684                  || (os->bfd_section->flags & SEC_EXCLUDE) != 0
5685                  || bfd_section_removed_from_list (link_info.output_bfd,
5686                                                    os->bfd_section)))
5687         os = os->next;
5688
5689       if (current_section == NULL || os == NULL || !os->after_end)
5690         {
5691           if (os != NULL)
5692             s = os->bfd_section;
5693           else
5694             s = link_info.output_bfd->section_last;
5695           while (s != NULL
5696                  && ((s->flags & SEC_ALLOC) == 0
5697                      || (s->flags & SEC_THREAD_LOCAL) != 0))
5698             s = s->prev;
5699           if (s != NULL)
5700             return s;
5701
5702           return bfd_abs_section_ptr;
5703         }
5704     }
5705
5706   s = current_section->bfd_section;
5707
5708   /* The section may have been stripped.  */
5709   while (s != NULL
5710          && ((s->flags & SEC_EXCLUDE) != 0
5711              || (s->flags & SEC_ALLOC) == 0
5712              || (s->flags & SEC_THREAD_LOCAL) != 0
5713              || bfd_section_removed_from_list (link_info.output_bfd, s)))
5714     s = s->prev;
5715   if (s == NULL)
5716     s = link_info.output_bfd->sections;
5717   while (s != NULL
5718          && ((s->flags & SEC_ALLOC) == 0
5719              || (s->flags & SEC_THREAD_LOCAL) != 0))
5720     s = s->next;
5721   if (s != NULL)
5722     return s;
5723
5724   return bfd_abs_section_ptr;
5725 }
5726
5727 /* Fix any .startof. or .sizeof. symbols.  When the assemblers see the
5728    operator .startof. (section_name), it produces an undefined symbol
5729    .startof.section_name.  Similarly, when it sees
5730    .sizeof. (section_name), it produces an undefined symbol
5731    .sizeof.section_name.  For all the output sections, we look for
5732    such symbols, and set them to the correct value.  */
5733
5734 static void
5735 lang_set_startof (void)
5736 {
5737   asection *s;
5738
5739   if (link_info.relocatable)
5740     return;
5741
5742   for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
5743     {
5744       const char *secname;
5745       char *buf;
5746       struct bfd_link_hash_entry *h;
5747
5748       secname = bfd_get_section_name (link_info.output_bfd, s);
5749       buf = (char *) xmalloc (10 + strlen (secname));
5750
5751       sprintf (buf, ".startof.%s", secname);
5752       h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5753       if (h != NULL && h->type == bfd_link_hash_undefined)
5754         {
5755           h->type = bfd_link_hash_defined;
5756           h->u.def.value = 0;
5757           h->u.def.section = s;
5758         }
5759
5760       sprintf (buf, ".sizeof.%s", secname);
5761       h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5762       if (h != NULL && h->type == bfd_link_hash_undefined)
5763         {
5764           h->type = bfd_link_hash_defined;
5765           h->u.def.value = TO_ADDR (s->size);
5766           h->u.def.section = bfd_abs_section_ptr;
5767         }
5768
5769       free (buf);
5770     }
5771 }
5772
5773 static void
5774 lang_end (void)
5775 {
5776   struct bfd_link_hash_entry *h;
5777   bfd_boolean warn;
5778
5779   if ((link_info.relocatable && !link_info.gc_sections)
5780       || (link_info.shared && !link_info.executable))
5781     warn = entry_from_cmdline;
5782   else
5783     warn = TRUE;
5784
5785   /* Force the user to specify a root when generating a relocatable with
5786      --gc-sections.  */
5787   if (link_info.gc_sections && link_info.relocatable
5788       && !(entry_from_cmdline || undef_from_cmdline))
5789     einfo (_("%P%F: gc-sections requires either an entry or "
5790              "an undefined symbol\n"));
5791
5792   if (entry_symbol.name == NULL)
5793     {
5794       /* No entry has been specified.  Look for the default entry, but
5795          don't warn if we don't find it.  */
5796       entry_symbol.name = entry_symbol_default;
5797       warn = FALSE;
5798     }
5799
5800   h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
5801                             FALSE, FALSE, TRUE);
5802   if (h != NULL
5803       && (h->type == bfd_link_hash_defined
5804           || h->type == bfd_link_hash_defweak)
5805       && h->u.def.section->output_section != NULL)
5806     {
5807       bfd_vma val;
5808
5809       val = (h->u.def.value
5810              + bfd_get_section_vma (link_info.output_bfd,
5811                                     h->u.def.section->output_section)
5812              + h->u.def.section->output_offset);
5813       if (! bfd_set_start_address (link_info.output_bfd, val))
5814         einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
5815     }
5816   else
5817     {
5818       bfd_vma val;
5819       const char *send;
5820
5821       /* We couldn't find the entry symbol.  Try parsing it as a
5822          number.  */
5823       val = bfd_scan_vma (entry_symbol.name, &send, 0);
5824       if (*send == '\0')
5825         {
5826           if (! bfd_set_start_address (link_info.output_bfd, val))
5827             einfo (_("%P%F: can't set start address\n"));
5828         }
5829       else
5830         {
5831           asection *ts;
5832
5833           /* Can't find the entry symbol, and it's not a number.  Use
5834              the first address in the text section.  */
5835           ts = bfd_get_section_by_name (link_info.output_bfd, entry_section);
5836           if (ts != NULL)
5837             {
5838               if (warn)
5839                 einfo (_("%P: warning: cannot find entry symbol %s;"
5840                          " defaulting to %V\n"),
5841                        entry_symbol.name,
5842                        bfd_get_section_vma (link_info.output_bfd, ts));
5843               if (!(bfd_set_start_address
5844                     (link_info.output_bfd,
5845                      bfd_get_section_vma (link_info.output_bfd, ts))))
5846                 einfo (_("%P%F: can't set start address\n"));
5847             }
5848           else
5849             {
5850               if (warn)
5851                 einfo (_("%P: warning: cannot find entry symbol %s;"
5852                          " not setting start address\n"),
5853                        entry_symbol.name);
5854             }
5855         }
5856     }
5857 }
5858
5859 /* This is a small function used when we want to ignore errors from
5860    BFD.  */
5861
5862 static void
5863 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
5864 {
5865   /* Don't do anything.  */
5866 }
5867
5868 /* Check that the architecture of all the input files is compatible
5869    with the output file.  Also call the backend to let it do any
5870    other checking that is needed.  */
5871
5872 static void
5873 lang_check (void)
5874 {
5875   lang_statement_union_type *file;
5876   bfd *input_bfd;
5877   const bfd_arch_info_type *compatible;
5878
5879   for (file = file_chain.head; file != NULL; file = file->input_statement.next)
5880     {
5881 #ifdef ENABLE_PLUGINS
5882       /* Don't check format of files claimed by plugin.  */
5883       if (file->input_statement.flags.claimed)
5884         continue;
5885 #endif /* ENABLE_PLUGINS */
5886       input_bfd = file->input_statement.the_bfd;
5887       compatible
5888         = bfd_arch_get_compatible (input_bfd, link_info.output_bfd,
5889                                    command_line.accept_unknown_input_arch);
5890
5891       /* In general it is not possible to perform a relocatable
5892          link between differing object formats when the input
5893          file has relocations, because the relocations in the
5894          input format may not have equivalent representations in
5895          the output format (and besides BFD does not translate
5896          relocs for other link purposes than a final link).  */
5897       if ((link_info.relocatable || link_info.emitrelocations)
5898           && (compatible == NULL
5899               || (bfd_get_flavour (input_bfd)
5900                   != bfd_get_flavour (link_info.output_bfd)))
5901           && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
5902         {
5903           einfo (_("%P%F: Relocatable linking with relocations from"
5904                    " format %s (%B) to format %s (%B) is not supported\n"),
5905                  bfd_get_target (input_bfd), input_bfd,
5906                  bfd_get_target (link_info.output_bfd), link_info.output_bfd);
5907           /* einfo with %F exits.  */
5908         }
5909
5910       if (compatible == NULL)
5911         {
5912           if (command_line.warn_mismatch)
5913             einfo (_("%P%X: %s architecture of input file `%B'"
5914                      " is incompatible with %s output\n"),
5915                    bfd_printable_name (input_bfd), input_bfd,
5916                    bfd_printable_name (link_info.output_bfd));
5917         }
5918       else if (bfd_count_sections (input_bfd))
5919         {
5920           /* If the input bfd has no contents, it shouldn't set the
5921              private data of the output bfd.  */
5922
5923           bfd_error_handler_type pfn = NULL;
5924
5925           /* If we aren't supposed to warn about mismatched input
5926              files, temporarily set the BFD error handler to a
5927              function which will do nothing.  We still want to call
5928              bfd_merge_private_bfd_data, since it may set up
5929              information which is needed in the output file.  */
5930           if (! command_line.warn_mismatch)
5931             pfn = bfd_set_error_handler (ignore_bfd_errors);
5932           if (! bfd_merge_private_bfd_data (input_bfd, link_info.output_bfd))
5933             {
5934               if (command_line.warn_mismatch)
5935                 einfo (_("%P%X: failed to merge target specific data"
5936                          " of file %B\n"), input_bfd);
5937             }
5938           if (! command_line.warn_mismatch)
5939             bfd_set_error_handler (pfn);
5940         }
5941     }
5942 }
5943
5944 /* Look through all the global common symbols and attach them to the
5945    correct section.  The -sort-common command line switch may be used
5946    to roughly sort the entries by alignment.  */
5947
5948 static void
5949 lang_common (void)
5950 {
5951   if (command_line.inhibit_common_definition)
5952     return;
5953   if (link_info.relocatable
5954       && ! command_line.force_common_definition)
5955     return;
5956
5957   if (! config.sort_common)
5958     bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
5959   else
5960     {
5961       unsigned int power;
5962
5963       if (config.sort_common == sort_descending)
5964         {
5965           for (power = 4; power > 0; power--)
5966             bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5967
5968           power = 0;
5969           bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5970         }
5971       else
5972         {
5973           for (power = 0; power <= 4; power++)
5974             bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5975
5976           power = (unsigned int) -1;
5977           bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5978         }
5979     }
5980 }
5981
5982 /* Place one common symbol in the correct section.  */
5983
5984 static bfd_boolean
5985 lang_one_common (struct bfd_link_hash_entry *h, void *info)
5986 {
5987   unsigned int power_of_two;
5988   bfd_vma size;
5989   asection *section;
5990
5991   if (h->type != bfd_link_hash_common)
5992     return TRUE;
5993
5994   size = h->u.c.size;
5995   power_of_two = h->u.c.p->alignment_power;
5996
5997   if (config.sort_common == sort_descending
5998       && power_of_two < *(unsigned int *) info)
5999     return TRUE;
6000   else if (config.sort_common == sort_ascending
6001            && power_of_two > *(unsigned int *) info)
6002     return TRUE;
6003
6004   section = h->u.c.p->section;
6005   if (!bfd_define_common_symbol (link_info.output_bfd, &link_info, h))
6006     einfo (_("%P%F: Could not define common symbol `%T': %E\n"),
6007            h->root.string);
6008
6009   if (config.map_file != NULL)
6010     {
6011       static bfd_boolean header_printed;
6012       int len;
6013       char *name;
6014       char buf[50];
6015
6016       if (! header_printed)
6017         {
6018           minfo (_("\nAllocating common symbols\n"));
6019           minfo (_("Common symbol       size              file\n\n"));
6020           header_printed = TRUE;
6021         }
6022
6023       name = bfd_demangle (link_info.output_bfd, h->root.string,
6024                            DMGL_ANSI | DMGL_PARAMS);
6025       if (name == NULL)
6026         {
6027           minfo ("%s", h->root.string);
6028           len = strlen (h->root.string);
6029         }
6030       else
6031         {
6032           minfo ("%s", name);
6033           len = strlen (name);
6034           free (name);
6035         }
6036
6037       if (len >= 19)
6038         {
6039           print_nl ();
6040           len = 0;
6041         }
6042       while (len < 20)
6043         {
6044           print_space ();
6045           ++len;
6046         }
6047
6048       minfo ("0x");
6049       if (size <= 0xffffffff)
6050         sprintf (buf, "%lx", (unsigned long) size);
6051       else
6052         sprintf_vma (buf, size);
6053       minfo ("%s", buf);
6054       len = strlen (buf);
6055
6056       while (len < 16)
6057         {
6058           print_space ();
6059           ++len;
6060         }
6061
6062       minfo ("%B\n", section->owner);
6063     }
6064
6065   return TRUE;
6066 }
6067
6068 /* Run through the input files and ensure that every input section has
6069    somewhere to go.  If one is found without a destination then create
6070    an input request and place it into the statement tree.  */
6071
6072 static void
6073 lang_place_orphans (void)
6074 {
6075   LANG_FOR_EACH_INPUT_STATEMENT (file)
6076     {
6077       asection *s;
6078
6079       for (s = file->the_bfd->sections; s != NULL; s = s->next)
6080         {
6081           if (s->output_section == NULL)
6082             {
6083               /* This section of the file is not attached, root
6084                  around for a sensible place for it to go.  */
6085
6086               if (file->flags.just_syms)
6087                 bfd_link_just_syms (file->the_bfd, s, &link_info);
6088               else if ((s->flags & SEC_EXCLUDE) != 0)
6089                 s->output_section = bfd_abs_section_ptr;
6090               else if (strcmp (s->name, "COMMON") == 0)
6091                 {
6092                   /* This is a lonely common section which must have
6093                      come from an archive.  We attach to the section
6094                      with the wildcard.  */
6095                   if (! link_info.relocatable
6096                       || command_line.force_common_definition)
6097                     {
6098                       if (default_common_section == NULL)
6099                         default_common_section
6100                           = lang_output_section_statement_lookup (".bss", 0,
6101                                                                   TRUE);
6102                       lang_add_section (&default_common_section->children, s,
6103                                         NULL, default_common_section);
6104                     }
6105                 }
6106               else
6107                 {
6108                   const char *name = s->name;
6109                   int constraint = 0;
6110
6111                   if (config.unique_orphan_sections
6112                       || unique_section_p (s, NULL))
6113                     constraint = SPECIAL;
6114
6115                   if (!ldemul_place_orphan (s, name, constraint))
6116                     {
6117                       lang_output_section_statement_type *os;
6118                       os = lang_output_section_statement_lookup (name,
6119                                                                  constraint,
6120                                                                  TRUE);
6121                       if (os->addr_tree == NULL
6122                           && (link_info.relocatable
6123                               || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0))
6124                         os->addr_tree = exp_intop (0);
6125                       lang_add_section (&os->children, s, NULL, os);
6126                     }
6127                 }
6128             }
6129         }
6130     }
6131 }
6132
6133 void
6134 lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
6135 {
6136   flagword *ptr_flags;
6137
6138   ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
6139   while (*flags)
6140     {
6141       switch (*flags)
6142         {
6143         case 'A': case 'a':
6144           *ptr_flags |= SEC_ALLOC;
6145           break;
6146
6147         case 'R': case 'r':
6148           *ptr_flags |= SEC_READONLY;
6149           break;
6150
6151         case 'W': case 'w':
6152           *ptr_flags |= SEC_DATA;
6153           break;
6154
6155         case 'X': case 'x':
6156           *ptr_flags |= SEC_CODE;
6157           break;
6158
6159         case 'L': case 'l':
6160         case 'I': case 'i':
6161           *ptr_flags |= SEC_LOAD;
6162           break;
6163
6164         default:
6165           einfo (_("%P%F: invalid syntax in flags\n"));
6166           break;
6167         }
6168       flags++;
6169     }
6170 }
6171
6172 /* Call a function on each input file.  This function will be called
6173    on an archive, but not on the elements.  */
6174
6175 void
6176 lang_for_each_input_file (void (*func) (lang_input_statement_type *))
6177 {
6178   lang_input_statement_type *f;
6179
6180   for (f = (lang_input_statement_type *) input_file_chain.head;
6181        f != NULL;
6182        f = (lang_input_statement_type *) f->next_real_file)
6183     func (f);
6184 }
6185
6186 /* Call a function on each file.  The function will be called on all
6187    the elements of an archive which are included in the link, but will
6188    not be called on the archive file itself.  */
6189
6190 void
6191 lang_for_each_file (void (*func) (lang_input_statement_type *))
6192 {
6193   LANG_FOR_EACH_INPUT_STATEMENT (f)
6194     {
6195       func (f);
6196     }
6197 }
6198
6199 void
6200 ldlang_add_file (lang_input_statement_type *entry)
6201 {
6202   lang_statement_append (&file_chain,
6203                          (lang_statement_union_type *) entry,
6204                          &entry->next);
6205
6206   /* The BFD linker needs to have a list of all input BFDs involved in
6207      a link.  */
6208   ASSERT (entry->the_bfd->link.next == NULL);
6209   ASSERT (entry->the_bfd != link_info.output_bfd);
6210
6211   *link_info.input_bfds_tail = entry->the_bfd;
6212   link_info.input_bfds_tail = &entry->the_bfd->link.next;
6213   entry->the_bfd->usrdata = entry;
6214   bfd_set_gp_size (entry->the_bfd, g_switch_value);
6215
6216   /* Look through the sections and check for any which should not be
6217      included in the link.  We need to do this now, so that we can
6218      notice when the backend linker tries to report multiple
6219      definition errors for symbols which are in sections we aren't
6220      going to link.  FIXME: It might be better to entirely ignore
6221      symbols which are defined in sections which are going to be
6222      discarded.  This would require modifying the backend linker for
6223      each backend which might set the SEC_LINK_ONCE flag.  If we do
6224      this, we should probably handle SEC_EXCLUDE in the same way.  */
6225
6226   bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
6227 }
6228
6229 void
6230 lang_add_output (const char *name, int from_script)
6231 {
6232   /* Make -o on command line override OUTPUT in script.  */
6233   if (!had_output_filename || !from_script)
6234     {
6235       output_filename = name;
6236       had_output_filename = TRUE;
6237     }
6238 }
6239
6240 static int
6241 topower (int x)
6242 {
6243   unsigned int i = 1;
6244   int l;
6245
6246   if (x < 0)
6247     return -1;
6248
6249   for (l = 0; l < 32; l++)
6250     {
6251       if (i >= (unsigned int) x)
6252         return l;
6253       i <<= 1;
6254     }
6255
6256   return 0;
6257 }
6258
6259 lang_output_section_statement_type *
6260 lang_enter_output_section_statement (const char *output_section_statement_name,
6261                                      etree_type *address_exp,
6262                                      enum section_type sectype,
6263                                      etree_type *align,
6264                                      etree_type *subalign,
6265                                      etree_type *ebase,
6266                                      int constraint,
6267                                      int align_with_input)
6268 {
6269   lang_output_section_statement_type *os;
6270
6271   os = lang_output_section_statement_lookup (output_section_statement_name,
6272                                              constraint, TRUE);
6273   current_section = os;
6274
6275   if (os->addr_tree == NULL)
6276     {
6277       os->addr_tree = address_exp;
6278     }
6279   os->sectype = sectype;
6280   if (sectype != noload_section)
6281     os->flags = SEC_NO_FLAGS;
6282   else
6283     os->flags = SEC_NEVER_LOAD;
6284   os->block_value = 1;
6285
6286   /* Make next things chain into subchain of this.  */
6287   push_stat_ptr (&os->children);
6288
6289   os->align_lma_with_input = align_with_input == ALIGN_WITH_INPUT;
6290   if (os->align_lma_with_input && align != NULL)
6291     einfo (_("%F%P:%S: error: align with input and explicit align specified\n"), NULL);
6292
6293   os->subsection_alignment =
6294     topower (exp_get_value_int (subalign, -1, "subsection alignment"));
6295   os->section_alignment =
6296     topower (exp_get_value_int (align, -1, "section alignment"));
6297
6298   os->load_base = ebase;
6299   return os;
6300 }
6301
6302 void
6303 lang_final (void)
6304 {
6305   lang_output_statement_type *new_stmt;
6306
6307   new_stmt = new_stat (lang_output_statement, stat_ptr);
6308   new_stmt->name = output_filename;
6309
6310 }
6311
6312 /* Reset the current counters in the regions.  */
6313
6314 void
6315 lang_reset_memory_regions (void)
6316 {
6317   lang_memory_region_type *p = lang_memory_region_list;
6318   asection *o;
6319   lang_output_section_statement_type *os;
6320
6321   for (p = lang_memory_region_list; p != NULL; p = p->next)
6322     {
6323       p->current = p->origin;
6324       p->last_os = NULL;
6325     }
6326
6327   for (os = &lang_output_section_statement.head->output_section_statement;
6328        os != NULL;
6329        os = os->next)
6330     {
6331       os->processed_vma = FALSE;
6332       os->processed_lma = FALSE;
6333     }
6334
6335   for (o = link_info.output_bfd->sections; o != NULL; o = o->next)
6336     {
6337       /* Save the last size for possible use by bfd_relax_section.  */
6338       o->rawsize = o->size;
6339       o->size = 0;
6340     }
6341 }
6342
6343 /* Worker for lang_gc_sections_1.  */
6344
6345 static void
6346 gc_section_callback (lang_wild_statement_type *ptr,
6347                      struct wildcard_list *sec ATTRIBUTE_UNUSED,
6348                      asection *section,
6349                      struct flag_info *sflag_info ATTRIBUTE_UNUSED,
6350                      lang_input_statement_type *file ATTRIBUTE_UNUSED,
6351                      void *data ATTRIBUTE_UNUSED)
6352 {
6353   /* If the wild pattern was marked KEEP, the member sections
6354      should be as well.  */
6355   if (ptr->keep_sections)
6356     section->flags |= SEC_KEEP;
6357 }
6358
6359 /* Iterate over sections marking them against GC.  */
6360
6361 static void
6362 lang_gc_sections_1 (lang_statement_union_type *s)
6363 {
6364   for (; s != NULL; s = s->header.next)
6365     {
6366       switch (s->header.type)
6367         {
6368         case lang_wild_statement_enum:
6369           walk_wild (&s->wild_statement, gc_section_callback, NULL);
6370           break;
6371         case lang_constructors_statement_enum:
6372           lang_gc_sections_1 (constructor_list.head);
6373           break;
6374         case lang_output_section_statement_enum:
6375           lang_gc_sections_1 (s->output_section_statement.children.head);
6376           break;
6377         case lang_group_statement_enum:
6378           lang_gc_sections_1 (s->group_statement.children.head);
6379           break;
6380         default:
6381           break;
6382         }
6383     }
6384 }
6385
6386 static void
6387 lang_gc_sections (void)
6388 {
6389   /* Keep all sections so marked in the link script.  */
6390
6391   lang_gc_sections_1 (statement_list.head);
6392
6393   /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
6394      the special case of debug info.  (See bfd/stabs.c)
6395      Twiddle the flag here, to simplify later linker code.  */
6396   if (link_info.relocatable)
6397     {
6398       LANG_FOR_EACH_INPUT_STATEMENT (f)
6399         {
6400           asection *sec;
6401 #ifdef ENABLE_PLUGINS
6402           if (f->flags.claimed)
6403             continue;
6404 #endif
6405           for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next)
6406             if ((sec->flags & SEC_DEBUGGING) == 0)
6407               sec->flags &= ~SEC_EXCLUDE;
6408         }
6409     }
6410
6411   if (link_info.gc_sections)
6412     bfd_gc_sections (link_info.output_bfd, &link_info);
6413 }
6414
6415 /* Worker for lang_find_relro_sections_1.  */
6416
6417 static void
6418 find_relro_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
6419                              struct wildcard_list *sec ATTRIBUTE_UNUSED,
6420                              asection *section,
6421                              struct flag_info *sflag_info ATTRIBUTE_UNUSED,
6422                              lang_input_statement_type *file ATTRIBUTE_UNUSED,
6423                              void *data)
6424 {
6425   /* Discarded, excluded and ignored sections effectively have zero
6426      size.  */
6427   if (section->output_section != NULL
6428       && section->output_section->owner == link_info.output_bfd
6429       && (section->output_section->flags & SEC_EXCLUDE) == 0
6430       && !IGNORE_SECTION (section)
6431       && section->size != 0)
6432     {
6433       bfd_boolean *has_relro_section = (bfd_boolean *) data;
6434       *has_relro_section = TRUE;
6435     }
6436 }
6437
6438 /* Iterate over sections for relro sections.  */
6439
6440 static void
6441 lang_find_relro_sections_1 (lang_statement_union_type *s,
6442                             bfd_boolean *has_relro_section)
6443 {
6444   if (*has_relro_section)
6445     return;
6446
6447   for (; s != NULL; s = s->header.next)
6448     {
6449       if (s == expld.dataseg.relro_end_stat)
6450         break;
6451
6452       switch (s->header.type)
6453         {
6454         case lang_wild_statement_enum:
6455           walk_wild (&s->wild_statement,
6456                      find_relro_section_callback,
6457                      has_relro_section);
6458           break;
6459         case lang_constructors_statement_enum:
6460           lang_find_relro_sections_1 (constructor_list.head,
6461                                       has_relro_section);
6462           break;
6463         case lang_output_section_statement_enum:
6464           lang_find_relro_sections_1 (s->output_section_statement.children.head,
6465                                       has_relro_section);
6466           break;
6467         case lang_group_statement_enum:
6468           lang_find_relro_sections_1 (s->group_statement.children.head,
6469                                       has_relro_section);
6470           break;
6471         default:
6472           break;
6473         }
6474     }
6475 }
6476
6477 static void
6478 lang_find_relro_sections (void)
6479 {
6480   bfd_boolean has_relro_section = FALSE;
6481
6482   /* Check all sections in the link script.  */
6483
6484   lang_find_relro_sections_1 (expld.dataseg.relro_start_stat,
6485                               &has_relro_section);
6486
6487   if (!has_relro_section)
6488     link_info.relro = FALSE;
6489 }
6490
6491 /* Relax all sections until bfd_relax_section gives up.  */
6492
6493 void
6494 lang_relax_sections (bfd_boolean need_layout)
6495 {
6496   if (RELAXATION_ENABLED)
6497     {
6498       /* We may need more than one relaxation pass.  */
6499       int i = link_info.relax_pass;
6500
6501       /* The backend can use it to determine the current pass.  */
6502       link_info.relax_pass = 0;
6503
6504       while (i--)
6505         {
6506           /* Keep relaxing until bfd_relax_section gives up.  */
6507           bfd_boolean relax_again;
6508
6509           link_info.relax_trip = -1;
6510           do
6511             {
6512               link_info.relax_trip++;
6513
6514               /* Note: pe-dll.c does something like this also.  If you find
6515                  you need to change this code, you probably need to change
6516                  pe-dll.c also.  DJ  */
6517
6518               /* Do all the assignments with our current guesses as to
6519                  section sizes.  */
6520               lang_do_assignments (lang_assigning_phase_enum);
6521
6522               /* We must do this after lang_do_assignments, because it uses
6523                  size.  */
6524               lang_reset_memory_regions ();
6525
6526               /* Perform another relax pass - this time we know where the
6527                  globals are, so can make a better guess.  */
6528               relax_again = FALSE;
6529               lang_size_sections (&relax_again, FALSE);
6530             }
6531           while (relax_again);
6532
6533           link_info.relax_pass++;
6534         }
6535       need_layout = TRUE;
6536     }
6537
6538   if (need_layout)
6539     {
6540       /* Final extra sizing to report errors.  */
6541       lang_do_assignments (lang_assigning_phase_enum);
6542       lang_reset_memory_regions ();
6543       lang_size_sections (NULL, TRUE);
6544     }
6545 }
6546
6547 #ifdef ENABLE_PLUGINS
6548 /* Find the insert point for the plugin's replacement files.  We
6549    place them after the first claimed real object file, or if the
6550    first claimed object is an archive member, after the last real
6551    object file immediately preceding the archive.  In the event
6552    no objects have been claimed at all, we return the first dummy
6553    object file on the list as the insert point; that works, but
6554    the callee must be careful when relinking the file_chain as it
6555    is not actually on that chain, only the statement_list and the
6556    input_file list; in that case, the replacement files must be
6557    inserted at the head of the file_chain.  */
6558
6559 static lang_input_statement_type *
6560 find_replacements_insert_point (void)
6561 {
6562   lang_input_statement_type *claim1, *lastobject;
6563   lastobject = &input_file_chain.head->input_statement;
6564   for (claim1 = &file_chain.head->input_statement;
6565        claim1 != NULL;
6566        claim1 = &claim1->next->input_statement)
6567     {
6568       if (claim1->flags.claimed)
6569         return claim1->flags.claim_archive ? lastobject : claim1;
6570       /* Update lastobject if this is a real object file.  */
6571       if (claim1->the_bfd && (claim1->the_bfd->my_archive == NULL))
6572         lastobject = claim1;
6573     }
6574   /* No files were claimed by the plugin.  Choose the last object
6575      file found on the list (maybe the first, dummy entry) as the
6576      insert point.  */
6577   return lastobject;
6578 }
6579
6580 /* Insert SRCLIST into DESTLIST after given element by chaining
6581    on FIELD as the next-pointer.  (Counterintuitively does not need
6582    a pointer to the actual after-node itself, just its chain field.)  */
6583
6584 static void
6585 lang_list_insert_after (lang_statement_list_type *destlist,
6586                         lang_statement_list_type *srclist,
6587                         lang_statement_union_type **field)
6588 {
6589   *(srclist->tail) = *field;
6590   *field = srclist->head;
6591   if (destlist->tail == field)
6592     destlist->tail = srclist->tail;
6593 }
6594
6595 /* Detach new nodes added to DESTLIST since the time ORIGLIST
6596    was taken as a copy of it and leave them in ORIGLIST.  */
6597
6598 static void
6599 lang_list_remove_tail (lang_statement_list_type *destlist,
6600                        lang_statement_list_type *origlist)
6601 {
6602   union lang_statement_union **savetail;
6603   /* Check that ORIGLIST really is an earlier state of DESTLIST.  */
6604   ASSERT (origlist->head == destlist->head);
6605   savetail = origlist->tail;
6606   origlist->head = *(savetail);
6607   origlist->tail = destlist->tail;
6608   destlist->tail = savetail;
6609   *savetail = NULL;
6610 }
6611 #endif /* ENABLE_PLUGINS */
6612
6613 void
6614 lang_process (void)
6615 {
6616   /* Finalize dynamic list.  */
6617   if (link_info.dynamic_list)
6618     lang_finalize_version_expr_head (&link_info.dynamic_list->head);
6619
6620   current_target = default_target;
6621
6622   /* Open the output file.  */
6623   lang_for_each_statement (ldlang_open_output);
6624   init_opb ();
6625
6626   ldemul_create_output_section_statements ();
6627
6628   /* Add to the hash table all undefineds on the command line.  */
6629   lang_place_undefineds ();
6630
6631   if (!bfd_section_already_linked_table_init ())
6632     einfo (_("%P%F: Failed to create hash table\n"));
6633
6634   /* Create a bfd for each input file.  */
6635   current_target = default_target;
6636   open_input_bfds (statement_list.head, OPEN_BFD_NORMAL);
6637
6638 #ifdef ENABLE_PLUGINS
6639   if (plugin_active_plugins_p ())
6640     {
6641       lang_statement_list_type added;
6642       lang_statement_list_type files, inputfiles;
6643
6644       /* Now all files are read, let the plugin(s) decide if there
6645          are any more to be added to the link before we call the
6646          emulation's after_open hook.  We create a private list of
6647          input statements for this purpose, which we will eventually
6648          insert into the global statment list after the first claimed
6649          file.  */
6650       added = *stat_ptr;
6651       /* We need to manipulate all three chains in synchrony.  */
6652       files = file_chain;
6653       inputfiles = input_file_chain;
6654       if (plugin_call_all_symbols_read ())
6655         einfo (_("%P%F: %s: plugin reported error after all symbols read\n"),
6656                plugin_error_plugin ());
6657       /* Open any newly added files, updating the file chains.  */
6658       link_info.loading_lto_outputs = TRUE;
6659       open_input_bfds (*added.tail, OPEN_BFD_NORMAL);
6660       /* Restore the global list pointer now they have all been added.  */
6661       lang_list_remove_tail (stat_ptr, &added);
6662       /* And detach the fresh ends of the file lists.  */
6663       lang_list_remove_tail (&file_chain, &files);
6664       lang_list_remove_tail (&input_file_chain, &inputfiles);
6665       /* Were any new files added?  */
6666       if (added.head != NULL)
6667         {
6668           /* If so, we will insert them into the statement list immediately
6669              after the first input file that was claimed by the plugin.  */
6670           plugin_insert = find_replacements_insert_point ();
6671           /* If a plugin adds input files without having claimed any, we
6672              don't really have a good idea where to place them.  Just putting
6673              them at the start or end of the list is liable to leave them
6674              outside the crtbegin...crtend range.  */
6675           ASSERT (plugin_insert != NULL);
6676           /* Splice the new statement list into the old one.  */
6677           lang_list_insert_after (stat_ptr, &added,
6678                                   &plugin_insert->header.next);
6679           /* Likewise for the file chains.  */
6680           lang_list_insert_after (&input_file_chain, &inputfiles,
6681                                   &plugin_insert->next_real_file);
6682           /* We must be careful when relinking file_chain; we may need to
6683              insert the new files at the head of the list if the insert
6684              point chosen is the dummy first input file.  */
6685           if (plugin_insert->filename)
6686             lang_list_insert_after (&file_chain, &files, &plugin_insert->next);
6687           else
6688             lang_list_insert_after (&file_chain, &files, &file_chain.head);
6689
6690           /* Rescan archives in case new undefined symbols have appeared.  */
6691           open_input_bfds (statement_list.head, OPEN_BFD_RESCAN);
6692         }
6693     }
6694 #endif /* ENABLE_PLUGINS */
6695
6696   link_info.gc_sym_list = &entry_symbol;
6697   if (entry_symbol.name == NULL)
6698     link_info.gc_sym_list = ldlang_undef_chain_list_head;
6699
6700   ldemul_after_open ();
6701   if (config.map_file != NULL)
6702     lang_print_asneeded ();
6703
6704   bfd_section_already_linked_table_free ();
6705
6706   /* Make sure that we're not mixing architectures.  We call this
6707      after all the input files have been opened, but before we do any
6708      other processing, so that any operations merge_private_bfd_data
6709      does on the output file will be known during the rest of the
6710      link.  */
6711   lang_check ();
6712
6713   /* Handle .exports instead of a version script if we're told to do so.  */
6714   if (command_line.version_exports_section)
6715     lang_do_version_exports_section ();
6716
6717   /* Build all sets based on the information gathered from the input
6718      files.  */
6719   ldctor_build_sets ();
6720
6721   /* PR 13683: We must rerun the assignments prior to running garbage
6722      collection in order to make sure that all symbol aliases are resolved.  */
6723   lang_do_assignments (lang_mark_phase_enum);
6724   expld.phase = lang_first_phase_enum;
6725
6726   /* Remove unreferenced sections if asked to.  */
6727   lang_gc_sections ();
6728
6729   /* Size up the common data.  */
6730   lang_common ();
6731
6732   /* Update wild statements.  */
6733   update_wild_statements (statement_list.head);
6734
6735   /* Run through the contours of the script and attach input sections
6736      to the correct output sections.  */
6737   lang_statement_iteration++;
6738   map_input_to_output_sections (statement_list.head, NULL, NULL);
6739
6740   process_insert_statements ();
6741
6742   /* Find any sections not attached explicitly and handle them.  */
6743   lang_place_orphans ();
6744
6745   if (! link_info.relocatable)
6746     {
6747       asection *found;
6748
6749       /* Merge SEC_MERGE sections.  This has to be done after GC of
6750          sections, so that GCed sections are not merged, but before
6751          assigning dynamic symbols, since removing whole input sections
6752          is hard then.  */
6753       bfd_merge_sections (link_info.output_bfd, &link_info);
6754
6755       /* Look for a text section and set the readonly attribute in it.  */
6756       found = bfd_get_section_by_name (link_info.output_bfd, ".text");
6757
6758       if (found != NULL)
6759         {
6760           if (config.text_read_only)
6761             found->flags |= SEC_READONLY;
6762           else
6763             found->flags &= ~SEC_READONLY;
6764         }
6765     }
6766
6767   /* Do anything special before sizing sections.  This is where ELF
6768      and other back-ends size dynamic sections.  */
6769   ldemul_before_allocation ();
6770
6771   /* We must record the program headers before we try to fix the
6772      section positions, since they will affect SIZEOF_HEADERS.  */
6773   lang_record_phdrs ();
6774
6775   /* Check relro sections.  */
6776   if (link_info.relro && ! link_info.relocatable)
6777     lang_find_relro_sections ();
6778
6779   /* Size up the sections.  */
6780   lang_size_sections (NULL, ! RELAXATION_ENABLED);
6781
6782   /* See if anything special should be done now we know how big
6783      everything is.  This is where relaxation is done.  */
6784   ldemul_after_allocation ();
6785
6786   /* Fix any .startof. or .sizeof. symbols.  */
6787   lang_set_startof ();
6788
6789   /* Do all the assignments, now that we know the final resting places
6790      of all the symbols.  */
6791   lang_do_assignments (lang_final_phase_enum);
6792
6793   ldemul_finish ();
6794
6795   /* Make sure that the section addresses make sense.  */
6796   if (command_line.check_section_addresses)
6797     lang_check_section_addresses ();
6798
6799   lang_end ();
6800 }
6801
6802 /* EXPORTED TO YACC */
6803
6804 void
6805 lang_add_wild (struct wildcard_spec *filespec,
6806                struct wildcard_list *section_list,
6807                bfd_boolean keep_sections)
6808 {
6809   struct wildcard_list *curr, *next;
6810   lang_wild_statement_type *new_stmt;
6811
6812   /* Reverse the list as the parser puts it back to front.  */
6813   for (curr = section_list, section_list = NULL;
6814        curr != NULL;
6815        section_list = curr, curr = next)
6816     {
6817       if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
6818         placed_commons = TRUE;
6819
6820       next = curr->next;
6821       curr->next = section_list;
6822     }
6823
6824   if (filespec != NULL && filespec->name != NULL)
6825     {
6826       if (strcmp (filespec->name, "*") == 0)
6827         filespec->name = NULL;
6828       else if (! wildcardp (filespec->name))
6829         lang_has_input_file = TRUE;
6830     }
6831
6832   new_stmt = new_stat (lang_wild_statement, stat_ptr);
6833   new_stmt->filename = NULL;
6834   new_stmt->filenames_sorted = FALSE;
6835   new_stmt->section_flag_list = NULL;
6836   if (filespec != NULL)
6837     {
6838       new_stmt->filename = filespec->name;
6839       new_stmt->filenames_sorted = filespec->sorted == by_name;
6840       new_stmt->section_flag_list = filespec->section_flag_list;
6841     }
6842   new_stmt->section_list = section_list;
6843   new_stmt->keep_sections = keep_sections;
6844   lang_list_init (&new_stmt->children);
6845   analyze_walk_wild_section_handler (new_stmt);
6846 }
6847
6848 void
6849 lang_section_start (const char *name, etree_type *address,
6850                     const segment_type *segment)
6851 {
6852   lang_address_statement_type *ad;
6853
6854   ad = new_stat (lang_address_statement, stat_ptr);
6855   ad->section_name = name;
6856   ad->address = address;
6857   ad->segment = segment;
6858 }
6859
6860 /* Set the start symbol to NAME.  CMDLINE is nonzero if this is called
6861    because of a -e argument on the command line, or zero if this is
6862    called by ENTRY in a linker script.  Command line arguments take
6863    precedence.  */
6864
6865 void
6866 lang_add_entry (const char *name, bfd_boolean cmdline)
6867 {
6868   if (entry_symbol.name == NULL
6869       || cmdline
6870       || ! entry_from_cmdline)
6871     {
6872       entry_symbol.name = name;
6873       entry_from_cmdline = cmdline;
6874     }
6875 }
6876
6877 /* Set the default start symbol to NAME.  .em files should use this,
6878    not lang_add_entry, to override the use of "start" if neither the
6879    linker script nor the command line specifies an entry point.  NAME
6880    must be permanently allocated.  */
6881 void
6882 lang_default_entry (const char *name)
6883 {
6884   entry_symbol_default = name;
6885 }
6886
6887 void
6888 lang_add_target (const char *name)
6889 {
6890   lang_target_statement_type *new_stmt;
6891
6892   new_stmt = new_stat (lang_target_statement, stat_ptr);
6893   new_stmt->target = name;
6894 }
6895
6896 void
6897 lang_add_map (const char *name)
6898 {
6899   while (*name)
6900     {
6901       switch (*name)
6902         {
6903         case 'F':
6904           map_option_f = TRUE;
6905           break;
6906         }
6907       name++;
6908     }
6909 }
6910
6911 void
6912 lang_add_fill (fill_type *fill)
6913 {
6914   lang_fill_statement_type *new_stmt;
6915
6916   new_stmt = new_stat (lang_fill_statement, stat_ptr);
6917   new_stmt->fill = fill;
6918 }
6919
6920 void
6921 lang_add_data (int type, union etree_union *exp)
6922 {
6923   lang_data_statement_type *new_stmt;
6924
6925   new_stmt = new_stat (lang_data_statement, stat_ptr);
6926   new_stmt->exp = exp;
6927   new_stmt->type = type;
6928 }
6929
6930 /* Create a new reloc statement.  RELOC is the BFD relocation type to
6931    generate.  HOWTO is the corresponding howto structure (we could
6932    look this up, but the caller has already done so).  SECTION is the
6933    section to generate a reloc against, or NAME is the name of the
6934    symbol to generate a reloc against.  Exactly one of SECTION and
6935    NAME must be NULL.  ADDEND is an expression for the addend.  */
6936
6937 void
6938 lang_add_reloc (bfd_reloc_code_real_type reloc,
6939                 reloc_howto_type *howto,
6940                 asection *section,
6941                 const char *name,
6942                 union etree_union *addend)
6943 {
6944   lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
6945
6946   p->reloc = reloc;
6947   p->howto = howto;
6948   p->section = section;
6949   p->name = name;
6950   p->addend_exp = addend;
6951
6952   p->addend_value = 0;
6953   p->output_section = NULL;
6954   p->output_offset = 0;
6955 }
6956
6957 lang_assignment_statement_type *
6958 lang_add_assignment (etree_type *exp)
6959 {
6960   lang_assignment_statement_type *new_stmt;
6961
6962   new_stmt = new_stat (lang_assignment_statement, stat_ptr);
6963   new_stmt->exp = exp;
6964   return new_stmt;
6965 }
6966
6967 void
6968 lang_add_attribute (enum statement_enum attribute)
6969 {
6970   new_statement (attribute, sizeof (lang_statement_header_type), stat_ptr);
6971 }
6972
6973 void
6974 lang_startup (const char *name)
6975 {
6976   if (first_file->filename != NULL)
6977     {
6978       einfo (_("%P%F: multiple STARTUP files\n"));
6979     }
6980   first_file->filename = name;
6981   first_file->local_sym_name = name;
6982   first_file->flags.real = TRUE;
6983 }
6984
6985 void
6986 lang_float (bfd_boolean maybe)
6987 {
6988   lang_float_flag = maybe;
6989 }
6990
6991
6992 /* Work out the load- and run-time regions from a script statement, and
6993    store them in *LMA_REGION and *REGION respectively.
6994
6995    MEMSPEC is the name of the run-time region, or the value of
6996    DEFAULT_MEMORY_REGION if the statement didn't specify one.
6997    LMA_MEMSPEC is the name of the load-time region, or null if the
6998    statement didn't specify one.HAVE_LMA_P is TRUE if the statement
6999    had an explicit load address.
7000
7001    It is an error to specify both a load region and a load address.  */
7002
7003 static void
7004 lang_get_regions (lang_memory_region_type **region,
7005                   lang_memory_region_type **lma_region,
7006                   const char *memspec,
7007                   const char *lma_memspec,
7008                   bfd_boolean have_lma,
7009                   bfd_boolean have_vma)
7010 {
7011   *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
7012
7013   /* If no runtime region or VMA has been specified, but the load region
7014      has been specified, then use the load region for the runtime region
7015      as well.  */
7016   if (lma_memspec != NULL
7017       && ! have_vma
7018       && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
7019     *region = *lma_region;
7020   else
7021     *region = lang_memory_region_lookup (memspec, FALSE);
7022
7023   if (have_lma && lma_memspec != 0)
7024     einfo (_("%X%P:%S: section has both a load address and a load region\n"),
7025            NULL);
7026 }
7027
7028 void
7029 lang_leave_output_section_statement (fill_type *fill, const char *memspec,
7030                                      lang_output_section_phdr_list *phdrs,
7031                                      const char *lma_memspec)
7032 {
7033   lang_get_regions (&current_section->region,
7034                     &current_section->lma_region,
7035                     memspec, lma_memspec,
7036                     current_section->load_base != NULL,
7037                     current_section->addr_tree != NULL);
7038
7039   /* If this section has no load region or base, but uses the same
7040      region as the previous section, then propagate the previous
7041      section's load region.  */
7042
7043   if (current_section->lma_region == NULL
7044       && current_section->load_base == NULL
7045       && current_section->addr_tree == NULL
7046       && current_section->region == current_section->prev->region)
7047     current_section->lma_region = current_section->prev->lma_region;
7048
7049   current_section->fill = fill;
7050   current_section->phdrs = phdrs;
7051   pop_stat_ptr ();
7052 }
7053
7054 void
7055 lang_statement_append (lang_statement_list_type *list,
7056                        lang_statement_union_type *element,
7057                        lang_statement_union_type **field)
7058 {
7059   *(list->tail) = element;
7060   list->tail = field;
7061 }
7062
7063 /* Set the output format type.  -oformat overrides scripts.  */
7064
7065 void
7066 lang_add_output_format (const char *format,
7067                         const char *big,
7068                         const char *little,
7069                         int from_script)
7070 {
7071   if (output_target == NULL || !from_script)
7072     {
7073       if (command_line.endian == ENDIAN_BIG
7074           && big != NULL)
7075         format = big;
7076       else if (command_line.endian == ENDIAN_LITTLE
7077                && little != NULL)
7078         format = little;
7079
7080       output_target = format;
7081     }
7082 }
7083
7084 void
7085 lang_add_insert (const char *where, int is_before)
7086 {
7087   lang_insert_statement_type *new_stmt;
7088
7089   new_stmt = new_stat (lang_insert_statement, stat_ptr);
7090   new_stmt->where = where;
7091   new_stmt->is_before = is_before;
7092   saved_script_handle = previous_script_handle;
7093 }
7094
7095 /* Enter a group.  This creates a new lang_group_statement, and sets
7096    stat_ptr to build new statements within the group.  */
7097
7098 void
7099 lang_enter_group (void)
7100 {
7101   lang_group_statement_type *g;
7102
7103   g = new_stat (lang_group_statement, stat_ptr);
7104   lang_list_init (&g->children);
7105   push_stat_ptr (&g->children);
7106 }
7107
7108 /* Leave a group.  This just resets stat_ptr to start writing to the
7109    regular list of statements again.  Note that this will not work if
7110    groups can occur inside anything else which can adjust stat_ptr,
7111    but currently they can't.  */
7112
7113 void
7114 lang_leave_group (void)
7115 {
7116   pop_stat_ptr ();
7117 }
7118
7119 /* Add a new program header.  This is called for each entry in a PHDRS
7120    command in a linker script.  */
7121
7122 void
7123 lang_new_phdr (const char *name,
7124                etree_type *type,
7125                bfd_boolean filehdr,
7126                bfd_boolean phdrs,
7127                etree_type *at,
7128                etree_type *flags)
7129 {
7130   struct lang_phdr *n, **pp;
7131   bfd_boolean hdrs;
7132
7133   n = (struct lang_phdr *) stat_alloc (sizeof (struct lang_phdr));
7134   n->next = NULL;
7135   n->name = name;
7136   n->type = exp_get_value_int (type, 0, "program header type");
7137   n->filehdr = filehdr;
7138   n->phdrs = phdrs;
7139   n->at = at;
7140   n->flags = flags;
7141
7142   hdrs = n->type == 1 && (phdrs || filehdr);
7143
7144   for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
7145     if (hdrs
7146         && (*pp)->type == 1
7147         && !((*pp)->filehdr || (*pp)->phdrs))
7148       {
7149         einfo (_("%X%P:%S: PHDRS and FILEHDR are not supported"
7150                  " when prior PT_LOAD headers lack them\n"), NULL);
7151         hdrs = FALSE;
7152       }
7153
7154   *pp = n;
7155 }
7156
7157 /* Record the program header information in the output BFD.  FIXME: We
7158    should not be calling an ELF specific function here.  */
7159
7160 static void
7161 lang_record_phdrs (void)
7162 {
7163   unsigned int alc;
7164   asection **secs;
7165   lang_output_section_phdr_list *last;
7166   struct lang_phdr *l;
7167   lang_output_section_statement_type *os;
7168
7169   alc = 10;
7170   secs = (asection **) xmalloc (alc * sizeof (asection *));
7171   last = NULL;
7172
7173   for (l = lang_phdr_list; l != NULL; l = l->next)
7174     {
7175       unsigned int c;
7176       flagword flags;
7177       bfd_vma at;
7178
7179       c = 0;
7180       for (os = &lang_output_section_statement.head->output_section_statement;
7181            os != NULL;
7182            os = os->next)
7183         {
7184           lang_output_section_phdr_list *pl;
7185
7186           if (os->constraint < 0)
7187             continue;
7188
7189           pl = os->phdrs;
7190           if (pl != NULL)
7191             last = pl;
7192           else
7193             {
7194               if (os->sectype == noload_section
7195                   || os->bfd_section == NULL
7196                   || (os->bfd_section->flags & SEC_ALLOC) == 0)
7197                 continue;
7198
7199               /* Don't add orphans to PT_INTERP header.  */
7200               if (l->type == 3)
7201                 continue;
7202
7203               if (last == NULL)
7204                 {
7205                   lang_output_section_statement_type * tmp_os;
7206
7207                   /* If we have not run across a section with a program
7208                      header assigned to it yet, then scan forwards to find
7209                      one.  This prevents inconsistencies in the linker's
7210                      behaviour when a script has specified just a single
7211                      header and there are sections in that script which are
7212                      not assigned to it, and which occur before the first
7213                      use of that header. See here for more details:
7214                      http://sourceware.org/ml/binutils/2007-02/msg00291.html  */
7215                   for (tmp_os = os; tmp_os; tmp_os = tmp_os->next)
7216                     if (tmp_os->phdrs)
7217                       {
7218                         last = tmp_os->phdrs;
7219                         break;
7220                       }
7221                   if (last == NULL)
7222                     einfo (_("%F%P: no sections assigned to phdrs\n"));
7223                 }
7224               pl = last;
7225             }
7226
7227           if (os->bfd_section == NULL)
7228             continue;
7229
7230           for (; pl != NULL; pl = pl->next)
7231             {
7232               if (strcmp (pl->name, l->name) == 0)
7233                 {
7234                   if (c >= alc)
7235                     {
7236                       alc *= 2;
7237                       secs = (asection **) xrealloc (secs,
7238                                                      alc * sizeof (asection *));
7239                     }
7240                   secs[c] = os->bfd_section;
7241                   ++c;
7242                   pl->used = TRUE;
7243                 }
7244             }
7245         }
7246
7247       if (l->flags == NULL)
7248         flags = 0;
7249       else
7250         flags = exp_get_vma (l->flags, 0, "phdr flags");
7251
7252       if (l->at == NULL)
7253         at = 0;
7254       else
7255         at = exp_get_vma (l->at, 0, "phdr load address");
7256
7257       if (! bfd_record_phdr (link_info.output_bfd, l->type,
7258                              l->flags != NULL, flags, l->at != NULL,
7259                              at, l->filehdr, l->phdrs, c, secs))
7260         einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
7261     }
7262
7263   free (secs);
7264
7265   /* Make sure all the phdr assignments succeeded.  */
7266   for (os = &lang_output_section_statement.head->output_section_statement;
7267        os != NULL;
7268        os = os->next)
7269     {
7270       lang_output_section_phdr_list *pl;
7271
7272       if (os->constraint < 0
7273           || os->bfd_section == NULL)
7274         continue;
7275
7276       for (pl = os->phdrs;
7277            pl != NULL;
7278            pl = pl->next)
7279         if (! pl->used && strcmp (pl->name, "NONE") != 0)
7280           einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
7281                  os->name, pl->name);
7282     }
7283 }
7284
7285 /* Record a list of sections which may not be cross referenced.  */
7286
7287 void
7288 lang_add_nocrossref (lang_nocrossref_type *l)
7289 {
7290   struct lang_nocrossrefs *n;
7291
7292   n = (struct lang_nocrossrefs *) xmalloc (sizeof *n);
7293   n->next = nocrossref_list;
7294   n->list = l;
7295   nocrossref_list = n;
7296
7297   /* Set notice_all so that we get informed about all symbols.  */
7298   link_info.notice_all = TRUE;
7299 }
7300 \f
7301 /* Overlay handling.  We handle overlays with some static variables.  */
7302
7303 /* The overlay virtual address.  */
7304 static etree_type *overlay_vma;
7305 /* And subsection alignment.  */
7306 static etree_type *overlay_subalign;
7307
7308 /* An expression for the maximum section size seen so far.  */
7309 static etree_type *overlay_max;
7310
7311 /* A list of all the sections in this overlay.  */
7312
7313 struct overlay_list {
7314   struct overlay_list *next;
7315   lang_output_section_statement_type *os;
7316 };
7317
7318 static struct overlay_list *overlay_list;
7319
7320 /* Start handling an overlay.  */
7321
7322 void
7323 lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
7324 {
7325   /* The grammar should prevent nested overlays from occurring.  */
7326   ASSERT (overlay_vma == NULL
7327           && overlay_subalign == NULL
7328           && overlay_max == NULL);
7329
7330   overlay_vma = vma_expr;
7331   overlay_subalign = subalign;
7332 }
7333
7334 /* Start a section in an overlay.  We handle this by calling
7335    lang_enter_output_section_statement with the correct VMA.
7336    lang_leave_overlay sets up the LMA and memory regions.  */
7337
7338 void
7339 lang_enter_overlay_section (const char *name)
7340 {
7341   struct overlay_list *n;
7342   etree_type *size;
7343
7344   lang_enter_output_section_statement (name, overlay_vma, overlay_section,
7345                                        0, overlay_subalign, 0, 0, 0);
7346
7347   /* If this is the first section, then base the VMA of future
7348      sections on this one.  This will work correctly even if `.' is
7349      used in the addresses.  */
7350   if (overlay_list == NULL)
7351     overlay_vma = exp_nameop (ADDR, name);
7352
7353   /* Remember the section.  */
7354   n = (struct overlay_list *) xmalloc (sizeof *n);
7355   n->os = current_section;
7356   n->next = overlay_list;
7357   overlay_list = n;
7358
7359   size = exp_nameop (SIZEOF, name);
7360
7361   /* Arrange to work out the maximum section end address.  */
7362   if (overlay_max == NULL)
7363     overlay_max = size;
7364   else
7365     overlay_max = exp_binop (MAX_K, overlay_max, size);
7366 }
7367
7368 /* Finish a section in an overlay.  There isn't any special to do
7369    here.  */
7370
7371 void
7372 lang_leave_overlay_section (fill_type *fill,
7373                             lang_output_section_phdr_list *phdrs)
7374 {
7375   const char *name;
7376   char *clean, *s2;
7377   const char *s1;
7378   char *buf;
7379
7380   name = current_section->name;
7381
7382   /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
7383      region and that no load-time region has been specified.  It doesn't
7384      really matter what we say here, since lang_leave_overlay will
7385      override it.  */
7386   lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
7387
7388   /* Define the magic symbols.  */
7389
7390   clean = (char *) xmalloc (strlen (name) + 1);
7391   s2 = clean;
7392   for (s1 = name; *s1 != '\0'; s1++)
7393     if (ISALNUM (*s1) || *s1 == '_')
7394       *s2++ = *s1;
7395   *s2 = '\0';
7396
7397   buf = (char *) xmalloc (strlen (clean) + sizeof "__load_start_");
7398   sprintf (buf, "__load_start_%s", clean);
7399   lang_add_assignment (exp_provide (buf,
7400                                     exp_nameop (LOADADDR, name),
7401                                     FALSE));
7402
7403   buf = (char *) xmalloc (strlen (clean) + sizeof "__load_stop_");
7404   sprintf (buf, "__load_stop_%s", clean);
7405   lang_add_assignment (exp_provide (buf,
7406                                     exp_binop ('+',
7407                                                exp_nameop (LOADADDR, name),
7408                                                exp_nameop (SIZEOF, name)),
7409                                     FALSE));
7410
7411   free (clean);
7412 }
7413
7414 /* Finish an overlay.  If there are any overlay wide settings, this
7415    looks through all the sections in the overlay and sets them.  */
7416
7417 void
7418 lang_leave_overlay (etree_type *lma_expr,
7419                     int nocrossrefs,
7420                     fill_type *fill,
7421                     const char *memspec,
7422                     lang_output_section_phdr_list *phdrs,
7423                     const char *lma_memspec)
7424 {
7425   lang_memory_region_type *region;
7426   lang_memory_region_type *lma_region;
7427   struct overlay_list *l;
7428   lang_nocrossref_type *nocrossref;
7429
7430   lang_get_regions (&region, &lma_region,
7431                     memspec, lma_memspec,
7432                     lma_expr != NULL, FALSE);
7433
7434   nocrossref = NULL;
7435
7436   /* After setting the size of the last section, set '.' to end of the
7437      overlay region.  */
7438   if (overlay_list != NULL)
7439     {
7440       overlay_list->os->update_dot = 1;
7441       overlay_list->os->update_dot_tree
7442         = exp_assign (".", exp_binop ('+', overlay_vma, overlay_max), FALSE);
7443     }
7444
7445   l = overlay_list;
7446   while (l != NULL)
7447     {
7448       struct overlay_list *next;
7449
7450       if (fill != NULL && l->os->fill == NULL)
7451         l->os->fill = fill;
7452
7453       l->os->region = region;
7454       l->os->lma_region = lma_region;
7455
7456       /* The first section has the load address specified in the
7457          OVERLAY statement.  The rest are worked out from that.
7458          The base address is not needed (and should be null) if
7459          an LMA region was specified.  */
7460       if (l->next == 0)
7461         {
7462           l->os->load_base = lma_expr;
7463           l->os->sectype = normal_section;
7464         }
7465       if (phdrs != NULL && l->os->phdrs == NULL)
7466         l->os->phdrs = phdrs;
7467
7468       if (nocrossrefs)
7469         {
7470           lang_nocrossref_type *nc;
7471
7472           nc = (lang_nocrossref_type *) xmalloc (sizeof *nc);
7473           nc->name = l->os->name;
7474           nc->next = nocrossref;
7475           nocrossref = nc;
7476         }
7477
7478       next = l->next;
7479       free (l);
7480       l = next;
7481     }
7482
7483   if (nocrossref != NULL)
7484     lang_add_nocrossref (nocrossref);
7485
7486   overlay_vma = NULL;
7487   overlay_list = NULL;
7488   overlay_max = NULL;
7489 }
7490 \f
7491 /* Version handling.  This is only useful for ELF.  */
7492
7493 /* If PREV is NULL, return first version pattern matching particular symbol.
7494    If PREV is non-NULL, return first version pattern matching particular
7495    symbol after PREV (previously returned by lang_vers_match).  */
7496
7497 static struct bfd_elf_version_expr *
7498 lang_vers_match (struct bfd_elf_version_expr_head *head,
7499                  struct bfd_elf_version_expr *prev,
7500                  const char *sym)
7501 {
7502   const char *c_sym;
7503   const char *cxx_sym = sym;
7504   const char *java_sym = sym;
7505   struct bfd_elf_version_expr *expr = NULL;
7506   enum demangling_styles curr_style;
7507
7508   curr_style = CURRENT_DEMANGLING_STYLE;
7509   cplus_demangle_set_style (no_demangling);
7510   c_sym = bfd_demangle (link_info.output_bfd, sym, DMGL_NO_OPTS);
7511   if (!c_sym)
7512     c_sym = sym;
7513   cplus_demangle_set_style (curr_style);
7514
7515   if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7516     {
7517       cxx_sym = bfd_demangle (link_info.output_bfd, sym,
7518                               DMGL_PARAMS | DMGL_ANSI);
7519       if (!cxx_sym)
7520         cxx_sym = sym;
7521     }
7522   if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7523     {
7524       java_sym = bfd_demangle (link_info.output_bfd, sym, DMGL_JAVA);
7525       if (!java_sym)
7526         java_sym = sym;
7527     }
7528
7529   if (head->htab && (prev == NULL || prev->literal))
7530     {
7531       struct bfd_elf_version_expr e;
7532
7533       switch (prev ? prev->mask : 0)
7534         {
7535         case 0:
7536           if (head->mask & BFD_ELF_VERSION_C_TYPE)
7537             {
7538               e.pattern = c_sym;
7539               expr = (struct bfd_elf_version_expr *)
7540                   htab_find ((htab_t) head->htab, &e);
7541               while (expr && strcmp (expr->pattern, c_sym) == 0)
7542                 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
7543                   goto out_ret;
7544                 else
7545                   expr = expr->next;
7546             }
7547           /* Fallthrough */
7548         case BFD_ELF_VERSION_C_TYPE:
7549           if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7550             {
7551               e.pattern = cxx_sym;
7552               expr = (struct bfd_elf_version_expr *)
7553                   htab_find ((htab_t) head->htab, &e);
7554               while (expr && strcmp (expr->pattern, cxx_sym) == 0)
7555                 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7556                   goto out_ret;
7557                 else
7558                   expr = expr->next;
7559             }
7560           /* Fallthrough */
7561         case BFD_ELF_VERSION_CXX_TYPE:
7562           if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7563             {
7564               e.pattern = java_sym;
7565               expr = (struct bfd_elf_version_expr *)
7566                   htab_find ((htab_t) head->htab, &e);
7567               while (expr && strcmp (expr->pattern, java_sym) == 0)
7568                 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7569                   goto out_ret;
7570                 else
7571                   expr = expr->next;
7572             }
7573           /* Fallthrough */
7574         default:
7575           break;
7576         }
7577     }
7578
7579   /* Finally, try the wildcards.  */
7580   if (prev == NULL || prev->literal)
7581     expr = head->remaining;
7582   else
7583     expr = prev->next;
7584   for (; expr; expr = expr->next)
7585     {
7586       const char *s;
7587
7588       if (!expr->pattern)
7589         continue;
7590
7591       if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
7592         break;
7593
7594       if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7595         s = java_sym;
7596       else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7597         s = cxx_sym;
7598       else
7599         s = c_sym;
7600       if (fnmatch (expr->pattern, s, 0) == 0)
7601         break;
7602     }
7603
7604  out_ret:
7605   if (c_sym != sym)
7606     free ((char *) c_sym);
7607   if (cxx_sym != sym)
7608     free ((char *) cxx_sym);
7609   if (java_sym != sym)
7610     free ((char *) java_sym);
7611   return expr;
7612 }
7613
7614 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
7615    return a pointer to the symbol name with any backslash quotes removed.  */
7616
7617 static const char *
7618 realsymbol (const char *pattern)
7619 {
7620   const char *p;
7621   bfd_boolean changed = FALSE, backslash = FALSE;
7622   char *s, *symbol = (char *) xmalloc (strlen (pattern) + 1);
7623
7624   for (p = pattern, s = symbol; *p != '\0'; ++p)
7625     {
7626       /* It is a glob pattern only if there is no preceding
7627          backslash.  */
7628       if (backslash)
7629         {
7630           /* Remove the preceding backslash.  */
7631           *(s - 1) = *p;
7632           backslash = FALSE;
7633           changed = TRUE;
7634         }
7635       else
7636         {
7637           if (*p == '?' || *p == '*' || *p == '[')
7638             {
7639               free (symbol);
7640               return NULL;
7641             }
7642
7643           *s++ = *p;
7644           backslash = *p == '\\';
7645         }
7646     }
7647
7648   if (changed)
7649     {
7650       *s = '\0';
7651       return symbol;
7652     }
7653   else
7654     {
7655       free (symbol);
7656       return pattern;
7657     }
7658 }
7659
7660 /* This is called for each variable name or match expression.  NEW_NAME is
7661    the name of the symbol to match, or, if LITERAL_P is FALSE, a glob
7662    pattern to be matched against symbol names.  */
7663
7664 struct bfd_elf_version_expr *
7665 lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
7666                        const char *new_name,
7667                        const char *lang,
7668                        bfd_boolean literal_p)
7669 {
7670   struct bfd_elf_version_expr *ret;
7671
7672   ret = (struct bfd_elf_version_expr *) xmalloc (sizeof *ret);
7673   ret->next = orig;
7674   ret->symver = 0;
7675   ret->script = 0;
7676   ret->literal = TRUE;
7677   ret->pattern = literal_p ? new_name : realsymbol (new_name);
7678   if (ret->pattern == NULL)
7679     {
7680       ret->pattern = new_name;
7681       ret->literal = FALSE;
7682     }
7683
7684   if (lang == NULL || strcasecmp (lang, "C") == 0)
7685     ret->mask = BFD_ELF_VERSION_C_TYPE;
7686   else if (strcasecmp (lang, "C++") == 0)
7687     ret->mask = BFD_ELF_VERSION_CXX_TYPE;
7688   else if (strcasecmp (lang, "Java") == 0)
7689     ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
7690   else
7691     {
7692       einfo (_("%X%P: unknown language `%s' in version information\n"),
7693              lang);
7694       ret->mask = BFD_ELF_VERSION_C_TYPE;
7695     }
7696
7697   return ldemul_new_vers_pattern (ret);
7698 }
7699
7700 /* This is called for each set of variable names and match
7701    expressions.  */
7702
7703 struct bfd_elf_version_tree *
7704 lang_new_vers_node (struct bfd_elf_version_expr *globals,
7705                     struct bfd_elf_version_expr *locals)
7706 {
7707   struct bfd_elf_version_tree *ret;
7708
7709   ret = (struct bfd_elf_version_tree *) xcalloc (1, sizeof *ret);
7710   ret->globals.list = globals;
7711   ret->locals.list = locals;
7712   ret->match = lang_vers_match;
7713   ret->name_indx = (unsigned int) -1;
7714   return ret;
7715 }
7716
7717 /* This static variable keeps track of version indices.  */
7718
7719 static int version_index;
7720
7721 static hashval_t
7722 version_expr_head_hash (const void *p)
7723 {
7724   const struct bfd_elf_version_expr *e =
7725       (const struct bfd_elf_version_expr *) p;
7726
7727   return htab_hash_string (e->pattern);
7728 }
7729
7730 static int
7731 version_expr_head_eq (const void *p1, const void *p2)
7732 {
7733   const struct bfd_elf_version_expr *e1 =
7734       (const struct bfd_elf_version_expr *) p1;
7735   const struct bfd_elf_version_expr *e2 =
7736       (const struct bfd_elf_version_expr *) p2;
7737
7738   return strcmp (e1->pattern, e2->pattern) == 0;
7739 }
7740
7741 static void
7742 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
7743 {
7744   size_t count = 0;
7745   struct bfd_elf_version_expr *e, *next;
7746   struct bfd_elf_version_expr **list_loc, **remaining_loc;
7747
7748   for (e = head->list; e; e = e->next)
7749     {
7750       if (e->literal)
7751         count++;
7752       head->mask |= e->mask;
7753     }
7754
7755   if (count)
7756     {
7757       head->htab = htab_create (count * 2, version_expr_head_hash,
7758                                 version_expr_head_eq, NULL);
7759       list_loc = &head->list;
7760       remaining_loc = &head->remaining;
7761       for (e = head->list; e; e = next)
7762         {
7763           next = e->next;
7764           if (!e->literal)
7765             {
7766               *remaining_loc = e;
7767               remaining_loc = &e->next;
7768             }
7769           else
7770             {
7771               void **loc = htab_find_slot ((htab_t) head->htab, e, INSERT);
7772
7773               if (*loc)
7774                 {
7775                   struct bfd_elf_version_expr *e1, *last;
7776
7777                   e1 = (struct bfd_elf_version_expr *) *loc;
7778                   last = NULL;
7779                   do
7780                     {
7781                       if (e1->mask == e->mask)
7782                         {
7783                           last = NULL;
7784                           break;
7785                         }
7786                       last = e1;
7787                       e1 = e1->next;
7788                     }
7789                   while (e1 && strcmp (e1->pattern, e->pattern) == 0);
7790
7791                   if (last == NULL)
7792                     {
7793                       /* This is a duplicate.  */
7794                       /* FIXME: Memory leak.  Sometimes pattern is not
7795                          xmalloced alone, but in larger chunk of memory.  */
7796                       /* free (e->pattern); */
7797                       free (e);
7798                     }
7799                   else
7800                     {
7801                       e->next = last->next;
7802                       last->next = e;
7803                     }
7804                 }
7805               else
7806                 {
7807                   *loc = e;
7808                   *list_loc = e;
7809                   list_loc = &e->next;
7810                 }
7811             }
7812         }
7813       *remaining_loc = NULL;
7814       *list_loc = head->remaining;
7815     }
7816   else
7817     head->remaining = head->list;
7818 }
7819
7820 /* This is called when we know the name and dependencies of the
7821    version.  */
7822
7823 void
7824 lang_register_vers_node (const char *name,
7825                          struct bfd_elf_version_tree *version,
7826                          struct bfd_elf_version_deps *deps)
7827 {
7828   struct bfd_elf_version_tree *t, **pp;
7829   struct bfd_elf_version_expr *e1;
7830
7831   if (name == NULL)
7832     name = "";
7833
7834   if (link_info.version_info != NULL
7835       && (name[0] == '\0' || link_info.version_info->name[0] == '\0'))
7836     {
7837       einfo (_("%X%P: anonymous version tag cannot be combined"
7838                " with other version tags\n"));
7839       free (version);
7840       return;
7841     }
7842
7843   /* Make sure this node has a unique name.  */
7844   for (t = link_info.version_info; t != NULL; t = t->next)
7845     if (strcmp (t->name, name) == 0)
7846       einfo (_("%X%P: duplicate version tag `%s'\n"), name);
7847
7848   lang_finalize_version_expr_head (&version->globals);
7849   lang_finalize_version_expr_head (&version->locals);
7850
7851   /* Check the global and local match names, and make sure there
7852      aren't any duplicates.  */
7853
7854   for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
7855     {
7856       for (t = link_info.version_info; t != NULL; t = t->next)
7857         {
7858           struct bfd_elf_version_expr *e2;
7859
7860           if (t->locals.htab && e1->literal)
7861             {
7862               e2 = (struct bfd_elf_version_expr *)
7863                   htab_find ((htab_t) t->locals.htab, e1);
7864               while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7865                 {
7866                   if (e1->mask == e2->mask)
7867                     einfo (_("%X%P: duplicate expression `%s'"
7868                              " in version information\n"), e1->pattern);
7869                   e2 = e2->next;
7870                 }
7871             }
7872           else if (!e1->literal)
7873             for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
7874               if (strcmp (e1->pattern, e2->pattern) == 0
7875                   && e1->mask == e2->mask)
7876                 einfo (_("%X%P: duplicate expression `%s'"
7877                          " in version information\n"), e1->pattern);
7878         }
7879     }
7880
7881   for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
7882     {
7883       for (t = link_info.version_info; t != NULL; t = t->next)
7884         {
7885           struct bfd_elf_version_expr *e2;
7886
7887           if (t->globals.htab && e1->literal)
7888             {
7889               e2 = (struct bfd_elf_version_expr *)
7890                   htab_find ((htab_t) t->globals.htab, e1);
7891               while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7892                 {
7893                   if (e1->mask == e2->mask)
7894                     einfo (_("%X%P: duplicate expression `%s'"
7895                              " in version information\n"),
7896                            e1->pattern);
7897                   e2 = e2->next;
7898                 }
7899             }
7900           else if (!e1->literal)
7901             for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
7902               if (strcmp (e1->pattern, e2->pattern) == 0
7903                   && e1->mask == e2->mask)
7904                 einfo (_("%X%P: duplicate expression `%s'"
7905                          " in version information\n"), e1->pattern);
7906         }
7907     }
7908
7909   version->deps = deps;
7910   version->name = name;
7911   if (name[0] != '\0')
7912     {
7913       ++version_index;
7914       version->vernum = version_index;
7915     }
7916   else
7917     version->vernum = 0;
7918
7919   for (pp = &link_info.version_info; *pp != NULL; pp = &(*pp)->next)
7920     ;
7921   *pp = version;
7922 }
7923
7924 /* This is called when we see a version dependency.  */
7925
7926 struct bfd_elf_version_deps *
7927 lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
7928 {
7929   struct bfd_elf_version_deps *ret;
7930   struct bfd_elf_version_tree *t;
7931
7932   ret = (struct bfd_elf_version_deps *) xmalloc (sizeof *ret);
7933   ret->next = list;
7934
7935   for (t = link_info.version_info; t != NULL; t = t->next)
7936     {
7937       if (strcmp (t->name, name) == 0)
7938         {
7939           ret->version_needed = t;
7940           return ret;
7941         }
7942     }
7943
7944   einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
7945
7946   ret->version_needed = NULL;
7947   return ret;
7948 }
7949
7950 static void
7951 lang_do_version_exports_section (void)
7952 {
7953   struct bfd_elf_version_expr *greg = NULL, *lreg;
7954
7955   LANG_FOR_EACH_INPUT_STATEMENT (is)
7956     {
7957       asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
7958       char *contents, *p;
7959       bfd_size_type len;
7960
7961       if (sec == NULL)
7962         continue;
7963
7964       len = sec->size;
7965       contents = (char *) xmalloc (len);
7966       if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
7967         einfo (_("%X%P: unable to read .exports section contents\n"), sec);
7968
7969       p = contents;
7970       while (p < contents + len)
7971         {
7972           greg = lang_new_vers_pattern (greg, p, NULL, FALSE);
7973           p = strchr (p, '\0') + 1;
7974         }
7975
7976       /* Do not free the contents, as we used them creating the regex.  */
7977
7978       /* Do not include this section in the link.  */
7979       sec->flags |= SEC_EXCLUDE | SEC_KEEP;
7980     }
7981
7982   lreg = lang_new_vers_pattern (NULL, "*", NULL, FALSE);
7983   lang_register_vers_node (command_line.version_exports_section,
7984                            lang_new_vers_node (greg, lreg), NULL);
7985 }
7986
7987 void
7988 lang_add_unique (const char *name)
7989 {
7990   struct unique_sections *ent;
7991
7992   for (ent = unique_section_list; ent; ent = ent->next)
7993     if (strcmp (ent->name, name) == 0)
7994       return;
7995
7996   ent = (struct unique_sections *) xmalloc (sizeof *ent);
7997   ent->name = xstrdup (name);
7998   ent->next = unique_section_list;
7999   unique_section_list = ent;
8000 }
8001
8002 /* Append the list of dynamic symbols to the existing one.  */
8003
8004 void
8005 lang_append_dynamic_list (struct bfd_elf_version_expr *dynamic)
8006 {
8007   if (link_info.dynamic_list)
8008     {
8009       struct bfd_elf_version_expr *tail;
8010       for (tail = dynamic; tail->next != NULL; tail = tail->next)
8011         ;
8012       tail->next = link_info.dynamic_list->head.list;
8013       link_info.dynamic_list->head.list = dynamic;
8014     }
8015   else
8016     {
8017       struct bfd_elf_dynamic_list *d;
8018
8019       d = (struct bfd_elf_dynamic_list *) xcalloc (1, sizeof *d);
8020       d->head.list = dynamic;
8021       d->match = lang_vers_match;
8022       link_info.dynamic_list = d;
8023     }
8024 }
8025
8026 /* Append the list of C++ typeinfo dynamic symbols to the existing
8027    one.  */
8028
8029 void
8030 lang_append_dynamic_list_cpp_typeinfo (void)
8031 {
8032   const char * symbols [] =
8033     {
8034       "typeinfo name for*",
8035       "typeinfo for*"
8036     };
8037   struct bfd_elf_version_expr *dynamic = NULL;
8038   unsigned int i;
8039
8040   for (i = 0; i < ARRAY_SIZE (symbols); i++)
8041     dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
8042                                      FALSE);
8043
8044   lang_append_dynamic_list (dynamic);
8045 }
8046
8047 /* Append the list of C++ operator new and delete dynamic symbols to the
8048    existing one.  */
8049
8050 void
8051 lang_append_dynamic_list_cpp_new (void)
8052 {
8053   const char * symbols [] =
8054     {
8055       "operator new*",
8056       "operator delete*"
8057     };
8058   struct bfd_elf_version_expr *dynamic = NULL;
8059   unsigned int i;
8060
8061   for (i = 0; i < ARRAY_SIZE (symbols); i++)
8062     dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
8063                                      FALSE);
8064
8065   lang_append_dynamic_list (dynamic);
8066 }
8067
8068 /* Scan a space and/or comma separated string of features.  */
8069
8070 void
8071 lang_ld_feature (char *str)
8072 {
8073   char *p, *q;
8074
8075   p = str;
8076   while (*p)
8077     {
8078       char sep;
8079       while (*p == ',' || ISSPACE (*p))
8080         ++p;
8081       if (!*p)
8082         break;
8083       q = p + 1;
8084       while (*q && *q != ',' && !ISSPACE (*q))
8085         ++q;
8086       sep = *q;
8087       *q = 0;
8088       if (strcasecmp (p, "SANE_EXPR") == 0)
8089         config.sane_expr = TRUE;
8090       else
8091         einfo (_("%X%P: unknown feature `%s'\n"), p);
8092       *q = sep;
8093       p = q;
8094     }
8095 }