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