1 /* POWER/PowerPC XCOFF linker support.
2 Copyright (C) 1995-2016 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@cygnus.com>, Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
26 #include "coff/internal.h"
27 #include "coff/xcoff.h"
30 #include "libiberty.h"
32 /* This file holds the XCOFF linker code. */
34 #undef STRING_SIZE_SIZE
35 #define STRING_SIZE_SIZE 4
37 /* We reuse the SEC_ROM flag as a mark flag for garbage collection.
38 This flag will only be used on input sections. */
40 #define SEC_MARK (SEC_ROM)
42 /* The list of import files. */
44 struct xcoff_import_file
46 /* The next entry in the list. */
47 struct xcoff_import_file
*next
;
52 /* The member name. */
56 /* Information we keep for each section in the output file during the
59 struct xcoff_link_section_info
61 /* The relocs to be output. */
62 struct internal_reloc
*relocs
;
63 /* For each reloc against a global symbol whose index was not known
64 when the reloc was handled, the global hash table entry. */
65 struct xcoff_link_hash_entry
**rel_hashes
;
66 /* If there is a TOC relative reloc against a global symbol, and the
67 index of the TOC symbol is not known when the reloc was handled,
68 an entry is added to this linked list. This is not an array,
69 like rel_hashes, because this case is quite uncommon. */
70 struct xcoff_toc_rel_hash
72 struct xcoff_toc_rel_hash
*next
;
73 struct xcoff_link_hash_entry
*h
;
74 struct internal_reloc
*rel
;
78 /* Information that the XCOFF linker collects about an archive. */
79 struct xcoff_archive_info
81 /* The archive described by this entry. */
84 /* The import path and import filename to use when referring to
85 this archive in the .loader section. */
89 /* True if the archive contains a dynamic object. */
90 unsigned int contains_shared_object_p
: 1;
92 /* True if the previous field is valid. */
93 unsigned int know_contains_shared_object_p
: 1;
96 struct xcoff_link_hash_table
98 struct bfd_link_hash_table root
;
100 /* The .debug string hash table. We need to compute this while
101 reading the input files, so that we know how large the .debug
102 section will be before we assign section positions. */
103 struct bfd_strtab_hash
*debug_strtab
;
105 /* The .debug section we will use for the final output. */
106 asection
*debug_section
;
108 /* The .loader section we will use for the final output. */
109 asection
*loader_section
;
111 /* A count of non TOC relative relocs which will need to be
112 allocated in the .loader section. */
115 /* The .loader section header. */
116 struct internal_ldhdr ldhdr
;
118 /* The .gl section we use to hold global linkage code. */
119 asection
*linkage_section
;
121 /* The .tc section we use to hold toc entries we build for global
123 asection
*toc_section
;
125 /* The .ds section we use to hold function descriptors which we
126 create for exported symbols. */
127 asection
*descriptor_section
;
129 /* The list of import files. */
130 struct xcoff_import_file
*imports
;
132 /* Required alignment of sections within the output file. */
133 unsigned long file_align
;
135 /* Whether the .text section must be read-only. */
138 /* Whether -brtl was specified. */
141 /* Whether garbage collection was done. */
144 /* A linked list of symbols for which we have size information. */
145 struct xcoff_link_size_list
147 struct xcoff_link_size_list
*next
;
148 struct xcoff_link_hash_entry
*h
;
153 /* Information about archives. */
156 /* Magic sections: _text, _etext, _data, _edata, _end, end. */
157 asection
*special_sections
[XCOFF_NUMBER_OF_SPECIAL_SECTIONS
];
160 /* Information that we pass around while doing the final link step. */
162 struct xcoff_final_link_info
164 /* General link information. */
165 struct bfd_link_info
*info
;
168 /* Hash table for long symbol names. */
169 struct bfd_strtab_hash
*strtab
;
170 /* Array of information kept for each output section, indexed by the
171 target_index field. */
172 struct xcoff_link_section_info
*section_info
;
173 /* Symbol index of last C_FILE symbol (-1 if none). */
174 long last_file_index
;
175 /* Contents of last C_FILE symbol. */
176 struct internal_syment last_file
;
177 /* Symbol index of TOC symbol. */
179 /* Start of .loader symbols. */
181 /* Next .loader reloc to swap out. */
183 /* File position of start of line numbers. */
184 file_ptr line_filepos
;
185 /* Buffer large enough to hold swapped symbols of any input file. */
186 struct internal_syment
*internal_syms
;
187 /* Buffer large enough to hold output indices of symbols of any
190 /* Buffer large enough to hold output symbols for any input file. */
192 /* Buffer large enough to hold external line numbers for any input
195 /* Buffer large enough to hold any input section. */
197 /* Buffer large enough to hold external relocs of any input section. */
198 bfd_byte
*external_relocs
;
201 static bfd_boolean
xcoff_mark (struct bfd_link_info
*, asection
*);
205 /* Routines to read XCOFF dynamic information. This don't really
206 belong here, but we already have the ldsym manipulation routines
209 /* Read the contents of a section. */
212 xcoff_get_section_contents (bfd
*abfd
, asection
*sec
)
214 if (coff_section_data (abfd
, sec
) == NULL
)
216 bfd_size_type amt
= sizeof (struct coff_section_tdata
);
218 sec
->used_by_bfd
= bfd_zalloc (abfd
, amt
);
219 if (sec
->used_by_bfd
== NULL
)
223 if (coff_section_data (abfd
, sec
)->contents
== NULL
)
227 if (! bfd_malloc_and_get_section (abfd
, sec
, &contents
))
229 if (contents
!= NULL
)
233 coff_section_data (abfd
, sec
)->contents
= contents
;
239 /* Get the size required to hold the dynamic symbols. */
242 _bfd_xcoff_get_dynamic_symtab_upper_bound (bfd
*abfd
)
246 struct internal_ldhdr ldhdr
;
248 if ((abfd
->flags
& DYNAMIC
) == 0)
250 bfd_set_error (bfd_error_invalid_operation
);
254 lsec
= bfd_get_section_by_name (abfd
, ".loader");
257 bfd_set_error (bfd_error_no_symbols
);
261 if (! xcoff_get_section_contents (abfd
, lsec
))
263 contents
= coff_section_data (abfd
, lsec
)->contents
;
265 bfd_xcoff_swap_ldhdr_in (abfd
, (void *) contents
, &ldhdr
);
267 return (ldhdr
.l_nsyms
+ 1) * sizeof (asymbol
*);
270 /* Get the dynamic symbols. */
273 _bfd_xcoff_canonicalize_dynamic_symtab (bfd
*abfd
, asymbol
**psyms
)
277 struct internal_ldhdr ldhdr
;
279 bfd_byte
*elsym
, *elsymend
;
280 coff_symbol_type
*symbuf
;
282 if ((abfd
->flags
& DYNAMIC
) == 0)
284 bfd_set_error (bfd_error_invalid_operation
);
288 lsec
= bfd_get_section_by_name (abfd
, ".loader");
291 bfd_set_error (bfd_error_no_symbols
);
295 if (! xcoff_get_section_contents (abfd
, lsec
))
297 contents
= coff_section_data (abfd
, lsec
)->contents
;
299 coff_section_data (abfd
, lsec
)->keep_contents
= TRUE
;
301 bfd_xcoff_swap_ldhdr_in (abfd
, contents
, &ldhdr
);
303 strings
= (char *) contents
+ ldhdr
.l_stoff
;
305 symbuf
= bfd_zalloc (abfd
, ldhdr
.l_nsyms
* sizeof (* symbuf
));
309 elsym
= contents
+ bfd_xcoff_loader_symbol_offset(abfd
, &ldhdr
);
311 elsymend
= elsym
+ ldhdr
.l_nsyms
* bfd_xcoff_ldsymsz(abfd
);
312 for (; elsym
< elsymend
; elsym
+= bfd_xcoff_ldsymsz(abfd
), symbuf
++, psyms
++)
314 struct internal_ldsym ldsym
;
316 bfd_xcoff_swap_ldsym_in (abfd
, elsym
, &ldsym
);
318 symbuf
->symbol
.the_bfd
= abfd
;
320 if (ldsym
._l
._l_l
._l_zeroes
== 0)
321 symbuf
->symbol
.name
= strings
+ ldsym
._l
._l_l
._l_offset
;
326 c
= bfd_alloc (abfd
, (bfd_size_type
) SYMNMLEN
+ 1);
329 memcpy (c
, ldsym
._l
._l_name
, SYMNMLEN
);
331 symbuf
->symbol
.name
= c
;
334 if (ldsym
.l_smclas
== XMC_XO
)
335 symbuf
->symbol
.section
= bfd_abs_section_ptr
;
337 symbuf
->symbol
.section
= coff_section_from_bfd_index (abfd
,
339 symbuf
->symbol
.value
= ldsym
.l_value
- symbuf
->symbol
.section
->vma
;
341 symbuf
->symbol
.flags
= BSF_NO_FLAGS
;
342 if ((ldsym
.l_smtype
& L_EXPORT
) != 0)
344 if ((ldsym
.l_smtype
& L_WEAK
) != 0)
345 symbuf
->symbol
.flags
|= BSF_WEAK
;
347 symbuf
->symbol
.flags
|= BSF_GLOBAL
;
350 /* FIXME: We have no way to record the other information stored
351 with the loader symbol. */
352 *psyms
= (asymbol
*) symbuf
;
357 return ldhdr
.l_nsyms
;
360 /* Get the size required to hold the dynamic relocs. */
363 _bfd_xcoff_get_dynamic_reloc_upper_bound (bfd
*abfd
)
367 struct internal_ldhdr ldhdr
;
369 if ((abfd
->flags
& DYNAMIC
) == 0)
371 bfd_set_error (bfd_error_invalid_operation
);
375 lsec
= bfd_get_section_by_name (abfd
, ".loader");
378 bfd_set_error (bfd_error_no_symbols
);
382 if (! xcoff_get_section_contents (abfd
, lsec
))
384 contents
= coff_section_data (abfd
, lsec
)->contents
;
386 bfd_xcoff_swap_ldhdr_in (abfd
, (struct external_ldhdr
*) contents
, &ldhdr
);
388 return (ldhdr
.l_nreloc
+ 1) * sizeof (arelent
*);
391 /* Get the dynamic relocs. */
394 _bfd_xcoff_canonicalize_dynamic_reloc (bfd
*abfd
,
400 struct internal_ldhdr ldhdr
;
402 bfd_byte
*elrel
, *elrelend
;
404 if ((abfd
->flags
& DYNAMIC
) == 0)
406 bfd_set_error (bfd_error_invalid_operation
);
410 lsec
= bfd_get_section_by_name (abfd
, ".loader");
413 bfd_set_error (bfd_error_no_symbols
);
417 if (! xcoff_get_section_contents (abfd
, lsec
))
419 contents
= coff_section_data (abfd
, lsec
)->contents
;
421 bfd_xcoff_swap_ldhdr_in (abfd
, contents
, &ldhdr
);
423 relbuf
= bfd_alloc (abfd
, ldhdr
.l_nreloc
* sizeof (arelent
));
427 elrel
= contents
+ bfd_xcoff_loader_reloc_offset(abfd
, &ldhdr
);
429 elrelend
= elrel
+ ldhdr
.l_nreloc
* bfd_xcoff_ldrelsz(abfd
);
430 for (; elrel
< elrelend
; elrel
+= bfd_xcoff_ldrelsz(abfd
), relbuf
++,
433 struct internal_ldrel ldrel
;
435 bfd_xcoff_swap_ldrel_in (abfd
, elrel
, &ldrel
);
437 if (ldrel
.l_symndx
>= 3)
438 relbuf
->sym_ptr_ptr
= syms
+ (ldrel
.l_symndx
- 3);
444 switch (ldrel
.l_symndx
)
460 sec
= bfd_get_section_by_name (abfd
, name
);
463 bfd_set_error (bfd_error_bad_value
);
467 relbuf
->sym_ptr_ptr
= sec
->symbol_ptr_ptr
;
470 relbuf
->address
= ldrel
.l_vaddr
;
473 /* Most dynamic relocs have the same type. FIXME: This is only
474 correct if ldrel.l_rtype == 0. In other cases, we should use
475 a different howto. */
476 relbuf
->howto
= bfd_xcoff_dynamic_reloc_howto(abfd
);
478 /* FIXME: We have no way to record the l_rsecnm field. */
485 return ldhdr
.l_nreloc
;
488 /* Hash functions for xcoff_link_hash_table's archive_info. */
491 xcoff_archive_info_hash (const void *data
)
493 const struct xcoff_archive_info
*info
;
495 info
= (const struct xcoff_archive_info
*) data
;
496 return htab_hash_pointer (info
->archive
);
500 xcoff_archive_info_eq (const void *data1
, const void *data2
)
502 const struct xcoff_archive_info
*info1
;
503 const struct xcoff_archive_info
*info2
;
505 info1
= (const struct xcoff_archive_info
*) data1
;
506 info2
= (const struct xcoff_archive_info
*) data2
;
507 return info1
->archive
== info2
->archive
;
510 /* Return information about archive ARCHIVE. Return NULL on error. */
512 static struct xcoff_archive_info
*
513 xcoff_get_archive_info (struct bfd_link_info
*info
, bfd
*archive
)
515 struct xcoff_link_hash_table
*htab
;
516 struct xcoff_archive_info
*entryp
, entry
;
519 htab
= xcoff_hash_table (info
);
520 entry
.archive
= archive
;
521 slot
= htab_find_slot (htab
->archive_info
, &entry
, INSERT
);
528 entryp
= bfd_zalloc (archive
, sizeof (entry
));
532 entryp
->archive
= archive
;
538 /* Routine to create an entry in an XCOFF link hash table. */
540 static struct bfd_hash_entry
*
541 xcoff_link_hash_newfunc (struct bfd_hash_entry
*entry
,
542 struct bfd_hash_table
*table
,
545 struct xcoff_link_hash_entry
*ret
= (struct xcoff_link_hash_entry
*) entry
;
547 /* Allocate the structure if it has not already been allocated by a
550 ret
= bfd_hash_allocate (table
, sizeof (* ret
));
554 /* Call the allocation method of the superclass. */
555 ret
= ((struct xcoff_link_hash_entry
*)
556 _bfd_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
560 /* Set local fields. */
562 ret
->toc_section
= NULL
;
563 ret
->u
.toc_indx
= -1;
564 ret
->descriptor
= NULL
;
568 ret
->smclas
= XMC_UA
;
571 return (struct bfd_hash_entry
*) ret
;
574 /* Destroy an XCOFF link hash table. */
577 _bfd_xcoff_bfd_link_hash_table_free (bfd
*obfd
)
579 struct xcoff_link_hash_table
*ret
;
581 ret
= (struct xcoff_link_hash_table
*) obfd
->link
.hash
;
582 if (ret
->archive_info
)
583 htab_delete (ret
->archive_info
);
584 if (ret
->debug_strtab
)
585 _bfd_stringtab_free (ret
->debug_strtab
);
586 _bfd_generic_link_hash_table_free (obfd
);
589 /* Create an XCOFF link hash table. */
591 struct bfd_link_hash_table
*
592 _bfd_xcoff_bfd_link_hash_table_create (bfd
*abfd
)
594 struct xcoff_link_hash_table
*ret
;
595 bfd_size_type amt
= sizeof (* ret
);
597 ret
= bfd_zmalloc (amt
);
600 if (!_bfd_link_hash_table_init (&ret
->root
, abfd
, xcoff_link_hash_newfunc
,
601 sizeof (struct xcoff_link_hash_entry
)))
607 ret
->debug_strtab
= _bfd_xcoff_stringtab_init ();
608 ret
->archive_info
= htab_create (37, xcoff_archive_info_hash
,
609 xcoff_archive_info_eq
, NULL
);
610 if (!ret
->debug_strtab
|| !ret
->archive_info
)
612 _bfd_xcoff_bfd_link_hash_table_free (abfd
);
615 ret
->root
.hash_table_free
= _bfd_xcoff_bfd_link_hash_table_free
;
617 /* The linker will always generate a full a.out header. We need to
618 record that fact now, before the sizeof_headers routine could be
620 xcoff_data (abfd
)->full_aouthdr
= TRUE
;
625 /* Read internal relocs for an XCOFF csect. This is a wrapper around
626 _bfd_coff_read_internal_relocs which tries to take advantage of any
627 relocs which may have been cached for the enclosing section. */
629 static struct internal_reloc
*
630 xcoff_read_internal_relocs (bfd
*abfd
,
633 bfd_byte
*external_relocs
,
634 bfd_boolean require_internal
,
635 struct internal_reloc
*internal_relocs
)
637 if (coff_section_data (abfd
, sec
) != NULL
638 && coff_section_data (abfd
, sec
)->relocs
== NULL
639 && xcoff_section_data (abfd
, sec
) != NULL
)
643 enclosing
= xcoff_section_data (abfd
, sec
)->enclosing
;
645 if (enclosing
!= NULL
646 && (coff_section_data (abfd
, enclosing
) == NULL
647 || coff_section_data (abfd
, enclosing
)->relocs
== NULL
)
649 && enclosing
->reloc_count
> 0)
651 if (_bfd_coff_read_internal_relocs (abfd
, enclosing
, TRUE
,
652 external_relocs
, FALSE
, NULL
)
657 if (enclosing
!= NULL
658 && coff_section_data (abfd
, enclosing
) != NULL
659 && coff_section_data (abfd
, enclosing
)->relocs
!= NULL
)
663 off
= ((sec
->rel_filepos
- enclosing
->rel_filepos
)
664 / bfd_coff_relsz (abfd
));
666 if (! require_internal
)
667 return coff_section_data (abfd
, enclosing
)->relocs
+ off
;
668 memcpy (internal_relocs
,
669 coff_section_data (abfd
, enclosing
)->relocs
+ off
,
670 sec
->reloc_count
* sizeof (struct internal_reloc
));
671 return internal_relocs
;
675 return _bfd_coff_read_internal_relocs (abfd
, sec
, cache
, external_relocs
,
676 require_internal
, internal_relocs
);
679 /* Split FILENAME into an import path and an import filename,
680 storing them in *IMPPATH and *IMPFILE respectively. */
683 bfd_xcoff_split_import_path (bfd
*abfd
, const char *filename
,
684 const char **imppath
, const char **impfile
)
690 base
= lbasename (filename
);
691 length
= base
- filename
;
693 /* The filename has no directory component, so use an empty path. */
695 else if (length
== 1)
696 /* The filename is in the root directory. */
700 /* Extract the (non-empty) directory part. Note that we don't
701 need to strip duplicate directory separators from any part
702 of the string; the native linker doesn't do that either. */
703 path
= bfd_alloc (abfd
, length
);
706 memcpy (path
, filename
, length
- 1);
707 path
[length
- 1] = 0;
714 /* Set ARCHIVE's import path as though its filename had been given
718 bfd_xcoff_set_archive_import_path (struct bfd_link_info
*info
,
719 bfd
*archive
, const char *filename
)
721 struct xcoff_archive_info
*archive_info
;
723 archive_info
= xcoff_get_archive_info (info
, archive
);
724 return (archive_info
!= NULL
725 && bfd_xcoff_split_import_path (archive
, filename
,
726 &archive_info
->imppath
,
727 &archive_info
->impfile
));
730 /* H is an imported symbol. Set the import module's path, file and member
731 to IMPATH, IMPFILE and IMPMEMBER respectively. All three are null if
732 no specific import module is specified. */
735 xcoff_set_import_path (struct bfd_link_info
*info
,
736 struct xcoff_link_hash_entry
*h
,
737 const char *imppath
, const char *impfile
,
738 const char *impmember
)
741 struct xcoff_import_file
**pp
;
743 /* We overload the ldindx field to hold the l_ifile value for this
745 BFD_ASSERT (h
->ldsym
== NULL
);
746 BFD_ASSERT ((h
->flags
& XCOFF_BUILT_LDSYM
) == 0);
751 /* We start c at 1 because the first entry in the import list is
752 reserved for the library search path. */
753 for (pp
= &xcoff_hash_table (info
)->imports
, c
= 1;
755 pp
= &(*pp
)->next
, ++c
)
757 if (filename_cmp ((*pp
)->path
, imppath
) == 0
758 && filename_cmp ((*pp
)->file
, impfile
) == 0
759 && filename_cmp ((*pp
)->member
, impmember
) == 0)
765 struct xcoff_import_file
*n
;
766 bfd_size_type amt
= sizeof (* n
);
768 n
= bfd_alloc (info
->output_bfd
, amt
);
774 n
->member
= impmember
;
782 /* H is the bfd symbol associated with exported .loader symbol LDSYM.
783 Return true if LDSYM defines H. */
786 xcoff_dynamic_definition_p (struct xcoff_link_hash_entry
*h
,
787 struct internal_ldsym
*ldsym
)
789 /* If we didn't know about H before processing LDSYM, LDSYM
790 definitely defines H. */
791 if (h
->root
.type
== bfd_link_hash_new
)
794 /* If H is currently a weak dynamic symbol, and if LDSYM is a strong
795 dynamic symbol, LDSYM trumps the current definition of H. */
796 if ((ldsym
->l_smtype
& L_WEAK
) == 0
797 && (h
->flags
& XCOFF_DEF_DYNAMIC
) != 0
798 && (h
->flags
& XCOFF_DEF_REGULAR
) == 0
799 && (h
->root
.type
== bfd_link_hash_defweak
800 || h
->root
.type
== bfd_link_hash_undefweak
))
803 /* If H is currently undefined, LDSYM defines it. */
804 if ((h
->flags
& XCOFF_DEF_DYNAMIC
) == 0
805 && (h
->root
.type
== bfd_link_hash_undefined
806 || h
->root
.type
== bfd_link_hash_undefweak
))
812 /* This function is used to add symbols from a dynamic object to the
813 global symbol table. */
816 xcoff_link_add_dynamic_symbols (bfd
*abfd
, struct bfd_link_info
*info
)
820 struct internal_ldhdr ldhdr
;
822 bfd_byte
*elsym
, *elsymend
;
823 struct xcoff_import_file
*n
;
825 struct xcoff_import_file
**pp
;
827 /* We can only handle a dynamic object if we are generating an XCOFF
829 if (info
->output_bfd
->xvec
!= abfd
->xvec
)
831 (*_bfd_error_handler
)
832 (_("%s: XCOFF shared object when not producing XCOFF output"),
833 bfd_get_filename (abfd
));
834 bfd_set_error (bfd_error_invalid_operation
);
838 /* The symbols we use from a dynamic object are not the symbols in
839 the normal symbol table, but, rather, the symbols in the export
840 table. If there is a global symbol in a dynamic object which is
841 not in the export table, the loader will not be able to find it,
842 so we don't want to find it either. Also, on AIX 4.1.3, shr.o in
843 libc.a has symbols in the export table which are not in the
846 /* Read in the .loader section. FIXME: We should really use the
847 o_snloader field in the a.out header, rather than grabbing the
849 lsec
= bfd_get_section_by_name (abfd
, ".loader");
852 (*_bfd_error_handler
)
853 (_("%s: dynamic object with no .loader section"),
854 bfd_get_filename (abfd
));
855 bfd_set_error (bfd_error_no_symbols
);
859 if (! xcoff_get_section_contents (abfd
, lsec
))
861 contents
= coff_section_data (abfd
, lsec
)->contents
;
863 /* Remove the sections from this object, so that they do not get
864 included in the link. */
865 bfd_section_list_clear (abfd
);
867 bfd_xcoff_swap_ldhdr_in (abfd
, contents
, &ldhdr
);
869 strings
= (char *) contents
+ ldhdr
.l_stoff
;
871 elsym
= contents
+ bfd_xcoff_loader_symbol_offset(abfd
, &ldhdr
);
873 elsymend
= elsym
+ ldhdr
.l_nsyms
* bfd_xcoff_ldsymsz(abfd
);
875 for (; elsym
< elsymend
; elsym
+= bfd_xcoff_ldsymsz(abfd
))
877 struct internal_ldsym ldsym
;
878 char nambuf
[SYMNMLEN
+ 1];
880 struct xcoff_link_hash_entry
*h
;
882 bfd_xcoff_swap_ldsym_in (abfd
, elsym
, &ldsym
);
884 /* We are only interested in exported symbols. */
885 if ((ldsym
.l_smtype
& L_EXPORT
) == 0)
888 if (ldsym
._l
._l_l
._l_zeroes
== 0)
889 name
= strings
+ ldsym
._l
._l_l
._l_offset
;
892 memcpy (nambuf
, ldsym
._l
._l_name
, SYMNMLEN
);
893 nambuf
[SYMNMLEN
] = '\0';
897 /* Normally we could not call xcoff_link_hash_lookup in an add
898 symbols routine, since we might not be using an XCOFF hash
899 table. However, we verified above that we are using an XCOFF
902 h
= xcoff_link_hash_lookup (xcoff_hash_table (info
), name
, TRUE
,
907 if (!xcoff_dynamic_definition_p (h
, &ldsym
))
910 h
->flags
|= XCOFF_DEF_DYNAMIC
;
911 h
->smclas
= ldsym
.l_smclas
;
912 if (h
->smclas
== XMC_XO
)
914 /* This symbol has an absolute value. */
915 if ((ldsym
.l_smtype
& L_WEAK
) != 0)
916 h
->root
.type
= bfd_link_hash_defweak
;
918 h
->root
.type
= bfd_link_hash_defined
;
919 h
->root
.u
.def
.section
= bfd_abs_section_ptr
;
920 h
->root
.u
.def
.value
= ldsym
.l_value
;
924 /* Otherwise, we don't bother to actually define the symbol,
925 since we don't have a section to put it in anyhow.
926 We assume instead that an undefined XCOFF_DEF_DYNAMIC symbol
927 should be imported from the symbol's undef.abfd. */
928 if ((ldsym
.l_smtype
& L_WEAK
) != 0)
929 h
->root
.type
= bfd_link_hash_undefweak
;
931 h
->root
.type
= bfd_link_hash_undefined
;
932 h
->root
.u
.undef
.abfd
= abfd
;
935 /* If this symbol defines a function descriptor, then it
936 implicitly defines the function code as well. */
937 if (h
->smclas
== XMC_DS
938 || (h
->smclas
== XMC_XO
&& name
[0] != '.'))
939 h
->flags
|= XCOFF_DESCRIPTOR
;
940 if ((h
->flags
& XCOFF_DESCRIPTOR
) != 0)
942 struct xcoff_link_hash_entry
*hds
;
949 dsnm
= bfd_malloc ((bfd_size_type
) strlen (name
) + 2);
953 strcpy (dsnm
+ 1, name
);
954 hds
= xcoff_link_hash_lookup (xcoff_hash_table (info
), dsnm
,
964 if (xcoff_dynamic_definition_p (hds
, &ldsym
))
966 hds
->root
.type
= h
->root
.type
;
967 hds
->flags
|= XCOFF_DEF_DYNAMIC
;
968 if (h
->smclas
== XMC_XO
)
970 /* An absolute symbol appears to actually define code, not a
971 function descriptor. This is how some math functions are
972 implemented on AIX 4.1. */
973 hds
->smclas
= XMC_XO
;
974 hds
->root
.u
.def
.section
= bfd_abs_section_ptr
;
975 hds
->root
.u
.def
.value
= ldsym
.l_value
;
979 hds
->smclas
= XMC_PR
;
980 hds
->root
.u
.undef
.abfd
= abfd
;
981 /* We do not want to add this to the undefined
988 if (contents
!= NULL
&& ! coff_section_data (abfd
, lsec
)->keep_contents
)
990 free (coff_section_data (abfd
, lsec
)->contents
);
991 coff_section_data (abfd
, lsec
)->contents
= NULL
;
994 /* Record this file in the import files. */
995 n
= bfd_alloc (abfd
, (bfd_size_type
) sizeof (struct xcoff_import_file
));
1000 if (abfd
->my_archive
== NULL
|| bfd_is_thin_archive (abfd
->my_archive
))
1002 if (!bfd_xcoff_split_import_path (abfd
, abfd
->filename
,
1003 &n
->path
, &n
->file
))
1009 struct xcoff_archive_info
*archive_info
;
1011 archive_info
= xcoff_get_archive_info (info
, abfd
->my_archive
);
1012 if (!archive_info
->impfile
)
1014 if (!bfd_xcoff_split_import_path (archive_info
->archive
,
1015 archive_info
->archive
->filename
,
1016 &archive_info
->imppath
,
1017 &archive_info
->impfile
))
1020 n
->path
= archive_info
->imppath
;
1021 n
->file
= archive_info
->impfile
;
1022 n
->member
= bfd_get_filename (abfd
);
1025 /* We start c at 1 because the first import file number is reserved
1027 for (pp
= &xcoff_hash_table (info
)->imports
, c
= 1;
1029 pp
= &(*pp
)->next
, ++c
)
1033 xcoff_data (abfd
)->import_file_id
= c
;
1038 /* xcoff_link_create_extra_sections
1040 Takes care of creating the .loader, .gl, .ds, .debug and sections. */
1043 xcoff_link_create_extra_sections (bfd
* abfd
, struct bfd_link_info
*info
)
1045 bfd_boolean return_value
= FALSE
;
1047 if (info
->output_bfd
->xvec
== abfd
->xvec
)
1049 /* We need to build a .loader section, so we do it here. This
1050 won't work if we're producing an XCOFF output file with no
1051 XCOFF input files. FIXME. */
1053 if (!bfd_link_relocatable (info
)
1054 && xcoff_hash_table (info
)->loader_section
== NULL
)
1057 flagword flags
= SEC_HAS_CONTENTS
| SEC_IN_MEMORY
;
1059 lsec
= bfd_make_section_anyway_with_flags (abfd
, ".loader", flags
);
1063 xcoff_hash_table (info
)->loader_section
= lsec
;
1066 /* Likewise for the linkage section. */
1067 if (xcoff_hash_table (info
)->linkage_section
== NULL
)
1070 flagword flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
1073 lsec
= bfd_make_section_anyway_with_flags (abfd
, ".gl", flags
);
1077 xcoff_hash_table (info
)->linkage_section
= lsec
;
1078 lsec
->alignment_power
= 2;
1081 /* Likewise for the TOC section. */
1082 if (xcoff_hash_table (info
)->toc_section
== NULL
)
1085 flagword flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
1088 tsec
= bfd_make_section_anyway_with_flags (abfd
, ".tc", flags
);
1092 xcoff_hash_table (info
)->toc_section
= tsec
;
1093 tsec
->alignment_power
= 2;
1096 /* Likewise for the descriptor section. */
1097 if (xcoff_hash_table (info
)->descriptor_section
== NULL
)
1100 flagword flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
1103 dsec
= bfd_make_section_anyway_with_flags (abfd
, ".ds", flags
);
1107 xcoff_hash_table (info
)->descriptor_section
= dsec
;
1108 dsec
->alignment_power
= 2;
1111 /* Likewise for the .debug section. */
1112 if (xcoff_hash_table (info
)->debug_section
== NULL
1113 && info
->strip
!= strip_all
)
1116 flagword flags
= SEC_HAS_CONTENTS
| SEC_IN_MEMORY
;
1118 dsec
= bfd_make_section_anyway_with_flags (abfd
, ".debug", flags
);
1122 xcoff_hash_table (info
)->debug_section
= dsec
;
1126 return_value
= TRUE
;
1130 return return_value
;
1133 /* Returns the index of reloc in RELOCS with the least address greater
1134 than or equal to ADDRESS. The relocs are sorted by address. */
1136 static bfd_size_type
1137 xcoff_find_reloc (struct internal_reloc
*relocs
,
1138 bfd_size_type count
,
1141 bfd_size_type min
, max
, this;
1145 if (count
== 1 && relocs
[0].r_vaddr
< address
)
1154 /* Do a binary search over (min,max]. */
1155 while (min
+ 1 < max
)
1159 this = (max
+ min
) / 2;
1160 raddr
= relocs
[this].r_vaddr
;
1161 if (raddr
> address
)
1163 else if (raddr
< address
)
1172 if (relocs
[min
].r_vaddr
< address
)
1176 && relocs
[min
- 1].r_vaddr
== address
)
1182 /* Add all the symbols from an object file to the hash table.
1184 XCOFF is a weird format. A normal XCOFF .o files will have three
1185 COFF sections--.text, .data, and .bss--but each COFF section will
1186 contain many csects. These csects are described in the symbol
1187 table. From the linker's point of view, each csect must be
1188 considered a section in its own right. For example, a TOC entry is
1189 handled as a small XMC_TC csect. The linker must be able to merge
1190 different TOC entries together, which means that it must be able to
1191 extract the XMC_TC csects from the .data section of the input .o
1194 From the point of view of our linker, this is, of course, a hideous
1195 nightmare. We cope by actually creating sections for each csect,
1196 and discarding the original sections. We then have to handle the
1197 relocation entries carefully, since the only way to tell which
1198 csect they belong to is to examine the address. */
1201 xcoff_link_add_symbols (bfd
*abfd
, struct bfd_link_info
*info
)
1203 unsigned int n_tmask
;
1204 unsigned int n_btshft
;
1205 bfd_boolean default_copy
;
1206 bfd_size_type symcount
;
1207 struct xcoff_link_hash_entry
**sym_hash
;
1208 asection
**csect_cache
;
1209 unsigned int *lineno_counts
;
1210 bfd_size_type linesz
;
1212 asection
*last_real
;
1213 bfd_boolean keep_syms
;
1215 unsigned int csect_index
;
1216 asection
*first_csect
;
1217 bfd_size_type symesz
;
1220 struct reloc_info_struct
1222 struct internal_reloc
*relocs
;
1225 } *reloc_info
= NULL
;
1228 keep_syms
= obj_coff_keep_syms (abfd
);
1230 if ((abfd
->flags
& DYNAMIC
) != 0
1231 && ! info
->static_link
)
1233 if (! xcoff_link_add_dynamic_symbols (abfd
, info
))
1237 /* Create the loader, toc, gl, ds and debug sections, if needed. */
1238 if (! xcoff_link_create_extra_sections (abfd
, info
))
1241 if ((abfd
->flags
& DYNAMIC
) != 0
1242 && ! info
->static_link
)
1245 n_tmask
= coff_data (abfd
)->local_n_tmask
;
1246 n_btshft
= coff_data (abfd
)->local_n_btshft
;
1248 /* Define macros so that ISFCN, et. al., macros work correctly. */
1249 #define N_TMASK n_tmask
1250 #define N_BTSHFT n_btshft
1252 if (info
->keep_memory
)
1253 default_copy
= FALSE
;
1255 default_copy
= TRUE
;
1257 symcount
= obj_raw_syment_count (abfd
);
1259 /* We keep a list of the linker hash table entries that correspond
1260 to each external symbol. */
1261 amt
= symcount
* sizeof (struct xcoff_link_hash_entry
*);
1262 sym_hash
= bfd_zalloc (abfd
, amt
);
1263 if (sym_hash
== NULL
&& symcount
!= 0)
1265 coff_data (abfd
)->sym_hashes
= (struct coff_link_hash_entry
**) sym_hash
;
1267 /* Because of the weird stuff we are doing with XCOFF csects, we can
1268 not easily determine which section a symbol is in, so we store
1269 the information in the tdata for the input file. */
1270 amt
= symcount
* sizeof (asection
*);
1271 csect_cache
= bfd_zalloc (abfd
, amt
);
1272 if (csect_cache
== NULL
&& symcount
!= 0)
1274 xcoff_data (abfd
)->csects
= csect_cache
;
1276 /* We garbage-collect line-number information on a symbol-by-symbol
1277 basis, so we need to have quick access to the number of entries
1279 amt
= symcount
* sizeof (unsigned int);
1280 lineno_counts
= bfd_zalloc (abfd
, amt
);
1281 if (lineno_counts
== NULL
&& symcount
!= 0)
1283 xcoff_data (abfd
)->lineno_counts
= lineno_counts
;
1285 /* While splitting sections into csects, we need to assign the
1286 relocs correctly. The relocs and the csects must both be in
1287 order by VMA within a given section, so we handle this by
1288 scanning along the relocs as we process the csects. We index
1289 into reloc_info using the section target_index. */
1290 amt
= abfd
->section_count
+ 1;
1291 amt
*= sizeof (struct reloc_info_struct
);
1292 reloc_info
= bfd_zmalloc (amt
);
1293 if (reloc_info
== NULL
)
1296 /* Read in the relocs and line numbers for each section. */
1297 linesz
= bfd_coff_linesz (abfd
);
1299 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
1303 if ((o
->flags
& SEC_RELOC
) != 0)
1305 reloc_info
[o
->target_index
].relocs
=
1306 xcoff_read_internal_relocs (abfd
, o
, TRUE
, NULL
, FALSE
, NULL
);
1307 amt
= o
->reloc_count
;
1308 amt
*= sizeof (asection
*);
1309 reloc_info
[o
->target_index
].csects
= bfd_zmalloc (amt
);
1310 if (reloc_info
[o
->target_index
].csects
== NULL
)
1314 if ((info
->strip
== strip_none
|| info
->strip
== strip_some
)
1315 && o
->lineno_count
> 0)
1319 amt
= linesz
* o
->lineno_count
;
1320 linenos
= bfd_malloc (amt
);
1321 if (linenos
== NULL
)
1323 reloc_info
[o
->target_index
].linenos
= linenos
;
1324 if (bfd_seek (abfd
, o
->line_filepos
, SEEK_SET
) != 0
1325 || bfd_bread (linenos
, amt
, abfd
) != amt
)
1330 /* Don't let the linker relocation routines discard the symbols. */
1331 obj_coff_keep_syms (abfd
) = TRUE
;
1337 symesz
= bfd_coff_symesz (abfd
);
1338 BFD_ASSERT (symesz
== bfd_coff_auxesz (abfd
));
1339 esym
= (bfd_byte
*) obj_coff_external_syms (abfd
);
1340 esym_end
= esym
+ symcount
* symesz
;
1342 while (esym
< esym_end
)
1344 struct internal_syment sym
;
1345 union internal_auxent aux
;
1347 char buf
[SYMNMLEN
+ 1];
1351 struct xcoff_link_hash_entry
*set_toc
;
1353 bfd_coff_swap_sym_in (abfd
, (void *) esym
, (void *) &sym
);
1355 /* In this pass we are only interested in symbols with csect
1357 if (!CSECT_SYM_P (sym
.n_sclass
))
1360 Normally csect is a .pr, .rw etc. created in the loop
1361 If C_FILE or first time, handle special
1363 Advance esym, sym_hash, csect_hash ptrs. */
1364 if (sym
.n_sclass
== C_FILE
|| sym
.n_sclass
== C_DWARF
)
1367 *csect_cache
= csect
;
1368 else if (first_csect
== NULL
1369 || sym
.n_sclass
== C_FILE
|| sym
.n_sclass
== C_DWARF
)
1370 *csect_cache
= coff_section_from_bfd_index (abfd
, sym
.n_scnum
);
1372 *csect_cache
= NULL
;
1373 esym
+= (sym
.n_numaux
+ 1) * symesz
;
1374 sym_hash
+= sym
.n_numaux
+ 1;
1375 csect_cache
+= sym
.n_numaux
+ 1;
1376 lineno_counts
+= sym
.n_numaux
+ 1;
1381 name
= _bfd_coff_internal_syment_name (abfd
, &sym
, buf
);
1386 /* If this symbol has line number information attached to it,
1387 and we're not stripping it, count the number of entries and
1388 add them to the count for this csect. In the final link pass
1389 we are going to attach line number information by symbol,
1390 rather than by section, in order to more easily handle
1391 garbage collection. */
1392 if ((info
->strip
== strip_none
|| info
->strip
== strip_some
)
1395 && ISFCN (sym
.n_type
))
1397 union internal_auxent auxlin
;
1399 bfd_coff_swap_aux_in (abfd
, (void *) (esym
+ symesz
),
1400 sym
.n_type
, sym
.n_sclass
,
1401 0, sym
.n_numaux
, (void *) &auxlin
);
1403 if (auxlin
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
!= 0)
1405 asection
*enclosing
;
1406 bfd_signed_vma linoff
;
1408 enclosing
= xcoff_section_data (abfd
, csect
)->enclosing
;
1409 if (enclosing
== NULL
)
1411 (*_bfd_error_handler
)
1412 (_("%B: `%s' has line numbers but no enclosing section"),
1414 bfd_set_error (bfd_error_bad_value
);
1417 linoff
= (auxlin
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
1418 - enclosing
->line_filepos
);
1419 /* Explicit cast to bfd_signed_vma for compiler. */
1420 if (linoff
< (bfd_signed_vma
) (enclosing
->lineno_count
* linesz
))
1422 struct internal_lineno lin
;
1423 bfd_byte
*linpstart
;
1425 linpstart
= (reloc_info
[enclosing
->target_index
].linenos
1427 bfd_coff_swap_lineno_in (abfd
, (void *) linpstart
, (void *) &lin
);
1429 && ((bfd_size_type
) lin
.l_addr
.l_symndx
1431 - (bfd_byte
*) obj_coff_external_syms (abfd
))
1434 bfd_byte
*linpend
, *linp
;
1436 linpend
= (reloc_info
[enclosing
->target_index
].linenos
1437 + enclosing
->lineno_count
* linesz
);
1438 for (linp
= linpstart
+ linesz
;
1442 bfd_coff_swap_lineno_in (abfd
, (void *) linp
,
1444 if (lin
.l_lnno
== 0)
1447 *lineno_counts
= (linp
- linpstart
) / linesz
;
1448 /* The setting of line_filepos will only be
1449 useful if all the line number entries for a
1450 csect are contiguous; this only matters for
1452 if (csect
->line_filepos
== 0)
1453 csect
->line_filepos
=
1454 auxlin
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
;
1460 /* Pick up the csect auxiliary information. */
1461 if (sym
.n_numaux
== 0)
1463 (*_bfd_error_handler
)
1464 (_("%B: class %d symbol `%s' has no aux entries"),
1465 abfd
, sym
.n_sclass
, name
);
1466 bfd_set_error (bfd_error_bad_value
);
1470 bfd_coff_swap_aux_in (abfd
,
1471 (void *) (esym
+ symesz
* sym
.n_numaux
),
1472 sym
.n_type
, sym
.n_sclass
,
1473 sym
.n_numaux
- 1, sym
.n_numaux
,
1476 smtyp
= SMTYP_SMTYP (aux
.x_csect
.x_smtyp
);
1485 (*_bfd_error_handler
)
1486 (_("%B: symbol `%s' has unrecognized csect type %d"),
1488 bfd_set_error (bfd_error_bad_value
);
1492 /* This is an external reference. */
1493 if (sym
.n_sclass
== C_HIDEXT
1494 || sym
.n_scnum
!= N_UNDEF
1495 || aux
.x_csect
.x_scnlen
.l
!= 0)
1497 (*_bfd_error_handler
)
1498 (_("%B: bad XTY_ER symbol `%s': class %d scnum %d scnlen %d"),
1499 abfd
, name
, sym
.n_sclass
, sym
.n_scnum
,
1500 aux
.x_csect
.x_scnlen
.l
);
1501 bfd_set_error (bfd_error_bad_value
);
1505 /* An XMC_XO external reference is actually a reference to
1506 an absolute location. */
1507 if (aux
.x_csect
.x_smclas
!= XMC_XO
)
1508 section
= bfd_und_section_ptr
;
1511 section
= bfd_abs_section_ptr
;
1512 value
= sym
.n_value
;
1518 csect_index
= -(unsigned) 1;
1520 /* When we see a TOC anchor, we record the TOC value. */
1521 if (aux
.x_csect
.x_smclas
== XMC_TC0
)
1523 if (sym
.n_sclass
!= C_HIDEXT
1524 || aux
.x_csect
.x_scnlen
.l
!= 0)
1526 (*_bfd_error_handler
)
1527 (_("%B: XMC_TC0 symbol `%s' is class %d scnlen %d"),
1528 abfd
, name
, sym
.n_sclass
, aux
.x_csect
.x_scnlen
.l
);
1529 bfd_set_error (bfd_error_bad_value
);
1532 xcoff_data (abfd
)->toc
= sym
.n_value
;
1535 /* We must merge TOC entries for the same symbol. We can
1536 merge two TOC entries if they are both C_HIDEXT, they
1537 both have the same name, they are both 4 or 8 bytes long, and
1538 they both have a relocation table entry for an external
1539 symbol with the same name. Unfortunately, this means
1540 that we must look through the relocations. Ick.
1542 Logic for 32 bit vs 64 bit.
1543 32 bit has a csect length of 4 for TOC
1544 64 bit has a csect length of 8 for TOC
1546 The conditions to get past the if-check are not that bad.
1547 They are what is used to create the TOC csects in the first
1549 if (aux
.x_csect
.x_smclas
== XMC_TC
1550 && sym
.n_sclass
== C_HIDEXT
1551 && info
->output_bfd
->xvec
== abfd
->xvec
1552 && ((bfd_xcoff_is_xcoff32 (abfd
)
1553 && aux
.x_csect
.x_scnlen
.l
== 4)
1554 || (bfd_xcoff_is_xcoff64 (abfd
)
1555 && aux
.x_csect
.x_scnlen
.l
== 8)))
1557 asection
*enclosing
;
1558 struct internal_reloc
*relocs
;
1559 bfd_size_type relindx
;
1560 struct internal_reloc
*rel
;
1562 enclosing
= coff_section_from_bfd_index (abfd
, sym
.n_scnum
);
1563 if (enclosing
== NULL
)
1566 relocs
= reloc_info
[enclosing
->target_index
].relocs
;
1567 amt
= enclosing
->reloc_count
;
1568 relindx
= xcoff_find_reloc (relocs
, amt
, sym
.n_value
);
1569 rel
= relocs
+ relindx
;
1571 /* 32 bit R_POS r_size is 31
1572 64 bit R_POS r_size is 63 */
1573 if (relindx
< enclosing
->reloc_count
1574 && rel
->r_vaddr
== (bfd_vma
) sym
.n_value
1575 && rel
->r_type
== R_POS
1576 && ((bfd_xcoff_is_xcoff32 (abfd
)
1577 && rel
->r_size
== 31)
1578 || (bfd_xcoff_is_xcoff64 (abfd
)
1579 && rel
->r_size
== 63)))
1583 struct internal_syment relsym
;
1585 erelsym
= ((bfd_byte
*) obj_coff_external_syms (abfd
)
1586 + rel
->r_symndx
* symesz
);
1587 bfd_coff_swap_sym_in (abfd
, (void *) erelsym
, (void *) &relsym
);
1588 if (EXTERN_SYM_P (relsym
.n_sclass
))
1590 const char *relname
;
1591 char relbuf
[SYMNMLEN
+ 1];
1593 struct xcoff_link_hash_entry
*h
;
1595 /* At this point we know that the TOC entry is
1596 for an externally visible symbol. */
1597 relname
= _bfd_coff_internal_syment_name (abfd
, &relsym
,
1599 if (relname
== NULL
)
1602 /* We only merge TOC entries if the TC name is
1603 the same as the symbol name. This handles
1604 the normal case, but not common cases like
1605 SYM.P4 which gcc generates to store SYM + 4
1606 in the TOC. FIXME. */
1607 if (strcmp (name
, relname
) == 0)
1609 copy
= (! info
->keep_memory
1610 || relsym
._n
._n_n
._n_zeroes
!= 0
1611 || relsym
._n
._n_n
._n_offset
== 0);
1612 h
= xcoff_link_hash_lookup (xcoff_hash_table (info
),
1613 relname
, TRUE
, copy
,
1618 /* At this point h->root.type could be
1619 bfd_link_hash_new. That should be OK,
1620 since we know for sure that we will come
1621 across this symbol as we step through the
1624 /* We store h in *sym_hash for the
1625 convenience of the relocate_section
1629 if (h
->toc_section
!= NULL
)
1631 asection
**rel_csects
;
1633 /* We already have a TOC entry for this
1634 symbol, so we can just ignore this
1637 reloc_info
[enclosing
->target_index
].csects
;
1638 rel_csects
[relindx
] = bfd_und_section_ptr
;
1642 /* We are about to create a TOC entry for
1651 asection
*enclosing
;
1653 /* We need to create a new section. We get the name from
1654 the csect storage mapping class, so that the linker can
1655 accumulate similar csects together. */
1657 csect
= bfd_xcoff_create_csect_from_smclas(abfd
, &aux
, name
);
1661 /* The enclosing section is the main section : .data, .text
1662 or .bss that the csect is coming from. */
1663 enclosing
= coff_section_from_bfd_index (abfd
, sym
.n_scnum
);
1664 if (enclosing
== NULL
)
1667 if (! bfd_is_abs_section (enclosing
)
1668 && ((bfd_vma
) sym
.n_value
< enclosing
->vma
1669 || ((bfd_vma
) sym
.n_value
+ aux
.x_csect
.x_scnlen
.l
1670 > enclosing
->vma
+ enclosing
->size
)))
1672 (*_bfd_error_handler
)
1673 (_("%B: csect `%s' not in enclosing section"),
1675 bfd_set_error (bfd_error_bad_value
);
1678 csect
->vma
= sym
.n_value
;
1679 csect
->filepos
= (enclosing
->filepos
1682 csect
->size
= aux
.x_csect
.x_scnlen
.l
;
1683 csect
->flags
|= SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
;
1684 csect
->alignment_power
= SMTYP_ALIGN (aux
.x_csect
.x_smtyp
);
1686 /* Record the enclosing section in the tdata for this new
1688 amt
= sizeof (struct coff_section_tdata
);
1689 csect
->used_by_bfd
= bfd_zalloc (abfd
, amt
);
1690 if (csect
->used_by_bfd
== NULL
)
1692 amt
= sizeof (struct xcoff_section_tdata
);
1693 coff_section_data (abfd
, csect
)->tdata
= bfd_zalloc (abfd
, amt
);
1694 if (coff_section_data (abfd
, csect
)->tdata
== NULL
)
1696 xcoff_section_data (abfd
, csect
)->enclosing
= enclosing
;
1697 xcoff_section_data (abfd
, csect
)->lineno_count
=
1698 enclosing
->lineno_count
;
1700 if (enclosing
->owner
== abfd
)
1702 struct internal_reloc
*relocs
;
1703 bfd_size_type relindx
;
1704 struct internal_reloc
*rel
;
1705 asection
**rel_csect
;
1707 relocs
= reloc_info
[enclosing
->target_index
].relocs
;
1708 amt
= enclosing
->reloc_count
;
1709 relindx
= xcoff_find_reloc (relocs
, amt
, csect
->vma
);
1711 rel
= relocs
+ relindx
;
1712 rel_csect
= (reloc_info
[enclosing
->target_index
].csects
1715 csect
->rel_filepos
= (enclosing
->rel_filepos
1716 + relindx
* bfd_coff_relsz (abfd
));
1717 while (relindx
< enclosing
->reloc_count
1718 && *rel_csect
== NULL
1719 && rel
->r_vaddr
< csect
->vma
+ csect
->size
)
1723 csect
->flags
|= SEC_RELOC
;
1724 ++csect
->reloc_count
;
1731 /* There are a number of other fields and section flags
1732 which we do not bother to set. */
1734 csect_index
= ((esym
1735 - (bfd_byte
*) obj_coff_external_syms (abfd
))
1738 xcoff_section_data (abfd
, csect
)->first_symndx
= csect_index
;
1740 if (first_csect
== NULL
)
1741 first_csect
= csect
;
1743 /* If this symbol is external, we treat it as starting at the
1744 beginning of the newly created section. */
1745 if (EXTERN_SYM_P (sym
.n_sclass
))
1751 /* If this is a TOC section for a symbol, record it. */
1752 if (set_toc
!= NULL
)
1753 set_toc
->toc_section
= csect
;
1758 /* This is a label definition. The x_scnlen field is the
1759 symbol index of the csect. Usually the XTY_LD symbol will
1760 follow its appropriate XTY_SD symbol. The .set pseudo op can
1761 cause the XTY_LD to not follow the XTY_SD symbol. */
1766 if (aux
.x_csect
.x_scnlen
.l
< 0
1767 || (aux
.x_csect
.x_scnlen
.l
1768 >= esym
- (bfd_byte
*) obj_coff_external_syms (abfd
)))
1772 section
= xcoff_data (abfd
)->csects
[aux
.x_csect
.x_scnlen
.l
];
1774 || (section
->flags
& SEC_HAS_CONTENTS
) == 0)
1779 (*_bfd_error_handler
)
1780 (_("%B: misplaced XTY_LD `%s'"),
1782 bfd_set_error (bfd_error_bad_value
);
1786 value
= sym
.n_value
- csect
->vma
;
1791 /* This is an unitialized csect. We could base the name on
1792 the storage mapping class, but we don't bother except for
1793 an XMC_TD symbol. If this csect is externally visible,
1794 it is a common symbol. We put XMC_TD symbols in sections
1795 named .tocbss, and rely on the linker script to put that
1798 if (aux
.x_csect
.x_smclas
== XMC_TD
)
1800 /* The linker script puts the .td section in the data
1801 section after the .tc section. */
1802 csect
= bfd_make_section_anyway_with_flags (abfd
, ".td",
1806 csect
= bfd_make_section_anyway_with_flags (abfd
, ".bss",
1811 csect
->vma
= sym
.n_value
;
1812 csect
->size
= aux
.x_csect
.x_scnlen
.l
;
1813 csect
->alignment_power
= SMTYP_ALIGN (aux
.x_csect
.x_smtyp
);
1814 /* There are a number of other fields and section flags
1815 which we do not bother to set. */
1817 csect_index
= ((esym
1818 - (bfd_byte
*) obj_coff_external_syms (abfd
))
1821 amt
= sizeof (struct coff_section_tdata
);
1822 csect
->used_by_bfd
= bfd_zalloc (abfd
, amt
);
1823 if (csect
->used_by_bfd
== NULL
)
1825 amt
= sizeof (struct xcoff_section_tdata
);
1826 coff_section_data (abfd
, csect
)->tdata
= bfd_zalloc (abfd
, amt
);
1827 if (coff_section_data (abfd
, csect
)->tdata
== NULL
)
1829 xcoff_section_data (abfd
, csect
)->first_symndx
= csect_index
;
1831 if (first_csect
== NULL
)
1832 first_csect
= csect
;
1834 if (EXTERN_SYM_P (sym
.n_sclass
))
1836 csect
->flags
|= SEC_IS_COMMON
;
1839 value
= aux
.x_csect
.x_scnlen
.l
;
1845 /* Check for magic symbol names. */
1846 if ((smtyp
== XTY_SD
|| smtyp
== XTY_CM
)
1847 && aux
.x_csect
.x_smclas
!= XMC_TC
1848 && aux
.x_csect
.x_smclas
!= XMC_TD
)
1854 if (strcmp (name
, "_text") == 0)
1855 i
= XCOFF_SPECIAL_SECTION_TEXT
;
1856 else if (strcmp (name
, "_etext") == 0)
1857 i
= XCOFF_SPECIAL_SECTION_ETEXT
;
1858 else if (strcmp (name
, "_data") == 0)
1859 i
= XCOFF_SPECIAL_SECTION_DATA
;
1860 else if (strcmp (name
, "_edata") == 0)
1861 i
= XCOFF_SPECIAL_SECTION_EDATA
;
1862 else if (strcmp (name
, "_end") == 0)
1863 i
= XCOFF_SPECIAL_SECTION_END
;
1865 else if (name
[0] == 'e' && strcmp (name
, "end") == 0)
1866 i
= XCOFF_SPECIAL_SECTION_END2
;
1869 xcoff_hash_table (info
)->special_sections
[i
] = csect
;
1872 /* Now we have enough information to add the symbol to the
1873 linker hash table. */
1875 if (EXTERN_SYM_P (sym
.n_sclass
))
1880 BFD_ASSERT (section
!= NULL
);
1882 /* We must copy the name into memory if we got it from the
1883 syment itself, rather than the string table. */
1884 copy
= default_copy
;
1885 if (sym
._n
._n_n
._n_zeroes
!= 0
1886 || sym
._n
._n_n
._n_offset
== 0)
1889 /* Ignore global linkage code when linking statically. */
1890 if (info
->static_link
1891 && (smtyp
== XTY_SD
|| smtyp
== XTY_LD
)
1892 && aux
.x_csect
.x_smclas
== XMC_GL
)
1894 section
= bfd_und_section_ptr
;
1898 /* The AIX linker appears to only detect multiple symbol
1899 definitions when there is a reference to the symbol. If
1900 a symbol is defined multiple times, and the only
1901 references are from the same object file, the AIX linker
1902 appears to permit it. It does not merge the different
1903 definitions, but handles them independently. On the
1904 other hand, if there is a reference, the linker reports
1907 This matters because the AIX <net/net_globals.h> header
1908 file actually defines an initialized array, so we have to
1909 actually permit that to work.
1911 Just to make matters even more confusing, the AIX linker
1912 appears to permit multiple symbol definitions whenever
1913 the second definition is in an archive rather than an
1914 object file. This may be a consequence of the manner in
1915 which it handles archives: I think it may load the entire
1916 archive in as separate csects, and then let garbage
1917 collection discard symbols.
1919 We also have to handle the case of statically linking a
1920 shared object, which will cause symbol redefinitions,
1921 although this is an easier case to detect. */
1922 else if (info
->output_bfd
->xvec
== abfd
->xvec
)
1924 if (! bfd_is_und_section (section
))
1925 *sym_hash
= xcoff_link_hash_lookup (xcoff_hash_table (info
),
1926 name
, TRUE
, copy
, FALSE
);
1928 /* Make a copy of the symbol name to prevent problems with
1930 *sym_hash
= ((struct xcoff_link_hash_entry
*)
1931 bfd_wrapped_link_hash_lookup (abfd
, info
, name
,
1932 TRUE
, TRUE
, FALSE
));
1934 if (*sym_hash
== NULL
)
1936 if (((*sym_hash
)->root
.type
== bfd_link_hash_defined
1937 || (*sym_hash
)->root
.type
== bfd_link_hash_defweak
)
1938 && ! bfd_is_und_section (section
)
1939 && ! bfd_is_com_section (section
))
1941 /* This is a second definition of a defined symbol. */
1942 if (((*sym_hash
)->flags
& XCOFF_DEF_REGULAR
) == 0
1943 && ((*sym_hash
)->flags
& XCOFF_DEF_DYNAMIC
) != 0)
1945 /* The existing symbol is from a shared library.
1947 (*sym_hash
)->root
.type
= bfd_link_hash_undefined
;
1948 (*sym_hash
)->root
.u
.undef
.abfd
=
1949 (*sym_hash
)->root
.u
.def
.section
->owner
;
1951 else if (abfd
->my_archive
!= NULL
)
1953 /* This is a redefinition in an object contained
1954 in an archive. Just ignore it. See the
1956 section
= bfd_und_section_ptr
;
1959 else if (sym
.n_sclass
== C_AIX_WEAKEXT
1960 || (*sym_hash
)->root
.type
== bfd_link_hash_defweak
)
1962 /* At least one of the definitions is weak.
1963 Allow the normal rules to take effect. */
1965 else if ((*sym_hash
)->root
.u
.undef
.next
!= NULL
1966 || info
->hash
->undefs_tail
== &(*sym_hash
)->root
)
1968 /* This symbol has been referenced. In this
1969 case, we just continue and permit the
1970 multiple definition error. See the comment
1971 above about the behaviour of the AIX linker. */
1973 else if ((*sym_hash
)->smclas
== aux
.x_csect
.x_smclas
)
1975 /* The symbols are both csects of the same
1976 class. There is at least a chance that this
1977 is a semi-legitimate redefinition. */
1978 section
= bfd_und_section_ptr
;
1980 (*sym_hash
)->flags
|= XCOFF_MULTIPLY_DEFINED
;
1983 else if (((*sym_hash
)->flags
& XCOFF_MULTIPLY_DEFINED
) != 0
1984 && (*sym_hash
)->root
.type
== bfd_link_hash_defined
1985 && (bfd_is_und_section (section
)
1986 || bfd_is_com_section (section
)))
1988 /* This is a reference to a multiply defined symbol.
1989 Report the error now. See the comment above
1990 about the behaviour of the AIX linker. We could
1991 also do this with warning symbols, but I'm not
1992 sure the XCOFF linker is wholly prepared to
1993 handle them, and that would only be a warning,
1995 (*info
->callbacks
->multiple_definition
) (info
,
1999 /* Try not to give this error too many times. */
2000 (*sym_hash
)->flags
&= ~XCOFF_MULTIPLY_DEFINED
;
2004 /* _bfd_generic_link_add_one_symbol may call the linker to
2005 generate an error message, and the linker may try to read
2006 the symbol table to give a good error. Right now, the
2007 line numbers are in an inconsistent state, since they are
2008 counted both in the real sections and in the new csects.
2009 We need to leave the count in the real sections so that
2010 the linker can report the line number of the error
2011 correctly, so temporarily clobber the link to the csects
2012 so that the linker will not try to read the line numbers
2013 a second time from the csects. */
2014 BFD_ASSERT (last_real
->next
== first_csect
);
2015 last_real
->next
= NULL
;
2016 flags
= (sym
.n_sclass
== C_EXT
? BSF_GLOBAL
: BSF_WEAK
);
2017 if (! (_bfd_generic_link_add_one_symbol
2018 (info
, abfd
, name
, flags
, section
, value
,
2020 (struct bfd_link_hash_entry
**) sym_hash
)))
2022 last_real
->next
= first_csect
;
2024 if (smtyp
== XTY_CM
)
2026 if ((*sym_hash
)->root
.type
!= bfd_link_hash_common
2027 || (*sym_hash
)->root
.u
.c
.p
->section
!= csect
)
2028 /* We don't need the common csect we just created. */
2031 (*sym_hash
)->root
.u
.c
.p
->alignment_power
2032 = csect
->alignment_power
;
2035 if (info
->output_bfd
->xvec
== abfd
->xvec
)
2041 || section
== bfd_und_section_ptr
)
2042 flag
= XCOFF_REF_REGULAR
;
2044 flag
= XCOFF_DEF_REGULAR
;
2045 (*sym_hash
)->flags
|= flag
;
2047 if ((*sym_hash
)->smclas
== XMC_UA
2048 || flag
== XCOFF_DEF_REGULAR
)
2049 (*sym_hash
)->smclas
= aux
.x_csect
.x_smclas
;
2053 if (smtyp
== XTY_ER
)
2054 *csect_cache
= section
;
2057 *csect_cache
= csect
;
2059 xcoff_section_data (abfd
, csect
)->last_symndx
2060 = (esym
- (bfd_byte
*) obj_coff_external_syms (abfd
)) / symesz
;
2063 esym
+= (sym
.n_numaux
+ 1) * symesz
;
2064 sym_hash
+= sym
.n_numaux
+ 1;
2065 csect_cache
+= sym
.n_numaux
+ 1;
2066 lineno_counts
+= sym
.n_numaux
+ 1;
2069 BFD_ASSERT (last_real
== NULL
|| last_real
->next
== first_csect
);
2071 /* Make sure that we have seen all the relocs. */
2072 for (o
= abfd
->sections
; o
!= first_csect
; o
= o
->next
)
2074 /* Debugging sections have no csects. */
2075 if (bfd_get_section_flags (abfd
, o
) & SEC_DEBUGGING
)
2078 /* Reset the section size and the line number count, since the
2079 data is now attached to the csects. Don't reset the size of
2080 the .debug section, since we need to read it below in
2081 bfd_xcoff_size_dynamic_sections. */
2082 if (strcmp (bfd_get_section_name (abfd
, o
), ".debug") != 0)
2084 o
->lineno_count
= 0;
2086 if ((o
->flags
& SEC_RELOC
) != 0)
2089 struct internal_reloc
*rel
;
2090 asection
**rel_csect
;
2092 rel
= reloc_info
[o
->target_index
].relocs
;
2093 rel_csect
= reloc_info
[o
->target_index
].csects
;
2095 for (i
= 0; i
< o
->reloc_count
; i
++, rel
++, rel_csect
++)
2097 if (*rel_csect
== NULL
)
2099 (*_bfd_error_handler
)
2100 (_("%B: reloc %s:%d not in csect"),
2102 bfd_set_error (bfd_error_bad_value
);
2106 /* We identify all function symbols that are the target
2107 of a relocation, so that we can create glue code for
2108 functions imported from dynamic objects. */
2109 if (info
->output_bfd
->xvec
== abfd
->xvec
2110 && *rel_csect
!= bfd_und_section_ptr
2111 && obj_xcoff_sym_hashes (abfd
)[rel
->r_symndx
] != NULL
)
2113 struct xcoff_link_hash_entry
*h
;
2115 h
= obj_xcoff_sym_hashes (abfd
)[rel
->r_symndx
];
2116 /* If the symbol name starts with a period, it is
2117 the code of a function. If the symbol is
2118 currently undefined, then add an undefined symbol
2119 for the function descriptor. This should do no
2120 harm, because any regular object that defines the
2121 function should also define the function
2122 descriptor. It helps, because it means that we
2123 will identify the function descriptor with a
2124 dynamic object if a dynamic object defines it. */
2125 if (h
->root
.root
.string
[0] == '.'
2126 && h
->descriptor
== NULL
)
2128 struct xcoff_link_hash_entry
*hds
;
2129 struct bfd_link_hash_entry
*bh
;
2131 hds
= xcoff_link_hash_lookup (xcoff_hash_table (info
),
2132 h
->root
.root
.string
+ 1,
2136 if (hds
->root
.type
== bfd_link_hash_new
)
2139 if (! (_bfd_generic_link_add_one_symbol
2140 (info
, abfd
, hds
->root
.root
.string
,
2141 (flagword
) 0, bfd_und_section_ptr
,
2142 (bfd_vma
) 0, NULL
, FALSE
,
2145 hds
= (struct xcoff_link_hash_entry
*) bh
;
2147 hds
->flags
|= XCOFF_DESCRIPTOR
;
2148 BFD_ASSERT ((h
->flags
& XCOFF_DESCRIPTOR
) == 0);
2149 hds
->descriptor
= h
;
2150 h
->descriptor
= hds
;
2152 if (h
->root
.root
.string
[0] == '.')
2153 h
->flags
|= XCOFF_CALLED
;
2157 free (reloc_info
[o
->target_index
].csects
);
2158 reloc_info
[o
->target_index
].csects
= NULL
;
2160 /* Reset SEC_RELOC and the reloc_count, since the reloc
2161 information is now attached to the csects. */
2162 o
->flags
&=~ SEC_RELOC
;
2165 /* If we are not keeping memory, free the reloc information. */
2166 if (! info
->keep_memory
2167 && coff_section_data (abfd
, o
) != NULL
2168 && coff_section_data (abfd
, o
)->relocs
!= NULL
2169 && ! coff_section_data (abfd
, o
)->keep_relocs
)
2171 free (coff_section_data (abfd
, o
)->relocs
);
2172 coff_section_data (abfd
, o
)->relocs
= NULL
;
2176 /* Free up the line numbers. FIXME: We could cache these
2177 somewhere for the final link, to avoid reading them again. */
2178 if (reloc_info
[o
->target_index
].linenos
!= NULL
)
2180 free (reloc_info
[o
->target_index
].linenos
);
2181 reloc_info
[o
->target_index
].linenos
= NULL
;
2187 obj_coff_keep_syms (abfd
) = keep_syms
;
2192 if (reloc_info
!= NULL
)
2194 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
2196 if (reloc_info
[o
->target_index
].csects
!= NULL
)
2197 free (reloc_info
[o
->target_index
].csects
);
2198 if (reloc_info
[o
->target_index
].linenos
!= NULL
)
2199 free (reloc_info
[o
->target_index
].linenos
);
2203 obj_coff_keep_syms (abfd
) = keep_syms
;
2210 /* Add symbols from an XCOFF object file. */
2213 xcoff_link_add_object_symbols (bfd
*abfd
, struct bfd_link_info
*info
)
2215 if (! _bfd_coff_get_external_symbols (abfd
))
2217 if (! xcoff_link_add_symbols (abfd
, info
))
2219 if (! info
->keep_memory
)
2221 if (! _bfd_coff_free_symbols (abfd
))
2227 /* Look through the loader symbols to see if this dynamic object
2228 should be included in the link. The native linker uses the loader
2229 symbols, not the normal symbol table, so we do too. */
2232 xcoff_link_check_dynamic_ar_symbols (bfd
*abfd
,
2233 struct bfd_link_info
*info
,
2234 bfd_boolean
*pneeded
,
2239 struct internal_ldhdr ldhdr
;
2240 const char *strings
;
2241 bfd_byte
*elsym
, *elsymend
;
2245 lsec
= bfd_get_section_by_name (abfd
, ".loader");
2247 /* There are no symbols, so don't try to include it. */
2250 if (! xcoff_get_section_contents (abfd
, lsec
))
2252 contents
= coff_section_data (abfd
, lsec
)->contents
;
2254 bfd_xcoff_swap_ldhdr_in (abfd
, contents
, &ldhdr
);
2256 strings
= (char *) contents
+ ldhdr
.l_stoff
;
2258 elsym
= contents
+ bfd_xcoff_loader_symbol_offset (abfd
, &ldhdr
);
2260 elsymend
= elsym
+ ldhdr
.l_nsyms
* bfd_xcoff_ldsymsz (abfd
);
2261 for (; elsym
< elsymend
; elsym
+= bfd_xcoff_ldsymsz (abfd
))
2263 struct internal_ldsym ldsym
;
2264 char nambuf
[SYMNMLEN
+ 1];
2266 struct bfd_link_hash_entry
*h
;
2268 bfd_xcoff_swap_ldsym_in (abfd
, elsym
, &ldsym
);
2270 /* We are only interested in exported symbols. */
2271 if ((ldsym
.l_smtype
& L_EXPORT
) == 0)
2274 if (ldsym
._l
._l_l
._l_zeroes
== 0)
2275 name
= strings
+ ldsym
._l
._l_l
._l_offset
;
2278 memcpy (nambuf
, ldsym
._l
._l_name
, SYMNMLEN
);
2279 nambuf
[SYMNMLEN
] = '\0';
2283 h
= bfd_link_hash_lookup (info
->hash
, name
, FALSE
, FALSE
, TRUE
);
2285 /* We are only interested in symbols that are currently
2286 undefined. At this point we know that we are using an XCOFF
2289 && h
->type
== bfd_link_hash_undefined
2290 && (((struct xcoff_link_hash_entry
*) h
)->flags
2291 & XCOFF_DEF_DYNAMIC
) == 0)
2293 if (!(*info
->callbacks
2294 ->add_archive_element
) (info
, abfd
, name
, subsbfd
))
2301 /* We do not need this shared object. */
2302 if (contents
!= NULL
&& ! coff_section_data (abfd
, lsec
)->keep_contents
)
2304 free (coff_section_data (abfd
, lsec
)->contents
);
2305 coff_section_data (abfd
, lsec
)->contents
= NULL
;
2311 /* Look through the symbols to see if this object file should be
2312 included in the link. */
2315 xcoff_link_check_ar_symbols (bfd
*abfd
,
2316 struct bfd_link_info
*info
,
2317 bfd_boolean
*pneeded
,
2320 bfd_size_type symesz
;
2326 if ((abfd
->flags
& DYNAMIC
) != 0
2327 && ! info
->static_link
2328 && info
->output_bfd
->xvec
== abfd
->xvec
)
2329 return xcoff_link_check_dynamic_ar_symbols (abfd
, info
, pneeded
, subsbfd
);
2331 symesz
= bfd_coff_symesz (abfd
);
2332 esym
= (bfd_byte
*) obj_coff_external_syms (abfd
);
2333 esym_end
= esym
+ obj_raw_syment_count (abfd
) * symesz
;
2334 while (esym
< esym_end
)
2336 struct internal_syment sym
;
2338 bfd_coff_swap_sym_in (abfd
, (void *) esym
, (void *) &sym
);
2340 if (EXTERN_SYM_P (sym
.n_sclass
) && sym
.n_scnum
!= N_UNDEF
)
2343 char buf
[SYMNMLEN
+ 1];
2344 struct bfd_link_hash_entry
*h
;
2346 /* This symbol is externally visible, and is defined by this
2348 name
= _bfd_coff_internal_syment_name (abfd
, &sym
, buf
);
2352 h
= bfd_link_hash_lookup (info
->hash
, name
, FALSE
, FALSE
, TRUE
);
2354 /* We are only interested in symbols that are currently
2355 undefined. If a symbol is currently known to be common,
2356 XCOFF linkers do not bring in an object file which
2357 defines it. We also don't bring in symbols to satisfy
2358 undefined references in shared objects. */
2360 && h
->type
== bfd_link_hash_undefined
2361 && (info
->output_bfd
->xvec
!= abfd
->xvec
2362 || (((struct xcoff_link_hash_entry
*) h
)->flags
2363 & XCOFF_DEF_DYNAMIC
) == 0))
2365 if (!(*info
->callbacks
2366 ->add_archive_element
) (info
, abfd
, name
, subsbfd
))
2373 esym
+= (sym
.n_numaux
+ 1) * symesz
;
2376 /* We do not need this object file. */
2380 /* Check a single archive element to see if we need to include it in
2381 the link. *PNEEDED is set according to whether this element is
2382 needed in the link or not. This is called via
2383 _bfd_generic_link_add_archive_symbols. */
2386 xcoff_link_check_archive_element (bfd
*abfd
,
2387 struct bfd_link_info
*info
,
2388 struct bfd_link_hash_entry
*h ATTRIBUTE_UNUSED
,
2389 const char *name ATTRIBUTE_UNUSED
,
2390 bfd_boolean
*pneeded
)
2392 bfd_boolean keep_syms_p
;
2395 keep_syms_p
= (obj_coff_external_syms (abfd
) != NULL
);
2396 if (!_bfd_coff_get_external_symbols (abfd
))
2400 if (!xcoff_link_check_ar_symbols (abfd
, info
, pneeded
, &abfd
))
2405 /* Potentially, the add_archive_element hook may have set a
2406 substitute BFD for us. */
2410 && !_bfd_coff_free_symbols (oldbfd
))
2412 keep_syms_p
= (obj_coff_external_syms (abfd
) != NULL
);
2413 if (!_bfd_coff_get_external_symbols (abfd
))
2416 if (!xcoff_link_add_symbols (abfd
, info
))
2418 if (info
->keep_memory
)
2424 if (!_bfd_coff_free_symbols (abfd
))
2431 /* Given an XCOFF BFD, add symbols to the global hash table as
2435 _bfd_xcoff_bfd_link_add_symbols (bfd
*abfd
, struct bfd_link_info
*info
)
2437 switch (bfd_get_format (abfd
))
2440 return xcoff_link_add_object_symbols (abfd
, info
);
2443 /* If the archive has a map, do the usual search. We then need
2444 to check the archive for dynamic objects, because they may not
2445 appear in the archive map even though they should, perhaps, be
2446 included. If the archive has no map, we just consider each object
2447 file in turn, since that apparently is what the AIX native linker
2449 if (bfd_has_map (abfd
))
2451 if (! (_bfd_generic_link_add_archive_symbols
2452 (abfd
, info
, xcoff_link_check_archive_element
)))
2459 member
= bfd_openr_next_archived_file (abfd
, NULL
);
2460 while (member
!= NULL
)
2462 if (bfd_check_format (member
, bfd_object
)
2463 && (info
->output_bfd
->xvec
== member
->xvec
)
2464 && (! bfd_has_map (abfd
) || (member
->flags
& DYNAMIC
) != 0))
2468 if (! xcoff_link_check_archive_element (member
, info
,
2469 NULL
, NULL
, &needed
))
2472 member
->archive_pass
= -1;
2474 member
= bfd_openr_next_archived_file (abfd
, member
);
2481 bfd_set_error (bfd_error_wrong_format
);
2487 _bfd_xcoff_define_common_symbol (bfd
*output_bfd ATTRIBUTE_UNUSED
,
2488 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
2489 struct bfd_link_hash_entry
*harg
)
2491 struct xcoff_link_hash_entry
*h
;
2493 if (!bfd_generic_define_common_symbol (output_bfd
, info
, harg
))
2496 h
= (struct xcoff_link_hash_entry
*) harg
;
2497 h
->flags
|= XCOFF_DEF_REGULAR
;
2501 /* If symbol H has not been interpreted as a function descriptor,
2502 see whether it should be. Set up its descriptor information if so. */
2505 xcoff_find_function (struct bfd_link_info
*info
,
2506 struct xcoff_link_hash_entry
*h
)
2508 if ((h
->flags
& XCOFF_DESCRIPTOR
) == 0
2509 && h
->root
.root
.string
[0] != '.')
2512 struct xcoff_link_hash_entry
*hfn
;
2515 amt
= strlen (h
->root
.root
.string
) + 2;
2516 fnname
= bfd_malloc (amt
);
2520 strcpy (fnname
+ 1, h
->root
.root
.string
);
2521 hfn
= xcoff_link_hash_lookup (xcoff_hash_table (info
),
2522 fnname
, FALSE
, FALSE
, TRUE
);
2525 && hfn
->smclas
== XMC_PR
2526 && (hfn
->root
.type
== bfd_link_hash_defined
2527 || hfn
->root
.type
== bfd_link_hash_defweak
))
2529 h
->flags
|= XCOFF_DESCRIPTOR
;
2530 h
->descriptor
= hfn
;
2531 hfn
->descriptor
= h
;
2537 /* Return true if the given bfd contains at least one shared object. */
2540 xcoff_archive_contains_shared_object_p (struct bfd_link_info
*info
,
2543 struct xcoff_archive_info
*archive_info
;
2546 archive_info
= xcoff_get_archive_info (info
, archive
);
2547 if (!archive_info
->know_contains_shared_object_p
)
2549 member
= bfd_openr_next_archived_file (archive
, NULL
);
2550 while (member
!= NULL
&& (member
->flags
& DYNAMIC
) == 0)
2551 member
= bfd_openr_next_archived_file (archive
, member
);
2553 archive_info
->contains_shared_object_p
= (member
!= NULL
);
2554 archive_info
->know_contains_shared_object_p
= 1;
2556 return archive_info
->contains_shared_object_p
;
2559 /* Symbol H qualifies for export by -bexpfull. Return true if it also
2560 qualifies for export by -bexpall. */
2563 xcoff_covered_by_expall_p (struct xcoff_link_hash_entry
*h
)
2565 /* Exclude symbols beginning with '_'. */
2566 if (h
->root
.root
.string
[0] == '_')
2569 /* Exclude archive members that would otherwise be unreferenced. */
2570 if ((h
->flags
& XCOFF_MARK
) == 0
2571 && (h
->root
.type
== bfd_link_hash_defined
2572 || h
->root
.type
== bfd_link_hash_defweak
)
2573 && h
->root
.u
.def
.section
->owner
!= NULL
2574 && h
->root
.u
.def
.section
->owner
->my_archive
!= NULL
)
2580 /* Return true if symbol H qualifies for the forms of automatic export
2581 specified by AUTO_EXPORT_FLAGS. */
2584 xcoff_auto_export_p (struct bfd_link_info
*info
,
2585 struct xcoff_link_hash_entry
*h
,
2586 unsigned int auto_export_flags
)
2588 /* Don't automatically export things that were explicitly exported. */
2589 if ((h
->flags
& XCOFF_EXPORT
) != 0)
2592 /* Don't export things that we don't define. */
2593 if ((h
->flags
& XCOFF_DEF_REGULAR
) == 0)
2596 /* Don't export functions; export their descriptors instead. */
2597 if (h
->root
.root
.string
[0] == '.')
2600 /* We don't export a symbol which is being defined by an object
2601 included from an archive which contains a shared object. The
2602 rationale is that if an archive contains both an unshared and
2603 a shared object, then there must be some reason that the
2604 unshared object is unshared, and we don't want to start
2605 providing a shared version of it. In particular, this solves
2606 a bug involving the _savefNN set of functions. gcc will call
2607 those functions without providing a slot to restore the TOC,
2608 so it is essential that these functions be linked in directly
2609 and not from a shared object, which means that a shared
2610 object which also happens to link them in must not export
2611 them. This is confusing, but I haven't been able to think of
2612 a different approach. Note that the symbols can, of course,
2613 be exported explicitly. */
2614 if (h
->root
.type
== bfd_link_hash_defined
2615 || h
->root
.type
== bfd_link_hash_defweak
)
2619 owner
= h
->root
.u
.def
.section
->owner
;
2621 && owner
->my_archive
!= NULL
2622 && xcoff_archive_contains_shared_object_p (info
, owner
->my_archive
))
2626 /* Otherwise, all symbols are exported by -bexpfull. */
2627 if ((auto_export_flags
& XCOFF_EXPFULL
) != 0)
2630 /* Despite its name, -bexpall exports most but not all symbols. */
2631 if ((auto_export_flags
& XCOFF_EXPALL
) != 0
2632 && xcoff_covered_by_expall_p (h
))
2638 /* Return true if relocation REL needs to be copied to the .loader section.
2639 If REL is against a global symbol, H is that symbol, otherwise it
2643 xcoff_need_ldrel_p (struct bfd_link_info
*info
, struct internal_reloc
*rel
,
2644 struct xcoff_link_hash_entry
*h
)
2646 if (!xcoff_hash_table (info
)->loader_section
)
2649 switch (rel
->r_type
)
2656 /* We should never need a .loader reloc for a TOC-relative reloc. */
2660 /* In this case, relocations against defined symbols can be resolved
2663 || h
->root
.type
== bfd_link_hash_defined
2664 || h
->root
.type
== bfd_link_hash_defweak
2665 || h
->root
.type
== bfd_link_hash_common
)
2668 /* We will always provide a local definition of function symbols,
2669 even if we don't have one yet. */
2670 if ((h
->flags
& XCOFF_CALLED
) != 0)
2679 /* Absolute relocations against absolute symbols can be
2680 resolved statically. */
2682 && (h
->root
.type
== bfd_link_hash_defined
2683 || h
->root
.type
== bfd_link_hash_defweak
)
2684 && bfd_is_abs_section (h
->root
.u
.def
.section
))
2691 /* Mark a symbol as not being garbage, including the section in which
2694 static inline bfd_boolean
2695 xcoff_mark_symbol (struct bfd_link_info
*info
, struct xcoff_link_hash_entry
*h
)
2697 if ((h
->flags
& XCOFF_MARK
) != 0)
2700 h
->flags
|= XCOFF_MARK
;
2702 /* If we're marking an undefined symbol, try find some way of
2704 if (!bfd_link_relocatable (info
)
2705 && (h
->flags
& XCOFF_IMPORT
) == 0
2706 && (h
->flags
& XCOFF_DEF_REGULAR
) == 0
2707 && (h
->root
.type
== bfd_link_hash_undefined
2708 || h
->root
.type
== bfd_link_hash_undefweak
))
2710 /* First check whether this symbol can be interpreted as an
2711 undefined function descriptor for a defined function symbol. */
2712 if (!xcoff_find_function (info
, h
))
2715 if ((h
->flags
& XCOFF_DESCRIPTOR
) != 0
2716 && (h
->descriptor
->root
.type
== bfd_link_hash_defined
2717 || h
->descriptor
->root
.type
== bfd_link_hash_defweak
))
2719 /* This is a descriptor for a defined symbol, but the input
2720 objects have not defined the descriptor itself. Fill in
2721 the definition automatically.
2723 Note that we do this even if we found a dynamic definition
2724 of H. The local function definition logically overrides
2728 sec
= xcoff_hash_table (info
)->descriptor_section
;
2729 h
->root
.type
= bfd_link_hash_defined
;
2730 h
->root
.u
.def
.section
= sec
;
2731 h
->root
.u
.def
.value
= sec
->size
;
2733 h
->flags
|= XCOFF_DEF_REGULAR
;
2735 /* The size of the function descriptor depends on whether this
2736 is xcoff32 (12) or xcoff64 (24). */
2737 sec
->size
+= bfd_xcoff_function_descriptor_size (sec
->owner
);
2739 /* A function descriptor uses two relocs: one for the
2740 associated code, and one for the TOC address. */
2741 xcoff_hash_table (info
)->ldrel_count
+= 2;
2742 sec
->reloc_count
+= 2;
2744 /* Mark the function itself. */
2745 if (!xcoff_mark_symbol (info
, h
->descriptor
))
2748 /* Mark the TOC section, so that we get an anchor
2749 to relocate against. */
2750 if (!xcoff_mark (info
, xcoff_hash_table (info
)->toc_section
))
2753 /* We handle writing out the contents of the descriptor in
2754 xcoff_write_global_symbol. */
2756 else if (info
->static_link
)
2757 /* We can't get a symbol value dynamically, so just assume
2758 that it's undefined. */
2759 h
->flags
|= XCOFF_WAS_UNDEFINED
;
2760 else if ((h
->flags
& XCOFF_CALLED
) != 0)
2762 /* This is a function symbol for which we need to create
2765 struct xcoff_link_hash_entry
*hds
;
2767 /* Mark the descriptor (and its TOC section). */
2768 hds
= h
->descriptor
;
2769 BFD_ASSERT ((hds
->root
.type
== bfd_link_hash_undefined
2770 || hds
->root
.type
== bfd_link_hash_undefweak
)
2771 && (hds
->flags
& XCOFF_DEF_REGULAR
) == 0);
2772 if (!xcoff_mark_symbol (info
, hds
))
2775 /* Treat this symbol as undefined if the descriptor was. */
2776 if ((hds
->flags
& XCOFF_WAS_UNDEFINED
) != 0)
2777 h
->flags
|= XCOFF_WAS_UNDEFINED
;
2779 /* Allocate room for the global linkage code itself. */
2780 sec
= xcoff_hash_table (info
)->linkage_section
;
2781 h
->root
.type
= bfd_link_hash_defined
;
2782 h
->root
.u
.def
.section
= sec
;
2783 h
->root
.u
.def
.value
= sec
->size
;
2785 h
->flags
|= XCOFF_DEF_REGULAR
;
2786 sec
->size
+= bfd_xcoff_glink_code_size (info
->output_bfd
);
2788 /* The global linkage code requires a TOC entry for the
2790 if (hds
->toc_section
== NULL
)
2795 xcoff32 uses 4 bytes in the toc.
2796 xcoff64 uses 8 bytes in the toc. */
2797 if (bfd_xcoff_is_xcoff64 (info
->output_bfd
))
2799 else if (bfd_xcoff_is_xcoff32 (info
->output_bfd
))
2804 /* Allocate room in the fallback TOC section. */
2805 hds
->toc_section
= xcoff_hash_table (info
)->toc_section
;
2806 hds
->u
.toc_offset
= hds
->toc_section
->size
;
2807 hds
->toc_section
->size
+= byte_size
;
2808 if (!xcoff_mark (info
, hds
->toc_section
))
2811 /* Allocate room for a static and dynamic R_TOC
2813 ++xcoff_hash_table (info
)->ldrel_count
;
2814 ++hds
->toc_section
->reloc_count
;
2816 /* Set the index to -2 to force this symbol to
2819 hds
->flags
|= XCOFF_SET_TOC
| XCOFF_LDREL
;
2822 else if ((h
->flags
& XCOFF_DEF_DYNAMIC
) == 0)
2824 /* Record that the symbol was undefined, then import it.
2825 -brtl links use a special fake import file. */
2826 h
->flags
|= XCOFF_WAS_UNDEFINED
| XCOFF_IMPORT
;
2827 if (xcoff_hash_table (info
)->rtld
)
2829 if (!xcoff_set_import_path (info
, h
, "", "..", ""))
2834 if (!xcoff_set_import_path (info
, h
, NULL
, NULL
, NULL
))
2840 if (h
->root
.type
== bfd_link_hash_defined
2841 || h
->root
.type
== bfd_link_hash_defweak
)
2845 hsec
= h
->root
.u
.def
.section
;
2846 if (! bfd_is_abs_section (hsec
)
2847 && (hsec
->flags
& SEC_MARK
) == 0)
2849 if (! xcoff_mark (info
, hsec
))
2854 if (h
->toc_section
!= NULL
2855 && (h
->toc_section
->flags
& SEC_MARK
) == 0)
2857 if (! xcoff_mark (info
, h
->toc_section
))
2864 /* Look for a symbol called NAME. If the symbol is defined, mark it.
2865 If the symbol exists, set FLAGS. */
2868 xcoff_mark_symbol_by_name (struct bfd_link_info
*info
,
2869 const char *name
, unsigned int flags
)
2871 struct xcoff_link_hash_entry
*h
;
2873 h
= xcoff_link_hash_lookup (xcoff_hash_table (info
), name
,
2874 FALSE
, FALSE
, TRUE
);
2878 if (h
->root
.type
== bfd_link_hash_defined
2879 || h
->root
.type
== bfd_link_hash_defweak
)
2881 if (!xcoff_mark (info
, h
->root
.u
.def
.section
))
2888 /* The mark phase of garbage collection. For a given section, mark
2889 it, and all the sections which define symbols to which it refers.
2890 Because this function needs to look at the relocs, we also count
2891 the number of relocs which need to be copied into the .loader
2895 xcoff_mark (struct bfd_link_info
*info
, asection
*sec
)
2897 if (bfd_is_abs_section (sec
)
2898 || (sec
->flags
& SEC_MARK
) != 0)
2901 sec
->flags
|= SEC_MARK
;
2903 if (sec
->owner
->xvec
== info
->output_bfd
->xvec
2904 && coff_section_data (sec
->owner
, sec
) != NULL
2905 && xcoff_section_data (sec
->owner
, sec
) != NULL
)
2907 struct xcoff_link_hash_entry
**syms
;
2908 struct internal_reloc
*rel
, *relend
;
2910 unsigned long i
, first
, last
;
2912 /* Mark all the symbols in this section. */
2913 syms
= obj_xcoff_sym_hashes (sec
->owner
);
2914 csects
= xcoff_data (sec
->owner
)->csects
;
2915 first
= xcoff_section_data (sec
->owner
, sec
)->first_symndx
;
2916 last
= xcoff_section_data (sec
->owner
, sec
)->last_symndx
;
2917 for (i
= first
; i
<= last
; i
++)
2918 if (csects
[i
] == sec
2920 && (syms
[i
]->flags
& XCOFF_MARK
) == 0)
2922 if (!xcoff_mark_symbol (info
, syms
[i
]))
2926 /* Look through the section relocs. */
2927 if ((sec
->flags
& SEC_RELOC
) != 0
2928 && sec
->reloc_count
> 0)
2930 rel
= xcoff_read_internal_relocs (sec
->owner
, sec
, TRUE
,
2934 relend
= rel
+ sec
->reloc_count
;
2935 for (; rel
< relend
; rel
++)
2937 struct xcoff_link_hash_entry
*h
;
2939 if ((unsigned int) rel
->r_symndx
2940 > obj_raw_syment_count (sec
->owner
))
2943 h
= obj_xcoff_sym_hashes (sec
->owner
)[rel
->r_symndx
];
2946 if ((h
->flags
& XCOFF_MARK
) == 0)
2948 if (!xcoff_mark_symbol (info
, h
))
2956 rsec
= xcoff_data (sec
->owner
)->csects
[rel
->r_symndx
];
2958 && (rsec
->flags
& SEC_MARK
) == 0)
2960 if (!xcoff_mark (info
, rsec
))
2965 /* See if this reloc needs to be copied into the .loader
2967 if (xcoff_need_ldrel_p (info
, rel
, h
))
2969 ++xcoff_hash_table (info
)->ldrel_count
;
2971 h
->flags
|= XCOFF_LDREL
;
2975 if (! info
->keep_memory
2976 && coff_section_data (sec
->owner
, sec
) != NULL
2977 && coff_section_data (sec
->owner
, sec
)->relocs
!= NULL
2978 && ! coff_section_data (sec
->owner
, sec
)->keep_relocs
)
2980 free (coff_section_data (sec
->owner
, sec
)->relocs
);
2981 coff_section_data (sec
->owner
, sec
)->relocs
= NULL
;
2989 /* Routines that are called after all the input files have been
2990 handled, but before the sections are laid out in memory. */
2992 /* The sweep phase of garbage collection. Remove all garbage
2996 xcoff_sweep (struct bfd_link_info
*info
)
3000 for (sub
= info
->input_bfds
; sub
!= NULL
; sub
= sub
->link
.next
)
3004 for (o
= sub
->sections
; o
!= NULL
; o
= o
->next
)
3006 if ((o
->flags
& SEC_MARK
) == 0)
3008 /* Keep all sections from non-XCOFF input files. Keep
3009 special sections. Keep .debug sections for the
3011 if (sub
->xvec
!= info
->output_bfd
->xvec
3012 || o
== xcoff_hash_table (info
)->debug_section
3013 || o
== xcoff_hash_table (info
)->loader_section
3014 || o
== xcoff_hash_table (info
)->linkage_section
3015 || o
== xcoff_hash_table (info
)->descriptor_section
3016 || (bfd_get_section_flags (sub
, o
) & SEC_DEBUGGING
)
3017 || strcmp (o
->name
, ".debug") == 0)
3018 o
->flags
|= SEC_MARK
;
3029 /* Record the number of elements in a set. This is used to output the
3030 correct csect length. */
3033 bfd_xcoff_link_record_set (bfd
*output_bfd
,
3034 struct bfd_link_info
*info
,
3035 struct bfd_link_hash_entry
*harg
,
3038 struct xcoff_link_hash_entry
*h
= (struct xcoff_link_hash_entry
*) harg
;
3039 struct xcoff_link_size_list
*n
;
3042 if (bfd_get_flavour (output_bfd
) != bfd_target_xcoff_flavour
)
3045 /* This will hardly ever be called. I don't want to burn four bytes
3046 per global symbol, so instead the size is kept on a linked list
3047 attached to the hash table. */
3049 n
= bfd_alloc (output_bfd
, amt
);
3052 n
->next
= xcoff_hash_table (info
)->size_list
;
3055 xcoff_hash_table (info
)->size_list
= n
;
3057 h
->flags
|= XCOFF_HAS_SIZE
;
3062 /* Import a symbol. */
3065 bfd_xcoff_import_symbol (bfd
*output_bfd
,
3066 struct bfd_link_info
*info
,
3067 struct bfd_link_hash_entry
*harg
,
3069 const char *imppath
,
3070 const char *impfile
,
3071 const char *impmember
,
3072 unsigned int syscall_flag
)
3074 struct xcoff_link_hash_entry
*h
= (struct xcoff_link_hash_entry
*) harg
;
3076 if (bfd_get_flavour (output_bfd
) != bfd_target_xcoff_flavour
)
3079 /* A symbol name which starts with a period is the code for a
3080 function. If the symbol is undefined, then add an undefined
3081 symbol for the function descriptor, and import that instead. */
3082 if (h
->root
.root
.string
[0] == '.'
3083 && h
->root
.type
== bfd_link_hash_undefined
3084 && val
== (bfd_vma
) -1)
3086 struct xcoff_link_hash_entry
*hds
;
3088 hds
= h
->descriptor
;
3091 hds
= xcoff_link_hash_lookup (xcoff_hash_table (info
),
3092 h
->root
.root
.string
+ 1,
3096 if (hds
->root
.type
== bfd_link_hash_new
)
3098 hds
->root
.type
= bfd_link_hash_undefined
;
3099 hds
->root
.u
.undef
.abfd
= h
->root
.u
.undef
.abfd
;
3101 hds
->flags
|= XCOFF_DESCRIPTOR
;
3102 BFD_ASSERT ((h
->flags
& XCOFF_DESCRIPTOR
) == 0);
3103 hds
->descriptor
= h
;
3104 h
->descriptor
= hds
;
3107 /* Now, if the descriptor is undefined, import the descriptor
3108 rather than the symbol we were told to import. FIXME: Is
3109 this correct in all cases? */
3110 if (hds
->root
.type
== bfd_link_hash_undefined
)
3114 h
->flags
|= (XCOFF_IMPORT
| syscall_flag
);
3116 if (val
!= (bfd_vma
) -1)
3118 if (h
->root
.type
== bfd_link_hash_defined
3119 && (! bfd_is_abs_section (h
->root
.u
.def
.section
)
3120 || h
->root
.u
.def
.value
!= val
))
3121 (*info
->callbacks
->multiple_definition
) (info
, &h
->root
, output_bfd
,
3122 bfd_abs_section_ptr
, val
);
3124 h
->root
.type
= bfd_link_hash_defined
;
3125 h
->root
.u
.def
.section
= bfd_abs_section_ptr
;
3126 h
->root
.u
.def
.value
= val
;
3130 if (!xcoff_set_import_path (info
, h
, imppath
, impfile
, impmember
))
3136 /* Export a symbol. */
3139 bfd_xcoff_export_symbol (bfd
*output_bfd
,
3140 struct bfd_link_info
*info
,
3141 struct bfd_link_hash_entry
*harg
)
3143 struct xcoff_link_hash_entry
*h
= (struct xcoff_link_hash_entry
*) harg
;
3145 if (bfd_get_flavour (output_bfd
) != bfd_target_xcoff_flavour
)
3148 h
->flags
|= XCOFF_EXPORT
;
3150 /* FIXME: I'm not at all sure what syscall is supposed to mean, so
3151 I'm just going to ignore it until somebody explains it. */
3153 /* Make sure we don't garbage collect this symbol. */
3154 if (! xcoff_mark_symbol (info
, h
))
3157 /* If this is a function descriptor, make sure we don't garbage
3158 collect the associated function code. We normally don't have to
3159 worry about this, because the descriptor will be attached to a
3160 section with relocs, but if we are creating the descriptor
3161 ourselves those relocs will not be visible to the mark code. */
3162 if ((h
->flags
& XCOFF_DESCRIPTOR
) != 0)
3164 if (! xcoff_mark_symbol (info
, h
->descriptor
))
3171 /* Count a reloc against a symbol. This is called for relocs
3172 generated by the linker script, typically for global constructors
3176 bfd_xcoff_link_count_reloc (bfd
*output_bfd
,
3177 struct bfd_link_info
*info
,
3180 struct xcoff_link_hash_entry
*h
;
3182 if (bfd_get_flavour (output_bfd
) != bfd_target_xcoff_flavour
)
3185 h
= ((struct xcoff_link_hash_entry
*)
3186 bfd_wrapped_link_hash_lookup (output_bfd
, info
, name
, FALSE
, FALSE
,
3190 (*_bfd_error_handler
) (_("%s: no such symbol"), name
);
3191 bfd_set_error (bfd_error_no_symbols
);
3195 h
->flags
|= XCOFF_REF_REGULAR
;
3196 if (xcoff_hash_table (info
)->loader_section
)
3198 h
->flags
|= XCOFF_LDREL
;
3199 ++xcoff_hash_table (info
)->ldrel_count
;
3202 /* Mark the symbol to avoid garbage collection. */
3203 if (! xcoff_mark_symbol (info
, h
))
3209 /* This function is called for each symbol to which the linker script
3213 bfd_xcoff_record_link_assignment (bfd
*output_bfd
,
3214 struct bfd_link_info
*info
,
3217 struct xcoff_link_hash_entry
*h
;
3219 if (bfd_get_flavour (output_bfd
) != bfd_target_xcoff_flavour
)
3222 h
= xcoff_link_hash_lookup (xcoff_hash_table (info
), name
, TRUE
, TRUE
,
3227 h
->flags
|= XCOFF_DEF_REGULAR
;
3232 /* An xcoff_link_hash_traverse callback for which DATA points to an
3233 xcoff_loader_info. Mark all symbols that should be automatically
3237 xcoff_mark_auto_exports (struct xcoff_link_hash_entry
*h
, void *data
)
3239 struct xcoff_loader_info
*ldinfo
;
3241 ldinfo
= (struct xcoff_loader_info
*) data
;
3242 if (xcoff_auto_export_p (ldinfo
->info
, h
, ldinfo
->auto_export_flags
))
3244 if (!xcoff_mark_symbol (ldinfo
->info
, h
))
3245 ldinfo
->failed
= TRUE
;
3250 /* Add a symbol to the .loader symbols, if necessary. */
3252 /* INPUT_BFD has an external symbol associated with hash table entry H
3253 and csect CSECT. Return true if INPUT_BFD defines H. */
3256 xcoff_final_definition_p (bfd
*input_bfd
, struct xcoff_link_hash_entry
*h
,
3259 switch (h
->root
.type
)
3261 case bfd_link_hash_defined
:
3262 case bfd_link_hash_defweak
:
3263 /* No input bfd owns absolute symbols. They are written by
3264 xcoff_write_global_symbol instead. */
3265 return (!bfd_is_abs_section (csect
)
3266 && h
->root
.u
.def
.section
== csect
);
3268 case bfd_link_hash_common
:
3269 return h
->root
.u
.c
.p
->section
->owner
== input_bfd
;
3271 case bfd_link_hash_undefined
:
3272 case bfd_link_hash_undefweak
:
3273 /* We can't treat undef.abfd as the owner because that bfd
3274 might be a dynamic object. Allow any bfd to claim it. */
3282 /* See if H should have a loader symbol associated with it. */
3285 xcoff_build_ldsym (struct xcoff_loader_info
*ldinfo
,
3286 struct xcoff_link_hash_entry
*h
)
3290 /* Warn if this symbol is exported but not defined. */
3291 if ((h
->flags
& XCOFF_EXPORT
) != 0
3292 && (h
->flags
& XCOFF_WAS_UNDEFINED
) != 0)
3294 (*_bfd_error_handler
)
3295 (_("warning: attempt to export undefined symbol `%s'"),
3296 h
->root
.root
.string
);
3300 /* We need to add a symbol to the .loader section if it is mentioned
3301 in a reloc which we are copying to the .loader section and it was
3302 not defined or common, or if it is the entry point, or if it is
3304 if (((h
->flags
& XCOFF_LDREL
) == 0
3305 || h
->root
.type
== bfd_link_hash_defined
3306 || h
->root
.type
== bfd_link_hash_defweak
3307 || h
->root
.type
== bfd_link_hash_common
)
3308 && (h
->flags
& XCOFF_ENTRY
) == 0
3309 && (h
->flags
& XCOFF_EXPORT
) == 0)
3312 /* We need to add this symbol to the .loader symbols. */
3314 BFD_ASSERT (h
->ldsym
== NULL
);
3315 amt
= sizeof (struct internal_ldsym
);
3316 h
->ldsym
= bfd_zalloc (ldinfo
->output_bfd
, amt
);
3317 if (h
->ldsym
== NULL
)
3319 ldinfo
->failed
= TRUE
;
3323 if ((h
->flags
& XCOFF_IMPORT
) != 0)
3325 /* Give imported descriptors class XMC_DS rather than XMC_UA. */
3326 if ((h
->flags
& XCOFF_DESCRIPTOR
) != 0)
3328 h
->ldsym
->l_ifile
= h
->ldindx
;
3331 /* The first 3 symbol table indices are reserved to indicate the
3332 data, text and bss sections. */
3333 h
->ldindx
= ldinfo
->ldsym_count
+ 3;
3335 ++ldinfo
->ldsym_count
;
3337 if (! bfd_xcoff_put_ldsymbol_name (ldinfo
->output_bfd
, ldinfo
,
3338 h
->ldsym
, h
->root
.root
.string
))
3341 h
->flags
|= XCOFF_BUILT_LDSYM
;
3345 /* An xcoff_htab_traverse callback that is called for each symbol
3346 once garbage collection is complete. */
3349 xcoff_post_gc_symbol (struct xcoff_link_hash_entry
*h
, void * p
)
3351 struct xcoff_loader_info
*ldinfo
= (struct xcoff_loader_info
*) p
;
3353 /* __rtinit, this symbol has special handling. */
3354 if (h
->flags
& XCOFF_RTINIT
)
3357 /* We don't want to garbage collect symbols which are not defined in
3358 XCOFF files. This is a convenient place to mark them. */
3359 if (xcoff_hash_table (ldinfo
->info
)->gc
3360 && (h
->flags
& XCOFF_MARK
) == 0
3361 && (h
->root
.type
== bfd_link_hash_defined
3362 || h
->root
.type
== bfd_link_hash_defweak
)
3363 && (h
->root
.u
.def
.section
->owner
== NULL
3364 || (h
->root
.u
.def
.section
->owner
->xvec
3365 != ldinfo
->info
->output_bfd
->xvec
)))
3366 h
->flags
|= XCOFF_MARK
;
3368 /* Skip discarded symbols. */
3369 if (xcoff_hash_table (ldinfo
->info
)->gc
3370 && (h
->flags
& XCOFF_MARK
) == 0)
3373 /* If this is still a common symbol, and it wasn't garbage
3374 collected, we need to actually allocate space for it in the .bss
3376 if (h
->root
.type
== bfd_link_hash_common
3377 && h
->root
.u
.c
.p
->section
->size
== 0)
3379 BFD_ASSERT (bfd_is_com_section (h
->root
.u
.c
.p
->section
));
3380 h
->root
.u
.c
.p
->section
->size
= h
->root
.u
.c
.size
;
3383 if (xcoff_hash_table (ldinfo
->info
)->loader_section
)
3385 if (xcoff_auto_export_p (ldinfo
->info
, h
, ldinfo
->auto_export_flags
))
3386 h
->flags
|= XCOFF_EXPORT
;
3388 if (!xcoff_build_ldsym (ldinfo
, h
))
3395 /* INPUT_BFD includes XCOFF symbol ISYM, which is associated with linker
3396 hash table entry H and csect CSECT. AUX contains ISYM's auxillary
3397 csect information, if any. NAME is the function's name if the name
3398 is stored in the .debug section, otherwise it is null.
3400 Return 1 if we should include an appropriately-adjusted ISYM
3401 in the output file, 0 if we should discard ISYM, or -1 if an
3405 xcoff_keep_symbol_p (struct bfd_link_info
*info
, bfd
*input_bfd
,
3406 struct internal_syment
*isym
,
3407 union internal_auxent
*aux
,
3408 struct xcoff_link_hash_entry
*h
,
3409 asection
*csect
, const char *name
)
3413 /* If we are skipping this csect, we want to strip the symbol too. */
3417 /* Likewise if we garbage-collected the csect. */
3418 if (xcoff_hash_table (info
)->gc
3419 && !bfd_is_abs_section (csect
)
3420 && !bfd_is_und_section (csect
)
3421 && (csect
->flags
& SEC_MARK
) == 0)
3424 /* An XCOFF linker always removes C_STAT symbols. */
3425 if (isym
->n_sclass
== C_STAT
)
3428 /* We generate the TOC anchor separately. */
3429 if (isym
->n_sclass
== C_HIDEXT
3430 && aux
->x_csect
.x_smclas
== XMC_TC0
)
3433 /* If we are stripping all symbols, we want to discard this one. */
3434 if (info
->strip
== strip_all
)
3437 /* Discard symbols that are defined elsewhere. */
3438 if (EXTERN_SYM_P (isym
->n_sclass
))
3440 if ((h
->flags
& XCOFF_ALLOCATED
) != 0)
3442 if (!xcoff_final_definition_p (input_bfd
, h
, csect
))
3446 /* If we're discarding local symbols, check whether ISYM is local. */
3447 smtyp
= SMTYP_SMTYP (aux
->x_csect
.x_smtyp
);
3448 if (info
->discard
== discard_all
3449 && !EXTERN_SYM_P (isym
->n_sclass
)
3450 && (isym
->n_sclass
!= C_HIDEXT
|| smtyp
!= XTY_SD
))
3453 /* If we're stripping debugging symbols, check whether ISYM is one. */
3454 if (info
->strip
== strip_debugger
3455 && isym
->n_scnum
== N_DEBUG
)
3458 /* If we are stripping symbols based on name, check how ISYM's
3459 name should be handled. */
3460 if (info
->strip
== strip_some
3461 || info
->discard
== discard_l
)
3463 char buf
[SYMNMLEN
+ 1];
3467 name
= _bfd_coff_internal_syment_name (input_bfd
, isym
, buf
);
3472 if (info
->strip
== strip_some
3473 && bfd_hash_lookup (info
->keep_hash
, name
, FALSE
, FALSE
) == NULL
)
3476 if (info
->discard
== discard_l
3477 && !EXTERN_SYM_P (isym
->n_sclass
)
3478 && (isym
->n_sclass
!= C_HIDEXT
|| smtyp
!= XTY_SD
)
3479 && bfd_is_local_label_name (input_bfd
, name
))
3486 /* Lay out the .loader section, filling in the header and the import paths.
3487 LIBPATH is as for bfd_xcoff_size_dynamic_sections. */
3490 xcoff_build_loader_section (struct xcoff_loader_info
*ldinfo
,
3491 const char *libpath
)
3494 struct xcoff_link_hash_table
*htab
;
3495 struct internal_ldhdr
*ldhdr
;
3496 struct xcoff_import_file
*fl
;
3497 bfd_size_type stoff
;
3498 size_t impsize
, impcount
;
3502 /* Work out the size of the import file names. Each import file ID
3503 consists of three null terminated strings: the path, the file
3504 name, and the archive member name. The first entry in the list
3505 of names is the path to use to find objects, which the linker has
3506 passed in as the libpath argument. For some reason, the path
3507 entry in the other import file names appears to always be empty. */
3508 output_bfd
= ldinfo
->output_bfd
;
3509 htab
= xcoff_hash_table (ldinfo
->info
);
3510 impsize
= strlen (libpath
) + 3;
3512 for (fl
= htab
->imports
; fl
!= NULL
; fl
= fl
->next
)
3515 impsize
+= (strlen (fl
->path
)
3517 + strlen (fl
->member
)
3521 /* Set up the .loader section header. */
3522 ldhdr
= &htab
->ldhdr
;
3523 ldhdr
->l_version
= bfd_xcoff_ldhdr_version(output_bfd
);
3524 ldhdr
->l_nsyms
= ldinfo
->ldsym_count
;
3525 ldhdr
->l_nreloc
= htab
->ldrel_count
;
3526 ldhdr
->l_istlen
= impsize
;
3527 ldhdr
->l_nimpid
= impcount
;
3528 ldhdr
->l_impoff
= (bfd_xcoff_ldhdrsz (output_bfd
)
3529 + ldhdr
->l_nsyms
* bfd_xcoff_ldsymsz (output_bfd
)
3530 + ldhdr
->l_nreloc
* bfd_xcoff_ldrelsz (output_bfd
));
3531 ldhdr
->l_stlen
= ldinfo
->string_size
;
3532 stoff
= ldhdr
->l_impoff
+ impsize
;
3533 if (ldinfo
->string_size
== 0)
3536 ldhdr
->l_stoff
= stoff
;
3538 /* 64 bit elements to ldhdr
3539 The swap out routine for 32 bit will ignore them.
3540 Nothing fancy, symbols come after the header and relocs come
3542 ldhdr
->l_symoff
= bfd_xcoff_ldhdrsz (output_bfd
);
3543 ldhdr
->l_rldoff
= (bfd_xcoff_ldhdrsz (output_bfd
)
3544 + ldhdr
->l_nsyms
* bfd_xcoff_ldsymsz (output_bfd
));
3546 /* We now know the final size of the .loader section. Allocate
3548 lsec
= htab
->loader_section
;
3549 lsec
->size
= stoff
+ ldhdr
->l_stlen
;
3550 lsec
->contents
= bfd_zalloc (output_bfd
, lsec
->size
);
3551 if (lsec
->contents
== NULL
)
3554 /* Set up the header. */
3555 bfd_xcoff_swap_ldhdr_out (output_bfd
, ldhdr
, lsec
->contents
);
3557 /* Set up the import file names. */
3558 out
= (char *) lsec
->contents
+ ldhdr
->l_impoff
;
3559 strcpy (out
, libpath
);
3560 out
+= strlen (libpath
) + 1;
3563 for (fl
= htab
->imports
; fl
!= NULL
; fl
= fl
->next
)
3568 while ((*out
++ = *s
++) != '\0')
3571 while ((*out
++ = *s
++) != '\0')
3574 while ((*out
++ = *s
++) != '\0')
3578 BFD_ASSERT ((bfd_size_type
) ((bfd_byte
*) out
- lsec
->contents
) == stoff
);
3580 /* Set up the symbol string table. */
3581 if (ldinfo
->string_size
> 0)
3583 memcpy (out
, ldinfo
->strings
, ldinfo
->string_size
);
3584 free (ldinfo
->strings
);
3585 ldinfo
->strings
= NULL
;
3588 /* We can't set up the symbol table or the relocs yet, because we
3589 don't yet know the final position of the various sections. The
3590 .loader symbols are written out when the corresponding normal
3591 symbols are written out in xcoff_link_input_bfd or
3592 xcoff_write_global_symbol. The .loader relocs are written out
3593 when the corresponding normal relocs are handled in
3594 xcoff_link_input_bfd. */
3599 /* Build the .loader section. This is called by the XCOFF linker
3600 emulation before_allocation routine. We must set the size of the
3601 .loader section before the linker lays out the output file.
3602 LIBPATH is the library path to search for shared objects; this is
3603 normally built from the -L arguments passed to the linker. ENTRY
3604 is the name of the entry point symbol (the -e linker option).
3605 FILE_ALIGN is the alignment to use for sections within the file
3606 (the -H linker option). MAXSTACK is the maximum stack size (the
3607 -bmaxstack linker option). MAXDATA is the maximum data size (the
3608 -bmaxdata linker option). GC is whether to do garbage collection
3609 (the -bgc linker option). MODTYPE is the module type (the
3610 -bmodtype linker option). TEXTRO is whether the text section must
3611 be read only (the -btextro linker option). AUTO_EXPORT_FLAGS
3612 is a mask of XCOFF_EXPALL and XCOFF_EXPFULL. SPECIAL_SECTIONS
3613 is set by this routine to csects with magic names like _end. */
3616 bfd_xcoff_size_dynamic_sections (bfd
*output_bfd
,
3617 struct bfd_link_info
*info
,
3618 const char *libpath
,
3620 unsigned long file_align
,
3621 unsigned long maxstack
,
3622 unsigned long maxdata
,
3626 unsigned int auto_export_flags
,
3627 asection
**special_sections
,
3630 struct xcoff_loader_info ldinfo
;
3634 struct bfd_strtab_hash
*debug_strtab
;
3635 bfd_byte
*debug_contents
= NULL
;
3638 if (bfd_get_flavour (output_bfd
) != bfd_target_xcoff_flavour
)
3640 for (i
= 0; i
< XCOFF_NUMBER_OF_SPECIAL_SECTIONS
; i
++)
3641 special_sections
[i
] = NULL
;
3645 ldinfo
.failed
= FALSE
;
3646 ldinfo
.output_bfd
= output_bfd
;
3648 ldinfo
.auto_export_flags
= auto_export_flags
;
3649 ldinfo
.ldsym_count
= 0;
3650 ldinfo
.string_size
= 0;
3651 ldinfo
.strings
= NULL
;
3652 ldinfo
.string_alc
= 0;
3654 xcoff_data (output_bfd
)->maxstack
= maxstack
;
3655 xcoff_data (output_bfd
)->maxdata
= maxdata
;
3656 xcoff_data (output_bfd
)->modtype
= modtype
;
3658 xcoff_hash_table (info
)->file_align
= file_align
;
3659 xcoff_hash_table (info
)->textro
= textro
;
3660 xcoff_hash_table (info
)->rtld
= rtld
;
3663 if (xcoff_hash_table (info
)->loader_section
3664 && (info
->init_function
|| info
->fini_function
|| rtld
))
3666 struct xcoff_link_hash_entry
*hsym
;
3667 struct internal_ldsym
*ldsym
;
3669 hsym
= xcoff_link_hash_lookup (xcoff_hash_table (info
),
3670 "__rtinit", FALSE
, FALSE
, TRUE
);
3673 (*_bfd_error_handler
)
3674 (_("error: undefined symbol __rtinit"));
3678 xcoff_mark_symbol (info
, hsym
);
3679 hsym
->flags
|= (XCOFF_DEF_REGULAR
| XCOFF_RTINIT
);
3681 /* __rtinit initialized. */
3682 amt
= sizeof (* ldsym
);
3683 ldsym
= bfd_malloc (amt
);
3685 ldsym
->l_value
= 0; /* Will be filled in later. */
3686 ldsym
->l_scnum
= 2; /* Data section. */
3687 ldsym
->l_smtype
= XTY_SD
; /* Csect section definition. */
3688 ldsym
->l_smclas
= 5; /* .rw. */
3689 ldsym
->l_ifile
= 0; /* Special system loader symbol. */
3690 ldsym
->l_parm
= 0; /* NA. */
3692 /* Force __rtinit to be the first symbol in the loader symbol table
3693 See xcoff_build_ldsyms
3695 The first 3 symbol table indices are reserved to indicate the data,
3696 text and bss sections. */
3697 BFD_ASSERT (0 == ldinfo
.ldsym_count
);
3700 ldinfo
.ldsym_count
= 1;
3701 hsym
->ldsym
= ldsym
;
3703 if (! bfd_xcoff_put_ldsymbol_name (ldinfo
.output_bfd
, &ldinfo
,
3704 hsym
->ldsym
, hsym
->root
.root
.string
))
3707 /* This symbol is written out by xcoff_write_global_symbol
3708 Set stuff up so xcoff_write_global_symbol logic works. */
3709 hsym
->flags
|= XCOFF_DEF_REGULAR
| XCOFF_MARK
;
3710 hsym
->root
.type
= bfd_link_hash_defined
;
3711 hsym
->root
.u
.def
.value
= 0;
3714 /* Garbage collect unused sections. */
3715 if (bfd_link_relocatable (info
) || !gc
)
3718 xcoff_hash_table (info
)->gc
= FALSE
;
3720 /* We still need to call xcoff_mark, in order to set ldrel_count
3722 for (sub
= info
->input_bfds
; sub
!= NULL
; sub
= sub
->link
.next
)
3726 for (o
= sub
->sections
; o
!= NULL
; o
= o
->next
)
3728 /* We shouldn't unconditionaly mark the TOC section.
3729 The output file should only have a TOC if either
3730 (a) one of the input files did or (b) we end up
3731 creating TOC references as part of the link process. */
3732 if (o
!= xcoff_hash_table (info
)->toc_section
3733 && (o
->flags
& SEC_MARK
) == 0)
3735 if (! xcoff_mark (info
, o
))
3744 && !xcoff_mark_symbol_by_name (info
, entry
, XCOFF_ENTRY
))
3746 if (info
->init_function
!= NULL
3747 && !xcoff_mark_symbol_by_name (info
, info
->init_function
, 0))
3749 if (info
->fini_function
!= NULL
3750 && !xcoff_mark_symbol_by_name (info
, info
->fini_function
, 0))
3752 if (auto_export_flags
!= 0)
3754 xcoff_link_hash_traverse (xcoff_hash_table (info
),
3755 xcoff_mark_auto_exports
, &ldinfo
);
3760 xcoff_hash_table (info
)->gc
= TRUE
;
3763 /* Return special sections to the caller. */
3764 for (i
= 0; i
< XCOFF_NUMBER_OF_SPECIAL_SECTIONS
; i
++)
3766 sec
= xcoff_hash_table (info
)->special_sections
[i
];
3770 && (sec
->flags
& SEC_MARK
) == 0)
3773 special_sections
[i
] = sec
;
3776 if (info
->input_bfds
== NULL
)
3777 /* I'm not sure what to do in this bizarre case. */
3780 xcoff_link_hash_traverse (xcoff_hash_table (info
), xcoff_post_gc_symbol
,
3785 if (xcoff_hash_table (info
)->loader_section
3786 && !xcoff_build_loader_section (&ldinfo
, libpath
))
3789 /* Allocate space for the magic sections. */
3790 sec
= xcoff_hash_table (info
)->linkage_section
;
3793 sec
->contents
= bfd_zalloc (output_bfd
, sec
->size
);
3794 if (sec
->contents
== NULL
)
3797 sec
= xcoff_hash_table (info
)->toc_section
;
3800 sec
->contents
= bfd_zalloc (output_bfd
, sec
->size
);
3801 if (sec
->contents
== NULL
)
3804 sec
= xcoff_hash_table (info
)->descriptor_section
;
3807 sec
->contents
= bfd_zalloc (output_bfd
, sec
->size
);
3808 if (sec
->contents
== NULL
)
3812 /* Now that we've done garbage collection, decide which symbols to keep,
3813 and figure out the contents of the .debug section. */
3814 debug_strtab
= xcoff_hash_table (info
)->debug_strtab
;
3816 for (sub
= info
->input_bfds
; sub
!= NULL
; sub
= sub
->link
.next
)
3819 bfd_size_type symcount
;
3822 unsigned int *lineno_counts
;
3823 struct xcoff_link_hash_entry
**sym_hash
;
3824 bfd_byte
*esym
, *esymend
;
3825 bfd_size_type symesz
;
3827 if (sub
->xvec
!= info
->output_bfd
->xvec
)
3830 if ((sub
->flags
& DYNAMIC
) != 0
3831 && !info
->static_link
)
3834 if (! _bfd_coff_get_external_symbols (sub
))
3837 symcount
= obj_raw_syment_count (sub
);
3838 debug_index
= bfd_zalloc (sub
, symcount
* sizeof (long));
3839 if (debug_index
== NULL
)
3841 xcoff_data (sub
)->debug_indices
= debug_index
;
3843 if (info
->strip
== strip_all
3844 || info
->strip
== strip_debugger
3845 || info
->discard
== discard_all
)
3846 /* We're stripping all debugging information, so there's no need
3847 to read SUB's .debug section. */
3851 /* Grab the contents of SUB's .debug section, if any. */
3852 subdeb
= bfd_get_section_by_name (sub
, ".debug");
3853 if (subdeb
!= NULL
&& subdeb
->size
> 0)
3855 /* We use malloc and copy the names into the debug
3856 stringtab, rather than bfd_alloc, because I expect
3857 that, when linking many files together, many of the
3858 strings will be the same. Storing the strings in the
3859 hash table should save space in this case. */
3860 if (!bfd_malloc_and_get_section (sub
, subdeb
, &debug_contents
))
3865 csectpp
= xcoff_data (sub
)->csects
;
3866 lineno_counts
= xcoff_data (sub
)->lineno_counts
;
3867 sym_hash
= obj_xcoff_sym_hashes (sub
);
3868 symesz
= bfd_coff_symesz (sub
);
3869 esym
= (bfd_byte
*) obj_coff_external_syms (sub
);
3870 esymend
= esym
+ symcount
* symesz
;
3872 while (esym
< esymend
)
3874 struct internal_syment sym
;
3875 union internal_auxent aux
;
3880 bfd_coff_swap_sym_in (sub
, esym
, &sym
);
3882 /* Read in the csect information, if any. */
3883 if (CSECT_SYM_P (sym
.n_sclass
))
3885 BFD_ASSERT (sym
.n_numaux
> 0);
3886 bfd_coff_swap_aux_in (sub
, esym
+ symesz
* sym
.n_numaux
,
3887 sym
.n_type
, sym
.n_sclass
,
3888 sym
.n_numaux
- 1, sym
.n_numaux
, &aux
);
3891 /* If this symbol's name is stored in the debug section,
3892 get a pointer to it. */
3893 if (debug_contents
!= NULL
3894 && sym
._n
._n_n
._n_zeroes
== 0
3895 && bfd_coff_symname_in_debug (sub
, &sym
))
3896 name
= (const char *) debug_contents
+ sym
._n
._n_n
._n_offset
;
3900 /* Decide whether to copy this symbol to the output file. */
3902 keep_p
= xcoff_keep_symbol_p (info
, sub
, &sym
, &aux
,
3903 *sym_hash
, csect
, name
);
3908 /* Use a debug_index of -2 to record that a symbol should
3913 /* See whether we should store the symbol name in the
3914 output .debug section. */
3919 indx
= _bfd_stringtab_add (debug_strtab
, name
, TRUE
, TRUE
);
3920 if (indx
== (bfd_size_type
) -1)
3922 *debug_index
= indx
;
3927 (*sym_hash
)->flags
|= XCOFF_ALLOCATED
;
3928 if (*lineno_counts
> 0)
3929 csect
->output_section
->lineno_count
+= *lineno_counts
;
3932 esym
+= (sym
.n_numaux
+ 1) * symesz
;
3933 csectpp
+= sym
.n_numaux
+ 1;
3934 sym_hash
+= sym
.n_numaux
+ 1;
3935 lineno_counts
+= sym
.n_numaux
+ 1;
3936 debug_index
+= sym
.n_numaux
+ 1;
3941 free (debug_contents
);
3942 debug_contents
= NULL
;
3944 /* Clear the size of subdeb, so that it is not included directly
3945 in the output file. */
3949 if (! info
->keep_memory
)
3951 if (! _bfd_coff_free_symbols (sub
))
3956 if (info
->strip
!= strip_all
)
3957 xcoff_hash_table (info
)->debug_section
->size
=
3958 _bfd_stringtab_size (debug_strtab
);
3963 if (ldinfo
.strings
!= NULL
)
3964 free (ldinfo
.strings
);
3965 if (debug_contents
!= NULL
)
3966 free (debug_contents
);
3971 bfd_xcoff_link_generate_rtinit (bfd
*abfd
,
3976 struct bfd_in_memory
*bim
;
3978 bim
= bfd_malloc ((bfd_size_type
) sizeof (* bim
));
3985 abfd
->link
.next
= 0;
3986 abfd
->format
= bfd_object
;
3987 abfd
->iostream
= (void *) bim
;
3988 abfd
->flags
= BFD_IN_MEMORY
;
3989 abfd
->iovec
= &_bfd_memory_iovec
;
3990 abfd
->direction
= write_direction
;
3994 if (! bfd_xcoff_generate_rtinit (abfd
, init
, fini
, rtld
))
3997 /* need to reset to unknown or it will not be read back in correctly */
3998 abfd
->format
= bfd_unknown
;
3999 abfd
->direction
= read_direction
;
4005 /* Return the section that defines H. Return null if no section does. */
4008 xcoff_symbol_section (struct xcoff_link_hash_entry
*h
)
4010 switch (h
->root
.type
)
4012 case bfd_link_hash_defined
:
4013 case bfd_link_hash_defweak
:
4014 return h
->root
.u
.def
.section
;
4016 case bfd_link_hash_common
:
4017 return h
->root
.u
.c
.p
->section
;
4024 /* Add a .loader relocation for input relocation IREL. If the loader
4025 relocation should be against an output section, HSEC points to the
4026 input section that IREL is against, otherwise HSEC is null. H is the
4027 symbol that IREL is against, or null if it isn't against a global symbol.
4028 REFERENCE_BFD is the bfd to use in error messages about the relocation. */
4031 xcoff_create_ldrel (bfd
*output_bfd
, struct xcoff_final_link_info
*flinfo
,
4032 asection
*output_section
, bfd
*reference_bfd
,
4033 struct internal_reloc
*irel
, asection
*hsec
,
4034 struct xcoff_link_hash_entry
*h
)
4036 struct internal_ldrel ldrel
;
4038 ldrel
.l_vaddr
= irel
->r_vaddr
;
4041 const char *secname
;
4043 secname
= hsec
->output_section
->name
;
4044 if (strcmp (secname
, ".text") == 0)
4046 else if (strcmp (secname
, ".data") == 0)
4048 else if (strcmp (secname
, ".bss") == 0)
4052 (*_bfd_error_handler
)
4053 (_("%B: loader reloc in unrecognized section `%s'"),
4054 reference_bfd
, secname
);
4055 bfd_set_error (bfd_error_nonrepresentable_section
);
4063 (*_bfd_error_handler
)
4064 (_("%B: `%s' in loader reloc but not loader sym"),
4065 reference_bfd
, h
->root
.root
.string
);
4066 bfd_set_error (bfd_error_bad_value
);
4069 ldrel
.l_symndx
= h
->ldindx
;
4072 ldrel
.l_symndx
= -(bfd_size_type
) 1;
4074 ldrel
.l_rtype
= (irel
->r_size
<< 8) | irel
->r_type
;
4075 ldrel
.l_rsecnm
= output_section
->target_index
;
4076 if (xcoff_hash_table (flinfo
->info
)->textro
4077 && strcmp (output_section
->name
, ".text") == 0)
4079 (*_bfd_error_handler
)
4080 (_("%B: loader reloc in read-only section %A"),
4081 reference_bfd
, output_section
);
4082 bfd_set_error (bfd_error_invalid_operation
);
4085 bfd_xcoff_swap_ldrel_out (output_bfd
, &ldrel
, flinfo
->ldrel
);
4086 flinfo
->ldrel
+= bfd_xcoff_ldrelsz (output_bfd
);
4090 /* Link an input file into the linker output file. This function
4091 handles all the sections and relocations of the input file at once. */
4094 xcoff_link_input_bfd (struct xcoff_final_link_info
*flinfo
,
4098 const char *strings
;
4099 bfd_size_type syment_base
;
4100 unsigned int n_tmask
;
4101 unsigned int n_btshft
;
4102 bfd_boolean copy
, hash
;
4103 bfd_size_type isymesz
;
4104 bfd_size_type osymesz
;
4105 bfd_size_type linesz
;
4108 struct xcoff_link_hash_entry
**sym_hash
;
4109 struct internal_syment
*isymp
;
4111 unsigned int *lineno_counts
;
4114 unsigned long output_index
;
4118 bfd_boolean keep_syms
;
4121 /* We can just skip DYNAMIC files, unless this is a static link. */
4122 if ((input_bfd
->flags
& DYNAMIC
) != 0
4123 && ! flinfo
->info
->static_link
)
4126 /* Move all the symbols to the output file. */
4127 output_bfd
= flinfo
->output_bfd
;
4129 syment_base
= obj_raw_syment_count (output_bfd
);
4130 isymesz
= bfd_coff_symesz (input_bfd
);
4131 osymesz
= bfd_coff_symesz (output_bfd
);
4132 linesz
= bfd_coff_linesz (input_bfd
);
4133 BFD_ASSERT (linesz
== bfd_coff_linesz (output_bfd
));
4135 n_tmask
= coff_data (input_bfd
)->local_n_tmask
;
4136 n_btshft
= coff_data (input_bfd
)->local_n_btshft
;
4138 /* Define macros so that ISFCN, et. al., macros work correctly. */
4139 #define N_TMASK n_tmask
4140 #define N_BTSHFT n_btshft
4143 if (! flinfo
->info
->keep_memory
)
4146 if (flinfo
->info
->traditional_format
)
4149 if (! _bfd_coff_get_external_symbols (input_bfd
))
4152 /* Make one pass over the symbols and assign indices to symbols that
4153 we have decided to keep. Also use create .loader symbol information
4154 and update information in hash table entries. */
4155 esym
= (bfd_byte
*) obj_coff_external_syms (input_bfd
);
4156 esym_end
= esym
+ obj_raw_syment_count (input_bfd
) * isymesz
;
4157 sym_hash
= obj_xcoff_sym_hashes (input_bfd
);
4158 csectpp
= xcoff_data (input_bfd
)->csects
;
4159 debug_index
= xcoff_data (input_bfd
)->debug_indices
;
4160 isymp
= flinfo
->internal_syms
;
4161 indexp
= flinfo
->sym_indices
;
4162 output_index
= syment_base
;
4163 while (esym
< esym_end
)
4165 union internal_auxent aux
;
4169 bfd_coff_swap_sym_in (input_bfd
, (void *) esym
, (void *) isymp
);
4171 /* Read in the csect information, if any. */
4172 if (CSECT_SYM_P (isymp
->n_sclass
))
4174 BFD_ASSERT (isymp
->n_numaux
> 0);
4175 bfd_coff_swap_aux_in (input_bfd
,
4176 (void *) (esym
+ isymesz
* isymp
->n_numaux
),
4177 isymp
->n_type
, isymp
->n_sclass
,
4178 isymp
->n_numaux
- 1, isymp
->n_numaux
,
4181 smtyp
= SMTYP_SMTYP (aux
.x_csect
.x_smtyp
);
4184 /* If this symbol is in the .loader section, swap out the
4185 .loader symbol information. If this is an external symbol
4186 reference to a defined symbol, though, then wait until we get
4187 to the definition. */
4188 if (EXTERN_SYM_P (isymp
->n_sclass
)
4189 && *sym_hash
!= NULL
4190 && (*sym_hash
)->ldsym
!= NULL
4191 && xcoff_final_definition_p (input_bfd
, *sym_hash
, *csectpp
))
4193 struct xcoff_link_hash_entry
*h
;
4194 struct internal_ldsym
*ldsym
;
4198 if (isymp
->n_scnum
> 0)
4200 ldsym
->l_scnum
= (*csectpp
)->output_section
->target_index
;
4201 ldsym
->l_value
= (isymp
->n_value
4202 + (*csectpp
)->output_section
->vma
4203 + (*csectpp
)->output_offset
4208 ldsym
->l_scnum
= isymp
->n_scnum
;
4209 ldsym
->l_value
= isymp
->n_value
;
4212 ldsym
->l_smtype
= smtyp
;
4213 if (((h
->flags
& XCOFF_DEF_REGULAR
) == 0
4214 && (h
->flags
& XCOFF_DEF_DYNAMIC
) != 0)
4215 || (h
->flags
& XCOFF_IMPORT
) != 0)
4216 ldsym
->l_smtype
|= L_IMPORT
;
4217 if (((h
->flags
& XCOFF_DEF_REGULAR
) != 0
4218 && (h
->flags
& XCOFF_DEF_DYNAMIC
) != 0)
4219 || (h
->flags
& XCOFF_EXPORT
) != 0)
4220 ldsym
->l_smtype
|= L_EXPORT
;
4221 if ((h
->flags
& XCOFF_ENTRY
) != 0)
4222 ldsym
->l_smtype
|= L_ENTRY
;
4223 if (isymp
->n_sclass
== C_AIX_WEAKEXT
)
4224 ldsym
->l_smtype
|= L_WEAK
;
4226 ldsym
->l_smclas
= aux
.x_csect
.x_smclas
;
4228 if (ldsym
->l_ifile
== (bfd_size_type
) -1)
4230 else if (ldsym
->l_ifile
== 0)
4232 if ((ldsym
->l_smtype
& L_IMPORT
) == 0)
4238 if (h
->root
.type
== bfd_link_hash_defined
4239 || h
->root
.type
== bfd_link_hash_defweak
)
4240 impbfd
= h
->root
.u
.def
.section
->owner
;
4241 else if (h
->root
.type
== bfd_link_hash_undefined
4242 || h
->root
.type
== bfd_link_hash_undefweak
)
4243 impbfd
= h
->root
.u
.undef
.abfd
;
4251 BFD_ASSERT (impbfd
->xvec
== flinfo
->output_bfd
->xvec
);
4252 ldsym
->l_ifile
= xcoff_data (impbfd
)->import_file_id
;
4259 BFD_ASSERT (h
->ldindx
>= 0);
4260 bfd_xcoff_swap_ldsym_out (flinfo
->output_bfd
, ldsym
,
4263 * bfd_xcoff_ldsymsz (flinfo
->output_bfd
))));
4266 /* Fill in snentry now that we know the target_index. */
4267 if ((h
->flags
& XCOFF_ENTRY
) != 0
4268 && (h
->root
.type
== bfd_link_hash_defined
4269 || h
->root
.type
== bfd_link_hash_defweak
))
4271 xcoff_data (output_bfd
)->snentry
=
4272 h
->root
.u
.def
.section
->output_section
->target_index
;
4276 add
= 1 + isymp
->n_numaux
;
4278 if (*debug_index
== -2)
4279 /* We've decided to strip this symbol. */
4283 /* Assign the next unused index to this symbol. */
4284 *indexp
= output_index
;
4286 if (EXTERN_SYM_P (isymp
->n_sclass
))
4288 BFD_ASSERT (*sym_hash
!= NULL
);
4289 (*sym_hash
)->indx
= output_index
;
4292 /* If this is a symbol in the TOC which we may have merged
4293 (class XMC_TC), remember the symbol index of the TOC
4295 if (isymp
->n_sclass
== C_HIDEXT
4296 && aux
.x_csect
.x_smclas
== XMC_TC
4297 && *sym_hash
!= NULL
)
4299 BFD_ASSERT (((*sym_hash
)->flags
& XCOFF_SET_TOC
) == 0);
4300 BFD_ASSERT ((*sym_hash
)->toc_section
!= NULL
);
4301 (*sym_hash
)->u
.toc_indx
= output_index
;
4304 output_index
+= add
;
4307 esym
+= add
* isymesz
;
4313 for (--add
; add
> 0; --add
)
4317 /* Now write out the symbols that we decided to keep. */
4319 esym
= (bfd_byte
*) obj_coff_external_syms (input_bfd
);
4320 esym_end
= esym
+ obj_raw_syment_count (input_bfd
) * isymesz
;
4321 sym_hash
= obj_xcoff_sym_hashes (input_bfd
);
4322 isymp
= flinfo
->internal_syms
;
4323 indexp
= flinfo
->sym_indices
;
4324 csectpp
= xcoff_data (input_bfd
)->csects
;
4325 lineno_counts
= xcoff_data (input_bfd
)->lineno_counts
;
4326 debug_index
= xcoff_data (input_bfd
)->debug_indices
;
4327 outsym
= flinfo
->outsyms
;
4330 while (esym
< esym_end
)
4334 add
= 1 + isymp
->n_numaux
;
4337 esym
+= add
* isymesz
;
4340 struct internal_syment isym
;
4343 /* Adjust the symbol in order to output it. */
4345 if (isym
._n
._n_n
._n_zeroes
== 0
4346 && isym
._n
._n_n
._n_offset
!= 0)
4348 /* This symbol has a long name. Enter it in the string
4349 table we are building. If *debug_index != -1, the
4350 name has already been entered in the .debug section. */
4351 if (*debug_index
>= 0)
4352 isym
._n
._n_n
._n_offset
= *debug_index
;
4358 name
= _bfd_coff_internal_syment_name (input_bfd
, &isym
, NULL
);
4362 indx
= _bfd_stringtab_add (flinfo
->strtab
, name
, hash
, copy
);
4363 if (indx
== (bfd_size_type
) -1)
4365 isym
._n
._n_n
._n_offset
= STRING_SIZE_SIZE
+ indx
;
4369 /* Make __rtinit C_HIDEXT rather than C_EXT. This avoids
4370 multiple definition problems when linking a shared object
4371 statically. (The native linker doesn't enter __rtinit into
4372 the normal table at all, but having a local symbol can make
4373 the objdump output easier to read.) */
4374 if (isym
.n_sclass
== C_EXT
4376 && ((*sym_hash
)->flags
& XCOFF_RTINIT
) != 0)
4377 isym
.n_sclass
= C_HIDEXT
;
4379 /* The value of a C_FILE symbol is the symbol index of the
4380 next C_FILE symbol. The value of the last C_FILE symbol
4381 is -1. We try to get this right, below, just before we
4382 write the symbols out, but in the general case we may
4383 have to write the symbol out twice. */
4384 if (isym
.n_sclass
== C_FILE
)
4386 if (flinfo
->last_file_index
!= -1
4387 && flinfo
->last_file
.n_value
!= (bfd_vma
) *indexp
)
4389 /* We must correct the value of the last C_FILE entry. */
4390 flinfo
->last_file
.n_value
= *indexp
;
4391 if ((bfd_size_type
) flinfo
->last_file_index
>= syment_base
)
4393 /* The last C_FILE symbol is in this input file. */
4394 bfd_coff_swap_sym_out (output_bfd
,
4395 (void *) &flinfo
->last_file
,
4396 (void *) (flinfo
->outsyms
4397 + ((flinfo
->last_file_index
4403 /* We have already written out the last C_FILE
4404 symbol. We need to write it out again. We
4405 borrow *outsym temporarily. */
4408 bfd_coff_swap_sym_out (output_bfd
,
4409 (void *) &flinfo
->last_file
,
4412 pos
= obj_sym_filepos (output_bfd
);
4413 pos
+= flinfo
->last_file_index
* osymesz
;
4414 if (bfd_seek (output_bfd
, pos
, SEEK_SET
) != 0
4415 || (bfd_bwrite (outsym
, osymesz
, output_bfd
)
4421 flinfo
->last_file_index
= *indexp
;
4422 flinfo
->last_file
= isym
;
4425 /* The value of a C_BINCL or C_EINCL symbol is a file offset
4426 into the line numbers. We update the symbol values when
4427 we handle the line numbers. */
4428 if (isym
.n_sclass
== C_BINCL
4429 || isym
.n_sclass
== C_EINCL
)
4431 isym
.n_value
= flinfo
->line_filepos
;
4434 /* The value of a C_BSTAT symbol is the symbol table
4435 index of the containing csect. */
4436 else if (isym
.n_sclass
== C_BSTAT
)
4440 indx
= isym
.n_value
;
4441 if (indx
< obj_raw_syment_count (input_bfd
))
4445 symindx
= flinfo
->sym_indices
[indx
];
4449 isym
.n_value
= symindx
;
4452 else if (isym
.n_sclass
!= C_ESTAT
4453 && isym
.n_sclass
!= C_DECL
4454 && isym
.n_scnum
> 0)
4456 isym
.n_scnum
= (*csectpp
)->output_section
->target_index
;
4457 isym
.n_value
+= ((*csectpp
)->output_section
->vma
4458 + (*csectpp
)->output_offset
4462 /* Output the symbol. */
4463 bfd_coff_swap_sym_out (output_bfd
, (void *) &isym
, (void *) outsym
);
4468 for (i
= 0; i
< isymp
->n_numaux
&& esym
< esym_end
; i
++)
4470 union internal_auxent aux
;
4472 bfd_coff_swap_aux_in (input_bfd
, (void *) esym
, isymp
->n_type
,
4473 isymp
->n_sclass
, i
, isymp
->n_numaux
,
4476 if (isymp
->n_sclass
== C_FILE
)
4478 /* This is the file name (or some comment put in by
4479 the compiler). If it is long, we must put it in
4480 the string table. */
4481 if (aux
.x_file
.x_n
.x_zeroes
== 0
4482 && aux
.x_file
.x_n
.x_offset
!= 0)
4484 const char *filename
;
4487 BFD_ASSERT (aux
.x_file
.x_n
.x_offset
4488 >= STRING_SIZE_SIZE
);
4489 if (strings
== NULL
)
4491 strings
= _bfd_coff_read_string_table (input_bfd
);
4492 if (strings
== NULL
)
4495 if ((bfd_size_type
) aux
.x_file
.x_n
.x_offset
>= obj_coff_strings_len (input_bfd
))
4496 filename
= _("<corrupt>");
4498 filename
= strings
+ aux
.x_file
.x_n
.x_offset
;
4499 indx
= _bfd_stringtab_add (flinfo
->strtab
, filename
,
4501 if (indx
== (bfd_size_type
) -1)
4503 aux
.x_file
.x_n
.x_offset
= STRING_SIZE_SIZE
+ indx
;
4506 else if (CSECT_SYM_P (isymp
->n_sclass
)
4507 && i
+ 1 == isymp
->n_numaux
)
4510 /* We don't support type checking. I don't know if
4512 aux
.x_csect
.x_parmhash
= 0;
4513 /* I don't think anybody uses these fields, but we'd
4514 better clobber them just in case. */
4515 aux
.x_csect
.x_stab
= 0;
4516 aux
.x_csect
.x_snstab
= 0;
4518 if (SMTYP_SMTYP (aux
.x_csect
.x_smtyp
) == XTY_LD
)
4522 indx
= aux
.x_csect
.x_scnlen
.l
;
4523 if (indx
< obj_raw_syment_count (input_bfd
))
4527 symindx
= flinfo
->sym_indices
[indx
];
4530 aux
.x_csect
.x_scnlen
.l
= 0;
4534 aux
.x_csect
.x_scnlen
.l
= symindx
;
4539 else if (isymp
->n_sclass
!= C_STAT
|| isymp
->n_type
!= T_NULL
)
4543 if (ISFCN (isymp
->n_type
)
4544 || ISTAG (isymp
->n_sclass
)
4545 || isymp
->n_sclass
== C_BLOCK
4546 || isymp
->n_sclass
== C_FCN
)
4548 indx
= aux
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
;
4550 && indx
< obj_raw_syment_count (input_bfd
))
4552 /* We look forward through the symbol for
4553 the index of the next symbol we are going
4554 to include. I don't know if this is
4556 while (flinfo
->sym_indices
[indx
] < 0
4557 && indx
< obj_raw_syment_count (input_bfd
))
4559 if (indx
>= obj_raw_syment_count (input_bfd
))
4560 indx
= output_index
;
4562 indx
= flinfo
->sym_indices
[indx
];
4563 aux
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
= indx
;
4568 indx
= aux
.x_sym
.x_tagndx
.l
;
4569 if (indx
> 0 && indx
< obj_raw_syment_count (input_bfd
))
4573 symindx
= flinfo
->sym_indices
[indx
];
4575 aux
.x_sym
.x_tagndx
.l
= 0;
4577 aux
.x_sym
.x_tagndx
.l
= symindx
;
4582 /* Copy over the line numbers, unless we are stripping
4583 them. We do this on a symbol by symbol basis in
4584 order to more easily handle garbage collection. */
4585 if (CSECT_SYM_P (isymp
->n_sclass
)
4587 && isymp
->n_numaux
> 1
4588 && ISFCN (isymp
->n_type
)
4589 && aux
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
!= 0)
4591 if (*lineno_counts
== 0)
4592 aux
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
= 0;
4595 asection
*enclosing
;
4596 unsigned int enc_count
;
4597 bfd_signed_vma linoff
;
4598 struct internal_lineno lin
;
4605 /* Read in the enclosing section's line-number
4606 information, if we haven't already. */
4608 enclosing
= xcoff_section_data (abfd
, o
)->enclosing
;
4609 enc_count
= xcoff_section_data (abfd
, o
)->lineno_count
;
4610 if (oline
!= enclosing
)
4612 pos
= enclosing
->line_filepos
;
4613 amt
= linesz
* enc_count
;
4614 if (bfd_seek (input_bfd
, pos
, SEEK_SET
) != 0
4615 || (bfd_bread (flinfo
->linenos
, amt
, input_bfd
)
4621 /* Copy across the first entry, adjusting its
4623 linoff
= (aux
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
4624 - enclosing
->line_filepos
);
4625 linp
= flinfo
->linenos
+ linoff
;
4626 bfd_coff_swap_lineno_in (input_bfd
, linp
, &lin
);
4627 lin
.l_addr
.l_symndx
= *indexp
;
4628 bfd_coff_swap_lineno_out (output_bfd
, &lin
, linp
);
4630 /* Copy the other entries, adjusting their addresses. */
4631 linpend
= linp
+ *lineno_counts
* linesz
;
4632 offset
= (o
->output_section
->vma
4635 for (linp
+= linesz
; linp
< linpend
; linp
+= linesz
)
4637 bfd_coff_swap_lineno_in (input_bfd
, linp
, &lin
);
4638 lin
.l_addr
.l_paddr
+= offset
;
4639 bfd_coff_swap_lineno_out (output_bfd
, &lin
, linp
);
4642 /* Write out the entries we've just processed. */
4643 pos
= (o
->output_section
->line_filepos
4644 + o
->output_section
->lineno_count
* linesz
);
4645 amt
= linesz
* *lineno_counts
;
4646 if (bfd_seek (output_bfd
, pos
, SEEK_SET
) != 0
4647 || bfd_bwrite (flinfo
->linenos
+ linoff
,
4648 amt
, output_bfd
) != amt
)
4650 o
->output_section
->lineno_count
+= *lineno_counts
;
4652 /* Record the offset of the symbol's line numbers
4653 in the output file. */
4654 aux
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
= pos
;
4658 struct internal_syment
*iisp
, *iispend
;
4661 bfd_vma range_start
, range_end
;
4664 /* Update any C_BINCL or C_EINCL symbols
4665 that refer to a line number in the
4666 range we just output. */
4667 iisp
= flinfo
->internal_syms
;
4668 iispend
= iisp
+ obj_raw_syment_count (input_bfd
);
4669 iindp
= flinfo
->sym_indices
;
4670 oos
= flinfo
->outsyms
;
4671 range_start
= enclosing
->line_filepos
+ linoff
;
4672 range_end
= range_start
+ *lineno_counts
* linesz
;
4673 while (iisp
< iispend
)
4676 && (iisp
->n_sclass
== C_BINCL
4677 || iisp
->n_sclass
== C_EINCL
)
4678 && iisp
->n_value
>= range_start
4679 && iisp
->n_value
< range_end
)
4681 struct internal_syment iis
;
4683 bfd_coff_swap_sym_in (output_bfd
, oos
, &iis
);
4684 iis
.n_value
= (iisp
->n_value
4687 bfd_coff_swap_sym_out (output_bfd
,
4692 iiadd
= 1 + iisp
->n_numaux
;
4694 oos
+= iiadd
* osymesz
;
4702 bfd_coff_swap_aux_out (output_bfd
, (void *) &aux
, isymp
->n_type
,
4703 isymp
->n_sclass
, i
, isymp
->n_numaux
,
4714 lineno_counts
+= add
;
4718 /* If we swapped out a C_FILE symbol, guess that the next C_FILE
4719 symbol will be the first symbol in the next input file. In the
4720 normal case, this will save us from writing out the C_FILE symbol
4722 if (flinfo
->last_file_index
!= -1
4723 && (bfd_size_type
) flinfo
->last_file_index
>= syment_base
)
4725 flinfo
->last_file
.n_value
= output_index
;
4726 bfd_coff_swap_sym_out (output_bfd
, (void *) &flinfo
->last_file
,
4727 (void *) (flinfo
->outsyms
4728 + ((flinfo
->last_file_index
- syment_base
)
4732 /* Write the modified symbols to the output file. */
4733 if (outsym
> flinfo
->outsyms
)
4735 file_ptr pos
= obj_sym_filepos (output_bfd
) + syment_base
* osymesz
;
4736 bfd_size_type amt
= outsym
- flinfo
->outsyms
;
4737 if (bfd_seek (output_bfd
, pos
, SEEK_SET
) != 0
4738 || bfd_bwrite (flinfo
->outsyms
, amt
, output_bfd
) != amt
)
4741 BFD_ASSERT ((obj_raw_syment_count (output_bfd
)
4742 + (outsym
- flinfo
->outsyms
) / osymesz
)
4745 obj_raw_syment_count (output_bfd
) = output_index
;
4748 /* Don't let the linker relocation routines discard the symbols. */
4749 keep_syms
= obj_coff_keep_syms (input_bfd
);
4750 obj_coff_keep_syms (input_bfd
) = TRUE
;
4752 /* Relocate the contents of each section. */
4753 for (o
= input_bfd
->sections
; o
!= NULL
; o
= o
->next
)
4757 if (! o
->linker_mark
)
4758 /* This section was omitted from the link. */
4761 if ((o
->flags
& SEC_HAS_CONTENTS
) == 0
4763 || (o
->flags
& SEC_IN_MEMORY
) != 0)
4766 /* We have set filepos correctly for the sections we created to
4767 represent csects, so bfd_get_section_contents should work. */
4768 if (coff_section_data (input_bfd
, o
) != NULL
4769 && coff_section_data (input_bfd
, o
)->contents
!= NULL
)
4770 contents
= coff_section_data (input_bfd
, o
)->contents
;
4773 bfd_size_type sz
= o
->rawsize
? o
->rawsize
: o
->size
;
4774 if (!bfd_get_section_contents (input_bfd
, o
, flinfo
->contents
, 0, sz
))
4776 contents
= flinfo
->contents
;
4779 if ((o
->flags
& SEC_RELOC
) != 0)
4782 struct internal_reloc
*internal_relocs
;
4783 struct internal_reloc
*irel
;
4785 struct internal_reloc
*irelend
;
4786 struct xcoff_link_hash_entry
**rel_hash
;
4789 /* Read in the relocs. */
4790 target_index
= o
->output_section
->target_index
;
4791 internal_relocs
= (xcoff_read_internal_relocs
4792 (input_bfd
, o
, FALSE
, flinfo
->external_relocs
,
4794 (flinfo
->section_info
[target_index
].relocs
4795 + o
->output_section
->reloc_count
)));
4796 if (internal_relocs
== NULL
)
4799 /* Call processor specific code to relocate the section
4801 if (! bfd_coff_relocate_section (output_bfd
, flinfo
->info
,
4805 flinfo
->internal_syms
,
4806 xcoff_data (input_bfd
)->csects
))
4809 offset
= o
->output_section
->vma
+ o
->output_offset
- o
->vma
;
4810 irel
= internal_relocs
;
4811 irelend
= irel
+ o
->reloc_count
;
4812 rel_hash
= (flinfo
->section_info
[target_index
].rel_hashes
4813 + o
->output_section
->reloc_count
);
4814 for (; irel
< irelend
; irel
++, rel_hash
++)
4816 struct xcoff_link_hash_entry
*h
= NULL
;
4820 /* Adjust the reloc address and symbol index. */
4822 irel
->r_vaddr
+= offset
;
4824 r_symndx
= irel
->r_symndx
;
4829 h
= obj_xcoff_sym_hashes (input_bfd
)[r_symndx
];
4831 if (r_symndx
!= -1 && flinfo
->info
->strip
!= strip_all
)
4834 && h
->smclas
!= XMC_TD
4835 && (irel
->r_type
== R_TOC
4836 || irel
->r_type
== R_GL
4837 || irel
->r_type
== R_TCL
4838 || irel
->r_type
== R_TRL
4839 || irel
->r_type
== R_TRLA
))
4841 /* This is a TOC relative reloc with a symbol
4842 attached. The symbol should be the one which
4843 this reloc is for. We want to make this
4844 reloc against the TOC address of the symbol,
4845 not the symbol itself. */
4846 BFD_ASSERT (h
->toc_section
!= NULL
);
4847 BFD_ASSERT ((h
->flags
& XCOFF_SET_TOC
) == 0);
4848 if (h
->u
.toc_indx
!= -1)
4849 irel
->r_symndx
= h
->u
.toc_indx
;
4852 struct xcoff_toc_rel_hash
*n
;
4853 struct xcoff_link_section_info
*si
;
4857 n
= bfd_alloc (flinfo
->output_bfd
, amt
);
4860 si
= flinfo
->section_info
+ target_index
;
4861 n
->next
= si
->toc_rel_hashes
;
4864 si
->toc_rel_hashes
= n
;
4869 /* This is a global symbol. */
4871 irel
->r_symndx
= h
->indx
;
4874 /* This symbol is being written at the end
4875 of the file, and we do not yet know the
4876 symbol index. We save the pointer to the
4877 hash table entry in the rel_hash list.
4878 We set the indx field to -2 to indicate
4879 that this symbol must not be stripped. */
4888 indx
= flinfo
->sym_indices
[r_symndx
];
4892 struct internal_syment
*is
;
4894 /* Relocations against a TC0 TOC anchor are
4895 automatically transformed to be against
4896 the TOC anchor in the output file. */
4897 is
= flinfo
->internal_syms
+ r_symndx
;
4898 if (is
->n_sclass
== C_HIDEXT
4899 && is
->n_numaux
> 0)
4902 union internal_auxent aux
;
4906 obj_coff_external_syms (input_bfd
))
4907 + ((r_symndx
+ is
->n_numaux
)
4909 bfd_coff_swap_aux_in (input_bfd
, auxptr
,
4910 is
->n_type
, is
->n_sclass
,
4914 if (SMTYP_SMTYP (aux
.x_csect
.x_smtyp
) == XTY_SD
4915 && aux
.x_csect
.x_smclas
== XMC_TC0
)
4916 indx
= flinfo
->toc_symindx
;
4921 irel
->r_symndx
= indx
;
4925 struct internal_syment
*is
;
4928 char buf
[SYMNMLEN
+ 1];
4930 /* This reloc is against a symbol we are
4931 stripping. It would be possible to handle
4932 this case, but I don't think it's worth it. */
4933 is
= flinfo
->internal_syms
+ r_symndx
;
4935 if (is
->n_sclass
!= C_DWARF
)
4937 name
= (_bfd_coff_internal_syment_name
4938 (input_bfd
, is
, buf
));
4943 (*flinfo
->info
->callbacks
->unattached_reloc
)
4944 (flinfo
->info
, name
,
4945 input_bfd
, o
, irel
->r_vaddr
);
4951 if ((o
->flags
& SEC_DEBUGGING
) == 0
4952 && xcoff_need_ldrel_p (flinfo
->info
, irel
, h
))
4959 sec
= xcoff_data (input_bfd
)->csects
[r_symndx
];
4961 sec
= xcoff_symbol_section (h
);
4962 if (!xcoff_create_ldrel (output_bfd
, flinfo
,
4963 o
->output_section
, input_bfd
,
4969 o
->output_section
->reloc_count
+= o
->reloc_count
;
4972 /* Write out the modified section contents. */
4973 if (! bfd_set_section_contents (output_bfd
, o
->output_section
,
4974 contents
, (file_ptr
) o
->output_offset
,
4979 obj_coff_keep_syms (input_bfd
) = keep_syms
;
4981 if (! flinfo
->info
->keep_memory
)
4983 if (! _bfd_coff_free_symbols (input_bfd
))
4993 /* Sort relocs by VMA. This is called via qsort. */
4996 xcoff_sort_relocs (const void * p1
, const void * p2
)
4998 const struct internal_reloc
*r1
= (const struct internal_reloc
*) p1
;
4999 const struct internal_reloc
*r2
= (const struct internal_reloc
*) p2
;
5001 if (r1
->r_vaddr
> r2
->r_vaddr
)
5003 else if (r1
->r_vaddr
< r2
->r_vaddr
)
5009 /* Return true if section SEC is a TOC section. */
5011 static inline bfd_boolean
5012 xcoff_toc_section_p (asection
*sec
)
5017 if (name
[0] == '.' && name
[1] == 't')
5021 if (name
[3] == '0' && name
[4] == 0)
5026 if (name
[2] == 'd' && name
[3] == 0)
5032 /* See if the link requires a TOC (it usually does!). If so, find a
5033 good place to put the TOC anchor csect, and write out the associated
5037 xcoff_find_tc0 (bfd
*output_bfd
, struct xcoff_final_link_info
*flinfo
)
5039 bfd_vma toc_start
, toc_end
, start
, end
, best_address
;
5043 struct internal_syment irsym
;
5044 union internal_auxent iraux
;
5048 /* Set [TOC_START, TOC_END) to the range of the TOC. Record the
5049 index of a csect at the beginning of the TOC. */
5050 toc_start
= ~(bfd_vma
) 0;
5053 for (input_bfd
= flinfo
->info
->input_bfds
;
5055 input_bfd
= input_bfd
->link
.next
)
5056 for (sec
= input_bfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
5057 if ((sec
->flags
& SEC_MARK
) != 0 && xcoff_toc_section_p (sec
))
5059 start
= sec
->output_section
->vma
+ sec
->output_offset
;
5060 if (toc_start
> start
)
5063 section_index
= sec
->output_section
->target_index
;
5066 end
= start
+ sec
->size
;
5071 /* There's no need for a TC0 symbol if we don't have a TOC. */
5072 if (toc_end
< toc_start
)
5074 xcoff_data (output_bfd
)->toc
= toc_start
;
5078 if (toc_end
- toc_start
< 0x8000)
5079 /* Every TOC csect can be accessed from TOC_START. */
5080 best_address
= toc_start
;
5083 /* Find the lowest TOC csect that is still within range of TOC_END. */
5084 best_address
= toc_end
;
5085 for (input_bfd
= flinfo
->info
->input_bfds
;
5087 input_bfd
= input_bfd
->link
.next
)
5088 for (sec
= input_bfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
5089 if ((sec
->flags
& SEC_MARK
) != 0 && xcoff_toc_section_p (sec
))
5091 start
= sec
->output_section
->vma
+ sec
->output_offset
;
5092 if (start
< best_address
5093 && start
+ 0x8000 >= toc_end
)
5095 best_address
= start
;
5096 section_index
= sec
->output_section
->target_index
;
5100 /* Make sure that the start of the TOC is also within range. */
5101 if (best_address
> toc_start
+ 0x8000)
5103 (*_bfd_error_handler
)
5104 (_("TOC overflow: 0x%lx > 0x10000; try -mminimal-toc "
5106 (unsigned long) (toc_end
- toc_start
));
5107 bfd_set_error (bfd_error_file_too_big
);
5112 /* Record the chosen TOC value. */
5113 flinfo
->toc_symindx
= obj_raw_syment_count (output_bfd
);
5114 xcoff_data (output_bfd
)->toc
= best_address
;
5115 xcoff_data (output_bfd
)->sntoc
= section_index
;
5117 /* Fill out the TC0 symbol. */
5118 if (!bfd_xcoff_put_symbol_name (output_bfd
, flinfo
->info
, flinfo
->strtab
,
5121 irsym
.n_value
= best_address
;
5122 irsym
.n_scnum
= section_index
;
5123 irsym
.n_sclass
= C_HIDEXT
;
5124 irsym
.n_type
= T_NULL
;
5126 bfd_coff_swap_sym_out (output_bfd
, &irsym
, flinfo
->outsyms
);
5128 /* Fill out the auxillary csect information. */
5129 memset (&iraux
, 0, sizeof iraux
);
5130 iraux
.x_csect
.x_smtyp
= XTY_SD
;
5131 iraux
.x_csect
.x_smclas
= XMC_TC0
;
5132 iraux
.x_csect
.x_scnlen
.l
= 0;
5133 bfd_coff_swap_aux_out (output_bfd
, &iraux
, T_NULL
, C_HIDEXT
, 0, 1,
5134 flinfo
->outsyms
+ bfd_coff_symesz (output_bfd
));
5136 /* Write the contents to the file. */
5137 pos
= obj_sym_filepos (output_bfd
);
5138 pos
+= obj_raw_syment_count (output_bfd
) * bfd_coff_symesz (output_bfd
);
5139 size
= 2 * bfd_coff_symesz (output_bfd
);
5140 if (bfd_seek (output_bfd
, pos
, SEEK_SET
) != 0
5141 || bfd_bwrite (flinfo
->outsyms
, size
, output_bfd
) != size
)
5143 obj_raw_syment_count (output_bfd
) += 2;
5148 /* Write out a non-XCOFF global symbol. */
5151 xcoff_write_global_symbol (struct bfd_hash_entry
*bh
, void * inf
)
5153 struct xcoff_link_hash_entry
*h
= (struct xcoff_link_hash_entry
*) bh
;
5154 struct xcoff_final_link_info
*flinfo
= (struct xcoff_final_link_info
*) inf
;
5157 struct internal_syment isym
;
5158 union internal_auxent aux
;
5163 output_bfd
= flinfo
->output_bfd
;
5164 outsym
= flinfo
->outsyms
;
5166 if (h
->root
.type
== bfd_link_hash_warning
)
5168 h
= (struct xcoff_link_hash_entry
*) h
->root
.u
.i
.link
;
5169 if (h
->root
.type
== bfd_link_hash_new
)
5173 /* If this symbol was garbage collected, just skip it. */
5174 if (xcoff_hash_table (flinfo
->info
)->gc
5175 && (h
->flags
& XCOFF_MARK
) == 0)
5178 /* If we need a .loader section entry, write it out. */
5179 if (h
->ldsym
!= NULL
)
5181 struct internal_ldsym
*ldsym
;
5186 if (h
->root
.type
== bfd_link_hash_undefined
5187 || h
->root
.type
== bfd_link_hash_undefweak
)
5191 ldsym
->l_scnum
= N_UNDEF
;
5192 ldsym
->l_smtype
= XTY_ER
;
5193 impbfd
= h
->root
.u
.undef
.abfd
;
5196 else if (h
->root
.type
== bfd_link_hash_defined
5197 || h
->root
.type
== bfd_link_hash_defweak
)
5201 sec
= h
->root
.u
.def
.section
;
5202 ldsym
->l_value
= (sec
->output_section
->vma
5203 + sec
->output_offset
5204 + h
->root
.u
.def
.value
);
5205 ldsym
->l_scnum
= sec
->output_section
->target_index
;
5206 ldsym
->l_smtype
= XTY_SD
;
5207 impbfd
= sec
->owner
;
5213 if (((h
->flags
& XCOFF_DEF_REGULAR
) == 0
5214 && (h
->flags
& XCOFF_DEF_DYNAMIC
) != 0)
5215 || (h
->flags
& XCOFF_IMPORT
) != 0)
5217 Import symbols are defined so the check above will make
5218 the l_smtype XTY_SD. But this is not correct, it should
5220 ldsym
->l_smtype
|= L_IMPORT
;
5222 if (((h
->flags
& XCOFF_DEF_REGULAR
) != 0
5223 && (h
->flags
& XCOFF_DEF_DYNAMIC
) != 0)
5224 || (h
->flags
& XCOFF_EXPORT
) != 0)
5225 ldsym
->l_smtype
|= L_EXPORT
;
5227 if ((h
->flags
& XCOFF_ENTRY
) != 0)
5228 ldsym
->l_smtype
|= L_ENTRY
;
5230 if ((h
->flags
& XCOFF_RTINIT
) != 0)
5231 ldsym
->l_smtype
= XTY_SD
;
5233 ldsym
->l_smclas
= h
->smclas
;
5235 if (ldsym
->l_smtype
& L_IMPORT
)
5237 if ((h
->root
.type
== bfd_link_hash_defined
5238 || h
->root
.type
== bfd_link_hash_defweak
)
5239 && (h
->root
.u
.def
.value
!= 0))
5240 ldsym
->l_smclas
= XMC_XO
;
5242 else if ((h
->flags
& (XCOFF_SYSCALL32
| XCOFF_SYSCALL64
)) ==
5243 (XCOFF_SYSCALL32
| XCOFF_SYSCALL64
))
5244 ldsym
->l_smclas
= XMC_SV3264
;
5246 else if (h
->flags
& XCOFF_SYSCALL32
)
5247 ldsym
->l_smclas
= XMC_SV
;
5249 else if (h
->flags
& XCOFF_SYSCALL64
)
5250 ldsym
->l_smclas
= XMC_SV64
;
5253 if (ldsym
->l_ifile
== -(bfd_size_type
) 1)
5257 else if (ldsym
->l_ifile
== 0)
5259 if ((ldsym
->l_smtype
& L_IMPORT
) == 0)
5261 else if (impbfd
== NULL
)
5265 BFD_ASSERT (impbfd
->xvec
== output_bfd
->xvec
);
5266 ldsym
->l_ifile
= xcoff_data (impbfd
)->import_file_id
;
5272 BFD_ASSERT (h
->ldindx
>= 0);
5274 bfd_xcoff_swap_ldsym_out (output_bfd
, ldsym
,
5277 * bfd_xcoff_ldsymsz(flinfo
->output_bfd
)));
5281 /* If this symbol needs global linkage code, write it out. */
5282 if (h
->root
.type
== bfd_link_hash_defined
5283 && (h
->root
.u
.def
.section
5284 == xcoff_hash_table (flinfo
->info
)->linkage_section
))
5290 p
= h
->root
.u
.def
.section
->contents
+ h
->root
.u
.def
.value
;
5292 /* The first instruction in the global linkage code loads a
5293 specific TOC element. */
5294 tocoff
= (h
->descriptor
->toc_section
->output_section
->vma
5295 + h
->descriptor
->toc_section
->output_offset
5296 - xcoff_data (output_bfd
)->toc
);
5298 if ((h
->descriptor
->flags
& XCOFF_SET_TOC
) != 0)
5299 tocoff
+= h
->descriptor
->u
.toc_offset
;
5301 /* The first instruction in the glink code needs to be
5302 cooked to to hold the correct offset in the toc. The
5303 rest are just output raw. */
5304 bfd_put_32 (output_bfd
,
5305 bfd_xcoff_glink_code(output_bfd
, 0) | (tocoff
& 0xffff), p
);
5307 /* Start with i == 1 to get past the first instruction done above
5308 The /4 is because the glink code is in bytes and we are going
5310 for (i
= 1; i
< bfd_xcoff_glink_code_size(output_bfd
) / 4; i
++)
5311 bfd_put_32 (output_bfd
,
5312 (bfd_vma
) bfd_xcoff_glink_code(output_bfd
, i
),
5316 /* If we created a TOC entry for this symbol, write out the required
5318 if ((h
->flags
& XCOFF_SET_TOC
) != 0)
5323 struct internal_reloc
*irel
;
5324 struct internal_syment irsym
;
5325 union internal_auxent iraux
;
5327 tocsec
= h
->toc_section
;
5328 osec
= tocsec
->output_section
;
5329 oindx
= osec
->target_index
;
5330 irel
= flinfo
->section_info
[oindx
].relocs
+ osec
->reloc_count
;
5331 irel
->r_vaddr
= (osec
->vma
5332 + tocsec
->output_offset
5336 irel
->r_symndx
= h
->indx
;
5340 irel
->r_symndx
= obj_raw_syment_count (output_bfd
);
5343 BFD_ASSERT (h
->ldindx
>= 0);
5345 /* Initialize the aux union here instead of closer to when it is
5346 written out below because the length of the csect depends on
5347 whether the output is 32 or 64 bit. */
5348 memset (&iraux
, 0, sizeof iraux
);
5349 iraux
.x_csect
.x_smtyp
= XTY_SD
;
5350 /* iraux.x_csect.x_scnlen.l = 4 or 8, see below. */
5351 iraux
.x_csect
.x_smclas
= XMC_TC
;
5353 /* 32 bit uses a 32 bit R_POS to do the relocations
5354 64 bit uses a 64 bit R_POS to do the relocations
5356 Also needs to change the csect size : 4 for 32 bit, 8 for 64 bit
5358 Which one is determined by the backend. */
5359 if (bfd_xcoff_is_xcoff64 (output_bfd
))
5362 iraux
.x_csect
.x_scnlen
.l
= 8;
5364 else if (bfd_xcoff_is_xcoff32 (output_bfd
))
5367 iraux
.x_csect
.x_scnlen
.l
= 4;
5372 irel
->r_type
= R_POS
;
5373 flinfo
->section_info
[oindx
].rel_hashes
[osec
->reloc_count
] = NULL
;
5374 ++osec
->reloc_count
;
5376 if (!xcoff_create_ldrel (output_bfd
, flinfo
, osec
,
5377 output_bfd
, irel
, NULL
, h
))
5380 /* We need to emit a symbol to define a csect which holds
5382 if (flinfo
->info
->strip
!= strip_all
)
5384 result
= bfd_xcoff_put_symbol_name (output_bfd
, flinfo
->info
,
5386 &irsym
, h
->root
.root
.string
);
5390 irsym
.n_value
= irel
->r_vaddr
;
5391 irsym
.n_scnum
= osec
->target_index
;
5392 irsym
.n_sclass
= C_HIDEXT
;
5393 irsym
.n_type
= T_NULL
;
5396 bfd_coff_swap_sym_out (output_bfd
, (void *) &irsym
, (void *) outsym
);
5397 outsym
+= bfd_coff_symesz (output_bfd
);
5399 /* Note : iraux is initialized above. */
5400 bfd_coff_swap_aux_out (output_bfd
, (void *) &iraux
, T_NULL
, C_HIDEXT
,
5401 0, 1, (void *) outsym
);
5402 outsym
+= bfd_coff_auxesz (output_bfd
);
5406 /* We aren't going to write out the symbols below, so we
5407 need to write them out now. */
5408 pos
= obj_sym_filepos (output_bfd
);
5409 pos
+= (obj_raw_syment_count (output_bfd
)
5410 * bfd_coff_symesz (output_bfd
));
5411 amt
= outsym
- flinfo
->outsyms
;
5412 if (bfd_seek (output_bfd
, pos
, SEEK_SET
) != 0
5413 || bfd_bwrite (flinfo
->outsyms
, amt
, output_bfd
) != amt
)
5415 obj_raw_syment_count (output_bfd
) +=
5416 (outsym
- flinfo
->outsyms
) / bfd_coff_symesz (output_bfd
);
5418 outsym
= flinfo
->outsyms
;
5423 /* If this symbol is a specially defined function descriptor, write
5424 it out. The first word is the address of the function code
5425 itself, the second word is the address of the TOC, and the third
5429 The addresses for the 32 bit will take 4 bytes and the addresses
5430 for 64 bit will take 8 bytes. Similar for the relocs. This type
5431 of logic was also done above to create a TOC entry in
5432 xcoff_write_global_symbol. */
5433 if ((h
->flags
& XCOFF_DESCRIPTOR
) != 0
5434 && h
->root
.type
== bfd_link_hash_defined
5435 && (h
->root
.u
.def
.section
5436 == xcoff_hash_table (flinfo
->info
)->descriptor_section
))
5442 struct xcoff_link_hash_entry
*hentry
;
5444 struct internal_reloc
*irel
;
5446 unsigned int reloc_size
, byte_size
;
5448 if (bfd_xcoff_is_xcoff64 (output_bfd
))
5453 else if (bfd_xcoff_is_xcoff32 (output_bfd
))
5461 sec
= h
->root
.u
.def
.section
;
5462 osec
= sec
->output_section
;
5463 oindx
= osec
->target_index
;
5464 p
= sec
->contents
+ h
->root
.u
.def
.value
;
5466 hentry
= h
->descriptor
;
5467 BFD_ASSERT (hentry
!= NULL
5468 && (hentry
->root
.type
== bfd_link_hash_defined
5469 || hentry
->root
.type
== bfd_link_hash_defweak
));
5470 esec
= hentry
->root
.u
.def
.section
;
5472 irel
= flinfo
->section_info
[oindx
].relocs
+ osec
->reloc_count
;
5473 irel
->r_vaddr
= (osec
->vma
5474 + sec
->output_offset
5475 + h
->root
.u
.def
.value
);
5476 irel
->r_symndx
= esec
->output_section
->target_index
;
5477 irel
->r_type
= R_POS
;
5478 irel
->r_size
= reloc_size
;
5479 flinfo
->section_info
[oindx
].rel_hashes
[osec
->reloc_count
] = NULL
;
5480 ++osec
->reloc_count
;
5482 if (!xcoff_create_ldrel (output_bfd
, flinfo
, osec
,
5483 output_bfd
, irel
, esec
, NULL
))
5486 /* There are three items to write out,
5487 the address of the code
5488 the address of the toc anchor
5489 the environment pointer.
5490 We are ignoring the environment pointer. So set it to zero. */
5491 if (bfd_xcoff_is_xcoff64 (output_bfd
))
5493 bfd_put_64 (output_bfd
,
5494 (esec
->output_section
->vma
+ esec
->output_offset
5495 + hentry
->root
.u
.def
.value
),
5497 bfd_put_64 (output_bfd
, xcoff_data (output_bfd
)->toc
, p
+ 8);
5498 bfd_put_64 (output_bfd
, (bfd_vma
) 0, p
+ 16);
5503 This logic was already called above so the error case where
5504 the backend is neither has already been checked. */
5505 bfd_put_32 (output_bfd
,
5506 (esec
->output_section
->vma
+ esec
->output_offset
5507 + hentry
->root
.u
.def
.value
),
5509 bfd_put_32 (output_bfd
, xcoff_data (output_bfd
)->toc
, p
+ 4);
5510 bfd_put_32 (output_bfd
, (bfd_vma
) 0, p
+ 8);
5513 tsec
= coff_section_from_bfd_index (output_bfd
,
5514 xcoff_data (output_bfd
)->sntoc
);
5517 irel
->r_vaddr
= (osec
->vma
5518 + sec
->output_offset
5519 + h
->root
.u
.def
.value
5521 irel
->r_symndx
= tsec
->output_section
->target_index
;
5522 irel
->r_type
= R_POS
;
5523 irel
->r_size
= reloc_size
;
5524 flinfo
->section_info
[oindx
].rel_hashes
[osec
->reloc_count
] = NULL
;
5525 ++osec
->reloc_count
;
5527 if (!xcoff_create_ldrel (output_bfd
, flinfo
, osec
,
5528 output_bfd
, irel
, tsec
, NULL
))
5532 if (h
->indx
>= 0 || flinfo
->info
->strip
== strip_all
)
5534 BFD_ASSERT (outsym
== flinfo
->outsyms
);
5539 && (flinfo
->info
->strip
== strip_all
5540 || (flinfo
->info
->strip
== strip_some
5541 && bfd_hash_lookup (flinfo
->info
->keep_hash
, h
->root
.root
.string
,
5542 FALSE
, FALSE
) == NULL
)))
5544 BFD_ASSERT (outsym
== flinfo
->outsyms
);
5549 && (h
->flags
& (XCOFF_REF_REGULAR
| XCOFF_DEF_REGULAR
)) == 0)
5551 BFD_ASSERT (outsym
== flinfo
->outsyms
);
5555 memset (&aux
, 0, sizeof aux
);
5557 h
->indx
= obj_raw_syment_count (output_bfd
);
5559 result
= bfd_xcoff_put_symbol_name (output_bfd
, flinfo
->info
, flinfo
->strtab
,
5560 &isym
, h
->root
.root
.string
);
5564 if (h
->root
.type
== bfd_link_hash_undefined
5565 || h
->root
.type
== bfd_link_hash_undefweak
)
5568 isym
.n_scnum
= N_UNDEF
;
5569 if (h
->root
.type
== bfd_link_hash_undefweak
5570 && C_WEAKEXT
== C_AIX_WEAKEXT
)
5571 isym
.n_sclass
= C_WEAKEXT
;
5573 isym
.n_sclass
= C_EXT
;
5574 aux
.x_csect
.x_smtyp
= XTY_ER
;
5576 else if ((h
->root
.type
== bfd_link_hash_defined
5577 || h
->root
.type
== bfd_link_hash_defweak
)
5578 && h
->smclas
== XMC_XO
)
5580 BFD_ASSERT (bfd_is_abs_section (h
->root
.u
.def
.section
));
5581 isym
.n_value
= h
->root
.u
.def
.value
;
5582 isym
.n_scnum
= N_UNDEF
;
5583 if (h
->root
.type
== bfd_link_hash_undefweak
5584 && C_WEAKEXT
== C_AIX_WEAKEXT
)
5585 isym
.n_sclass
= C_WEAKEXT
;
5587 isym
.n_sclass
= C_EXT
;
5588 aux
.x_csect
.x_smtyp
= XTY_ER
;
5590 else if (h
->root
.type
== bfd_link_hash_defined
5591 || h
->root
.type
== bfd_link_hash_defweak
)
5593 struct xcoff_link_size_list
*l
;
5595 isym
.n_value
= (h
->root
.u
.def
.section
->output_section
->vma
5596 + h
->root
.u
.def
.section
->output_offset
5597 + h
->root
.u
.def
.value
);
5598 if (bfd_is_abs_section (h
->root
.u
.def
.section
->output_section
))
5599 isym
.n_scnum
= N_ABS
;
5601 isym
.n_scnum
= h
->root
.u
.def
.section
->output_section
->target_index
;
5602 isym
.n_sclass
= C_HIDEXT
;
5603 aux
.x_csect
.x_smtyp
= XTY_SD
;
5605 if ((h
->flags
& XCOFF_HAS_SIZE
) != 0)
5607 for (l
= xcoff_hash_table (flinfo
->info
)->size_list
;
5613 aux
.x_csect
.x_scnlen
.l
= l
->size
;
5619 else if (h
->root
.type
== bfd_link_hash_common
)
5621 isym
.n_value
= (h
->root
.u
.c
.p
->section
->output_section
->vma
5622 + h
->root
.u
.c
.p
->section
->output_offset
);
5623 isym
.n_scnum
= h
->root
.u
.c
.p
->section
->output_section
->target_index
;
5624 isym
.n_sclass
= C_EXT
;
5625 aux
.x_csect
.x_smtyp
= XTY_CM
;
5626 aux
.x_csect
.x_scnlen
.l
= h
->root
.u
.c
.size
;
5631 isym
.n_type
= T_NULL
;
5634 bfd_coff_swap_sym_out (output_bfd
, (void *) &isym
, (void *) outsym
);
5635 outsym
+= bfd_coff_symesz (output_bfd
);
5637 aux
.x_csect
.x_smclas
= h
->smclas
;
5638 bfd_coff_swap_aux_out (output_bfd
, (void *) &aux
, T_NULL
, isym
.n_sclass
, 0, 1,
5640 outsym
+= bfd_coff_auxesz (output_bfd
);
5642 if ((h
->root
.type
== bfd_link_hash_defined
5643 || h
->root
.type
== bfd_link_hash_defweak
)
5644 && h
->smclas
!= XMC_XO
)
5646 /* We just output an SD symbol. Now output an LD symbol. */
5649 if (h
->root
.type
== bfd_link_hash_undefweak
5650 && C_WEAKEXT
== C_AIX_WEAKEXT
)
5651 isym
.n_sclass
= C_WEAKEXT
;
5653 isym
.n_sclass
= C_EXT
;
5654 bfd_coff_swap_sym_out (output_bfd
, (void *) &isym
, (void *) outsym
);
5655 outsym
+= bfd_coff_symesz (output_bfd
);
5657 aux
.x_csect
.x_smtyp
= XTY_LD
;
5658 aux
.x_csect
.x_scnlen
.l
= obj_raw_syment_count (output_bfd
);
5659 bfd_coff_swap_aux_out (output_bfd
, (void *) &aux
, T_NULL
, C_EXT
, 0, 1,
5661 outsym
+= bfd_coff_auxesz (output_bfd
);
5664 pos
= obj_sym_filepos (output_bfd
);
5665 pos
+= obj_raw_syment_count (output_bfd
) * bfd_coff_symesz (output_bfd
);
5666 amt
= outsym
- flinfo
->outsyms
;
5667 if (bfd_seek (output_bfd
, pos
, SEEK_SET
) != 0
5668 || bfd_bwrite (flinfo
->outsyms
, amt
, output_bfd
) != amt
)
5670 obj_raw_syment_count (output_bfd
) +=
5671 (outsym
- flinfo
->outsyms
) / bfd_coff_symesz (output_bfd
);
5676 /* Handle a link order which is supposed to generate a reloc. */
5679 xcoff_reloc_link_order (bfd
*output_bfd
,
5680 struct xcoff_final_link_info
*flinfo
,
5681 asection
*output_section
,
5682 struct bfd_link_order
*link_order
)
5684 reloc_howto_type
*howto
;
5685 struct xcoff_link_hash_entry
*h
;
5689 struct internal_reloc
*irel
;
5690 struct xcoff_link_hash_entry
**rel_hash_ptr
;
5692 if (link_order
->type
== bfd_section_reloc_link_order
)
5693 /* We need to somehow locate a symbol in the right section. The
5694 symbol must either have a value of zero, or we must adjust
5695 the addend by the value of the symbol. FIXME: Write this
5696 when we need it. The old linker couldn't handle this anyhow. */
5699 howto
= bfd_reloc_type_lookup (output_bfd
, link_order
->u
.reloc
.p
->reloc
);
5702 bfd_set_error (bfd_error_bad_value
);
5706 h
= ((struct xcoff_link_hash_entry
*)
5707 bfd_wrapped_link_hash_lookup (output_bfd
, flinfo
->info
,
5708 link_order
->u
.reloc
.p
->u
.name
,
5709 FALSE
, FALSE
, TRUE
));
5712 (*flinfo
->info
->callbacks
->unattached_reloc
)
5713 (flinfo
->info
, link_order
->u
.reloc
.p
->u
.name
, NULL
, NULL
, (bfd_vma
) 0);
5717 hsec
= xcoff_symbol_section (h
);
5718 if (h
->root
.type
== bfd_link_hash_defined
5719 || h
->root
.type
== bfd_link_hash_defweak
)
5720 hval
= h
->root
.u
.def
.value
;
5724 addend
= link_order
->u
.reloc
.p
->addend
;
5726 addend
+= (hsec
->output_section
->vma
5727 + hsec
->output_offset
5734 bfd_reloc_status_type rstat
;
5737 size
= bfd_get_reloc_size (howto
);
5738 buf
= bfd_zmalloc (size
);
5739 if (buf
== NULL
&& size
!= 0)
5742 rstat
= _bfd_relocate_contents (howto
, output_bfd
, addend
, buf
);
5748 case bfd_reloc_outofrange
:
5750 case bfd_reloc_overflow
:
5751 (*flinfo
->info
->callbacks
->reloc_overflow
)
5752 (flinfo
->info
, NULL
, link_order
->u
.reloc
.p
->u
.name
,
5753 howto
->name
, addend
, NULL
, NULL
, (bfd_vma
) 0);
5756 ok
= bfd_set_section_contents (output_bfd
, output_section
, (void *) buf
,
5757 (file_ptr
) link_order
->offset
, size
);
5763 /* Store the reloc information in the right place. It will get
5764 swapped and written out at the end of the final_link routine. */
5765 irel
= (flinfo
->section_info
[output_section
->target_index
].relocs
5766 + output_section
->reloc_count
);
5767 rel_hash_ptr
= (flinfo
->section_info
[output_section
->target_index
].rel_hashes
5768 + output_section
->reloc_count
);
5770 memset (irel
, 0, sizeof (struct internal_reloc
));
5771 *rel_hash_ptr
= NULL
;
5773 irel
->r_vaddr
= output_section
->vma
+ link_order
->offset
;
5776 irel
->r_symndx
= h
->indx
;
5779 /* Set the index to -2 to force this symbol to get written out. */
5785 irel
->r_type
= howto
->type
;
5786 irel
->r_size
= howto
->bitsize
- 1;
5787 if (howto
->complain_on_overflow
== complain_overflow_signed
)
5788 irel
->r_size
|= 0x80;
5790 ++output_section
->reloc_count
;
5792 /* Now output the reloc to the .loader section. */
5793 if (xcoff_hash_table (flinfo
->info
)->loader_section
)
5795 if (!xcoff_create_ldrel (output_bfd
, flinfo
, output_section
,
5796 output_bfd
, irel
, hsec
, h
))
5803 /* Do the final link step. */
5806 _bfd_xcoff_bfd_final_link (bfd
*abfd
, struct bfd_link_info
*info
)
5808 bfd_size_type symesz
;
5809 struct xcoff_final_link_info flinfo
;
5811 struct bfd_link_order
*p
;
5812 bfd_size_type max_contents_size
;
5813 bfd_size_type max_sym_count
;
5814 bfd_size_type max_lineno_count
;
5815 bfd_size_type max_reloc_count
;
5816 bfd_size_type max_output_reloc_count
;
5817 file_ptr rel_filepos
;
5819 file_ptr line_filepos
;
5820 unsigned int linesz
;
5822 bfd_byte
*external_relocs
= NULL
;
5823 char strbuf
[STRING_SIZE_SIZE
];
5827 if (bfd_link_pic (info
))
5828 abfd
->flags
|= DYNAMIC
;
5830 symesz
= bfd_coff_symesz (abfd
);
5833 flinfo
.output_bfd
= abfd
;
5834 flinfo
.strtab
= NULL
;
5835 flinfo
.section_info
= NULL
;
5836 flinfo
.last_file_index
= -1;
5837 flinfo
.toc_symindx
= -1;
5838 flinfo
.internal_syms
= NULL
;
5839 flinfo
.sym_indices
= NULL
;
5840 flinfo
.outsyms
= NULL
;
5841 flinfo
.linenos
= NULL
;
5842 flinfo
.contents
= NULL
;
5843 flinfo
.external_relocs
= NULL
;
5845 if (xcoff_hash_table (info
)->loader_section
)
5847 flinfo
.ldsym
= (xcoff_hash_table (info
)->loader_section
->contents
5848 + bfd_xcoff_ldhdrsz (abfd
));
5849 flinfo
.ldrel
= (xcoff_hash_table (info
)->loader_section
->contents
5850 + bfd_xcoff_ldhdrsz (abfd
)
5851 + (xcoff_hash_table (info
)->ldhdr
.l_nsyms
5852 * bfd_xcoff_ldsymsz (abfd
)));
5856 flinfo
.ldsym
= NULL
;
5857 flinfo
.ldrel
= NULL
;
5860 xcoff_data (abfd
)->coff
.link_info
= info
;
5862 flinfo
.strtab
= _bfd_stringtab_init ();
5863 if (flinfo
.strtab
== NULL
)
5866 /* Count the relocation entries required for the output file.
5867 (We've already counted the line numbers.) Determine a few
5869 max_contents_size
= 0;
5870 max_lineno_count
= 0;
5871 max_reloc_count
= 0;
5872 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
5875 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
5877 if (p
->type
== bfd_indirect_link_order
)
5881 sec
= p
->u
.indirect
.section
;
5883 /* Mark all sections which are to be included in the
5884 link. This will normally be every section. We need
5885 to do this so that we can identify any sections which
5886 the linker has decided to not include. */
5887 sec
->linker_mark
= TRUE
;
5889 o
->reloc_count
+= sec
->reloc_count
;
5891 if ((sec
->flags
& SEC_IN_MEMORY
) == 0)
5893 if (sec
->rawsize
> max_contents_size
)
5894 max_contents_size
= sec
->rawsize
;
5895 if (sec
->size
> max_contents_size
)
5896 max_contents_size
= sec
->size
;
5898 if (coff_section_data (sec
->owner
, sec
) != NULL
5899 && xcoff_section_data (sec
->owner
, sec
) != NULL
5900 && (xcoff_section_data (sec
->owner
, sec
)->lineno_count
5901 > max_lineno_count
))
5903 xcoff_section_data (sec
->owner
, sec
)->lineno_count
;
5904 if (sec
->reloc_count
> max_reloc_count
)
5905 max_reloc_count
= sec
->reloc_count
;
5907 else if (p
->type
== bfd_section_reloc_link_order
5908 || p
->type
== bfd_symbol_reloc_link_order
)
5913 /* Compute the file positions for all the sections. */
5914 if (abfd
->output_has_begun
)
5916 if (xcoff_hash_table (info
)->file_align
!= 0)
5923 file_align
= xcoff_hash_table (info
)->file_align
;
5924 if (file_align
!= 0)
5926 bfd_boolean saw_contents
;
5930 /* Insert .pad sections before every section which has
5931 contents and is loaded, if it is preceded by some other
5932 section which has contents and is loaded. */
5933 saw_contents
= TRUE
;
5934 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
5936 if (strcmp (o
->name
, ".pad") == 0)
5937 saw_contents
= FALSE
;
5938 else if ((o
->flags
& SEC_HAS_CONTENTS
) != 0
5939 && (o
->flags
& SEC_LOAD
) != 0)
5942 saw_contents
= TRUE
;
5947 /* Create a pad section and place it before the section
5948 that needs padding. This requires unlinking and
5949 relinking the bfd's section list. */
5951 n
= bfd_make_section_anyway_with_flags (abfd
, ".pad",
5953 n
->alignment_power
= 0;
5955 bfd_section_list_remove (abfd
, n
);
5956 bfd_section_list_insert_before (abfd
, o
, n
);
5957 saw_contents
= FALSE
;
5962 /* Reset the section indices after inserting the new
5965 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
5968 o
->target_index
= indx
;
5970 BFD_ASSERT ((unsigned int) indx
== abfd
->section_count
);
5972 /* Work out appropriate sizes for the .pad sections to force
5973 each section to land on a page boundary. This bit of
5974 code knows what compute_section_file_positions is going
5976 sofar
= bfd_coff_filhsz (abfd
);
5977 sofar
+= bfd_coff_aoutsz (abfd
);
5978 sofar
+= abfd
->section_count
* bfd_coff_scnhsz (abfd
);
5979 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
5980 if ((bfd_xcoff_is_reloc_count_overflow
5981 (abfd
, (bfd_vma
) o
->reloc_count
))
5982 || (bfd_xcoff_is_lineno_count_overflow
5983 (abfd
, (bfd_vma
) o
->lineno_count
)))
5984 /* 64 does not overflow, need to check if 32 does */
5985 sofar
+= bfd_coff_scnhsz (abfd
);
5987 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
5989 if (strcmp (o
->name
, ".pad") == 0)
5993 BFD_ASSERT (o
->size
== 0);
5994 pageoff
= sofar
& (file_align
- 1);
5997 o
->size
= file_align
- pageoff
;
5998 sofar
+= file_align
- pageoff
;
5999 o
->flags
|= SEC_HAS_CONTENTS
;
6004 if ((o
->flags
& SEC_HAS_CONTENTS
) != 0)
6005 sofar
+= BFD_ALIGN (o
->size
,
6006 1 << o
->alignment_power
);
6011 if (! bfd_coff_compute_section_file_positions (abfd
))
6015 /* Allocate space for the pointers we need to keep for the relocs. */
6019 /* We use section_count + 1, rather than section_count, because
6020 the target_index fields are 1 based. */
6021 amt
= abfd
->section_count
+ 1;
6022 amt
*= sizeof (struct xcoff_link_section_info
);
6023 flinfo
.section_info
= bfd_malloc (amt
);
6024 if (flinfo
.section_info
== NULL
)
6026 for (i
= 0; i
<= abfd
->section_count
; i
++)
6028 flinfo
.section_info
[i
].relocs
= NULL
;
6029 flinfo
.section_info
[i
].rel_hashes
= NULL
;
6030 flinfo
.section_info
[i
].toc_rel_hashes
= NULL
;
6034 /* Set the file positions for the relocs. */
6035 rel_filepos
= obj_relocbase (abfd
);
6036 relsz
= bfd_coff_relsz (abfd
);
6037 max_output_reloc_count
= 0;
6038 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
6040 if (o
->reloc_count
== 0)
6044 /* A stripped file has no relocs. However, we still
6045 allocate the buffers, so that later code doesn't have to
6046 worry about whether we are stripping or not. */
6047 if (info
->strip
== strip_all
)
6051 o
->flags
|= SEC_RELOC
;
6052 o
->rel_filepos
= rel_filepos
;
6053 rel_filepos
+= o
->reloc_count
* relsz
;
6056 /* We don't know the indices of global symbols until we have
6057 written out all the local symbols. For each section in
6058 the output file, we keep an array of pointers to hash
6059 table entries. Each entry in the array corresponds to a
6060 reloc. When we find a reloc against a global symbol, we
6061 set the corresponding entry in this array so that we can
6062 fix up the symbol index after we have written out all the
6065 Because of this problem, we also keep the relocs in
6066 memory until the end of the link. This wastes memory.
6067 We could backpatch the file later, I suppose, although it
6069 amt
= o
->reloc_count
;
6070 amt
*= sizeof (struct internal_reloc
);
6071 flinfo
.section_info
[o
->target_index
].relocs
= bfd_malloc (amt
);
6073 amt
= o
->reloc_count
;
6074 amt
*= sizeof (struct xcoff_link_hash_entry
*);
6075 flinfo
.section_info
[o
->target_index
].rel_hashes
= bfd_malloc (amt
);
6077 if (flinfo
.section_info
[o
->target_index
].relocs
== NULL
6078 || flinfo
.section_info
[o
->target_index
].rel_hashes
== NULL
)
6081 if (o
->reloc_count
> max_output_reloc_count
)
6082 max_output_reloc_count
= o
->reloc_count
;
6086 /* We now know the size of the relocs, so we can determine the file
6087 positions of the line numbers. */
6088 line_filepos
= rel_filepos
;
6089 flinfo
.line_filepos
= line_filepos
;
6090 linesz
= bfd_coff_linesz (abfd
);
6091 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
6093 if (o
->lineno_count
== 0)
6094 o
->line_filepos
= 0;
6097 o
->line_filepos
= line_filepos
;
6098 line_filepos
+= o
->lineno_count
* linesz
;
6101 /* Reset the reloc and lineno counts, so that we can use them to
6102 count the number of entries we have output so far. */
6104 o
->lineno_count
= 0;
6107 obj_sym_filepos (abfd
) = line_filepos
;
6109 /* Figure out the largest number of symbols in an input BFD. Take
6110 the opportunity to clear the output_has_begun fields of all the
6111 input BFD's. We want at least 6 symbols, since that is the
6112 number which xcoff_write_global_symbol may need. */
6114 for (sub
= info
->input_bfds
; sub
!= NULL
; sub
= sub
->link
.next
)
6118 sub
->output_has_begun
= FALSE
;
6119 sz
= obj_raw_syment_count (sub
);
6120 if (sz
> max_sym_count
)
6124 /* Allocate some buffers used while linking. */
6125 amt
= max_sym_count
* sizeof (struct internal_syment
);
6126 flinfo
.internal_syms
= bfd_malloc (amt
);
6128 amt
= max_sym_count
* sizeof (long);
6129 flinfo
.sym_indices
= bfd_malloc (amt
);
6131 amt
= (max_sym_count
+ 1) * symesz
;
6132 flinfo
.outsyms
= bfd_malloc (amt
);
6134 amt
= max_lineno_count
* bfd_coff_linesz (abfd
);
6135 flinfo
.linenos
= bfd_malloc (amt
);
6137 amt
= max_contents_size
;
6138 flinfo
.contents
= bfd_malloc (amt
);
6140 amt
= max_reloc_count
* relsz
;
6141 flinfo
.external_relocs
= bfd_malloc (amt
);
6143 if ((flinfo
.internal_syms
== NULL
&& max_sym_count
> 0)
6144 || (flinfo
.sym_indices
== NULL
&& max_sym_count
> 0)
6145 || flinfo
.outsyms
== NULL
6146 || (flinfo
.linenos
== NULL
&& max_lineno_count
> 0)
6147 || (flinfo
.contents
== NULL
&& max_contents_size
> 0)
6148 || (flinfo
.external_relocs
== NULL
&& max_reloc_count
> 0))
6151 obj_raw_syment_count (abfd
) = 0;
6153 /* Find a TOC symbol, if we need one. */
6154 if (!xcoff_find_tc0 (abfd
, &flinfo
))
6157 /* We now know the position of everything in the file, except that
6158 we don't know the size of the symbol table and therefore we don't
6159 know where the string table starts. We just build the string
6160 table in memory as we go along. We process all the relocations
6161 for a single input file at once. */
6162 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
6164 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
6166 if (p
->type
== bfd_indirect_link_order
6167 && p
->u
.indirect
.section
->owner
->xvec
== abfd
->xvec
)
6169 sub
= p
->u
.indirect
.section
->owner
;
6170 if (! sub
->output_has_begun
)
6172 if (! xcoff_link_input_bfd (&flinfo
, sub
))
6174 sub
->output_has_begun
= TRUE
;
6177 else if (p
->type
== bfd_section_reloc_link_order
6178 || p
->type
== bfd_symbol_reloc_link_order
)
6180 if (! xcoff_reloc_link_order (abfd
, &flinfo
, o
, p
))
6185 if (! _bfd_default_link_order (abfd
, info
, o
, p
))
6191 /* Free up the buffers used by xcoff_link_input_bfd. */
6192 if (flinfo
.internal_syms
!= NULL
)
6194 free (flinfo
.internal_syms
);
6195 flinfo
.internal_syms
= NULL
;
6197 if (flinfo
.sym_indices
!= NULL
)
6199 free (flinfo
.sym_indices
);
6200 flinfo
.sym_indices
= NULL
;
6202 if (flinfo
.linenos
!= NULL
)
6204 free (flinfo
.linenos
);
6205 flinfo
.linenos
= NULL
;
6207 if (flinfo
.contents
!= NULL
)
6209 free (flinfo
.contents
);
6210 flinfo
.contents
= NULL
;
6212 if (flinfo
.external_relocs
!= NULL
)
6214 free (flinfo
.external_relocs
);
6215 flinfo
.external_relocs
= NULL
;
6218 /* The value of the last C_FILE symbol is supposed to be -1. Write
6220 if (flinfo
.last_file_index
!= -1)
6222 flinfo
.last_file
.n_value
= -(bfd_vma
) 1;
6223 bfd_coff_swap_sym_out (abfd
, (void *) &flinfo
.last_file
,
6224 (void *) flinfo
.outsyms
);
6225 pos
= obj_sym_filepos (abfd
) + flinfo
.last_file_index
* symesz
;
6226 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0
6227 || bfd_bwrite (flinfo
.outsyms
, symesz
, abfd
) != symesz
)
6231 /* Write out all the global symbols which do not come from XCOFF
6233 bfd_hash_traverse (&info
->hash
->table
, xcoff_write_global_symbol
, &flinfo
);
6235 if (flinfo
.outsyms
!= NULL
)
6237 free (flinfo
.outsyms
);
6238 flinfo
.outsyms
= NULL
;
6241 /* Now that we have written out all the global symbols, we know the
6242 symbol indices to use for relocs against them, and we can finally
6243 write out the relocs. */
6244 amt
= max_output_reloc_count
* relsz
;
6245 external_relocs
= bfd_malloc (amt
);
6246 if (external_relocs
== NULL
&& max_output_reloc_count
!= 0)
6249 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
6251 struct internal_reloc
*irel
;
6252 struct internal_reloc
*irelend
;
6253 struct xcoff_link_hash_entry
**rel_hash
;
6254 struct xcoff_toc_rel_hash
*toc_rel_hash
;
6256 bfd_size_type rel_size
;
6258 /* A stripped file has no relocs. */
6259 if (info
->strip
== strip_all
)
6265 if (o
->reloc_count
== 0)
6268 irel
= flinfo
.section_info
[o
->target_index
].relocs
;
6269 irelend
= irel
+ o
->reloc_count
;
6270 rel_hash
= flinfo
.section_info
[o
->target_index
].rel_hashes
;
6271 for (; irel
< irelend
; irel
++, rel_hash
++)
6273 if (*rel_hash
!= NULL
)
6275 if ((*rel_hash
)->indx
< 0)
6277 (*info
->callbacks
->unattached_reloc
)
6278 (info
, (*rel_hash
)->root
.root
.string
,
6279 NULL
, o
, irel
->r_vaddr
);
6280 (*rel_hash
)->indx
= 0;
6282 irel
->r_symndx
= (*rel_hash
)->indx
;
6286 for (toc_rel_hash
= flinfo
.section_info
[o
->target_index
].toc_rel_hashes
;
6287 toc_rel_hash
!= NULL
;
6288 toc_rel_hash
= toc_rel_hash
->next
)
6290 if (toc_rel_hash
->h
->u
.toc_indx
< 0)
6292 (*info
->callbacks
->unattached_reloc
)
6293 (info
, toc_rel_hash
->h
->root
.root
.string
,
6294 NULL
, o
, toc_rel_hash
->rel
->r_vaddr
);
6295 toc_rel_hash
->h
->u
.toc_indx
= 0;
6297 toc_rel_hash
->rel
->r_symndx
= toc_rel_hash
->h
->u
.toc_indx
;
6300 /* XCOFF requires that the relocs be sorted by address. We tend
6301 to produce them in the order in which their containing csects
6302 appear in the symbol table, which is not necessarily by
6303 address. So we sort them here. There may be a better way to
6305 qsort ((void *) flinfo
.section_info
[o
->target_index
].relocs
,
6306 o
->reloc_count
, sizeof (struct internal_reloc
),
6309 irel
= flinfo
.section_info
[o
->target_index
].relocs
;
6310 irelend
= irel
+ o
->reloc_count
;
6311 erel
= external_relocs
;
6312 for (; irel
< irelend
; irel
++, rel_hash
++, erel
+= relsz
)
6313 bfd_coff_swap_reloc_out (abfd
, (void *) irel
, (void *) erel
);
6315 rel_size
= relsz
* o
->reloc_count
;
6316 if (bfd_seek (abfd
, o
->rel_filepos
, SEEK_SET
) != 0
6317 || bfd_bwrite ((void *) external_relocs
, rel_size
, abfd
) != rel_size
)
6321 if (external_relocs
!= NULL
)
6323 free (external_relocs
);
6324 external_relocs
= NULL
;
6327 /* Free up the section information. */
6328 if (flinfo
.section_info
!= NULL
)
6332 for (i
= 0; i
< abfd
->section_count
; i
++)
6334 if (flinfo
.section_info
[i
].relocs
!= NULL
)
6335 free (flinfo
.section_info
[i
].relocs
);
6336 if (flinfo
.section_info
[i
].rel_hashes
!= NULL
)
6337 free (flinfo
.section_info
[i
].rel_hashes
);
6339 free (flinfo
.section_info
);
6340 flinfo
.section_info
= NULL
;
6343 /* Write out the loader section contents. */
6344 o
= xcoff_hash_table (info
)->loader_section
;
6347 BFD_ASSERT ((bfd_byte
*) flinfo
.ldrel
6348 == (xcoff_hash_table (info
)->loader_section
->contents
6349 + xcoff_hash_table (info
)->ldhdr
.l_impoff
));
6350 if (!bfd_set_section_contents (abfd
, o
->output_section
, o
->contents
,
6351 (file_ptr
) o
->output_offset
, o
->size
))
6355 /* Write out the magic sections. */
6356 o
= xcoff_hash_table (info
)->linkage_section
;
6358 && ! bfd_set_section_contents (abfd
, o
->output_section
, o
->contents
,
6359 (file_ptr
) o
->output_offset
,
6362 o
= xcoff_hash_table (info
)->toc_section
;
6364 && ! bfd_set_section_contents (abfd
, o
->output_section
, o
->contents
,
6365 (file_ptr
) o
->output_offset
,
6368 o
= xcoff_hash_table (info
)->descriptor_section
;
6370 && ! bfd_set_section_contents (abfd
, o
->output_section
, o
->contents
,
6371 (file_ptr
) o
->output_offset
,
6375 /* Write out the string table. */
6376 pos
= obj_sym_filepos (abfd
) + obj_raw_syment_count (abfd
) * symesz
;
6377 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0)
6380 _bfd_stringtab_size (flinfo
.strtab
) + STRING_SIZE_SIZE
,
6382 amt
= STRING_SIZE_SIZE
;
6383 if (bfd_bwrite (strbuf
, amt
, abfd
) != amt
)
6385 if (! _bfd_stringtab_emit (abfd
, flinfo
.strtab
))
6388 _bfd_stringtab_free (flinfo
.strtab
);
6390 /* Write out the debugging string table. */
6391 o
= xcoff_hash_table (info
)->debug_section
;
6394 struct bfd_strtab_hash
*debug_strtab
;
6396 debug_strtab
= xcoff_hash_table (info
)->debug_strtab
;
6397 BFD_ASSERT (o
->output_section
->size
- o
->output_offset
6398 >= _bfd_stringtab_size (debug_strtab
));
6399 pos
= o
->output_section
->filepos
+ o
->output_offset
;
6400 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0)
6402 if (! _bfd_stringtab_emit (abfd
, debug_strtab
))
6406 /* Setting bfd_get_symcount to 0 will cause write_object_contents to
6407 not try to write out the symbols. */
6408 bfd_get_symcount (abfd
) = 0;
6413 if (flinfo
.strtab
!= NULL
)
6414 _bfd_stringtab_free (flinfo
.strtab
);
6416 if (flinfo
.section_info
!= NULL
)
6420 for (i
= 0; i
< abfd
->section_count
; i
++)
6422 if (flinfo
.section_info
[i
].relocs
!= NULL
)
6423 free (flinfo
.section_info
[i
].relocs
);
6424 if (flinfo
.section_info
[i
].rel_hashes
!= NULL
)
6425 free (flinfo
.section_info
[i
].rel_hashes
);
6427 free (flinfo
.section_info
);
6430 if (flinfo
.internal_syms
!= NULL
)
6431 free (flinfo
.internal_syms
);
6432 if (flinfo
.sym_indices
!= NULL
)
6433 free (flinfo
.sym_indices
);
6434 if (flinfo
.outsyms
!= NULL
)
6435 free (flinfo
.outsyms
);
6436 if (flinfo
.linenos
!= NULL
)
6437 free (flinfo
.linenos
);
6438 if (flinfo
.contents
!= NULL
)
6439 free (flinfo
.contents
);
6440 if (flinfo
.external_relocs
!= NULL
)
6441 free (flinfo
.external_relocs
);
6442 if (external_relocs
!= NULL
)
6443 free (external_relocs
);