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