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