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