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