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