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