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