1 /* linker.c -- BFD linker routines
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
5 Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
35 The linker uses three special entry points in the BFD target
36 vector. It is not necessary to write special routines for
37 these entry points when creating a new BFD back end, since
38 generic versions are provided. However, writing them can
39 speed up linking and make it use significantly less runtime
42 The first routine creates a hash table used by the other
43 routines. The second routine adds the symbols from an object
44 file to the hash table. The third routine takes all the
45 object files and links them together to create the output
46 file. These routines are designed so that the linker proper
47 does not need to know anything about the symbols in the object
48 files that it is linking. The linker merely arranges the
49 sections as directed by the linker script and lets BFD handle
50 the details of symbols and relocs.
52 The second routine and third routines are passed a pointer to
53 a <<struct bfd_link_info>> structure (defined in
54 <<bfdlink.h>>) which holds information relevant to the link,
55 including the linker hash table (which was created by the
56 first routine) and a set of callback functions to the linker
59 The generic linker routines are in <<linker.c>>, and use the
60 header file <<genlink.h>>. As of this writing, the only back
61 ends which have implemented versions of these routines are
62 a.out (in <<aoutx.h>>) and ECOFF (in <<ecoff.c>>). The a.out
63 routines are used as examples throughout this section.
66 @* Creating a Linker Hash Table::
67 @* Adding Symbols to the Hash Table::
68 @* Performing the Final Link::
72 Creating a Linker Hash Table, Adding Symbols to the Hash Table, Linker Functions, Linker Functions
74 Creating a linker hash table
76 @cindex _bfd_link_hash_table_create in target vector
77 @cindex target vector (_bfd_link_hash_table_create)
78 The linker routines must create a hash table, which must be
79 derived from <<struct bfd_link_hash_table>> described in
80 <<bfdlink.c>>. @xref{Hash Tables}, for information on how to
81 create a derived hash table. This entry point is called using
82 the target vector of the linker output file.
84 The <<_bfd_link_hash_table_create>> entry point must allocate
85 and initialize an instance of the desired hash table. If the
86 back end does not require any additional information to be
87 stored with the entries in the hash table, the entry point may
88 simply create a <<struct bfd_link_hash_table>>. Most likely,
89 however, some additional information will be needed.
91 For example, with each entry in the hash table the a.out
92 linker keeps the index the symbol has in the final output file
93 (this index number is used so that when doing a relocatable
94 link the symbol index used in the output file can be quickly
95 filled in when copying over a reloc). The a.out linker code
96 defines the required structures and functions for a hash table
97 derived from <<struct bfd_link_hash_table>>. The a.out linker
98 hash table is created by the function
99 <<NAME(aout,link_hash_table_create)>>; it simply allocates
100 space for the hash table, initializes it, and returns a
103 When writing the linker routines for a new back end, you will
104 generally not know exactly which fields will be required until
105 you have finished. You should simply create a new hash table
106 which defines no additional fields, and then simply add fields
107 as they become necessary.
110 Adding Symbols to the Hash Table, Performing the Final Link, Creating a Linker Hash Table, Linker Functions
112 Adding symbols to the hash table
114 @cindex _bfd_link_add_symbols in target vector
115 @cindex target vector (_bfd_link_add_symbols)
116 The linker proper will call the <<_bfd_link_add_symbols>>
117 entry point for each object file or archive which is to be
118 linked (typically these are the files named on the command
119 line, but some may also come from the linker script). The
120 entry point is responsible for examining the file. For an
121 object file, BFD must add any relevant symbol information to
122 the hash table. For an archive, BFD must determine which
123 elements of the archive should be used and adding them to the
126 The a.out version of this entry point is
127 <<NAME(aout,link_add_symbols)>>.
130 @* Differing file formats::
131 @* Adding symbols from an object file::
132 @* Adding symbols from an archive::
136 Differing file formats, Adding symbols from an object file, Adding Symbols to the Hash Table, Adding Symbols to the Hash Table
138 Differing file formats
140 Normally all the files involved in a link will be of the same
141 format, but it is also possible to link together different
142 format object files, and the back end must support that. The
143 <<_bfd_link_add_symbols>> entry point is called via the target
144 vector of the file to be added. This has an important
145 consequence: the function may not assume that the hash table
146 is the type created by the corresponding
147 <<_bfd_link_hash_table_create>> vector. All the
148 <<_bfd_link_add_symbols>> function can assume about the hash
149 table is that it is derived from <<struct
150 bfd_link_hash_table>>.
152 Sometimes the <<_bfd_link_add_symbols>> function must store
153 some information in the hash table entry to be used by the
154 <<_bfd_final_link>> function. In such a case the output bfd
155 xvec must be checked to make sure that the hash table was
156 created by an object file of the same format.
158 The <<_bfd_final_link>> routine must be prepared to handle a
159 hash entry without any extra information added by the
160 <<_bfd_link_add_symbols>> function. A hash entry without
161 extra information will also occur when the linker script
162 directs the linker to create a symbol. Note that, regardless
163 of how a hash table entry is added, all the fields will be
164 initialized to some sort of null value by the hash table entry
165 initialization function.
167 See <<ecoff_link_add_externals>> for an example of how to
168 check the output bfd before saving information (in this
169 case, the ECOFF external symbol debugging information) in a
173 Adding symbols from an object file, Adding symbols from an archive, Differing file formats, Adding Symbols to the Hash Table
175 Adding symbols from an object file
177 When the <<_bfd_link_add_symbols>> routine is passed an object
178 file, it must add all externally visible symbols in that
179 object file to the hash table. The actual work of adding the
180 symbol to the hash table is normally handled by the function
181 <<_bfd_generic_link_add_one_symbol>>. The
182 <<_bfd_link_add_symbols>> routine is responsible for reading
183 all the symbols from the object file and passing the correct
184 information to <<_bfd_generic_link_add_one_symbol>>.
186 The <<_bfd_link_add_symbols>> routine should not use
187 <<bfd_canonicalize_symtab>> to read the symbols. The point of
188 providing this routine is to avoid the overhead of converting
189 the symbols into generic <<asymbol>> structures.
191 @findex _bfd_generic_link_add_one_symbol
192 <<_bfd_generic_link_add_one_symbol>> handles the details of
193 combining common symbols, warning about multiple definitions,
194 and so forth. It takes arguments which describe the symbol to
195 add, notably symbol flags, a section, and an offset. The
196 symbol flags include such things as <<BSF_WEAK>> or
197 <<BSF_INDIRECT>>. The section is a section in the object
198 file, or something like <<bfd_und_section_ptr>> for an undefined
199 symbol or <<bfd_com_section_ptr>> for a common symbol.
201 If the <<_bfd_final_link>> routine is also going to need to
202 read the symbol information, the <<_bfd_link_add_symbols>>
203 routine should save it somewhere attached to the object file
204 BFD. However, the information should only be saved if the
205 <<keep_memory>> field of the <<info>> argument is TRUE, so
206 that the <<-no-keep-memory>> linker switch is effective.
208 The a.out function which adds symbols from an object file is
209 <<aout_link_add_object_symbols>>, and most of the interesting
210 work is in <<aout_link_add_symbols>>. The latter saves
211 pointers to the hash tables entries created by
212 <<_bfd_generic_link_add_one_symbol>> indexed by symbol number,
213 so that the <<_bfd_final_link>> routine does not have to call
214 the hash table lookup routine to locate the entry.
217 Adding symbols from an archive, , Adding symbols from an object file, Adding Symbols to the Hash Table
219 Adding symbols from an archive
221 When the <<_bfd_link_add_symbols>> routine is passed an
222 archive, it must look through the symbols defined by the
223 archive and decide which elements of the archive should be
224 included in the link. For each such element it must call the
225 <<add_archive_element>> linker callback, and it must add the
226 symbols from the object file to the linker hash table.
228 @findex _bfd_generic_link_add_archive_symbols
229 In most cases the work of looking through the symbols in the
230 archive should be done by the
231 <<_bfd_generic_link_add_archive_symbols>> function. This
232 function builds a hash table from the archive symbol table and
233 looks through the list of undefined symbols to see which
234 elements should be included.
235 <<_bfd_generic_link_add_archive_symbols>> is passed a function
236 to call to make the final decision about adding an archive
237 element to the link and to do the actual work of adding the
238 symbols to the linker hash table.
240 The function passed to
241 <<_bfd_generic_link_add_archive_symbols>> must read the
242 symbols of the archive element and decide whether the archive
243 element should be included in the link. If the element is to
244 be included, the <<add_archive_element>> linker callback
245 routine must be called with the element as an argument, and
246 the elements symbols must be added to the linker hash table
247 just as though the element had itself been passed to the
248 <<_bfd_link_add_symbols>> function.
250 When the a.out <<_bfd_link_add_symbols>> function receives an
251 archive, it calls <<_bfd_generic_link_add_archive_symbols>>
252 passing <<aout_link_check_archive_element>> as the function
253 argument. <<aout_link_check_archive_element>> calls
254 <<aout_link_check_ar_symbols>>. If the latter decides to add
255 the element (an element is only added if it provides a real,
256 non-common, definition for a previously undefined or common
257 symbol) it calls the <<add_archive_element>> callback and then
258 <<aout_link_check_archive_element>> calls
259 <<aout_link_add_symbols>> to actually add the symbols to the
262 The ECOFF back end is unusual in that it does not normally
263 call <<_bfd_generic_link_add_archive_symbols>>, because ECOFF
264 archives already contain a hash table of symbols. The ECOFF
265 back end searches the archive itself to avoid the overhead of
266 creating a new hash table.
269 Performing the Final Link, , Adding Symbols to the Hash Table, Linker Functions
271 Performing the final link
273 @cindex _bfd_link_final_link in target vector
274 @cindex target vector (_bfd_final_link)
275 When all the input files have been processed, the linker calls
276 the <<_bfd_final_link>> entry point of the output BFD. This
277 routine is responsible for producing the final output file,
278 which has several aspects. It must relocate the contents of
279 the input sections and copy the data into the output sections.
280 It must build an output symbol table including any local
281 symbols from the input files and the global symbols from the
282 hash table. When producing relocatable output, it must
283 modify the input relocs and write them into the output file.
284 There may also be object format dependent work to be done.
286 The linker will also call the <<write_object_contents>> entry
287 point when the BFD is closed. The two entry points must work
288 together in order to produce the correct output file.
290 The details of how this works are inevitably dependent upon
291 the specific object file format. The a.out
292 <<_bfd_final_link>> routine is <<NAME(aout,final_link)>>.
295 @* Information provided by the linker::
296 @* Relocating the section contents::
297 @* Writing the symbol table::
301 Information provided by the linker, Relocating the section contents, Performing the Final Link, Performing the Final Link
303 Information provided by the linker
305 Before the linker calls the <<_bfd_final_link>> entry point,
306 it sets up some data structures for the function to use.
308 The <<input_bfds>> field of the <<bfd_link_info>> structure
309 will point to a list of all the input files included in the
310 link. These files are linked through the <<link_next>> field
311 of the <<bfd>> structure.
313 Each section in the output file will have a list of
314 <<link_order>> structures attached to the <<map_head.link_order>>
315 field (the <<link_order>> structure is defined in
316 <<bfdlink.h>>). These structures describe how to create the
317 contents of the output section in terms of the contents of
318 various input sections, fill constants, and, eventually, other
319 types of information. They also describe relocs that must be
320 created by the BFD backend, but do not correspond to any input
321 file; this is used to support -Ur, which builds constructors
322 while generating a relocatable object file.
325 Relocating the section contents, Writing the symbol table, Information provided by the linker, Performing the Final Link
327 Relocating the section contents
329 The <<_bfd_final_link>> function should look through the
330 <<link_order>> structures attached to each section of the
331 output file. Each <<link_order>> structure should either be
332 handled specially, or it should be passed to the function
333 <<_bfd_default_link_order>> which will do the right thing
334 (<<_bfd_default_link_order>> is defined in <<linker.c>>).
336 For efficiency, a <<link_order>> of type
337 <<bfd_indirect_link_order>> whose associated section belongs
338 to a BFD of the same format as the output BFD must be handled
339 specially. This type of <<link_order>> describes part of an
340 output section in terms of a section belonging to one of the
341 input files. The <<_bfd_final_link>> function should read the
342 contents of the section and any associated relocs, apply the
343 relocs to the section contents, and write out the modified
344 section contents. If performing a relocatable link, the
345 relocs themselves must also be modified and written out.
347 @findex _bfd_relocate_contents
348 @findex _bfd_final_link_relocate
349 The functions <<_bfd_relocate_contents>> and
350 <<_bfd_final_link_relocate>> provide some general support for
351 performing the actual relocations, notably overflow checking.
352 Their arguments include information about the symbol the
353 relocation is against and a <<reloc_howto_type>> argument
354 which describes the relocation to perform. These functions
355 are defined in <<reloc.c>>.
357 The a.out function which handles reading, relocating, and
358 writing section contents is <<aout_link_input_section>>. The
359 actual relocation is done in <<aout_link_input_section_std>>
360 and <<aout_link_input_section_ext>>.
363 Writing the symbol table, , Relocating the section contents, Performing the Final Link
365 Writing the symbol table
367 The <<_bfd_final_link>> function must gather all the symbols
368 in the input files and write them out. It must also write out
369 all the symbols in the global hash table. This must be
370 controlled by the <<strip>> and <<discard>> fields of the
371 <<bfd_link_info>> structure.
373 The local symbols of the input files will not have been
374 entered into the linker hash table. The <<_bfd_final_link>>
375 routine must consider each input file and include the symbols
376 in the output file. It may be convenient to do this when
377 looking through the <<link_order>> structures, or it may be
378 done by stepping through the <<input_bfds>> list.
380 The <<_bfd_final_link>> routine must also traverse the global
381 hash table to gather all the externally visible symbols. It
382 is possible that most of the externally visible symbols may be
383 written out when considering the symbols of each input file,
384 but it is still necessary to traverse the hash table since the
385 linker script may have defined some symbols that are not in
386 any of the input files.
388 The <<strip>> field of the <<bfd_link_info>> structure
389 controls which symbols are written out. The possible values
390 are listed in <<bfdlink.h>>. If the value is <<strip_some>>,
391 then the <<keep_hash>> field of the <<bfd_link_info>>
392 structure is a hash table of symbols to keep; each symbol
393 should be looked up in this hash table, and only symbols which
394 are present should be included in the output file.
396 If the <<strip>> field of the <<bfd_link_info>> structure
397 permits local symbols to be written out, the <<discard>> field
398 is used to further controls which local symbols are included
399 in the output file. If the value is <<discard_l>>, then all
400 local symbols which begin with a certain prefix are discarded;
401 this is controlled by the <<bfd_is_local_label_name>> entry point.
403 The a.out backend handles symbols by calling
404 <<aout_link_write_symbols>> on each input BFD and then
405 traversing the global hash table with the function
406 <<aout_link_write_other_symbol>>. It builds a string table
407 while writing out the symbols, which is written to the output
408 file at the end of <<NAME(aout,final_link)>>.
411 static bfd_boolean generic_link_add_object_symbols
412 (bfd
*, struct bfd_link_info
*, bfd_boolean collect
);
413 static bfd_boolean generic_link_add_symbols
414 (bfd
*, struct bfd_link_info
*, bfd_boolean
);
415 static bfd_boolean generic_link_check_archive_element_no_collect
416 (bfd
*, struct bfd_link_info
*, bfd_boolean
*);
417 static bfd_boolean generic_link_check_archive_element_collect
418 (bfd
*, struct bfd_link_info
*, bfd_boolean
*);
419 static bfd_boolean generic_link_check_archive_element
420 (bfd
*, struct bfd_link_info
*, bfd_boolean
*, bfd_boolean
);
421 static bfd_boolean generic_link_add_symbol_list
422 (bfd
*, struct bfd_link_info
*, bfd_size_type count
, asymbol
**,
424 static bfd_boolean generic_add_output_symbol
425 (bfd
*, size_t *psymalloc
, asymbol
*);
426 static bfd_boolean default_data_link_order
427 (bfd
*, struct bfd_link_info
*, asection
*, struct bfd_link_order
*);
428 static bfd_boolean default_indirect_link_order
429 (bfd
*, struct bfd_link_info
*, asection
*, struct bfd_link_order
*,
432 /* The link hash table structure is defined in bfdlink.h. It provides
433 a base hash table which the backend specific hash tables are built
436 /* Routine to create an entry in the link hash table. */
438 struct bfd_hash_entry
*
439 _bfd_link_hash_newfunc (struct bfd_hash_entry
*entry
,
440 struct bfd_hash_table
*table
,
443 /* Allocate the structure if it has not already been allocated by a
447 entry
= bfd_hash_allocate (table
, sizeof (struct bfd_link_hash_entry
));
452 /* Call the allocation method of the superclass. */
453 entry
= bfd_hash_newfunc (entry
, table
, string
);
456 struct bfd_link_hash_entry
*h
= (struct bfd_link_hash_entry
*) entry
;
458 /* Initialize the local fields. */
459 h
->type
= bfd_link_hash_new
;
460 memset (&h
->u
.undef
.next
, 0,
461 (sizeof (struct bfd_link_hash_entry
)
462 - offsetof (struct bfd_link_hash_entry
, u
.undef
.next
)));
468 /* Initialize a link hash table. The BFD argument is the one
469 responsible for creating this table. */
472 _bfd_link_hash_table_init
473 (struct bfd_link_hash_table
*table
,
474 bfd
*abfd ATTRIBUTE_UNUSED
,
475 struct bfd_hash_entry
*(*newfunc
) (struct bfd_hash_entry
*,
476 struct bfd_hash_table
*,
478 unsigned int entsize
)
480 table
->undefs
= NULL
;
481 table
->undefs_tail
= NULL
;
482 table
->type
= bfd_link_generic_hash_table
;
484 return bfd_hash_table_init (&table
->table
, newfunc
, entsize
);
487 /* Look up a symbol in a link hash table. If follow is TRUE, we
488 follow bfd_link_hash_indirect and bfd_link_hash_warning links to
491 struct bfd_link_hash_entry
*
492 bfd_link_hash_lookup (struct bfd_link_hash_table
*table
,
498 struct bfd_link_hash_entry
*ret
;
500 ret
= ((struct bfd_link_hash_entry
*)
501 bfd_hash_lookup (&table
->table
, string
, create
, copy
));
503 if (follow
&& ret
!= NULL
)
505 while (ret
->type
== bfd_link_hash_indirect
506 || ret
->type
== bfd_link_hash_warning
)
513 /* Look up a symbol in the main linker hash table if the symbol might
514 be wrapped. This should only be used for references to an
515 undefined symbol, not for definitions of a symbol. */
517 struct bfd_link_hash_entry
*
518 bfd_wrapped_link_hash_lookup (bfd
*abfd
,
519 struct bfd_link_info
*info
,
527 if (info
->wrap_hash
!= NULL
)
533 if (*l
== bfd_get_symbol_leading_char (abfd
) || *l
== info
->wrap_char
)
540 #define WRAP "__wrap_"
542 if (bfd_hash_lookup (info
->wrap_hash
, l
, FALSE
, FALSE
) != NULL
)
545 struct bfd_link_hash_entry
*h
;
547 /* This symbol is being wrapped. We want to replace all
548 references to SYM with references to __wrap_SYM. */
550 amt
= strlen (l
) + sizeof WRAP
+ 1;
551 n
= bfd_malloc (amt
);
559 h
= bfd_link_hash_lookup (info
->hash
, n
, create
, TRUE
, follow
);
567 #define REAL "__real_"
570 && CONST_STRNEQ (l
, REAL
)
571 && bfd_hash_lookup (info
->wrap_hash
, l
+ sizeof REAL
- 1,
572 FALSE
, FALSE
) != NULL
)
575 struct bfd_link_hash_entry
*h
;
577 /* This is a reference to __real_SYM, where SYM is being
578 wrapped. We want to replace all references to __real_SYM
579 with references to SYM. */
581 amt
= strlen (l
+ sizeof REAL
- 1) + 2;
582 n
= bfd_malloc (amt
);
588 strcat (n
, l
+ sizeof REAL
- 1);
589 h
= bfd_link_hash_lookup (info
->hash
, n
, create
, TRUE
, follow
);
597 return bfd_link_hash_lookup (info
->hash
, string
, create
, copy
, follow
);
600 /* Traverse a generic link hash table. The only reason this is not a
601 macro is to do better type checking. This code presumes that an
602 argument passed as a struct bfd_hash_entry * may be caught as a
603 struct bfd_link_hash_entry * with no explicit cast required on the
607 bfd_link_hash_traverse
608 (struct bfd_link_hash_table
*table
,
609 bfd_boolean (*func
) (struct bfd_link_hash_entry
*, void *),
612 bfd_hash_traverse (&table
->table
,
613 (bfd_boolean (*) (struct bfd_hash_entry
*, void *)) func
,
617 /* Add a symbol to the linker hash table undefs list. */
620 bfd_link_add_undef (struct bfd_link_hash_table
*table
,
621 struct bfd_link_hash_entry
*h
)
623 BFD_ASSERT (h
->u
.undef
.next
== NULL
);
624 if (table
->undefs_tail
!= NULL
)
625 table
->undefs_tail
->u
.undef
.next
= h
;
626 if (table
->undefs
== NULL
)
628 table
->undefs_tail
= h
;
631 /* The undefs list was designed so that in normal use we don't need to
632 remove entries. However, if symbols on the list are changed from
633 bfd_link_hash_undefined to either bfd_link_hash_undefweak or
634 bfd_link_hash_new for some reason, then they must be removed from the
635 list. Failure to do so might result in the linker attempting to add
636 the symbol to the list again at a later stage. */
639 bfd_link_repair_undef_list (struct bfd_link_hash_table
*table
)
641 struct bfd_link_hash_entry
**pun
;
643 pun
= &table
->undefs
;
646 struct bfd_link_hash_entry
*h
= *pun
;
648 if (h
->type
== bfd_link_hash_new
649 || h
->type
== bfd_link_hash_undefweak
)
651 *pun
= h
->u
.undef
.next
;
652 h
->u
.undef
.next
= NULL
;
653 if (h
== table
->undefs_tail
)
655 if (pun
== &table
->undefs
)
656 table
->undefs_tail
= NULL
;
658 /* pun points at an u.undef.next field. Go back to
659 the start of the link_hash_entry. */
660 table
->undefs_tail
= (struct bfd_link_hash_entry
*)
661 ((char *) pun
- ((char *) &h
->u
.undef
.next
- (char *) h
));
666 pun
= &h
->u
.undef
.next
;
670 /* Routine to create an entry in a generic link hash table. */
672 struct bfd_hash_entry
*
673 _bfd_generic_link_hash_newfunc (struct bfd_hash_entry
*entry
,
674 struct bfd_hash_table
*table
,
677 /* Allocate the structure if it has not already been allocated by a
682 bfd_hash_allocate (table
, sizeof (struct generic_link_hash_entry
));
687 /* Call the allocation method of the superclass. */
688 entry
= _bfd_link_hash_newfunc (entry
, table
, string
);
691 struct generic_link_hash_entry
*ret
;
693 /* Set local fields. */
694 ret
= (struct generic_link_hash_entry
*) entry
;
695 ret
->written
= FALSE
;
702 /* Create a generic link hash table. */
704 struct bfd_link_hash_table
*
705 _bfd_generic_link_hash_table_create (bfd
*abfd
)
707 struct generic_link_hash_table
*ret
;
708 bfd_size_type amt
= sizeof (struct generic_link_hash_table
);
710 ret
= bfd_malloc (amt
);
713 if (! _bfd_link_hash_table_init (&ret
->root
, abfd
,
714 _bfd_generic_link_hash_newfunc
,
715 sizeof (struct generic_link_hash_entry
)))
724 _bfd_generic_link_hash_table_free (struct bfd_link_hash_table
*hash
)
726 struct generic_link_hash_table
*ret
727 = (struct generic_link_hash_table
*) hash
;
729 bfd_hash_table_free (&ret
->root
.table
);
733 /* Grab the symbols for an object file when doing a generic link. We
734 store the symbols in the outsymbols field. We need to keep them
735 around for the entire link to ensure that we only read them once.
736 If we read them multiple times, we might wind up with relocs and
737 the hash table pointing to different instances of the symbol
741 bfd_generic_link_read_symbols (bfd
*abfd
)
743 if (bfd_get_outsymbols (abfd
) == NULL
)
748 symsize
= bfd_get_symtab_upper_bound (abfd
);
751 bfd_get_outsymbols (abfd
) = bfd_alloc (abfd
, symsize
);
752 if (bfd_get_outsymbols (abfd
) == NULL
&& symsize
!= 0)
754 symcount
= bfd_canonicalize_symtab (abfd
, bfd_get_outsymbols (abfd
));
757 bfd_get_symcount (abfd
) = symcount
;
763 /* Generic function to add symbols to from an object file to the
764 global hash table. This version does not automatically collect
765 constructors by name. */
768 _bfd_generic_link_add_symbols (bfd
*abfd
, struct bfd_link_info
*info
)
770 return generic_link_add_symbols (abfd
, info
, FALSE
);
773 /* Generic function to add symbols from an object file to the global
774 hash table. This version automatically collects constructors by
775 name, as the collect2 program does. It should be used for any
776 target which does not provide some other mechanism for setting up
777 constructors and destructors; these are approximately those targets
778 for which gcc uses collect2 and do not support stabs. */
781 _bfd_generic_link_add_symbols_collect (bfd
*abfd
, struct bfd_link_info
*info
)
783 return generic_link_add_symbols (abfd
, info
, TRUE
);
786 /* Indicate that we are only retrieving symbol values from this
787 section. We want the symbols to act as though the values in the
788 file are absolute. */
791 _bfd_generic_link_just_syms (asection
*sec
,
792 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
794 sec
->output_section
= bfd_abs_section_ptr
;
795 sec
->output_offset
= sec
->vma
;
798 /* Add symbols from an object file to the global hash table. */
801 generic_link_add_symbols (bfd
*abfd
,
802 struct bfd_link_info
*info
,
807 switch (bfd_get_format (abfd
))
810 ret
= generic_link_add_object_symbols (abfd
, info
, collect
);
813 ret
= (_bfd_generic_link_add_archive_symbols
816 ? generic_link_check_archive_element_collect
817 : generic_link_check_archive_element_no_collect
)));
820 bfd_set_error (bfd_error_wrong_format
);
827 /* Add symbols from an object file to the global hash table. */
830 generic_link_add_object_symbols (bfd
*abfd
,
831 struct bfd_link_info
*info
,
834 bfd_size_type symcount
;
835 struct bfd_symbol
**outsyms
;
837 if (!bfd_generic_link_read_symbols (abfd
))
839 symcount
= _bfd_generic_link_get_symcount (abfd
);
840 outsyms
= _bfd_generic_link_get_symbols (abfd
);
841 return generic_link_add_symbol_list (abfd
, info
, symcount
, outsyms
, collect
);
844 /* We build a hash table of all symbols defined in an archive. */
846 /* An archive symbol may be defined by multiple archive elements.
847 This linked list is used to hold the elements. */
851 struct archive_list
*next
;
855 /* An entry in an archive hash table. */
857 struct archive_hash_entry
859 struct bfd_hash_entry root
;
860 /* Where the symbol is defined. */
861 struct archive_list
*defs
;
864 /* An archive hash table itself. */
866 struct archive_hash_table
868 struct bfd_hash_table table
;
871 /* Create a new entry for an archive hash table. */
873 static struct bfd_hash_entry
*
874 archive_hash_newfunc (struct bfd_hash_entry
*entry
,
875 struct bfd_hash_table
*table
,
878 struct archive_hash_entry
*ret
= (struct archive_hash_entry
*) entry
;
880 /* Allocate the structure if it has not already been allocated by a
883 ret
= bfd_hash_allocate (table
, sizeof (struct archive_hash_entry
));
887 /* Call the allocation method of the superclass. */
888 ret
= ((struct archive_hash_entry
*)
889 bfd_hash_newfunc ((struct bfd_hash_entry
*) ret
, table
, string
));
893 /* Initialize the local fields. */
900 /* Initialize an archive hash table. */
903 archive_hash_table_init
904 (struct archive_hash_table
*table
,
905 struct bfd_hash_entry
*(*newfunc
) (struct bfd_hash_entry
*,
906 struct bfd_hash_table
*,
908 unsigned int entsize
)
910 return bfd_hash_table_init (&table
->table
, newfunc
, entsize
);
913 /* Look up an entry in an archive hash table. */
915 #define archive_hash_lookup(t, string, create, copy) \
916 ((struct archive_hash_entry *) \
917 bfd_hash_lookup (&(t)->table, (string), (create), (copy)))
919 /* Allocate space in an archive hash table. */
921 #define archive_hash_allocate(t, size) bfd_hash_allocate (&(t)->table, (size))
923 /* Free an archive hash table. */
925 #define archive_hash_table_free(t) bfd_hash_table_free (&(t)->table)
927 /* Generic function to add symbols from an archive file to the global
928 hash file. This function presumes that the archive symbol table
929 has already been read in (this is normally done by the
930 bfd_check_format entry point). It looks through the undefined and
931 common symbols and searches the archive symbol table for them. If
932 it finds an entry, it includes the associated object file in the
935 The old linker looked through the archive symbol table for
936 undefined symbols. We do it the other way around, looking through
937 undefined symbols for symbols defined in the archive. The
938 advantage of the newer scheme is that we only have to look through
939 the list of undefined symbols once, whereas the old method had to
940 re-search the symbol table each time a new object file was added.
942 The CHECKFN argument is used to see if an object file should be
943 included. CHECKFN should set *PNEEDED to TRUE if the object file
944 should be included, and must also call the bfd_link_info
945 add_archive_element callback function and handle adding the symbols
946 to the global hash table. CHECKFN should only return FALSE if some
947 sort of error occurs.
949 For some formats, such as a.out, it is possible to look through an
950 object file but not actually include it in the link. The
951 archive_pass field in a BFD is used to avoid checking the symbols
952 of an object files too many times. When an object is included in
953 the link, archive_pass is set to -1. If an object is scanned but
954 not included, archive_pass is set to the pass number. The pass
955 number is incremented each time a new object file is included. The
956 pass number is used because when a new object file is included it
957 may create new undefined symbols which cause a previously examined
958 object file to be included. */
961 _bfd_generic_link_add_archive_symbols
963 struct bfd_link_info
*info
,
964 bfd_boolean (*checkfn
) (bfd
*, struct bfd_link_info
*, bfd_boolean
*))
968 register carsym
*arsym
;
970 struct archive_hash_table arsym_hash
;
972 struct bfd_link_hash_entry
**pundef
;
974 if (! bfd_has_map (abfd
))
976 /* An empty archive is a special case. */
977 if (bfd_openr_next_archived_file (abfd
, NULL
) == NULL
)
979 bfd_set_error (bfd_error_no_armap
);
983 arsyms
= bfd_ardata (abfd
)->symdefs
;
984 arsym_end
= arsyms
+ bfd_ardata (abfd
)->symdef_count
;
986 /* In order to quickly determine whether an symbol is defined in
987 this archive, we build a hash table of the symbols. */
988 if (! archive_hash_table_init (&arsym_hash
, archive_hash_newfunc
,
989 sizeof (struct archive_hash_entry
)))
991 for (arsym
= arsyms
, indx
= 0; arsym
< arsym_end
; arsym
++, indx
++)
993 struct archive_hash_entry
*arh
;
994 struct archive_list
*l
, **pp
;
996 arh
= archive_hash_lookup (&arsym_hash
, arsym
->name
, TRUE
, FALSE
);
999 l
= ((struct archive_list
*)
1000 archive_hash_allocate (&arsym_hash
, sizeof (struct archive_list
)));
1004 for (pp
= &arh
->defs
; *pp
!= NULL
; pp
= &(*pp
)->next
)
1010 /* The archive_pass field in the archive itself is used to
1011 initialize PASS, sine we may search the same archive multiple
1013 pass
= abfd
->archive_pass
+ 1;
1015 /* New undefined symbols are added to the end of the list, so we
1016 only need to look through it once. */
1017 pundef
= &info
->hash
->undefs
;
1018 while (*pundef
!= NULL
)
1020 struct bfd_link_hash_entry
*h
;
1021 struct archive_hash_entry
*arh
;
1022 struct archive_list
*l
;
1026 /* When a symbol is defined, it is not necessarily removed from
1028 if (h
->type
!= bfd_link_hash_undefined
1029 && h
->type
!= bfd_link_hash_common
)
1031 /* Remove this entry from the list, for general cleanliness
1032 and because we are going to look through the list again
1033 if we search any more libraries. We can't remove the
1034 entry if it is the tail, because that would lose any
1035 entries we add to the list later on (it would also cause
1036 us to lose track of whether the symbol has been
1038 if (*pundef
!= info
->hash
->undefs_tail
)
1039 *pundef
= (*pundef
)->u
.undef
.next
;
1041 pundef
= &(*pundef
)->u
.undef
.next
;
1045 /* Look for this symbol in the archive symbol map. */
1046 arh
= archive_hash_lookup (&arsym_hash
, h
->root
.string
, FALSE
, FALSE
);
1049 /* If we haven't found the exact symbol we're looking for,
1050 let's look for its import thunk */
1051 if (info
->pei386_auto_import
)
1053 bfd_size_type amt
= strlen (h
->root
.string
) + 10;
1054 char *buf
= bfd_malloc (amt
);
1058 sprintf (buf
, "__imp_%s", h
->root
.string
);
1059 arh
= archive_hash_lookup (&arsym_hash
, buf
, FALSE
, FALSE
);
1064 pundef
= &(*pundef
)->u
.undef
.next
;
1068 /* Look at all the objects which define this symbol. */
1069 for (l
= arh
->defs
; l
!= NULL
; l
= l
->next
)
1074 /* If the symbol has gotten defined along the way, quit. */
1075 if (h
->type
!= bfd_link_hash_undefined
1076 && h
->type
!= bfd_link_hash_common
)
1079 element
= bfd_get_elt_at_index (abfd
, l
->indx
);
1080 if (element
== NULL
)
1083 /* If we've already included this element, or if we've
1084 already checked it on this pass, continue. */
1085 if (element
->archive_pass
== -1
1086 || element
->archive_pass
== pass
)
1089 /* If we can't figure this element out, just ignore it. */
1090 if (! bfd_check_format (element
, bfd_object
))
1092 element
->archive_pass
= -1;
1096 /* CHECKFN will see if this element should be included, and
1097 go ahead and include it if appropriate. */
1098 if (! (*checkfn
) (element
, info
, &needed
))
1102 element
->archive_pass
= pass
;
1105 element
->archive_pass
= -1;
1107 /* Increment the pass count to show that we may need to
1108 recheck object files which were already checked. */
1113 pundef
= &(*pundef
)->u
.undef
.next
;
1116 archive_hash_table_free (&arsym_hash
);
1118 /* Save PASS in case we are called again. */
1119 abfd
->archive_pass
= pass
;
1124 archive_hash_table_free (&arsym_hash
);
1128 /* See if we should include an archive element. This version is used
1129 when we do not want to automatically collect constructors based on
1130 the symbol name, presumably because we have some other mechanism
1131 for finding them. */
1134 generic_link_check_archive_element_no_collect (
1136 struct bfd_link_info
*info
,
1137 bfd_boolean
*pneeded
)
1139 return generic_link_check_archive_element (abfd
, info
, pneeded
, FALSE
);
1142 /* See if we should include an archive element. This version is used
1143 when we want to automatically collect constructors based on the
1144 symbol name, as collect2 does. */
1147 generic_link_check_archive_element_collect (bfd
*abfd
,
1148 struct bfd_link_info
*info
,
1149 bfd_boolean
*pneeded
)
1151 return generic_link_check_archive_element (abfd
, info
, pneeded
, TRUE
);
1154 /* See if we should include an archive element. Optionally collect
1158 generic_link_check_archive_element (bfd
*abfd
,
1159 struct bfd_link_info
*info
,
1160 bfd_boolean
*pneeded
,
1161 bfd_boolean collect
)
1163 asymbol
**pp
, **ppend
;
1167 if (!bfd_generic_link_read_symbols (abfd
))
1170 pp
= _bfd_generic_link_get_symbols (abfd
);
1171 ppend
= pp
+ _bfd_generic_link_get_symcount (abfd
);
1172 for (; pp
< ppend
; pp
++)
1175 struct bfd_link_hash_entry
*h
;
1179 /* We are only interested in globally visible symbols. */
1180 if (! bfd_is_com_section (p
->section
)
1181 && (p
->flags
& (BSF_GLOBAL
| BSF_INDIRECT
| BSF_WEAK
)) == 0)
1184 /* We are only interested if we know something about this
1185 symbol, and it is undefined or common. An undefined weak
1186 symbol (type bfd_link_hash_undefweak) is not considered to be
1187 a reference when pulling files out of an archive. See the
1188 SVR4 ABI, p. 4-27. */
1189 h
= bfd_link_hash_lookup (info
->hash
, bfd_asymbol_name (p
), FALSE
,
1192 || (h
->type
!= bfd_link_hash_undefined
1193 && h
->type
!= bfd_link_hash_common
))
1196 /* P is a symbol we are looking for. */
1198 if (! bfd_is_com_section (p
->section
))
1200 bfd_size_type symcount
;
1203 /* This object file defines this symbol, so pull it in. */
1204 if (! (*info
->callbacks
->add_archive_element
) (info
, abfd
,
1205 bfd_asymbol_name (p
)))
1207 symcount
= _bfd_generic_link_get_symcount (abfd
);
1208 symbols
= _bfd_generic_link_get_symbols (abfd
);
1209 if (! generic_link_add_symbol_list (abfd
, info
, symcount
,
1216 /* P is a common symbol. */
1218 if (h
->type
== bfd_link_hash_undefined
)
1224 symbfd
= h
->u
.undef
.abfd
;
1227 /* This symbol was created as undefined from outside
1228 BFD. We assume that we should link in the object
1229 file. This is for the -u option in the linker. */
1230 if (! (*info
->callbacks
->add_archive_element
)
1231 (info
, abfd
, bfd_asymbol_name (p
)))
1237 /* Turn the symbol into a common symbol but do not link in
1238 the object file. This is how a.out works. Object
1239 formats that require different semantics must implement
1240 this function differently. This symbol is already on the
1241 undefs list. We add the section to a common section
1242 attached to symbfd to ensure that it is in a BFD which
1243 will be linked in. */
1244 h
->type
= bfd_link_hash_common
;
1246 bfd_hash_allocate (&info
->hash
->table
,
1247 sizeof (struct bfd_link_hash_common_entry
));
1248 if (h
->u
.c
.p
== NULL
)
1251 size
= bfd_asymbol_value (p
);
1254 power
= bfd_log2 (size
);
1257 h
->u
.c
.p
->alignment_power
= power
;
1259 if (p
->section
== bfd_com_section_ptr
)
1260 h
->u
.c
.p
->section
= bfd_make_section_old_way (symbfd
, "COMMON");
1262 h
->u
.c
.p
->section
= bfd_make_section_old_way (symbfd
,
1264 h
->u
.c
.p
->section
->flags
= SEC_ALLOC
;
1268 /* Adjust the size of the common symbol if necessary. This
1269 is how a.out works. Object formats that require
1270 different semantics must implement this function
1272 if (bfd_asymbol_value (p
) > h
->u
.c
.size
)
1273 h
->u
.c
.size
= bfd_asymbol_value (p
);
1277 /* This archive element is not needed. */
1281 /* Add the symbols from an object file to the global hash table. ABFD
1282 is the object file. INFO is the linker information. SYMBOL_COUNT
1283 is the number of symbols. SYMBOLS is the list of symbols. COLLECT
1284 is TRUE if constructors should be automatically collected by name
1285 as is done by collect2. */
1288 generic_link_add_symbol_list (bfd
*abfd
,
1289 struct bfd_link_info
*info
,
1290 bfd_size_type symbol_count
,
1292 bfd_boolean collect
)
1294 asymbol
**pp
, **ppend
;
1297 ppend
= symbols
+ symbol_count
;
1298 for (; pp
< ppend
; pp
++)
1304 if ((p
->flags
& (BSF_INDIRECT
1309 || bfd_is_und_section (bfd_get_section (p
))
1310 || bfd_is_com_section (bfd_get_section (p
))
1311 || bfd_is_ind_section (bfd_get_section (p
)))
1315 struct generic_link_hash_entry
*h
;
1316 struct bfd_link_hash_entry
*bh
;
1318 string
= name
= bfd_asymbol_name (p
);
1319 if (((p
->flags
& BSF_INDIRECT
) != 0
1320 || bfd_is_ind_section (p
->section
))
1324 string
= bfd_asymbol_name (*pp
);
1326 else if ((p
->flags
& BSF_WARNING
) != 0
1329 /* The name of P is actually the warning string, and the
1330 next symbol is the one to warn about. */
1332 name
= bfd_asymbol_name (*pp
);
1336 if (! (_bfd_generic_link_add_one_symbol
1337 (info
, abfd
, name
, p
->flags
, bfd_get_section (p
),
1338 p
->value
, string
, FALSE
, collect
, &bh
)))
1340 h
= (struct generic_link_hash_entry
*) bh
;
1342 /* If this is a constructor symbol, and the linker didn't do
1343 anything with it, then we want to just pass the symbol
1344 through to the output file. This will happen when
1346 if ((p
->flags
& BSF_CONSTRUCTOR
) != 0
1347 && (h
== NULL
|| h
->root
.type
== bfd_link_hash_new
))
1353 /* Save the BFD symbol so that we don't lose any backend
1354 specific information that may be attached to it. We only
1355 want this one if it gives more information than the
1356 existing one; we don't want to replace a defined symbol
1357 with an undefined one. This routine may be called with a
1358 hash table other than the generic hash table, so we only
1359 do this if we are certain that the hash table is a
1361 if (info
->output_bfd
->xvec
== abfd
->xvec
)
1364 || (! bfd_is_und_section (bfd_get_section (p
))
1365 && (! bfd_is_com_section (bfd_get_section (p
))
1366 || bfd_is_und_section (bfd_get_section (h
->sym
)))))
1369 /* BSF_OLD_COMMON is a hack to support COFF reloc
1370 reading, and it should go away when the COFF
1371 linker is switched to the new version. */
1372 if (bfd_is_com_section (bfd_get_section (p
)))
1373 p
->flags
|= BSF_OLD_COMMON
;
1377 /* Store a back pointer from the symbol to the hash
1378 table entry for the benefit of relaxation code until
1379 it gets rewritten to not use asymbol structures.
1380 Setting this is also used to check whether these
1381 symbols were set up by the generic linker. */
1389 /* We use a state table to deal with adding symbols from an object
1390 file. The first index into the state table describes the symbol
1391 from the object file. The second index into the state table is the
1392 type of the symbol in the hash table. */
1394 /* The symbol from the object file is turned into one of these row
1399 UNDEF_ROW
, /* Undefined. */
1400 UNDEFW_ROW
, /* Weak undefined. */
1401 DEF_ROW
, /* Defined. */
1402 DEFW_ROW
, /* Weak defined. */
1403 COMMON_ROW
, /* Common. */
1404 INDR_ROW
, /* Indirect. */
1405 WARN_ROW
, /* Warning. */
1406 SET_ROW
/* Member of set. */
1409 /* apparently needed for Hitachi 3050R(HI-UX/WE2)? */
1412 /* The actions to take in the state table. */
1417 UND
, /* Mark symbol undefined. */
1418 WEAK
, /* Mark symbol weak undefined. */
1419 DEF
, /* Mark symbol defined. */
1420 DEFW
, /* Mark symbol weak defined. */
1421 COM
, /* Mark symbol common. */
1422 REF
, /* Mark defined symbol referenced. */
1423 CREF
, /* Possibly warn about common reference to defined symbol. */
1424 CDEF
, /* Define existing common symbol. */
1425 NOACT
, /* No action. */
1426 BIG
, /* Mark symbol common using largest size. */
1427 MDEF
, /* Multiple definition error. */
1428 MIND
, /* Multiple indirect symbols. */
1429 IND
, /* Make indirect symbol. */
1430 CIND
, /* Make indirect symbol from existing common symbol. */
1431 SET
, /* Add value to set. */
1432 MWARN
, /* Make warning symbol. */
1433 WARN
, /* Issue warning. */
1434 CWARN
, /* Warn if referenced, else MWARN. */
1435 CYCLE
, /* Repeat with symbol pointed to. */
1436 REFC
, /* Mark indirect symbol referenced and then CYCLE. */
1437 WARNC
/* Issue warning and then CYCLE. */
1440 /* The state table itself. The first index is a link_row and the
1441 second index is a bfd_link_hash_type. */
1443 static const enum link_action link_action
[8][8] =
1445 /* current\prev new undef undefw def defw com indr warn */
1446 /* UNDEF_ROW */ {UND
, NOACT
, UND
, REF
, REF
, NOACT
, REFC
, WARNC
},
1447 /* UNDEFW_ROW */ {WEAK
, NOACT
, NOACT
, REF
, REF
, NOACT
, REFC
, WARNC
},
1448 /* DEF_ROW */ {DEF
, DEF
, DEF
, MDEF
, DEF
, CDEF
, MDEF
, CYCLE
},
1449 /* DEFW_ROW */ {DEFW
, DEFW
, DEFW
, NOACT
, NOACT
, NOACT
, NOACT
, CYCLE
},
1450 /* COMMON_ROW */ {COM
, COM
, COM
, CREF
, COM
, BIG
, REFC
, WARNC
},
1451 /* INDR_ROW */ {IND
, IND
, IND
, MDEF
, IND
, CIND
, MIND
, CYCLE
},
1452 /* WARN_ROW */ {MWARN
, WARN
, WARN
, CWARN
, CWARN
, WARN
, CWARN
, NOACT
},
1453 /* SET_ROW */ {SET
, SET
, SET
, SET
, SET
, SET
, CYCLE
, CYCLE
}
1456 /* Most of the entries in the LINK_ACTION table are straightforward,
1457 but a few are somewhat subtle.
1459 A reference to an indirect symbol (UNDEF_ROW/indr or
1460 UNDEFW_ROW/indr) is counted as a reference both to the indirect
1461 symbol and to the symbol the indirect symbol points to.
1463 A reference to a warning symbol (UNDEF_ROW/warn or UNDEFW_ROW/warn)
1464 causes the warning to be issued.
1466 A common definition of an indirect symbol (COMMON_ROW/indr) is
1467 treated as a multiple definition error. Likewise for an indirect
1468 definition of a common symbol (INDR_ROW/com).
1470 An indirect definition of a warning (INDR_ROW/warn) does not cause
1471 the warning to be issued.
1473 If a warning is created for an indirect symbol (WARN_ROW/indr) no
1474 warning is created for the symbol the indirect symbol points to.
1476 Adding an entry to a set does not count as a reference to a set,
1477 and no warning is issued (SET_ROW/warn). */
1479 /* Return the BFD in which a hash entry has been defined, if known. */
1482 hash_entry_bfd (struct bfd_link_hash_entry
*h
)
1484 while (h
->type
== bfd_link_hash_warning
)
1490 case bfd_link_hash_undefined
:
1491 case bfd_link_hash_undefweak
:
1492 return h
->u
.undef
.abfd
;
1493 case bfd_link_hash_defined
:
1494 case bfd_link_hash_defweak
:
1495 return h
->u
.def
.section
->owner
;
1496 case bfd_link_hash_common
:
1497 return h
->u
.c
.p
->section
->owner
;
1502 /* Add a symbol to the global hash table.
1503 ABFD is the BFD the symbol comes from.
1504 NAME is the name of the symbol.
1505 FLAGS is the BSF_* bits associated with the symbol.
1506 SECTION is the section in which the symbol is defined; this may be
1507 bfd_und_section_ptr or bfd_com_section_ptr.
1508 VALUE is the value of the symbol, relative to the section.
1509 STRING is used for either an indirect symbol, in which case it is
1510 the name of the symbol to indirect to, or a warning symbol, in
1511 which case it is the warning string.
1512 COPY is TRUE if NAME or STRING must be copied into locally
1513 allocated memory if they need to be saved.
1514 COLLECT is TRUE if we should automatically collect gcc constructor
1515 or destructor names as collect2 does.
1516 HASHP, if not NULL, is a place to store the created hash table
1517 entry; if *HASHP is not NULL, the caller has already looked up
1518 the hash table entry, and stored it in *HASHP. */
1521 _bfd_generic_link_add_one_symbol (struct bfd_link_info
*info
,
1529 bfd_boolean collect
,
1530 struct bfd_link_hash_entry
**hashp
)
1533 struct bfd_link_hash_entry
*h
;
1536 if (bfd_is_ind_section (section
)
1537 || (flags
& BSF_INDIRECT
) != 0)
1539 else if ((flags
& BSF_WARNING
) != 0)
1541 else if ((flags
& BSF_CONSTRUCTOR
) != 0)
1543 else if (bfd_is_und_section (section
))
1545 if ((flags
& BSF_WEAK
) != 0)
1550 else if ((flags
& BSF_WEAK
) != 0)
1552 else if (bfd_is_com_section (section
))
1557 if (hashp
!= NULL
&& *hashp
!= NULL
)
1561 if (row
== UNDEF_ROW
|| row
== UNDEFW_ROW
)
1562 h
= bfd_wrapped_link_hash_lookup (abfd
, info
, name
, TRUE
, copy
, FALSE
);
1564 h
= bfd_link_hash_lookup (info
->hash
, name
, TRUE
, copy
, FALSE
);
1573 if (info
->notice_all
1574 || (info
->notice_hash
!= NULL
1575 && bfd_hash_lookup (info
->notice_hash
, name
, FALSE
, FALSE
) != NULL
))
1577 if (! (*info
->callbacks
->notice
) (info
, h
->root
.string
, abfd
, section
,
1587 enum link_action action
;
1590 action
= link_action
[(int) row
][(int) h
->type
];
1601 /* Make a new undefined symbol. */
1602 h
->type
= bfd_link_hash_undefined
;
1603 h
->u
.undef
.abfd
= abfd
;
1604 bfd_link_add_undef (info
->hash
, h
);
1608 /* Make a new weak undefined symbol. */
1609 h
->type
= bfd_link_hash_undefweak
;
1610 h
->u
.undef
.abfd
= abfd
;
1611 h
->u
.undef
.weak
= abfd
;
1615 /* We have found a definition for a symbol which was
1616 previously common. */
1617 BFD_ASSERT (h
->type
== bfd_link_hash_common
);
1618 if (! ((*info
->callbacks
->multiple_common
)
1619 (info
, h
->root
.string
,
1620 h
->u
.c
.p
->section
->owner
, bfd_link_hash_common
, h
->u
.c
.size
,
1621 abfd
, bfd_link_hash_defined
, 0)))
1627 enum bfd_link_hash_type oldtype
;
1629 /* Define a symbol. */
1632 h
->type
= bfd_link_hash_defweak
;
1634 h
->type
= bfd_link_hash_defined
;
1635 h
->u
.def
.section
= section
;
1636 h
->u
.def
.value
= value
;
1638 /* If we have been asked to, we act like collect2 and
1639 identify all functions that might be global
1640 constructors and destructors and pass them up in a
1641 callback. We only do this for certain object file
1642 types, since many object file types can handle this
1644 if (collect
&& name
[0] == '_')
1648 /* A constructor or destructor name starts like this:
1649 _+GLOBAL_[_.$][ID][_.$] where the first [_.$] and
1650 the second are the same character (we accept any
1651 character there, in case a new object file format
1652 comes along with even worse naming restrictions). */
1654 #define CONS_PREFIX "GLOBAL_"
1655 #define CONS_PREFIX_LEN (sizeof CONS_PREFIX - 1)
1660 if (s
[0] == 'G' && CONST_STRNEQ (s
, CONS_PREFIX
))
1664 c
= s
[CONS_PREFIX_LEN
+ 1];
1665 if ((c
== 'I' || c
== 'D')
1666 && s
[CONS_PREFIX_LEN
] == s
[CONS_PREFIX_LEN
+ 2])
1668 /* If this is a definition of a symbol which
1669 was previously weakly defined, we are in
1670 trouble. We have already added a
1671 constructor entry for the weak defined
1672 symbol, and now we are trying to add one
1673 for the new symbol. Fortunately, this case
1674 should never arise in practice. */
1675 if (oldtype
== bfd_link_hash_defweak
)
1678 if (! ((*info
->callbacks
->constructor
)
1680 h
->root
.string
, abfd
, section
, value
)))
1690 /* We have found a common definition for a symbol. */
1691 if (h
->type
== bfd_link_hash_new
)
1692 bfd_link_add_undef (info
->hash
, h
);
1693 h
->type
= bfd_link_hash_common
;
1695 bfd_hash_allocate (&info
->hash
->table
,
1696 sizeof (struct bfd_link_hash_common_entry
));
1697 if (h
->u
.c
.p
== NULL
)
1700 h
->u
.c
.size
= value
;
1702 /* Select a default alignment based on the size. This may
1703 be overridden by the caller. */
1707 power
= bfd_log2 (value
);
1710 h
->u
.c
.p
->alignment_power
= power
;
1713 /* The section of a common symbol is only used if the common
1714 symbol is actually allocated. It basically provides a
1715 hook for the linker script to decide which output section
1716 the common symbols should be put in. In most cases, the
1717 section of a common symbol will be bfd_com_section_ptr,
1718 the code here will choose a common symbol section named
1719 "COMMON", and the linker script will contain *(COMMON) in
1720 the appropriate place. A few targets use separate common
1721 sections for small symbols, and they require special
1723 if (section
== bfd_com_section_ptr
)
1725 h
->u
.c
.p
->section
= bfd_make_section_old_way (abfd
, "COMMON");
1726 h
->u
.c
.p
->section
->flags
= SEC_ALLOC
;
1728 else if (section
->owner
!= abfd
)
1730 h
->u
.c
.p
->section
= bfd_make_section_old_way (abfd
,
1732 h
->u
.c
.p
->section
->flags
= SEC_ALLOC
;
1735 h
->u
.c
.p
->section
= section
;
1739 /* A reference to a defined symbol. */
1740 if (h
->u
.undef
.next
== NULL
&& info
->hash
->undefs_tail
!= h
)
1741 h
->u
.undef
.next
= h
;
1745 /* We have found a common definition for a symbol which
1746 already had a common definition. Use the maximum of the
1747 two sizes, and use the section required by the larger symbol. */
1748 BFD_ASSERT (h
->type
== bfd_link_hash_common
);
1749 if (! ((*info
->callbacks
->multiple_common
)
1750 (info
, h
->root
.string
,
1751 h
->u
.c
.p
->section
->owner
, bfd_link_hash_common
, h
->u
.c
.size
,
1752 abfd
, bfd_link_hash_common
, value
)))
1754 if (value
> h
->u
.c
.size
)
1758 h
->u
.c
.size
= value
;
1760 /* Select a default alignment based on the size. This may
1761 be overridden by the caller. */
1762 power
= bfd_log2 (value
);
1765 h
->u
.c
.p
->alignment_power
= power
;
1767 /* Some systems have special treatment for small commons,
1768 hence we want to select the section used by the larger
1769 symbol. This makes sure the symbol does not go in a
1770 small common section if it is now too large. */
1771 if (section
== bfd_com_section_ptr
)
1774 = bfd_make_section_old_way (abfd
, "COMMON");
1775 h
->u
.c
.p
->section
->flags
= SEC_ALLOC
;
1777 else if (section
->owner
!= abfd
)
1780 = bfd_make_section_old_way (abfd
, section
->name
);
1781 h
->u
.c
.p
->section
->flags
= SEC_ALLOC
;
1784 h
->u
.c
.p
->section
= section
;
1792 /* We have found a common definition for a symbol which
1793 was already defined. FIXME: It would nice if we could
1794 report the BFD which defined an indirect symbol, but we
1795 don't have anywhere to store the information. */
1796 if (h
->type
== bfd_link_hash_defined
1797 || h
->type
== bfd_link_hash_defweak
)
1798 obfd
= h
->u
.def
.section
->owner
;
1801 if (! ((*info
->callbacks
->multiple_common
)
1802 (info
, h
->root
.string
, obfd
, h
->type
, 0,
1803 abfd
, bfd_link_hash_common
, value
)))
1809 /* Multiple indirect symbols. This is OK if they both point
1810 to the same symbol. */
1811 if (strcmp (h
->u
.i
.link
->root
.string
, string
) == 0)
1815 /* Handle a multiple definition. */
1816 if (!info
->allow_multiple_definition
)
1818 asection
*msec
= NULL
;
1823 case bfd_link_hash_defined
:
1824 msec
= h
->u
.def
.section
;
1825 mval
= h
->u
.def
.value
;
1827 case bfd_link_hash_indirect
:
1828 msec
= bfd_ind_section_ptr
;
1835 /* Ignore a redefinition of an absolute symbol to the
1836 same value; it's harmless. */
1837 if (h
->type
== bfd_link_hash_defined
1838 && bfd_is_abs_section (msec
)
1839 && bfd_is_abs_section (section
)
1843 if (! ((*info
->callbacks
->multiple_definition
)
1844 (info
, h
->root
.string
, msec
->owner
, msec
, mval
,
1845 abfd
, section
, value
)))
1851 /* Create an indirect symbol from an existing common symbol. */
1852 BFD_ASSERT (h
->type
== bfd_link_hash_common
);
1853 if (! ((*info
->callbacks
->multiple_common
)
1854 (info
, h
->root
.string
,
1855 h
->u
.c
.p
->section
->owner
, bfd_link_hash_common
, h
->u
.c
.size
,
1856 abfd
, bfd_link_hash_indirect
, 0)))
1860 /* Create an indirect symbol. */
1862 struct bfd_link_hash_entry
*inh
;
1864 /* STRING is the name of the symbol we want to indirect
1866 inh
= bfd_wrapped_link_hash_lookup (abfd
, info
, string
, TRUE
,
1870 if (inh
->type
== bfd_link_hash_indirect
1871 && inh
->u
.i
.link
== h
)
1873 (*_bfd_error_handler
)
1874 (_("%B: indirect symbol `%s' to `%s' is a loop"),
1875 abfd
, name
, string
);
1876 bfd_set_error (bfd_error_invalid_operation
);
1879 if (inh
->type
== bfd_link_hash_new
)
1881 inh
->type
= bfd_link_hash_undefined
;
1882 inh
->u
.undef
.abfd
= abfd
;
1883 bfd_link_add_undef (info
->hash
, inh
);
1886 /* If the indirect symbol has been referenced, we need to
1887 push the reference down to the symbol we are
1889 if (h
->type
!= bfd_link_hash_new
)
1895 h
->type
= bfd_link_hash_indirect
;
1901 /* Add an entry to a set. */
1902 if (! (*info
->callbacks
->add_to_set
) (info
, h
, BFD_RELOC_CTOR
,
1903 abfd
, section
, value
))
1908 /* Issue a warning and cycle. */
1909 if (h
->u
.i
.warning
!= NULL
)
1911 if (! (*info
->callbacks
->warning
) (info
, h
->u
.i
.warning
,
1912 h
->root
.string
, abfd
,
1915 /* Only issue a warning once. */
1916 h
->u
.i
.warning
= NULL
;
1920 /* Try again with the referenced symbol. */
1926 /* A reference to an indirect symbol. */
1927 if (h
->u
.undef
.next
== NULL
&& info
->hash
->undefs_tail
!= h
)
1928 h
->u
.undef
.next
= h
;
1934 /* Issue a warning. */
1935 if (! (*info
->callbacks
->warning
) (info
, string
, h
->root
.string
,
1936 hash_entry_bfd (h
), NULL
, 0))
1941 /* Warn if this symbol has been referenced already,
1942 otherwise add a warning. A symbol has been referenced if
1943 the u.undef.next field is not NULL, or it is the tail of the
1944 undefined symbol list. The REF case above helps to
1946 if (h
->u
.undef
.next
!= NULL
|| info
->hash
->undefs_tail
== h
)
1948 if (! (*info
->callbacks
->warning
) (info
, string
, h
->root
.string
,
1949 hash_entry_bfd (h
), NULL
, 0))
1955 /* Make a warning symbol. */
1957 struct bfd_link_hash_entry
*sub
;
1959 /* STRING is the warning to give. */
1960 sub
= ((struct bfd_link_hash_entry
*)
1961 ((*info
->hash
->table
.newfunc
)
1962 (NULL
, &info
->hash
->table
, h
->root
.string
)));
1966 sub
->type
= bfd_link_hash_warning
;
1969 sub
->u
.i
.warning
= string
;
1973 size_t len
= strlen (string
) + 1;
1975 w
= bfd_hash_allocate (&info
->hash
->table
, len
);
1978 memcpy (w
, string
, len
);
1979 sub
->u
.i
.warning
= w
;
1982 bfd_hash_replace (&info
->hash
->table
,
1983 (struct bfd_hash_entry
*) h
,
1984 (struct bfd_hash_entry
*) sub
);
1996 /* Generic final link routine. */
1999 _bfd_generic_final_link (bfd
*abfd
, struct bfd_link_info
*info
)
2003 struct bfd_link_order
*p
;
2005 struct generic_write_global_symbol_info wginfo
;
2007 bfd_get_outsymbols (abfd
) = NULL
;
2008 bfd_get_symcount (abfd
) = 0;
2011 /* Mark all sections which will be included in the output file. */
2012 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
2013 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
2014 if (p
->type
== bfd_indirect_link_order
)
2015 p
->u
.indirect
.section
->linker_mark
= TRUE
;
2017 /* Build the output symbol table. */
2018 for (sub
= info
->input_bfds
; sub
!= NULL
; sub
= sub
->link_next
)
2019 if (! _bfd_generic_link_output_symbols (abfd
, sub
, info
, &outsymalloc
))
2022 /* Accumulate the global symbols. */
2024 wginfo
.output_bfd
= abfd
;
2025 wginfo
.psymalloc
= &outsymalloc
;
2026 _bfd_generic_link_hash_traverse (_bfd_generic_hash_table (info
),
2027 _bfd_generic_link_write_global_symbol
,
2030 /* Make sure we have a trailing NULL pointer on OUTSYMBOLS. We
2031 shouldn't really need one, since we have SYMCOUNT, but some old
2032 code still expects one. */
2033 if (! generic_add_output_symbol (abfd
, &outsymalloc
, NULL
))
2036 if (info
->relocatable
)
2038 /* Allocate space for the output relocs for each section. */
2039 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
2042 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
2044 if (p
->type
== bfd_section_reloc_link_order
2045 || p
->type
== bfd_symbol_reloc_link_order
)
2047 else if (p
->type
== bfd_indirect_link_order
)
2049 asection
*input_section
;
2056 input_section
= p
->u
.indirect
.section
;
2057 input_bfd
= input_section
->owner
;
2058 relsize
= bfd_get_reloc_upper_bound (input_bfd
,
2062 relocs
= bfd_malloc (relsize
);
2063 if (!relocs
&& relsize
!= 0)
2065 symbols
= _bfd_generic_link_get_symbols (input_bfd
);
2066 reloc_count
= bfd_canonicalize_reloc (input_bfd
,
2071 if (reloc_count
< 0)
2073 BFD_ASSERT ((unsigned long) reloc_count
2074 == input_section
->reloc_count
);
2075 o
->reloc_count
+= reloc_count
;
2078 if (o
->reloc_count
> 0)
2082 amt
= o
->reloc_count
;
2083 amt
*= sizeof (arelent
*);
2084 o
->orelocation
= bfd_alloc (abfd
, amt
);
2085 if (!o
->orelocation
)
2087 o
->flags
|= SEC_RELOC
;
2088 /* Reset the count so that it can be used as an index
2089 when putting in the output relocs. */
2095 /* Handle all the link order information for the sections. */
2096 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
2098 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
2102 case bfd_section_reloc_link_order
:
2103 case bfd_symbol_reloc_link_order
:
2104 if (! _bfd_generic_reloc_link_order (abfd
, info
, o
, p
))
2107 case bfd_indirect_link_order
:
2108 if (! default_indirect_link_order (abfd
, info
, o
, p
, TRUE
))
2112 if (! _bfd_default_link_order (abfd
, info
, o
, p
))
2122 /* Add an output symbol to the output BFD. */
2125 generic_add_output_symbol (bfd
*output_bfd
, size_t *psymalloc
, asymbol
*sym
)
2127 if (bfd_get_symcount (output_bfd
) >= *psymalloc
)
2132 if (*psymalloc
== 0)
2137 amt
*= sizeof (asymbol
*);
2138 newsyms
= bfd_realloc (bfd_get_outsymbols (output_bfd
), amt
);
2139 if (newsyms
== NULL
)
2141 bfd_get_outsymbols (output_bfd
) = newsyms
;
2144 bfd_get_outsymbols (output_bfd
) [bfd_get_symcount (output_bfd
)] = sym
;
2146 ++ bfd_get_symcount (output_bfd
);
2151 /* Handle the symbols for an input BFD. */
2154 _bfd_generic_link_output_symbols (bfd
*output_bfd
,
2156 struct bfd_link_info
*info
,
2162 if (!bfd_generic_link_read_symbols (input_bfd
))
2165 /* Create a filename symbol if we are supposed to. */
2166 if (info
->create_object_symbols_section
!= NULL
)
2170 for (sec
= input_bfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
2172 if (sec
->output_section
== info
->create_object_symbols_section
)
2176 newsym
= bfd_make_empty_symbol (input_bfd
);
2179 newsym
->name
= input_bfd
->filename
;
2181 newsym
->flags
= BSF_LOCAL
| BSF_FILE
;
2182 newsym
->section
= sec
;
2184 if (! generic_add_output_symbol (output_bfd
, psymalloc
,
2193 /* Adjust the values of the globally visible symbols, and write out
2195 sym_ptr
= _bfd_generic_link_get_symbols (input_bfd
);
2196 sym_end
= sym_ptr
+ _bfd_generic_link_get_symcount (input_bfd
);
2197 for (; sym_ptr
< sym_end
; sym_ptr
++)
2200 struct generic_link_hash_entry
*h
;
2205 if ((sym
->flags
& (BSF_INDIRECT
2210 || bfd_is_und_section (bfd_get_section (sym
))
2211 || bfd_is_com_section (bfd_get_section (sym
))
2212 || bfd_is_ind_section (bfd_get_section (sym
)))
2214 if (sym
->udata
.p
!= NULL
)
2216 else if ((sym
->flags
& BSF_CONSTRUCTOR
) != 0)
2218 /* This case normally means that the main linker code
2219 deliberately ignored this constructor symbol. We
2220 should just pass it through. This will screw up if
2221 the constructor symbol is from a different,
2222 non-generic, object file format, but the case will
2223 only arise when linking with -r, which will probably
2224 fail anyhow, since there will be no way to represent
2225 the relocs in the output format being used. */
2228 else if (bfd_is_und_section (bfd_get_section (sym
)))
2229 h
= ((struct generic_link_hash_entry
*)
2230 bfd_wrapped_link_hash_lookup (output_bfd
, info
,
2231 bfd_asymbol_name (sym
),
2232 FALSE
, FALSE
, TRUE
));
2234 h
= _bfd_generic_link_hash_lookup (_bfd_generic_hash_table (info
),
2235 bfd_asymbol_name (sym
),
2236 FALSE
, FALSE
, TRUE
);
2240 /* Force all references to this symbol to point to
2241 the same area in memory. It is possible that
2242 this routine will be called with a hash table
2243 other than a generic hash table, so we double
2245 if (info
->output_bfd
->xvec
== input_bfd
->xvec
)
2248 *sym_ptr
= sym
= h
->sym
;
2251 switch (h
->root
.type
)
2254 case bfd_link_hash_new
:
2256 case bfd_link_hash_undefined
:
2258 case bfd_link_hash_undefweak
:
2259 sym
->flags
|= BSF_WEAK
;
2261 case bfd_link_hash_indirect
:
2262 h
= (struct generic_link_hash_entry
*) h
->root
.u
.i
.link
;
2264 case bfd_link_hash_defined
:
2265 sym
->flags
|= BSF_GLOBAL
;
2266 sym
->flags
&=~ BSF_CONSTRUCTOR
;
2267 sym
->value
= h
->root
.u
.def
.value
;
2268 sym
->section
= h
->root
.u
.def
.section
;
2270 case bfd_link_hash_defweak
:
2271 sym
->flags
|= BSF_WEAK
;
2272 sym
->flags
&=~ BSF_CONSTRUCTOR
;
2273 sym
->value
= h
->root
.u
.def
.value
;
2274 sym
->section
= h
->root
.u
.def
.section
;
2276 case bfd_link_hash_common
:
2277 sym
->value
= h
->root
.u
.c
.size
;
2278 sym
->flags
|= BSF_GLOBAL
;
2279 if (! bfd_is_com_section (sym
->section
))
2281 BFD_ASSERT (bfd_is_und_section (sym
->section
));
2282 sym
->section
= bfd_com_section_ptr
;
2284 /* We do not set the section of the symbol to
2285 h->root.u.c.p->section. That value was saved so
2286 that we would know where to allocate the symbol
2287 if it was defined. In this case the type is
2288 still bfd_link_hash_common, so we did not define
2289 it, so we do not want to use that section. */
2295 /* This switch is straight from the old code in
2296 write_file_locals in ldsym.c. */
2297 if (info
->strip
== strip_all
2298 || (info
->strip
== strip_some
2299 && bfd_hash_lookup (info
->keep_hash
, bfd_asymbol_name (sym
),
2300 FALSE
, FALSE
) == NULL
))
2302 else if ((sym
->flags
& (BSF_GLOBAL
| BSF_WEAK
)) != 0)
2304 /* If this symbol is marked as occurring now, rather
2305 than at the end, output it now. This is used for
2306 COFF C_EXT FCN symbols. FIXME: There must be a
2308 if (bfd_asymbol_bfd (sym
) == input_bfd
2309 && (sym
->flags
& BSF_NOT_AT_END
) != 0)
2314 else if (bfd_is_ind_section (sym
->section
))
2316 else if ((sym
->flags
& BSF_DEBUGGING
) != 0)
2318 if (info
->strip
== strip_none
)
2323 else if (bfd_is_und_section (sym
->section
)
2324 || bfd_is_com_section (sym
->section
))
2326 else if ((sym
->flags
& BSF_LOCAL
) != 0)
2328 if ((sym
->flags
& BSF_WARNING
) != 0)
2332 switch (info
->discard
)
2338 case discard_sec_merge
:
2340 if (info
->relocatable
2341 || ! (sym
->section
->flags
& SEC_MERGE
))
2345 if (bfd_is_local_label (input_bfd
, sym
))
2356 else if ((sym
->flags
& BSF_CONSTRUCTOR
))
2358 if (info
->strip
!= strip_all
)
2366 /* If this symbol is in a section which is not being included
2367 in the output file, then we don't want to output the
2369 if (!bfd_is_abs_section (sym
->section
)
2370 && bfd_section_removed_from_list (output_bfd
,
2371 sym
->section
->output_section
))
2376 if (! generic_add_output_symbol (output_bfd
, psymalloc
, sym
))
2386 /* Set the section and value of a generic BFD symbol based on a linker
2387 hash table entry. */
2390 set_symbol_from_hash (asymbol
*sym
, struct bfd_link_hash_entry
*h
)
2397 case bfd_link_hash_new
:
2398 /* This can happen when a constructor symbol is seen but we are
2399 not building constructors. */
2400 if (sym
->section
!= NULL
)
2402 BFD_ASSERT ((sym
->flags
& BSF_CONSTRUCTOR
) != 0);
2406 sym
->flags
|= BSF_CONSTRUCTOR
;
2407 sym
->section
= bfd_abs_section_ptr
;
2411 case bfd_link_hash_undefined
:
2412 sym
->section
= bfd_und_section_ptr
;
2415 case bfd_link_hash_undefweak
:
2416 sym
->section
= bfd_und_section_ptr
;
2418 sym
->flags
|= BSF_WEAK
;
2420 case bfd_link_hash_defined
:
2421 sym
->section
= h
->u
.def
.section
;
2422 sym
->value
= h
->u
.def
.value
;
2424 case bfd_link_hash_defweak
:
2425 sym
->flags
|= BSF_WEAK
;
2426 sym
->section
= h
->u
.def
.section
;
2427 sym
->value
= h
->u
.def
.value
;
2429 case bfd_link_hash_common
:
2430 sym
->value
= h
->u
.c
.size
;
2431 if (sym
->section
== NULL
)
2432 sym
->section
= bfd_com_section_ptr
;
2433 else if (! bfd_is_com_section (sym
->section
))
2435 BFD_ASSERT (bfd_is_und_section (sym
->section
));
2436 sym
->section
= bfd_com_section_ptr
;
2438 /* Do not set the section; see _bfd_generic_link_output_symbols. */
2440 case bfd_link_hash_indirect
:
2441 case bfd_link_hash_warning
:
2442 /* FIXME: What should we do here? */
2447 /* Write out a global symbol, if it hasn't already been written out.
2448 This is called for each symbol in the hash table. */
2451 _bfd_generic_link_write_global_symbol (struct generic_link_hash_entry
*h
,
2454 struct generic_write_global_symbol_info
*wginfo
= data
;
2457 if (h
->root
.type
== bfd_link_hash_warning
)
2458 h
= (struct generic_link_hash_entry
*) h
->root
.u
.i
.link
;
2465 if (wginfo
->info
->strip
== strip_all
2466 || (wginfo
->info
->strip
== strip_some
2467 && bfd_hash_lookup (wginfo
->info
->keep_hash
, h
->root
.root
.string
,
2468 FALSE
, FALSE
) == NULL
))
2475 sym
= bfd_make_empty_symbol (wginfo
->output_bfd
);
2478 sym
->name
= h
->root
.root
.string
;
2482 set_symbol_from_hash (sym
, &h
->root
);
2484 sym
->flags
|= BSF_GLOBAL
;
2486 if (! generic_add_output_symbol (wginfo
->output_bfd
, wginfo
->psymalloc
,
2489 /* FIXME: No way to return failure. */
2496 /* Create a relocation. */
2499 _bfd_generic_reloc_link_order (bfd
*abfd
,
2500 struct bfd_link_info
*info
,
2502 struct bfd_link_order
*link_order
)
2506 if (! info
->relocatable
)
2508 if (sec
->orelocation
== NULL
)
2511 r
= bfd_alloc (abfd
, sizeof (arelent
));
2515 r
->address
= link_order
->offset
;
2516 r
->howto
= bfd_reloc_type_lookup (abfd
, link_order
->u
.reloc
.p
->reloc
);
2519 bfd_set_error (bfd_error_bad_value
);
2523 /* Get the symbol to use for the relocation. */
2524 if (link_order
->type
== bfd_section_reloc_link_order
)
2525 r
->sym_ptr_ptr
= link_order
->u
.reloc
.p
->u
.section
->symbol_ptr_ptr
;
2528 struct generic_link_hash_entry
*h
;
2530 h
= ((struct generic_link_hash_entry
*)
2531 bfd_wrapped_link_hash_lookup (abfd
, info
,
2532 link_order
->u
.reloc
.p
->u
.name
,
2533 FALSE
, FALSE
, TRUE
));
2537 if (! ((*info
->callbacks
->unattached_reloc
)
2538 (info
, link_order
->u
.reloc
.p
->u
.name
, NULL
, NULL
, 0)))
2540 bfd_set_error (bfd_error_bad_value
);
2543 r
->sym_ptr_ptr
= &h
->sym
;
2546 /* If this is an inplace reloc, write the addend to the object file.
2547 Otherwise, store it in the reloc addend. */
2548 if (! r
->howto
->partial_inplace
)
2549 r
->addend
= link_order
->u
.reloc
.p
->addend
;
2553 bfd_reloc_status_type rstat
;
2558 size
= bfd_get_reloc_size (r
->howto
);
2559 buf
= bfd_zmalloc (size
);
2562 rstat
= _bfd_relocate_contents (r
->howto
, abfd
,
2563 (bfd_vma
) link_order
->u
.reloc
.p
->addend
,
2570 case bfd_reloc_outofrange
:
2572 case bfd_reloc_overflow
:
2573 if (! ((*info
->callbacks
->reloc_overflow
)
2575 (link_order
->type
== bfd_section_reloc_link_order
2576 ? bfd_section_name (abfd
, link_order
->u
.reloc
.p
->u
.section
)
2577 : link_order
->u
.reloc
.p
->u
.name
),
2578 r
->howto
->name
, link_order
->u
.reloc
.p
->addend
,
2586 loc
= link_order
->offset
* bfd_octets_per_byte (abfd
);
2587 ok
= bfd_set_section_contents (abfd
, sec
, buf
, loc
, size
);
2595 sec
->orelocation
[sec
->reloc_count
] = r
;
2601 /* Allocate a new link_order for a section. */
2603 struct bfd_link_order
*
2604 bfd_new_link_order (bfd
*abfd
, asection
*section
)
2606 bfd_size_type amt
= sizeof (struct bfd_link_order
);
2607 struct bfd_link_order
*new;
2609 new = bfd_zalloc (abfd
, amt
);
2613 new->type
= bfd_undefined_link_order
;
2615 if (section
->map_tail
.link_order
!= NULL
)
2616 section
->map_tail
.link_order
->next
= new;
2618 section
->map_head
.link_order
= new;
2619 section
->map_tail
.link_order
= new;
2624 /* Default link order processing routine. Note that we can not handle
2625 the reloc_link_order types here, since they depend upon the details
2626 of how the particular backends generates relocs. */
2629 _bfd_default_link_order (bfd
*abfd
,
2630 struct bfd_link_info
*info
,
2632 struct bfd_link_order
*link_order
)
2634 switch (link_order
->type
)
2636 case bfd_undefined_link_order
:
2637 case bfd_section_reloc_link_order
:
2638 case bfd_symbol_reloc_link_order
:
2641 case bfd_indirect_link_order
:
2642 return default_indirect_link_order (abfd
, info
, sec
, link_order
,
2644 case bfd_data_link_order
:
2645 return default_data_link_order (abfd
, info
, sec
, link_order
);
2649 /* Default routine to handle a bfd_data_link_order. */
2652 default_data_link_order (bfd
*abfd
,
2653 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
2655 struct bfd_link_order
*link_order
)
2663 BFD_ASSERT ((sec
->flags
& SEC_HAS_CONTENTS
) != 0);
2665 size
= link_order
->size
;
2669 fill
= link_order
->u
.data
.contents
;
2670 fill_size
= link_order
->u
.data
.size
;
2671 if (fill_size
!= 0 && fill_size
< size
)
2674 fill
= bfd_malloc (size
);
2679 memset (p
, (int) link_order
->u
.data
.contents
[0], (size_t) size
);
2684 memcpy (p
, link_order
->u
.data
.contents
, fill_size
);
2688 while (size
>= fill_size
);
2690 memcpy (p
, link_order
->u
.data
.contents
, (size_t) size
);
2691 size
= link_order
->size
;
2695 loc
= link_order
->offset
* bfd_octets_per_byte (abfd
);
2696 result
= bfd_set_section_contents (abfd
, sec
, fill
, loc
, size
);
2698 if (fill
!= link_order
->u
.data
.contents
)
2703 /* Default routine to handle a bfd_indirect_link_order. */
2706 default_indirect_link_order (bfd
*output_bfd
,
2707 struct bfd_link_info
*info
,
2708 asection
*output_section
,
2709 struct bfd_link_order
*link_order
,
2710 bfd_boolean generic_linker
)
2712 asection
*input_section
;
2714 bfd_byte
*contents
= NULL
;
2715 bfd_byte
*new_contents
;
2716 bfd_size_type sec_size
;
2719 BFD_ASSERT ((output_section
->flags
& SEC_HAS_CONTENTS
) != 0);
2721 input_section
= link_order
->u
.indirect
.section
;
2722 input_bfd
= input_section
->owner
;
2723 if (input_section
->size
== 0)
2726 BFD_ASSERT (input_section
->output_section
== output_section
);
2727 BFD_ASSERT (input_section
->output_offset
== link_order
->offset
);
2728 BFD_ASSERT (input_section
->size
== link_order
->size
);
2730 if (info
->relocatable
2731 && input_section
->reloc_count
> 0
2732 && output_section
->orelocation
== NULL
)
2734 /* Space has not been allocated for the output relocations.
2735 This can happen when we are called by a specific backend
2736 because somebody is attempting to link together different
2737 types of object files. Handling this case correctly is
2738 difficult, and sometimes impossible. */
2739 (*_bfd_error_handler
)
2740 (_("Attempt to do relocatable link with %s input and %s output"),
2741 bfd_get_target (input_bfd
), bfd_get_target (output_bfd
));
2742 bfd_set_error (bfd_error_wrong_format
);
2746 if (! generic_linker
)
2751 /* Get the canonical symbols. The generic linker will always
2752 have retrieved them by this point, but we are being called by
2753 a specific linker, presumably because we are linking
2754 different types of object files together. */
2755 if (!bfd_generic_link_read_symbols (input_bfd
))
2758 /* Since we have been called by a specific linker, rather than
2759 the generic linker, the values of the symbols will not be
2760 right. They will be the values as seen in the input file,
2761 not the values of the final link. We need to fix them up
2762 before we can relocate the section. */
2763 sympp
= _bfd_generic_link_get_symbols (input_bfd
);
2764 symppend
= sympp
+ _bfd_generic_link_get_symcount (input_bfd
);
2765 for (; sympp
< symppend
; sympp
++)
2768 struct bfd_link_hash_entry
*h
;
2772 if ((sym
->flags
& (BSF_INDIRECT
2777 || bfd_is_und_section (bfd_get_section (sym
))
2778 || bfd_is_com_section (bfd_get_section (sym
))
2779 || bfd_is_ind_section (bfd_get_section (sym
)))
2781 /* sym->udata may have been set by
2782 generic_link_add_symbol_list. */
2783 if (sym
->udata
.p
!= NULL
)
2785 else if (bfd_is_und_section (bfd_get_section (sym
)))
2786 h
= bfd_wrapped_link_hash_lookup (output_bfd
, info
,
2787 bfd_asymbol_name (sym
),
2788 FALSE
, FALSE
, TRUE
);
2790 h
= bfd_link_hash_lookup (info
->hash
,
2791 bfd_asymbol_name (sym
),
2792 FALSE
, FALSE
, TRUE
);
2794 set_symbol_from_hash (sym
, h
);
2799 if ((output_section
->flags
& (SEC_GROUP
| SEC_LINKER_CREATED
)) == SEC_GROUP
2800 && input_section
->size
!= 0)
2802 /* Group section contents are set by bfd_elf_set_group_contents. */
2803 if (!output_bfd
->output_has_begun
)
2805 /* FIXME: This hack ensures bfd_elf_set_group_contents is called. */
2806 if (!bfd_set_section_contents (output_bfd
, output_section
, "", 0, 1))
2809 new_contents
= output_section
->contents
;
2810 BFD_ASSERT (new_contents
!= NULL
);
2811 BFD_ASSERT (input_section
->output_offset
== 0);
2815 /* Get and relocate the section contents. */
2816 sec_size
= (input_section
->rawsize
> input_section
->size
2817 ? input_section
->rawsize
2818 : input_section
->size
);
2819 contents
= bfd_malloc (sec_size
);
2820 if (contents
== NULL
&& sec_size
!= 0)
2822 new_contents
= (bfd_get_relocated_section_contents
2823 (output_bfd
, info
, link_order
, contents
,
2825 _bfd_generic_link_get_symbols (input_bfd
)));
2830 /* Output the section contents. */
2831 loc
= input_section
->output_offset
* bfd_octets_per_byte (output_bfd
);
2832 if (! bfd_set_section_contents (output_bfd
, output_section
,
2833 new_contents
, loc
, input_section
->size
))
2836 if (contents
!= NULL
)
2841 if (contents
!= NULL
)
2846 /* A little routine to count the number of relocs in a link_order
2850 _bfd_count_link_order_relocs (struct bfd_link_order
*link_order
)
2852 register unsigned int c
;
2853 register struct bfd_link_order
*l
;
2856 for (l
= link_order
; l
!= NULL
; l
= l
->next
)
2858 if (l
->type
== bfd_section_reloc_link_order
2859 || l
->type
== bfd_symbol_reloc_link_order
)
2868 bfd_link_split_section
2871 bfd_boolean bfd_link_split_section (bfd *abfd, asection *sec);
2874 Return nonzero if @var{sec} should be split during a
2875 reloceatable or final link.
2877 .#define bfd_link_split_section(abfd, sec) \
2878 . BFD_SEND (abfd, _bfd_link_split_section, (abfd, sec))
2884 _bfd_generic_link_split_section (bfd
*abfd ATTRIBUTE_UNUSED
,
2885 asection
*sec ATTRIBUTE_UNUSED
)
2892 bfd_section_already_linked
2895 void bfd_section_already_linked (bfd *abfd, asection *sec,
2896 struct bfd_link_info *info);
2899 Check if @var{sec} has been already linked during a reloceatable
2902 .#define bfd_section_already_linked(abfd, sec, info) \
2903 . BFD_SEND (abfd, _section_already_linked, (abfd, sec, info))
2908 /* Sections marked with the SEC_LINK_ONCE flag should only be linked
2909 once into the output. This routine checks each section, and
2910 arrange to discard it if a section of the same name has already
2911 been linked. This code assumes that all relevant sections have the
2912 SEC_LINK_ONCE flag set; that is, it does not depend solely upon the
2913 section name. bfd_section_already_linked is called via
2914 bfd_map_over_sections. */
2916 /* The hash table. */
2918 static struct bfd_hash_table _bfd_section_already_linked_table
;
2920 /* Support routines for the hash table used by section_already_linked,
2921 initialize the table, traverse, lookup, fill in an entry and remove
2925 bfd_section_already_linked_table_traverse
2926 (bfd_boolean (*func
) (struct bfd_section_already_linked_hash_entry
*,
2927 void *), void *info
)
2929 bfd_hash_traverse (&_bfd_section_already_linked_table
,
2930 (bfd_boolean (*) (struct bfd_hash_entry
*,
2935 struct bfd_section_already_linked_hash_entry
*
2936 bfd_section_already_linked_table_lookup (const char *name
)
2938 return ((struct bfd_section_already_linked_hash_entry
*)
2939 bfd_hash_lookup (&_bfd_section_already_linked_table
, name
,
2944 bfd_section_already_linked_table_insert
2945 (struct bfd_section_already_linked_hash_entry
*already_linked_list
,
2948 struct bfd_section_already_linked
*l
;
2950 /* Allocate the memory from the same obstack as the hash table is
2952 l
= bfd_hash_allocate (&_bfd_section_already_linked_table
, sizeof *l
);
2956 l
->next
= already_linked_list
->entry
;
2957 already_linked_list
->entry
= l
;
2961 static struct bfd_hash_entry
*
2962 already_linked_newfunc (struct bfd_hash_entry
*entry ATTRIBUTE_UNUSED
,
2963 struct bfd_hash_table
*table
,
2964 const char *string ATTRIBUTE_UNUSED
)
2966 struct bfd_section_already_linked_hash_entry
*ret
=
2967 bfd_hash_allocate (table
, sizeof *ret
);
2978 bfd_section_already_linked_table_init (void)
2980 return bfd_hash_table_init_n (&_bfd_section_already_linked_table
,
2981 already_linked_newfunc
,
2982 sizeof (struct bfd_section_already_linked_hash_entry
),
2987 bfd_section_already_linked_table_free (void)
2989 bfd_hash_table_free (&_bfd_section_already_linked_table
);
2992 /* This is used on non-ELF inputs. */
2995 _bfd_generic_section_already_linked (bfd
*abfd
, asection
*sec
,
2996 struct bfd_link_info
*info
)
3000 struct bfd_section_already_linked
*l
;
3001 struct bfd_section_already_linked_hash_entry
*already_linked_list
;
3004 if ((flags
& SEC_LINK_ONCE
) == 0)
3007 /* FIXME: When doing a relocatable link, we may have trouble
3008 copying relocations in other sections that refer to local symbols
3009 in the section being discarded. Those relocations will have to
3010 be converted somehow; as of this writing I'm not sure that any of
3011 the backends handle that correctly.
3013 It is tempting to instead not discard link once sections when
3014 doing a relocatable link (technically, they should be discarded
3015 whenever we are building constructors). However, that fails,
3016 because the linker winds up combining all the link once sections
3017 into a single large link once section, which defeats the purpose
3018 of having link once sections in the first place. */
3020 name
= bfd_get_section_name (abfd
, sec
);
3022 already_linked_list
= bfd_section_already_linked_table_lookup (name
);
3024 for (l
= already_linked_list
->entry
; l
!= NULL
; l
= l
->next
)
3026 bfd_boolean skip
= FALSE
;
3027 struct coff_comdat_info
*s_comdat
3028 = bfd_coff_get_comdat_section (abfd
, sec
);
3029 struct coff_comdat_info
*l_comdat
3030 = bfd_coff_get_comdat_section (l
->sec
->owner
, l
->sec
);
3032 /* We may have 3 different sections on the list: group section,
3033 comdat section and linkonce section. SEC may be a linkonce or
3034 comdat section. We always ignore group section. For non-COFF
3035 inputs, we also ignore comdat section.
3037 FIXME: Is that safe to match a linkonce section with a comdat
3038 section for COFF inputs? */
3039 if ((l
->sec
->flags
& SEC_GROUP
) != 0)
3041 else if (bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
3043 if (s_comdat
!= NULL
3045 && strcmp (s_comdat
->name
, l_comdat
->name
) != 0)
3048 else if (l_comdat
!= NULL
)
3053 /* The section has already been linked. See if we should
3055 switch (flags
& SEC_LINK_DUPLICATES
)
3060 case SEC_LINK_DUPLICATES_DISCARD
:
3063 case SEC_LINK_DUPLICATES_ONE_ONLY
:
3064 (*_bfd_error_handler
)
3065 (_("%B: warning: ignoring duplicate section `%A'\n"),
3069 case SEC_LINK_DUPLICATES_SAME_CONTENTS
:
3070 /* FIXME: We should really dig out the contents of both
3071 sections and memcmp them. The COFF/PE spec says that
3072 the Microsoft linker does not implement this
3073 correctly, so I'm not going to bother doing it
3076 case SEC_LINK_DUPLICATES_SAME_SIZE
:
3077 if (sec
->size
!= l
->sec
->size
)
3078 (*_bfd_error_handler
)
3079 (_("%B: warning: duplicate section `%A' has different size\n"),
3084 /* Set the output_section field so that lang_add_section
3085 does not create a lang_input_section structure for this
3086 section. Since there might be a symbol in the section
3087 being discarded, we must retain a pointer to the section
3088 which we are really going to use. */
3089 sec
->output_section
= bfd_abs_section_ptr
;
3090 sec
->kept_section
= l
->sec
;
3096 /* This is the first section with this name. Record it. */
3097 if (! bfd_section_already_linked_table_insert (already_linked_list
, sec
))
3098 info
->callbacks
->einfo (_("%F%P: already_linked_table: %E"));
3101 /* Convert symbols in excluded output sections to use a kept section. */
3104 fix_syms (struct bfd_link_hash_entry
*h
, void *data
)
3106 bfd
*obfd
= (bfd
*) data
;
3108 if (h
->type
== bfd_link_hash_warning
)
3111 if (h
->type
== bfd_link_hash_defined
3112 || h
->type
== bfd_link_hash_defweak
)
3114 asection
*s
= h
->u
.def
.section
;
3116 && s
->output_section
!= NULL
3117 && (s
->output_section
->flags
& SEC_EXCLUDE
) != 0
3118 && bfd_section_removed_from_list (obfd
, s
->output_section
))
3122 h
->u
.def
.value
+= s
->output_offset
+ s
->output_section
->vma
;
3124 /* Find preceding kept section. */
3125 for (op1
= s
->output_section
->prev
; op1
!= NULL
; op1
= op1
->prev
)
3126 if ((op1
->flags
& SEC_EXCLUDE
) == 0
3127 && !bfd_section_removed_from_list (obfd
, op1
))
3130 /* Find following kept section. Start at prev->next because
3131 other sections may have been added after S was removed. */
3132 if (s
->output_section
->prev
!= NULL
)
3133 op
= s
->output_section
->prev
->next
;
3135 op
= s
->output_section
->owner
->sections
;
3136 for (; op
!= NULL
; op
= op
->next
)
3137 if ((op
->flags
& SEC_EXCLUDE
) == 0
3138 && !bfd_section_removed_from_list (obfd
, op
))
3141 /* Choose better of two sections, based on flags. The idea
3142 is to choose a section that will be in the same segment
3143 as S would have been if it was kept. */
3147 op
= bfd_abs_section_ptr
;
3149 else if (op
== NULL
)
3151 else if (((op1
->flags
^ op
->flags
)
3152 & (SEC_ALLOC
| SEC_THREAD_LOCAL
)) != 0)
3154 if (((op
->flags
^ s
->flags
)
3155 & (SEC_ALLOC
| SEC_THREAD_LOCAL
)) != 0)
3158 else if (((op1
->flags
^ op
->flags
) & SEC_READONLY
) != 0)
3160 if (((op
->flags
^ s
->flags
) & SEC_READONLY
) != 0)
3163 else if (((op1
->flags
^ op
->flags
) & SEC_CODE
) != 0)
3165 if (((op
->flags
^ s
->flags
) & SEC_CODE
) != 0)
3170 /* Flags we care about are the same. Prefer the following
3171 section if that will result in a positive valued sym. */
3172 if (h
->u
.def
.value
< op
->vma
)
3176 h
->u
.def
.value
-= op
->vma
;
3177 h
->u
.def
.section
= op
;
3185 _bfd_fix_excluded_sec_syms (bfd
*obfd
, struct bfd_link_info
*info
)
3187 bfd_link_hash_traverse (info
->hash
, fix_syms
, obfd
);