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