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