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