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