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