* elf-bfd.h (struct elf_link_local_dynamic_entry): New.
[deliverable/binutils-gdb.git] / bfd / elf-bfd.h
CommitLineData
252b5132 1/* BFD back-end data structures for ELF files.
6c8cb66e
MM
2 Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999 Free Software
3 Foundation, Inc.
252b5132
RH
4 Written by Cygnus Support.
5
6This file is part of BFD, the Binary File Descriptor library.
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
20Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21
22#ifndef _LIBELF_H_
23#define _LIBELF_H_ 1
24
25#include "elf/common.h"
26#include "elf/internal.h"
27#include "elf/external.h"
28#include "bfdlink.h"
29
30/* If size isn't specified as 64 or 32, NAME macro should fail. */
31#ifndef NAME
32#if ARCH_SIZE==64
33#define NAME(x,y) CAT4(x,64,_,y)
34#endif
35#if ARCH_SIZE==32
36#define NAME(x,y) CAT4(x,32,_,y)
37#endif
38#endif
39
40#ifndef NAME
41#define NAME(x,y) CAT4(x,NOSIZE,_,y)
42#endif
43
44#define ElfNAME(X) NAME(Elf,X)
45#define elfNAME(X) NAME(elf,X)
46
47/* Information held for an ELF symbol. The first field is the
48 corresponding asymbol. Every symbol is an ELF file is actually a
49 pointer to this structure, although it is often handled as a
50 pointer to an asymbol. */
51
52typedef struct
53{
54 /* The BFD symbol. */
55 asymbol symbol;
56 /* ELF symbol information. */
57 Elf_Internal_Sym internal_elf_sym;
58 /* Backend specific information. */
59 union
60 {
61 unsigned int hppa_arg_reloc;
62 PTR mips_extr;
63 PTR any;
64 }
65 tc_data;
66
67 /* Version information. This is from an Elf_Internal_Versym
68 structure in a SHT_GNU_versym section. It is zero if there is no
69 version information. */
70 unsigned short version;
71
72} elf_symbol_type;
73\f
74/* ELF linker hash table entries. */
75
76struct elf_link_hash_entry
77{
78 struct bfd_link_hash_entry root;
79
80 /* Symbol index in output file. This is initialized to -1. It is
81 set to -2 if the symbol is used by a reloc. */
82 long indx;
83
84 /* Symbol size. */
85 bfd_size_type size;
86
87 /* Symbol index as a dynamic symbol. Initialized to -1, and remains
88 -1 if this is not a dynamic symbol. */
30b30c21
RH
89 /* ??? Note that this is consistently used as a synonym for tests
90 against whether we can perform various simplifying transformations
91 to the code. (E.g. changing a pc-relative jump to a PLT entry
92 into a pc-relative jump to the target function.) That test, which
93 is often relatively complex, and someplaces wrong or incomplete,
94 should really be replaced by a predicate in elflink.c.
95
96 End result: this field -1 does not indicate that the symbol is
97 not in the dynamic symbol table, but rather that the symbol is
98 not visible outside this DSO. */
252b5132
RH
99 long dynindx;
100
101 /* String table index in .dynstr if this is a dynamic symbol. */
102 unsigned long dynstr_index;
103
104 /* If this is a weak defined symbol from a dynamic object, this
105 field points to a defined symbol with the same value, if there is
106 one. Otherwise it is NULL. */
107 struct elf_link_hash_entry *weakdef;
108
109 /* If this symbol requires an entry in the global offset table, the
110 processor specific backend uses this field to track usage and
111 final offset. We use a union and two names primarily to document
112 the intent of any particular piece of code. The field should be
113 used as a count until size_dynamic_sections, at which point the
114 contents of the .got is fixed. Afterward, if this field is -1,
115 then the symbol does not require a global offset table entry. */
116 union
117 {
118 bfd_signed_vma refcount;
119 bfd_vma offset;
120 } got;
121
122 /* Same, but tracks a procedure linkage table entry. */
123 union
124 {
125 bfd_signed_vma refcount;
126 bfd_vma offset;
127 } plt;
128
129 /* If this symbol is used in the linker created sections, the processor
130 specific backend uses this field to map the field into the offset
131 from the beginning of the section. */
132 struct elf_linker_section_pointers *linker_section_pointer;
133
134 /* Version information. */
135 union
136 {
137 /* This field is used for a symbol which is not defined in a
138 regular object. It points to the version information read in
139 from the dynamic object. */
140 Elf_Internal_Verdef *verdef;
141 /* This field is used for a symbol which is defined in a regular
142 object. It is set up in size_dynamic_sections. It points to
143 the version information we should write out for this symbol. */
144 struct bfd_elf_version_tree *vertree;
145 } verinfo;
146
147 /* Virtual table entry use information. This array is nominally of size
148 size/sizeof(target_void_pointer), though we have to be able to assume
149 and track a size while the symbol is still undefined. It is indexed
150 via offset/sizeof(target_void_pointer). */
151 size_t vtable_entries_size;
152 boolean *vtable_entries_used;
153
154 /* Virtual table derivation info. */
155 struct elf_link_hash_entry *vtable_parent;
156
157 /* Symbol type (STT_NOTYPE, STT_OBJECT, etc.). */
158 char type;
159
160 /* Symbol st_other value. */
161 unsigned char other;
162
163 /* Hash value of the name computed using the ELF hash function. */
164 unsigned long elf_hash_value;
165
166 /* Some flags; legal values follow. */
167 unsigned short elf_link_hash_flags;
168 /* Symbol is referenced by a non-shared object. */
169#define ELF_LINK_HASH_REF_REGULAR 01
170 /* Symbol is defined by a non-shared object. */
171#define ELF_LINK_HASH_DEF_REGULAR 02
172 /* Symbol is referenced by a shared object. */
173#define ELF_LINK_HASH_REF_DYNAMIC 04
174 /* Symbol is defined by a shared object. */
175#define ELF_LINK_HASH_DEF_DYNAMIC 010
176 /* Symbol has a non-weak reference from a non-shared object. */
177#define ELF_LINK_HASH_REF_REGULAR_NONWEAK 020
178 /* Dynamic symbol has been adjustd. */
179#define ELF_LINK_HASH_DYNAMIC_ADJUSTED 040
180 /* Symbol needs a copy reloc. */
181#define ELF_LINK_HASH_NEEDS_COPY 0100
182 /* Symbol needs a procedure linkage table entry. */
183#define ELF_LINK_HASH_NEEDS_PLT 0200
184 /* Symbol appears in a non-ELF input file. */
185#define ELF_LINK_NON_ELF 0400
186 /* Symbol should be marked as hidden in the version information. */
187#define ELF_LINK_HIDDEN 01000
188 /* Symbol was forced to local scope due to a version script file. */
189#define ELF_LINK_FORCED_LOCAL 02000
190 /* Symbol was marked during garbage collection. */
191#define ELF_LINK_HASH_MARK 04000
192};
193
30b30c21
RH
194/* Records local symbols to be emitted in the dynamic symbol table. */
195
196struct elf_link_local_dynamic_entry
197{
198 struct elf_link_local_dynamic_entry *next;
199
200 /* The input bfd this symbol came from. */
201 bfd *input_bfd;
202
203 /* The index of the local symbol being copied. */
204 long input_indx;
205
206 /* The index in the outgoing dynamic symbol table. */
207 long dynindx;
208
209 /* A copy of the input symbol. */
210 Elf_Internal_Sym isym;
211};
212
252b5132
RH
213/* ELF linker hash table. */
214
215struct elf_link_hash_table
216{
217 struct bfd_link_hash_table root;
218 /* Whether we have created the special dynamic sections required
219 when linking against or generating a shared object. */
220 boolean dynamic_sections_created;
221 /* The BFD used to hold special sections created by the linker.
222 This will be the first BFD found which requires these sections to
223 be created. */
224 bfd *dynobj;
225 /* The number of symbols found in the link which must be put into
226 the .dynsym section. */
227 bfd_size_type dynsymcount;
228 /* The string table of dynamic symbols, which becomes the .dynstr
229 section. */
230 struct bfd_strtab_hash *dynstr;
231 /* The number of buckets in the hash table in the .hash section.
232 This is based on the number of dynamic symbols. */
233 bfd_size_type bucketcount;
234 /* A linked list of DT_NEEDED names found in dynamic objects
235 included in the link. */
236 struct bfd_link_needed_list *needed;
237 /* The _GLOBAL_OFFSET_TABLE_ symbol. */
238 struct elf_link_hash_entry *hgot;
239 /* A pointer to information used to link stabs in sections. */
240 PTR stab_info;
30b30c21
RH
241 /* A linked list of local symbols to be added to .dynsym. */
242 struct elf_link_local_dynamic_entry *dynlocal;
252b5132
RH
243};
244
245/* Look up an entry in an ELF linker hash table. */
246
247#define elf_link_hash_lookup(table, string, create, copy, follow) \
248 ((struct elf_link_hash_entry *) \
249 bfd_link_hash_lookup (&(table)->root, (string), (create), \
250 (copy), (follow)))
251
252/* Traverse an ELF linker hash table. */
253
254#define elf_link_hash_traverse(table, func, info) \
255 (bfd_link_hash_traverse \
256 (&(table)->root, \
257 (boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func), \
258 (info)))
259
260/* Get the ELF linker hash table from a link_info structure. */
261
262#define elf_hash_table(p) ((struct elf_link_hash_table *) ((p)->hash))
263\f
264/* Constant information held for an ELF backend. */
265
266struct elf_size_info {
267 unsigned char sizeof_ehdr, sizeof_phdr, sizeof_shdr;
268 unsigned char sizeof_rel, sizeof_rela, sizeof_sym, sizeof_dyn, sizeof_note;
269
c7ac6ff8
MM
270 /* The size of entries in the .hash section. */
271 unsigned char sizeof_hash_entry;
272
273 /* The number of internal relocations to allocate per external
274 relocation entry. */
275 unsigned char int_rels_per_ext_rel;
276
252b5132
RH
277 unsigned char arch_size, file_align;
278 unsigned char elfclass, ev_current;
279 int (*write_out_phdrs) PARAMS ((bfd *, const Elf_Internal_Phdr *, int));
280 boolean (*write_shdrs_and_ehdr) PARAMS ((bfd *));
281 void (*write_relocs) PARAMS ((bfd *, asection *, PTR));
282 void (*swap_symbol_out) PARAMS ((bfd *, const Elf_Internal_Sym *, PTR));
283 boolean (*slurp_reloc_table)
284 PARAMS ((bfd *, asection *, asymbol **, boolean));
285 long (*slurp_symbol_table) PARAMS ((bfd *, asymbol **, boolean));
286 void (*swap_dyn_in) PARAMS ((bfd *, const PTR, Elf_Internal_Dyn *));
c7ac6ff8
MM
287 void (*swap_dyn_out) PARAMS ((bfd *, const Elf_Internal_Dyn *, PTR));
288
289 /* This function, if defined, is called to swap in a REL
290 relocation. If an external relocation corresponds to more than
291 one internal relocation, then all relocations are swapped in at
292 once. */
293 void (*swap_reloc_in)
294 PARAMS ((bfd *, const bfd_byte *, Elf_Internal_Rel *));
295
296 /* This function, if defined, is called to swap out a REL
297 relocation. */
298 void (*swap_reloc_out)
299 PARAMS ((bfd *, const Elf_Internal_Rel *, bfd_byte *));
300
301 /* This function, if defined, is called to swap in a RELA
302 relocation. If an external relocation corresponds to more than
303 one internal relocation, then all relocations are swapped in at
304 once. */
305 void (*swap_reloca_in)
306 PARAMS ((bfd *, const bfd_byte *, Elf_Internal_Rela *));
307
308 /* This function, if defined, is called to swap out a RELA
309 relocation. */
310 void (*swap_reloca_out)
311 PARAMS ((bfd *, const Elf_Internal_Rela *, bfd_byte *));
312
252b5132
RH
313};
314
315#define elf_symbol_from(ABFD,S) \
316 (((S)->the_bfd->xvec->flavour == bfd_target_elf_flavour \
317 && (S)->the_bfd->tdata.elf_obj_data != 0) \
318 ? (elf_symbol_type *) (S) \
319 : 0)
320
321struct elf_backend_data
322{
252b5132
RH
323 /* The architecture for this backend. */
324 enum bfd_architecture arch;
325
326 /* The ELF machine code (EM_xxxx) for this backend. */
327 int elf_machine_code;
328
329 /* The maximum page size for this backend. */
330 bfd_vma maxpagesize;
331
332 /* This is true if the linker should act like collect and gather
333 global constructors and destructors by name. This is true for
334 MIPS ELF because the Irix 5 tools can not handle the .init
335 section. */
336 boolean collect;
337
338 /* This is true if the linker should ignore changes to the type of a
339 symbol. This is true for MIPS ELF because some Irix 5 objects
340 record undefined functions as STT_OBJECT although the definitions
341 are STT_FUNC. */
342 boolean type_change_ok;
343
344 /* A function to translate an ELF RELA relocation to a BFD arelent
345 structure. */
346 void (*elf_info_to_howto) PARAMS ((bfd *, arelent *,
347 Elf_Internal_Rela *));
348
349 /* A function to translate an ELF REL relocation to a BFD arelent
350 structure. */
351 void (*elf_info_to_howto_rel) PARAMS ((bfd *, arelent *,
352 Elf_Internal_Rel *));
353
354 /* A function to determine whether a symbol is global when
355 partitioning the symbol table into local and global symbols.
356 This should be NULL for most targets, in which case the correct
357 thing will be done. MIPS ELF, at least on the Irix 5, has
358 special requirements. */
359 boolean (*elf_backend_sym_is_global) PARAMS ((bfd *, asymbol *));
360
361 /* The remaining functions are hooks which are called only if they
362 are not NULL. */
363
364 /* A function to permit a backend specific check on whether a
365 particular BFD format is relevant for an object file, and to
366 permit the backend to set any global information it wishes. When
367 this is called elf_elfheader is set, but anything else should be
368 used with caution. If this returns false, the check_format
369 routine will return a bfd_error_wrong_format error. */
370 boolean (*elf_backend_object_p) PARAMS ((bfd *));
371
372 /* A function to do additional symbol processing when reading the
373 ELF symbol table. This is where any processor-specific special
374 section indices are handled. */
375 void (*elf_backend_symbol_processing) PARAMS ((bfd *, asymbol *));
376
377 /* A function to do additional symbol processing after reading the
378 entire ELF symbol table. */
379 boolean (*elf_backend_symbol_table_processing) PARAMS ((bfd *,
380 elf_symbol_type *,
381 unsigned int));
382
383 /* A function to set the type of the info field. Processor-specific
384 types should be handled here. */
385 int (*elf_backend_get_symbol_type) PARAMS (( Elf_Internal_Sym *, int));
386
387 /* A function to do additional processing on the ELF section header
388 just before writing it out. This is used to set the flags and
389 type fields for some sections, or to actually write out data for
390 unusual sections. */
391 boolean (*elf_backend_section_processing) PARAMS ((bfd *,
392 Elf32_Internal_Shdr *));
393
394 /* A function to handle unusual section types when creating BFD
395 sections from ELF sections. */
396 boolean (*elf_backend_section_from_shdr) PARAMS ((bfd *,
397 Elf32_Internal_Shdr *,
398 char *));
399
400 /* A function to set up the ELF section header for a BFD section in
401 preparation for writing it out. This is where the flags and type
402 fields are set for unusual sections. */
403 boolean (*elf_backend_fake_sections) PARAMS ((bfd *, Elf32_Internal_Shdr *,
404 asection *));
405
406 /* A function to get the ELF section index for a BFD section. If
407 this returns true, the section was found. If it is a normal ELF
408 section, *RETVAL should be left unchanged. If it is not a normal
409 ELF section *RETVAL should be set to the SHN_xxxx index. */
410 boolean (*elf_backend_section_from_bfd_section)
411 PARAMS ((bfd *, Elf32_Internal_Shdr *, asection *, int *retval));
412
413 /* If this field is not NULL, it is called by the add_symbols phase
414 of a link just before adding a symbol to the global linker hash
415 table. It may modify any of the fields as it wishes. If *NAME
416 is set to NULL, the symbol will be skipped rather than being
417 added to the hash table. This function is responsible for
418 handling all processor dependent symbol bindings and section
419 indices, and must set at least *FLAGS and *SEC for each processor
420 dependent case; failure to do so will cause a link error. */
421 boolean (*elf_add_symbol_hook)
422 PARAMS ((bfd *abfd, struct bfd_link_info *info,
423 const Elf_Internal_Sym *, const char **name,
424 flagword *flags, asection **sec, bfd_vma *value));
425
426 /* If this field is not NULL, it is called by the elf_link_output_sym
427 phase of a link for each symbol which will appear in the object file. */
428 boolean (*elf_backend_link_output_symbol_hook)
429 PARAMS ((bfd *, struct bfd_link_info *info, const char *,
430 Elf_Internal_Sym *, asection *));
431
432 /* The CREATE_DYNAMIC_SECTIONS function is called by the ELF backend
433 linker the first time it encounters a dynamic object in the link.
434 This function must create any sections required for dynamic
435 linking. The ABFD argument is a dynamic object. The .interp,
436 .dynamic, .dynsym, .dynstr, and .hash functions have already been
437 created, and this function may modify the section flags if
438 desired. This function will normally create the .got and .plt
439 sections, but different backends have different requirements. */
440 boolean (*elf_backend_create_dynamic_sections)
441 PARAMS ((bfd *abfd, struct bfd_link_info *info));
442
443 /* The CHECK_RELOCS function is called by the add_symbols phase of
444 the ELF backend linker. It is called once for each section with
445 relocs of an object file, just after the symbols for the object
446 file have been added to the global linker hash table. The
447 function must look through the relocs and do any special handling
448 required. This generally means allocating space in the global
449 offset table, and perhaps allocating space for a reloc. The
450 relocs are always passed as Rela structures; if the section
451 actually uses Rel structures, the r_addend field will always be
452 zero. */
453 boolean (*check_relocs)
454 PARAMS ((bfd *abfd, struct bfd_link_info *info, asection *o,
455 const Elf_Internal_Rela *relocs));
456
457 /* The ADJUST_DYNAMIC_SYMBOL function is called by the ELF backend
458 linker for every symbol which is defined by a dynamic object and
459 referenced by a regular object. This is called after all the
460 input files have been seen, but before the SIZE_DYNAMIC_SECTIONS
461 function has been called. The hash table entry should be
462 bfd_link_hash_defined ore bfd_link_hash_defweak, and it should be
463 defined in a section from a dynamic object. Dynamic object
464 sections are not included in the final link, and this function is
465 responsible for changing the value to something which the rest of
466 the link can deal with. This will normally involve adding an
467 entry to the .plt or .got or some such section, and setting the
468 symbol to point to that. */
469 boolean (*elf_backend_adjust_dynamic_symbol)
470 PARAMS ((struct bfd_link_info *info, struct elf_link_hash_entry *h));
471
472 /* The ALWAYS_SIZE_SECTIONS function is called by the backend linker
473 after all the linker input files have been seen but before the
474 section sizes have been set. This is called after
475 ADJUST_DYNAMIC_SYMBOL, but before SIZE_DYNAMIC_SECTIONS. */
476 boolean (*elf_backend_always_size_sections)
477 PARAMS ((bfd *output_bfd, struct bfd_link_info *info));
478
479 /* The SIZE_DYNAMIC_SECTIONS function is called by the ELF backend
480 linker after all the linker input files have been seen but before
481 the sections sizes have been set. This is called after
482 ADJUST_DYNAMIC_SYMBOL has been called on all appropriate symbols.
483 It is only called when linking against a dynamic object. It must
484 set the sizes of the dynamic sections, and may fill in their
485 contents as well. The generic ELF linker can handle the .dynsym,
486 .dynstr and .hash sections. This function must handle the
487 .interp section and any sections created by the
488 CREATE_DYNAMIC_SECTIONS entry point. */
489 boolean (*elf_backend_size_dynamic_sections)
490 PARAMS ((bfd *output_bfd, struct bfd_link_info *info));
491
492 /* The RELOCATE_SECTION function is called by the ELF backend linker
493 to handle the relocations for a section.
494
495 The relocs are always passed as Rela structures; if the section
496 actually uses Rel structures, the r_addend field will always be
497 zero.
498
499 This function is responsible for adjust the section contents as
500 necessary, and (if using Rela relocs and generating a
501 relocateable output file) adjusting the reloc addend as
502 necessary.
503
504 This function does not have to worry about setting the reloc
505 address or the reloc symbol index.
506
507 LOCAL_SYMS is a pointer to the swapped in local symbols.
508
509 LOCAL_SECTIONS is an array giving the section in the input file
510 corresponding to the st_shndx field of each local symbol.
511
512 The global hash table entry for the global symbols can be found
513 via elf_sym_hashes (input_bfd).
514
515 When generating relocateable output, this function must handle
516 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
517 going to be the section symbol corresponding to the output
518 section, which means that the addend must be adjusted
519 accordingly. */
520 boolean (*elf_backend_relocate_section)
521 PARAMS ((bfd *output_bfd, struct bfd_link_info *info,
522 bfd *input_bfd, asection *input_section, bfd_byte *contents,
523 Elf_Internal_Rela *relocs, Elf_Internal_Sym *local_syms,
524 asection **local_sections));
525
526 /* The FINISH_DYNAMIC_SYMBOL function is called by the ELF backend
527 linker just before it writes a symbol out to the .dynsym section.
528 The processor backend may make any required adjustment to the
529 symbol. It may also take the opportunity to set contents of the
530 dynamic sections. Note that FINISH_DYNAMIC_SYMBOL is called on
531 all .dynsym symbols, while ADJUST_DYNAMIC_SYMBOL is only called
532 on those symbols which are defined by a dynamic object. */
533 boolean (*elf_backend_finish_dynamic_symbol)
534 PARAMS ((bfd *output_bfd, struct bfd_link_info *info,
535 struct elf_link_hash_entry *h, Elf_Internal_Sym *sym));
536
537 /* The FINISH_DYNAMIC_SECTIONS function is called by the ELF backend
538 linker just before it writes all the dynamic sections out to the
539 output file. The FINISH_DYNAMIC_SYMBOL will have been called on
540 all dynamic symbols. */
541 boolean (*elf_backend_finish_dynamic_sections)
542 PARAMS ((bfd *output_bfd, struct bfd_link_info *info));
543
544 /* A function to do any beginning processing needed for the ELF file
545 before building the ELF headers and computing file positions. */
546 void (*elf_backend_begin_write_processing)
547 PARAMS ((bfd *, struct bfd_link_info *));
548
549 /* A function to do any final processing needed for the ELF file
550 before writing it out. The LINKER argument is true if this BFD
551 was created by the ELF backend linker. */
552 void (*elf_backend_final_write_processing)
553 PARAMS ((bfd *, boolean linker));
554
555 /* This function is called by get_program_header_size. It should
556 return the number of additional program segments which this BFD
557 will need. It should return -1 on error. */
558 int (*elf_backend_additional_program_headers) PARAMS ((bfd *));
559
560 /* This function is called to modify an existing segment map in a
561 backend specific fashion. */
562 boolean (*elf_backend_modify_segment_map) PARAMS ((bfd *));
563
564 /* This function is called during section gc to discover the section a
565 particular relocation refers to. It need not be defined for hosts
566 that have no queer relocation types. */
567 asection * (*gc_mark_hook)
568 PARAMS ((bfd *abfd, struct bfd_link_info *, Elf_Internal_Rela *,
569 struct elf_link_hash_entry *h, Elf_Internal_Sym *));
570
571 /* This function, if defined, is called during the sweep phase of gc
572 in order that a backend might update any data structures it might
573 be maintaining. */
574 boolean (*gc_sweep_hook)
575 PARAMS ((bfd *abfd, struct bfd_link_info *info, asection *o,
576 const Elf_Internal_Rela *relocs));
577
e6c51ed4
NC
578 /* This function, if defined, is called after the ELF headers have
579 been created. This allows for things like the OS and ABI versions
580 to be changed. */
581 void (*elf_backend_post_process_headers)
582 PARAMS ((bfd *, struct bfd_link_info *));
583
252b5132
RH
584 /* The swapping table to use when dealing with ECOFF information.
585 Used for the MIPS ELF .mdebug section. */
586 const struct ecoff_debug_swap *elf_backend_ecoff_debug_swap;
587
588 /* Alternate EM_xxxx machine codes for this backend. */
589 int elf_machine_alt1;
590 int elf_machine_alt2;
591
592 const struct elf_size_info *s;
593
594 /* offset of the _GLOBAL_OFFSET_TABLE_ symbol from the start of the
595 .got section */
596 bfd_vma got_symbol_offset;
597
598 /* The size in bytes of the headers for the GOT and PLT. This includes
599 the so-called reserved entries on some systems. */
600 bfd_vma got_header_size;
601 bfd_vma plt_header_size;
602
bf572ba0
MM
603 /* Whether the backend may use REL relocations. (Some backends use
604 both REL and RELA relocations, and this flag is set for those
605 backends.) */
606 unsigned may_use_rel_p : 1;
607
608 /* Whether the backend may use RELA relocations. (Some backends use
609 both REL and RELA relocations, and this flag is set for those
610 backends.) */
611 unsigned may_use_rela_p : 1;
612
613 /* Whether the default relocation type is RELA. If a backend with
614 this flag set wants REL relocations for a particular section,
615 it must note that explicitly. Similarly, if this flag is clear,
616 and the backend wants RELA relocations for a particular
617 section. */
618 unsigned default_use_rela_p : 1;
619
252b5132
RH
620 unsigned want_got_plt : 1;
621 unsigned plt_readonly : 1;
622 unsigned want_plt_sym : 1;
623 unsigned plt_not_loaded : 1;
624 unsigned plt_alignment : 4;
625 unsigned can_gc_sections : 1;
626};
627
628/* Information stored for each BFD section in an ELF file. This
629 structure is allocated by elf_new_section_hook. */
630
631struct bfd_elf_section_data
632{
633 /* The ELF header for this section. */
634 Elf_Internal_Shdr this_hdr;
635 /* The ELF header for the reloc section associated with this
636 section, if any. */
637 Elf_Internal_Shdr rel_hdr;
638 /* If there is a second reloc section associated with this section,
639 as can happen on Irix 6, this field points to the header. */
640 Elf_Internal_Shdr *rel_hdr2;
23bc299b
MM
641 /* The number of relocations currently assigned to REL_HDR. */
642 unsigned int rel_count;
643 /* The number of relocations currently assigned to REL_HDR2. */
644 unsigned int rel_count2;
252b5132
RH
645 /* The ELF section number of this section. Only used for an output
646 file. */
647 int this_idx;
23bc299b
MM
648 /* The ELF section number of the reloc section indicated by
649 REL_HDR if any. Only used for an output file. */
252b5132 650 int rel_idx;
23bc299b
MM
651 /* The ELF section number of the reloc section indicated by
652 REL_HDR2 if any. Only used for an output file. */
653 int rel_idx2;
252b5132
RH
654 /* Used by the backend linker to store the symbol hash table entries
655 associated with relocs against global symbols. */
656 struct elf_link_hash_entry **rel_hashes;
657 /* A pointer to the swapped relocs. If the section uses REL relocs,
658 rather than RELA, all the r_addend fields will be zero. This
659 pointer may be NULL. It is used by the backend linker. */
660 Elf_Internal_Rela *relocs;
661 /* Used by the backend linker when generating a shared library to
662 record the dynamic symbol index for a section symbol
75945f9f
ILT
663 corresponding to this section. A value of 0 means that there is
664 no dynamic symbol for this section. */
252b5132
RH
665 long dynindx;
666 /* A pointer used for .stab linking optimizations. */
667 PTR stab_info;
668 /* A pointer available for the processor specific ELF backend. */
669 PTR tdata;
bf572ba0
MM
670 /* Nonzero if this section uses RELA relocations, rather than REL. */
671 unsigned int use_rela_p:1;
252b5132
RH
672};
673
674#define elf_section_data(sec) ((struct bfd_elf_section_data*)sec->used_by_bfd)
675
676#define get_elf_backend_data(abfd) \
677 ((struct elf_backend_data *) (abfd)->xvec->backend_data)
678
679/* Enumeration to specify the special section. */
680typedef enum elf_linker_section_enum
681{
682 LINKER_SECTION_UNKNOWN, /* not used */
683 LINKER_SECTION_GOT, /* .got section for global offset pointers */
684 LINKER_SECTION_PLT, /* .plt section for generated procedure stubs */
685 LINKER_SECTION_SDATA, /* .sdata/.sbss section for PowerPC */
686 LINKER_SECTION_SDATA2, /* .sdata2/.sbss2 section for PowerPC */
687 LINKER_SECTION_MAX /* # of linker sections */
688} elf_linker_section_enum_t;
689
690/* Sections created by the linker. */
691
692typedef struct elf_linker_section
693{
694 char *name; /* name of the section */
695 char *rel_name; /* name of the associated .rel{,a}. section */
696 char *bss_name; /* name of a related .bss section */
697 char *sym_name; /* name of symbol to reference this section */
698 asection *section; /* pointer to the section */
699 asection *bss_section; /* pointer to the bss section associated with this */
700 asection *rel_section; /* pointer to the relocations needed for this section */
701 struct elf_link_hash_entry *sym_hash; /* pointer to the created symbol hash value */
702 bfd_vma initial_size; /* initial size before any linker generated allocations */
703 bfd_vma sym_offset; /* offset of symbol from beginning of section */
704 bfd_vma hole_size; /* size of reserved address hole in allocation */
705 bfd_vma hole_offset; /* current offset for the hole */
706 bfd_vma max_hole_offset; /* maximum offset for the hole */
707 elf_linker_section_enum_t which; /* which section this is */
708 boolean hole_written_p; /* whether the hole has been initialized */
709 unsigned int alignment; /* alignment for the section */
710 flagword flags; /* flags to use to create the section */
711} elf_linker_section_t;
712
713/* Linked list of allocated pointer entries. This hangs off of the symbol lists, and
714 provides allows us to return different pointers, based on different addend's. */
715
716typedef struct elf_linker_section_pointers
717{
718 struct elf_linker_section_pointers *next; /* next allocated pointer for this symbol */
719 bfd_vma offset; /* offset of pointer from beginning of section */
720 bfd_signed_vma addend; /* addend used */
721 elf_linker_section_enum_t which; /* which linker section this is */
722 boolean written_address_p; /* whether address was written yet */
723} elf_linker_section_pointers_t;
724
725/* Some private data is stashed away for future use using the tdata pointer
726 in the bfd structure. */
727
728struct elf_obj_tdata
729{
730 Elf_Internal_Ehdr elf_header[1]; /* Actual data, but ref like ptr */
731 Elf_Internal_Shdr **elf_sect_ptr;
732 Elf_Internal_Phdr *phdr;
733 struct elf_segment_map *segment_map;
734 struct bfd_strtab_hash *strtab_ptr;
735 int num_locals;
736 int num_globals;
737 asymbol **section_syms; /* STT_SECTION symbols for each section */
738 Elf_Internal_Shdr symtab_hdr;
739 Elf_Internal_Shdr shstrtab_hdr;
740 Elf_Internal_Shdr strtab_hdr;
741 Elf_Internal_Shdr dynsymtab_hdr;
742 Elf_Internal_Shdr dynstrtab_hdr;
743 Elf_Internal_Shdr dynversym_hdr;
744 Elf_Internal_Shdr dynverref_hdr;
745 Elf_Internal_Shdr dynverdef_hdr;
746 unsigned int symtab_section, shstrtab_section;
747 unsigned int strtab_section, dynsymtab_section;
748 unsigned int dynversym_section, dynverdef_section, dynverref_section;
749 file_ptr next_file_pos;
750#if 0
751 /* we don't need these inside bfd anymore, and I think
752 these weren't used outside bfd. */
753 void *prstatus; /* The raw /proc prstatus structure */
754 void *prpsinfo; /* The raw /proc prpsinfo structure */
755#endif
756 bfd_vma gp; /* The gp value (MIPS only, for now) */
757 unsigned int gp_size; /* The gp size (MIPS only, for now) */
758
759 /* Information grabbed from an elf core file. */
760 int core_signal;
761 int core_pid;
762 int core_lwpid;
763 char* core_program;
764 char* core_command;
765
766 /* This is set to true if the object was created by the backend
767 linker. */
768 boolean linker;
769
770 /* A mapping from external symbols to entries in the linker hash
771 table, used when linking. This is indexed by the symbol index
772 minus the sh_info field of the symbol table header. */
773 struct elf_link_hash_entry **sym_hashes;
774
775 /* A mapping from local symbols to offsets into the global offset
776 table, used when linking. This is indexed by the symbol index.
777 Like for the globals, we use a union and two names primarily to
778 document the intent of any particular piece of code. The field
779 should be used as a count until size_dynamic_sections, at which
780 point the contents of the .got is fixed. Afterward, if an entry
781 is -1, then the symbol does not require a global offset table entry. */
782 union
783 {
784 bfd_signed_vma *refcounts;
785 bfd_vma *offsets;
786 } local_got;
787
788 /* A mapping from local symbols to offsets into the various linker
789 sections added. This is index by the symbol index. */
790 elf_linker_section_pointers_t **linker_section_pointers;
791
792 /* The linker ELF emulation code needs to let the backend ELF linker
793 know what filename should be used for a dynamic object if the
794 dynamic object is found using a search. The emulation code then
795 sometimes needs to know what name was actually used. Until the
796 file has been added to the linker symbol table, this field holds
797 the name the linker wants. After it has been added, it holds the
798 name actually used, which will be the DT_SONAME entry if there is
799 one. */
800 const char *dt_name;
801
802 /* Irix 5 often screws up the symbol table, sorting local symbols
803 after global symbols. This flag is set if the symbol table in
804 this BFD appears to be screwed up. If it is, we ignore the
805 sh_info field in the symbol table header, and always read all the
806 symbols. */
807 boolean bad_symtab;
808
809 /* Records the result of `get_program_header_size'. */
810 bfd_size_type program_header_size;
811
812 /* Used by find_nearest_line entry point. */
813 PTR line_info;
814
815 /* Used by MIPS ELF find_nearest_line entry point. The structure
816 could be included directly in this one, but there's no point to
817 wasting the memory just for the infrequently called
818 find_nearest_line. */
819 struct mips_elf_find_line *find_line_info;
820
821 /* A place to stash dwarf1 info for this bfd. */
822 struct dwarf1_debug *dwarf1_find_line_info;
823
824 /* A place to stash dwarf2 info for this bfd. */
825 struct dwarf2_debug *dwarf2_find_line_info;
826
827 /* An array of stub sections indexed by symbol number, used by the
828 MIPS ELF linker. FIXME: We should figure out some way to only
829 include this field for a MIPS ELF target. */
830 asection **local_stubs;
831
832 /* Used to determine if the e_flags field has been initialized */
833 boolean flags_init;
834
835 /* Number of symbol version definitions we are about to emit. */
836 unsigned int cverdefs;
837
838 /* Number of symbol version references we are about to emit. */
839 unsigned int cverrefs;
840
841 /* Symbol version definitions in external objects. */
842 Elf_Internal_Verdef *verdef;
843
844 /* Symbol version references to external objects. */
845 Elf_Internal_Verneed *verref;
846
847 /* Linker sections that we are interested in. */
848 struct elf_linker_section *linker_section[ (int)LINKER_SECTION_MAX ];
849};
850
851#define elf_tdata(bfd) ((bfd) -> tdata.elf_obj_data)
852#define elf_elfheader(bfd) (elf_tdata(bfd) -> elf_header)
853#define elf_elfsections(bfd) (elf_tdata(bfd) -> elf_sect_ptr)
854#define elf_shstrtab(bfd) (elf_tdata(bfd) -> strtab_ptr)
855#define elf_onesymtab(bfd) (elf_tdata(bfd) -> symtab_section)
856#define elf_dynsymtab(bfd) (elf_tdata(bfd) -> dynsymtab_section)
857#define elf_dynversym(bfd) (elf_tdata(bfd) -> dynversym_section)
858#define elf_dynverdef(bfd) (elf_tdata(bfd) -> dynverdef_section)
859#define elf_dynverref(bfd) (elf_tdata(bfd) -> dynverref_section)
860#define elf_num_locals(bfd) (elf_tdata(bfd) -> num_locals)
861#define elf_num_globals(bfd) (elf_tdata(bfd) -> num_globals)
862#define elf_section_syms(bfd) (elf_tdata(bfd) -> section_syms)
863#define core_prpsinfo(bfd) (elf_tdata(bfd) -> prpsinfo)
864#define core_prstatus(bfd) (elf_tdata(bfd) -> prstatus)
865#define elf_gp(bfd) (elf_tdata(bfd) -> gp)
866#define elf_gp_size(bfd) (elf_tdata(bfd) -> gp_size)
867#define elf_sym_hashes(bfd) (elf_tdata(bfd) -> sym_hashes)
868#define elf_local_got_refcounts(bfd) (elf_tdata(bfd) -> local_got.refcounts)
869#define elf_local_got_offsets(bfd) (elf_tdata(bfd) -> local_got.offsets)
870#define elf_local_ptr_offsets(bfd) (elf_tdata(bfd) -> linker_section_pointers)
871#define elf_dt_name(bfd) (elf_tdata(bfd) -> dt_name)
872#define elf_bad_symtab(bfd) (elf_tdata(bfd) -> bad_symtab)
873#define elf_flags_init(bfd) (elf_tdata(bfd) -> flags_init)
874#define elf_linker_section(bfd,n) (elf_tdata(bfd) -> linker_section[(int)n])
875\f
876extern void _bfd_elf_swap_verdef_in
877 PARAMS ((bfd *, const Elf_External_Verdef *, Elf_Internal_Verdef *));
878extern void _bfd_elf_swap_verdef_out
879 PARAMS ((bfd *, const Elf_Internal_Verdef *, Elf_External_Verdef *));
880extern void _bfd_elf_swap_verdaux_in
881 PARAMS ((bfd *, const Elf_External_Verdaux *, Elf_Internal_Verdaux *));
882extern void _bfd_elf_swap_verdaux_out
883 PARAMS ((bfd *, const Elf_Internal_Verdaux *, Elf_External_Verdaux *));
884extern void _bfd_elf_swap_verneed_in
885 PARAMS ((bfd *, const Elf_External_Verneed *, Elf_Internal_Verneed *));
886extern void _bfd_elf_swap_verneed_out
887 PARAMS ((bfd *, const Elf_Internal_Verneed *, Elf_External_Verneed *));
888extern void _bfd_elf_swap_vernaux_in
889 PARAMS ((bfd *, const Elf_External_Vernaux *, Elf_Internal_Vernaux *));
890extern void _bfd_elf_swap_vernaux_out
891 PARAMS ((bfd *, const Elf_Internal_Vernaux *, Elf_External_Vernaux *));
892extern void _bfd_elf_swap_versym_in
893 PARAMS ((bfd *, const Elf_External_Versym *, Elf_Internal_Versym *));
894extern void _bfd_elf_swap_versym_out
895 PARAMS ((bfd *, const Elf_Internal_Versym *, Elf_External_Versym *));
896
897extern int _bfd_elf_section_from_bfd_section PARAMS ((bfd *, asection *));
898extern char *bfd_elf_string_from_elf_section
899 PARAMS ((bfd *, unsigned, unsigned));
900extern char *bfd_elf_get_str_section PARAMS ((bfd *, unsigned));
901
902extern boolean _bfd_elf_print_private_bfd_data PARAMS ((bfd *, PTR));
903extern void bfd_elf_print_symbol PARAMS ((bfd *, PTR, asymbol *,
904 bfd_print_symbol_type));
905#define elf_string_from_elf_strtab(abfd,strindex) \
906 bfd_elf_string_from_elf_section(abfd,elf_elfheader(abfd)->e_shstrndx,strindex)
907
908#define bfd_elf32_print_symbol bfd_elf_print_symbol
909#define bfd_elf64_print_symbol bfd_elf_print_symbol
910
3a99b017 911extern unsigned long bfd_elf_hash PARAMS ((const char *));
252b5132
RH
912
913extern bfd_reloc_status_type bfd_elf_generic_reloc PARAMS ((bfd *,
914 arelent *,
915 asymbol *,
916 PTR,
917 asection *,
918 bfd *,
919 char **));
920extern boolean bfd_elf_mkobject PARAMS ((bfd *));
921extern boolean bfd_elf_mkcorefile PARAMS ((bfd *));
922extern Elf_Internal_Shdr *bfd_elf_find_section PARAMS ((bfd *, char *));
923extern boolean _bfd_elf_make_section_from_shdr
924 PARAMS ((bfd *abfd, Elf_Internal_Shdr *hdr, const char *name));
925extern struct bfd_hash_entry *_bfd_elf_link_hash_newfunc
926 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
927extern struct bfd_link_hash_table *_bfd_elf_link_hash_table_create
928 PARAMS ((bfd *));
929extern boolean _bfd_elf_link_hash_table_init
930 PARAMS ((struct elf_link_hash_table *, bfd *,
931 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
932 struct bfd_hash_table *,
933 const char *)));
934extern boolean _bfd_elf_slurp_version_tables PARAMS ((bfd *));
935
936extern boolean _bfd_elf_copy_private_symbol_data
937 PARAMS ((bfd *, asymbol *, bfd *, asymbol *));
938extern boolean _bfd_elf_copy_private_section_data
939 PARAMS ((bfd *, asection *, bfd *, asection *));
940extern boolean _bfd_elf_write_object_contents PARAMS ((bfd *));
941extern boolean _bfd_elf_write_corefile_contents PARAMS ((bfd *));
942extern boolean _bfd_elf_set_section_contents PARAMS ((bfd *, sec_ptr, PTR,
943 file_ptr,
944 bfd_size_type));
945extern long _bfd_elf_get_symtab_upper_bound PARAMS ((bfd *));
946extern long _bfd_elf_get_symtab PARAMS ((bfd *, asymbol **));
947extern long _bfd_elf_get_dynamic_symtab_upper_bound PARAMS ((bfd *));
948extern long _bfd_elf_canonicalize_dynamic_symtab PARAMS ((bfd *, asymbol **));
949extern long _bfd_elf_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr));
950extern long _bfd_elf_canonicalize_reloc PARAMS ((bfd *, sec_ptr,
951 arelent **, asymbol **));
952extern long _bfd_elf_get_dynamic_reloc_upper_bound PARAMS ((bfd *));
953extern long _bfd_elf_canonicalize_dynamic_reloc PARAMS ((bfd *, arelent **,
954 asymbol **));
955extern asymbol *_bfd_elf_make_empty_symbol PARAMS ((bfd *));
956extern void _bfd_elf_get_symbol_info PARAMS ((bfd *, asymbol *,
957 symbol_info *));
958extern boolean _bfd_elf_is_local_label_name PARAMS ((bfd *, const char *));
959extern alent *_bfd_elf_get_lineno PARAMS ((bfd *, asymbol *));
960extern boolean _bfd_elf_set_arch_mach PARAMS ((bfd *, enum bfd_architecture,
961 unsigned long));
962extern boolean _bfd_elf_find_nearest_line PARAMS ((bfd *, asection *,
963 asymbol **,
964 bfd_vma, CONST char **,
965 CONST char **,
966 unsigned int *));
967#define _bfd_elf_read_minisymbols _bfd_generic_read_minisymbols
968#define _bfd_elf_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
969extern int _bfd_elf_sizeof_headers PARAMS ((bfd *, boolean));
970extern boolean _bfd_elf_new_section_hook PARAMS ((bfd *, asection *));
23bc299b
MM
971extern boolean _bfd_elf_init_reloc_shdr
972 PARAMS ((bfd *, Elf_Internal_Shdr *, asection *, boolean));
252b5132
RH
973
974/* If the target doesn't have reloc handling written yet: */
975extern void _bfd_elf_no_info_to_howto PARAMS ((bfd *, arelent *,
976 Elf_Internal_Rela *));
977
978extern boolean bfd_section_from_shdr PARAMS ((bfd *, unsigned int shindex));
979extern boolean bfd_section_from_phdr PARAMS ((bfd *, Elf_Internal_Phdr *, int));
980
981extern int _bfd_elf_symbol_from_bfd_symbol PARAMS ((bfd *, asymbol **));
982
983asection *bfd_section_from_elf_index PARAMS ((bfd *, unsigned int));
984boolean _bfd_elf_create_dynamic_sections PARAMS ((bfd *,
985 struct bfd_link_info *));
986struct bfd_strtab_hash *_bfd_elf_stringtab_init PARAMS ((void));
987boolean
988_bfd_elf_link_record_dynamic_symbol PARAMS ((struct bfd_link_info *,
989 struct elf_link_hash_entry *));
30b30c21
RH
990long
991_bfd_elf_link_lookup_local_dynindx PARAMS ((struct bfd_link_info *,
992 bfd *, long));
252b5132
RH
993boolean
994_bfd_elf_compute_section_file_positions PARAMS ((bfd *,
995 struct bfd_link_info *));
996void _bfd_elf_assign_file_positions_for_relocs PARAMS ((bfd *));
997file_ptr _bfd_elf_assign_file_position_for_section PARAMS ((Elf_Internal_Shdr *,
998 file_ptr,
999 boolean));
1000
1001extern boolean _bfd_elf_validate_reloc PARAMS ((bfd *, arelent *));
1002
1003boolean _bfd_elf_create_dynamic_sections PARAMS ((bfd *,
1004 struct bfd_link_info *));
1005boolean _bfd_elf_create_got_section PARAMS ((bfd *,
1006 struct bfd_link_info *));
30b30c21
RH
1007unsigned long _bfd_elf_link_renumber_dynsyms PARAMS ((bfd *,
1008 struct bfd_link_info *));
252b5132
RH
1009
1010elf_linker_section_t *_bfd_elf_create_linker_section
1011 PARAMS ((bfd *abfd,
1012 struct bfd_link_info *info,
1013 enum elf_linker_section_enum,
1014 elf_linker_section_t *defaults));
1015
1016elf_linker_section_pointers_t *_bfd_elf_find_pointer_linker_section
1017 PARAMS ((elf_linker_section_pointers_t *linker_pointers,
1018 bfd_signed_vma addend,
1019 elf_linker_section_enum_t which));
1020
1021boolean bfd_elf32_create_pointer_linker_section
1022 PARAMS ((bfd *abfd,
1023 struct bfd_link_info *info,
1024 elf_linker_section_t *lsect,
1025 struct elf_link_hash_entry *h,
1026 const Elf32_Internal_Rela *rel));
1027
1028bfd_vma bfd_elf32_finish_pointer_linker_section
1029 PARAMS ((bfd *output_abfd,
1030 bfd *input_bfd,
1031 struct bfd_link_info *info,
1032 elf_linker_section_t *lsect,
1033 struct elf_link_hash_entry *h,
1034 bfd_vma relocation,
1035 const Elf32_Internal_Rela *rel,
1036 int relative_reloc));
1037
1038boolean bfd_elf64_create_pointer_linker_section
1039 PARAMS ((bfd *abfd,
1040 struct bfd_link_info *info,
1041 elf_linker_section_t *lsect,
1042 struct elf_link_hash_entry *h,
1043 const Elf64_Internal_Rela *rel));
1044
1045bfd_vma bfd_elf64_finish_pointer_linker_section
1046 PARAMS ((bfd *output_abfd,
1047 bfd *input_bfd,
1048 struct bfd_link_info *info,
1049 elf_linker_section_t *lsect,
1050 struct elf_link_hash_entry *h,
1051 bfd_vma relocation,
1052 const Elf64_Internal_Rela *rel,
1053 int relative_reloc));
1054
1055boolean _bfd_elf_make_linker_section_rela
1056 PARAMS ((bfd *dynobj,
1057 elf_linker_section_t *lsect,
1058 int alignment));
1059
1060boolean _bfd_elfcore_section_from_phdr
1061 PARAMS ((bfd *, Elf_Internal_Phdr *, int));
1062
1063extern const bfd_target *bfd_elf32_object_p PARAMS ((bfd *));
1064extern const bfd_target *bfd_elf32_core_file_p PARAMS ((bfd *));
1065extern char *bfd_elf32_core_file_failing_command PARAMS ((bfd *));
1066extern int bfd_elf32_core_file_failing_signal PARAMS ((bfd *));
1067extern boolean bfd_elf32_core_file_matches_executable_p PARAMS ((bfd *,
1068 bfd *));
1069
1070extern boolean bfd_elf32_bfd_link_add_symbols
1071 PARAMS ((bfd *, struct bfd_link_info *));
1072extern boolean bfd_elf32_bfd_final_link
1073 PARAMS ((bfd *, struct bfd_link_info *));
1074
1075extern void bfd_elf32_swap_symbol_in
1076 PARAMS ((bfd *, const Elf32_External_Sym *, Elf_Internal_Sym *));
1077extern void bfd_elf32_swap_symbol_out
1078 PARAMS ((bfd *, const Elf_Internal_Sym *, PTR));
1079extern void bfd_elf32_swap_reloc_in
1080 PARAMS ((bfd *, const Elf32_External_Rel *, Elf_Internal_Rel *));
1081extern void bfd_elf32_swap_reloc_out
1082 PARAMS ((bfd *, const Elf_Internal_Rel *, Elf32_External_Rel *));
1083extern void bfd_elf32_swap_reloca_in
1084 PARAMS ((bfd *, const Elf32_External_Rela *, Elf_Internal_Rela *));
1085extern void bfd_elf32_swap_reloca_out
1086 PARAMS ((bfd *, const Elf_Internal_Rela *, Elf32_External_Rela *));
1087extern void bfd_elf32_swap_phdr_in
1088 PARAMS ((bfd *, const Elf32_External_Phdr *, Elf_Internal_Phdr *));
1089extern void bfd_elf32_swap_phdr_out
1090 PARAMS ((bfd *, const Elf_Internal_Phdr *, Elf32_External_Phdr *));
1091extern void bfd_elf32_swap_dyn_in
1092 PARAMS ((bfd *, const PTR, Elf_Internal_Dyn *));
1093extern void bfd_elf32_swap_dyn_out
c7ac6ff8 1094 PARAMS ((bfd *, const Elf_Internal_Dyn *, PTR));
252b5132
RH
1095extern long bfd_elf32_slurp_symbol_table
1096 PARAMS ((bfd *, asymbol **, boolean));
1097extern boolean bfd_elf32_write_shdrs_and_ehdr PARAMS ((bfd *));
1098extern int bfd_elf32_write_out_phdrs
1099 PARAMS ((bfd *, const Elf_Internal_Phdr *, int));
1100extern boolean bfd_elf32_add_dynamic_entry
1101 PARAMS ((struct bfd_link_info *, bfd_vma, bfd_vma));
1102extern boolean bfd_elf32_link_create_dynamic_sections
1103 PARAMS ((bfd *, struct bfd_link_info *));
1104extern Elf_Internal_Rela *_bfd_elf32_link_read_relocs
1105 PARAMS ((bfd *, asection *, PTR, Elf_Internal_Rela *, boolean));
1106
1107extern const bfd_target *bfd_elf64_object_p PARAMS ((bfd *));
1108extern const bfd_target *bfd_elf64_core_file_p PARAMS ((bfd *));
1109extern char *bfd_elf64_core_file_failing_command PARAMS ((bfd *));
1110extern int bfd_elf64_core_file_failing_signal PARAMS ((bfd *));
1111extern boolean bfd_elf64_core_file_matches_executable_p PARAMS ((bfd *,
1112 bfd *));
1113extern boolean bfd_elf64_bfd_link_add_symbols
1114 PARAMS ((bfd *, struct bfd_link_info *));
1115extern boolean bfd_elf64_bfd_final_link
1116 PARAMS ((bfd *, struct bfd_link_info *));
1117
1118extern void bfd_elf64_swap_symbol_in
1119 PARAMS ((bfd *, const Elf64_External_Sym *, Elf_Internal_Sym *));
1120extern void bfd_elf64_swap_symbol_out
1121 PARAMS ((bfd *, const Elf_Internal_Sym *, PTR));
1122extern void bfd_elf64_swap_reloc_in
1123 PARAMS ((bfd *, const Elf64_External_Rel *, Elf_Internal_Rel *));
1124extern void bfd_elf64_swap_reloc_out
1125 PARAMS ((bfd *, const Elf_Internal_Rel *, Elf64_External_Rel *));
1126extern void bfd_elf64_swap_reloca_in
1127 PARAMS ((bfd *, const Elf64_External_Rela *, Elf_Internal_Rela *));
1128extern void bfd_elf64_swap_reloca_out
1129 PARAMS ((bfd *, const Elf_Internal_Rela *, Elf64_External_Rela *));
1130extern void bfd_elf64_swap_phdr_in
1131 PARAMS ((bfd *, const Elf64_External_Phdr *, Elf_Internal_Phdr *));
1132extern void bfd_elf64_swap_phdr_out
1133 PARAMS ((bfd *, const Elf_Internal_Phdr *, Elf64_External_Phdr *));
1134extern void bfd_elf64_swap_dyn_in
1135 PARAMS ((bfd *, const PTR, Elf_Internal_Dyn *));
1136extern void bfd_elf64_swap_dyn_out
c7ac6ff8 1137 PARAMS ((bfd *, const Elf_Internal_Dyn *, PTR));
252b5132
RH
1138extern long bfd_elf64_slurp_symbol_table
1139 PARAMS ((bfd *, asymbol **, boolean));
1140extern boolean bfd_elf64_write_shdrs_and_ehdr PARAMS ((bfd *));
1141extern int bfd_elf64_write_out_phdrs
1142 PARAMS ((bfd *, const Elf_Internal_Phdr *, int));
1143extern boolean bfd_elf64_add_dynamic_entry
1144 PARAMS ((struct bfd_link_info *, bfd_vma, bfd_vma));
1145extern boolean bfd_elf64_link_create_dynamic_sections
1146 PARAMS ((bfd *, struct bfd_link_info *));
1147extern Elf_Internal_Rela *_bfd_elf64_link_read_relocs
1148 PARAMS ((bfd *, asection *, PTR, Elf_Internal_Rela *, boolean));
1149
30b30c21
RH
1150#define bfd_elf32_link_record_dynamic_symbol \
1151 _bfd_elf_link_record_dynamic_symbol
1152#define bfd_elf64_link_record_dynamic_symbol \
1153 _bfd_elf_link_record_dynamic_symbol
1154
1155boolean _bfd_elf32_link_record_local_dynamic_symbol
1156 PARAMS ((struct bfd_link_info *, bfd *, long));
1157boolean _bfd_elf64_link_record_local_dynamic_symbol
1158 PARAMS ((struct bfd_link_info *, bfd *, long));
252b5132
RH
1159
1160extern boolean _bfd_elf_close_and_cleanup PARAMS ((bfd *));
1161extern bfd_reloc_status_type _bfd_elf_rel_vtable_reloc_fn
1162 PARAMS ((bfd *, arelent *, struct symbol_cache_entry *, PTR,
1163 asection *, bfd *, char **));
1164
1165boolean _bfd_elf32_gc_sections
1166 PARAMS ((bfd *abfd, struct bfd_link_info *info));
1167boolean _bfd_elf32_gc_common_finalize_got_offsets
1168 PARAMS ((bfd *abfd, struct bfd_link_info *info));
1169boolean _bfd_elf32_gc_common_final_link
1170 PARAMS ((bfd *, struct bfd_link_info *));
1171boolean _bfd_elf32_gc_record_vtinherit
1172 PARAMS ((bfd *, asection *, struct elf_link_hash_entry *, bfd_vma));
1173boolean _bfd_elf32_gc_record_vtentry
1174 PARAMS ((bfd *, asection *, struct elf_link_hash_entry *, bfd_vma));
1175
1176boolean _bfd_elf64_gc_sections
1177 PARAMS ((bfd *abfd, struct bfd_link_info *info));
1178boolean _bfd_elf64_gc_common_finalize_got_offsets
1179 PARAMS ((bfd *abfd, struct bfd_link_info *info));
1180boolean _bfd_elf64_gc_common_final_link
1181 PARAMS ((bfd *, struct bfd_link_info *));
1182boolean _bfd_elf64_gc_record_vtinherit
1183 PARAMS ((bfd *, asection *, struct elf_link_hash_entry *, bfd_vma));
1184boolean _bfd_elf64_gc_record_vtentry
1185 PARAMS ((bfd *, asection *, struct elf_link_hash_entry *, bfd_vma));
1186
1187/* MIPS ELF specific routines. */
1188
1189extern boolean _bfd_mips_elf_object_p PARAMS ((bfd *));
1190extern boolean _bfd_mips_elf_section_from_shdr
103186c6 1191 PARAMS ((bfd *, Elf_Internal_Shdr *, char *));
252b5132
RH
1192extern boolean _bfd_mips_elf_fake_sections
1193 PARAMS ((bfd *, Elf_Internal_Shdr *, asection *));
1194extern boolean _bfd_mips_elf_section_from_bfd_section
1195 PARAMS ((bfd *, Elf_Internal_Shdr *, asection *, int *));
1196extern boolean _bfd_mips_elf_section_processing
1197 PARAMS ((bfd *, Elf_Internal_Shdr *));
1198extern void _bfd_mips_elf_symbol_processing PARAMS ((bfd *, asymbol *));
1199extern boolean _bfd_mips_elf_read_ecoff_info
1200 PARAMS ((bfd *, asection *, struct ecoff_debug_info *));
1201extern void _bfd_mips_elf_final_write_processing PARAMS ((bfd *, boolean));
1202extern bfd_reloc_status_type _bfd_mips_elf_hi16_reloc
1203 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
1204extern bfd_reloc_status_type _bfd_mips_elf_lo16_reloc
1205 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
1206extern bfd_reloc_status_type _bfd_mips_elf_gprel16_reloc
1207 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
1208extern bfd_reloc_status_type _bfd_mips_elf_got16_reloc
1209 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
1210extern bfd_reloc_status_type _bfd_mips_elf_gprel32_reloc
1211 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
1212extern boolean _bfd_mips_elf_set_private_flags PARAMS ((bfd *, flagword));
1213extern boolean _bfd_mips_elf_copy_private_bfd_data PARAMS ((bfd *, bfd *));
1214extern boolean _bfd_mips_elf_merge_private_bfd_data PARAMS ((bfd *, bfd *));
1215extern boolean _bfd_mips_elf_find_nearest_line
1216 PARAMS ((bfd *, asection *, asymbol **, bfd_vma, const char **,
1217 const char **, unsigned int *));
1218extern boolean _bfd_mips_elf_set_section_contents
1219 PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type));
103186c6
MM
1220extern boolean _bfd_mips_elf_create_dynamic_sections
1221 PARAMS ((bfd *, struct bfd_link_info *));
1222extern boolean _bfd_mips_elf_add_symbol_hook
1223 PARAMS ((bfd *, struct bfd_link_info *, const Elf_Internal_Sym *,
1224 const char **, flagword *, asection **, bfd_vma *));
1225extern boolean _bfd_mips_elf_adjust_dynamic_symbol
1226 PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
1227extern boolean _bfd_mips_elf_finish_dynamic_symbol
1228 PARAMS ((bfd *, struct bfd_link_info *, struct elf_link_hash_entry *,
1229 Elf_Internal_Sym *));
1230extern boolean _bfd_mips_elf_finish_dynamic_sections
1231 PARAMS ((bfd *, struct bfd_link_info *));
1232extern asection * _bfd_mips_elf_gc_mark_hook
1233 PARAMS ((bfd *, struct bfd_link_info *, Elf_Internal_Rela *,
1234 struct elf_link_hash_entry *, Elf_Internal_Sym *));
1235extern boolean _bfd_mips_elf_gc_sweep_hook
1236 PARAMS ((bfd *, struct bfd_link_info *, asection *,
1237 const Elf_Internal_Rela *));
1238extern boolean _bfd_mips_elf_always_size_sections
1239 PARAMS ((bfd *, struct bfd_link_info *));
1240extern boolean _bfd_mips_elf_size_dynamic_sections
1241 PARAMS ((bfd *, struct bfd_link_info *));
1242extern boolean _bfd_mips_elf_check_relocs
1243 PARAMS ((bfd *, struct bfd_link_info *, asection *,
1244 const Elf_Internal_Rela *));
1245extern struct bfd_link_hash_table *_bfd_mips_elf_link_hash_table_create
1246 PARAMS ((bfd *));
1247extern boolean _bfd_mips_elf_print_private_bfd_data
1248 PARAMS ((bfd *, PTR));
1249extern boolean _bfd_mips_elf_link_output_symbol_hook
1250 PARAMS ((bfd *, struct bfd_link_info *, const char *, Elf_Internal_Sym *,
1251 asection *));
1252extern boolean _bfd_mips_elf_final_link
1253 PARAMS ((bfd *, struct bfd_link_info *));
1254extern int _bfd_mips_elf_additional_program_headers PARAMS ((bfd *));
1255extern boolean _bfd_mips_elf_modify_segment_map PARAMS ((bfd *));
1256extern boolean _bfd_mips_elf_relocate_section
1257 PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
1258 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
252b5132
RH
1259
1260#endif /* _LIBELF_H_ */
This page took 0.075232 seconds and 4 git commands to generate.