1999-05-03 09:29:11 +02:00
|
|
|
/* BFD ECOFF object file private structure.
|
2018-01-03 06:17:27 +01:00
|
|
|
Copyright (C) 1993-2018 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
Written by Ian Lance Taylor, Cygnus Support.
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 16:26:43 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2005-04-21 09:45:39 +02:00
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-03 16:26:43 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "bfdlink.h"
|
|
|
|
|
|
|
|
#ifndef ECOFF_H
|
|
|
|
#include "coff/ecoff.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This is the backend information kept for ECOFF files. This
|
|
|
|
structure is constant for a particular backend. The first element
|
|
|
|
is the COFF backend data structure, so that ECOFF targets can use
|
|
|
|
the generic COFF code. */
|
|
|
|
|
|
|
|
#define ecoff_backend(abfd) \
|
|
|
|
((struct ecoff_backend_data *) (abfd)->xvec->backend_data)
|
|
|
|
|
|
|
|
struct ecoff_backend_data
|
|
|
|
{
|
|
|
|
/* COFF backend information. This must be the first field. */
|
|
|
|
bfd_coff_backend_data coff;
|
|
|
|
/* Supported architecture. */
|
|
|
|
enum bfd_architecture arch;
|
|
|
|
/* Initial portion of armap string. */
|
|
|
|
const char *armap_start;
|
|
|
|
/* The page boundary used to align sections in a demand-paged
|
|
|
|
executable file. E.g., 0x1000. */
|
|
|
|
bfd_vma round;
|
2002-11-30 09:39:46 +01:00
|
|
|
/* TRUE if the .rdata section is part of the text segment, as on the
|
|
|
|
Alpha. FALSE if .rdata is part of the data segment, as on the
|
1999-05-03 09:29:11 +02:00
|
|
|
MIPS. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean rdata_in_text;
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Bitsize of constructor entries. */
|
|
|
|
unsigned int constructor_bitsize;
|
|
|
|
/* Reloc to use for constructor entries. */
|
|
|
|
reloc_howto_type *constructor_reloc;
|
|
|
|
/* How to swap debugging information. */
|
|
|
|
struct ecoff_debug_swap debug_swap;
|
|
|
|
/* External reloc size. */
|
|
|
|
bfd_size_type external_reloc_size;
|
|
|
|
/* Reloc swapping functions. */
|
2005-04-21 09:45:39 +02:00
|
|
|
void (*swap_reloc_in) (bfd *, void *, struct internal_reloc *);
|
|
|
|
void (*swap_reloc_out) (bfd *, const struct internal_reloc *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Backend reloc tweaking. */
|
2002-11-30 09:39:46 +01:00
|
|
|
void (*adjust_reloc_in)
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, const struct internal_reloc *, arelent *);
|
2002-11-30 09:39:46 +01:00
|
|
|
void (*adjust_reloc_out)
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, const arelent *, struct internal_reloc *);
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Relocate section contents while linking. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean (*relocate_section)
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Do final adjustments to filehdr and aouthdr. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean (*adjust_headers)
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, struct internal_filehdr *, struct internal_aouthdr *);
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Read an element from an archive at a given file position. This
|
|
|
|
is needed because OSF/1 3.2 uses a weird archive format. */
|
2005-04-21 09:45:39 +02:00
|
|
|
bfd *(*get_elt_at_filepos) (bfd *, file_ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
2009-02-18 19:23:08 +01:00
|
|
|
/* ECOFF targets don't support COFF long section names, so this
|
|
|
|
macro is provided to use as an initialiser for the related
|
|
|
|
members of the embedded bfd_coff_backend_data struct. */
|
|
|
|
#define ECOFF_NO_LONG_SECTION_NAMES (FALSE), _bfd_ecoff_no_long_sections
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* This is the target specific information kept for ECOFF files. */
|
|
|
|
|
|
|
|
#define ecoff_data(abfd) ((abfd)->tdata.ecoff_obj_data)
|
|
|
|
|
|
|
|
typedef struct ecoff_tdata
|
|
|
|
{
|
|
|
|
/* The reloc file position, set by
|
|
|
|
ecoff_compute_section_file_positions. */
|
|
|
|
file_ptr reloc_filepos;
|
|
|
|
|
|
|
|
/* The symbol table file position, set by _bfd_ecoff_mkobject_hook. */
|
|
|
|
file_ptr sym_filepos;
|
|
|
|
|
|
|
|
/* The start and end of the text segment. Only valid for an
|
|
|
|
existing file, not for one we are creating. */
|
|
|
|
unsigned long text_start;
|
|
|
|
unsigned long text_end;
|
|
|
|
|
|
|
|
/* The cached gp value. This is used when relocating. */
|
|
|
|
bfd_vma gp;
|
|
|
|
|
|
|
|
/* The maximum size of objects to optimize using gp. This is
|
|
|
|
typically set by the -G option to the compiler, assembler or
|
|
|
|
linker. */
|
|
|
|
unsigned int gp_size;
|
|
|
|
|
|
|
|
/* The register masks. When linking, all the masks found in the
|
|
|
|
input files are combined into the masks of the output file.
|
|
|
|
These are not all used for all targets, but that's OK, because
|
|
|
|
the relevant ones are the only ones swapped in and out. */
|
|
|
|
unsigned long gprmask;
|
|
|
|
unsigned long fprmask;
|
|
|
|
unsigned long cprmask[4];
|
|
|
|
|
|
|
|
/* The ECOFF symbolic debugging information. */
|
|
|
|
struct ecoff_debug_info debug_info;
|
|
|
|
|
|
|
|
/* The unswapped ECOFF symbolic information. */
|
2005-04-21 09:45:39 +02:00
|
|
|
void * raw_syments;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* The canonical BFD symbols. */
|
|
|
|
struct ecoff_symbol_struct *canonical_symbols;
|
|
|
|
|
|
|
|
/* A mapping from external symbol numbers to entries in the linker
|
|
|
|
hash table, used when linking. */
|
|
|
|
struct ecoff_link_hash_entry **sym_hashes;
|
|
|
|
|
|
|
|
/* A mapping from reloc symbol indices to sections, used when
|
|
|
|
linking. */
|
|
|
|
asection **symndx_to_section;
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* TRUE if this BFD was written by the backend linker. */
|
|
|
|
bfd_boolean linker;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* TRUE if a warning that multiple global pointer values are
|
1999-05-03 09:29:11 +02:00
|
|
|
needed in the output binary was issued already. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean issued_multiple_gp_warning;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Used by find_nearest_line entry point. The structure could be
|
|
|
|
included directly in this one, but there's no point to wasting
|
|
|
|
the memory just for the infrequently called find_nearest_line. */
|
|
|
|
struct ecoff_find_line *find_line_info;
|
|
|
|
|
|
|
|
/* Whether the .rdata section is in the text segment for this
|
|
|
|
particular ECOFF file. This is not valid until
|
|
|
|
ecoff_compute_section_file_positions is called. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean rdata_in_text;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
} ecoff_data_type;
|
|
|
|
|
|
|
|
/* Each canonical asymbol really looks like this. */
|
|
|
|
|
|
|
|
typedef struct ecoff_symbol_struct
|
|
|
|
{
|
|
|
|
/* The actual symbol which the rest of BFD works with */
|
|
|
|
asymbol symbol;
|
|
|
|
|
|
|
|
/* The fdr for this symbol. */
|
|
|
|
FDR *fdr;
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* TRUE if this is a local symbol rather than an external one. */
|
|
|
|
bfd_boolean local;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* A pointer to the unswapped hidden information for this symbol.
|
|
|
|
This is either a struct sym_ext or a struct ext_ext, depending on
|
|
|
|
the value of the local field above. */
|
2005-04-21 09:45:39 +02:00
|
|
|
void * native;
|
1999-05-03 09:29:11 +02:00
|
|
|
} ecoff_symbol_type;
|
|
|
|
|
2001-10-10 14:08:29 +02:00
|
|
|
/* We take the address of the first element of an asymbol to ensure that the
|
1999-05-03 09:29:11 +02:00
|
|
|
macro is only ever applied to an asymbol. */
|
|
|
|
#define ecoffsymbol(asymbol) ((ecoff_symbol_type *) (&((asymbol)->the_bfd)))
|
|
|
|
|
|
|
|
/* We need to save the index of an external symbol when we write it
|
|
|
|
out so that can set the symbol index correctly when we write out
|
|
|
|
the relocs. */
|
|
|
|
#define ecoff_get_sym_index(symbol) ((symbol)->udata.i)
|
|
|
|
#define ecoff_set_sym_index(symbol, idx) ((symbol)->udata.i = (idx))
|
|
|
|
|
[ bfd/ChangeLog ]
2004-04-23 Chris Demetriou <cgd@broadcom.com>
* coff-mips.c (mips_relhi_reloc, mips_rello_reloc)
(mips_switch_reloc, mips_read_relocs, mips_relax_section)
(mips_relax_pcrel16, PCREL16_EXPANSION_ADJUSTMENT): Remove.
(mips_relocate_hi): Remove now-unused 'adjust' and 'pcrel' arguments,
and update comments to reflect current usage.
(mips_howto_table): Remove entries for MIPS_R_RELHI, MIPS_R_RELLO,
and MIPS_R_SWITCH, as well as several empty entries. Update comment
for MIPS_R_PCREL16.
(mips_ecoff_swap_reloc_in, mips_ecoff_swap_reloc_out)
(mips_adjust_reloc_out, mips_bfd_reloc_type_lookup): Remove support
for MIPS_R_SWITCH, MIPS_R_RELLO, and MIPS_R_RELHI relocations.
(mips_adjust_reloc_in): Likewise, adjust maximum accepted relocation
type number to be MIPS_R_PCREL16.
(mips_relocate_section): Remove support for link-time relaxation
of branches used by embedded-PIC. Remove support for MIPS_R_SWITCH,
MIPS_R_RELLO, and MIPS_R_RELHI relocations.
(_bfd_ecoff_bfd_relax_section): Redefine to bfd_generic_relax_section.
* ecoff.c (ecoff_indirect_link_order): Remove support for link-time
relaxation of branches used by embedded-PIC.
* ecofflink.c (bfd_ecoff_debug_accumulate): Likewise.
* libecoff.h (struct ecoff_section_tdata): Remove embedded-PIC
related members, update comment.
* pe-mips.c: Remove disabled (commented-out and #if 0'd)
code related to embedded-PIC.
* elfxx-mips.c (_bfd_mips_elf_read_ecoff_info): Remove
initialization of now-removed 'adjust' member of
'struct ecoff_debug_info'.
[ include/coff/ChangeLog ]
2004-04-23 Chris Demetriou <cgd@broadcom.com>
* mips.h (MIPS_R_RELHI, MIPS_R_RELLO, MIPS_R_SWITCH): Remove
(MIPS_R_PCREL16): Update comment.
* ecoff.h (struct ecoff_value_adjust): Remove structure.
(struct ecoff_debug_info): Remove 'adjust' member.
2004-04-24 08:12:25 +02:00
|
|
|
/* A pointer to this structure is put in the used_by_bfd pointer of
|
|
|
|
a section to keep track of any per-section data.
|
|
|
|
The user_by_bfd pointer will be NULL if the information was not
|
|
|
|
needed. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
struct ecoff_section_tdata
|
|
|
|
{
|
|
|
|
/* When producing an executable (i.e., final, non-relocatable link)
|
|
|
|
on the Alpha, we may need to use multiple global pointer values
|
|
|
|
to span the entire .lita section. In essence, we allow each
|
|
|
|
input .lita section to have its own gp value. To support this,
|
|
|
|
we need to keep track of the gp values that we picked for each
|
|
|
|
input .lita section . */
|
|
|
|
bfd_vma gp;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* An accessor macro for the ecoff_section_tdata structure. */
|
|
|
|
#define ecoff_section_data(abfd, sec) \
|
|
|
|
((struct ecoff_section_tdata *) (sec)->used_by_bfd)
|
|
|
|
|
|
|
|
/* ECOFF linker hash table entries. */
|
|
|
|
|
|
|
|
struct ecoff_link_hash_entry
|
|
|
|
{
|
|
|
|
struct bfd_link_hash_entry root;
|
|
|
|
/* Symbol index in output file. */
|
|
|
|
long indx;
|
|
|
|
/* BFD that ext field value came from. */
|
|
|
|
bfd *abfd;
|
|
|
|
/* ECOFF external symbol information. */
|
|
|
|
EXTR esym;
|
|
|
|
/* Nonzero if this symbol has been written out. */
|
|
|
|
char written;
|
|
|
|
/* Nonzero if this symbol was referred to as small undefined. */
|
|
|
|
char small;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ECOFF linker hash table. */
|
|
|
|
|
|
|
|
struct ecoff_link_hash_table
|
|
|
|
{
|
|
|
|
struct bfd_link_hash_table root;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Make an ECOFF object. */
|
2005-04-21 09:45:39 +02:00
|
|
|
extern bfd_boolean _bfd_ecoff_mkobject (bfd *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Read in the ECOFF symbolic debugging information. */
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_slurp_symbolic_info
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, asection *, struct ecoff_debug_info *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Generic ECOFF BFD backend vectors. */
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
extern bfd_boolean _bfd_ecoff_write_object_contents (bfd *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define _bfd_ecoff_close_and_cleanup _bfd_generic_close_and_cleanup
|
|
|
|
#define _bfd_ecoff_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_new_section_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, asection *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_get_section_contents
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, asection *, void * location, file_ptr, bfd_size_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define _bfd_ecoff_bfd_link_split_section _bfd_generic_link_split_section
|
2016-04-21 16:43:00 +02:00
|
|
|
#define _bfd_ecoff_bfd_link_check_relocs _bfd_generic_link_check_relocs
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_bfd_copy_private_bfd_data
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, bfd *);
|
1999-05-03 09:29:11 +02:00
|
|
|
#define _bfd_ecoff_bfd_copy_private_section_data \
|
|
|
|
_bfd_generic_bfd_copy_private_section_data
|
|
|
|
|
|
|
|
#define _bfd_ecoff_bfd_copy_private_symbol_data \
|
|
|
|
_bfd_generic_bfd_copy_private_symbol_data
|
|
|
|
|
2004-05-17 18:40:01 +02:00
|
|
|
#define _bfd_ecoff_bfd_copy_private_header_data \
|
|
|
|
_bfd_generic_bfd_copy_private_header_data
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#define _bfd_ecoff_bfd_print_private_bfd_data \
|
|
|
|
_bfd_generic_bfd_print_private_bfd_data
|
|
|
|
|
|
|
|
#define _bfd_ecoff_bfd_merge_private_bfd_data \
|
|
|
|
_bfd_generic_bfd_merge_private_bfd_data
|
|
|
|
|
|
|
|
#define _bfd_ecoff_bfd_set_private_flags _bfd_generic_bfd_set_private_flags
|
2005-04-21 09:45:39 +02:00
|
|
|
extern bfd_boolean _bfd_ecoff_slurp_armap (bfd *);
|
1999-05-03 09:29:11 +02:00
|
|
|
#define _bfd_ecoff_slurp_extended_name_table _bfd_slurp_extended_name_table
|
|
|
|
#define _bfd_ecoff_construct_extended_name_table \
|
|
|
|
_bfd_archive_bsd_construct_extended_name_table
|
|
|
|
#define _bfd_ecoff_truncate_arname bfd_dont_truncate_arname
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_write_armap
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, unsigned int, struct orl *, unsigned int, int);
|
1999-05-03 09:29:11 +02:00
|
|
|
#define _bfd_ecoff_read_ar_hdr _bfd_generic_read_ar_hdr
|
2010-01-26 14:42:26 +01:00
|
|
|
#define _bfd_ecoff_write_ar_hdr _bfd_generic_write_ar_hdr
|
1999-05-03 09:29:11 +02:00
|
|
|
#define _bfd_ecoff_openr_next_archived_file \
|
|
|
|
bfd_generic_openr_next_archived_file
|
|
|
|
#define _bfd_ecoff_get_elt_at_index _bfd_generic_get_elt_at_index
|
|
|
|
#define _bfd_ecoff_generic_stat_arch_elt bfd_generic_stat_arch_elt
|
Remove bfd stub function casts.
This patch defines a bunch of new functions to use in the BFD target
structs rather than casting bfd_false or bfd_true and similar stub
functions. I've also renamed the stub functions to reflect their
parameters and put "error" in the name if they set bfd_error. The
latter change is important since there were quite a few uses of
bfd_false where setting bfd_error was inappropriate, for example in
elf_backend_allow_non_load_phdr and is_target_special_symbol.
* libbfd.c (_bfd_bool_bfd_false_error): Rename from bfd_false.
(_bfd_bool_bfd_true): Rename from bfd_true.
(_bfd_ptr_bfd_null_error): Rename from bfd_nullvoidptr.
(_bfd_int_bfd_0): Rename from bfd_0.
(_bfd_uint_bfd_0): Rename from bfd_0u.
(_bfd_long_bfd_0): Rename from bfd_0l.
(_bfd_long_bfd_n1_error): Rename from _bfd_n1.
(_bfd_void_bfd): Rename from bfd_void.
(_bfd_bool_bfd_false, _bfd_bool_bfd_asymbol_false),
(_bfd_bool_bfd_link_false_error),
(_bfd_bool_bfd_link_true, _bfd_bool_bfd_bfd_true),
(_bfd_bool_bfd_uint_true, _bfd_bool_bfd_ptr_true),
(_bfd_bool_bfd_asection_bfd_asection_true),
(_bfd_bool_bfd_asymbol_bfd_asymbol_true),
(_bfd_void_bfd_link, _bfd_void_bfd_asection): New functions.
* archive.c (_bfd_noarchive_get_elt_at_index),
(_bfd_noarchive_openr_next_archived_file),
(_bfd_noarchive_construct_extended_name_table),
(_bfd_noarchive_write_ar_hdr, _bfd_noarchive_truncate_arname),
(_bfd_noarchive_write_armap): New functions.
* archures.c (_bfd_nowrite_set_arch_mach): New function.
* coff-alpha.c (alpha_ecoff_swap_coff_aux_in),
(alpha_ecoff_swap_coff_sym_in, alpha_ecoff_swap_coff_lineno_in),
(alpha_ecoff_swap_coff_aux_out, alpha_ecoff_swap_coff_sym_out),
(alpha_ecoff_swap_coff_lineno_out),
(alpha_ecoff_swap_coff_reloc_out): New functions.
* coff-mips.c (mips_ecoff_swap_coff_aux_in),
(mips_ecoff_swap_coff_sym_in, mips_ecoff_swap_coff_lineno_in),
(mips_ecoff_swap_coff_aux_out, mips_ecoff_swap_coff_sym_out),
(mips_ecoff_swap_coff_lineno_out),
(mips_ecoff_swap_coff_reloc_out): New functions.
* coffcode.h (coff_set_alignment_hook): Replace define with
new function.
(symname_in_debug_hook): Likewise.
* ecoff.c (_bfd_ecoff_set_alignment_hook): New function.
* elfxx-target.h (elf_backend_allow_non_load_phdr): Default to 0.
* elf.c (assign_file_positions_except_relocs): Test
elf_backend_allow_non_load_phdr for NULL.
* elflink.c (_bfd_elf_omit_section_dynsym_default): Rename from
_bfd_elf_link_omit_section_dynsym. Update uses.
(_bfd_elf_omit_section_dynsym_all): New function.
* elf-bfd.h (_bfd_elf_link_omit_section_dynsym): Delete.
(_bfd_elf_omit_section_dynsym_default): Declare.
(_bfd_elf_omit_section_dynsym_all): Declare.
* linker.c (_bfd_nolink_sizeof_headers, _bfd_nolink_bfd_relax_section),
(_bfd_nolink_bfd_get_relocated_section_contents),
(_bfd_nolink_bfd_lookup_section_flags),
(_bfd_nolink_bfd_is_group_section, _bfd_nolink_bfd_discard_group),
(_bfd_nolink_bfd_link_hash_table_create),
(_bfd_nolink_bfd_link_just_syms),
(_bfd_nolink_bfd_copy_link_hash_symbol_type),
(_bfd_nolink_bfd_link_split_section),
(_bfd_nolink_section_already_linked),
(_bfd_nolink_bfd_define_common_symbol),
(_bfd_nolink_bfd_define_start_stop): New functions.
* reloc.c (_bfd_norelocs_bfd_reloc_type_lookup),
(_bfd_norelocs_bfd_reloc_name_lookup),
(_bfd_nodynamic_canonicalize_dynamic_reloc): New functions.
* section.c (_bfd_nowrite_set_section_contents): New function.
* syms.c (_bfd_nosymbols_canonicalize_symtab),
(_bfd_nosymbols_print_symbol, _bfd_nosymbols_get_symbol_info),
(_bfd_nosymbols_get_symbol_version_string),
(_bfd_nosymbols_bfd_is_local_label_name),
(_bfd_nosymbols_get_lineno, _bfd_nosymbols_find_nearest_line),
(_bfd_nosymbols_find_line, _bfd_nosymbols_find_inliner_info),
(_bfd_nosymbols_bfd_make_debug_symbol),
( _bfd_nosymbols_read_minisymbols),
( _bfd_nosymbols_minisymbol_to_symbol),
(_bfd_nodynamic_get_synthetic_symtab): New functions.
* libbfd-in.h: Declare new functions. Update existing defines,
removing casts.
* aix386-core.c: Update to use new hooks. Formatting.
* aout-adobe.c: Likewise.
* aout-arm.c: Likewise.
* aout-target.h: Likewise.
* aout-tic30.c: Likewise.
* aoutf1.h: Likewise.
* binary.c: Likewise.
* bout.c: Likewise.
* cisco-core.c: Likewise.
* coff-alpha.c: Likewise.
* coff-i386.c: Likewise.
* coff-i860.c: Likewise.
* coff-i960.c: Likewise.
* coff-ia64.c: Likewise.
* coff-mips.c: Likewise.
* coff-ppc.c: Likewise.
* coff-rs6000.c: Likewise.
* coff-sh.c: Likewise.
* coff-tic30.c: Likewise.
* coff-tic54x.c: Likewise.
* coff-x86_64.c: Likewise.
* coff64-rs6000.c: Likewise.
* coffcode.h: Likewise.
* elf-m10300.c: Likewise.
* elf32-cr16.c: Likewise.
* elf32-lm32.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-metag.c: Likewise.
* elf32-score.c: Likewise.
* elf32-score7.c: Likewise.
* elf32-tilepro.c: Likewise.
* elf32-xstormy16.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-alpha.c: Likewise.
* elf64-hppa.c: Likewise.
* elf64-ia64-vms.c: Likewise.
* elf64-mmix.c: Likewise.
* elf64-sh64.c: Likewise.
* elfnn-ia64.c: Likewise.
* elfxx-sparc.c: Likewise.
* elfxx-target.h: Likewise.
* elfxx-tilegx.c: Likewise.
* elfxx-x86.h: Likewise.
* hp300hpux.c: Likewise.
* hppabsd-core.c: Likewise.
* hpux-core.c: Likewise.
* i386msdos.c: Likewise.
* i386os9k.c: Likewise.
* ieee.c: Likewise.
* ihex.c: Likewise.
* irix-core.c: Likewise.
* libaout.h: Likewise.
* libecoff.h: Likewise.
* mach-o-target.c: Likewise.
* mach-o.c: Likewise.
* mipsbsd.c: Likewise.
* mmo.c: Likewise.
* netbsd-core.c: Likewise.
* nlm-target.h: Likewise.
* oasys.c: Likewise.
* osf-core.c: Likewise.
* pdp11.c: Likewise.
* pe-mips.c: Likewise.
* pe-x86_64.c: Likewise.
* pef.c: Likewise.
* plugin.c: Likewise.
* ppcboot.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* som.c: Likewise.
* sparclynx.c: Likewise.
* srec.c: Likewise.
* tekhex.c: Likewise.
* trad-core.c: Likewise.
* verilog.c: Likewise.
* versados.c: Likewise.
* vms-alpha.c: Likewise.
* vms-lib.c: Likewise.
* wasm-module.c: Likewise.
* xsym.c: Likewise.
* libbfd.h: Regenerate.
2018-02-15 01:28:06 +01:00
|
|
|
#define _bfd_ecoff_update_armap_timestamp _bfd_bool_bfd_true
|
|
|
|
#define _bfd_ecoff_bfd_is_target_special_symbol _bfd_bool_bfd_asymbol_false
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
extern long _bfd_ecoff_get_symtab_upper_bound (bfd *);
|
|
|
|
extern long _bfd_ecoff_canonicalize_symtab (bfd *, asymbol **);
|
|
|
|
extern asymbol *_bfd_ecoff_make_empty_symbol (bfd *);
|
1999-05-03 09:29:11 +02:00
|
|
|
extern void _bfd_ecoff_print_symbol
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, void *, asymbol *, bfd_print_symbol_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
extern void _bfd_ecoff_get_symbol_info
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, asymbol *, symbol_info *);
|
2014-11-25 18:28:32 +01:00
|
|
|
#define _bfd_ecoff_get_symbol_version_string \
|
|
|
|
_bfd_nosymbols_get_symbol_version_string
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_bfd_is_local_label_name
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, const char *);
|
1999-05-03 09:29:11 +02:00
|
|
|
#define _bfd_ecoff_get_lineno _bfd_nosymbols_get_lineno
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_find_nearest_line
|
Merge bfd_find_nearest_line variants
When bfd_find_nearest_line_discriminator was added, not enough care
was taken to ensure all targets had a proper definition of the function.
This patch cures that by merging bfd_find_nearest_line_discriminator
and bfd_find_nearest_line target implementations.
PR 17481
* aoutx.h (NAME (aout, find_nearest_line)): Add "discriminator_ptr"
param, group "section" and "offset" params. Zero discriminator.
* bfd.c (bfd_find_nearest_line): Implement with new
_bfd_find_nearest_line.
(bfd_find_nearest_line_discriminator): Likewise.
* coff-i386.c (_bfd_generic_find_nearest_line_discriminator): Don't
define.
* coff-rs6000.c (xcoff_find_nearest_line,
xcoff_find_nearest_line_discriminator): Delete.
(_bfd_xcoff_find_nearest_line): Don't define.
(_bfd_xcoff_find_nearest_line): Define as coff_find_nearest_line.
* coff-x86_64.c (_bfd_generic_find_nearest_line_discriminator): Don't
define.
* coff64-rs6000.c (rs6000_xcoff64_vec, rs6000_xcoff64_aix_vec): Adjust.
* coffgen.c (coff_find_nearest_line_with_names): Reorder params,
adjust _bfd_dwarf2_find_nearest_line call.
(coff_find_nearest_line): Add "discriminator_ptr" param, reorder
others. Set discriminator. Adjust call.
(coff_find_nearest_line_discriminator): Delete.
* dwarf1.c (_bfd_dwarf1_find_nearest_line): Reorder params.
* dwarf2.c (find_line): Rename to..
(_bfd_dwarf2_find_nearest_line): ..this, reordering params.
Simplify setting of do_line. Delete old function.
(_bfd_dwarf2_find_line): Delete.
* ecoff.c (_bfd_ecoff_find_nearest_line): Reorder params, add
discriminator_ptr and set it.
* elf-bfd.h (_bfd_elf_find_nearest_line): Update prototype.
(_bfd_elf_find_nearest_line_discriminator): Delete.
(_bfd_elf_find_line_discriminator): Delete.
(_bfd_generic_find_nearest_line_discriminator): Don't define.
* elf.c (elf_find_function): Reorder params.
(_bfd_elf_find_nearest_line): Reorder params, add discriminator_ptr.
Adjust calls.
(_bfd_elf_find_nearest_line_discriminator): Delete.
(_bfd_elf_find_line): Adjust call.
* elf32-arm.c (arm_elf_find_function): Reorder params.
(elf32_arm_find_nearest_line): Reorder params, add discriminator_ptr.
Adjust calls.
* elf64-alpha.c (elf64_alpha_find_nearest_line): Similarly.
* elfnn-aarch64.c (aarch64_elf_find_function): Reorder params.
(elfNN_aarch64_find_nearest_line): Reorder params, add
discriminator_ptr. Adjust calls.
* elfxx-mips.c (_bfd_mips_elf_find_nearest_line): Similarly.
* elfxx-mips.h (_bfd_mips_elf_find_nearest_line): Update prototype.
* libaout.h (NAME (aout, find_nearest_line)): Update prototype.
* libbfd-in.h (_bfd_nosymbols_find_nearest_line): Update.
(_bfd_dwarf1_find_nearest_line): Likewise.
(_bfd_dwarf2_find_nearest_line): Likewise.
(_bfd_dwarf2_find_line): Delete.
(_bfd_generic_find_nearest_line_discriminator): Delete.
* libbfd.c (_bfd_generic_find_nearest_line_discriminator): Delete.
* libcoff-in.h (coff_find_nearest_line): Update prototype.
(coff_find_nearest_line_discriminator): Delete.
(coff_find_nearest_line_with_names): Update prototype.
* libecoff.h (_bfd_ecoff_find_nearest_line): Update prototype.
* mach-o.c (bfd_mach_o_find_nearest_line): Reorder params, add
discriminator_ptr. Adjust calls.
* mach-o.h (bfd_mach_o_find_nearest_line): Update prototype.
* pdp11.c (NAME (aout, find_nearest_line)): Reorder params, add
discriminator_ptr and set.
* som.c (som_find_nearest_line): Similarly.
* targets.c (BFD_JUMP_TABLE_SYMBOLS): Delete entry for
_bfd_find_nearest_line_discriminator.
(struct bfd_target <_bfd_find_nearest_line>): Adjust prototype.
(struct bfd_target <_bfd_find_nearest_line_discriminator>): Delete.
* vms-alpha.c (_bfd_vms_find_nearest_dst_line): Rename to..
(_bfd_vms_find_nearest_line): ..this. Reorder params, add
"discriminator" and set.
(_bfd_vms_find_nearest_line_discriminator): Delete.
(_bfd_generic_find_nearest_line_discriminator): Don't define.
(alpha_vms_find_nearest_line): Update define.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-10-15 13:22:20 +02:00
|
|
|
(bfd *, asymbol **, asection *, bfd_vma,
|
|
|
|
const char **, const char **, unsigned int *, unsigned int *);
|
Define bfd_find_line entry of BFD_JUMP_TABLE_SYMBOLS using NAME.
In https://www.sourceware.org/ml/binutils/2005-06/msg00082.html
HJ implemented bfd_find_line for DWARF2, but cheated a little in not
using the usual NAME##_find_line, saving quite a lot of boring
editing. However that shortcut probably contributed to
bfd_find_nearest_line_discriminator being implemented the same way,
and missing support for some targets.
* targets.c (BFD_JUMP_TABLE_SYMBOLS): Use NAME##_find_line.
* aout-adobe.c (aout_32_find_line): Define.
(aout_32_bfd_make_debug_symbol, aout_32_bfd_reloc_type_lookup,
aout_32_bfd_reloc_name_lookup): Define using _bfd_nosymbols define.
* aout-target.h (MY_find_line): Define.
* aout-tic30.c (MY_find_line): Define.
* binary.c (binary_find_line): Define.
* bout.c (aout_32_find_line): Define.
* coff-rs6000.c (_bfd_xcoff_find_line): Define.
* coff64-rs6000.c (rs6000_xcoff64_vec): Use coff_find_line.
(rs6000_xcoff64_aix_vec): Likewise.
* elf-bfd.h (_bfd_generic_find_line): Don't define.
* elfxx-target.h (bfd_elfNN_find_line): Define.
* i386msdos.c (msdos_find_line): Define.
* i386os9k.c (aout_32_find_line): Define.
* ieee.c (ieee_find_nearest_line, ieee_find_inliner_info): Delete func.
(ieee_find_nearest_line, ieee_find_line,
ieee_find_inliner_info): Define.
* ihex.c (ihex_find_line): Define.
* libbfd-in.h (_bfd_nosymbols_find_line): Define.
(_bfd_generic_find_line): Don't define.
* libbfd.c (_bfd_generic_find_line): Delete.
* libcoff-in.h (coff_find_line): Define.
* libecoff.h (_bfd_ecoff_find_line): Define.
* mach-o.h (bfd_mach_o_find_line): Define.
* mmo.c (mmo_find_line): Define.
* nlm-target.h (nlm_find_line): Define.
* oasys.c (oasys_find_nearest_line, oasys_find_inliner_info): Delete.
(oasys_find_nearest_line, oasys_find_line,
oasys_find_inliner_info): Define.
* pef.c (bfd_pef_find_line): Define.
* plugin.c (bfd_plugin_find_line): Define.
* ppcboot.c (ppcboot_find_line): Define.
* som.c (som_find_line): Define.
* srec.c (srec_find_line): Define.
* tekhex.c (tekhex_find_line): Define.
* versados.c (versados_find_line): Define.
* vms-alpha.c (alpha_vms_find_line): Define.
* xsym.c (bfd_sym_find_line): Define.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-10-15 07:10:45 +02:00
|
|
|
#define _bfd_ecoff_find_line _bfd_nosymbols_find_line
|
1999-05-03 09:29:11 +02:00
|
|
|
#define _bfd_ecoff_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
|
|
|
|
#define _bfd_ecoff_read_minisymbols _bfd_generic_read_minisymbols
|
|
|
|
#define _bfd_ecoff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
|
2005-05-23 19:44:55 +02:00
|
|
|
#define _bfd_ecoff_find_inliner_info _bfd_nosymbols_find_inliner_info
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define _bfd_ecoff_get_reloc_upper_bound coff_get_reloc_upper_bound
|
|
|
|
extern long _bfd_ecoff_canonicalize_reloc
|
2018-02-13 14:14:47 +01:00
|
|
|
(bfd *, asection *, arelent **, asymbol **);
|
1999-05-03 09:29:11 +02:00
|
|
|
/* ecoff_bfd_reloc_type_lookup defined by backend. */
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_set_arch_mach
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, enum bfd_architecture, unsigned long);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_set_section_contents
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, asection *, const void * location, file_ptr, bfd_size_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2006-06-19 15:17:44 +02:00
|
|
|
extern int _bfd_ecoff_sizeof_headers (bfd *, struct bfd_link_info *);
|
1999-05-03 09:29:11 +02:00
|
|
|
/* ecoff_bfd_get_relocated_section_contents defined by backend. */
|
|
|
|
/* ecoff_bfd_relax_section defined by backend. */
|
|
|
|
extern struct bfd_link_hash_table *_bfd_ecoff_bfd_link_hash_table_create
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_bfd_link_add_symbols
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, struct bfd_link_info *);
|
2002-05-15 02:18:58 +02:00
|
|
|
#define _bfd_ecoff_bfd_link_just_syms _bfd_generic_link_just_syms
|
2009-11-23 15:41:33 +01:00
|
|
|
#define _bfd_ecoff_bfd_copy_link_hash_symbol_type \
|
|
|
|
_bfd_generic_copy_link_hash_symbol_type
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_bfd_final_link
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, struct bfd_link_info *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Hook functions for the generic COFF section reading code. */
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
extern void * _bfd_ecoff_mkobject_hook (bfd *, void *, void *);
|
Remove bfd stub function casts.
This patch defines a bunch of new functions to use in the BFD target
structs rather than casting bfd_false or bfd_true and similar stub
functions. I've also renamed the stub functions to reflect their
parameters and put "error" in the name if they set bfd_error. The
latter change is important since there were quite a few uses of
bfd_false where setting bfd_error was inappropriate, for example in
elf_backend_allow_non_load_phdr and is_target_special_symbol.
* libbfd.c (_bfd_bool_bfd_false_error): Rename from bfd_false.
(_bfd_bool_bfd_true): Rename from bfd_true.
(_bfd_ptr_bfd_null_error): Rename from bfd_nullvoidptr.
(_bfd_int_bfd_0): Rename from bfd_0.
(_bfd_uint_bfd_0): Rename from bfd_0u.
(_bfd_long_bfd_0): Rename from bfd_0l.
(_bfd_long_bfd_n1_error): Rename from _bfd_n1.
(_bfd_void_bfd): Rename from bfd_void.
(_bfd_bool_bfd_false, _bfd_bool_bfd_asymbol_false),
(_bfd_bool_bfd_link_false_error),
(_bfd_bool_bfd_link_true, _bfd_bool_bfd_bfd_true),
(_bfd_bool_bfd_uint_true, _bfd_bool_bfd_ptr_true),
(_bfd_bool_bfd_asection_bfd_asection_true),
(_bfd_bool_bfd_asymbol_bfd_asymbol_true),
(_bfd_void_bfd_link, _bfd_void_bfd_asection): New functions.
* archive.c (_bfd_noarchive_get_elt_at_index),
(_bfd_noarchive_openr_next_archived_file),
(_bfd_noarchive_construct_extended_name_table),
(_bfd_noarchive_write_ar_hdr, _bfd_noarchive_truncate_arname),
(_bfd_noarchive_write_armap): New functions.
* archures.c (_bfd_nowrite_set_arch_mach): New function.
* coff-alpha.c (alpha_ecoff_swap_coff_aux_in),
(alpha_ecoff_swap_coff_sym_in, alpha_ecoff_swap_coff_lineno_in),
(alpha_ecoff_swap_coff_aux_out, alpha_ecoff_swap_coff_sym_out),
(alpha_ecoff_swap_coff_lineno_out),
(alpha_ecoff_swap_coff_reloc_out): New functions.
* coff-mips.c (mips_ecoff_swap_coff_aux_in),
(mips_ecoff_swap_coff_sym_in, mips_ecoff_swap_coff_lineno_in),
(mips_ecoff_swap_coff_aux_out, mips_ecoff_swap_coff_sym_out),
(mips_ecoff_swap_coff_lineno_out),
(mips_ecoff_swap_coff_reloc_out): New functions.
* coffcode.h (coff_set_alignment_hook): Replace define with
new function.
(symname_in_debug_hook): Likewise.
* ecoff.c (_bfd_ecoff_set_alignment_hook): New function.
* elfxx-target.h (elf_backend_allow_non_load_phdr): Default to 0.
* elf.c (assign_file_positions_except_relocs): Test
elf_backend_allow_non_load_phdr for NULL.
* elflink.c (_bfd_elf_omit_section_dynsym_default): Rename from
_bfd_elf_link_omit_section_dynsym. Update uses.
(_bfd_elf_omit_section_dynsym_all): New function.
* elf-bfd.h (_bfd_elf_link_omit_section_dynsym): Delete.
(_bfd_elf_omit_section_dynsym_default): Declare.
(_bfd_elf_omit_section_dynsym_all): Declare.
* linker.c (_bfd_nolink_sizeof_headers, _bfd_nolink_bfd_relax_section),
(_bfd_nolink_bfd_get_relocated_section_contents),
(_bfd_nolink_bfd_lookup_section_flags),
(_bfd_nolink_bfd_is_group_section, _bfd_nolink_bfd_discard_group),
(_bfd_nolink_bfd_link_hash_table_create),
(_bfd_nolink_bfd_link_just_syms),
(_bfd_nolink_bfd_copy_link_hash_symbol_type),
(_bfd_nolink_bfd_link_split_section),
(_bfd_nolink_section_already_linked),
(_bfd_nolink_bfd_define_common_symbol),
(_bfd_nolink_bfd_define_start_stop): New functions.
* reloc.c (_bfd_norelocs_bfd_reloc_type_lookup),
(_bfd_norelocs_bfd_reloc_name_lookup),
(_bfd_nodynamic_canonicalize_dynamic_reloc): New functions.
* section.c (_bfd_nowrite_set_section_contents): New function.
* syms.c (_bfd_nosymbols_canonicalize_symtab),
(_bfd_nosymbols_print_symbol, _bfd_nosymbols_get_symbol_info),
(_bfd_nosymbols_get_symbol_version_string),
(_bfd_nosymbols_bfd_is_local_label_name),
(_bfd_nosymbols_get_lineno, _bfd_nosymbols_find_nearest_line),
(_bfd_nosymbols_find_line, _bfd_nosymbols_find_inliner_info),
(_bfd_nosymbols_bfd_make_debug_symbol),
( _bfd_nosymbols_read_minisymbols),
( _bfd_nosymbols_minisymbol_to_symbol),
(_bfd_nodynamic_get_synthetic_symtab): New functions.
* libbfd-in.h: Declare new functions. Update existing defines,
removing casts.
* aix386-core.c: Update to use new hooks. Formatting.
* aout-adobe.c: Likewise.
* aout-arm.c: Likewise.
* aout-target.h: Likewise.
* aout-tic30.c: Likewise.
* aoutf1.h: Likewise.
* binary.c: Likewise.
* bout.c: Likewise.
* cisco-core.c: Likewise.
* coff-alpha.c: Likewise.
* coff-i386.c: Likewise.
* coff-i860.c: Likewise.
* coff-i960.c: Likewise.
* coff-ia64.c: Likewise.
* coff-mips.c: Likewise.
* coff-ppc.c: Likewise.
* coff-rs6000.c: Likewise.
* coff-sh.c: Likewise.
* coff-tic30.c: Likewise.
* coff-tic54x.c: Likewise.
* coff-x86_64.c: Likewise.
* coff64-rs6000.c: Likewise.
* coffcode.h: Likewise.
* elf-m10300.c: Likewise.
* elf32-cr16.c: Likewise.
* elf32-lm32.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-metag.c: Likewise.
* elf32-score.c: Likewise.
* elf32-score7.c: Likewise.
* elf32-tilepro.c: Likewise.
* elf32-xstormy16.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-alpha.c: Likewise.
* elf64-hppa.c: Likewise.
* elf64-ia64-vms.c: Likewise.
* elf64-mmix.c: Likewise.
* elf64-sh64.c: Likewise.
* elfnn-ia64.c: Likewise.
* elfxx-sparc.c: Likewise.
* elfxx-target.h: Likewise.
* elfxx-tilegx.c: Likewise.
* elfxx-x86.h: Likewise.
* hp300hpux.c: Likewise.
* hppabsd-core.c: Likewise.
* hpux-core.c: Likewise.
* i386msdos.c: Likewise.
* i386os9k.c: Likewise.
* ieee.c: Likewise.
* ihex.c: Likewise.
* irix-core.c: Likewise.
* libaout.h: Likewise.
* libecoff.h: Likewise.
* mach-o-target.c: Likewise.
* mach-o.c: Likewise.
* mipsbsd.c: Likewise.
* mmo.c: Likewise.
* netbsd-core.c: Likewise.
* nlm-target.h: Likewise.
* oasys.c: Likewise.
* osf-core.c: Likewise.
* pdp11.c: Likewise.
* pe-mips.c: Likewise.
* pe-x86_64.c: Likewise.
* pef.c: Likewise.
* plugin.c: Likewise.
* ppcboot.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* som.c: Likewise.
* sparclynx.c: Likewise.
* srec.c: Likewise.
* tekhex.c: Likewise.
* trad-core.c: Likewise.
* verilog.c: Likewise.
* versados.c: Likewise.
* vms-alpha.c: Likewise.
* vms-lib.c: Likewise.
* wasm-module.c: Likewise.
* xsym.c: Likewise.
* libbfd.h: Regenerate.
2018-02-15 01:28:06 +01:00
|
|
|
extern void _bfd_ecoff_set_alignment_hook
|
|
|
|
(bfd *, asection *, void *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_set_arch_mach_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, void *);
|
2009-02-18 19:23:08 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_no_long_sections
|
|
|
|
(bfd *abfd, int enable);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean _bfd_ecoff_styp_to_sec_flags
|
2005-04-21 09:45:39 +02:00
|
|
|
(bfd *, void *, const char *, asection *, flagword *);
|
|
|
|
extern bfd_boolean _bfd_ecoff_slurp_symbol_table (bfd *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* ECOFF auxiliary information swapping routines. These are the same
|
|
|
|
for all ECOFF targets, so they are defined in ecofflink.c. */
|
|
|
|
|
|
|
|
extern void _bfd_ecoff_swap_tir_in
|
2005-04-21 09:45:39 +02:00
|
|
|
(int, const struct tir_ext *, TIR *);
|
1999-05-03 09:29:11 +02:00
|
|
|
extern void _bfd_ecoff_swap_tir_out
|
2005-04-21 09:45:39 +02:00
|
|
|
(int, const TIR *, struct tir_ext *);
|
1999-05-03 09:29:11 +02:00
|
|
|
extern void _bfd_ecoff_swap_rndx_in
|
2005-04-21 09:45:39 +02:00
|
|
|
(int, const struct rndx_ext *, RNDXR *);
|
1999-05-03 09:29:11 +02:00
|
|
|
extern void _bfd_ecoff_swap_rndx_out
|
2005-04-21 09:45:39 +02:00
|
|
|
(int, const RNDXR *, struct rndx_ext *);
|