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