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