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