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