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