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