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