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