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