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