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