Delete "Loaded symbols for ..." message, it is redundant.
[deliverable/binutils-gdb.git] / bfd / linker.c
CommitLineData
252b5132 1/* linker.c -- BFD linker routines
4b95cf5c 2 Copyright (C) 1993-2014 Free Software Foundation, Inc.
252b5132
RH
3 Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support
4
5ed6aba4 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
5ed6aba4
NC
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
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
5ed6aba4 10 (at your option) any later version.
252b5132 11
5ed6aba4
NC
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.
252b5132 16
5ed6aba4
NC
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
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
252b5132 21
252b5132 22#include "sysdep.h"
3db64b00 23#include "bfd.h"
252b5132
RH
24#include "libbfd.h"
25#include "bfdlink.h"
26#include "genlink.h"
27
28/*
29SECTION
30 Linker Functions
31
32@cindex Linker
33 The linker uses three special entry points in the BFD target
34 vector. It is not necessary to write special routines for
35 these entry points when creating a new BFD back end, since
36 generic versions are provided. However, writing them can
37 speed up linking and make it use significantly less runtime
38 memory.
39
40 The first routine creates a hash table used by the other
41 routines. The second routine adds the symbols from an object
42 file to the hash table. The third routine takes all the
43 object files and links them together to create the output
44 file. These routines are designed so that the linker proper
45 does not need to know anything about the symbols in the object
46 files that it is linking. The linker merely arranges the
47 sections as directed by the linker script and lets BFD handle
48 the details of symbols and relocs.
49
50 The second routine and third routines are passed a pointer to
51 a <<struct bfd_link_info>> structure (defined in
52 <<bfdlink.h>>) which holds information relevant to the link,
53 including the linker hash table (which was created by the
54 first routine) and a set of callback functions to the linker
55 proper.
56
57 The generic linker routines are in <<linker.c>>, and use the
58 header file <<genlink.h>>. As of this writing, the only back
59 ends which have implemented versions of these routines are
60 a.out (in <<aoutx.h>>) and ECOFF (in <<ecoff.c>>). The a.out
61 routines are used as examples throughout this section.
62
509945ae 63@menu
252b5132
RH
64@* Creating a Linker Hash Table::
65@* Adding Symbols to the Hash Table::
66@* Performing the Final Link::
67@end menu
68
69INODE
70Creating a Linker Hash Table, Adding Symbols to the Hash Table, Linker Functions, Linker Functions
71SUBSECTION
72 Creating a linker hash table
73
74@cindex _bfd_link_hash_table_create in target vector
75@cindex target vector (_bfd_link_hash_table_create)
76 The linker routines must create a hash table, which must be
77 derived from <<struct bfd_link_hash_table>> described in
dc1bc0c9 78 <<bfdlink.c>>. @xref{Hash Tables}, for information on how to
252b5132
RH
79 create a derived hash table. This entry point is called using
80 the target vector of the linker output file.
81
82 The <<_bfd_link_hash_table_create>> entry point must allocate
83 and initialize an instance of the desired hash table. If the
84 back end does not require any additional information to be
85 stored with the entries in the hash table, the entry point may
86 simply create a <<struct bfd_link_hash_table>>. Most likely,
87 however, some additional information will be needed.
88
89 For example, with each entry in the hash table the a.out
90 linker keeps the index the symbol has in the final output file
1049f94e 91 (this index number is used so that when doing a relocatable
252b5132
RH
92 link the symbol index used in the output file can be quickly
93 filled in when copying over a reloc). The a.out linker code
94 defines the required structures and functions for a hash table
95 derived from <<struct bfd_link_hash_table>>. The a.out linker
96 hash table is created by the function
97 <<NAME(aout,link_hash_table_create)>>; it simply allocates
98 space for the hash table, initializes it, and returns a
99 pointer to it.
100
101 When writing the linker routines for a new back end, you will
102 generally not know exactly which fields will be required until
103 you have finished. You should simply create a new hash table
104 which defines no additional fields, and then simply add fields
105 as they become necessary.
106
107INODE
108Adding Symbols to the Hash Table, Performing the Final Link, Creating a Linker Hash Table, Linker Functions
109SUBSECTION
110 Adding symbols to the hash table
111
112@cindex _bfd_link_add_symbols in target vector
113@cindex target vector (_bfd_link_add_symbols)
114 The linker proper will call the <<_bfd_link_add_symbols>>
115 entry point for each object file or archive which is to be
116 linked (typically these are the files named on the command
117 line, but some may also come from the linker script). The
118 entry point is responsible for examining the file. For an
119 object file, BFD must add any relevant symbol information to
120 the hash table. For an archive, BFD must determine which
121 elements of the archive should be used and adding them to the
122 link.
123
124 The a.out version of this entry point is
125 <<NAME(aout,link_add_symbols)>>.
126
127@menu
128@* Differing file formats::
129@* Adding symbols from an object file::
130@* Adding symbols from an archive::
131@end menu
132
133INODE
134Differing file formats, Adding symbols from an object file, Adding Symbols to the Hash Table, Adding Symbols to the Hash Table
135SUBSUBSECTION
136 Differing file formats
137
138 Normally all the files involved in a link will be of the same
139 format, but it is also possible to link together different
140 format object files, and the back end must support that. The
141 <<_bfd_link_add_symbols>> entry point is called via the target
142 vector of the file to be added. This has an important
143 consequence: the function may not assume that the hash table
144 is the type created by the corresponding
145 <<_bfd_link_hash_table_create>> vector. All the
146 <<_bfd_link_add_symbols>> function can assume about the hash
147 table is that it is derived from <<struct
148 bfd_link_hash_table>>.
149
150 Sometimes the <<_bfd_link_add_symbols>> function must store
151 some information in the hash table entry to be used by the
f13a99db
AM
152 <<_bfd_final_link>> function. In such a case the output bfd
153 xvec must be checked to make sure that the hash table was
154 created by an object file of the same format.
252b5132
RH
155
156 The <<_bfd_final_link>> routine must be prepared to handle a
157 hash entry without any extra information added by the
158 <<_bfd_link_add_symbols>> function. A hash entry without
159 extra information will also occur when the linker script
160 directs the linker to create a symbol. Note that, regardless
161 of how a hash table entry is added, all the fields will be
162 initialized to some sort of null value by the hash table entry
163 initialization function.
164
165 See <<ecoff_link_add_externals>> for an example of how to
f13a99db 166 check the output bfd before saving information (in this
252b5132
RH
167 case, the ECOFF external symbol debugging information) in a
168 hash table entry.
169
170INODE
171Adding symbols from an object file, Adding symbols from an archive, Differing file formats, Adding Symbols to the Hash Table
172SUBSUBSECTION
173 Adding symbols from an object file
174
175 When the <<_bfd_link_add_symbols>> routine is passed an object
176 file, it must add all externally visible symbols in that
177 object file to the hash table. The actual work of adding the
178 symbol to the hash table is normally handled by the function
179 <<_bfd_generic_link_add_one_symbol>>. The
180 <<_bfd_link_add_symbols>> routine is responsible for reading
181 all the symbols from the object file and passing the correct
182 information to <<_bfd_generic_link_add_one_symbol>>.
183
184 The <<_bfd_link_add_symbols>> routine should not use
185 <<bfd_canonicalize_symtab>> to read the symbols. The point of
186 providing this routine is to avoid the overhead of converting
187 the symbols into generic <<asymbol>> structures.
188
189@findex _bfd_generic_link_add_one_symbol
190 <<_bfd_generic_link_add_one_symbol>> handles the details of
191 combining common symbols, warning about multiple definitions,
192 and so forth. It takes arguments which describe the symbol to
193 add, notably symbol flags, a section, and an offset. The
194 symbol flags include such things as <<BSF_WEAK>> or
195 <<BSF_INDIRECT>>. The section is a section in the object
196 file, or something like <<bfd_und_section_ptr>> for an undefined
197 symbol or <<bfd_com_section_ptr>> for a common symbol.
198
199 If the <<_bfd_final_link>> routine is also going to need to
200 read the symbol information, the <<_bfd_link_add_symbols>>
201 routine should save it somewhere attached to the object file
202 BFD. However, the information should only be saved if the
b34976b6 203 <<keep_memory>> field of the <<info>> argument is TRUE, so
252b5132
RH
204 that the <<-no-keep-memory>> linker switch is effective.
205
206 The a.out function which adds symbols from an object file is
207 <<aout_link_add_object_symbols>>, and most of the interesting
208 work is in <<aout_link_add_symbols>>. The latter saves
209 pointers to the hash tables entries created by
210 <<_bfd_generic_link_add_one_symbol>> indexed by symbol number,
211 so that the <<_bfd_final_link>> routine does not have to call
212 the hash table lookup routine to locate the entry.
213
214INODE
215Adding symbols from an archive, , Adding symbols from an object file, Adding Symbols to the Hash Table
216SUBSUBSECTION
217 Adding symbols from an archive
218
219 When the <<_bfd_link_add_symbols>> routine is passed an
220 archive, it must look through the symbols defined by the
221 archive and decide which elements of the archive should be
222 included in the link. For each such element it must call the
223 <<add_archive_element>> linker callback, and it must add the
5d3236ee
DK
224 symbols from the object file to the linker hash table. (The
225 callback may in fact indicate that a replacement BFD should be
226 used, in which case the symbols from that BFD should be added
227 to the linker hash table instead.)
252b5132
RH
228
229@findex _bfd_generic_link_add_archive_symbols
230 In most cases the work of looking through the symbols in the
231 archive should be done by the
13e570f8 232 <<_bfd_generic_link_add_archive_symbols>> function.
252b5132
RH
233 <<_bfd_generic_link_add_archive_symbols>> is passed a function
234 to call to make the final decision about adding an archive
235 element to the link and to do the actual work of adding the
13e570f8 236 symbols to the linker hash table. If the element is to
252b5132
RH
237 be included, the <<add_archive_element>> linker callback
238 routine must be called with the element as an argument, and
5d3236ee 239 the element's symbols must be added to the linker hash table
252b5132 240 just as though the element had itself been passed to the
13e570f8 241 <<_bfd_link_add_symbols>> function.
252b5132
RH
242
243 When the a.out <<_bfd_link_add_symbols>> function receives an
244 archive, it calls <<_bfd_generic_link_add_archive_symbols>>
245 passing <<aout_link_check_archive_element>> as the function
246 argument. <<aout_link_check_archive_element>> calls
247 <<aout_link_check_ar_symbols>>. If the latter decides to add
248 the element (an element is only added if it provides a real,
249 non-common, definition for a previously undefined or common
250 symbol) it calls the <<add_archive_element>> callback and then
251 <<aout_link_check_archive_element>> calls
252 <<aout_link_add_symbols>> to actually add the symbols to the
5d3236ee
DK
253 linker hash table - possibly those of a substitute BFD, if the
254 <<add_archive_element>> callback avails itself of that option.
252b5132
RH
255
256 The ECOFF back end is unusual in that it does not normally
257 call <<_bfd_generic_link_add_archive_symbols>>, because ECOFF
258 archives already contain a hash table of symbols. The ECOFF
259 back end searches the archive itself to avoid the overhead of
260 creating a new hash table.
261
262INODE
263Performing the Final Link, , Adding Symbols to the Hash Table, Linker Functions
264SUBSECTION
265 Performing the final link
266
267@cindex _bfd_link_final_link in target vector
268@cindex target vector (_bfd_final_link)
269 When all the input files have been processed, the linker calls
270 the <<_bfd_final_link>> entry point of the output BFD. This
271 routine is responsible for producing the final output file,
272 which has several aspects. It must relocate the contents of
273 the input sections and copy the data into the output sections.
274 It must build an output symbol table including any local
275 symbols from the input files and the global symbols from the
1049f94e 276 hash table. When producing relocatable output, it must
252b5132
RH
277 modify the input relocs and write them into the output file.
278 There may also be object format dependent work to be done.
279
280 The linker will also call the <<write_object_contents>> entry
281 point when the BFD is closed. The two entry points must work
282 together in order to produce the correct output file.
283
284 The details of how this works are inevitably dependent upon
285 the specific object file format. The a.out
286 <<_bfd_final_link>> routine is <<NAME(aout,final_link)>>.
287
288@menu
289@* Information provided by the linker::
290@* Relocating the section contents::
291@* Writing the symbol table::
292@end menu
293
294INODE
295Information provided by the linker, Relocating the section contents, Performing the Final Link, Performing the Final Link
296SUBSUBSECTION
297 Information provided by the linker
298
299 Before the linker calls the <<_bfd_final_link>> entry point,
300 it sets up some data structures for the function to use.
301
302 The <<input_bfds>> field of the <<bfd_link_info>> structure
303 will point to a list of all the input files included in the
c72f2fb2 304 link. These files are linked through the <<link.next>> field
252b5132
RH
305 of the <<bfd>> structure.
306
307 Each section in the output file will have a list of
8423293d 308 <<link_order>> structures attached to the <<map_head.link_order>>
252b5132
RH
309 field (the <<link_order>> structure is defined in
310 <<bfdlink.h>>). These structures describe how to create the
311 contents of the output section in terms of the contents of
312 various input sections, fill constants, and, eventually, other
313 types of information. They also describe relocs that must be
314 created by the BFD backend, but do not correspond to any input
315 file; this is used to support -Ur, which builds constructors
1049f94e 316 while generating a relocatable object file.
252b5132
RH
317
318INODE
319Relocating the section contents, Writing the symbol table, Information provided by the linker, Performing the Final Link
320SUBSUBSECTION
321 Relocating the section contents
322
323 The <<_bfd_final_link>> function should look through the
324 <<link_order>> structures attached to each section of the
325 output file. Each <<link_order>> structure should either be
326 handled specially, or it should be passed to the function
327 <<_bfd_default_link_order>> which will do the right thing
328 (<<_bfd_default_link_order>> is defined in <<linker.c>>).
329
330 For efficiency, a <<link_order>> of type
331 <<bfd_indirect_link_order>> whose associated section belongs
332 to a BFD of the same format as the output BFD must be handled
333 specially. This type of <<link_order>> describes part of an
334 output section in terms of a section belonging to one of the
335 input files. The <<_bfd_final_link>> function should read the
336 contents of the section and any associated relocs, apply the
337 relocs to the section contents, and write out the modified
1049f94e 338 section contents. If performing a relocatable link, the
252b5132
RH
339 relocs themselves must also be modified and written out.
340
341@findex _bfd_relocate_contents
342@findex _bfd_final_link_relocate
343 The functions <<_bfd_relocate_contents>> and
344 <<_bfd_final_link_relocate>> provide some general support for
345 performing the actual relocations, notably overflow checking.
346 Their arguments include information about the symbol the
347 relocation is against and a <<reloc_howto_type>> argument
348 which describes the relocation to perform. These functions
349 are defined in <<reloc.c>>.
350
351 The a.out function which handles reading, relocating, and
352 writing section contents is <<aout_link_input_section>>. The
353 actual relocation is done in <<aout_link_input_section_std>>
354 and <<aout_link_input_section_ext>>.
355
356INODE
357Writing the symbol table, , Relocating the section contents, Performing the Final Link
358SUBSUBSECTION
359 Writing the symbol table
360
361 The <<_bfd_final_link>> function must gather all the symbols
362 in the input files and write them out. It must also write out
363 all the symbols in the global hash table. This must be
364 controlled by the <<strip>> and <<discard>> fields of the
365 <<bfd_link_info>> structure.
366
367 The local symbols of the input files will not have been
368 entered into the linker hash table. The <<_bfd_final_link>>
369 routine must consider each input file and include the symbols
370 in the output file. It may be convenient to do this when
371 looking through the <<link_order>> structures, or it may be
372 done by stepping through the <<input_bfds>> list.
373
374 The <<_bfd_final_link>> routine must also traverse the global
375 hash table to gather all the externally visible symbols. It
376 is possible that most of the externally visible symbols may be
377 written out when considering the symbols of each input file,
378 but it is still necessary to traverse the hash table since the
379 linker script may have defined some symbols that are not in
380 any of the input files.
381
382 The <<strip>> field of the <<bfd_link_info>> structure
383 controls which symbols are written out. The possible values
384 are listed in <<bfdlink.h>>. If the value is <<strip_some>>,
385 then the <<keep_hash>> field of the <<bfd_link_info>>
386 structure is a hash table of symbols to keep; each symbol
387 should be looked up in this hash table, and only symbols which
388 are present should be included in the output file.
389
390 If the <<strip>> field of the <<bfd_link_info>> structure
391 permits local symbols to be written out, the <<discard>> field
392 is used to further controls which local symbols are included
393 in the output file. If the value is <<discard_l>>, then all
394 local symbols which begin with a certain prefix are discarded;
395 this is controlled by the <<bfd_is_local_label_name>> entry point.
396
397 The a.out backend handles symbols by calling
398 <<aout_link_write_symbols>> on each input BFD and then
399 traversing the global hash table with the function
400 <<aout_link_write_other_symbol>>. It builds a string table
401 while writing out the symbols, which is written to the output
402 file at the end of <<NAME(aout,final_link)>>.
403*/
404
b34976b6 405static bfd_boolean generic_link_add_object_symbols
c58b9523
AM
406 (bfd *, struct bfd_link_info *, bfd_boolean collect);
407static bfd_boolean generic_link_add_symbols
408 (bfd *, struct bfd_link_info *, bfd_boolean);
b34976b6 409static bfd_boolean generic_link_check_archive_element_no_collect
13e570f8
AM
410 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *, const char *,
411 bfd_boolean *);
b34976b6 412static bfd_boolean generic_link_check_archive_element_collect
13e570f8
AM
413 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *, const char *,
414 bfd_boolean *);
b34976b6 415static bfd_boolean generic_link_check_archive_element
13e570f8
AM
416 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *, const char *,
417 bfd_boolean *, bfd_boolean);
b34976b6 418static bfd_boolean generic_link_add_symbol_list
c58b9523
AM
419 (bfd *, struct bfd_link_info *, bfd_size_type count, asymbol **,
420 bfd_boolean);
b34976b6 421static bfd_boolean generic_add_output_symbol
c58b9523 422 (bfd *, size_t *psymalloc, asymbol *);
b34976b6 423static bfd_boolean default_data_link_order
c58b9523 424 (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *);
b34976b6 425static bfd_boolean default_indirect_link_order
c58b9523
AM
426 (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *,
427 bfd_boolean);
252b5132
RH
428
429/* The link hash table structure is defined in bfdlink.h. It provides
430 a base hash table which the backend specific hash tables are built
431 upon. */
432
433/* Routine to create an entry in the link hash table. */
434
435struct bfd_hash_entry *
c58b9523
AM
436_bfd_link_hash_newfunc (struct bfd_hash_entry *entry,
437 struct bfd_hash_table *table,
438 const char *string)
252b5132 439{
252b5132
RH
440 /* Allocate the structure if it has not already been allocated by a
441 subclass. */
51b64d56
AM
442 if (entry == NULL)
443 {
a50b1753
NC
444 entry = (struct bfd_hash_entry *)
445 bfd_hash_allocate (table, sizeof (struct bfd_link_hash_entry));
51b64d56
AM
446 if (entry == NULL)
447 return entry;
448 }
252b5132
RH
449
450 /* Call the allocation method of the superclass. */
51b64d56
AM
451 entry = bfd_hash_newfunc (entry, table, string);
452 if (entry)
252b5132 453 {
51b64d56
AM
454 struct bfd_link_hash_entry *h = (struct bfd_link_hash_entry *) entry;
455
252b5132 456 /* Initialize the local fields. */
35ed3f94
AM
457 memset ((char *) &h->root + sizeof (h->root), 0,
458 sizeof (*h) - sizeof (h->root));
252b5132
RH
459 }
460
51b64d56 461 return entry;
252b5132
RH
462}
463
464/* Initialize a link hash table. The BFD argument is the one
465 responsible for creating this table. */
466
b34976b6 467bfd_boolean
c58b9523
AM
468_bfd_link_hash_table_init
469 (struct bfd_link_hash_table *table,
f13a99db 470 bfd *abfd ATTRIBUTE_UNUSED,
c58b9523
AM
471 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
472 struct bfd_hash_table *,
66eb6687
AM
473 const char *),
474 unsigned int entsize)
252b5132 475{
d495ab0d
AM
476 bfd_boolean ret;
477
478 BFD_ASSERT (!abfd->is_linker_output && !abfd->link.hash);
252b5132
RH
479 table->undefs = NULL;
480 table->undefs_tail = NULL;
8ea2e4bd
NC
481 table->type = bfd_link_generic_hash_table;
482
d495ab0d
AM
483 ret = bfd_hash_table_init (&table->table, newfunc, entsize);
484 if (ret)
485 {
486 /* Arrange for destruction of this hash table on closing ABFD. */
487 table->hash_table_free = _bfd_generic_link_hash_table_free;
488 abfd->link.hash = table;
489 abfd->is_linker_output = TRUE;
490 }
491 return ret;
252b5132
RH
492}
493
b34976b6 494/* Look up a symbol in a link hash table. If follow is TRUE, we
252b5132
RH
495 follow bfd_link_hash_indirect and bfd_link_hash_warning links to
496 the real symbol. */
497
498struct bfd_link_hash_entry *
c58b9523
AM
499bfd_link_hash_lookup (struct bfd_link_hash_table *table,
500 const char *string,
501 bfd_boolean create,
502 bfd_boolean copy,
503 bfd_boolean follow)
252b5132
RH
504{
505 struct bfd_link_hash_entry *ret;
506
507 ret = ((struct bfd_link_hash_entry *)
508 bfd_hash_lookup (&table->table, string, create, copy));
509
c58b9523 510 if (follow && ret != NULL)
252b5132
RH
511 {
512 while (ret->type == bfd_link_hash_indirect
513 || ret->type == bfd_link_hash_warning)
514 ret = ret->u.i.link;
515 }
516
517 return ret;
518}
519
520/* Look up a symbol in the main linker hash table if the symbol might
521 be wrapped. This should only be used for references to an
522 undefined symbol, not for definitions of a symbol. */
523
524struct bfd_link_hash_entry *
c58b9523
AM
525bfd_wrapped_link_hash_lookup (bfd *abfd,
526 struct bfd_link_info *info,
527 const char *string,
528 bfd_boolean create,
529 bfd_boolean copy,
530 bfd_boolean follow)
252b5132 531{
dc810e39
AM
532 bfd_size_type amt;
533
252b5132
RH
534 if (info->wrap_hash != NULL)
535 {
536 const char *l;
b9cf773d 537 char prefix = '\0';
252b5132
RH
538
539 l = string;
b9cf773d
AM
540 if (*l == bfd_get_symbol_leading_char (abfd) || *l == info->wrap_char)
541 {
542 prefix = *l;
543 ++l;
544 }
252b5132
RH
545
546#undef WRAP
547#define WRAP "__wrap_"
548
b34976b6 549 if (bfd_hash_lookup (info->wrap_hash, l, FALSE, FALSE) != NULL)
252b5132
RH
550 {
551 char *n;
552 struct bfd_link_hash_entry *h;
553
554 /* This symbol is being wrapped. We want to replace all
555 references to SYM with references to __wrap_SYM. */
556
dc810e39 557 amt = strlen (l) + sizeof WRAP + 1;
a50b1753 558 n = (char *) bfd_malloc (amt);
252b5132
RH
559 if (n == NULL)
560 return NULL;
561
b9cf773d 562 n[0] = prefix;
252b5132
RH
563 n[1] = '\0';
564 strcat (n, WRAP);
565 strcat (n, l);
b34976b6 566 h = bfd_link_hash_lookup (info->hash, n, create, TRUE, follow);
252b5132
RH
567 free (n);
568 return h;
569 }
570
0112cd26 571#undef REAL
252b5132
RH
572#define REAL "__real_"
573
574 if (*l == '_'
0112cd26 575 && CONST_STRNEQ (l, REAL)
252b5132 576 && bfd_hash_lookup (info->wrap_hash, l + sizeof REAL - 1,
b34976b6 577 FALSE, FALSE) != NULL)
252b5132
RH
578 {
579 char *n;
580 struct bfd_link_hash_entry *h;
581
582 /* This is a reference to __real_SYM, where SYM is being
583 wrapped. We want to replace all references to __real_SYM
584 with references to SYM. */
585
dc810e39 586 amt = strlen (l + sizeof REAL - 1) + 2;
a50b1753 587 n = (char *) bfd_malloc (amt);
252b5132
RH
588 if (n == NULL)
589 return NULL;
590
b9cf773d 591 n[0] = prefix;
252b5132
RH
592 n[1] = '\0';
593 strcat (n, l + sizeof REAL - 1);
b34976b6 594 h = bfd_link_hash_lookup (info->hash, n, create, TRUE, follow);
252b5132
RH
595 free (n);
596 return h;
597 }
598
599#undef REAL
600 }
601
602 return bfd_link_hash_lookup (info->hash, string, create, copy, follow);
603}
604
8a5da09b
AM
605/* If H is a wrapped symbol, ie. the symbol name starts with "__wrap_"
606 and the remainder is found in wrap_hash, return the real symbol. */
607
608struct bfd_link_hash_entry *
609unwrap_hash_lookup (struct bfd_link_info *info,
610 bfd *input_bfd,
611 struct bfd_link_hash_entry *h)
612{
613 const char *l = h->root.string;
614
615 if (*l == bfd_get_symbol_leading_char (input_bfd)
616 || *l == info->wrap_char)
617 ++l;
618
619 if (CONST_STRNEQ (l, WRAP))
620 {
621 l += sizeof WRAP - 1;
622
623 if (bfd_hash_lookup (info->wrap_hash, l, FALSE, FALSE) != NULL)
624 {
625 char save = 0;
7ed689ad 626 if (l - (sizeof WRAP - 1) != h->root.string)
8a5da09b
AM
627 {
628 --l;
629 save = *l;
630 *(char *) l = *h->root.string;
631 }
632 h = bfd_link_hash_lookup (info->hash, l, FALSE, FALSE, FALSE);
633 if (save)
634 *(char *) l = save;
635 }
636 }
637 return h;
638}
639#undef WRAP
640
7686d77d
AM
641/* Traverse a generic link hash table. Differs from bfd_hash_traverse
642 in the treatment of warning symbols. When warning symbols are
643 created they replace the real symbol, so you don't get to see the
644 real symbol in a bfd_hash_travere. This traversal calls func with
645 the real symbol. */
252b5132 646
509945ae 647void
c58b9523 648bfd_link_hash_traverse
7686d77d 649 (struct bfd_link_hash_table *htab,
c58b9523
AM
650 bfd_boolean (*func) (struct bfd_link_hash_entry *, void *),
651 void *info)
252b5132 652{
7686d77d
AM
653 unsigned int i;
654
655 htab->table.frozen = 1;
656 for (i = 0; i < htab->table.size; i++)
657 {
658 struct bfd_link_hash_entry *p;
659
660 p = (struct bfd_link_hash_entry *) htab->table.table[i];
661 for (; p != NULL; p = (struct bfd_link_hash_entry *) p->root.next)
662 if (!(*func) (p->type == bfd_link_hash_warning ? p->u.i.link : p, info))
663 goto out;
664 }
665 out:
666 htab->table.frozen = 0;
252b5132
RH
667}
668
669/* Add a symbol to the linker hash table undefs list. */
670
c58b9523
AM
671void
672bfd_link_add_undef (struct bfd_link_hash_table *table,
673 struct bfd_link_hash_entry *h)
252b5132 674{
f6e332e6 675 BFD_ASSERT (h->u.undef.next == NULL);
c58b9523 676 if (table->undefs_tail != NULL)
f6e332e6 677 table->undefs_tail->u.undef.next = h;
c58b9523 678 if (table->undefs == NULL)
252b5132
RH
679 table->undefs = h;
680 table->undefs_tail = h;
681}
77cfaee6
AM
682
683/* The undefs list was designed so that in normal use we don't need to
684 remove entries. However, if symbols on the list are changed from
685 bfd_link_hash_undefined to either bfd_link_hash_undefweak or
686 bfd_link_hash_new for some reason, then they must be removed from the
687 list. Failure to do so might result in the linker attempting to add
688 the symbol to the list again at a later stage. */
689
690void
691bfd_link_repair_undef_list (struct bfd_link_hash_table *table)
692{
693 struct bfd_link_hash_entry **pun;
694
695 pun = &table->undefs;
696 while (*pun != NULL)
697 {
698 struct bfd_link_hash_entry *h = *pun;
699
700 if (h->type == bfd_link_hash_new
701 || h->type == bfd_link_hash_undefweak)
702 {
703 *pun = h->u.undef.next;
704 h->u.undef.next = NULL;
705 if (h == table->undefs_tail)
706 {
707 if (pun == &table->undefs)
708 table->undefs_tail = NULL;
709 else
710 /* pun points at an u.undef.next field. Go back to
711 the start of the link_hash_entry. */
712 table->undefs_tail = (struct bfd_link_hash_entry *)
713 ((char *) pun - ((char *) &h->u.undef.next - (char *) h));
714 break;
715 }
716 }
717 else
718 pun = &h->u.undef.next;
719 }
720}
252b5132 721\f
19852a2a 722/* Routine to create an entry in a generic link hash table. */
252b5132
RH
723
724struct bfd_hash_entry *
c58b9523
AM
725_bfd_generic_link_hash_newfunc (struct bfd_hash_entry *entry,
726 struct bfd_hash_table *table,
727 const char *string)
252b5132 728{
252b5132
RH
729 /* Allocate the structure if it has not already been allocated by a
730 subclass. */
51b64d56
AM
731 if (entry == NULL)
732 {
a50b1753 733 entry = (struct bfd_hash_entry *)
d45913a0 734 bfd_hash_allocate (table, sizeof (struct generic_link_hash_entry));
51b64d56
AM
735 if (entry == NULL)
736 return entry;
737 }
252b5132
RH
738
739 /* Call the allocation method of the superclass. */
51b64d56
AM
740 entry = _bfd_link_hash_newfunc (entry, table, string);
741 if (entry)
252b5132 742 {
51b64d56
AM
743 struct generic_link_hash_entry *ret;
744
252b5132 745 /* Set local fields. */
51b64d56 746 ret = (struct generic_link_hash_entry *) entry;
b34976b6 747 ret->written = FALSE;
252b5132
RH
748 ret->sym = NULL;
749 }
750
51b64d56 751 return entry;
252b5132
RH
752}
753
19852a2a 754/* Create a generic link hash table. */
252b5132
RH
755
756struct bfd_link_hash_table *
c58b9523 757_bfd_generic_link_hash_table_create (bfd *abfd)
252b5132
RH
758{
759 struct generic_link_hash_table *ret;
dc810e39 760 bfd_size_type amt = sizeof (struct generic_link_hash_table);
252b5132 761
a50b1753 762 ret = (struct generic_link_hash_table *) bfd_malloc (amt);
252b5132 763 if (ret == NULL)
c58b9523 764 return NULL;
252b5132 765 if (! _bfd_link_hash_table_init (&ret->root, abfd,
66eb6687
AM
766 _bfd_generic_link_hash_newfunc,
767 sizeof (struct generic_link_hash_entry)))
252b5132
RH
768 {
769 free (ret);
c58b9523 770 return NULL;
252b5132
RH
771 }
772 return &ret->root;
773}
774
e2d34d7d 775void
d495ab0d 776_bfd_generic_link_hash_table_free (bfd *obfd)
e2d34d7d 777{
d495ab0d 778 struct generic_link_hash_table *ret;
e2d34d7d 779
d495ab0d
AM
780 BFD_ASSERT (obfd->is_linker_output && obfd->link.hash);
781 ret = (struct generic_link_hash_table *) obfd->link.hash;
e2d34d7d
DJ
782 bfd_hash_table_free (&ret->root.table);
783 free (ret);
d495ab0d
AM
784 obfd->link.hash = NULL;
785 obfd->is_linker_output = FALSE;
e2d34d7d
DJ
786}
787
252b5132
RH
788/* Grab the symbols for an object file when doing a generic link. We
789 store the symbols in the outsymbols field. We need to keep them
790 around for the entire link to ensure that we only read them once.
791 If we read them multiple times, we might wind up with relocs and
792 the hash table pointing to different instances of the symbol
793 structure. */
794
5c1d2f5f
AM
795bfd_boolean
796bfd_generic_link_read_symbols (bfd *abfd)
252b5132 797{
c58b9523 798 if (bfd_get_outsymbols (abfd) == NULL)
252b5132
RH
799 {
800 long symsize;
801 long symcount;
802
803 symsize = bfd_get_symtab_upper_bound (abfd);
804 if (symsize < 0)
b34976b6 805 return FALSE;
a50b1753
NC
806 bfd_get_outsymbols (abfd) = (struct bfd_symbol **) bfd_alloc (abfd,
807 symsize);
252b5132 808 if (bfd_get_outsymbols (abfd) == NULL && symsize != 0)
b34976b6 809 return FALSE;
252b5132
RH
810 symcount = bfd_canonicalize_symtab (abfd, bfd_get_outsymbols (abfd));
811 if (symcount < 0)
b34976b6 812 return FALSE;
252b5132
RH
813 bfd_get_symcount (abfd) = symcount;
814 }
815
b34976b6 816 return TRUE;
252b5132
RH
817}
818\f
819/* Generic function to add symbols to from an object file to the
820 global hash table. This version does not automatically collect
821 constructors by name. */
822
b34976b6 823bfd_boolean
c58b9523 824_bfd_generic_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
252b5132 825{
b34976b6 826 return generic_link_add_symbols (abfd, info, FALSE);
252b5132
RH
827}
828
829/* Generic function to add symbols from an object file to the global
830 hash table. This version automatically collects constructors by
831 name, as the collect2 program does. It should be used for any
832 target which does not provide some other mechanism for setting up
833 constructors and destructors; these are approximately those targets
834 for which gcc uses collect2 and do not support stabs. */
835
b34976b6 836bfd_boolean
c58b9523 837_bfd_generic_link_add_symbols_collect (bfd *abfd, struct bfd_link_info *info)
252b5132 838{
b34976b6 839 return generic_link_add_symbols (abfd, info, TRUE);
252b5132
RH
840}
841
2d653fc7
AM
842/* Indicate that we are only retrieving symbol values from this
843 section. We want the symbols to act as though the values in the
844 file are absolute. */
845
846void
c58b9523
AM
847_bfd_generic_link_just_syms (asection *sec,
848 struct bfd_link_info *info ATTRIBUTE_UNUSED)
2d653fc7 849{
dbaa2011 850 sec->sec_info_type = SEC_INFO_TYPE_JUST_SYMS;
2d653fc7
AM
851 sec->output_section = bfd_abs_section_ptr;
852 sec->output_offset = sec->vma;
853}
854
bffebb6b
AM
855/* Copy the symbol type and other attributes for a linker script
856 assignment from HSRC to HDEST.
1338dd10
PB
857 The default implementation does nothing. */
858void
859_bfd_generic_copy_link_hash_symbol_type (bfd *abfd ATTRIBUTE_UNUSED,
bffebb6b
AM
860 struct bfd_link_hash_entry *hdest ATTRIBUTE_UNUSED,
861 struct bfd_link_hash_entry *hsrc ATTRIBUTE_UNUSED)
1338dd10
PB
862{
863}
864
252b5132
RH
865/* Add symbols from an object file to the global hash table. */
866
b34976b6 867static bfd_boolean
c58b9523
AM
868generic_link_add_symbols (bfd *abfd,
869 struct bfd_link_info *info,
870 bfd_boolean collect)
252b5132 871{
b34976b6 872 bfd_boolean ret;
252b5132
RH
873
874 switch (bfd_get_format (abfd))
875 {
876 case bfd_object:
877 ret = generic_link_add_object_symbols (abfd, info, collect);
878 break;
879 case bfd_archive:
880 ret = (_bfd_generic_link_add_archive_symbols
881 (abfd, info,
882 (collect
883 ? generic_link_check_archive_element_collect
884 : generic_link_check_archive_element_no_collect)));
885 break;
886 default:
887 bfd_set_error (bfd_error_wrong_format);
b34976b6 888 ret = FALSE;
252b5132
RH
889 }
890
891 return ret;
892}
893
894/* Add symbols from an object file to the global hash table. */
895
b34976b6 896static bfd_boolean
c58b9523
AM
897generic_link_add_object_symbols (bfd *abfd,
898 struct bfd_link_info *info,
899 bfd_boolean collect)
252b5132 900{
dc810e39 901 bfd_size_type symcount;
fc0a2244 902 struct bfd_symbol **outsyms;
dc810e39 903
5c1d2f5f 904 if (!bfd_generic_link_read_symbols (abfd))
b34976b6 905 return FALSE;
dc810e39
AM
906 symcount = _bfd_generic_link_get_symcount (abfd);
907 outsyms = _bfd_generic_link_get_symbols (abfd);
908 return generic_link_add_symbol_list (abfd, info, symcount, outsyms, collect);
252b5132
RH
909}
910\f
252b5132
RH
911/* Generic function to add symbols from an archive file to the global
912 hash file. This function presumes that the archive symbol table
913 has already been read in (this is normally done by the
13e570f8
AM
914 bfd_check_format entry point). It looks through the archive symbol
915 table for symbols that are undefined or common in the linker global
916 symbol hash table. When one is found, the CHECKFN argument is used
917 to see if an object file should be included. This allows targets
918 to customize common symbol behaviour. CHECKFN should set *PNEEDED
919 to TRUE if the object file should be included, and must also call
920 the bfd_link_info add_archive_element callback function and handle
921 adding the symbols to the global hash table. CHECKFN must notice
922 if the callback indicates a substitute BFD, and arrange to add
923 those symbols instead if it does so. CHECKFN should only return
924 FALSE if some sort of error occurs. */
252b5132 925
b34976b6 926bfd_boolean
c58b9523
AM
927_bfd_generic_link_add_archive_symbols
928 (bfd *abfd,
929 struct bfd_link_info *info,
13e570f8
AM
930 bfd_boolean (*checkfn) (bfd *, struct bfd_link_info *,
931 struct bfd_link_hash_entry *, const char *,
932 bfd_boolean *))
252b5132 933{
13e570f8
AM
934 bfd_boolean loop;
935 bfd_size_type amt;
936 unsigned char *included;
252b5132
RH
937
938 if (! bfd_has_map (abfd))
939 {
940 /* An empty archive is a special case. */
c58b9523 941 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
b34976b6 942 return TRUE;
252b5132 943 bfd_set_error (bfd_error_no_armap);
b34976b6 944 return FALSE;
252b5132
RH
945 }
946
13e570f8
AM
947 amt = bfd_ardata (abfd)->symdef_count;
948 if (amt == 0)
949 return TRUE;
950 amt *= sizeof (*included);
951 included = (unsigned char *) bfd_zmalloc (amt);
952 if (included == NULL)
b34976b6 953 return FALSE;
252b5132 954
13e570f8 955 do
252b5132 956 {
13e570f8
AM
957 carsym *arsyms;
958 carsym *arsym_end;
959 carsym *arsym;
960 unsigned int indx;
961 file_ptr last_ar_offset = -1;
962 bfd_boolean needed = FALSE;
963 bfd *element = NULL;
964
965 loop = FALSE;
966 arsyms = bfd_ardata (abfd)->symdefs;
967 arsym_end = arsyms + bfd_ardata (abfd)->symdef_count;
968 for (arsym = arsyms, indx = 0; arsym < arsym_end; arsym++, indx++)
252b5132 969 {
13e570f8
AM
970 struct bfd_link_hash_entry *h;
971 struct bfd_link_hash_entry *undefs_tail;
252b5132 972
13e570f8
AM
973 if (included[indx])
974 continue;
975 if (needed && arsym->file_offset == last_ar_offset)
8ceb7a1b 976 {
13e570f8 977 included[indx] = 1;
8ceb7a1b
CW
978 continue;
979 }
252b5132 980
13e570f8
AM
981 h = bfd_link_hash_lookup (info->hash, arsym->name,
982 FALSE, FALSE, TRUE);
252b5132 983
13e570f8
AM
984 if (h == NULL
985 && info->pei386_auto_import
986 && CONST_STRNEQ (arsym->name, "__imp_"))
987 h = bfd_link_hash_lookup (info->hash, arsym->name + 6,
988 FALSE, FALSE, TRUE);
989 if (h == NULL)
252b5132
RH
990 continue;
991
13e570f8
AM
992 if (h->type != bfd_link_hash_undefined
993 && h->type != bfd_link_hash_common)
252b5132 994 {
13e570f8
AM
995 if (h->type != bfd_link_hash_undefweak)
996 /* Symbol must be defined. Don't check it again. */
997 included[indx] = 1;
252b5132
RH
998 continue;
999 }
1000
13e570f8
AM
1001 if (last_ar_offset != arsym->file_offset)
1002 {
1003 last_ar_offset = arsym->file_offset;
1004 element = _bfd_get_elt_at_filepos (abfd, last_ar_offset);
1005 if (element == NULL
1006 || !bfd_check_format (element, bfd_object))
1007 goto error_return;
1008 }
1009
1010 undefs_tail = info->hash->undefs_tail;
1011
252b5132
RH
1012 /* CHECKFN will see if this element should be included, and
1013 go ahead and include it if appropriate. */
13e570f8 1014 if (! (*checkfn) (element, info, h, arsym->name, &needed))
252b5132
RH
1015 goto error_return;
1016
13e570f8 1017 if (needed)
252b5132 1018 {
13e570f8
AM
1019 unsigned int mark;
1020
1021 /* Look backward to mark all symbols from this object file
1022 which we have already seen in this pass. */
1023 mark = indx;
1024 do
1025 {
1026 included[mark] = 1;
1027 if (mark == 0)
1028 break;
1029 --mark;
1030 }
1031 while (arsyms[mark].file_offset == last_ar_offset);
1032
1033 if (undefs_tail != info->hash->undefs_tail)
1034 loop = TRUE;
252b5132
RH
1035 }
1036 }
13e570f8 1037 } while (loop);
252b5132 1038
13e570f8 1039 free (included);
b34976b6 1040 return TRUE;
252b5132
RH
1041
1042 error_return:
13e570f8 1043 free (included);
b34976b6 1044 return FALSE;
252b5132
RH
1045}
1046\f
1047/* See if we should include an archive element. This version is used
1048 when we do not want to automatically collect constructors based on
1049 the symbol name, presumably because we have some other mechanism
1050 for finding them. */
1051
b34976b6 1052static bfd_boolean
13e570f8 1053generic_link_check_archive_element_no_collect (bfd *abfd,
c58b9523 1054 struct bfd_link_info *info,
13e570f8
AM
1055 struct bfd_link_hash_entry *h,
1056 const char *name,
c58b9523 1057 bfd_boolean *pneeded)
252b5132 1058{
13e570f8
AM
1059 return generic_link_check_archive_element (abfd, info, h, name, pneeded,
1060 FALSE);
252b5132
RH
1061}
1062
1063/* See if we should include an archive element. This version is used
1064 when we want to automatically collect constructors based on the
1065 symbol name, as collect2 does. */
1066
b34976b6 1067static bfd_boolean
c58b9523
AM
1068generic_link_check_archive_element_collect (bfd *abfd,
1069 struct bfd_link_info *info,
13e570f8
AM
1070 struct bfd_link_hash_entry *h,
1071 const char *name,
c58b9523 1072 bfd_boolean *pneeded)
252b5132 1073{
13e570f8
AM
1074 return generic_link_check_archive_element (abfd, info, h, name, pneeded,
1075 TRUE);
252b5132
RH
1076}
1077
1078/* See if we should include an archive element. Optionally collect
1079 constructors. */
1080
b34976b6 1081static bfd_boolean
c58b9523
AM
1082generic_link_check_archive_element (bfd *abfd,
1083 struct bfd_link_info *info,
13e570f8
AM
1084 struct bfd_link_hash_entry *h,
1085 const char *name ATTRIBUTE_UNUSED,
c58b9523
AM
1086 bfd_boolean *pneeded,
1087 bfd_boolean collect)
252b5132
RH
1088{
1089 asymbol **pp, **ppend;
1090
b34976b6 1091 *pneeded = FALSE;
252b5132 1092
5c1d2f5f 1093 if (!bfd_generic_link_read_symbols (abfd))
b34976b6 1094 return FALSE;
252b5132
RH
1095
1096 pp = _bfd_generic_link_get_symbols (abfd);
1097 ppend = pp + _bfd_generic_link_get_symcount (abfd);
1098 for (; pp < ppend; pp++)
1099 {
1100 asymbol *p;
252b5132
RH
1101
1102 p = *pp;
1103
1104 /* We are only interested in globally visible symbols. */
1105 if (! bfd_is_com_section (p->section)
1106 && (p->flags & (BSF_GLOBAL | BSF_INDIRECT | BSF_WEAK)) == 0)
1107 continue;
1108
1109 /* We are only interested if we know something about this
1110 symbol, and it is undefined or common. An undefined weak
1111 symbol (type bfd_link_hash_undefweak) is not considered to be
1112 a reference when pulling files out of an archive. See the
1113 SVR4 ABI, p. 4-27. */
b34976b6
AM
1114 h = bfd_link_hash_lookup (info->hash, bfd_asymbol_name (p), FALSE,
1115 FALSE, TRUE);
c58b9523 1116 if (h == NULL
252b5132
RH
1117 || (h->type != bfd_link_hash_undefined
1118 && h->type != bfd_link_hash_common))
1119 continue;
1120
1121 /* P is a symbol we are looking for. */
1122
02eb0a49
AM
1123 if (! bfd_is_com_section (p->section)
1124 || (h->type == bfd_link_hash_undefined
1125 && h->u.undef.abfd == NULL))
252b5132 1126 {
02eb0a49
AM
1127 /* P is not a common symbol, or an undefined reference was
1128 created from outside BFD such as from a linker -u option.
1129 This object file defines the symbol, so pull it in. */
1130 *pneeded = TRUE;
0e144ba7
AM
1131 if (!(*info->callbacks
1132 ->add_archive_element) (info, abfd, bfd_asymbol_name (p),
1133 &abfd))
b34976b6 1134 return FALSE;
5d3236ee
DK
1135 /* Potentially, the add_archive_element hook may have set a
1136 substitute BFD for us. */
02eb0a49 1137 return generic_link_add_object_symbols (abfd, info, collect);
252b5132
RH
1138 }
1139
1140 /* P is a common symbol. */
1141
1142 if (h->type == bfd_link_hash_undefined)
1143 {
1144 bfd *symbfd;
1145 bfd_vma size;
1146 unsigned int power;
1147
252b5132
RH
1148 /* Turn the symbol into a common symbol but do not link in
1149 the object file. This is how a.out works. Object
1150 formats that require different semantics must implement
1151 this function differently. This symbol is already on the
1152 undefs list. We add the section to a common section
1153 attached to symbfd to ensure that it is in a BFD which
1154 will be linked in. */
02eb0a49 1155 symbfd = h->u.undef.abfd;
252b5132 1156 h->type = bfd_link_hash_common;
a50b1753 1157 h->u.c.p = (struct bfd_link_hash_common_entry *)
c58b9523
AM
1158 bfd_hash_allocate (&info->hash->table,
1159 sizeof (struct bfd_link_hash_common_entry));
252b5132 1160 if (h->u.c.p == NULL)
b34976b6 1161 return FALSE;
252b5132
RH
1162
1163 size = bfd_asymbol_value (p);
1164 h->u.c.size = size;
1165
1166 power = bfd_log2 (size);
1167 if (power > 4)
1168 power = 4;
1169 h->u.c.p->alignment_power = power;
1170
1171 if (p->section == bfd_com_section_ptr)
1172 h->u.c.p->section = bfd_make_section_old_way (symbfd, "COMMON");
1173 else
1174 h->u.c.p->section = bfd_make_section_old_way (symbfd,
1175 p->section->name);
02d00247 1176 h->u.c.p->section->flags |= SEC_ALLOC;
252b5132
RH
1177 }
1178 else
1179 {
1180 /* Adjust the size of the common symbol if necessary. This
1181 is how a.out works. Object formats that require
1182 different semantics must implement this function
1183 differently. */
1184 if (bfd_asymbol_value (p) > h->u.c.size)
1185 h->u.c.size = bfd_asymbol_value (p);
1186 }
1187 }
1188
1189 /* This archive element is not needed. */
b34976b6 1190 return TRUE;
252b5132
RH
1191}
1192
1193/* Add the symbols from an object file to the global hash table. ABFD
1194 is the object file. INFO is the linker information. SYMBOL_COUNT
1195 is the number of symbols. SYMBOLS is the list of symbols. COLLECT
b34976b6 1196 is TRUE if constructors should be automatically collected by name
252b5132
RH
1197 as is done by collect2. */
1198
b34976b6 1199static bfd_boolean
c58b9523
AM
1200generic_link_add_symbol_list (bfd *abfd,
1201 struct bfd_link_info *info,
1202 bfd_size_type symbol_count,
1203 asymbol **symbols,
1204 bfd_boolean collect)
252b5132
RH
1205{
1206 asymbol **pp, **ppend;
1207
1208 pp = symbols;
1209 ppend = symbols + symbol_count;
1210 for (; pp < ppend; pp++)
1211 {
1212 asymbol *p;
1213
1214 p = *pp;
1215
1216 if ((p->flags & (BSF_INDIRECT
1217 | BSF_WARNING
1218 | BSF_GLOBAL
1219 | BSF_CONSTRUCTOR
1220 | BSF_WEAK)) != 0
1221 || bfd_is_und_section (bfd_get_section (p))
1222 || bfd_is_com_section (bfd_get_section (p))
1223 || bfd_is_ind_section (bfd_get_section (p)))
1224 {
1225 const char *name;
1226 const char *string;
1227 struct generic_link_hash_entry *h;
14a793b2 1228 struct bfd_link_hash_entry *bh;
252b5132 1229
f08c429c 1230 string = name = bfd_asymbol_name (p);
252b5132
RH
1231 if (((p->flags & BSF_INDIRECT) != 0
1232 || bfd_is_ind_section (p->section))
1233 && pp + 1 < ppend)
1234 {
1235 pp++;
1236 string = bfd_asymbol_name (*pp);
1237 }
1238 else if ((p->flags & BSF_WARNING) != 0
1239 && pp + 1 < ppend)
1240 {
1241 /* The name of P is actually the warning string, and the
1242 next symbol is the one to warn about. */
252b5132
RH
1243 pp++;
1244 name = bfd_asymbol_name (*pp);
1245 }
252b5132 1246
14a793b2 1247 bh = NULL;
252b5132
RH
1248 if (! (_bfd_generic_link_add_one_symbol
1249 (info, abfd, name, p->flags, bfd_get_section (p),
b34976b6
AM
1250 p->value, string, FALSE, collect, &bh)))
1251 return FALSE;
14a793b2 1252 h = (struct generic_link_hash_entry *) bh;
252b5132
RH
1253
1254 /* If this is a constructor symbol, and the linker didn't do
1255 anything with it, then we want to just pass the symbol
1256 through to the output file. This will happen when
1257 linking with -r. */
1258 if ((p->flags & BSF_CONSTRUCTOR) != 0
1259 && (h == NULL || h->root.type == bfd_link_hash_new))
1260 {
1261 p->udata.p = NULL;
1262 continue;
1263 }
1264
1265 /* Save the BFD symbol so that we don't lose any backend
1266 specific information that may be attached to it. We only
1267 want this one if it gives more information than the
1268 existing one; we don't want to replace a defined symbol
1269 with an undefined one. This routine may be called with a
1270 hash table other than the generic hash table, so we only
1271 do this if we are certain that the hash table is a
1272 generic one. */
f13a99db 1273 if (info->output_bfd->xvec == abfd->xvec)
252b5132 1274 {
c58b9523 1275 if (h->sym == NULL
252b5132
RH
1276 || (! bfd_is_und_section (bfd_get_section (p))
1277 && (! bfd_is_com_section (bfd_get_section (p))
1278 || bfd_is_und_section (bfd_get_section (h->sym)))))
1279 {
1280 h->sym = p;
1281 /* BSF_OLD_COMMON is a hack to support COFF reloc
1282 reading, and it should go away when the COFF
1283 linker is switched to the new version. */
1284 if (bfd_is_com_section (bfd_get_section (p)))
1285 p->flags |= BSF_OLD_COMMON;
1286 }
1287 }
1288
1289 /* Store a back pointer from the symbol to the hash
1290 table entry for the benefit of relaxation code until
1291 it gets rewritten to not use asymbol structures.
1292 Setting this is also used to check whether these
1293 symbols were set up by the generic linker. */
c58b9523 1294 p->udata.p = h;
252b5132
RH
1295 }
1296 }
1297
b34976b6 1298 return TRUE;
252b5132
RH
1299}
1300\f
1301/* We use a state table to deal with adding symbols from an object
1302 file. The first index into the state table describes the symbol
1303 from the object file. The second index into the state table is the
1304 type of the symbol in the hash table. */
1305
1306/* The symbol from the object file is turned into one of these row
1307 values. */
1308
1309enum link_row
1310{
1311 UNDEF_ROW, /* Undefined. */
1312 UNDEFW_ROW, /* Weak undefined. */
1313 DEF_ROW, /* Defined. */
1314 DEFW_ROW, /* Weak defined. */
1315 COMMON_ROW, /* Common. */
1316 INDR_ROW, /* Indirect. */
1317 WARN_ROW, /* Warning. */
1318 SET_ROW /* Member of set. */
1319};
1320
1321/* apparently needed for Hitachi 3050R(HI-UX/WE2)? */
1322#undef FAIL
1323
1324/* The actions to take in the state table. */
1325
1326enum link_action
1327{
509945ae 1328 FAIL, /* Abort. */
252b5132
RH
1329 UND, /* Mark symbol undefined. */
1330 WEAK, /* Mark symbol weak undefined. */
1331 DEF, /* Mark symbol defined. */
1332 DEFW, /* Mark symbol weak defined. */
1333 COM, /* Mark symbol common. */
1334 REF, /* Mark defined symbol referenced. */
1335 CREF, /* Possibly warn about common reference to defined symbol. */
1336 CDEF, /* Define existing common symbol. */
1337 NOACT, /* No action. */
1338 BIG, /* Mark symbol common using largest size. */
1339 MDEF, /* Multiple definition error. */
1340 MIND, /* Multiple indirect symbols. */
1341 IND, /* Make indirect symbol. */
1342 CIND, /* Make indirect symbol from existing common symbol. */
1343 SET, /* Add value to set. */
1344 MWARN, /* Make warning symbol. */
a42e8297 1345 WARN, /* Warn if referenced, else MWARN. */
252b5132
RH
1346 CYCLE, /* Repeat with symbol pointed to. */
1347 REFC, /* Mark indirect symbol referenced and then CYCLE. */
1348 WARNC /* Issue warning and then CYCLE. */
1349};
1350
1351/* The state table itself. The first index is a link_row and the
1352 second index is a bfd_link_hash_type. */
1353
1354static const enum link_action link_action[8][8] =
1355{
1356 /* current\prev new undef undefw def defw com indr warn */
1357 /* UNDEF_ROW */ {UND, NOACT, UND, REF, REF, NOACT, REFC, WARNC },
1358 /* UNDEFW_ROW */ {WEAK, NOACT, NOACT, REF, REF, NOACT, REFC, WARNC },
1359 /* DEF_ROW */ {DEF, DEF, DEF, MDEF, DEF, CDEF, MDEF, CYCLE },
1360 /* DEFW_ROW */ {DEFW, DEFW, DEFW, NOACT, NOACT, NOACT, NOACT, CYCLE },
146f1a87 1361 /* COMMON_ROW */ {COM, COM, COM, CREF, COM, BIG, REFC, WARNC },
252b5132 1362 /* INDR_ROW */ {IND, IND, IND, MDEF, IND, CIND, MIND, CYCLE },
a42e8297 1363 /* WARN_ROW */ {MWARN, WARN, WARN, WARN, WARN, WARN, WARN, NOACT },
252b5132
RH
1364 /* SET_ROW */ {SET, SET, SET, SET, SET, SET, CYCLE, CYCLE }
1365};
1366
1367/* Most of the entries in the LINK_ACTION table are straightforward,
1368 but a few are somewhat subtle.
1369
1370 A reference to an indirect symbol (UNDEF_ROW/indr or
1371 UNDEFW_ROW/indr) is counted as a reference both to the indirect
1372 symbol and to the symbol the indirect symbol points to.
1373
1374 A reference to a warning symbol (UNDEF_ROW/warn or UNDEFW_ROW/warn)
1375 causes the warning to be issued.
1376
1377 A common definition of an indirect symbol (COMMON_ROW/indr) is
1378 treated as a multiple definition error. Likewise for an indirect
1379 definition of a common symbol (INDR_ROW/com).
1380
1381 An indirect definition of a warning (INDR_ROW/warn) does not cause
1382 the warning to be issued.
1383
1384 If a warning is created for an indirect symbol (WARN_ROW/indr) no
1385 warning is created for the symbol the indirect symbol points to.
1386
1387 Adding an entry to a set does not count as a reference to a set,
1388 and no warning is issued (SET_ROW/warn). */
1389
1390/* Return the BFD in which a hash entry has been defined, if known. */
1391
1392static bfd *
c58b9523 1393hash_entry_bfd (struct bfd_link_hash_entry *h)
252b5132
RH
1394{
1395 while (h->type == bfd_link_hash_warning)
1396 h = h->u.i.link;
1397 switch (h->type)
1398 {
1399 default:
1400 return NULL;
1401 case bfd_link_hash_undefined:
1402 case bfd_link_hash_undefweak:
1403 return h->u.undef.abfd;
1404 case bfd_link_hash_defined:
1405 case bfd_link_hash_defweak:
1406 return h->u.def.section->owner;
1407 case bfd_link_hash_common:
1408 return h->u.c.p->section->owner;
1409 }
1410 /*NOTREACHED*/
1411}
1412
1413/* Add a symbol to the global hash table.
1414 ABFD is the BFD the symbol comes from.
1415 NAME is the name of the symbol.
1416 FLAGS is the BSF_* bits associated with the symbol.
1417 SECTION is the section in which the symbol is defined; this may be
1418 bfd_und_section_ptr or bfd_com_section_ptr.
1419 VALUE is the value of the symbol, relative to the section.
1420 STRING is used for either an indirect symbol, in which case it is
1421 the name of the symbol to indirect to, or a warning symbol, in
1422 which case it is the warning string.
b34976b6 1423 COPY is TRUE if NAME or STRING must be copied into locally
252b5132 1424 allocated memory if they need to be saved.
b34976b6 1425 COLLECT is TRUE if we should automatically collect gcc constructor
252b5132
RH
1426 or destructor names as collect2 does.
1427 HASHP, if not NULL, is a place to store the created hash table
1428 entry; if *HASHP is not NULL, the caller has already looked up
509945ae 1429 the hash table entry, and stored it in *HASHP. */
252b5132 1430
b34976b6 1431bfd_boolean
c58b9523
AM
1432_bfd_generic_link_add_one_symbol (struct bfd_link_info *info,
1433 bfd *abfd,
1434 const char *name,
1435 flagword flags,
1436 asection *section,
1437 bfd_vma value,
1438 const char *string,
1439 bfd_boolean copy,
1440 bfd_boolean collect,
1441 struct bfd_link_hash_entry **hashp)
252b5132
RH
1442{
1443 enum link_row row;
1444 struct bfd_link_hash_entry *h;
b34976b6 1445 bfd_boolean cycle;
252b5132 1446
894891db
NC
1447 BFD_ASSERT (section != NULL);
1448
252b5132
RH
1449 if (bfd_is_ind_section (section)
1450 || (flags & BSF_INDIRECT) != 0)
1451 row = INDR_ROW;
1452 else if ((flags & BSF_WARNING) != 0)
1453 row = WARN_ROW;
1454 else if ((flags & BSF_CONSTRUCTOR) != 0)
1455 row = SET_ROW;
1456 else if (bfd_is_und_section (section))
1457 {
1458 if ((flags & BSF_WEAK) != 0)
1459 row = UNDEFW_ROW;
1460 else
1461 row = UNDEF_ROW;
1462 }
1463 else if ((flags & BSF_WEAK) != 0)
1464 row = DEFW_ROW;
1465 else if (bfd_is_com_section (section))
b794fc1d
AM
1466 {
1467 row = COMMON_ROW;
1468 if (strcmp (name, "__gnu_lto_slim") == 0)
1469 (*_bfd_error_handler)
1470 (_("%s: plugin needed to handle lto object"),
1471 bfd_get_filename (abfd));
1472 }
252b5132
RH
1473 else
1474 row = DEF_ROW;
1475
1476 if (hashp != NULL && *hashp != NULL)
1477 h = *hashp;
1478 else
1479 {
1480 if (row == UNDEF_ROW || row == UNDEFW_ROW)
b34976b6 1481 h = bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, copy, FALSE);
252b5132 1482 else
b34976b6 1483 h = bfd_link_hash_lookup (info->hash, name, TRUE, copy, FALSE);
252b5132
RH
1484 if (h == NULL)
1485 {
1486 if (hashp != NULL)
1487 *hashp = NULL;
b34976b6 1488 return FALSE;
252b5132
RH
1489 }
1490 }
1491
1492 if (info->notice_all
c58b9523
AM
1493 || (info->notice_hash != NULL
1494 && bfd_hash_lookup (info->notice_hash, name, FALSE, FALSE) != NULL))
252b5132 1495 {
16d96b5b
AM
1496 if (! (*info->callbacks->notice) (info, h,
1497 abfd, section, value, flags, string))
b34976b6 1498 return FALSE;
252b5132
RH
1499 }
1500
c58b9523 1501 if (hashp != NULL)
252b5132
RH
1502 *hashp = h;
1503
1504 do
1505 {
1506 enum link_action action;
1507
b34976b6 1508 cycle = FALSE;
252b5132
RH
1509 action = link_action[(int) row][(int) h->type];
1510 switch (action)
1511 {
1512 case FAIL:
1513 abort ();
1514
1515 case NOACT:
1516 /* Do nothing. */
1517 break;
1518
1519 case UND:
1520 /* Make a new undefined symbol. */
1521 h->type = bfd_link_hash_undefined;
1522 h->u.undef.abfd = abfd;
1523 bfd_link_add_undef (info->hash, h);
1524 break;
1525
1526 case WEAK:
1527 /* Make a new weak undefined symbol. */
1528 h->type = bfd_link_hash_undefweak;
1529 h->u.undef.abfd = abfd;
1530 break;
1531
1532 case CDEF:
1533 /* We have found a definition for a symbol which was
1534 previously common. */
1535 BFD_ASSERT (h->type == bfd_link_hash_common);
1536 if (! ((*info->callbacks->multiple_common)
24f58f47 1537 (info, h, abfd, bfd_link_hash_defined, 0)))
b34976b6 1538 return FALSE;
252b5132
RH
1539 /* Fall through. */
1540 case DEF:
1541 case DEFW:
1542 {
1543 enum bfd_link_hash_type oldtype;
1544
1545 /* Define a symbol. */
1546 oldtype = h->type;
1547 if (action == DEFW)
1548 h->type = bfd_link_hash_defweak;
1549 else
1550 h->type = bfd_link_hash_defined;
1551 h->u.def.section = section;
1552 h->u.def.value = value;
1553
1554 /* If we have been asked to, we act like collect2 and
1555 identify all functions that might be global
1556 constructors and destructors and pass them up in a
1557 callback. We only do this for certain object file
1558 types, since many object file types can handle this
1559 automatically. */
1560 if (collect && name[0] == '_')
1561 {
1562 const char *s;
1563
1564 /* A constructor or destructor name starts like this:
1565 _+GLOBAL_[_.$][ID][_.$] where the first [_.$] and
1566 the second are the same character (we accept any
1567 character there, in case a new object file format
1568 comes along with even worse naming restrictions). */
1569
1570#define CONS_PREFIX "GLOBAL_"
1571#define CONS_PREFIX_LEN (sizeof CONS_PREFIX - 1)
1572
1573 s = name + 1;
1574 while (*s == '_')
1575 ++s;
0112cd26 1576 if (s[0] == 'G' && CONST_STRNEQ (s, CONS_PREFIX))
252b5132
RH
1577 {
1578 char c;
1579
1580 c = s[CONS_PREFIX_LEN + 1];
1581 if ((c == 'I' || c == 'D')
1582 && s[CONS_PREFIX_LEN] == s[CONS_PREFIX_LEN + 2])
1583 {
1584 /* If this is a definition of a symbol which
1585 was previously weakly defined, we are in
1586 trouble. We have already added a
1587 constructor entry for the weak defined
1588 symbol, and now we are trying to add one
1589 for the new symbol. Fortunately, this case
1590 should never arise in practice. */
1591 if (oldtype == bfd_link_hash_defweak)
1592 abort ();
1593
1594 if (! ((*info->callbacks->constructor)
82e51918 1595 (info, c == 'I',
252b5132 1596 h->root.string, abfd, section, value)))
b34976b6 1597 return FALSE;
252b5132
RH
1598 }
1599 }
1600 }
1601 }
1602
1603 break;
1604
1605 case COM:
1606 /* We have found a common definition for a symbol. */
1607 if (h->type == bfd_link_hash_new)
1608 bfd_link_add_undef (info->hash, h);
1609 h->type = bfd_link_hash_common;
a50b1753 1610 h->u.c.p = (struct bfd_link_hash_common_entry *)
c58b9523
AM
1611 bfd_hash_allocate (&info->hash->table,
1612 sizeof (struct bfd_link_hash_common_entry));
252b5132 1613 if (h->u.c.p == NULL)
b34976b6 1614 return FALSE;
252b5132
RH
1615
1616 h->u.c.size = value;
1617
1618 /* Select a default alignment based on the size. This may
1619 be overridden by the caller. */
1620 {
1621 unsigned int power;
1622
1623 power = bfd_log2 (value);
1624 if (power > 4)
1625 power = 4;
1626 h->u.c.p->alignment_power = power;
1627 }
1628
1629 /* The section of a common symbol is only used if the common
1630 symbol is actually allocated. It basically provides a
1631 hook for the linker script to decide which output section
1632 the common symbols should be put in. In most cases, the
1633 section of a common symbol will be bfd_com_section_ptr,
1634 the code here will choose a common symbol section named
1635 "COMMON", and the linker script will contain *(COMMON) in
1636 the appropriate place. A few targets use separate common
1637 sections for small symbols, and they require special
1638 handling. */
1639 if (section == bfd_com_section_ptr)
1640 {
1641 h->u.c.p->section = bfd_make_section_old_way (abfd, "COMMON");
02d00247 1642 h->u.c.p->section->flags |= SEC_ALLOC;
252b5132
RH
1643 }
1644 else if (section->owner != abfd)
1645 {
1646 h->u.c.p->section = bfd_make_section_old_way (abfd,
1647 section->name);
02d00247 1648 h->u.c.p->section->flags |= SEC_ALLOC;
252b5132
RH
1649 }
1650 else
1651 h->u.c.p->section = section;
1652 break;
1653
1654 case REF:
1655 /* A reference to a defined symbol. */
f6e332e6
AM
1656 if (h->u.undef.next == NULL && info->hash->undefs_tail != h)
1657 h->u.undef.next = h;
252b5132
RH
1658 break;
1659
1660 case BIG:
1661 /* We have found a common definition for a symbol which
1662 already had a common definition. Use the maximum of the
0a2afbc1 1663 two sizes, and use the section required by the larger symbol. */
252b5132
RH
1664 BFD_ASSERT (h->type == bfd_link_hash_common);
1665 if (! ((*info->callbacks->multiple_common)
24f58f47 1666 (info, h, abfd, bfd_link_hash_common, value)))
b34976b6 1667 return FALSE;
252b5132
RH
1668 if (value > h->u.c.size)
1669 {
1670 unsigned int power;
1671
1672 h->u.c.size = value;
1673
1674 /* Select a default alignment based on the size. This may
1675 be overridden by the caller. */
1676 power = bfd_log2 (value);
1677 if (power > 4)
1678 power = 4;
1679 h->u.c.p->alignment_power = power;
0a2afbc1
JW
1680
1681 /* Some systems have special treatment for small commons,
1682 hence we want to select the section used by the larger
1683 symbol. This makes sure the symbol does not go in a
1684 small common section if it is now too large. */
1685 if (section == bfd_com_section_ptr)
1686 {
1687 h->u.c.p->section
1688 = bfd_make_section_old_way (abfd, "COMMON");
02d00247 1689 h->u.c.p->section->flags |= SEC_ALLOC;
0a2afbc1
JW
1690 }
1691 else if (section->owner != abfd)
1692 {
1693 h->u.c.p->section
1694 = bfd_make_section_old_way (abfd, section->name);
02d00247 1695 h->u.c.p->section->flags |= SEC_ALLOC;
0a2afbc1
JW
1696 }
1697 else
1698 h->u.c.p->section = section;
252b5132
RH
1699 }
1700 break;
1701
1702 case CREF:
24f58f47
AM
1703 /* We have found a common definition for a symbol which
1704 was already defined. */
1705 if (! ((*info->callbacks->multiple_common)
1706 (info, h, abfd, bfd_link_hash_common, value)))
1707 return FALSE;
252b5132
RH
1708 break;
1709
1710 case MIND:
1711 /* Multiple indirect symbols. This is OK if they both point
1712 to the same symbol. */
1713 if (strcmp (h->u.i.link->root.string, string) == 0)
1714 break;
1715 /* Fall through. */
1716 case MDEF:
1717 /* Handle a multiple definition. */
24f58f47
AM
1718 if (! ((*info->callbacks->multiple_definition)
1719 (info, h, abfd, section, value)))
1720 return FALSE;
252b5132
RH
1721 break;
1722
1723 case CIND:
1724 /* Create an indirect symbol from an existing common symbol. */
1725 BFD_ASSERT (h->type == bfd_link_hash_common);
1726 if (! ((*info->callbacks->multiple_common)
24f58f47 1727 (info, h, abfd, bfd_link_hash_indirect, 0)))
b34976b6 1728 return FALSE;
252b5132
RH
1729 /* Fall through. */
1730 case IND:
1731 /* Create an indirect symbol. */
1732 {
1733 struct bfd_link_hash_entry *inh;
1734
1735 /* STRING is the name of the symbol we want to indirect
1736 to. */
b34976b6
AM
1737 inh = bfd_wrapped_link_hash_lookup (abfd, info, string, TRUE,
1738 copy, FALSE);
c58b9523 1739 if (inh == NULL)
b34976b6 1740 return FALSE;
689effed
L
1741 if (inh->type == bfd_link_hash_indirect
1742 && inh->u.i.link == h)
1743 {
1744 (*_bfd_error_handler)
d003868e
AM
1745 (_("%B: indirect symbol `%s' to `%s' is a loop"),
1746 abfd, name, string);
689effed 1747 bfd_set_error (bfd_error_invalid_operation);
b34976b6 1748 return FALSE;
689effed 1749 }
252b5132
RH
1750 if (inh->type == bfd_link_hash_new)
1751 {
1752 inh->type = bfd_link_hash_undefined;
1753 inh->u.undef.abfd = abfd;
1754 bfd_link_add_undef (info->hash, inh);
1755 }
1756
1757 /* If the indirect symbol has been referenced, we need to
1758 push the reference down to the symbol we are
1759 referencing. */
1760 if (h->type != bfd_link_hash_new)
1761 {
1762 row = UNDEF_ROW;
b34976b6 1763 cycle = TRUE;
252b5132
RH
1764 }
1765
1766 h->type = bfd_link_hash_indirect;
1767 h->u.i.link = inh;
1768 }
1769 break;
1770
1771 case SET:
1772 /* Add an entry to a set. */
1773 if (! (*info->callbacks->add_to_set) (info, h, BFD_RELOC_CTOR,
1774 abfd, section, value))
b34976b6 1775 return FALSE;
252b5132
RH
1776 break;
1777
1778 case WARNC:
db712946
L
1779 /* Issue a warning and cycle, except when the reference is
1780 in LTO IR. */
1781 if (h->u.i.warning != NULL
1782 && (abfd->flags & BFD_PLUGIN) == 0)
252b5132
RH
1783 {
1784 if (! (*info->callbacks->warning) (info, h->u.i.warning,
1785 h->root.string, abfd,
c58b9523 1786 NULL, 0))
b34976b6 1787 return FALSE;
252b5132
RH
1788 /* Only issue a warning once. */
1789 h->u.i.warning = NULL;
1790 }
1791 /* Fall through. */
1792 case CYCLE:
1793 /* Try again with the referenced symbol. */
1794 h = h->u.i.link;
b34976b6 1795 cycle = TRUE;
252b5132
RH
1796 break;
1797
1798 case REFC:
1799 /* A reference to an indirect symbol. */
f6e332e6
AM
1800 if (h->u.undef.next == NULL && info->hash->undefs_tail != h)
1801 h->u.undef.next = h;
252b5132 1802 h = h->u.i.link;
b34976b6 1803 cycle = TRUE;
252b5132
RH
1804 break;
1805
1806 case WARN:
db712946
L
1807 /* Warn if this symbol has been referenced already from non-IR,
1808 otherwise add a warning. */
1809 if (h->non_ir_ref)
252b5132
RH
1810 {
1811 if (! (*info->callbacks->warning) (info, string, h->root.string,
c58b9523 1812 hash_entry_bfd (h), NULL, 0))
b34976b6 1813 return FALSE;
252b5132
RH
1814 break;
1815 }
1816 /* Fall through. */
1817 case MWARN:
1818 /* Make a warning symbol. */
1819 {
1820 struct bfd_link_hash_entry *sub;
1821
1822 /* STRING is the warning to give. */
1823 sub = ((struct bfd_link_hash_entry *)
1824 ((*info->hash->table.newfunc)
c58b9523 1825 (NULL, &info->hash->table, h->root.string)));
252b5132 1826 if (sub == NULL)
b34976b6 1827 return FALSE;
252b5132
RH
1828 *sub = *h;
1829 sub->type = bfd_link_hash_warning;
1830 sub->u.i.link = h;
1831 if (! copy)
1832 sub->u.i.warning = string;
1833 else
1834 {
1835 char *w;
d4c88bbb 1836 size_t len = strlen (string) + 1;
252b5132 1837
a50b1753 1838 w = (char *) bfd_hash_allocate (&info->hash->table, len);
252b5132 1839 if (w == NULL)
b34976b6 1840 return FALSE;
d4c88bbb 1841 memcpy (w, string, len);
252b5132
RH
1842 sub->u.i.warning = w;
1843 }
1844
1845 bfd_hash_replace (&info->hash->table,
1846 (struct bfd_hash_entry *) h,
1847 (struct bfd_hash_entry *) sub);
1848 if (hashp != NULL)
1849 *hashp = sub;
1850 }
1851 break;
1852 }
1853 }
1854 while (cycle);
1855
b34976b6 1856 return TRUE;
252b5132
RH
1857}
1858\f
1859/* Generic final link routine. */
1860
b34976b6 1861bfd_boolean
c58b9523 1862_bfd_generic_final_link (bfd *abfd, struct bfd_link_info *info)
252b5132
RH
1863{
1864 bfd *sub;
1865 asection *o;
1866 struct bfd_link_order *p;
1867 size_t outsymalloc;
1868 struct generic_write_global_symbol_info wginfo;
1869
c58b9523 1870 bfd_get_outsymbols (abfd) = NULL;
252b5132
RH
1871 bfd_get_symcount (abfd) = 0;
1872 outsymalloc = 0;
1873
1874 /* Mark all sections which will be included in the output file. */
1875 for (o = abfd->sections; o != NULL; o = o->next)
8423293d 1876 for (p = o->map_head.link_order; p != NULL; p = p->next)
252b5132 1877 if (p->type == bfd_indirect_link_order)
b34976b6 1878 p->u.indirect.section->linker_mark = TRUE;
252b5132
RH
1879
1880 /* Build the output symbol table. */
c72f2fb2 1881 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
252b5132 1882 if (! _bfd_generic_link_output_symbols (abfd, sub, info, &outsymalloc))
b34976b6 1883 return FALSE;
252b5132
RH
1884
1885 /* Accumulate the global symbols. */
1886 wginfo.info = info;
1887 wginfo.output_bfd = abfd;
1888 wginfo.psymalloc = &outsymalloc;
1889 _bfd_generic_link_hash_traverse (_bfd_generic_hash_table (info),
1890 _bfd_generic_link_write_global_symbol,
c58b9523 1891 &wginfo);
252b5132
RH
1892
1893 /* Make sure we have a trailing NULL pointer on OUTSYMBOLS. We
1894 shouldn't really need one, since we have SYMCOUNT, but some old
1895 code still expects one. */
1896 if (! generic_add_output_symbol (abfd, &outsymalloc, NULL))
b34976b6 1897 return FALSE;
252b5132 1898
1049f94e 1899 if (info->relocatable)
252b5132
RH
1900 {
1901 /* Allocate space for the output relocs for each section. */
c58b9523 1902 for (o = abfd->sections; o != NULL; o = o->next)
252b5132
RH
1903 {
1904 o->reloc_count = 0;
8423293d 1905 for (p = o->map_head.link_order; p != NULL; p = p->next)
252b5132
RH
1906 {
1907 if (p->type == bfd_section_reloc_link_order
1908 || p->type == bfd_symbol_reloc_link_order)
1909 ++o->reloc_count;
1910 else if (p->type == bfd_indirect_link_order)
1911 {
1912 asection *input_section;
1913 bfd *input_bfd;
1914 long relsize;
1915 arelent **relocs;
1916 asymbol **symbols;
1917 long reloc_count;
1918
1919 input_section = p->u.indirect.section;
1920 input_bfd = input_section->owner;
1921 relsize = bfd_get_reloc_upper_bound (input_bfd,
1922 input_section);
1923 if (relsize < 0)
b34976b6 1924 return FALSE;
a50b1753 1925 relocs = (arelent **) bfd_malloc (relsize);
252b5132 1926 if (!relocs && relsize != 0)
b34976b6 1927 return FALSE;
252b5132
RH
1928 symbols = _bfd_generic_link_get_symbols (input_bfd);
1929 reloc_count = bfd_canonicalize_reloc (input_bfd,
1930 input_section,
1931 relocs,
1932 symbols);
5ed6aba4 1933 free (relocs);
252b5132 1934 if (reloc_count < 0)
b34976b6 1935 return FALSE;
252b5132
RH
1936 BFD_ASSERT ((unsigned long) reloc_count
1937 == input_section->reloc_count);
1938 o->reloc_count += reloc_count;
252b5132
RH
1939 }
1940 }
1941 if (o->reloc_count > 0)
1942 {
dc810e39
AM
1943 bfd_size_type amt;
1944
1945 amt = o->reloc_count;
1946 amt *= sizeof (arelent *);
a50b1753 1947 o->orelocation = (struct reloc_cache_entry **) bfd_alloc (abfd, amt);
252b5132 1948 if (!o->orelocation)
b34976b6 1949 return FALSE;
252b5132
RH
1950 o->flags |= SEC_RELOC;
1951 /* Reset the count so that it can be used as an index
1952 when putting in the output relocs. */
1953 o->reloc_count = 0;
1954 }
1955 }
1956 }
1957
1958 /* Handle all the link order information for the sections. */
c58b9523 1959 for (o = abfd->sections; o != NULL; o = o->next)
252b5132 1960 {
8423293d 1961 for (p = o->map_head.link_order; p != NULL; p = p->next)
252b5132
RH
1962 {
1963 switch (p->type)
1964 {
1965 case bfd_section_reloc_link_order:
1966 case bfd_symbol_reloc_link_order:
1967 if (! _bfd_generic_reloc_link_order (abfd, info, o, p))
b34976b6 1968 return FALSE;
252b5132
RH
1969 break;
1970 case bfd_indirect_link_order:
b34976b6
AM
1971 if (! default_indirect_link_order (abfd, info, o, p, TRUE))
1972 return FALSE;
252b5132
RH
1973 break;
1974 default:
1975 if (! _bfd_default_link_order (abfd, info, o, p))
b34976b6 1976 return FALSE;
252b5132
RH
1977 break;
1978 }
1979 }
1980 }
509945ae 1981
b34976b6 1982 return TRUE;
252b5132
RH
1983}
1984
1985/* Add an output symbol to the output BFD. */
1986
b34976b6 1987static bfd_boolean
c58b9523 1988generic_add_output_symbol (bfd *output_bfd, size_t *psymalloc, asymbol *sym)
252b5132
RH
1989{
1990 if (bfd_get_symcount (output_bfd) >= *psymalloc)
1991 {
1992 asymbol **newsyms;
dc810e39 1993 bfd_size_type amt;
252b5132
RH
1994
1995 if (*psymalloc == 0)
1996 *psymalloc = 124;
1997 else
1998 *psymalloc *= 2;
dc810e39
AM
1999 amt = *psymalloc;
2000 amt *= sizeof (asymbol *);
a50b1753 2001 newsyms = (asymbol **) bfd_realloc (bfd_get_outsymbols (output_bfd), amt);
c58b9523 2002 if (newsyms == NULL)
b34976b6 2003 return FALSE;
252b5132
RH
2004 bfd_get_outsymbols (output_bfd) = newsyms;
2005 }
2006
2007 bfd_get_outsymbols (output_bfd) [bfd_get_symcount (output_bfd)] = sym;
2008 if (sym != NULL)
2009 ++ bfd_get_symcount (output_bfd);
2010
b34976b6 2011 return TRUE;
252b5132
RH
2012}
2013
2014/* Handle the symbols for an input BFD. */
2015
b34976b6 2016bfd_boolean
c58b9523
AM
2017_bfd_generic_link_output_symbols (bfd *output_bfd,
2018 bfd *input_bfd,
2019 struct bfd_link_info *info,
2020 size_t *psymalloc)
252b5132
RH
2021{
2022 asymbol **sym_ptr;
2023 asymbol **sym_end;
2024
5c1d2f5f 2025 if (!bfd_generic_link_read_symbols (input_bfd))
b34976b6 2026 return FALSE;
252b5132
RH
2027
2028 /* Create a filename symbol if we are supposed to. */
c58b9523 2029 if (info->create_object_symbols_section != NULL)
252b5132
RH
2030 {
2031 asection *sec;
2032
c58b9523 2033 for (sec = input_bfd->sections; sec != NULL; sec = sec->next)
252b5132
RH
2034 {
2035 if (sec->output_section == info->create_object_symbols_section)
2036 {
2037 asymbol *newsym;
2038
2039 newsym = bfd_make_empty_symbol (input_bfd);
2040 if (!newsym)
b34976b6 2041 return FALSE;
252b5132
RH
2042 newsym->name = input_bfd->filename;
2043 newsym->value = 0;
2044 newsym->flags = BSF_LOCAL | BSF_FILE;
2045 newsym->section = sec;
2046
2047 if (! generic_add_output_symbol (output_bfd, psymalloc,
2048 newsym))
b34976b6 2049 return FALSE;
252b5132
RH
2050
2051 break;
2052 }
2053 }
2054 }
2055
2056 /* Adjust the values of the globally visible symbols, and write out
2057 local symbols. */
2058 sym_ptr = _bfd_generic_link_get_symbols (input_bfd);
2059 sym_end = sym_ptr + _bfd_generic_link_get_symcount (input_bfd);
2060 for (; sym_ptr < sym_end; sym_ptr++)
2061 {
2062 asymbol *sym;
2063 struct generic_link_hash_entry *h;
b34976b6 2064 bfd_boolean output;
252b5132 2065
c58b9523 2066 h = NULL;
252b5132
RH
2067 sym = *sym_ptr;
2068 if ((sym->flags & (BSF_INDIRECT
2069 | BSF_WARNING
2070 | BSF_GLOBAL
2071 | BSF_CONSTRUCTOR
2072 | BSF_WEAK)) != 0
2073 || bfd_is_und_section (bfd_get_section (sym))
2074 || bfd_is_com_section (bfd_get_section (sym))
2075 || bfd_is_ind_section (bfd_get_section (sym)))
2076 {
2077 if (sym->udata.p != NULL)
a50b1753 2078 h = (struct generic_link_hash_entry *) sym->udata.p;
252b5132
RH
2079 else if ((sym->flags & BSF_CONSTRUCTOR) != 0)
2080 {
2081 /* This case normally means that the main linker code
2082 deliberately ignored this constructor symbol. We
2083 should just pass it through. This will screw up if
2084 the constructor symbol is from a different,
2085 non-generic, object file format, but the case will
2086 only arise when linking with -r, which will probably
2087 fail anyhow, since there will be no way to represent
2088 the relocs in the output format being used. */
2089 h = NULL;
2090 }
2091 else if (bfd_is_und_section (bfd_get_section (sym)))
2092 h = ((struct generic_link_hash_entry *)
2093 bfd_wrapped_link_hash_lookup (output_bfd, info,
2094 bfd_asymbol_name (sym),
b34976b6 2095 FALSE, FALSE, TRUE));
252b5132
RH
2096 else
2097 h = _bfd_generic_link_hash_lookup (_bfd_generic_hash_table (info),
2098 bfd_asymbol_name (sym),
b34976b6 2099 FALSE, FALSE, TRUE);
252b5132 2100
c58b9523 2101 if (h != NULL)
252b5132
RH
2102 {
2103 /* Force all references to this symbol to point to
2104 the same area in memory. It is possible that
2105 this routine will be called with a hash table
2106 other than a generic hash table, so we double
2107 check that. */
f13a99db 2108 if (info->output_bfd->xvec == input_bfd->xvec)
252b5132 2109 {
c58b9523 2110 if (h->sym != NULL)
252b5132
RH
2111 *sym_ptr = sym = h->sym;
2112 }
2113
2114 switch (h->root.type)
2115 {
2116 default:
2117 case bfd_link_hash_new:
2118 abort ();
2119 case bfd_link_hash_undefined:
2120 break;
2121 case bfd_link_hash_undefweak:
2122 sym->flags |= BSF_WEAK;
2123 break;
2124 case bfd_link_hash_indirect:
2125 h = (struct generic_link_hash_entry *) h->root.u.i.link;
2126 /* fall through */
2127 case bfd_link_hash_defined:
2128 sym->flags |= BSF_GLOBAL;
2129 sym->flags &=~ BSF_CONSTRUCTOR;
2130 sym->value = h->root.u.def.value;
2131 sym->section = h->root.u.def.section;
2132 break;
2133 case bfd_link_hash_defweak:
2134 sym->flags |= BSF_WEAK;
2135 sym->flags &=~ BSF_CONSTRUCTOR;
2136 sym->value = h->root.u.def.value;
2137 sym->section = h->root.u.def.section;
2138 break;
2139 case bfd_link_hash_common:
2140 sym->value = h->root.u.c.size;
2141 sym->flags |= BSF_GLOBAL;
2142 if (! bfd_is_com_section (sym->section))
2143 {
2144 BFD_ASSERT (bfd_is_und_section (sym->section));
2145 sym->section = bfd_com_section_ptr;
2146 }
2147 /* We do not set the section of the symbol to
2148 h->root.u.c.p->section. That value was saved so
2149 that we would know where to allocate the symbol
2150 if it was defined. In this case the type is
2151 still bfd_link_hash_common, so we did not define
2152 it, so we do not want to use that section. */
2153 break;
2154 }
2155 }
2156 }
2157
2158 /* This switch is straight from the old code in
2159 write_file_locals in ldsym.c. */
2160 if (info->strip == strip_all
2161 || (info->strip == strip_some
c58b9523
AM
2162 && bfd_hash_lookup (info->keep_hash, bfd_asymbol_name (sym),
2163 FALSE, FALSE) == NULL))
b34976b6 2164 output = FALSE;
252b5132
RH
2165 else if ((sym->flags & (BSF_GLOBAL | BSF_WEAK)) != 0)
2166 {
2167 /* If this symbol is marked as occurring now, rather
2168 than at the end, output it now. This is used for
2169 COFF C_EXT FCN symbols. FIXME: There must be a
2170 better way. */
2171 if (bfd_asymbol_bfd (sym) == input_bfd
2172 && (sym->flags & BSF_NOT_AT_END) != 0)
b34976b6 2173 output = TRUE;
252b5132 2174 else
b34976b6 2175 output = FALSE;
252b5132
RH
2176 }
2177 else if (bfd_is_ind_section (sym->section))
b34976b6 2178 output = FALSE;
252b5132
RH
2179 else if ((sym->flags & BSF_DEBUGGING) != 0)
2180 {
2181 if (info->strip == strip_none)
b34976b6 2182 output = TRUE;
252b5132 2183 else
b34976b6 2184 output = FALSE;
252b5132
RH
2185 }
2186 else if (bfd_is_und_section (sym->section)
2187 || bfd_is_com_section (sym->section))
b34976b6 2188 output = FALSE;
252b5132
RH
2189 else if ((sym->flags & BSF_LOCAL) != 0)
2190 {
2191 if ((sym->flags & BSF_WARNING) != 0)
b34976b6 2192 output = FALSE;
252b5132
RH
2193 else
2194 {
2195 switch (info->discard)
2196 {
2197 default:
2198 case discard_all:
b34976b6 2199 output = FALSE;
252b5132 2200 break;
f5fa8ca2 2201 case discard_sec_merge:
b34976b6 2202 output = TRUE;
1049f94e 2203 if (info->relocatable
f5fa8ca2
JJ
2204 || ! (sym->section->flags & SEC_MERGE))
2205 break;
2206 /* FALLTHROUGH */
252b5132
RH
2207 case discard_l:
2208 if (bfd_is_local_label (input_bfd, sym))
b34976b6 2209 output = FALSE;
252b5132 2210 else
b34976b6 2211 output = TRUE;
252b5132
RH
2212 break;
2213 case discard_none:
b34976b6 2214 output = TRUE;
252b5132
RH
2215 break;
2216 }
2217 }
2218 }
2219 else if ((sym->flags & BSF_CONSTRUCTOR))
2220 {
2221 if (info->strip != strip_all)
b34976b6 2222 output = TRUE;
252b5132 2223 else
b34976b6 2224 output = FALSE;
252b5132 2225 }
d3a65d4d
HPN
2226 else if (sym->flags == 0
2227 && (sym->section->owner->flags & BFD_PLUGIN) != 0)
2228 /* LTO doesn't set symbol information. We get here with the
2229 generic linker for a symbol that was "common" but no longer
2230 needs to be global. */
2231 output = FALSE;
252b5132
RH
2232 else
2233 abort ();
2234
2235 /* If this symbol is in a section which is not being included
ab82c5b9 2236 in the output file, then we don't want to output the
f02571c5
AM
2237 symbol. */
2238 if (!bfd_is_abs_section (sym->section)
2239 && bfd_section_removed_from_list (output_bfd,
ab82c5b9 2240 sym->section->output_section))
b34976b6 2241 output = FALSE;
252b5132
RH
2242
2243 if (output)
2244 {
2245 if (! generic_add_output_symbol (output_bfd, psymalloc, sym))
b34976b6 2246 return FALSE;
c58b9523 2247 if (h != NULL)
b34976b6 2248 h->written = TRUE;
252b5132
RH
2249 }
2250 }
2251
b34976b6 2252 return TRUE;
252b5132
RH
2253}
2254
2255/* Set the section and value of a generic BFD symbol based on a linker
2256 hash table entry. */
2257
2258static void
c58b9523 2259set_symbol_from_hash (asymbol *sym, struct bfd_link_hash_entry *h)
252b5132
RH
2260{
2261 switch (h->type)
2262 {
2263 default:
2264 abort ();
2265 break;
2266 case bfd_link_hash_new:
2267 /* This can happen when a constructor symbol is seen but we are
2268 not building constructors. */
2269 if (sym->section != NULL)
2270 {
2271 BFD_ASSERT ((sym->flags & BSF_CONSTRUCTOR) != 0);
2272 }
2273 else
2274 {
2275 sym->flags |= BSF_CONSTRUCTOR;
2276 sym->section = bfd_abs_section_ptr;
2277 sym->value = 0;
2278 }
2279 break;
2280 case bfd_link_hash_undefined:
2281 sym->section = bfd_und_section_ptr;
2282 sym->value = 0;
2283 break;
2284 case bfd_link_hash_undefweak:
2285 sym->section = bfd_und_section_ptr;
2286 sym->value = 0;
2287 sym->flags |= BSF_WEAK;
2288 break;
2289 case bfd_link_hash_defined:
2290 sym->section = h->u.def.section;
2291 sym->value = h->u.def.value;
2292 break;
2293 case bfd_link_hash_defweak:
2294 sym->flags |= BSF_WEAK;
2295 sym->section = h->u.def.section;
2296 sym->value = h->u.def.value;
2297 break;
2298 case bfd_link_hash_common:
2299 sym->value = h->u.c.size;
2300 if (sym->section == NULL)
2301 sym->section = bfd_com_section_ptr;
2302 else if (! bfd_is_com_section (sym->section))
2303 {
2304 BFD_ASSERT (bfd_is_und_section (sym->section));
2305 sym->section = bfd_com_section_ptr;
2306 }
2307 /* Do not set the section; see _bfd_generic_link_output_symbols. */
2308 break;
2309 case bfd_link_hash_indirect:
2310 case bfd_link_hash_warning:
2311 /* FIXME: What should we do here? */
2312 break;
2313 }
2314}
2315
2316/* Write out a global symbol, if it hasn't already been written out.
2317 This is called for each symbol in the hash table. */
2318
b34976b6 2319bfd_boolean
c58b9523
AM
2320_bfd_generic_link_write_global_symbol (struct generic_link_hash_entry *h,
2321 void *data)
252b5132 2322{
a50b1753
NC
2323 struct generic_write_global_symbol_info *wginfo =
2324 (struct generic_write_global_symbol_info *) data;
252b5132
RH
2325 asymbol *sym;
2326
2327 if (h->written)
b34976b6 2328 return TRUE;
252b5132 2329
b34976b6 2330 h->written = TRUE;
252b5132
RH
2331
2332 if (wginfo->info->strip == strip_all
2333 || (wginfo->info->strip == strip_some
2334 && bfd_hash_lookup (wginfo->info->keep_hash, h->root.root.string,
b34976b6
AM
2335 FALSE, FALSE) == NULL))
2336 return TRUE;
252b5132 2337
c58b9523 2338 if (h->sym != NULL)
252b5132
RH
2339 sym = h->sym;
2340 else
2341 {
2342 sym = bfd_make_empty_symbol (wginfo->output_bfd);
2343 if (!sym)
b34976b6 2344 return FALSE;
252b5132
RH
2345 sym->name = h->root.root.string;
2346 sym->flags = 0;
2347 }
2348
2349 set_symbol_from_hash (sym, &h->root);
2350
2351 sym->flags |= BSF_GLOBAL;
2352
2353 if (! generic_add_output_symbol (wginfo->output_bfd, wginfo->psymalloc,
2354 sym))
2355 {
2356 /* FIXME: No way to return failure. */
2357 abort ();
2358 }
2359
b34976b6 2360 return TRUE;
252b5132
RH
2361}
2362
2363/* Create a relocation. */
2364
b34976b6 2365bfd_boolean
c58b9523
AM
2366_bfd_generic_reloc_link_order (bfd *abfd,
2367 struct bfd_link_info *info,
2368 asection *sec,
2369 struct bfd_link_order *link_order)
252b5132
RH
2370{
2371 arelent *r;
2372
1049f94e 2373 if (! info->relocatable)
252b5132 2374 abort ();
c58b9523 2375 if (sec->orelocation == NULL)
252b5132
RH
2376 abort ();
2377
a50b1753 2378 r = (arelent *) bfd_alloc (abfd, sizeof (arelent));
c58b9523 2379 if (r == NULL)
b34976b6 2380 return FALSE;
509945ae 2381
252b5132
RH
2382 r->address = link_order->offset;
2383 r->howto = bfd_reloc_type_lookup (abfd, link_order->u.reloc.p->reloc);
2384 if (r->howto == 0)
2385 {
2386 bfd_set_error (bfd_error_bad_value);
b34976b6 2387 return FALSE;
252b5132
RH
2388 }
2389
2390 /* Get the symbol to use for the relocation. */
2391 if (link_order->type == bfd_section_reloc_link_order)
2392 r->sym_ptr_ptr = link_order->u.reloc.p->u.section->symbol_ptr_ptr;
2393 else
2394 {
2395 struct generic_link_hash_entry *h;
2396
2397 h = ((struct generic_link_hash_entry *)
2398 bfd_wrapped_link_hash_lookup (abfd, info,
2399 link_order->u.reloc.p->u.name,
b34976b6 2400 FALSE, FALSE, TRUE));
c58b9523 2401 if (h == NULL
252b5132
RH
2402 || ! h->written)
2403 {
2404 if (! ((*info->callbacks->unattached_reloc)
c58b9523 2405 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0)))
b34976b6 2406 return FALSE;
252b5132 2407 bfd_set_error (bfd_error_bad_value);
b34976b6 2408 return FALSE;
252b5132
RH
2409 }
2410 r->sym_ptr_ptr = &h->sym;
2411 }
2412
2413 /* If this is an inplace reloc, write the addend to the object file.
2414 Otherwise, store it in the reloc addend. */
2415 if (! r->howto->partial_inplace)
2416 r->addend = link_order->u.reloc.p->addend;
2417 else
2418 {
2419 bfd_size_type size;
2420 bfd_reloc_status_type rstat;
2421 bfd_byte *buf;
b34976b6 2422 bfd_boolean ok;
dc810e39 2423 file_ptr loc;
252b5132
RH
2424
2425 size = bfd_get_reloc_size (r->howto);
a50b1753 2426 buf = (bfd_byte *) bfd_zmalloc (size);
c58b9523 2427 if (buf == NULL)
b34976b6 2428 return FALSE;
252b5132 2429 rstat = _bfd_relocate_contents (r->howto, abfd,
dc810e39
AM
2430 (bfd_vma) link_order->u.reloc.p->addend,
2431 buf);
252b5132
RH
2432 switch (rstat)
2433 {
2434 case bfd_reloc_ok:
2435 break;
2436 default:
2437 case bfd_reloc_outofrange:
2438 abort ();
2439 case bfd_reloc_overflow:
2440 if (! ((*info->callbacks->reloc_overflow)
dfeffb9f 2441 (info, NULL,
252b5132
RH
2442 (link_order->type == bfd_section_reloc_link_order
2443 ? bfd_section_name (abfd, link_order->u.reloc.p->u.section)
2444 : link_order->u.reloc.p->u.name),
2445 r->howto->name, link_order->u.reloc.p->addend,
c58b9523 2446 NULL, NULL, 0)))
252b5132
RH
2447 {
2448 free (buf);
b34976b6 2449 return FALSE;
252b5132
RH
2450 }
2451 break;
2452 }
dc810e39 2453 loc = link_order->offset * bfd_octets_per_byte (abfd);
c58b9523 2454 ok = bfd_set_section_contents (abfd, sec, buf, loc, size);
252b5132
RH
2455 free (buf);
2456 if (! ok)
b34976b6 2457 return FALSE;
252b5132
RH
2458
2459 r->addend = 0;
2460 }
2461
2462 sec->orelocation[sec->reloc_count] = r;
2463 ++sec->reloc_count;
2464
b34976b6 2465 return TRUE;
252b5132
RH
2466}
2467\f
2468/* Allocate a new link_order for a section. */
2469
2470struct bfd_link_order *
c58b9523 2471bfd_new_link_order (bfd *abfd, asection *section)
252b5132 2472{
dc810e39 2473 bfd_size_type amt = sizeof (struct bfd_link_order);
d3ce72d0 2474 struct bfd_link_order *new_lo;
fd96f80f 2475
d3ce72d0
NC
2476 new_lo = (struct bfd_link_order *) bfd_zalloc (abfd, amt);
2477 if (!new_lo)
252b5132
RH
2478 return NULL;
2479
d3ce72d0 2480 new_lo->type = bfd_undefined_link_order;
252b5132 2481
8423293d 2482 if (section->map_tail.link_order != NULL)
d3ce72d0 2483 section->map_tail.link_order->next = new_lo;
252b5132 2484 else
d3ce72d0
NC
2485 section->map_head.link_order = new_lo;
2486 section->map_tail.link_order = new_lo;
252b5132 2487
d3ce72d0 2488 return new_lo;
252b5132
RH
2489}
2490
2491/* Default link order processing routine. Note that we can not handle
2492 the reloc_link_order types here, since they depend upon the details
2493 of how the particular backends generates relocs. */
2494
b34976b6 2495bfd_boolean
c58b9523
AM
2496_bfd_default_link_order (bfd *abfd,
2497 struct bfd_link_info *info,
2498 asection *sec,
2499 struct bfd_link_order *link_order)
252b5132
RH
2500{
2501 switch (link_order->type)
2502 {
2503 case bfd_undefined_link_order:
2504 case bfd_section_reloc_link_order:
2505 case bfd_symbol_reloc_link_order:
2506 default:
2507 abort ();
2508 case bfd_indirect_link_order:
2509 return default_indirect_link_order (abfd, info, sec, link_order,
b34976b6 2510 FALSE);
252b5132 2511 case bfd_data_link_order:
fd96f80f 2512 return default_data_link_order (abfd, info, sec, link_order);
252b5132
RH
2513 }
2514}
2515
fd96f80f 2516/* Default routine to handle a bfd_data_link_order. */
252b5132 2517
b34976b6 2518static bfd_boolean
c58b9523
AM
2519default_data_link_order (bfd *abfd,
2520 struct bfd_link_info *info ATTRIBUTE_UNUSED,
2521 asection *sec,
2522 struct bfd_link_order *link_order)
252b5132 2523{
dc810e39 2524 bfd_size_type size;
fd96f80f
AM
2525 size_t fill_size;
2526 bfd_byte *fill;
0ac450b6 2527 file_ptr loc;
b34976b6 2528 bfd_boolean result;
252b5132
RH
2529
2530 BFD_ASSERT ((sec->flags & SEC_HAS_CONTENTS) != 0);
2531
dc810e39 2532 size = link_order->size;
0ac450b6 2533 if (size == 0)
b34976b6 2534 return TRUE;
0ac450b6 2535
fd96f80f
AM
2536 fill = link_order->u.data.contents;
2537 fill_size = link_order->u.data.size;
b7761f11
L
2538 if (fill_size == 0)
2539 {
2540 fill = abfd->arch_info->fill (size, bfd_big_endian (abfd),
2541 (sec->flags & SEC_CODE) != 0);
2542 if (fill == NULL)
2543 return FALSE;
2544 }
2545 else if (fill_size < size)
fd96f80f
AM
2546 {
2547 bfd_byte *p;
a50b1753 2548 fill = (bfd_byte *) bfd_malloc (size);
fd96f80f 2549 if (fill == NULL)
b34976b6 2550 return FALSE;
fd96f80f
AM
2551 p = fill;
2552 if (fill_size == 1)
2553 memset (p, (int) link_order->u.data.contents[0], (size_t) size);
2554 else
2555 {
2556 do
2557 {
2558 memcpy (p, link_order->u.data.contents, fill_size);
2559 p += fill_size;
2560 size -= fill_size;
2561 }
2562 while (size >= fill_size);
2563 if (size != 0)
2564 memcpy (p, link_order->u.data.contents, (size_t) size);
2565 size = link_order->size;
2566 }
2567 }
0ac450b6 2568
dc810e39 2569 loc = link_order->offset * bfd_octets_per_byte (abfd);
fd96f80f 2570 result = bfd_set_section_contents (abfd, sec, fill, loc, size);
0ac450b6 2571
fd96f80f
AM
2572 if (fill != link_order->u.data.contents)
2573 free (fill);
252b5132
RH
2574 return result;
2575}
2576
2577/* Default routine to handle a bfd_indirect_link_order. */
2578
b34976b6 2579static bfd_boolean
c58b9523
AM
2580default_indirect_link_order (bfd *output_bfd,
2581 struct bfd_link_info *info,
2582 asection *output_section,
2583 struct bfd_link_order *link_order,
2584 bfd_boolean generic_linker)
252b5132
RH
2585{
2586 asection *input_section;
2587 bfd *input_bfd;
2588 bfd_byte *contents = NULL;
2589 bfd_byte *new_contents;
dc810e39
AM
2590 bfd_size_type sec_size;
2591 file_ptr loc;
252b5132
RH
2592
2593 BFD_ASSERT ((output_section->flags & SEC_HAS_CONTENTS) != 0);
2594
252b5132
RH
2595 input_section = link_order->u.indirect.section;
2596 input_bfd = input_section->owner;
44da2da1
AM
2597 if (input_section->size == 0)
2598 return TRUE;
252b5132
RH
2599
2600 BFD_ASSERT (input_section->output_section == output_section);
2601 BFD_ASSERT (input_section->output_offset == link_order->offset);
eea6121a 2602 BFD_ASSERT (input_section->size == link_order->size);
252b5132 2603
1049f94e 2604 if (info->relocatable
252b5132 2605 && input_section->reloc_count > 0
c58b9523 2606 && output_section->orelocation == NULL)
252b5132
RH
2607 {
2608 /* Space has not been allocated for the output relocations.
2609 This can happen when we are called by a specific backend
2610 because somebody is attempting to link together different
2611 types of object files. Handling this case correctly is
2612 difficult, and sometimes impossible. */
2613 (*_bfd_error_handler)
1049f94e 2614 (_("Attempt to do relocatable link with %s input and %s output"),
252b5132
RH
2615 bfd_get_target (input_bfd), bfd_get_target (output_bfd));
2616 bfd_set_error (bfd_error_wrong_format);
b34976b6 2617 return FALSE;
252b5132
RH
2618 }
2619
2620 if (! generic_linker)
2621 {
2622 asymbol **sympp;
2623 asymbol **symppend;
2624
2625 /* Get the canonical symbols. The generic linker will always
2626 have retrieved them by this point, but we are being called by
2627 a specific linker, presumably because we are linking
2628 different types of object files together. */
5c1d2f5f 2629 if (!bfd_generic_link_read_symbols (input_bfd))
b34976b6 2630 return FALSE;
252b5132
RH
2631
2632 /* Since we have been called by a specific linker, rather than
2633 the generic linker, the values of the symbols will not be
2634 right. They will be the values as seen in the input file,
2635 not the values of the final link. We need to fix them up
2636 before we can relocate the section. */
2637 sympp = _bfd_generic_link_get_symbols (input_bfd);
2638 symppend = sympp + _bfd_generic_link_get_symcount (input_bfd);
2639 for (; sympp < symppend; sympp++)
2640 {
2641 asymbol *sym;
2642 struct bfd_link_hash_entry *h;
2643
2644 sym = *sympp;
2645
2646 if ((sym->flags & (BSF_INDIRECT
2647 | BSF_WARNING
2648 | BSF_GLOBAL
2649 | BSF_CONSTRUCTOR
2650 | BSF_WEAK)) != 0
2651 || bfd_is_und_section (bfd_get_section (sym))
2652 || bfd_is_com_section (bfd_get_section (sym))
2653 || bfd_is_ind_section (bfd_get_section (sym)))
2654 {
2655 /* sym->udata may have been set by
2656 generic_link_add_symbol_list. */
2657 if (sym->udata.p != NULL)
a50b1753 2658 h = (struct bfd_link_hash_entry *) sym->udata.p;
252b5132
RH
2659 else if (bfd_is_und_section (bfd_get_section (sym)))
2660 h = bfd_wrapped_link_hash_lookup (output_bfd, info,
2661 bfd_asymbol_name (sym),
b34976b6 2662 FALSE, FALSE, TRUE);
252b5132
RH
2663 else
2664 h = bfd_link_hash_lookup (info->hash,
2665 bfd_asymbol_name (sym),
b34976b6 2666 FALSE, FALSE, TRUE);
252b5132
RH
2667 if (h != NULL)
2668 set_symbol_from_hash (sym, h);
2669 }
509945ae 2670 }
252b5132
RH
2671 }
2672
bcacc0f5
AM
2673 if ((output_section->flags & (SEC_GROUP | SEC_LINKER_CREATED)) == SEC_GROUP
2674 && input_section->size != 0)
2675 {
2676 /* Group section contents are set by bfd_elf_set_group_contents. */
2677 if (!output_bfd->output_has_begun)
2678 {
2679 /* FIXME: This hack ensures bfd_elf_set_group_contents is called. */
2680 if (!bfd_set_section_contents (output_bfd, output_section, "", 0, 1))
2681 goto error_return;
2682 }
2683 new_contents = output_section->contents;
2684 BFD_ASSERT (new_contents != NULL);
2685 BFD_ASSERT (input_section->output_offset == 0);
2686 }
2687 else
2688 {
2689 /* Get and relocate the section contents. */
2690 sec_size = (input_section->rawsize > input_section->size
2691 ? input_section->rawsize
2692 : input_section->size);
a50b1753 2693 contents = (bfd_byte *) bfd_malloc (sec_size);
bcacc0f5
AM
2694 if (contents == NULL && sec_size != 0)
2695 goto error_return;
2696 new_contents = (bfd_get_relocated_section_contents
2697 (output_bfd, info, link_order, contents,
2698 info->relocatable,
2699 _bfd_generic_link_get_symbols (input_bfd)));
2700 if (!new_contents)
2701 goto error_return;
2702 }
252b5132
RH
2703
2704 /* Output the section contents. */
44da2da1 2705 loc = input_section->output_offset * bfd_octets_per_byte (output_bfd);
252b5132 2706 if (! bfd_set_section_contents (output_bfd, output_section,
44da2da1 2707 new_contents, loc, input_section->size))
252b5132
RH
2708 goto error_return;
2709
2710 if (contents != NULL)
2711 free (contents);
b34976b6 2712 return TRUE;
252b5132
RH
2713
2714 error_return:
2715 if (contents != NULL)
2716 free (contents);
b34976b6 2717 return FALSE;
252b5132
RH
2718}
2719
2720/* A little routine to count the number of relocs in a link_order
2721 list. */
2722
2723unsigned int
c58b9523 2724_bfd_count_link_order_relocs (struct bfd_link_order *link_order)
252b5132
RH
2725{
2726 register unsigned int c;
2727 register struct bfd_link_order *l;
2728
2729 c = 0;
c58b9523 2730 for (l = link_order; l != NULL; l = l->next)
252b5132
RH
2731 {
2732 if (l->type == bfd_section_reloc_link_order
2733 || l->type == bfd_symbol_reloc_link_order)
2734 ++c;
2735 }
2736
2737 return c;
2738}
2739
2740/*
2741FUNCTION
2742 bfd_link_split_section
2743
2744SYNOPSIS
c58b9523 2745 bfd_boolean bfd_link_split_section (bfd *abfd, asection *sec);
252b5132
RH
2746
2747DESCRIPTION
2748 Return nonzero if @var{sec} should be split during a
2749 reloceatable or final link.
2750
2751.#define bfd_link_split_section(abfd, sec) \
2752. BFD_SEND (abfd, _bfd_link_split_section, (abfd, sec))
2753.
2754
2755*/
2756
b34976b6 2757bfd_boolean
c58b9523
AM
2758_bfd_generic_link_split_section (bfd *abfd ATTRIBUTE_UNUSED,
2759 asection *sec ATTRIBUTE_UNUSED)
252b5132 2760{
b34976b6 2761 return FALSE;
252b5132 2762}
082b7297
L
2763
2764/*
2765FUNCTION
2766 bfd_section_already_linked
2767
2768SYNOPSIS
43e1669b 2769 bfd_boolean bfd_section_already_linked (bfd *abfd,
c77ec726 2770 asection *sec,
43e1669b 2771 struct bfd_link_info *info);
082b7297
L
2772
2773DESCRIPTION
0c511000 2774 Check if @var{data} has been already linked during a reloceatable
43e1669b 2775 or final link. Return TRUE if it has.
082b7297 2776
c77ec726
AM
2777.#define bfd_section_already_linked(abfd, sec, info) \
2778. BFD_SEND (abfd, _section_already_linked, (abfd, sec, info))
082b7297
L
2779.
2780
2781*/
2782
2783/* Sections marked with the SEC_LINK_ONCE flag should only be linked
2784 once into the output. This routine checks each section, and
2785 arrange to discard it if a section of the same name has already
68ffbac6 2786 been linked. This code assumes that all relevant sections have the
082b7297
L
2787 SEC_LINK_ONCE flag set; that is, it does not depend solely upon the
2788 section name. bfd_section_already_linked is called via
2789 bfd_map_over_sections. */
2790
2791/* The hash table. */
2792
2793static struct bfd_hash_table _bfd_section_already_linked_table;
2794
2795/* Support routines for the hash table used by section_already_linked,
3d7f7666
L
2796 initialize the table, traverse, lookup, fill in an entry and remove
2797 the table. */
2798
2799void
2800bfd_section_already_linked_table_traverse
2801 (bfd_boolean (*func) (struct bfd_section_already_linked_hash_entry *,
2802 void *), void *info)
2803{
2804 bfd_hash_traverse (&_bfd_section_already_linked_table,
2805 (bfd_boolean (*) (struct bfd_hash_entry *,
2806 void *)) func,
2807 info);
2808}
082b7297
L
2809
2810struct bfd_section_already_linked_hash_entry *
2811bfd_section_already_linked_table_lookup (const char *name)
2812{
2813 return ((struct bfd_section_already_linked_hash_entry *)
2814 bfd_hash_lookup (&_bfd_section_already_linked_table, name,
2815 TRUE, FALSE));
2816}
2817
a6626e8c 2818bfd_boolean
082b7297
L
2819bfd_section_already_linked_table_insert
2820 (struct bfd_section_already_linked_hash_entry *already_linked_list,
c77ec726 2821 asection *sec)
082b7297
L
2822{
2823 struct bfd_section_already_linked *l;
2824
2825 /* Allocate the memory from the same obstack as the hash table is
2826 kept in. */
a50b1753
NC
2827 l = (struct bfd_section_already_linked *)
2828 bfd_hash_allocate (&_bfd_section_already_linked_table, sizeof *l);
a6626e8c
MS
2829 if (l == NULL)
2830 return FALSE;
c77ec726 2831 l->sec = sec;
082b7297
L
2832 l->next = already_linked_list->entry;
2833 already_linked_list->entry = l;
a6626e8c 2834 return TRUE;
082b7297
L
2835}
2836
2837static struct bfd_hash_entry *
2838already_linked_newfunc (struct bfd_hash_entry *entry ATTRIBUTE_UNUSED,
2839 struct bfd_hash_table *table,
2840 const char *string ATTRIBUTE_UNUSED)
2841{
2842 struct bfd_section_already_linked_hash_entry *ret =
a50b1753
NC
2843 (struct bfd_section_already_linked_hash_entry *)
2844 bfd_hash_allocate (table, sizeof *ret);
082b7297 2845
2d4f3e92 2846 if (ret == NULL)
a6626e8c 2847 return NULL;
2d4f3e92 2848
5ba8816a
MS
2849 ret->entry = NULL;
2850
082b7297
L
2851 return &ret->root;
2852}
2853
2854bfd_boolean
2855bfd_section_already_linked_table_init (void)
2856{
2857 return bfd_hash_table_init_n (&_bfd_section_already_linked_table,
66eb6687
AM
2858 already_linked_newfunc,
2859 sizeof (struct bfd_section_already_linked_hash_entry),
2860 42);
082b7297
L
2861}
2862
2863void
2864bfd_section_already_linked_table_free (void)
2865{
2866 bfd_hash_table_free (&_bfd_section_already_linked_table);
2867}
2868
c77ec726
AM
2869/* Report warnings as appropriate for duplicate section SEC.
2870 Return FALSE if we decide to keep SEC after all. */
082b7297 2871
43e1669b 2872bfd_boolean
c77ec726
AM
2873_bfd_handle_already_linked (asection *sec,
2874 struct bfd_section_already_linked *l,
2875 struct bfd_link_info *info)
082b7297 2876{
c77ec726 2877 switch (sec->flags & SEC_LINK_DUPLICATES)
0c511000 2878 {
c77ec726
AM
2879 default:
2880 abort ();
0c511000 2881
c77ec726
AM
2882 case SEC_LINK_DUPLICATES_DISCARD:
2883 /* If we found an LTO IR match for this comdat group on
2884 the first pass, replace it with the LTO output on the
2885 second pass. We can't simply choose real object
2886 files over IR because the first pass may contain a
2887 mix of LTO and normal objects and we must keep the
2888 first match, be it IR or real. */
2889 if (info->loading_lto_outputs
2890 && (l->sec->owner->flags & BFD_PLUGIN) != 0)
2891 {
2892 l->sec = sec;
2893 return FALSE;
2894 }
2895 break;
0c511000 2896
c77ec726
AM
2897 case SEC_LINK_DUPLICATES_ONE_ONLY:
2898 info->callbacks->einfo
2899 (_("%B: ignoring duplicate section `%A'\n"),
2900 sec->owner, sec);
2901 break;
0c511000 2902
c77ec726
AM
2903 case SEC_LINK_DUPLICATES_SAME_SIZE:
2904 if ((l->sec->owner->flags & BFD_PLUGIN) != 0)
2905 ;
2906 else if (sec->size != l->sec->size)
2907 info->callbacks->einfo
2908 (_("%B: duplicate section `%A' has different size\n"),
2909 sec->owner, sec);
2910 break;
0c511000 2911
c77ec726
AM
2912 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
2913 if ((l->sec->owner->flags & BFD_PLUGIN) != 0)
2914 ;
2915 else if (sec->size != l->sec->size)
2916 info->callbacks->einfo
2917 (_("%B: duplicate section `%A' has different size\n"),
2918 sec->owner, sec);
2919 else if (sec->size != 0)
2920 {
2921 bfd_byte *sec_contents, *l_sec_contents = NULL;
2922
2923 if (!bfd_malloc_and_get_section (sec->owner, sec, &sec_contents))
2924 info->callbacks->einfo
2925 (_("%B: could not read contents of section `%A'\n"),
2926 sec->owner, sec);
2927 else if (!bfd_malloc_and_get_section (l->sec->owner, l->sec,
2928 &l_sec_contents))
2929 info->callbacks->einfo
2930 (_("%B: could not read contents of section `%A'\n"),
2931 l->sec->owner, l->sec);
2932 else if (memcmp (sec_contents, l_sec_contents, sec->size) != 0)
2933 info->callbacks->einfo
2934 (_("%B: duplicate section `%A' has different contents\n"),
2935 sec->owner, sec);
2936
2937 if (sec_contents)
2938 free (sec_contents);
2939 if (l_sec_contents)
2940 free (l_sec_contents);
2941 }
2942 break;
0c511000 2943 }
082b7297 2944
c77ec726
AM
2945 /* Set the output_section field so that lang_add_section
2946 does not create a lang_input_section structure for this
2947 section. Since there might be a symbol in the section
2948 being discarded, we must retain a pointer to the section
2949 which we are really going to use. */
2950 sec->output_section = bfd_abs_section_ptr;
2951 sec->kept_section = l->sec;
2952 return TRUE;
2953}
082b7297 2954
c77ec726 2955/* This is used on non-ELF inputs. */
0c511000 2956
c77ec726
AM
2957bfd_boolean
2958_bfd_generic_section_already_linked (bfd *abfd ATTRIBUTE_UNUSED,
2959 asection *sec,
2960 struct bfd_link_info *info)
2961{
2962 const char *name;
2963 struct bfd_section_already_linked *l;
2964 struct bfd_section_already_linked_hash_entry *already_linked_list;
082b7297 2965
c77ec726
AM
2966 if ((sec->flags & SEC_LINK_ONCE) == 0)
2967 return FALSE;
082b7297 2968
c77ec726
AM
2969 /* The generic linker doesn't handle section groups. */
2970 if ((sec->flags & SEC_GROUP) != 0)
2971 return FALSE;
082b7297 2972
c77ec726
AM
2973 /* FIXME: When doing a relocatable link, we may have trouble
2974 copying relocations in other sections that refer to local symbols
2975 in the section being discarded. Those relocations will have to
2976 be converted somehow; as of this writing I'm not sure that any of
2977 the backends handle that correctly.
082b7297 2978
c77ec726
AM
2979 It is tempting to instead not discard link once sections when
2980 doing a relocatable link (technically, they should be discarded
2981 whenever we are building constructors). However, that fails,
2982 because the linker winds up combining all the link once sections
2983 into a single large link once section, which defeats the purpose
2984 of having link once sections in the first place. */
082b7297 2985
c77ec726 2986 name = bfd_get_section_name (abfd, sec);
082b7297 2987
c77ec726 2988 already_linked_list = bfd_section_already_linked_table_lookup (name);
082b7297 2989
c77ec726
AM
2990 l = already_linked_list->entry;
2991 if (l != NULL)
2992 {
2993 /* The section has already been linked. See if we should
2994 issue a warning. */
2995 return _bfd_handle_already_linked (sec, l, info);
082b7297
L
2996 }
2997
2998 /* This is the first section with this name. Record it. */
c77ec726 2999 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
bb6198d2 3000 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
43e1669b 3001 return FALSE;
082b7297 3002}
1e035701 3003
051d833a
AM
3004/* Choose a neighbouring section to S in OBFD that will be output, or
3005 the absolute section if ADDR is out of bounds of the neighbours. */
3006
3007asection *
3008_bfd_nearby_section (bfd *obfd, asection *s, bfd_vma addr)
3009{
3010 asection *next, *prev, *best;
3011
3012 /* Find preceding kept section. */
3013 for (prev = s->prev; prev != NULL; prev = prev->prev)
3014 if ((prev->flags & SEC_EXCLUDE) == 0
3015 && !bfd_section_removed_from_list (obfd, prev))
3016 break;
3017
3018 /* Find following kept section. Start at prev->next because
3019 other sections may have been added after S was removed. */
3020 if (s->prev != NULL)
3021 next = s->prev->next;
3022 else
3023 next = s->owner->sections;
3024 for (; next != NULL; next = next->next)
3025 if ((next->flags & SEC_EXCLUDE) == 0
3026 && !bfd_section_removed_from_list (obfd, next))
3027 break;
3028
3029 /* Choose better of two sections, based on flags. The idea
3030 is to choose a section that will be in the same segment
3031 as S would have been if it was kept. */
3032 best = next;
3033 if (prev == NULL)
3034 {
3035 if (next == NULL)
3036 best = bfd_abs_section_ptr;
3037 }
3038 else if (next == NULL)
3039 best = prev;
3040 else if (((prev->flags ^ next->flags)
3041 & (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_LOAD)) != 0)
3042 {
3043 if (((next->flags ^ s->flags)
3044 & (SEC_ALLOC | SEC_THREAD_LOCAL)) != 0
3045 /* We prefer to choose a loaded section. Section S
3046 doesn't have SEC_LOAD set (it being excluded, that
3047 part of the flag processing didn't happen) so we
3048 can't compare that flag to those of NEXT and PREV. */
3049 || ((prev->flags & SEC_LOAD) != 0
3050 && (next->flags & SEC_LOAD) == 0))
3051 best = prev;
3052 }
3053 else if (((prev->flags ^ next->flags) & SEC_READONLY) != 0)
3054 {
3055 if (((next->flags ^ s->flags) & SEC_READONLY) != 0)
3056 best = prev;
3057 }
3058 else if (((prev->flags ^ next->flags) & SEC_CODE) != 0)
3059 {
3060 if (((next->flags ^ s->flags) & SEC_CODE) != 0)
3061 best = prev;
3062 }
3063 else
3064 {
3065 /* Flags we care about are the same. Prefer the following
3066 section if that will result in a positive valued sym. */
3067 if (addr < next->vma)
3068 best = prev;
3069 }
3070
051d833a
AM
3071 return best;
3072}
3073
74541ad4 3074/* Convert symbols in excluded output sections to use a kept section. */
1e035701
AM
3075
3076static bfd_boolean
3077fix_syms (struct bfd_link_hash_entry *h, void *data)
3078{
3079 bfd *obfd = (bfd *) data;
3080
1e035701
AM
3081 if (h->type == bfd_link_hash_defined
3082 || h->type == bfd_link_hash_defweak)
3083 {
3084 asection *s = h->u.def.section;
3085 if (s != NULL
3086 && s->output_section != NULL
3087 && (s->output_section->flags & SEC_EXCLUDE) != 0
3088 && bfd_section_removed_from_list (obfd, s->output_section))
3089 {
051d833a 3090 asection *op;
720194ed
AM
3091
3092 h->u.def.value += s->output_offset + s->output_section->vma;
051d833a 3093 op = _bfd_nearby_section (obfd, s->output_section, h->u.def.value);
74541ad4
AM
3094 h->u.def.value -= op->vma;
3095 h->u.def.section = op;
1e035701
AM
3096 }
3097 }
3098
3099 return TRUE;
3100}
3101
3102void
3103_bfd_fix_excluded_sec_syms (bfd *obfd, struct bfd_link_info *info)
3104{
3105 bfd_link_hash_traverse (info->hash, fix_syms, obfd);
3106}
3023e3f6
RS
3107
3108/*
3109FUNCTION
3110 bfd_generic_define_common_symbol
3111
3112SYNOPSIS
3113 bfd_boolean bfd_generic_define_common_symbol
3114 (bfd *output_bfd, struct bfd_link_info *info,
3115 struct bfd_link_hash_entry *h);
3116
3117DESCRIPTION
3118 Convert common symbol @var{h} into a defined symbol.
3119 Return TRUE on success and FALSE on failure.
3120
3121.#define bfd_define_common_symbol(output_bfd, info, h) \
3122. BFD_SEND (output_bfd, _bfd_define_common_symbol, (output_bfd, info, h))
3123.
3124*/
3125
3126bfd_boolean
3127bfd_generic_define_common_symbol (bfd *output_bfd,
3128 struct bfd_link_info *info ATTRIBUTE_UNUSED,
3129 struct bfd_link_hash_entry *h)
3130{
3131 unsigned int power_of_two;
3132 bfd_vma alignment, size;
3133 asection *section;
3134
3135 BFD_ASSERT (h != NULL && h->type == bfd_link_hash_common);
3136
3137 size = h->u.c.size;
3138 power_of_two = h->u.c.p->alignment_power;
3139 section = h->u.c.p->section;
3140
3141 /* Increase the size of the section to align the common symbol.
3142 The alignment must be a power of two. */
3143 alignment = bfd_octets_per_byte (output_bfd) << power_of_two;
3144 BFD_ASSERT (alignment != 0 && (alignment & -alignment) == alignment);
3145 section->size += alignment - 1;
3146 section->size &= -alignment;
3147
3148 /* Adjust the section's overall alignment if necessary. */
3149 if (power_of_two > section->alignment_power)
3150 section->alignment_power = power_of_two;
3151
3152 /* Change the symbol from common to defined. */
3153 h->type = bfd_link_hash_defined;
3154 h->u.def.section = section;
3155 h->u.def.value = section->size;
3156
3157 /* Increase the size of the section. */
3158 section->size += size;
3159
3160 /* Make sure the section is allocated in memory, and make sure that
3161 it is no longer a common section. */
3162 section->flags |= SEC_ALLOC;
3163 section->flags &= ~SEC_IS_COMMON;
3164 return TRUE;
3165}
09e2aba4
DK
3166
3167/*
3168FUNCTION
68ffbac6 3169 bfd_find_version_for_sym
09e2aba4
DK
3170
3171SYNOPSIS
3172 struct bfd_elf_version_tree * bfd_find_version_for_sym
3173 (struct bfd_elf_version_tree *verdefs,
3174 const char *sym_name, bfd_boolean *hide);
3175
3176DESCRIPTION
3177 Search an elf version script tree for symbol versioning
3178 info and export / don't-export status for a given symbol.
3179 Return non-NULL on success and NULL on failure; also sets
3180 the output @samp{hide} boolean parameter.
3181
3182*/
3183
3184struct bfd_elf_version_tree *
3185bfd_find_version_for_sym (struct bfd_elf_version_tree *verdefs,
78a03297
AM
3186 const char *sym_name,
3187 bfd_boolean *hide)
09e2aba4
DK
3188{
3189 struct bfd_elf_version_tree *t;
3190 struct bfd_elf_version_tree *local_ver, *global_ver, *exist_ver;
78a03297 3191 struct bfd_elf_version_tree *star_local_ver, *star_global_ver;
09e2aba4
DK
3192
3193 local_ver = NULL;
3194 global_ver = NULL;
78a03297
AM
3195 star_local_ver = NULL;
3196 star_global_ver = NULL;
09e2aba4
DK
3197 exist_ver = NULL;
3198 for (t = verdefs; t != NULL; t = t->next)
3199 {
3200 if (t->globals.list != NULL)
3201 {
3202 struct bfd_elf_version_expr *d = NULL;
3203
3204 while ((d = (*t->match) (&t->globals, d, sym_name)) != NULL)
3205 {
78a03297
AM
3206 if (d->literal || strcmp (d->pattern, "*") != 0)
3207 global_ver = t;
3208 else
3209 star_global_ver = t;
09e2aba4
DK
3210 if (d->symver)
3211 exist_ver = t;
3212 d->script = 1;
3213 /* If the match is a wildcard pattern, keep looking for
3214 a more explicit, perhaps even local, match. */
3215 if (d->literal)
0666b2c3 3216 break;
09e2aba4
DK
3217 }
3218
3219 if (d != NULL)
3220 break;
3221 }
3222
3223 if (t->locals.list != NULL)
3224 {
3225 struct bfd_elf_version_expr *d = NULL;
3226
3227 while ((d = (*t->match) (&t->locals, d, sym_name)) != NULL)
3228 {
78a03297
AM
3229 if (d->literal || strcmp (d->pattern, "*") != 0)
3230 local_ver = t;
3231 else
3232 star_local_ver = t;
09e2aba4
DK
3233 /* If the match is a wildcard pattern, keep looking for
3234 a more explicit, perhaps even global, match. */
3235 if (d->literal)
3236 {
3237 /* An exact match overrides a global wildcard. */
3238 global_ver = NULL;
78a03297 3239 star_global_ver = NULL;
09e2aba4
DK
3240 break;
3241 }
3242 }
3243
3244 if (d != NULL)
3245 break;
3246 }
3247 }
3248
78a03297
AM
3249 if (global_ver == NULL && local_ver == NULL)
3250 global_ver = star_global_ver;
3251
09e2aba4
DK
3252 if (global_ver != NULL)
3253 {
3254 /* If we already have a versioned symbol that matches the
3255 node for this symbol, then we don't want to create a
3256 duplicate from the unversioned symbol. Instead hide the
3257 unversioned symbol. */
3258 *hide = exist_ver == global_ver;
3259 return global_ver;
3260 }
3261
78a03297
AM
3262 if (local_ver == NULL)
3263 local_ver = star_local_ver;
3264
09e2aba4
DK
3265 if (local_ver != NULL)
3266 {
3267 *hide = TRUE;
3268 return local_ver;
3269 }
3270
3271 return NULL;
3272}
fd91d419
L
3273
3274/*
3275FUNCTION
3276 bfd_hide_sym_by_version
3277
3278SYNOPSIS
3279 bfd_boolean bfd_hide_sym_by_version
3280 (struct bfd_elf_version_tree *verdefs, const char *sym_name);
3281
3282DESCRIPTION
3283 Search an elf version script tree for symbol versioning
3284 info for a given symbol. Return TRUE if the symbol is hidden.
3285
3286*/
3287
3288bfd_boolean
3289bfd_hide_sym_by_version (struct bfd_elf_version_tree *verdefs,
3290 const char *sym_name)
3291{
3292 bfd_boolean hidden = FALSE;
3293 bfd_find_version_for_sym (verdefs, sym_name, &hidden);
3294 return hidden;
3295}
This page took 0.966447 seconds and 4 git commands to generate.