Home | History | Annotate | Line # | Download | only in bfd
libbfd.h revision 1.3
      1  1.1  christos /* DO NOT EDIT!  -*- buffer-read-only: t -*-  This file is automatically
      2  1.1  christos    generated from "libbfd-in.h", "init.c", "libbfd.c", "bfdio.c",
      3  1.1  christos    "bfdwin.c", "cache.c", "reloc.c", "archures.c" and "elf.c".
      4  1.1  christos    Run "make headers" in your build bfd/ to regenerate.  */
      5  1.1  christos 
      6  1.1  christos /* libbfd.h -- Declarations used by bfd library *implementation*.
      7  1.1  christos    (This include file is not for users of the library.)
      8  1.1  christos 
      9  1.3  christos    Copyright (C) 1990-2015 Free Software Foundation, Inc.
     10  1.1  christos 
     11  1.1  christos    Written by Cygnus Support.
     12  1.1  christos 
     13  1.1  christos    This file is part of BFD, the Binary File Descriptor library.
     14  1.1  christos 
     15  1.1  christos    This program is free software; you can redistribute it and/or modify
     16  1.1  christos    it under the terms of the GNU General Public License as published by
     17  1.1  christos    the Free Software Foundation; either version 3 of the License, or
     18  1.1  christos    (at your option) any later version.
     19  1.1  christos 
     20  1.1  christos    This program is distributed in the hope that it will be useful,
     21  1.1  christos    but WITHOUT ANY WARRANTY; without even the implied warranty of
     22  1.1  christos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     23  1.1  christos    GNU General Public License for more details.
     24  1.1  christos 
     25  1.1  christos    You should have received a copy of the GNU General Public License
     26  1.1  christos    along with this program; if not, write to the Free Software
     27  1.1  christos    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
     28  1.1  christos    MA 02110-1301, USA.  */
     29  1.1  christos 
     30  1.1  christos #include "hashtab.h"
     31  1.1  christos 
     32  1.1  christos /* Align an address upward to a boundary, expressed as a number of bytes.
     33  1.1  christos    E.g. align to an 8-byte boundary with argument of 8.  Take care never
     34  1.1  christos    to wrap around if the address is within boundary-1 of the end of the
     35  1.1  christos    address space.  */
     36  1.1  christos #define BFD_ALIGN(this, boundary)					  \
     37  1.1  christos   ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this))		  \
     38  1.1  christos    ? (((bfd_vma) (this) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary)-1)) \
     39  1.1  christos    : ~ (bfd_vma) 0)
     40  1.1  christos 
     41  1.1  christos /* If you want to read and write large blocks, you might want to do it
     42  1.1  christos    in quanta of this amount */
     43  1.1  christos #define DEFAULT_BUFFERSIZE 8192
     44  1.1  christos 
     45  1.1  christos /* Set a tdata field.  Can't use the other macros for this, since they
     46  1.1  christos    do casts, and casting to the left of assignment isn't portable.  */
     47  1.1  christos #define set_tdata(bfd, v) ((bfd)->tdata.any = (v))
     48  1.1  christos 
     49  1.1  christos /* If BFD_IN_MEMORY is set for a BFD, then the iostream fields points
     50  1.1  christos    to an instance of this structure.  */
     51  1.1  christos 
     52  1.1  christos struct bfd_in_memory
     53  1.1  christos {
     54  1.1  christos   /* Size of buffer.  */
     55  1.1  christos   bfd_size_type size;
     56  1.1  christos   /* Buffer holding contents of BFD.  */
     57  1.1  christos   bfd_byte *buffer;
     58  1.1  christos };
     59  1.1  christos 
     60  1.1  christos struct section_hash_entry
     61  1.1  christos {
     62  1.1  christos   struct bfd_hash_entry root;
     63  1.1  christos   asection section;
     64  1.1  christos };
     65  1.1  christos 
     66  1.1  christos /* tdata for an archive.  For an input archive, cache
     67  1.1  christos    needs to be free()'d.  For an output archive, symdefs do.  */
     68  1.1  christos 
     69  1.1  christos struct artdata
     70  1.1  christos {
     71  1.1  christos   file_ptr first_file_filepos;
     72  1.1  christos   /* Speed up searching the armap */
     73  1.1  christos   htab_t cache;
     74  1.1  christos   bfd *archive_head;		/* Only interesting in output routines.  */
     75  1.1  christos   carsym *symdefs;		/* The symdef entries.  */
     76  1.1  christos   symindex symdef_count;	/* How many there are.  */
     77  1.1  christos   char *extended_names;		/* Clever intel extension.  */
     78  1.1  christos   bfd_size_type extended_names_size; /* Size of extended names.  */
     79  1.1  christos   /* When more compilers are standard C, this can be a time_t.  */
     80  1.1  christos   long  armap_timestamp;	/* Timestamp value written into armap.
     81  1.1  christos 				   This is used for BSD archives to check
     82  1.1  christos 				   that the timestamp is recent enough
     83  1.1  christos 				   for the BSD linker to not complain,
     84  1.1  christos 				   just before we finish writing an
     85  1.1  christos 				   archive.  */
     86  1.1  christos   file_ptr armap_datepos;	/* Position within archive to seek to
     87  1.1  christos 				   rewrite the date field.  */
     88  1.1  christos   void *tdata;			/* Backend specific information.  */
     89  1.1  christos };
     90  1.1  christos 
     91  1.1  christos #define bfd_ardata(bfd) ((bfd)->tdata.aout_ar_data)
     92  1.1  christos 
     93  1.1  christos /* Goes in bfd's arelt_data slot */
     94  1.1  christos struct areltdata
     95  1.1  christos {
     96  1.1  christos   char * arch_header;		/* It's actually a string.  */
     97  1.1  christos   bfd_size_type parsed_size;	/* Octets of filesize not including ar_hdr.  */
     98  1.1  christos   bfd_size_type extra_size;	/* BSD4.4: extra bytes after the header.  */
     99  1.1  christos   char *filename;		/* Null-terminated.  */
    100  1.1  christos   file_ptr origin;		/* For element of a thin archive.  */
    101  1.1  christos   void *parent_cache;		/* Where and how to find this member.  */
    102  1.1  christos   file_ptr key;
    103  1.1  christos };
    104  1.1  christos 
    105  1.1  christos #define arelt_size(bfd) (((struct areltdata *)((bfd)->arelt_data))->parsed_size)
    106  1.1  christos 
    107  1.1  christos extern void *bfd_malloc
    108  1.1  christos   (bfd_size_type);
    109  1.1  christos extern void *bfd_realloc
    110  1.1  christos   (void *, bfd_size_type);
    111  1.1  christos extern void *bfd_realloc_or_free
    112  1.1  christos   (void *, bfd_size_type);
    113  1.1  christos extern void *bfd_zmalloc
    114  1.1  christos   (bfd_size_type);
    115  1.1  christos extern void *bfd_malloc2
    116  1.1  christos   (bfd_size_type, bfd_size_type);
    117  1.1  christos extern void *bfd_realloc2
    118  1.1  christos   (void *, bfd_size_type, bfd_size_type);
    119  1.1  christos extern void *bfd_zmalloc2
    120  1.1  christos   (bfd_size_type, bfd_size_type);
    121  1.1  christos 
    122  1.1  christos extern void _bfd_default_error_handler (const char *s, ...);
    123  1.1  christos extern bfd_error_handler_type _bfd_error_handler;
    124  1.1  christos extern bfd_assert_handler_type _bfd_assert_handler;
    125  1.1  christos 
    126  1.1  christos /* These routines allocate and free things on the BFD's objalloc.  */
    127  1.1  christos 
    128  1.1  christos extern void *bfd_alloc2
    129  1.1  christos   (bfd *, bfd_size_type, bfd_size_type);
    130  1.1  christos extern void *bfd_zalloc2
    131  1.1  christos   (bfd *, bfd_size_type, bfd_size_type);
    132  1.1  christos extern void bfd_release
    133  1.1  christos   (bfd *, void *);
    134  1.1  christos 
    135  1.1  christos bfd * _bfd_create_empty_archive_element_shell
    136  1.1  christos   (bfd *obfd);
    137  1.1  christos bfd * _bfd_look_for_bfd_in_cache
    138  1.1  christos   (bfd *, file_ptr);
    139  1.1  christos bfd_boolean _bfd_add_bfd_to_archive_cache
    140  1.1  christos   (bfd *, file_ptr, bfd *);
    141  1.1  christos bfd_boolean _bfd_generic_mkarchive
    142  1.1  christos   (bfd *abfd);
    143  1.1  christos char *_bfd_append_relative_path
    144  1.1  christos   (bfd *arch, char *elt_name);
    145  1.1  christos const bfd_target *bfd_generic_archive_p
    146  1.1  christos   (bfd *abfd);
    147  1.1  christos bfd_boolean bfd_slurp_armap
    148  1.1  christos   (bfd *abfd);
    149  1.1  christos bfd_boolean bfd_slurp_bsd_armap_f2
    150  1.1  christos   (bfd *abfd);
    151  1.1  christos #define bfd_slurp_bsd_armap bfd_slurp_armap
    152  1.1  christos #define bfd_slurp_coff_armap bfd_slurp_armap
    153  1.1  christos bfd_boolean _bfd_slurp_extended_name_table
    154  1.1  christos   (bfd *abfd);
    155  1.1  christos extern bfd_boolean _bfd_construct_extended_name_table
    156  1.1  christos   (bfd *, bfd_boolean, char **, bfd_size_type *);
    157  1.1  christos bfd_boolean _bfd_write_archive_contents
    158  1.1  christos   (bfd *abfd);
    159  1.1  christos bfd_boolean _bfd_compute_and_write_armap
    160  1.1  christos   (bfd *, unsigned int elength);
    161  1.1  christos bfd *_bfd_get_elt_at_filepos
    162  1.1  christos   (bfd *archive, file_ptr filepos);
    163  1.1  christos extern bfd *_bfd_generic_get_elt_at_index
    164  1.1  christos   (bfd *, symindex);
    165  1.1  christos bfd * _bfd_new_bfd
    166  1.1  christos   (void);
    167  1.1  christos bfd_boolean _bfd_free_cached_info
    168  1.1  christos   (bfd *);
    169  1.1  christos 
    170  1.1  christos bfd_boolean bfd_false
    171  1.1  christos   (bfd *ignore);
    172  1.1  christos bfd_boolean bfd_true
    173  1.1  christos   (bfd *ignore);
    174  1.1  christos void *bfd_nullvoidptr
    175  1.1  christos   (bfd *ignore);
    176  1.1  christos int bfd_0
    177  1.1  christos   (bfd *ignore);
    178  1.1  christos unsigned int bfd_0u
    179  1.1  christos   (bfd *ignore);
    180  1.1  christos long bfd_0l
    181  1.1  christos   (bfd *ignore);
    182  1.1  christos long _bfd_n1
    183  1.1  christos   (bfd *ignore);
    184  1.1  christos void bfd_void
    185  1.1  christos   (bfd *ignore);
    186  1.1  christos 
    187  1.1  christos bfd *_bfd_new_bfd_contained_in
    188  1.1  christos   (bfd *);
    189  1.1  christos const bfd_target *_bfd_dummy_target
    190  1.1  christos   (bfd *abfd);
    191  1.1  christos 
    192  1.1  christos void bfd_dont_truncate_arname
    193  1.1  christos   (bfd *abfd, const char *filename, char *hdr);
    194  1.1  christos void bfd_bsd_truncate_arname
    195  1.1  christos   (bfd *abfd, const char *filename, char *hdr);
    196  1.1  christos void bfd_gnu_truncate_arname
    197  1.1  christos   (bfd *abfd, const char *filename, char *hdr);
    198  1.1  christos 
    199  1.1  christos bfd_boolean bsd_write_armap
    200  1.1  christos   (bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count,
    201  1.1  christos    int stridx);
    202  1.1  christos 
    203  1.1  christos bfd_boolean coff_write_armap
    204  1.1  christos   (bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count,
    205  1.1  christos    int stridx);
    206  1.1  christos 
    207  1.1  christos extern void *_bfd_generic_read_ar_hdr
    208  1.1  christos   (bfd *);
    209  1.1  christos extern void _bfd_ar_spacepad
    210  1.1  christos   (char *, size_t, const char *, long);
    211  1.1  christos extern bfd_boolean _bfd_ar_sizepad
    212  1.1  christos   (char *, size_t, bfd_size_type);
    213  1.1  christos 
    214  1.1  christos extern void *_bfd_generic_read_ar_hdr_mag
    215  1.1  christos   (bfd *, const char *);
    216  1.1  christos 
    217  1.1  christos extern bfd_boolean _bfd_generic_write_ar_hdr
    218  1.1  christos   (bfd *, bfd *);
    219  1.1  christos 
    220  1.1  christos extern bfd_boolean _bfd_bsd44_write_ar_hdr
    221  1.1  christos   (bfd *, bfd *);
    222  1.1  christos 
    223  1.1  christos bfd * bfd_generic_openr_next_archived_file
    224  1.1  christos   (bfd *archive, bfd *last_file);
    225  1.1  christos 
    226  1.1  christos int bfd_generic_stat_arch_elt
    227  1.1  christos   (bfd *, struct stat *);
    228  1.1  christos 
    229  1.1  christos #define _bfd_read_ar_hdr(abfd) \
    230  1.1  christos   BFD_SEND (abfd, _bfd_read_ar_hdr_fn, (abfd))
    231  1.1  christos #define _bfd_write_ar_hdr(archive, abfd)         \
    232  1.1  christos   BFD_SEND (abfd, _bfd_write_ar_hdr_fn, (archive, abfd))
    233  1.1  christos 
    234  1.1  christos /* Generic routines to use for BFD_JUMP_TABLE_GENERIC.  Use
    236  1.1  christos    BFD_JUMP_TABLE_GENERIC (_bfd_generic).  */
    237  1.1  christos 
    238  1.1  christos #define _bfd_generic_close_and_cleanup _bfd_archive_close_and_cleanup
    239  1.1  christos extern bfd_boolean _bfd_archive_close_and_cleanup
    240  1.1  christos   (bfd *);
    241  1.1  christos #define _bfd_generic_bfd_free_cached_info bfd_true
    242  1.1  christos extern bfd_boolean _bfd_generic_new_section_hook
    243  1.1  christos   (bfd *, asection *);
    244  1.1  christos extern bfd_boolean _bfd_generic_get_section_contents
    245  1.1  christos   (bfd *, asection *, void *, file_ptr, bfd_size_type);
    246  1.1  christos extern bfd_boolean _bfd_generic_get_section_contents_in_window
    247  1.1  christos   (bfd *, asection *, bfd_window *, file_ptr, bfd_size_type);
    248  1.1  christos 
    249  1.1  christos /* Generic routines to use for BFD_JUMP_TABLE_COPY.  Use
    250  1.1  christos    BFD_JUMP_TABLE_COPY (_bfd_generic).  */
    251  1.1  christos 
    252  1.1  christos #define _bfd_generic_bfd_copy_private_bfd_data \
    253  1.1  christos   ((bfd_boolean (*) (bfd *, bfd *)) bfd_true)
    254  1.1  christos #define _bfd_generic_bfd_merge_private_bfd_data \
    255  1.1  christos   ((bfd_boolean (*) (bfd *, bfd *)) bfd_true)
    256  1.1  christos #define _bfd_generic_bfd_set_private_flags \
    257  1.1  christos   ((bfd_boolean (*) (bfd *, flagword)) bfd_true)
    258  1.1  christos #define _bfd_generic_bfd_copy_private_section_data \
    259  1.1  christos   ((bfd_boolean (*) (bfd *, asection *, bfd *, asection *)) bfd_true)
    260  1.1  christos #define _bfd_generic_bfd_copy_private_symbol_data \
    261  1.1  christos   ((bfd_boolean (*) (bfd *, asymbol *, bfd *, asymbol *)) bfd_true)
    262  1.1  christos #define _bfd_generic_bfd_copy_private_header_data \
    263  1.1  christos   ((bfd_boolean (*) (bfd *, bfd *)) bfd_true)
    264  1.1  christos #define _bfd_generic_bfd_print_private_bfd_data \
    265  1.1  christos   ((bfd_boolean (*) (bfd *, void *)) bfd_true)
    266  1.1  christos 
    267  1.1  christos extern bfd_boolean _bfd_generic_init_private_section_data
    268  1.1  christos   (bfd *, asection *, bfd *, asection *, struct bfd_link_info *);
    269  1.1  christos 
    270  1.1  christos /* Routines to use for BFD_JUMP_TABLE_CORE when there is no core file
    271  1.1  christos    support.  Use BFD_JUMP_TABLE_CORE (_bfd_nocore).  */
    272  1.1  christos 
    273  1.1  christos extern char *_bfd_nocore_core_file_failing_command
    274  1.1  christos   (bfd *);
    275  1.1  christos extern int _bfd_nocore_core_file_failing_signal
    276  1.1  christos   (bfd *);
    277  1.1  christos extern bfd_boolean _bfd_nocore_core_file_matches_executable_p
    278  1.1  christos   (bfd *, bfd *);
    279  1.1  christos extern int _bfd_nocore_core_file_pid
    280  1.1  christos   (bfd *);
    281  1.1  christos 
    282  1.1  christos /* Routines to use for BFD_JUMP_TABLE_ARCHIVE when there is no archive
    283  1.1  christos    file support.  Use BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive).  */
    284  1.1  christos 
    285  1.1  christos #define _bfd_noarchive_slurp_armap bfd_false
    286  1.1  christos #define _bfd_noarchive_slurp_extended_name_table bfd_false
    287  1.1  christos #define _bfd_noarchive_construct_extended_name_table \
    288  1.1  christos   ((bfd_boolean (*) (bfd *, char **, bfd_size_type *, const char **)) \
    289  1.1  christos    bfd_false)
    290  1.1  christos #define _bfd_noarchive_truncate_arname \
    291  1.1  christos   ((void (*) (bfd *, const char *, char *)) bfd_void)
    292  1.1  christos #define _bfd_noarchive_write_armap \
    293  1.1  christos   ((bfd_boolean (*) (bfd *, unsigned int, struct orl *, unsigned int, int)) \
    294  1.1  christos    bfd_false)
    295  1.1  christos #define _bfd_noarchive_read_ar_hdr bfd_nullvoidptr
    296  1.1  christos #define _bfd_noarchive_write_ar_hdr \
    297  1.1  christos   ((bfd_boolean (*) (bfd *, bfd *)) bfd_false)
    298  1.1  christos #define _bfd_noarchive_openr_next_archived_file \
    299  1.1  christos   ((bfd *(*) (bfd *, bfd *)) bfd_nullvoidptr)
    300  1.1  christos #define _bfd_noarchive_get_elt_at_index \
    301  1.1  christos   ((bfd *(*) (bfd *, symindex)) bfd_nullvoidptr)
    302  1.1  christos #define _bfd_noarchive_generic_stat_arch_elt bfd_generic_stat_arch_elt
    303  1.1  christos #define _bfd_noarchive_update_armap_timestamp bfd_false
    304  1.1  christos 
    305  1.1  christos /* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD style
    306  1.1  christos    archives.  Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd).  */
    307  1.1  christos 
    308  1.1  christos #define _bfd_archive_bsd_slurp_armap bfd_slurp_bsd_armap
    309  1.1  christos #define _bfd_archive_bsd_slurp_extended_name_table \
    310  1.1  christos   _bfd_slurp_extended_name_table
    311  1.1  christos extern bfd_boolean _bfd_archive_bsd_construct_extended_name_table
    312  1.1  christos   (bfd *, char **, bfd_size_type *, const char **);
    313  1.1  christos #define _bfd_archive_bsd_truncate_arname bfd_bsd_truncate_arname
    314  1.1  christos #define _bfd_archive_bsd_write_armap bsd_write_armap
    315  1.1  christos #define _bfd_archive_bsd_read_ar_hdr _bfd_generic_read_ar_hdr
    316  1.1  christos #define _bfd_archive_bsd_write_ar_hdr _bfd_generic_write_ar_hdr
    317  1.1  christos #define _bfd_archive_bsd_openr_next_archived_file \
    318  1.1  christos   bfd_generic_openr_next_archived_file
    319  1.1  christos #define _bfd_archive_bsd_get_elt_at_index _bfd_generic_get_elt_at_index
    320  1.1  christos #define _bfd_archive_bsd_generic_stat_arch_elt \
    321  1.1  christos   bfd_generic_stat_arch_elt
    322  1.1  christos extern bfd_boolean _bfd_archive_bsd_update_armap_timestamp
    323  1.1  christos   (bfd *);
    324  1.1  christos 
    325  1.1  christos /* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get COFF style
    326  1.1  christos    archives.  Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff).  */
    327  1.1  christos 
    328  1.1  christos #define _bfd_archive_coff_slurp_armap bfd_slurp_coff_armap
    329  1.1  christos #define _bfd_archive_coff_slurp_extended_name_table \
    330  1.1  christos   _bfd_slurp_extended_name_table
    331  1.1  christos extern bfd_boolean _bfd_archive_coff_construct_extended_name_table
    332  1.1  christos   (bfd *, char **, bfd_size_type *, const char **);
    333  1.1  christos #define _bfd_archive_coff_truncate_arname bfd_dont_truncate_arname
    334  1.1  christos #define _bfd_archive_coff_write_armap coff_write_armap
    335  1.1  christos #define _bfd_archive_coff_read_ar_hdr _bfd_generic_read_ar_hdr
    336  1.1  christos #define _bfd_archive_coff_write_ar_hdr _bfd_generic_write_ar_hdr
    337  1.1  christos #define _bfd_archive_coff_openr_next_archived_file \
    338  1.1  christos   bfd_generic_openr_next_archived_file
    339  1.1  christos #define _bfd_archive_coff_get_elt_at_index _bfd_generic_get_elt_at_index
    340  1.1  christos #define _bfd_archive_coff_generic_stat_arch_elt \
    341  1.1  christos   bfd_generic_stat_arch_elt
    342  1.1  christos #define _bfd_archive_coff_update_armap_timestamp bfd_true
    343  1.1  christos 
    344  1.1  christos /* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD4.4 style
    345  1.1  christos    archives.  Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd44).  */
    346  1.1  christos 
    347  1.1  christos #define _bfd_archive_bsd44_slurp_armap bfd_slurp_bsd_armap
    348  1.1  christos #define _bfd_archive_bsd44_slurp_extended_name_table \
    349  1.1  christos   _bfd_slurp_extended_name_table
    350  1.1  christos extern bfd_boolean _bfd_archive_bsd44_construct_extended_name_table
    351  1.1  christos   (bfd *, char **, bfd_size_type *, const char **);
    352  1.1  christos #define _bfd_archive_bsd44_truncate_arname bfd_bsd_truncate_arname
    353  1.1  christos #define _bfd_archive_bsd44_write_armap bsd_write_armap
    354  1.1  christos #define _bfd_archive_bsd44_read_ar_hdr _bfd_generic_read_ar_hdr
    355  1.1  christos #define _bfd_archive_bsd44_write_ar_hdr _bfd_bsd44_write_ar_hdr
    356  1.1  christos #define _bfd_archive_bsd44_openr_next_archived_file \
    357  1.1  christos   bfd_generic_openr_next_archived_file
    358  1.1  christos #define _bfd_archive_bsd44_get_elt_at_index _bfd_generic_get_elt_at_index
    359  1.1  christos #define _bfd_archive_bsd44_generic_stat_arch_elt \
    360  1.1  christos   bfd_generic_stat_arch_elt
    361  1.1  christos #define _bfd_archive_bsd44_update_armap_timestamp \
    362  1.1  christos   _bfd_archive_bsd_update_armap_timestamp
    363  1.1  christos 
    364  1.1  christos /* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get VMS style
    365  1.1  christos    archives.  Use BFD_JUMP_TABLE_ARCHIVE (_bfd_vms_lib).  Some of them
    366  1.1  christos    are irrelevant and never called, so defined as NULL.  */
    367  1.1  christos 
    368  1.1  christos extern bfd_boolean _bfd_vms_lib_write_archive_contents (bfd *arch);
    369  1.1  christos #define _bfd_vms_lib_slurp_armap NULL
    370  1.1  christos #define _bfd_vms_lib_slurp_extended_name_table NULL
    371  1.1  christos #define _bfd_vms_lib_construct_extended_name_table NULL
    372  1.1  christos #define _bfd_vms_lib_truncate_arname NULL
    373  1.1  christos #define _bfd_vms_lib_write_armap NULL
    374  1.1  christos #define _bfd_vms_lib_read_ar_hdr NULL
    375  1.1  christos #define _bfd_vms_lib_write_ar_hdr NULL
    376  1.1  christos extern bfd *_bfd_vms_lib_openr_next_archived_file (bfd *, bfd *);
    377  1.1  christos extern bfd *_bfd_vms_lib_get_elt_at_index (bfd *, symindex);
    378  1.1  christos extern int _bfd_vms_lib_generic_stat_arch_elt (bfd *, struct stat *);
    379  1.1  christos #define _bfd_vms_lib_update_armap_timestamp bfd_true
    380  1.1  christos 
    381  1.1  christos /* Extra routines for VMS style archives.  */
    382  1.1  christos 
    383  1.1  christos extern symindex _bfd_vms_lib_find_symbol (bfd *, const char *);
    384  1.1  christos extern bfd *_bfd_vms_lib_get_imagelib_file (bfd *);
    385  1.1  christos extern const bfd_target *_bfd_vms_lib_alpha_archive_p (bfd *abfd);
    386  1.1  christos extern const bfd_target *_bfd_vms_lib_ia64_archive_p (bfd *abfd);
    387  1.1  christos extern bfd_boolean _bfd_vms_lib_alpha_mkarchive (bfd *abfd);
    388  1.1  christos extern bfd_boolean _bfd_vms_lib_ia64_mkarchive (bfd *abfd);
    389  1.1  christos 
    390  1.1  christos /* Routines to use for BFD_JUMP_TABLE_SYMBOLS where there is no symbol
    391  1.1  christos    support.  Use BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols).  */
    392  1.1  christos 
    393  1.1  christos #define _bfd_nosymbols_get_symtab_upper_bound _bfd_n1
    394  1.1  christos #define _bfd_nosymbols_canonicalize_symtab \
    395  1.1  christos   ((long (*) (bfd *, asymbol **)) _bfd_n1)
    396  1.1  christos #define _bfd_nosymbols_make_empty_symbol _bfd_generic_make_empty_symbol
    397  1.1  christos #define _bfd_nosymbols_print_symbol \
    398  1.1  christos   ((void (*) (bfd *, void *, asymbol *, bfd_print_symbol_type)) bfd_void)
    399  1.1  christos #define _bfd_nosymbols_get_symbol_info \
    400  1.3  christos   ((void (*) (bfd *, asymbol *, symbol_info *)) bfd_void)
    401  1.3  christos #define _bfd_nosymbols_get_symbol_version_string \
    402  1.1  christos   ((const char *(*) (bfd *, asymbol *, bfd_boolean *)) bfd_nullvoidptr)
    403  1.1  christos #define _bfd_nosymbols_bfd_is_local_label_name \
    404  1.1  christos   ((bfd_boolean (*) (bfd *, const char *)) bfd_false)
    405  1.1  christos #define _bfd_nosymbols_bfd_is_target_special_symbol \
    406  1.1  christos   ((bfd_boolean (*) (bfd *, asymbol *)) bfd_false)
    407  1.1  christos #define _bfd_nosymbols_get_lineno \
    408  1.1  christos   ((alent *(*) (bfd *, asymbol *)) bfd_nullvoidptr)
    409  1.3  christos #define _bfd_nosymbols_find_nearest_line \
    410  1.3  christos   ((bfd_boolean (*) (bfd *, asymbol **, asection *, bfd_vma,		\
    411  1.3  christos 		     const char **, const char **, unsigned int *,	\
    412  1.3  christos 		     unsigned int *))					\
    413  1.3  christos    bfd_false)
    414  1.3  christos #define _bfd_nosymbols_find_line \
    415  1.3  christos   ((bfd_boolean (*) (bfd *, asymbol **, asymbol *,	\
    416  1.1  christos 		     const char **, unsigned int *))	\
    417  1.1  christos    bfd_false)
    418  1.1  christos #define _bfd_nosymbols_find_inliner_info \
    419  1.1  christos   ((bfd_boolean (*) (bfd *, const char **, const char **, unsigned int *)) \
    420  1.1  christos    bfd_false)
    421  1.1  christos #define _bfd_nosymbols_bfd_make_debug_symbol \
    422  1.1  christos   ((asymbol *(*) (bfd *, void *, unsigned long)) bfd_nullvoidptr)
    423  1.1  christos #define _bfd_nosymbols_read_minisymbols \
    424  1.1  christos   ((long (*) (bfd *, bfd_boolean, void **, unsigned int *)) _bfd_n1)
    425  1.1  christos #define _bfd_nosymbols_minisymbol_to_symbol \
    426  1.1  christos   ((asymbol *(*) (bfd *, bfd_boolean, const void *, asymbol *)) \
    427  1.1  christos    bfd_nullvoidptr)
    428  1.1  christos 
    429  1.1  christos /* Routines to use for BFD_JUMP_TABLE_RELOCS when there is no reloc
    430  1.1  christos    support.  Use BFD_JUMP_TABLE_RELOCS (_bfd_norelocs).  */
    431  1.1  christos 
    432  1.1  christos extern long _bfd_norelocs_get_reloc_upper_bound (bfd *, asection *);
    433  1.1  christos extern long _bfd_norelocs_canonicalize_reloc (bfd *, asection *,
    434  1.1  christos 					      arelent **, asymbol **);
    435  1.1  christos #define _bfd_norelocs_bfd_reloc_type_lookup \
    436  1.1  christos   ((reloc_howto_type *(*) (bfd *, bfd_reloc_code_real_type)) bfd_nullvoidptr)
    437  1.1  christos #define _bfd_norelocs_bfd_reloc_name_lookup \
    438  1.1  christos   ((reloc_howto_type *(*) (bfd *, const char *)) bfd_nullvoidptr)
    439  1.1  christos 
    440  1.1  christos /* Routines to use for BFD_JUMP_TABLE_WRITE for targets which may not
    441  1.1  christos    be written.  Use BFD_JUMP_TABLE_WRITE (_bfd_nowrite).  */
    442  1.1  christos 
    443  1.1  christos #define _bfd_nowrite_set_arch_mach \
    444  1.1  christos   ((bfd_boolean (*) (bfd *, enum bfd_architecture, unsigned long)) \
    445  1.1  christos    bfd_false)
    446  1.1  christos #define _bfd_nowrite_set_section_contents \
    447  1.1  christos   ((bfd_boolean (*) (bfd *, asection *, const void *, file_ptr, bfd_size_type)) \
    448  1.1  christos    bfd_false)
    449  1.1  christos 
    450  1.1  christos /* Generic routines to use for BFD_JUMP_TABLE_WRITE.  Use
    451  1.1  christos    BFD_JUMP_TABLE_WRITE (_bfd_generic).  */
    452  1.1  christos 
    453  1.1  christos #define _bfd_generic_set_arch_mach bfd_default_set_arch_mach
    454  1.1  christos extern bfd_boolean _bfd_generic_set_section_contents
    455  1.1  christos   (bfd *, asection *, const void *, file_ptr, bfd_size_type);
    456  1.1  christos 
    457  1.1  christos /* Routines to use for BFD_JUMP_TABLE_LINK for targets which do not
    458  1.1  christos    support linking.  Use BFD_JUMP_TABLE_LINK (_bfd_nolink).  */
    459  1.1  christos 
    460  1.1  christos #define _bfd_nolink_sizeof_headers \
    461  1.1  christos   ((int (*) (bfd *, struct bfd_link_info *)) bfd_0)
    462  1.1  christos #define _bfd_nolink_bfd_get_relocated_section_contents \
    463  1.1  christos   ((bfd_byte *(*) (bfd *, struct bfd_link_info *, struct bfd_link_order *, \
    464  1.1  christos 		   bfd_byte *, bfd_boolean, asymbol **)) \
    465  1.1  christos    bfd_nullvoidptr)
    466  1.1  christos #define _bfd_nolink_bfd_relax_section \
    467  1.1  christos   ((bfd_boolean (*) \
    468  1.1  christos     (bfd *, asection *, struct bfd_link_info *, bfd_boolean *)) \
    469  1.1  christos    bfd_false)
    470  1.1  christos #define _bfd_nolink_bfd_gc_sections \
    471  1.1  christos   ((bfd_boolean (*) (bfd *, struct bfd_link_info *)) \
    472  1.1  christos    bfd_false)
    473  1.1  christos #define _bfd_nolink_bfd_lookup_section_flags \
    474  1.1  christos   ((bfd_boolean (*) (struct bfd_link_info *, struct flag_info *, asection *)) \
    475  1.1  christos    bfd_0)
    476  1.1  christos #define _bfd_nolink_bfd_merge_sections \
    477  1.1  christos   ((bfd_boolean (*) (bfd *, struct bfd_link_info *)) \
    478  1.1  christos    bfd_false)
    479  1.1  christos #define _bfd_nolink_bfd_is_group_section \
    480  1.1  christos   ((bfd_boolean (*) (bfd *, const struct bfd_section *)) \
    481  1.1  christos    bfd_false)
    482  1.1  christos #define _bfd_nolink_bfd_discard_group \
    483  1.1  christos   ((bfd_boolean (*) (bfd *, struct bfd_section *)) \
    484  1.1  christos    bfd_false)
    485  1.1  christos #define _bfd_nolink_bfd_link_hash_table_create \
    486  1.1  christos   ((struct bfd_link_hash_table *(*) (bfd *)) bfd_nullvoidptr)
    487  1.1  christos #define _bfd_nolink_bfd_link_add_symbols \
    488  1.1  christos   ((bfd_boolean (*) (bfd *, struct bfd_link_info *)) bfd_false)
    489  1.1  christos #define _bfd_nolink_bfd_link_just_syms \
    490  1.1  christos   ((void (*) (asection *, struct bfd_link_info *)) bfd_void)
    491  1.1  christos #define _bfd_nolink_bfd_copy_link_hash_symbol_type \
    492  1.1  christos   ((void (*) (bfd *, struct bfd_link_hash_entry *, \
    493  1.1  christos 	      struct bfd_link_hash_entry *)) bfd_void)
    494  1.1  christos #define _bfd_nolink_bfd_final_link \
    495  1.1  christos   ((bfd_boolean (*) (bfd *, struct bfd_link_info *)) bfd_false)
    496  1.1  christos #define _bfd_nolink_bfd_link_split_section \
    497  1.1  christos   ((bfd_boolean (*) (bfd *, struct bfd_section *)) bfd_false)
    498  1.1  christos #define _bfd_nolink_section_already_linked \
    499  1.1  christos   ((bfd_boolean (*) (bfd *, asection *, \
    500  1.1  christos 		     struct bfd_link_info *)) bfd_false)
    501  1.1  christos #define _bfd_nolink_bfd_define_common_symbol \
    502  1.1  christos   ((bfd_boolean (*) (bfd *, struct bfd_link_info *, \
    503  1.1  christos 		     struct bfd_link_hash_entry *)) bfd_false)
    504  1.1  christos 
    505  1.1  christos /* Routines to use for BFD_JUMP_TABLE_DYNAMIC for targets which do not
    506  1.1  christos    have dynamic symbols or relocs.  Use BFD_JUMP_TABLE_DYNAMIC
    507  1.1  christos    (_bfd_nodynamic).  */
    508  1.1  christos 
    509  1.1  christos #define _bfd_nodynamic_get_dynamic_symtab_upper_bound _bfd_n1
    510  1.1  christos #define _bfd_nodynamic_canonicalize_dynamic_symtab \
    511  1.1  christos   ((long (*) (bfd *, asymbol **)) _bfd_n1)
    512  1.1  christos #define _bfd_nodynamic_get_synthetic_symtab \
    513  1.1  christos   ((long (*) (bfd *, long, asymbol **, long, asymbol **, asymbol **)) _bfd_n1)
    514  1.1  christos #define _bfd_nodynamic_get_dynamic_reloc_upper_bound _bfd_n1
    515  1.1  christos #define _bfd_nodynamic_canonicalize_dynamic_reloc \
    516  1.1  christos   ((long (*) (bfd *, arelent **, asymbol **)) _bfd_n1)
    517  1.1  christos 
    518  1.1  christos /* Generic routine to determine of the given symbol is a local
    520  1.1  christos    label.  */
    521  1.1  christos extern bfd_boolean bfd_generic_is_local_label_name
    522  1.1  christos   (bfd *, const char *);
    523  1.1  christos 
    524  1.1  christos /* Generic minisymbol routines.  */
    525  1.1  christos extern long _bfd_generic_read_minisymbols
    526  1.1  christos   (bfd *, bfd_boolean, void **, unsigned int *);
    527  1.1  christos extern asymbol *_bfd_generic_minisymbol_to_symbol
    528  1.1  christos   (bfd *, bfd_boolean, const void *, asymbol *);
    529  1.1  christos 
    530  1.1  christos /* Find the nearest line using .stab/.stabstr sections.  */
    531  1.1  christos extern bfd_boolean _bfd_stab_section_find_nearest_line
    532  1.1  christos   (bfd *, asymbol **, asection *, bfd_vma, bfd_boolean *,
    533  1.1  christos    const char **, const char **, unsigned int *, void **);
    534  1.1  christos 
    535  1.3  christos /* Find the nearest line using DWARF 1 debugging information.  */
    536  1.3  christos extern bfd_boolean _bfd_dwarf1_find_nearest_line
    537  1.1  christos   (bfd *, asymbol **, asection *, bfd_vma,
    538  1.1  christos    const char **, const char **, unsigned int *);
    539  1.1  christos 
    540  1.1  christos struct dwarf_debug_section
    541  1.1  christos {
    542  1.1  christos   const char *uncompressed_name;
    543  1.1  christos   const char *compressed_name;
    544  1.1  christos };
    545  1.1  christos 
    546  1.1  christos /* Map of uncompressed DWARF debug section name to compressed one.  It
    547  1.1  christos    is terminated by NULL uncompressed_name.  */
    548  1.1  christos 
    549  1.1  christos extern const struct dwarf_debug_section dwarf_debug_sections[];
    550  1.1  christos 
    551  1.3  christos /* Find the nearest line using DWARF 2 debugging information.  */
    552  1.3  christos extern bfd_boolean _bfd_dwarf2_find_nearest_line
    553  1.3  christos   (bfd *, asymbol **, asymbol *, asection *, bfd_vma,
    554  1.1  christos    const char **, const char **, unsigned int *, unsigned int *,
    555  1.1  christos    const struct dwarf_debug_section *, unsigned int, void **);
    556  1.1  christos 
    557  1.1  christos /* Find inliner info after calling bfd_find_nearest_line. */
    558  1.1  christos extern bfd_boolean _bfd_dwarf2_find_inliner_info
    559  1.1  christos   (bfd *, const char **, const char **, unsigned int *, void **);
    560  1.1  christos 
    561  1.3  christos /* Read DWARF 2 debugging information. */
    562  1.3  christos extern bfd_boolean _bfd_dwarf2_slurp_debug_info
    563  1.1  christos   (bfd *, bfd *, const struct dwarf_debug_section *, asymbol **, void **,
    564  1.1  christos    bfd_boolean);
    565  1.1  christos 
    566  1.1  christos /* Clean up the data used to handle DWARF 2 debugging information. */
    567  1.1  christos extern void _bfd_dwarf2_cleanup_debug_info
    568  1.1  christos   (bfd *, void **);
    569  1.1  christos 
    570  1.1  christos /* Create a new section entry.  */
    571  1.1  christos extern struct bfd_hash_entry *bfd_section_hash_newfunc
    572  1.1  christos   (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
    573  1.1  christos 
    574  1.1  christos /* A routine to create entries for a bfd_link_hash_table.  */
    575  1.1  christos extern struct bfd_hash_entry *_bfd_link_hash_newfunc
    576  1.1  christos   (struct bfd_hash_entry *entry, struct bfd_hash_table *table,
    577  1.1  christos    const char *string);
    578  1.1  christos 
    579  1.1  christos /* Initialize a bfd_link_hash_table.  */
    580  1.1  christos extern bfd_boolean _bfd_link_hash_table_init
    581  1.1  christos   (struct bfd_link_hash_table *, bfd *,
    582  1.1  christos    struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
    583  1.1  christos 			       struct bfd_hash_table *,
    584  1.1  christos 			       const char *),
    585  1.1  christos    unsigned int);
    586  1.1  christos 
    587  1.1  christos /* Generic link hash table creation routine.  */
    588  1.1  christos extern struct bfd_link_hash_table *_bfd_generic_link_hash_table_create
    589  1.1  christos   (bfd *);
    590  1.1  christos 
    591  1.3  christos /* Generic link hash table destruction routine.  */
    592  1.1  christos extern void _bfd_generic_link_hash_table_free
    593  1.1  christos   (bfd *);
    594  1.1  christos 
    595  1.1  christos /* Generic add symbol routine.  */
    596  1.1  christos extern bfd_boolean _bfd_generic_link_add_symbols
    597  1.1  christos   (bfd *, struct bfd_link_info *);
    598  1.1  christos 
    599  1.1  christos /* Generic add symbol routine.  This version is used by targets for
    600  1.1  christos    which the linker must collect constructors and destructors by name,
    601  1.1  christos    as the collect2 program does.  */
    602  1.1  christos extern bfd_boolean _bfd_generic_link_add_symbols_collect
    603  1.1  christos   (bfd *, struct bfd_link_info *);
    604  1.1  christos 
    605  1.1  christos /* Generic archive add symbol routine.  */
    606  1.3  christos extern bfd_boolean _bfd_generic_link_add_archive_symbols
    607  1.3  christos   (bfd *, struct bfd_link_info *,
    608  1.3  christos    bfd_boolean (*) (bfd *, struct bfd_link_info *,
    609  1.1  christos 		    struct bfd_link_hash_entry *, const char *,
    610  1.1  christos 		    bfd_boolean *));
    611  1.1  christos 
    612  1.1  christos /* Forward declaration to avoid prototype errors.  */
    613  1.1  christos typedef struct bfd_link_hash_entry _bfd_link_hash_entry;
    614  1.1  christos 
    615  1.1  christos /* Generic routine to add a single symbol.  */
    616  1.1  christos extern bfd_boolean _bfd_generic_link_add_one_symbol
    617  1.1  christos   (struct bfd_link_info *, bfd *, const char *name, flagword,
    618  1.1  christos    asection *, bfd_vma, const char *, bfd_boolean copy,
    619  1.1  christos    bfd_boolean constructor, struct bfd_link_hash_entry **);
    620  1.1  christos 
    621  1.1  christos /* Generic routine to mark section as supplying symbols only.  */
    622  1.1  christos extern void _bfd_generic_link_just_syms
    623  1.1  christos   (asection *, struct bfd_link_info *);
    624  1.1  christos 
    625  1.1  christos /* Generic routine that does nothing.  */
    626  1.1  christos extern void _bfd_generic_copy_link_hash_symbol_type
    627  1.1  christos   (bfd *, struct bfd_link_hash_entry *, struct bfd_link_hash_entry *);
    628  1.1  christos 
    629  1.1  christos /* Generic link routine.  */
    630  1.1  christos extern bfd_boolean _bfd_generic_final_link
    631  1.1  christos   (bfd *, struct bfd_link_info *);
    632  1.1  christos 
    633  1.1  christos extern bfd_boolean _bfd_generic_link_split_section
    634  1.1  christos   (bfd *, struct bfd_section *);
    635  1.1  christos 
    636  1.1  christos extern bfd_boolean _bfd_generic_section_already_linked
    637  1.1  christos   (bfd *, asection *, struct bfd_link_info *);
    638  1.1  christos 
    639  1.1  christos /* Generic reloc_link_order processing routine.  */
    640  1.1  christos extern bfd_boolean _bfd_generic_reloc_link_order
    641  1.1  christos   (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *);
    642  1.1  christos 
    643  1.1  christos /* Default link order processing routine.  */
    644  1.1  christos extern bfd_boolean _bfd_default_link_order
    645  1.1  christos   (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *);
    646  1.1  christos 
    647  1.1  christos /* Count the number of reloc entries in a link order list.  */
    648  1.1  christos extern unsigned int _bfd_count_link_order_relocs
    649  1.1  christos   (struct bfd_link_order *);
    650  1.1  christos 
    651  1.1  christos /* Final link relocation routine.  */
    652  1.1  christos extern bfd_reloc_status_type _bfd_final_link_relocate
    653  1.1  christos   (reloc_howto_type *, bfd *, asection *, bfd_byte *,
    654  1.1  christos    bfd_vma, bfd_vma, bfd_vma);
    655  1.1  christos 
    656  1.1  christos /* Relocate a particular location by a howto and a value.  */
    657  1.1  christos extern bfd_reloc_status_type _bfd_relocate_contents
    658  1.1  christos   (reloc_howto_type *, bfd *, bfd_vma, bfd_byte *);
    659  1.1  christos 
    660  1.1  christos /* Clear a given location using a given howto.  */
    661  1.1  christos extern void _bfd_clear_contents (reloc_howto_type *howto, bfd *input_bfd,
    662  1.1  christos 				 asection *input_section, bfd_byte *location);
    663  1.1  christos 
    664  1.1  christos /* Link stabs in sections in the first pass.  */
    665  1.1  christos 
    666  1.1  christos extern bfd_boolean _bfd_link_section_stabs
    667  1.1  christos   (bfd *, struct stab_info *, asection *, asection *, void **,
    668  1.1  christos    bfd_size_type *);
    669  1.1  christos 
    670  1.1  christos /* Eliminate stabs for discarded functions and symbols.  */
    671  1.1  christos extern bfd_boolean _bfd_discard_section_stabs
    672  1.1  christos   (bfd *, asection *, void *, bfd_boolean (*) (bfd_vma, void *), void *);
    673  1.1  christos 
    674  1.1  christos /* Write out the .stab section when linking stabs in sections.  */
    675  1.1  christos 
    676  1.1  christos extern bfd_boolean _bfd_write_section_stabs
    677  1.1  christos   (bfd *, struct stab_info *, asection *, void **, bfd_byte *);
    678  1.1  christos 
    679  1.1  christos /* Write out the .stabstr string table when linking stabs in sections.  */
    680  1.1  christos 
    681  1.1  christos extern bfd_boolean _bfd_write_stab_strings
    682  1.1  christos   (bfd *, struct stab_info *);
    683  1.1  christos 
    684  1.1  christos /* Find an offset within a .stab section when linking stabs in
    685  1.1  christos    sections.  */
    686  1.1  christos 
    687  1.1  christos extern bfd_vma _bfd_stab_section_offset
    688  1.1  christos   (asection *, void *, bfd_vma);
    689  1.1  christos 
    690  1.1  christos /* Register a SEC_MERGE section as a candidate for merging.  */
    691  1.1  christos 
    692  1.1  christos extern bfd_boolean _bfd_add_merge_section
    693  1.1  christos   (bfd *, void **, asection *, void **);
    694  1.1  christos 
    695  1.1  christos /* Attempt to merge SEC_MERGE sections.  */
    696  1.1  christos 
    697  1.1  christos extern bfd_boolean _bfd_merge_sections
    698  1.1  christos   (bfd *, struct bfd_link_info *, void *, void (*) (bfd *, asection *));
    699  1.1  christos 
    700  1.1  christos /* Write out a merged section.  */
    701  1.1  christos 
    702  1.1  christos extern bfd_boolean _bfd_write_merged_section
    703  1.1  christos   (bfd *, asection *, void *);
    704  1.1  christos 
    705  1.1  christos /* Find an offset within a modified SEC_MERGE section.  */
    706  1.1  christos 
    707  1.1  christos extern bfd_vma _bfd_merged_section_offset
    708  1.1  christos   (bfd *, asection **, void *, bfd_vma);
    709  1.1  christos 
    710  1.1  christos /* Tidy up when done.  */
    711  1.1  christos 
    712  1.1  christos extern void _bfd_merge_sections_free (void *);
    713  1.1  christos 
    714  1.1  christos /* Create a string table.  */
    715  1.1  christos extern struct bfd_strtab_hash *_bfd_stringtab_init
    716  1.1  christos   (void);
    717  1.1  christos 
    718  1.1  christos /* Create an XCOFF .debug section style string table.  */
    719  1.1  christos extern struct bfd_strtab_hash *_bfd_xcoff_stringtab_init
    720  1.1  christos   (void);
    721  1.1  christos 
    722  1.1  christos /* Free a string table.  */
    723  1.1  christos extern void _bfd_stringtab_free
    724  1.1  christos   (struct bfd_strtab_hash *);
    725  1.1  christos 
    726  1.1  christos /* Get the size of a string table.  */
    727  1.1  christos extern bfd_size_type _bfd_stringtab_size
    728  1.1  christos   (struct bfd_strtab_hash *);
    729  1.1  christos 
    730  1.1  christos /* Add a string to a string table.  */
    731  1.1  christos extern bfd_size_type _bfd_stringtab_add
    732  1.1  christos   (struct bfd_strtab_hash *, const char *, bfd_boolean hash, bfd_boolean copy);
    733  1.1  christos 
    734  1.1  christos /* Write out a string table.  */
    735  1.1  christos extern bfd_boolean _bfd_stringtab_emit
    736  1.1  christos   (bfd *, struct bfd_strtab_hash *);
    737  1.1  christos 
    738  1.1  christos /* Check that endianness of input and output file match.  */
    739  1.1  christos extern bfd_boolean _bfd_generic_verify_endian_match
    740  1.1  christos   (bfd *, bfd *);
    741  1.1  christos 
    742  1.1  christos /* Macros to tell if bfds are read or write enabled.
    744  1.1  christos 
    745  1.1  christos    Note that bfds open for read may be scribbled into if the fd passed
    746  1.1  christos    to bfd_fdopenr is actually open both for read and write
    747  1.1  christos    simultaneously.  However an output bfd will never be open for
    748  1.1  christos    read.  Therefore sometimes you want to check bfd_read_p or
    749  1.1  christos    !bfd_read_p, and only sometimes bfd_write_p.
    750  1.1  christos */
    751  1.1  christos 
    752  1.1  christos #define	bfd_read_p(abfd) \
    753  1.1  christos   ((abfd)->direction == read_direction || (abfd)->direction == both_direction)
    754  1.1  christos #define	bfd_write_p(abfd) \
    755  1.1  christos   ((abfd)->direction == write_direction || (abfd)->direction == both_direction)
    756  1.1  christos 
    757  1.1  christos void bfd_assert
    758  1.1  christos   (const char*,int);
    759  1.1  christos 
    760  1.1  christos #define BFD_ASSERT(x) \
    761  1.1  christos   do { if (!(x)) bfd_assert(__FILE__,__LINE__); } while (0)
    762  1.1  christos 
    763  1.1  christos #define BFD_FAIL() \
    764  1.1  christos   do { bfd_assert(__FILE__,__LINE__); } while (0)
    765  1.1  christos 
    766  1.1  christos extern void _bfd_abort
    767  1.1  christos   (const char *, int, const char *) ATTRIBUTE_NORETURN;
    768  1.1  christos 
    769  1.1  christos /* if gcc >= 2.6, we can give a function name, too */
    770  1.1  christos #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
    771  1.1  christos #define __PRETTY_FUNCTION__  ((char *) NULL)
    772  1.1  christos #endif
    773  1.1  christos 
    774  1.1  christos #undef abort
    775  1.1  christos #define abort() _bfd_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)
    776  1.1  christos 
    777  1.1  christos /* Manipulate a system FILE but using BFD's "file_ptr", rather than
    778  1.1  christos    the system "off_t" or "off64_t", as the offset.  */
    779  1.1  christos extern file_ptr real_ftell (FILE *file);
    780  1.1  christos extern int real_fseek (FILE *file, file_ptr offset, int whence);
    781  1.1  christos extern FILE *real_fopen (const char *filename, const char *modes);
    782  1.1  christos 
    783  1.1  christos /* List of supported target vectors, and the default vector (if
    784  1.1  christos    bfd_default_vector[0] is NULL, there is no default).  */
    785  1.1  christos extern const bfd_target * const *bfd_target_vector;
    786  1.1  christos extern const bfd_target *bfd_default_vector[];
    787  1.1  christos 
    788  1.1  christos /* List of associated target vectors.  */
    789  1.1  christos extern const bfd_target * const *bfd_associated_vector;
    790  1.1  christos 
    791  1.1  christos /* Functions shared by the ECOFF and MIPS ELF backends, which have no
    792  1.1  christos    other common header files.  */
    793  1.1  christos 
    794  1.1  christos #if defined(__STDC__) || defined(ALMOST_STDC)
    795  1.1  christos struct ecoff_find_line;
    796  1.1  christos #endif
    797  1.1  christos 
    798  1.1  christos extern bfd_boolean _bfd_ecoff_locate_line
    799  1.1  christos   (bfd *, asection *, bfd_vma, struct ecoff_debug_info * const,
    800  1.1  christos    const struct ecoff_debug_swap * const, struct ecoff_find_line *,
    801  1.1  christos    const char **, const char **, unsigned int *);
    802  1.1  christos extern bfd_boolean _bfd_ecoff_get_accumulated_pdr
    803  1.1  christos   (void *, bfd_byte *);
    804  1.1  christos extern bfd_boolean _bfd_ecoff_get_accumulated_sym
    805  1.1  christos   (void *, bfd_byte *);
    806  1.1  christos extern bfd_boolean _bfd_ecoff_get_accumulated_ss
    807  1.1  christos   (void *, bfd_byte *);
    808  1.1  christos 
    809  1.1  christos extern bfd_vma _bfd_get_gp_value
    810  1.1  christos   (bfd *);
    811  1.1  christos extern void _bfd_set_gp_value
    812  1.1  christos   (bfd *, bfd_vma);
    813  1.1  christos 
    814  1.1  christos /* Function shared by the COFF and ELF SH backends, which have no
    815  1.1  christos    other common header files.  */
    816  1.1  christos 
    817  1.1  christos #ifndef _bfd_sh_align_load_span
    818  1.1  christos extern bfd_boolean _bfd_sh_align_load_span
    819  1.1  christos   (bfd *, asection *, bfd_byte *,
    820  1.1  christos    bfd_boolean (*) (bfd *, asection *, void *, bfd_byte *, bfd_vma),
    821  1.1  christos    void *, bfd_vma **, bfd_vma *, bfd_vma, bfd_vma, bfd_boolean *);
    822  1.1  christos #endif
    823  1.1  christos 
    824  1.1  christos /* This is the shape of the elements inside the already_linked hash
    825  1.1  christos    table. It maps a name onto a list of already_linked elements with
    826  1.1  christos    the same name.  */
    827  1.1  christos 
    828  1.1  christos struct bfd_section_already_linked_hash_entry
    829  1.1  christos {
    830  1.1  christos   struct bfd_hash_entry root;
    831  1.1  christos   struct bfd_section_already_linked *entry;
    832  1.1  christos };
    833  1.1  christos 
    834  1.1  christos struct bfd_section_already_linked
    835  1.1  christos {
    836  1.1  christos   struct bfd_section_already_linked *next;
    837  1.1  christos   asection *sec;
    838  1.1  christos };
    839  1.1  christos 
    840  1.1  christos extern struct bfd_section_already_linked_hash_entry *
    841  1.1  christos   bfd_section_already_linked_table_lookup (const char *);
    842  1.1  christos extern bfd_boolean bfd_section_already_linked_table_insert
    843  1.1  christos   (struct bfd_section_already_linked_hash_entry *, asection *);
    844  1.1  christos extern void bfd_section_already_linked_table_traverse
    845  1.1  christos   (bfd_boolean (*) (struct bfd_section_already_linked_hash_entry *,
    846  1.1  christos 		    void *), void *);
    847  1.3  christos 
    848  1.3  christos extern bfd_vma read_unsigned_leb128 (bfd *, bfd_byte *, unsigned int *);
    849  1.1  christos extern bfd_signed_vma read_signed_leb128 (bfd *, bfd_byte *, unsigned int *);
    850  1.1  christos extern bfd_vma safe_read_leb128 (bfd *, bfd_byte *, unsigned int *,
    851  1.1  christos 				 bfd_boolean, const bfd_byte * const);
    852  1.1  christos /* Extracted from init.c.  */
    853  1.1  christos /* Extracted from libbfd.c.  */
    854  1.1  christos bfd_boolean bfd_write_bigendian_4byte_int (bfd *, unsigned int);
    855  1.1  christos 
    856  1.1  christos unsigned int bfd_log2 (bfd_vma x);
    857  1.1  christos 
    858  1.1  christos /* Extracted from bfdio.c.  */
    859  1.1  christos struct bfd_iovec
    860  1.1  christos {
    861  1.1  christos   /* To avoid problems with macros, a "b" rather than "f"
    862  1.1  christos      prefix is prepended to each method name.  */
    863  1.1  christos   /* Attempt to read/write NBYTES on ABFD's IOSTREAM storing/fetching
    864  1.1  christos      bytes starting at PTR.  Return the number of bytes actually
    865  1.1  christos      transfered (a read past end-of-file returns less than NBYTES),
    866  1.1  christos      or -1 (setting <<bfd_error>>) if an error occurs.  */
    867  1.1  christos   file_ptr (*bread) (struct bfd *abfd, void *ptr, file_ptr nbytes);
    868  1.1  christos   file_ptr (*bwrite) (struct bfd *abfd, const void *ptr,
    869  1.1  christos                       file_ptr nbytes);
    870  1.1  christos   /* Return the current IOSTREAM file offset, or -1 (setting <<bfd_error>>
    871  1.1  christos      if an error occurs.  */
    872  1.1  christos   file_ptr (*btell) (struct bfd *abfd);
    873  1.1  christos   /* For the following, on successful completion a value of 0 is returned.
    874  1.1  christos      Otherwise, a value of -1 is returned (and  <<bfd_error>> is set).  */
    875  1.1  christos   int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
    876  1.1  christos   int (*bclose) (struct bfd *abfd);
    877  1.1  christos   int (*bflush) (struct bfd *abfd);
    878  1.1  christos   int (*bstat) (struct bfd *abfd, struct stat *sb);
    879  1.1  christos   /* Mmap a part of the files. ADDR, LEN, PROT, FLAGS and OFFSET are the usual
    880  1.1  christos      mmap parameter, except that LEN and OFFSET do not need to be page
    881  1.1  christos      aligned.  Returns (void *)-1 on failure, mmapped address on success.
    882  1.1  christos      Also write in MAP_ADDR the address of the page aligned buffer and in
    883  1.1  christos      MAP_LEN the size mapped (a page multiple).  Use unmap with MAP_ADDR and
    884  1.1  christos      MAP_LEN to unmap.  */
    885  1.1  christos   void *(*bmmap) (struct bfd *abfd, void *addr, bfd_size_type len,
    886  1.1  christos                   int prot, int flags, file_ptr offset,
    887  1.1  christos                   void **map_addr, bfd_size_type *map_len);
    888  1.1  christos };
    889  1.1  christos extern const struct bfd_iovec _bfd_memory_iovec;
    890  1.1  christos /* Extracted from bfdwin.c.  */
    891  1.1  christos struct _bfd_window_internal {
    892  1.1  christos   struct _bfd_window_internal *next;
    893  1.1  christos   void *data;
    894  1.1  christos   bfd_size_type size;
    895  1.1  christos   int refcount : 31;           /* should be enough...  */
    896  1.1  christos   unsigned mapped : 1;         /* 1 = mmap, 0 = malloc */
    897  1.1  christos };
    898  1.1  christos /* Extracted from cache.c.  */
    899  1.1  christos bfd_boolean bfd_cache_init (bfd *abfd);
    900  1.1  christos 
    901  1.1  christos bfd_boolean bfd_cache_close (bfd *abfd);
    902  1.1  christos 
    903  1.1  christos FILE* bfd_open_file (bfd *abfd);
    904  1.1  christos 
    905  1.1  christos /* Extracted from reloc.c.  */
    906  1.1  christos #ifdef _BFD_MAKE_TABLE_bfd_reloc_code_real
    907  1.1  christos 
    908  1.1  christos static const char *const bfd_reloc_code_real_names[] = { "@@uninitialized@@",
    909  1.1  christos 
    910  1.1  christos   "BFD_RELOC_64",
    911  1.1  christos   "BFD_RELOC_32",
    912  1.1  christos   "BFD_RELOC_26",
    913  1.1  christos   "BFD_RELOC_24",
    914  1.1  christos   "BFD_RELOC_16",
    915  1.1  christos   "BFD_RELOC_14",
    916  1.1  christos   "BFD_RELOC_8",
    917  1.1  christos   "BFD_RELOC_64_PCREL",
    918  1.1  christos   "BFD_RELOC_32_PCREL",
    919  1.1  christos   "BFD_RELOC_24_PCREL",
    920  1.1  christos   "BFD_RELOC_16_PCREL",
    921  1.1  christos   "BFD_RELOC_12_PCREL",
    922  1.1  christos   "BFD_RELOC_8_PCREL",
    923  1.1  christos   "BFD_RELOC_32_SECREL",
    924  1.1  christos   "BFD_RELOC_32_GOT_PCREL",
    925  1.1  christos   "BFD_RELOC_16_GOT_PCREL",
    926  1.1  christos   "BFD_RELOC_8_GOT_PCREL",
    927  1.1  christos   "BFD_RELOC_32_GOTOFF",
    928  1.1  christos   "BFD_RELOC_16_GOTOFF",
    929  1.1  christos   "BFD_RELOC_LO16_GOTOFF",
    930  1.1  christos   "BFD_RELOC_HI16_GOTOFF",
    931  1.1  christos   "BFD_RELOC_HI16_S_GOTOFF",
    932  1.1  christos   "BFD_RELOC_8_GOTOFF",
    933  1.1  christos   "BFD_RELOC_64_PLT_PCREL",
    934  1.1  christos   "BFD_RELOC_32_PLT_PCREL",
    935  1.1  christos   "BFD_RELOC_24_PLT_PCREL",
    936  1.1  christos   "BFD_RELOC_16_PLT_PCREL",
    937  1.1  christos   "BFD_RELOC_8_PLT_PCREL",
    938  1.1  christos   "BFD_RELOC_64_PLTOFF",
    939  1.1  christos   "BFD_RELOC_32_PLTOFF",
    940  1.1  christos   "BFD_RELOC_16_PLTOFF",
    941  1.1  christos   "BFD_RELOC_LO16_PLTOFF",
    942  1.1  christos   "BFD_RELOC_HI16_PLTOFF",
    943  1.1  christos   "BFD_RELOC_HI16_S_PLTOFF",
    944  1.1  christos   "BFD_RELOC_8_PLTOFF",
    945  1.1  christos   "BFD_RELOC_SIZE32",
    946  1.1  christos   "BFD_RELOC_SIZE64",
    947  1.1  christos   "BFD_RELOC_68K_GLOB_DAT",
    948  1.1  christos   "BFD_RELOC_68K_JMP_SLOT",
    949  1.1  christos   "BFD_RELOC_68K_RELATIVE",
    950  1.1  christos   "BFD_RELOC_68K_TLS_GD32",
    951  1.1  christos   "BFD_RELOC_68K_TLS_GD16",
    952  1.1  christos   "BFD_RELOC_68K_TLS_GD8",
    953  1.1  christos   "BFD_RELOC_68K_TLS_LDM32",
    954  1.1  christos   "BFD_RELOC_68K_TLS_LDM16",
    955  1.1  christos   "BFD_RELOC_68K_TLS_LDM8",
    956  1.1  christos   "BFD_RELOC_68K_TLS_LDO32",
    957  1.1  christos   "BFD_RELOC_68K_TLS_LDO16",
    958  1.1  christos   "BFD_RELOC_68K_TLS_LDO8",
    959  1.1  christos   "BFD_RELOC_68K_TLS_IE32",
    960  1.1  christos   "BFD_RELOC_68K_TLS_IE16",
    961  1.1  christos   "BFD_RELOC_68K_TLS_IE8",
    962  1.1  christos   "BFD_RELOC_68K_TLS_LE32",
    963  1.1  christos   "BFD_RELOC_68K_TLS_LE16",
    964  1.1  christos   "BFD_RELOC_68K_TLS_LE8",
    965  1.1  christos   "BFD_RELOC_32_BASEREL",
    966  1.1  christos   "BFD_RELOC_16_BASEREL",
    967  1.1  christos   "BFD_RELOC_LO16_BASEREL",
    968  1.1  christos   "BFD_RELOC_HI16_BASEREL",
    969  1.1  christos   "BFD_RELOC_HI16_S_BASEREL",
    970  1.1  christos   "BFD_RELOC_8_BASEREL",
    971  1.1  christos   "BFD_RELOC_RVA",
    972  1.1  christos   "BFD_RELOC_8_FFnn",
    973  1.1  christos   "BFD_RELOC_32_PCREL_S2",
    974  1.1  christos   "BFD_RELOC_16_PCREL_S2",
    975  1.1  christos   "BFD_RELOC_23_PCREL_S2",
    976  1.1  christos   "BFD_RELOC_HI22",
    977  1.1  christos   "BFD_RELOC_LO10",
    978  1.1  christos   "BFD_RELOC_GPREL16",
    979  1.1  christos   "BFD_RELOC_GPREL32",
    980  1.1  christos   "BFD_RELOC_I960_CALLJ",
    981  1.1  christos   "BFD_RELOC_NONE",
    982  1.1  christos   "BFD_RELOC_SPARC_WDISP22",
    983  1.1  christos   "BFD_RELOC_SPARC22",
    984  1.1  christos   "BFD_RELOC_SPARC13",
    985  1.1  christos   "BFD_RELOC_SPARC_GOT10",
    986  1.1  christos   "BFD_RELOC_SPARC_GOT13",
    987  1.1  christos   "BFD_RELOC_SPARC_GOT22",
    988  1.1  christos   "BFD_RELOC_SPARC_PC10",
    989  1.1  christos   "BFD_RELOC_SPARC_PC22",
    990  1.1  christos   "BFD_RELOC_SPARC_WPLT30",
    991  1.1  christos   "BFD_RELOC_SPARC_COPY",
    992  1.1  christos   "BFD_RELOC_SPARC_GLOB_DAT",
    993  1.1  christos   "BFD_RELOC_SPARC_JMP_SLOT",
    994  1.1  christos   "BFD_RELOC_SPARC_RELATIVE",
    995  1.1  christos   "BFD_RELOC_SPARC_UA16",
    996  1.1  christos   "BFD_RELOC_SPARC_UA32",
    997  1.1  christos   "BFD_RELOC_SPARC_UA64",
    998  1.1  christos   "BFD_RELOC_SPARC_GOTDATA_HIX22",
    999  1.1  christos   "BFD_RELOC_SPARC_GOTDATA_LOX10",
   1000  1.1  christos   "BFD_RELOC_SPARC_GOTDATA_OP_HIX22",
   1001  1.1  christos   "BFD_RELOC_SPARC_GOTDATA_OP_LOX10",
   1002  1.1  christos   "BFD_RELOC_SPARC_GOTDATA_OP",
   1003  1.1  christos   "BFD_RELOC_SPARC_JMP_IREL",
   1004  1.1  christos   "BFD_RELOC_SPARC_IRELATIVE",
   1005  1.1  christos   "BFD_RELOC_SPARC_BASE13",
   1006  1.1  christos   "BFD_RELOC_SPARC_BASE22",
   1007  1.1  christos   "BFD_RELOC_SPARC_10",
   1008  1.1  christos   "BFD_RELOC_SPARC_11",
   1009  1.1  christos   "BFD_RELOC_SPARC_OLO10",
   1010  1.1  christos   "BFD_RELOC_SPARC_HH22",
   1011  1.1  christos   "BFD_RELOC_SPARC_HM10",
   1012  1.1  christos   "BFD_RELOC_SPARC_LM22",
   1013  1.1  christos   "BFD_RELOC_SPARC_PC_HH22",
   1014  1.1  christos   "BFD_RELOC_SPARC_PC_HM10",
   1015  1.1  christos   "BFD_RELOC_SPARC_PC_LM22",
   1016  1.1  christos   "BFD_RELOC_SPARC_WDISP16",
   1017  1.1  christos   "BFD_RELOC_SPARC_WDISP19",
   1018  1.1  christos   "BFD_RELOC_SPARC_7",
   1019  1.1  christos   "BFD_RELOC_SPARC_6",
   1020  1.1  christos   "BFD_RELOC_SPARC_5",
   1021  1.1  christos   "BFD_RELOC_SPARC_PLT32",
   1022  1.1  christos   "BFD_RELOC_SPARC_PLT64",
   1023  1.1  christos   "BFD_RELOC_SPARC_HIX22",
   1024  1.1  christos   "BFD_RELOC_SPARC_LOX10",
   1025  1.1  christos   "BFD_RELOC_SPARC_H44",
   1026  1.1  christos   "BFD_RELOC_SPARC_M44",
   1027  1.1  christos   "BFD_RELOC_SPARC_L44",
   1028  1.1  christos   "BFD_RELOC_SPARC_REGISTER",
   1029  1.1  christos   "BFD_RELOC_SPARC_H34",
   1030  1.1  christos   "BFD_RELOC_SPARC_SIZE32",
   1031  1.1  christos   "BFD_RELOC_SPARC_SIZE64",
   1032  1.1  christos   "BFD_RELOC_SPARC_WDISP10",
   1033  1.1  christos   "BFD_RELOC_SPARC_REV32",
   1034  1.1  christos   "BFD_RELOC_SPARC_TLS_GD_HI22",
   1035  1.1  christos   "BFD_RELOC_SPARC_TLS_GD_LO10",
   1036  1.1  christos   "BFD_RELOC_SPARC_TLS_GD_ADD",
   1037  1.1  christos   "BFD_RELOC_SPARC_TLS_GD_CALL",
   1038  1.1  christos   "BFD_RELOC_SPARC_TLS_LDM_HI22",
   1039  1.1  christos   "BFD_RELOC_SPARC_TLS_LDM_LO10",
   1040  1.1  christos   "BFD_RELOC_SPARC_TLS_LDM_ADD",
   1041  1.1  christos   "BFD_RELOC_SPARC_TLS_LDM_CALL",
   1042  1.1  christos   "BFD_RELOC_SPARC_TLS_LDO_HIX22",
   1043  1.1  christos   "BFD_RELOC_SPARC_TLS_LDO_LOX10",
   1044  1.1  christos   "BFD_RELOC_SPARC_TLS_LDO_ADD",
   1045  1.1  christos   "BFD_RELOC_SPARC_TLS_IE_HI22",
   1046  1.1  christos   "BFD_RELOC_SPARC_TLS_IE_LO10",
   1047  1.1  christos   "BFD_RELOC_SPARC_TLS_IE_LD",
   1048  1.1  christos   "BFD_RELOC_SPARC_TLS_IE_LDX",
   1049  1.1  christos   "BFD_RELOC_SPARC_TLS_IE_ADD",
   1050  1.1  christos   "BFD_RELOC_SPARC_TLS_LE_HIX22",
   1051  1.1  christos   "BFD_RELOC_SPARC_TLS_LE_LOX10",
   1052  1.1  christos   "BFD_RELOC_SPARC_TLS_DTPMOD32",
   1053  1.1  christos   "BFD_RELOC_SPARC_TLS_DTPMOD64",
   1054  1.1  christos   "BFD_RELOC_SPARC_TLS_DTPOFF32",
   1055  1.1  christos   "BFD_RELOC_SPARC_TLS_DTPOFF64",
   1056  1.1  christos   "BFD_RELOC_SPARC_TLS_TPOFF32",
   1057  1.1  christos   "BFD_RELOC_SPARC_TLS_TPOFF64",
   1058  1.1  christos   "BFD_RELOC_SPU_IMM7",
   1059  1.1  christos   "BFD_RELOC_SPU_IMM8",
   1060  1.1  christos   "BFD_RELOC_SPU_IMM10",
   1061  1.1  christos   "BFD_RELOC_SPU_IMM10W",
   1062  1.1  christos   "BFD_RELOC_SPU_IMM16",
   1063  1.1  christos   "BFD_RELOC_SPU_IMM16W",
   1064  1.1  christos   "BFD_RELOC_SPU_IMM18",
   1065  1.1  christos   "BFD_RELOC_SPU_PCREL9a",
   1066  1.1  christos   "BFD_RELOC_SPU_PCREL9b",
   1067  1.1  christos   "BFD_RELOC_SPU_PCREL16",
   1068  1.1  christos   "BFD_RELOC_SPU_LO16",
   1069  1.1  christos   "BFD_RELOC_SPU_HI16",
   1070  1.1  christos   "BFD_RELOC_SPU_PPU32",
   1071  1.1  christos   "BFD_RELOC_SPU_PPU64",
   1072  1.1  christos   "BFD_RELOC_SPU_ADD_PIC",
   1073  1.1  christos   "BFD_RELOC_ALPHA_GPDISP_HI16",
   1074  1.1  christos   "BFD_RELOC_ALPHA_GPDISP_LO16",
   1075  1.1  christos   "BFD_RELOC_ALPHA_GPDISP",
   1076  1.1  christos   "BFD_RELOC_ALPHA_LITERAL",
   1077  1.1  christos   "BFD_RELOC_ALPHA_ELF_LITERAL",
   1078  1.1  christos   "BFD_RELOC_ALPHA_LITUSE",
   1079  1.1  christos   "BFD_RELOC_ALPHA_HINT",
   1080  1.1  christos   "BFD_RELOC_ALPHA_LINKAGE",
   1081  1.1  christos   "BFD_RELOC_ALPHA_CODEADDR",
   1082  1.1  christos   "BFD_RELOC_ALPHA_GPREL_HI16",
   1083  1.1  christos   "BFD_RELOC_ALPHA_GPREL_LO16",
   1084  1.1  christos   "BFD_RELOC_ALPHA_BRSGP",
   1085  1.1  christos   "BFD_RELOC_ALPHA_NOP",
   1086  1.1  christos   "BFD_RELOC_ALPHA_BSR",
   1087  1.1  christos   "BFD_RELOC_ALPHA_LDA",
   1088  1.1  christos   "BFD_RELOC_ALPHA_BOH",
   1089  1.1  christos   "BFD_RELOC_ALPHA_TLSGD",
   1090  1.1  christos   "BFD_RELOC_ALPHA_TLSLDM",
   1091  1.1  christos   "BFD_RELOC_ALPHA_DTPMOD64",
   1092  1.1  christos   "BFD_RELOC_ALPHA_GOTDTPREL16",
   1093  1.1  christos   "BFD_RELOC_ALPHA_DTPREL64",
   1094  1.1  christos   "BFD_RELOC_ALPHA_DTPREL_HI16",
   1095  1.1  christos   "BFD_RELOC_ALPHA_DTPREL_LO16",
   1096  1.1  christos   "BFD_RELOC_ALPHA_DTPREL16",
   1097  1.1  christos   "BFD_RELOC_ALPHA_GOTTPREL16",
   1098  1.1  christos   "BFD_RELOC_ALPHA_TPREL64",
   1099  1.1  christos   "BFD_RELOC_ALPHA_TPREL_HI16",
   1100  1.1  christos   "BFD_RELOC_ALPHA_TPREL_LO16",
   1101  1.1  christos   "BFD_RELOC_ALPHA_TPREL16",
   1102  1.1  christos   "BFD_RELOC_MIPS_JMP",
   1103  1.1  christos   "BFD_RELOC_MICROMIPS_JMP",
   1104  1.1  christos   "BFD_RELOC_MIPS16_JMP",
   1105  1.1  christos   "BFD_RELOC_MIPS16_GPREL",
   1106  1.1  christos   "BFD_RELOC_HI16",
   1107  1.1  christos   "BFD_RELOC_HI16_S",
   1108  1.1  christos   "BFD_RELOC_LO16",
   1109  1.1  christos   "BFD_RELOC_HI16_PCREL",
   1110  1.1  christos   "BFD_RELOC_HI16_S_PCREL",
   1111  1.1  christos   "BFD_RELOC_LO16_PCREL",
   1112  1.1  christos   "BFD_RELOC_MIPS16_GOT16",
   1113  1.1  christos   "BFD_RELOC_MIPS16_CALL16",
   1114  1.1  christos   "BFD_RELOC_MIPS16_HI16",
   1115  1.1  christos   "BFD_RELOC_MIPS16_HI16_S",
   1116  1.1  christos   "BFD_RELOC_MIPS16_LO16",
   1117  1.1  christos   "BFD_RELOC_MIPS16_TLS_GD",
   1118  1.1  christos   "BFD_RELOC_MIPS16_TLS_LDM",
   1119  1.1  christos   "BFD_RELOC_MIPS16_TLS_DTPREL_HI16",
   1120  1.1  christos   "BFD_RELOC_MIPS16_TLS_DTPREL_LO16",
   1121  1.1  christos   "BFD_RELOC_MIPS16_TLS_GOTTPREL",
   1122  1.1  christos   "BFD_RELOC_MIPS16_TLS_TPREL_HI16",
   1123  1.1  christos   "BFD_RELOC_MIPS16_TLS_TPREL_LO16",
   1124  1.1  christos   "BFD_RELOC_MIPS_LITERAL",
   1125  1.1  christos   "BFD_RELOC_MICROMIPS_LITERAL",
   1126  1.3  christos   "BFD_RELOC_MICROMIPS_7_PCREL_S1",
   1127  1.3  christos   "BFD_RELOC_MICROMIPS_10_PCREL_S1",
   1128  1.3  christos   "BFD_RELOC_MICROMIPS_16_PCREL_S1",
   1129  1.3  christos   "BFD_RELOC_MIPS_21_PCREL_S2",
   1130  1.1  christos   "BFD_RELOC_MIPS_26_PCREL_S2",
   1131  1.1  christos   "BFD_RELOC_MIPS_18_PCREL_S3",
   1132  1.1  christos   "BFD_RELOC_MIPS_19_PCREL_S2",
   1133  1.1  christos   "BFD_RELOC_MICROMIPS_GPREL16",
   1134  1.1  christos   "BFD_RELOC_MICROMIPS_HI16",
   1135  1.1  christos   "BFD_RELOC_MICROMIPS_HI16_S",
   1136  1.1  christos   "BFD_RELOC_MICROMIPS_LO16",
   1137  1.1  christos   "BFD_RELOC_MIPS_GOT16",
   1138  1.1  christos   "BFD_RELOC_MICROMIPS_GOT16",
   1139  1.1  christos   "BFD_RELOC_MIPS_CALL16",
   1140  1.1  christos   "BFD_RELOC_MICROMIPS_CALL16",
   1141  1.1  christos   "BFD_RELOC_MIPS_GOT_HI16",
   1142  1.1  christos   "BFD_RELOC_MICROMIPS_GOT_HI16",
   1143  1.1  christos   "BFD_RELOC_MIPS_GOT_LO16",
   1144  1.1  christos   "BFD_RELOC_MICROMIPS_GOT_LO16",
   1145  1.1  christos   "BFD_RELOC_MIPS_CALL_HI16",
   1146  1.1  christos   "BFD_RELOC_MICROMIPS_CALL_HI16",
   1147  1.1  christos   "BFD_RELOC_MIPS_CALL_LO16",
   1148  1.1  christos   "BFD_RELOC_MICROMIPS_CALL_LO16",
   1149  1.1  christos   "BFD_RELOC_MIPS_SUB",
   1150  1.1  christos   "BFD_RELOC_MICROMIPS_SUB",
   1151  1.1  christos   "BFD_RELOC_MIPS_GOT_PAGE",
   1152  1.1  christos   "BFD_RELOC_MICROMIPS_GOT_PAGE",
   1153  1.1  christos   "BFD_RELOC_MIPS_GOT_OFST",
   1154  1.1  christos   "BFD_RELOC_MICROMIPS_GOT_OFST",
   1155  1.1  christos   "BFD_RELOC_MIPS_GOT_DISP",
   1156  1.1  christos   "BFD_RELOC_MICROMIPS_GOT_DISP",
   1157  1.1  christos   "BFD_RELOC_MIPS_SHIFT5",
   1158  1.1  christos   "BFD_RELOC_MIPS_SHIFT6",
   1159  1.1  christos   "BFD_RELOC_MIPS_INSERT_A",
   1160  1.1  christos   "BFD_RELOC_MIPS_INSERT_B",
   1161  1.1  christos   "BFD_RELOC_MIPS_DELETE",
   1162  1.1  christos   "BFD_RELOC_MIPS_HIGHEST",
   1163  1.1  christos   "BFD_RELOC_MICROMIPS_HIGHEST",
   1164  1.1  christos   "BFD_RELOC_MIPS_HIGHER",
   1165  1.1  christos   "BFD_RELOC_MICROMIPS_HIGHER",
   1166  1.1  christos   "BFD_RELOC_MIPS_SCN_DISP",
   1167  1.1  christos   "BFD_RELOC_MICROMIPS_SCN_DISP",
   1168  1.1  christos   "BFD_RELOC_MIPS_REL16",
   1169  1.1  christos   "BFD_RELOC_MIPS_RELGOT",
   1170  1.1  christos   "BFD_RELOC_MIPS_JALR",
   1171  1.1  christos   "BFD_RELOC_MICROMIPS_JALR",
   1172  1.1  christos   "BFD_RELOC_MIPS_TLS_DTPMOD32",
   1173  1.1  christos   "BFD_RELOC_MIPS_TLS_DTPREL32",
   1174  1.1  christos   "BFD_RELOC_MIPS_TLS_DTPMOD64",
   1175  1.1  christos   "BFD_RELOC_MIPS_TLS_DTPREL64",
   1176  1.1  christos   "BFD_RELOC_MIPS_TLS_GD",
   1177  1.1  christos   "BFD_RELOC_MICROMIPS_TLS_GD",
   1178  1.1  christos   "BFD_RELOC_MIPS_TLS_LDM",
   1179  1.1  christos   "BFD_RELOC_MICROMIPS_TLS_LDM",
   1180  1.1  christos   "BFD_RELOC_MIPS_TLS_DTPREL_HI16",
   1181  1.1  christos   "BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16",
   1182  1.1  christos   "BFD_RELOC_MIPS_TLS_DTPREL_LO16",
   1183  1.1  christos   "BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16",
   1184  1.1  christos   "BFD_RELOC_MIPS_TLS_GOTTPREL",
   1185  1.1  christos   "BFD_RELOC_MICROMIPS_TLS_GOTTPREL",
   1186  1.1  christos   "BFD_RELOC_MIPS_TLS_TPREL32",
   1187  1.1  christos   "BFD_RELOC_MIPS_TLS_TPREL64",
   1188  1.1  christos   "BFD_RELOC_MIPS_TLS_TPREL_HI16",
   1189  1.1  christos   "BFD_RELOC_MICROMIPS_TLS_TPREL_HI16",
   1190  1.1  christos   "BFD_RELOC_MIPS_TLS_TPREL_LO16",
   1191  1.1  christos   "BFD_RELOC_MICROMIPS_TLS_TPREL_LO16",
   1192  1.1  christos   "BFD_RELOC_MIPS_EH",
   1193  1.1  christos 
   1194  1.1  christos   "BFD_RELOC_MIPS_COPY",
   1195  1.1  christos   "BFD_RELOC_MIPS_JUMP_SLOT",
   1196  1.1  christos 
   1197  1.1  christos   "BFD_RELOC_MOXIE_10_PCREL",
   1198  1.1  christos 
   1199  1.1  christos   "BFD_RELOC_FRV_LABEL16",
   1200  1.1  christos   "BFD_RELOC_FRV_LABEL24",
   1201  1.1  christos   "BFD_RELOC_FRV_LO16",
   1202  1.1  christos   "BFD_RELOC_FRV_HI16",
   1203  1.1  christos   "BFD_RELOC_FRV_GPREL12",
   1204  1.1  christos   "BFD_RELOC_FRV_GPRELU12",
   1205  1.1  christos   "BFD_RELOC_FRV_GPREL32",
   1206  1.1  christos   "BFD_RELOC_FRV_GPRELHI",
   1207  1.1  christos   "BFD_RELOC_FRV_GPRELLO",
   1208  1.1  christos   "BFD_RELOC_FRV_GOT12",
   1209  1.1  christos   "BFD_RELOC_FRV_GOTHI",
   1210  1.1  christos   "BFD_RELOC_FRV_GOTLO",
   1211  1.1  christos   "BFD_RELOC_FRV_FUNCDESC",
   1212  1.1  christos   "BFD_RELOC_FRV_FUNCDESC_GOT12",
   1213  1.1  christos   "BFD_RELOC_FRV_FUNCDESC_GOTHI",
   1214  1.1  christos   "BFD_RELOC_FRV_FUNCDESC_GOTLO",
   1215  1.1  christos   "BFD_RELOC_FRV_FUNCDESC_VALUE",
   1216  1.1  christos   "BFD_RELOC_FRV_FUNCDESC_GOTOFF12",
   1217  1.1  christos   "BFD_RELOC_FRV_FUNCDESC_GOTOFFHI",
   1218  1.1  christos   "BFD_RELOC_FRV_FUNCDESC_GOTOFFLO",
   1219  1.1  christos   "BFD_RELOC_FRV_GOTOFF12",
   1220  1.1  christos   "BFD_RELOC_FRV_GOTOFFHI",
   1221  1.1  christos   "BFD_RELOC_FRV_GOTOFFLO",
   1222  1.1  christos   "BFD_RELOC_FRV_GETTLSOFF",
   1223  1.1  christos   "BFD_RELOC_FRV_TLSDESC_VALUE",
   1224  1.1  christos   "BFD_RELOC_FRV_GOTTLSDESC12",
   1225  1.1  christos   "BFD_RELOC_FRV_GOTTLSDESCHI",
   1226  1.1  christos   "BFD_RELOC_FRV_GOTTLSDESCLO",
   1227  1.1  christos   "BFD_RELOC_FRV_TLSMOFF12",
   1228  1.1  christos   "BFD_RELOC_FRV_TLSMOFFHI",
   1229  1.1  christos   "BFD_RELOC_FRV_TLSMOFFLO",
   1230  1.1  christos   "BFD_RELOC_FRV_GOTTLSOFF12",
   1231  1.1  christos   "BFD_RELOC_FRV_GOTTLSOFFHI",
   1232  1.1  christos   "BFD_RELOC_FRV_GOTTLSOFFLO",
   1233  1.1  christos   "BFD_RELOC_FRV_TLSOFF",
   1234  1.1  christos   "BFD_RELOC_FRV_TLSDESC_RELAX",
   1235  1.1  christos   "BFD_RELOC_FRV_GETTLSOFF_RELAX",
   1236  1.1  christos   "BFD_RELOC_FRV_TLSOFF_RELAX",
   1237  1.1  christos   "BFD_RELOC_FRV_TLSMOFF",
   1238  1.1  christos 
   1239  1.1  christos   "BFD_RELOC_MN10300_GOTOFF24",
   1240  1.1  christos   "BFD_RELOC_MN10300_GOT32",
   1241  1.1  christos   "BFD_RELOC_MN10300_GOT24",
   1242  1.1  christos   "BFD_RELOC_MN10300_GOT16",
   1243  1.1  christos   "BFD_RELOC_MN10300_COPY",
   1244  1.1  christos   "BFD_RELOC_MN10300_GLOB_DAT",
   1245  1.1  christos   "BFD_RELOC_MN10300_JMP_SLOT",
   1246  1.1  christos   "BFD_RELOC_MN10300_RELATIVE",
   1247  1.1  christos   "BFD_RELOC_MN10300_SYM_DIFF",
   1248  1.1  christos   "BFD_RELOC_MN10300_ALIGN",
   1249  1.1  christos   "BFD_RELOC_MN10300_TLS_GD",
   1250  1.1  christos   "BFD_RELOC_MN10300_TLS_LD",
   1251  1.1  christos   "BFD_RELOC_MN10300_TLS_LDO",
   1252  1.1  christos   "BFD_RELOC_MN10300_TLS_GOTIE",
   1253  1.1  christos   "BFD_RELOC_MN10300_TLS_IE",
   1254  1.1  christos   "BFD_RELOC_MN10300_TLS_LE",
   1255  1.1  christos   "BFD_RELOC_MN10300_TLS_DTPMOD",
   1256  1.1  christos   "BFD_RELOC_MN10300_TLS_DTPOFF",
   1257  1.1  christos   "BFD_RELOC_MN10300_TLS_TPOFF",
   1258  1.1  christos   "BFD_RELOC_MN10300_32_PCREL",
   1259  1.1  christos   "BFD_RELOC_MN10300_16_PCREL",
   1260  1.1  christos 
   1261  1.1  christos   "BFD_RELOC_386_GOT32",
   1262  1.1  christos   "BFD_RELOC_386_PLT32",
   1263  1.1  christos   "BFD_RELOC_386_COPY",
   1264  1.1  christos   "BFD_RELOC_386_GLOB_DAT",
   1265  1.1  christos   "BFD_RELOC_386_JUMP_SLOT",
   1266  1.1  christos   "BFD_RELOC_386_RELATIVE",
   1267  1.1  christos   "BFD_RELOC_386_GOTOFF",
   1268  1.1  christos   "BFD_RELOC_386_GOTPC",
   1269  1.1  christos   "BFD_RELOC_386_TLS_TPOFF",
   1270  1.1  christos   "BFD_RELOC_386_TLS_IE",
   1271  1.1  christos   "BFD_RELOC_386_TLS_GOTIE",
   1272  1.1  christos   "BFD_RELOC_386_TLS_LE",
   1273  1.1  christos   "BFD_RELOC_386_TLS_GD",
   1274  1.1  christos   "BFD_RELOC_386_TLS_LDM",
   1275  1.1  christos   "BFD_RELOC_386_TLS_LDO_32",
   1276  1.1  christos   "BFD_RELOC_386_TLS_IE_32",
   1277  1.1  christos   "BFD_RELOC_386_TLS_LE_32",
   1278  1.1  christos   "BFD_RELOC_386_TLS_DTPMOD32",
   1279  1.1  christos   "BFD_RELOC_386_TLS_DTPOFF32",
   1280  1.1  christos   "BFD_RELOC_386_TLS_TPOFF32",
   1281  1.1  christos   "BFD_RELOC_386_TLS_GOTDESC",
   1282  1.1  christos   "BFD_RELOC_386_TLS_DESC_CALL",
   1283  1.1  christos   "BFD_RELOC_386_TLS_DESC",
   1284  1.1  christos   "BFD_RELOC_386_IRELATIVE",
   1285  1.1  christos   "BFD_RELOC_X86_64_GOT32",
   1286  1.1  christos   "BFD_RELOC_X86_64_PLT32",
   1287  1.1  christos   "BFD_RELOC_X86_64_COPY",
   1288  1.1  christos   "BFD_RELOC_X86_64_GLOB_DAT",
   1289  1.1  christos   "BFD_RELOC_X86_64_JUMP_SLOT",
   1290  1.1  christos   "BFD_RELOC_X86_64_RELATIVE",
   1291  1.1  christos   "BFD_RELOC_X86_64_GOTPCREL",
   1292  1.1  christos   "BFD_RELOC_X86_64_32S",
   1293  1.1  christos   "BFD_RELOC_X86_64_DTPMOD64",
   1294  1.1  christos   "BFD_RELOC_X86_64_DTPOFF64",
   1295  1.1  christos   "BFD_RELOC_X86_64_TPOFF64",
   1296  1.1  christos   "BFD_RELOC_X86_64_TLSGD",
   1297  1.1  christos   "BFD_RELOC_X86_64_TLSLD",
   1298  1.1  christos   "BFD_RELOC_X86_64_DTPOFF32",
   1299  1.1  christos   "BFD_RELOC_X86_64_GOTTPOFF",
   1300  1.1  christos   "BFD_RELOC_X86_64_TPOFF32",
   1301  1.1  christos   "BFD_RELOC_X86_64_GOTOFF64",
   1302  1.1  christos   "BFD_RELOC_X86_64_GOTPC32",
   1303  1.1  christos   "BFD_RELOC_X86_64_GOT64",
   1304  1.1  christos   "BFD_RELOC_X86_64_GOTPCREL64",
   1305  1.1  christos   "BFD_RELOC_X86_64_GOTPC64",
   1306  1.1  christos   "BFD_RELOC_X86_64_GOTPLT64",
   1307  1.1  christos   "BFD_RELOC_X86_64_PLTOFF64",
   1308  1.1  christos   "BFD_RELOC_X86_64_GOTPC32_TLSDESC",
   1309  1.1  christos   "BFD_RELOC_X86_64_TLSDESC_CALL",
   1310  1.1  christos   "BFD_RELOC_X86_64_TLSDESC",
   1311  1.1  christos   "BFD_RELOC_X86_64_IRELATIVE",
   1312  1.1  christos   "BFD_RELOC_X86_64_PC32_BND",
   1313  1.1  christos   "BFD_RELOC_X86_64_PLT32_BND",
   1314  1.1  christos   "BFD_RELOC_NS32K_IMM_8",
   1315  1.1  christos   "BFD_RELOC_NS32K_IMM_16",
   1316  1.1  christos   "BFD_RELOC_NS32K_IMM_32",
   1317  1.1  christos   "BFD_RELOC_NS32K_IMM_8_PCREL",
   1318  1.1  christos   "BFD_RELOC_NS32K_IMM_16_PCREL",
   1319  1.1  christos   "BFD_RELOC_NS32K_IMM_32_PCREL",
   1320  1.1  christos   "BFD_RELOC_NS32K_DISP_8",
   1321  1.1  christos   "BFD_RELOC_NS32K_DISP_16",
   1322  1.1  christos   "BFD_RELOC_NS32K_DISP_32",
   1323  1.1  christos   "BFD_RELOC_NS32K_DISP_8_PCREL",
   1324  1.1  christos   "BFD_RELOC_NS32K_DISP_16_PCREL",
   1325  1.1  christos   "BFD_RELOC_NS32K_DISP_32_PCREL",
   1326  1.1  christos   "BFD_RELOC_PDP11_DISP_8_PCREL",
   1327  1.1  christos   "BFD_RELOC_PDP11_DISP_6_PCREL",
   1328  1.1  christos   "BFD_RELOC_PJ_CODE_HI16",
   1329  1.1  christos   "BFD_RELOC_PJ_CODE_LO16",
   1330  1.1  christos   "BFD_RELOC_PJ_CODE_DIR16",
   1331  1.1  christos   "BFD_RELOC_PJ_CODE_DIR32",
   1332  1.1  christos   "BFD_RELOC_PJ_CODE_REL16",
   1333  1.1  christos   "BFD_RELOC_PJ_CODE_REL32",
   1334  1.1  christos   "BFD_RELOC_PPC_B26",
   1335  1.1  christos   "BFD_RELOC_PPC_BA26",
   1336  1.1  christos   "BFD_RELOC_PPC_TOC16",
   1337  1.1  christos   "BFD_RELOC_PPC_B16",
   1338  1.1  christos   "BFD_RELOC_PPC_B16_BRTAKEN",
   1339  1.1  christos   "BFD_RELOC_PPC_B16_BRNTAKEN",
   1340  1.1  christos   "BFD_RELOC_PPC_BA16",
   1341  1.1  christos   "BFD_RELOC_PPC_BA16_BRTAKEN",
   1342  1.1  christos   "BFD_RELOC_PPC_BA16_BRNTAKEN",
   1343  1.1  christos   "BFD_RELOC_PPC_COPY",
   1344  1.1  christos   "BFD_RELOC_PPC_GLOB_DAT",
   1345  1.1  christos   "BFD_RELOC_PPC_JMP_SLOT",
   1346  1.1  christos   "BFD_RELOC_PPC_RELATIVE",
   1347  1.1  christos   "BFD_RELOC_PPC_LOCAL24PC",
   1348  1.1  christos   "BFD_RELOC_PPC_EMB_NADDR32",
   1349  1.1  christos   "BFD_RELOC_PPC_EMB_NADDR16",
   1350  1.1  christos   "BFD_RELOC_PPC_EMB_NADDR16_LO",
   1351  1.1  christos   "BFD_RELOC_PPC_EMB_NADDR16_HI",
   1352  1.1  christos   "BFD_RELOC_PPC_EMB_NADDR16_HA",
   1353  1.1  christos   "BFD_RELOC_PPC_EMB_SDAI16",
   1354  1.1  christos   "BFD_RELOC_PPC_EMB_SDA2I16",
   1355  1.1  christos   "BFD_RELOC_PPC_EMB_SDA2REL",
   1356  1.1  christos   "BFD_RELOC_PPC_EMB_SDA21",
   1357  1.1  christos   "BFD_RELOC_PPC_EMB_MRKREF",
   1358  1.1  christos   "BFD_RELOC_PPC_EMB_RELSEC16",
   1359  1.1  christos   "BFD_RELOC_PPC_EMB_RELST_LO",
   1360  1.1  christos   "BFD_RELOC_PPC_EMB_RELST_HI",
   1361  1.1  christos   "BFD_RELOC_PPC_EMB_RELST_HA",
   1362  1.1  christos   "BFD_RELOC_PPC_EMB_BIT_FLD",
   1363  1.1  christos   "BFD_RELOC_PPC_EMB_RELSDA",
   1364  1.1  christos   "BFD_RELOC_PPC_VLE_REL8",
   1365  1.1  christos   "BFD_RELOC_PPC_VLE_REL15",
   1366  1.1  christos   "BFD_RELOC_PPC_VLE_REL24",
   1367  1.1  christos   "BFD_RELOC_PPC_VLE_LO16A",
   1368  1.1  christos   "BFD_RELOC_PPC_VLE_LO16D",
   1369  1.1  christos   "BFD_RELOC_PPC_VLE_HI16A",
   1370  1.1  christos   "BFD_RELOC_PPC_VLE_HI16D",
   1371  1.1  christos   "BFD_RELOC_PPC_VLE_HA16A",
   1372  1.1  christos   "BFD_RELOC_PPC_VLE_HA16D",
   1373  1.1  christos   "BFD_RELOC_PPC_VLE_SDA21",
   1374  1.1  christos   "BFD_RELOC_PPC_VLE_SDA21_LO",
   1375  1.1  christos   "BFD_RELOC_PPC_VLE_SDAREL_LO16A",
   1376  1.1  christos   "BFD_RELOC_PPC_VLE_SDAREL_LO16D",
   1377  1.1  christos   "BFD_RELOC_PPC_VLE_SDAREL_HI16A",
   1378  1.1  christos   "BFD_RELOC_PPC_VLE_SDAREL_HI16D",
   1379  1.1  christos   "BFD_RELOC_PPC_VLE_SDAREL_HA16A",
   1380  1.1  christos   "BFD_RELOC_PPC_VLE_SDAREL_HA16D",
   1381  1.1  christos   "BFD_RELOC_PPC64_HIGHER",
   1382  1.1  christos   "BFD_RELOC_PPC64_HIGHER_S",
   1383  1.1  christos   "BFD_RELOC_PPC64_HIGHEST",
   1384  1.1  christos   "BFD_RELOC_PPC64_HIGHEST_S",
   1385  1.1  christos   "BFD_RELOC_PPC64_TOC16_LO",
   1386  1.1  christos   "BFD_RELOC_PPC64_TOC16_HI",
   1387  1.1  christos   "BFD_RELOC_PPC64_TOC16_HA",
   1388  1.1  christos   "BFD_RELOC_PPC64_TOC",
   1389  1.1  christos   "BFD_RELOC_PPC64_PLTGOT16",
   1390  1.1  christos   "BFD_RELOC_PPC64_PLTGOT16_LO",
   1391  1.1  christos   "BFD_RELOC_PPC64_PLTGOT16_HI",
   1392  1.1  christos   "BFD_RELOC_PPC64_PLTGOT16_HA",
   1393  1.1  christos   "BFD_RELOC_PPC64_ADDR16_DS",
   1394  1.1  christos   "BFD_RELOC_PPC64_ADDR16_LO_DS",
   1395  1.1  christos   "BFD_RELOC_PPC64_GOT16_DS",
   1396  1.1  christos   "BFD_RELOC_PPC64_GOT16_LO_DS",
   1397  1.1  christos   "BFD_RELOC_PPC64_PLT16_LO_DS",
   1398  1.1  christos   "BFD_RELOC_PPC64_SECTOFF_DS",
   1399  1.1  christos   "BFD_RELOC_PPC64_SECTOFF_LO_DS",
   1400  1.1  christos   "BFD_RELOC_PPC64_TOC16_DS",
   1401  1.1  christos   "BFD_RELOC_PPC64_TOC16_LO_DS",
   1402  1.1  christos   "BFD_RELOC_PPC64_PLTGOT16_DS",
   1403  1.3  christos   "BFD_RELOC_PPC64_PLTGOT16_LO_DS",
   1404  1.1  christos   "BFD_RELOC_PPC64_ADDR16_HIGH",
   1405  1.1  christos   "BFD_RELOC_PPC64_ADDR16_HIGHA",
   1406  1.1  christos   "BFD_RELOC_PPC64_ADDR64_LOCAL",
   1407  1.1  christos   "BFD_RELOC_PPC_TLS",
   1408  1.1  christos   "BFD_RELOC_PPC_TLSGD",
   1409  1.1  christos   "BFD_RELOC_PPC_TLSLD",
   1410  1.1  christos   "BFD_RELOC_PPC_DTPMOD",
   1411  1.1  christos   "BFD_RELOC_PPC_TPREL16",
   1412  1.1  christos   "BFD_RELOC_PPC_TPREL16_LO",
   1413  1.1  christos   "BFD_RELOC_PPC_TPREL16_HI",
   1414  1.1  christos   "BFD_RELOC_PPC_TPREL16_HA",
   1415  1.1  christos   "BFD_RELOC_PPC_TPREL",
   1416  1.1  christos   "BFD_RELOC_PPC_DTPREL16",
   1417  1.1  christos   "BFD_RELOC_PPC_DTPREL16_LO",
   1418  1.1  christos   "BFD_RELOC_PPC_DTPREL16_HI",
   1419  1.1  christos   "BFD_RELOC_PPC_DTPREL16_HA",
   1420  1.1  christos   "BFD_RELOC_PPC_DTPREL",
   1421  1.1  christos   "BFD_RELOC_PPC_GOT_TLSGD16",
   1422  1.1  christos   "BFD_RELOC_PPC_GOT_TLSGD16_LO",
   1423  1.1  christos   "BFD_RELOC_PPC_GOT_TLSGD16_HI",
   1424  1.1  christos   "BFD_RELOC_PPC_GOT_TLSGD16_HA",
   1425  1.1  christos   "BFD_RELOC_PPC_GOT_TLSLD16",
   1426  1.1  christos   "BFD_RELOC_PPC_GOT_TLSLD16_LO",
   1427  1.1  christos   "BFD_RELOC_PPC_GOT_TLSLD16_HI",
   1428  1.1  christos   "BFD_RELOC_PPC_GOT_TLSLD16_HA",
   1429  1.1  christos   "BFD_RELOC_PPC_GOT_TPREL16",
   1430  1.1  christos   "BFD_RELOC_PPC_GOT_TPREL16_LO",
   1431  1.1  christos   "BFD_RELOC_PPC_GOT_TPREL16_HI",
   1432  1.1  christos   "BFD_RELOC_PPC_GOT_TPREL16_HA",
   1433  1.1  christos   "BFD_RELOC_PPC_GOT_DTPREL16",
   1434  1.1  christos   "BFD_RELOC_PPC_GOT_DTPREL16_LO",
   1435  1.1  christos   "BFD_RELOC_PPC_GOT_DTPREL16_HI",
   1436  1.1  christos   "BFD_RELOC_PPC_GOT_DTPREL16_HA",
   1437  1.1  christos   "BFD_RELOC_PPC64_TPREL16_DS",
   1438  1.1  christos   "BFD_RELOC_PPC64_TPREL16_LO_DS",
   1439  1.1  christos   "BFD_RELOC_PPC64_TPREL16_HIGHER",
   1440  1.1  christos   "BFD_RELOC_PPC64_TPREL16_HIGHERA",
   1441  1.1  christos   "BFD_RELOC_PPC64_TPREL16_HIGHEST",
   1442  1.1  christos   "BFD_RELOC_PPC64_TPREL16_HIGHESTA",
   1443  1.1  christos   "BFD_RELOC_PPC64_DTPREL16_DS",
   1444  1.1  christos   "BFD_RELOC_PPC64_DTPREL16_LO_DS",
   1445  1.1  christos   "BFD_RELOC_PPC64_DTPREL16_HIGHER",
   1446  1.1  christos   "BFD_RELOC_PPC64_DTPREL16_HIGHERA",
   1447  1.1  christos   "BFD_RELOC_PPC64_DTPREL16_HIGHEST",
   1448  1.1  christos   "BFD_RELOC_PPC64_DTPREL16_HIGHESTA",
   1449  1.1  christos   "BFD_RELOC_PPC64_TPREL16_HIGH",
   1450  1.1  christos   "BFD_RELOC_PPC64_TPREL16_HIGHA",
   1451  1.1  christos   "BFD_RELOC_PPC64_DTPREL16_HIGH",
   1452  1.1  christos   "BFD_RELOC_PPC64_DTPREL16_HIGHA",
   1453  1.1  christos   "BFD_RELOC_I370_D12",
   1454  1.1  christos   "BFD_RELOC_CTOR",
   1455  1.1  christos   "BFD_RELOC_ARM_PCREL_BRANCH",
   1456  1.1  christos   "BFD_RELOC_ARM_PCREL_BLX",
   1457  1.1  christos   "BFD_RELOC_THUMB_PCREL_BLX",
   1458  1.1  christos   "BFD_RELOC_ARM_PCREL_CALL",
   1459  1.1  christos   "BFD_RELOC_ARM_PCREL_JUMP",
   1460  1.1  christos   "BFD_RELOC_THUMB_PCREL_BRANCH7",
   1461  1.1  christos   "BFD_RELOC_THUMB_PCREL_BRANCH9",
   1462  1.1  christos   "BFD_RELOC_THUMB_PCREL_BRANCH12",
   1463  1.1  christos   "BFD_RELOC_THUMB_PCREL_BRANCH20",
   1464  1.1  christos   "BFD_RELOC_THUMB_PCREL_BRANCH23",
   1465  1.1  christos   "BFD_RELOC_THUMB_PCREL_BRANCH25",
   1466  1.1  christos   "BFD_RELOC_ARM_OFFSET_IMM",
   1467  1.1  christos   "BFD_RELOC_ARM_THUMB_OFFSET",
   1468  1.1  christos   "BFD_RELOC_ARM_TARGET1",
   1469  1.1  christos   "BFD_RELOC_ARM_ROSEGREL32",
   1470  1.1  christos   "BFD_RELOC_ARM_SBREL32",
   1471  1.1  christos   "BFD_RELOC_ARM_TARGET2",
   1472  1.1  christos   "BFD_RELOC_ARM_PREL31",
   1473  1.1  christos   "BFD_RELOC_ARM_MOVW",
   1474  1.1  christos   "BFD_RELOC_ARM_MOVT",
   1475  1.1  christos   "BFD_RELOC_ARM_MOVW_PCREL",
   1476  1.1  christos   "BFD_RELOC_ARM_MOVT_PCREL",
   1477  1.1  christos   "BFD_RELOC_ARM_THUMB_MOVW",
   1478  1.1  christos   "BFD_RELOC_ARM_THUMB_MOVT",
   1479  1.1  christos   "BFD_RELOC_ARM_THUMB_MOVW_PCREL",
   1480  1.1  christos   "BFD_RELOC_ARM_THUMB_MOVT_PCREL",
   1481  1.1  christos   "BFD_RELOC_ARM_JUMP_SLOT",
   1482  1.1  christos   "BFD_RELOC_ARM_GLOB_DAT",
   1483  1.1  christos   "BFD_RELOC_ARM_GOT32",
   1484  1.1  christos   "BFD_RELOC_ARM_PLT32",
   1485  1.1  christos   "BFD_RELOC_ARM_RELATIVE",
   1486  1.1  christos   "BFD_RELOC_ARM_GOTOFF",
   1487  1.1  christos   "BFD_RELOC_ARM_GOTPC",
   1488  1.1  christos   "BFD_RELOC_ARM_GOT_PREL",
   1489  1.1  christos   "BFD_RELOC_ARM_TLS_GD32",
   1490  1.1  christos   "BFD_RELOC_ARM_TLS_LDO32",
   1491  1.1  christos   "BFD_RELOC_ARM_TLS_LDM32",
   1492  1.1  christos   "BFD_RELOC_ARM_TLS_DTPOFF32",
   1493  1.1  christos   "BFD_RELOC_ARM_TLS_DTPMOD32",
   1494  1.1  christos   "BFD_RELOC_ARM_TLS_TPOFF32",
   1495  1.1  christos   "BFD_RELOC_ARM_TLS_IE32",
   1496  1.1  christos   "BFD_RELOC_ARM_TLS_LE32",
   1497  1.1  christos   "BFD_RELOC_ARM_TLS_GOTDESC",
   1498  1.1  christos   "BFD_RELOC_ARM_TLS_CALL",
   1499  1.1  christos   "BFD_RELOC_ARM_THM_TLS_CALL",
   1500  1.1  christos   "BFD_RELOC_ARM_TLS_DESCSEQ",
   1501  1.1  christos   "BFD_RELOC_ARM_THM_TLS_DESCSEQ",
   1502  1.1  christos   "BFD_RELOC_ARM_TLS_DESC",
   1503  1.1  christos   "BFD_RELOC_ARM_ALU_PC_G0_NC",
   1504  1.1  christos   "BFD_RELOC_ARM_ALU_PC_G0",
   1505  1.1  christos   "BFD_RELOC_ARM_ALU_PC_G1_NC",
   1506  1.1  christos   "BFD_RELOC_ARM_ALU_PC_G1",
   1507  1.1  christos   "BFD_RELOC_ARM_ALU_PC_G2",
   1508  1.1  christos   "BFD_RELOC_ARM_LDR_PC_G0",
   1509  1.1  christos   "BFD_RELOC_ARM_LDR_PC_G1",
   1510  1.1  christos   "BFD_RELOC_ARM_LDR_PC_G2",
   1511  1.1  christos   "BFD_RELOC_ARM_LDRS_PC_G0",
   1512  1.1  christos   "BFD_RELOC_ARM_LDRS_PC_G1",
   1513  1.1  christos   "BFD_RELOC_ARM_LDRS_PC_G2",
   1514  1.1  christos   "BFD_RELOC_ARM_LDC_PC_G0",
   1515  1.1  christos   "BFD_RELOC_ARM_LDC_PC_G1",
   1516  1.1  christos   "BFD_RELOC_ARM_LDC_PC_G2",
   1517  1.1  christos   "BFD_RELOC_ARM_ALU_SB_G0_NC",
   1518  1.1  christos   "BFD_RELOC_ARM_ALU_SB_G0",
   1519  1.1  christos   "BFD_RELOC_ARM_ALU_SB_G1_NC",
   1520  1.1  christos   "BFD_RELOC_ARM_ALU_SB_G1",
   1521  1.1  christos   "BFD_RELOC_ARM_ALU_SB_G2",
   1522  1.1  christos   "BFD_RELOC_ARM_LDR_SB_G0",
   1523  1.1  christos   "BFD_RELOC_ARM_LDR_SB_G1",
   1524  1.1  christos   "BFD_RELOC_ARM_LDR_SB_G2",
   1525  1.1  christos   "BFD_RELOC_ARM_LDRS_SB_G0",
   1526  1.1  christos   "BFD_RELOC_ARM_LDRS_SB_G1",
   1527  1.1  christos   "BFD_RELOC_ARM_LDRS_SB_G2",
   1528  1.1  christos   "BFD_RELOC_ARM_LDC_SB_G0",
   1529  1.1  christos   "BFD_RELOC_ARM_LDC_SB_G1",
   1530  1.1  christos   "BFD_RELOC_ARM_LDC_SB_G2",
   1531  1.1  christos   "BFD_RELOC_ARM_V4BX",
   1532  1.1  christos   "BFD_RELOC_ARM_IRELATIVE",
   1533  1.1  christos   "BFD_RELOC_ARM_IMMEDIATE",
   1534  1.1  christos   "BFD_RELOC_ARM_ADRL_IMMEDIATE",
   1535  1.1  christos   "BFD_RELOC_ARM_T32_IMMEDIATE",
   1536  1.1  christos   "BFD_RELOC_ARM_T32_ADD_IMM",
   1537  1.1  christos   "BFD_RELOC_ARM_T32_IMM12",
   1538  1.1  christos   "BFD_RELOC_ARM_T32_ADD_PC12",
   1539  1.1  christos   "BFD_RELOC_ARM_SHIFT_IMM",
   1540  1.1  christos   "BFD_RELOC_ARM_SMC",
   1541  1.1  christos   "BFD_RELOC_ARM_HVC",
   1542  1.1  christos   "BFD_RELOC_ARM_SWI",
   1543  1.1  christos   "BFD_RELOC_ARM_MULTI",
   1544  1.1  christos   "BFD_RELOC_ARM_CP_OFF_IMM",
   1545  1.1  christos   "BFD_RELOC_ARM_CP_OFF_IMM_S2",
   1546  1.1  christos   "BFD_RELOC_ARM_T32_CP_OFF_IMM",
   1547  1.1  christos   "BFD_RELOC_ARM_T32_CP_OFF_IMM_S2",
   1548  1.1  christos   "BFD_RELOC_ARM_ADR_IMM",
   1549  1.1  christos   "BFD_RELOC_ARM_LDR_IMM",
   1550  1.1  christos   "BFD_RELOC_ARM_LITERAL",
   1551  1.1  christos   "BFD_RELOC_ARM_IN_POOL",
   1552  1.1  christos   "BFD_RELOC_ARM_OFFSET_IMM8",
   1553  1.1  christos   "BFD_RELOC_ARM_T32_OFFSET_U8",
   1554  1.1  christos   "BFD_RELOC_ARM_T32_OFFSET_IMM",
   1555  1.1  christos   "BFD_RELOC_ARM_HWLITERAL",
   1556  1.1  christos   "BFD_RELOC_ARM_THUMB_ADD",
   1557  1.1  christos   "BFD_RELOC_ARM_THUMB_IMM",
   1558  1.1  christos   "BFD_RELOC_ARM_THUMB_SHIFT",
   1559  1.1  christos   "BFD_RELOC_SH_PCDISP8BY2",
   1560  1.1  christos   "BFD_RELOC_SH_PCDISP12BY2",
   1561  1.1  christos   "BFD_RELOC_SH_IMM3",
   1562  1.1  christos   "BFD_RELOC_SH_IMM3U",
   1563  1.1  christos   "BFD_RELOC_SH_DISP12",
   1564  1.1  christos   "BFD_RELOC_SH_DISP12BY2",
   1565  1.1  christos   "BFD_RELOC_SH_DISP12BY4",
   1566  1.1  christos   "BFD_RELOC_SH_DISP12BY8",
   1567  1.1  christos   "BFD_RELOC_SH_DISP20",
   1568  1.1  christos   "BFD_RELOC_SH_DISP20BY8",
   1569  1.1  christos   "BFD_RELOC_SH_IMM4",
   1570  1.1  christos   "BFD_RELOC_SH_IMM4BY2",
   1571  1.1  christos   "BFD_RELOC_SH_IMM4BY4",
   1572  1.1  christos   "BFD_RELOC_SH_IMM8",
   1573  1.1  christos   "BFD_RELOC_SH_IMM8BY2",
   1574  1.1  christos   "BFD_RELOC_SH_IMM8BY4",
   1575  1.1  christos   "BFD_RELOC_SH_PCRELIMM8BY2",
   1576  1.1  christos   "BFD_RELOC_SH_PCRELIMM8BY4",
   1577  1.1  christos   "BFD_RELOC_SH_SWITCH16",
   1578  1.1  christos   "BFD_RELOC_SH_SWITCH32",
   1579  1.1  christos   "BFD_RELOC_SH_USES",
   1580  1.1  christos   "BFD_RELOC_SH_COUNT",
   1581  1.1  christos   "BFD_RELOC_SH_ALIGN",
   1582  1.1  christos   "BFD_RELOC_SH_CODE",
   1583  1.1  christos   "BFD_RELOC_SH_DATA",
   1584  1.1  christos   "BFD_RELOC_SH_LABEL",
   1585  1.1  christos   "BFD_RELOC_SH_LOOP_START",
   1586  1.1  christos   "BFD_RELOC_SH_LOOP_END",
   1587  1.1  christos   "BFD_RELOC_SH_COPY",
   1588  1.1  christos   "BFD_RELOC_SH_GLOB_DAT",
   1589  1.1  christos   "BFD_RELOC_SH_JMP_SLOT",
   1590  1.1  christos   "BFD_RELOC_SH_RELATIVE",
   1591  1.1  christos   "BFD_RELOC_SH_GOTPC",
   1592  1.1  christos   "BFD_RELOC_SH_GOT_LOW16",
   1593  1.1  christos   "BFD_RELOC_SH_GOT_MEDLOW16",
   1594  1.1  christos   "BFD_RELOC_SH_GOT_MEDHI16",
   1595  1.1  christos   "BFD_RELOC_SH_GOT_HI16",
   1596  1.1  christos   "BFD_RELOC_SH_GOTPLT_LOW16",
   1597  1.1  christos   "BFD_RELOC_SH_GOTPLT_MEDLOW16",
   1598  1.1  christos   "BFD_RELOC_SH_GOTPLT_MEDHI16",
   1599  1.1  christos   "BFD_RELOC_SH_GOTPLT_HI16",
   1600  1.1  christos   "BFD_RELOC_SH_PLT_LOW16",
   1601  1.1  christos   "BFD_RELOC_SH_PLT_MEDLOW16",
   1602  1.1  christos   "BFD_RELOC_SH_PLT_MEDHI16",
   1603  1.1  christos   "BFD_RELOC_SH_PLT_HI16",
   1604  1.1  christos   "BFD_RELOC_SH_GOTOFF_LOW16",
   1605  1.1  christos   "BFD_RELOC_SH_GOTOFF_MEDLOW16",
   1606  1.1  christos   "BFD_RELOC_SH_GOTOFF_MEDHI16",
   1607  1.1  christos   "BFD_RELOC_SH_GOTOFF_HI16",
   1608  1.1  christos   "BFD_RELOC_SH_GOTPC_LOW16",
   1609  1.1  christos   "BFD_RELOC_SH_GOTPC_MEDLOW16",
   1610  1.1  christos   "BFD_RELOC_SH_GOTPC_MEDHI16",
   1611  1.1  christos   "BFD_RELOC_SH_GOTPC_HI16",
   1612  1.1  christos   "BFD_RELOC_SH_COPY64",
   1613  1.1  christos   "BFD_RELOC_SH_GLOB_DAT64",
   1614  1.1  christos   "BFD_RELOC_SH_JMP_SLOT64",
   1615  1.1  christos   "BFD_RELOC_SH_RELATIVE64",
   1616  1.1  christos   "BFD_RELOC_SH_GOT10BY4",
   1617  1.1  christos   "BFD_RELOC_SH_GOT10BY8",
   1618  1.1  christos   "BFD_RELOC_SH_GOTPLT10BY4",
   1619  1.1  christos   "BFD_RELOC_SH_GOTPLT10BY8",
   1620  1.1  christos   "BFD_RELOC_SH_GOTPLT32",
   1621  1.1  christos   "BFD_RELOC_SH_SHMEDIA_CODE",
   1622  1.1  christos   "BFD_RELOC_SH_IMMU5",
   1623  1.1  christos   "BFD_RELOC_SH_IMMS6",
   1624  1.1  christos   "BFD_RELOC_SH_IMMS6BY32",
   1625  1.1  christos   "BFD_RELOC_SH_IMMU6",
   1626  1.1  christos   "BFD_RELOC_SH_IMMS10",
   1627  1.1  christos   "BFD_RELOC_SH_IMMS10BY2",
   1628  1.1  christos   "BFD_RELOC_SH_IMMS10BY4",
   1629  1.1  christos   "BFD_RELOC_SH_IMMS10BY8",
   1630  1.1  christos   "BFD_RELOC_SH_IMMS16",
   1631  1.1  christos   "BFD_RELOC_SH_IMMU16",
   1632  1.1  christos   "BFD_RELOC_SH_IMM_LOW16",
   1633  1.1  christos   "BFD_RELOC_SH_IMM_LOW16_PCREL",
   1634  1.1  christos   "BFD_RELOC_SH_IMM_MEDLOW16",
   1635  1.1  christos   "BFD_RELOC_SH_IMM_MEDLOW16_PCREL",
   1636  1.1  christos   "BFD_RELOC_SH_IMM_MEDHI16",
   1637  1.1  christos   "BFD_RELOC_SH_IMM_MEDHI16_PCREL",
   1638  1.1  christos   "BFD_RELOC_SH_IMM_HI16",
   1639  1.1  christos   "BFD_RELOC_SH_IMM_HI16_PCREL",
   1640  1.1  christos   "BFD_RELOC_SH_PT_16",
   1641  1.1  christos   "BFD_RELOC_SH_TLS_GD_32",
   1642  1.1  christos   "BFD_RELOC_SH_TLS_LD_32",
   1643  1.1  christos   "BFD_RELOC_SH_TLS_LDO_32",
   1644  1.1  christos   "BFD_RELOC_SH_TLS_IE_32",
   1645  1.1  christos   "BFD_RELOC_SH_TLS_LE_32",
   1646  1.1  christos   "BFD_RELOC_SH_TLS_DTPMOD32",
   1647  1.1  christos   "BFD_RELOC_SH_TLS_DTPOFF32",
   1648  1.1  christos   "BFD_RELOC_SH_TLS_TPOFF32",
   1649  1.1  christos   "BFD_RELOC_SH_GOT20",
   1650  1.1  christos   "BFD_RELOC_SH_GOTOFF20",
   1651  1.1  christos   "BFD_RELOC_SH_GOTFUNCDESC",
   1652  1.1  christos   "BFD_RELOC_SH_GOTFUNCDESC20",
   1653  1.1  christos   "BFD_RELOC_SH_GOTOFFFUNCDESC",
   1654  1.1  christos   "BFD_RELOC_SH_GOTOFFFUNCDESC20",
   1655  1.1  christos   "BFD_RELOC_SH_FUNCDESC",
   1656  1.1  christos   "BFD_RELOC_ARC_B22_PCREL",
   1657  1.1  christos   "BFD_RELOC_ARC_B26",
   1658  1.1  christos   "BFD_RELOC_BFIN_16_IMM",
   1659  1.1  christos   "BFD_RELOC_BFIN_16_HIGH",
   1660  1.1  christos   "BFD_RELOC_BFIN_4_PCREL",
   1661  1.1  christos   "BFD_RELOC_BFIN_5_PCREL",
   1662  1.1  christos   "BFD_RELOC_BFIN_16_LOW",
   1663  1.1  christos   "BFD_RELOC_BFIN_10_PCREL",
   1664  1.1  christos   "BFD_RELOC_BFIN_11_PCREL",
   1665  1.1  christos   "BFD_RELOC_BFIN_12_PCREL_JUMP",
   1666  1.1  christos   "BFD_RELOC_BFIN_12_PCREL_JUMP_S",
   1667  1.1  christos   "BFD_RELOC_BFIN_24_PCREL_CALL_X",
   1668  1.1  christos   "BFD_RELOC_BFIN_24_PCREL_JUMP_L",
   1669  1.1  christos   "BFD_RELOC_BFIN_GOT17M4",
   1670  1.1  christos   "BFD_RELOC_BFIN_GOTHI",
   1671  1.1  christos   "BFD_RELOC_BFIN_GOTLO",
   1672  1.1  christos   "BFD_RELOC_BFIN_FUNCDESC",
   1673  1.1  christos   "BFD_RELOC_BFIN_FUNCDESC_GOT17M4",
   1674  1.1  christos   "BFD_RELOC_BFIN_FUNCDESC_GOTHI",
   1675  1.1  christos   "BFD_RELOC_BFIN_FUNCDESC_GOTLO",
   1676  1.1  christos   "BFD_RELOC_BFIN_FUNCDESC_VALUE",
   1677  1.1  christos   "BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4",
   1678  1.1  christos   "BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI",
   1679  1.1  christos   "BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO",
   1680  1.1  christos   "BFD_RELOC_BFIN_GOTOFF17M4",
   1681  1.1  christos   "BFD_RELOC_BFIN_GOTOFFHI",
   1682  1.1  christos   "BFD_RELOC_BFIN_GOTOFFLO",
   1683  1.1  christos   "BFD_RELOC_BFIN_GOT",
   1684  1.1  christos   "BFD_RELOC_BFIN_PLTPC",
   1685  1.1  christos   "BFD_ARELOC_BFIN_PUSH",
   1686  1.1  christos   "BFD_ARELOC_BFIN_CONST",
   1687  1.1  christos   "BFD_ARELOC_BFIN_ADD",
   1688  1.1  christos   "BFD_ARELOC_BFIN_SUB",
   1689  1.1  christos   "BFD_ARELOC_BFIN_MULT",
   1690  1.1  christos   "BFD_ARELOC_BFIN_DIV",
   1691  1.1  christos   "BFD_ARELOC_BFIN_MOD",
   1692  1.1  christos   "BFD_ARELOC_BFIN_LSHIFT",
   1693  1.1  christos   "BFD_ARELOC_BFIN_RSHIFT",
   1694  1.1  christos   "BFD_ARELOC_BFIN_AND",
   1695  1.1  christos   "BFD_ARELOC_BFIN_OR",
   1696  1.1  christos   "BFD_ARELOC_BFIN_XOR",
   1697  1.1  christos   "BFD_ARELOC_BFIN_LAND",
   1698  1.1  christos   "BFD_ARELOC_BFIN_LOR",
   1699  1.1  christos   "BFD_ARELOC_BFIN_LEN",
   1700  1.1  christos   "BFD_ARELOC_BFIN_NEG",
   1701  1.1  christos   "BFD_ARELOC_BFIN_COMP",
   1702  1.1  christos   "BFD_ARELOC_BFIN_PAGE",
   1703  1.1  christos   "BFD_ARELOC_BFIN_HWPAGE",
   1704  1.1  christos   "BFD_ARELOC_BFIN_ADDR",
   1705  1.1  christos   "BFD_RELOC_D10V_10_PCREL_R",
   1706  1.1  christos   "BFD_RELOC_D10V_10_PCREL_L",
   1707  1.1  christos   "BFD_RELOC_D10V_18",
   1708  1.1  christos   "BFD_RELOC_D10V_18_PCREL",
   1709  1.1  christos   "BFD_RELOC_D30V_6",
   1710  1.1  christos   "BFD_RELOC_D30V_9_PCREL",
   1711  1.1  christos   "BFD_RELOC_D30V_9_PCREL_R",
   1712  1.1  christos   "BFD_RELOC_D30V_15",
   1713  1.1  christos   "BFD_RELOC_D30V_15_PCREL",
   1714  1.1  christos   "BFD_RELOC_D30V_15_PCREL_R",
   1715  1.1  christos   "BFD_RELOC_D30V_21",
   1716  1.1  christos   "BFD_RELOC_D30V_21_PCREL",
   1717  1.1  christos   "BFD_RELOC_D30V_21_PCREL_R",
   1718  1.1  christos   "BFD_RELOC_D30V_32",
   1719  1.1  christos   "BFD_RELOC_D30V_32_PCREL",
   1720  1.1  christos   "BFD_RELOC_DLX_HI16_S",
   1721  1.1  christos   "BFD_RELOC_DLX_LO16",
   1722  1.1  christos   "BFD_RELOC_DLX_JMP26",
   1723  1.1  christos   "BFD_RELOC_M32C_HI8",
   1724  1.1  christos   "BFD_RELOC_M32C_RL_JUMP",
   1725  1.1  christos   "BFD_RELOC_M32C_RL_1ADDR",
   1726  1.1  christos   "BFD_RELOC_M32C_RL_2ADDR",
   1727  1.1  christos   "BFD_RELOC_M32R_24",
   1728  1.1  christos   "BFD_RELOC_M32R_10_PCREL",
   1729  1.1  christos   "BFD_RELOC_M32R_18_PCREL",
   1730  1.1  christos   "BFD_RELOC_M32R_26_PCREL",
   1731  1.1  christos   "BFD_RELOC_M32R_HI16_ULO",
   1732  1.1  christos   "BFD_RELOC_M32R_HI16_SLO",
   1733  1.1  christos   "BFD_RELOC_M32R_LO16",
   1734  1.1  christos   "BFD_RELOC_M32R_SDA16",
   1735  1.1  christos   "BFD_RELOC_M32R_GOT24",
   1736  1.1  christos   "BFD_RELOC_M32R_26_PLTREL",
   1737  1.1  christos   "BFD_RELOC_M32R_COPY",
   1738  1.1  christos   "BFD_RELOC_M32R_GLOB_DAT",
   1739  1.1  christos   "BFD_RELOC_M32R_JMP_SLOT",
   1740  1.1  christos   "BFD_RELOC_M32R_RELATIVE",
   1741  1.1  christos   "BFD_RELOC_M32R_GOTOFF",
   1742  1.1  christos   "BFD_RELOC_M32R_GOTOFF_HI_ULO",
   1743  1.1  christos   "BFD_RELOC_M32R_GOTOFF_HI_SLO",
   1744  1.1  christos   "BFD_RELOC_M32R_GOTOFF_LO",
   1745  1.1  christos   "BFD_RELOC_M32R_GOTPC24",
   1746  1.1  christos   "BFD_RELOC_M32R_GOT16_HI_ULO",
   1747  1.1  christos   "BFD_RELOC_M32R_GOT16_HI_SLO",
   1748  1.1  christos   "BFD_RELOC_M32R_GOT16_LO",
   1749  1.1  christos   "BFD_RELOC_M32R_GOTPC_HI_ULO",
   1750  1.1  christos   "BFD_RELOC_M32R_GOTPC_HI_SLO",
   1751  1.1  christos   "BFD_RELOC_M32R_GOTPC_LO",
   1752  1.1  christos   "BFD_RELOC_NDS32_20",
   1753  1.1  christos   "BFD_RELOC_NDS32_9_PCREL",
   1754  1.1  christos   "BFD_RELOC_NDS32_WORD_9_PCREL",
   1755  1.1  christos   "BFD_RELOC_NDS32_15_PCREL",
   1756  1.1  christos   "BFD_RELOC_NDS32_17_PCREL",
   1757  1.1  christos   "BFD_RELOC_NDS32_25_PCREL",
   1758  1.1  christos   "BFD_RELOC_NDS32_HI20",
   1759  1.1  christos   "BFD_RELOC_NDS32_LO12S3",
   1760  1.1  christos   "BFD_RELOC_NDS32_LO12S2",
   1761  1.1  christos   "BFD_RELOC_NDS32_LO12S1",
   1762  1.1  christos   "BFD_RELOC_NDS32_LO12S0",
   1763  1.1  christos   "BFD_RELOC_NDS32_LO12S0_ORI",
   1764  1.1  christos   "BFD_RELOC_NDS32_SDA15S3",
   1765  1.1  christos   "BFD_RELOC_NDS32_SDA15S2",
   1766  1.1  christos   "BFD_RELOC_NDS32_SDA15S1",
   1767  1.1  christos   "BFD_RELOC_NDS32_SDA15S0",
   1768  1.1  christos   "BFD_RELOC_NDS32_SDA16S3",
   1769  1.1  christos   "BFD_RELOC_NDS32_SDA17S2",
   1770  1.1  christos   "BFD_RELOC_NDS32_SDA18S1",
   1771  1.1  christos   "BFD_RELOC_NDS32_SDA19S0",
   1772  1.1  christos   "BFD_RELOC_NDS32_GOT20",
   1773  1.1  christos   "BFD_RELOC_NDS32_9_PLTREL",
   1774  1.1  christos   "BFD_RELOC_NDS32_25_PLTREL",
   1775  1.1  christos   "BFD_RELOC_NDS32_COPY",
   1776  1.1  christos   "BFD_RELOC_NDS32_GLOB_DAT",
   1777  1.1  christos   "BFD_RELOC_NDS32_JMP_SLOT",
   1778  1.1  christos   "BFD_RELOC_NDS32_RELATIVE",
   1779  1.1  christos   "BFD_RELOC_NDS32_GOTOFF",
   1780  1.1  christos   "BFD_RELOC_NDS32_GOTOFF_HI20",
   1781  1.1  christos   "BFD_RELOC_NDS32_GOTOFF_LO12",
   1782  1.1  christos   "BFD_RELOC_NDS32_GOTPC20",
   1783  1.1  christos   "BFD_RELOC_NDS32_GOT_HI20",
   1784  1.1  christos   "BFD_RELOC_NDS32_GOT_LO12",
   1785  1.1  christos   "BFD_RELOC_NDS32_GOTPC_HI20",
   1786  1.1  christos   "BFD_RELOC_NDS32_GOTPC_LO12",
   1787  1.1  christos   "BFD_RELOC_NDS32_INSN16",
   1788  1.1  christos   "BFD_RELOC_NDS32_LABEL",
   1789  1.1  christos   "BFD_RELOC_NDS32_LONGCALL1",
   1790  1.1  christos   "BFD_RELOC_NDS32_LONGCALL2",
   1791  1.1  christos   "BFD_RELOC_NDS32_LONGCALL3",
   1792  1.1  christos   "BFD_RELOC_NDS32_LONGJUMP1",
   1793  1.1  christos   "BFD_RELOC_NDS32_LONGJUMP2",
   1794  1.1  christos   "BFD_RELOC_NDS32_LONGJUMP3",
   1795  1.1  christos   "BFD_RELOC_NDS32_LOADSTORE",
   1796  1.1  christos   "BFD_RELOC_NDS32_9_FIXED",
   1797  1.3  christos   "BFD_RELOC_NDS32_15_FIXED",
   1798  1.3  christos   "BFD_RELOC_NDS32_17_FIXED",
   1799  1.3  christos   "BFD_RELOC_NDS32_25_FIXED",
   1800  1.3  christos   "BFD_RELOC_NDS32_LONGCALL4",
   1801  1.3  christos   "BFD_RELOC_NDS32_LONGCALL5",
   1802  1.3  christos   "BFD_RELOC_NDS32_LONGCALL6",
   1803  1.3  christos   "BFD_RELOC_NDS32_LONGJUMP4",
   1804  1.1  christos   "BFD_RELOC_NDS32_LONGJUMP5",
   1805  1.1  christos   "BFD_RELOC_NDS32_LONGJUMP6",
   1806  1.1  christos   "BFD_RELOC_NDS32_LONGJUMP7",
   1807  1.1  christos   "BFD_RELOC_NDS32_PLTREL_HI20",
   1808  1.1  christos   "BFD_RELOC_NDS32_PLTREL_LO12",
   1809  1.1  christos   "BFD_RELOC_NDS32_PLT_GOTREL_HI20",
   1810  1.1  christos   "BFD_RELOC_NDS32_PLT_GOTREL_LO12",
   1811  1.1  christos   "BFD_RELOC_NDS32_SDA12S2_DP",
   1812  1.1  christos   "BFD_RELOC_NDS32_SDA12S2_SP",
   1813  1.1  christos   "BFD_RELOC_NDS32_LO12S2_DP",
   1814  1.1  christos   "BFD_RELOC_NDS32_LO12S2_SP",
   1815  1.1  christos   "BFD_RELOC_NDS32_DWARF2_OP1",
   1816  1.1  christos   "BFD_RELOC_NDS32_DWARF2_OP2",
   1817  1.1  christos   "BFD_RELOC_NDS32_DWARF2_LEB",
   1818  1.1  christos   "BFD_RELOC_NDS32_UPDATE_TA",
   1819  1.1  christos   "BFD_RELOC_NDS32_PLT_GOTREL_LO20",
   1820  1.1  christos   "BFD_RELOC_NDS32_PLT_GOTREL_LO15",
   1821  1.1  christos   "BFD_RELOC_NDS32_PLT_GOTREL_LO19",
   1822  1.1  christos   "BFD_RELOC_NDS32_GOT_LO15",
   1823  1.1  christos   "BFD_RELOC_NDS32_GOT_LO19",
   1824  1.1  christos   "BFD_RELOC_NDS32_GOTOFF_LO15",
   1825  1.1  christos   "BFD_RELOC_NDS32_GOTOFF_LO19",
   1826  1.1  christos   "BFD_RELOC_NDS32_GOT15S2",
   1827  1.1  christos   "BFD_RELOC_NDS32_GOT17S2",
   1828  1.1  christos   "BFD_RELOC_NDS32_5",
   1829  1.1  christos   "BFD_RELOC_NDS32_10_UPCREL",
   1830  1.1  christos   "BFD_RELOC_NDS32_SDA_FP7U2_RELA",
   1831  1.1  christos   "BFD_RELOC_NDS32_RELAX_ENTRY",
   1832  1.1  christos   "BFD_RELOC_NDS32_GOT_SUFF",
   1833  1.1  christos   "BFD_RELOC_NDS32_GOTOFF_SUFF",
   1834  1.1  christos   "BFD_RELOC_NDS32_PLT_GOT_SUFF",
   1835  1.1  christos   "BFD_RELOC_NDS32_MULCALL_SUFF",
   1836  1.1  christos   "BFD_RELOC_NDS32_PTR",
   1837  1.1  christos   "BFD_RELOC_NDS32_PTR_COUNT",
   1838  1.1  christos   "BFD_RELOC_NDS32_PTR_RESOLVED",
   1839  1.1  christos   "BFD_RELOC_NDS32_PLTBLOCK",
   1840  1.1  christos   "BFD_RELOC_NDS32_RELAX_REGION_BEGIN",
   1841  1.1  christos   "BFD_RELOC_NDS32_RELAX_REGION_END",
   1842  1.1  christos   "BFD_RELOC_NDS32_MINUEND",
   1843  1.1  christos   "BFD_RELOC_NDS32_SUBTRAHEND",
   1844  1.1  christos   "BFD_RELOC_NDS32_DIFF8",
   1845  1.3  christos   "BFD_RELOC_NDS32_DIFF16",
   1846  1.1  christos   "BFD_RELOC_NDS32_DIFF32",
   1847  1.1  christos   "BFD_RELOC_NDS32_DIFF_ULEB128",
   1848  1.1  christos   "BFD_RELOC_NDS32_EMPTY",
   1849  1.1  christos   "BFD_RELOC_NDS32_25_ABS",
   1850  1.1  christos   "BFD_RELOC_NDS32_DATA",
   1851  1.3  christos   "BFD_RELOC_NDS32_TRAN",
   1852  1.3  christos   "BFD_RELOC_NDS32_17IFC_PCREL",
   1853  1.3  christos   "BFD_RELOC_NDS32_10IFCU_PCREL",
   1854  1.3  christos   "BFD_RELOC_NDS32_TPOFF",
   1855  1.3  christos   "BFD_RELOC_NDS32_TLS_LE_HI20",
   1856  1.3  christos   "BFD_RELOC_NDS32_TLS_LE_LO12",
   1857  1.3  christos   "BFD_RELOC_NDS32_TLS_LE_ADD",
   1858  1.3  christos   "BFD_RELOC_NDS32_TLS_LE_LS",
   1859  1.3  christos   "BFD_RELOC_NDS32_GOTTPOFF",
   1860  1.3  christos   "BFD_RELOC_NDS32_TLS_IE_HI20",
   1861  1.3  christos   "BFD_RELOC_NDS32_TLS_IE_LO12S2",
   1862  1.3  christos   "BFD_RELOC_NDS32_TLS_TPOFF",
   1863  1.3  christos   "BFD_RELOC_NDS32_TLS_LE_20",
   1864  1.1  christos   "BFD_RELOC_NDS32_TLS_LE_15S0",
   1865  1.1  christos   "BFD_RELOC_NDS32_TLS_LE_15S1",
   1866  1.1  christos   "BFD_RELOC_NDS32_TLS_LE_15S2",
   1867  1.1  christos   "BFD_RELOC_V850_9_PCREL",
   1868  1.1  christos   "BFD_RELOC_V850_22_PCREL",
   1869  1.1  christos   "BFD_RELOC_V850_SDA_16_16_OFFSET",
   1870  1.1  christos   "BFD_RELOC_V850_SDA_15_16_OFFSET",
   1871  1.1  christos   "BFD_RELOC_V850_ZDA_16_16_OFFSET",
   1872  1.1  christos   "BFD_RELOC_V850_ZDA_15_16_OFFSET",
   1873  1.1  christos   "BFD_RELOC_V850_TDA_6_8_OFFSET",
   1874  1.1  christos   "BFD_RELOC_V850_TDA_7_8_OFFSET",
   1875  1.1  christos   "BFD_RELOC_V850_TDA_7_7_OFFSET",
   1876  1.1  christos   "BFD_RELOC_V850_TDA_16_16_OFFSET",
   1877  1.1  christos   "BFD_RELOC_V850_TDA_4_5_OFFSET",
   1878  1.1  christos   "BFD_RELOC_V850_TDA_4_4_OFFSET",
   1879  1.1  christos   "BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET",
   1880  1.1  christos   "BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET",
   1881  1.1  christos   "BFD_RELOC_V850_CALLT_6_7_OFFSET",
   1882  1.1  christos   "BFD_RELOC_V850_CALLT_16_16_OFFSET",
   1883  1.1  christos   "BFD_RELOC_V850_LONGCALL",
   1884  1.1  christos   "BFD_RELOC_V850_LONGJUMP",
   1885  1.1  christos   "BFD_RELOC_V850_ALIGN",
   1886  1.1  christos   "BFD_RELOC_V850_LO16_SPLIT_OFFSET",
   1887  1.1  christos   "BFD_RELOC_V850_16_PCREL",
   1888  1.1  christos   "BFD_RELOC_V850_17_PCREL",
   1889  1.1  christos   "BFD_RELOC_V850_23",
   1890  1.1  christos   "BFD_RELOC_V850_32_PCREL",
   1891  1.1  christos   "BFD_RELOC_V850_32_ABS",
   1892  1.1  christos   "BFD_RELOC_V850_16_SPLIT_OFFSET",
   1893  1.1  christos   "BFD_RELOC_V850_16_S1",
   1894  1.1  christos   "BFD_RELOC_V850_LO16_S1",
   1895  1.1  christos   "BFD_RELOC_V850_CALLT_15_16_OFFSET",
   1896  1.1  christos   "BFD_RELOC_V850_32_GOTPCREL",
   1897  1.1  christos   "BFD_RELOC_V850_16_GOT",
   1898  1.1  christos   "BFD_RELOC_V850_32_GOT",
   1899  1.1  christos   "BFD_RELOC_V850_22_PLT_PCREL",
   1900  1.1  christos   "BFD_RELOC_V850_32_PLT_PCREL",
   1901  1.1  christos   "BFD_RELOC_V850_COPY",
   1902  1.1  christos   "BFD_RELOC_V850_GLOB_DAT",
   1903  1.1  christos   "BFD_RELOC_V850_JMP_SLOT",
   1904  1.1  christos   "BFD_RELOC_V850_RELATIVE",
   1905  1.1  christos   "BFD_RELOC_V850_16_GOTOFF",
   1906  1.1  christos   "BFD_RELOC_V850_32_GOTOFF",
   1907  1.1  christos   "BFD_RELOC_V850_CODE",
   1908  1.1  christos   "BFD_RELOC_V850_DATA",
   1909  1.1  christos   "BFD_RELOC_TIC30_LDP",
   1910  1.1  christos   "BFD_RELOC_TIC54X_PARTLS7",
   1911  1.1  christos   "BFD_RELOC_TIC54X_PARTMS9",
   1912  1.1  christos   "BFD_RELOC_TIC54X_23",
   1913  1.1  christos   "BFD_RELOC_TIC54X_16_OF_23",
   1914  1.1  christos   "BFD_RELOC_TIC54X_MS7_OF_23",
   1915  1.1  christos   "BFD_RELOC_C6000_PCR_S21",
   1916  1.1  christos   "BFD_RELOC_C6000_PCR_S12",
   1917  1.1  christos   "BFD_RELOC_C6000_PCR_S10",
   1918  1.1  christos   "BFD_RELOC_C6000_PCR_S7",
   1919  1.1  christos   "BFD_RELOC_C6000_ABS_S16",
   1920  1.1  christos   "BFD_RELOC_C6000_ABS_L16",
   1921  1.1  christos   "BFD_RELOC_C6000_ABS_H16",
   1922  1.1  christos   "BFD_RELOC_C6000_SBR_U15_B",
   1923  1.1  christos   "BFD_RELOC_C6000_SBR_U15_H",
   1924  1.1  christos   "BFD_RELOC_C6000_SBR_U15_W",
   1925  1.1  christos   "BFD_RELOC_C6000_SBR_S16",
   1926  1.1  christos   "BFD_RELOC_C6000_SBR_L16_B",
   1927  1.1  christos   "BFD_RELOC_C6000_SBR_L16_H",
   1928  1.1  christos   "BFD_RELOC_C6000_SBR_L16_W",
   1929  1.1  christos   "BFD_RELOC_C6000_SBR_H16_B",
   1930  1.1  christos   "BFD_RELOC_C6000_SBR_H16_H",
   1931  1.1  christos   "BFD_RELOC_C6000_SBR_H16_W",
   1932  1.1  christos   "BFD_RELOC_C6000_SBR_GOT_U15_W",
   1933  1.1  christos   "BFD_RELOC_C6000_SBR_GOT_L16_W",
   1934  1.1  christos   "BFD_RELOC_C6000_SBR_GOT_H16_W",
   1935  1.1  christos   "BFD_RELOC_C6000_DSBT_INDEX",
   1936  1.1  christos   "BFD_RELOC_C6000_PREL31",
   1937  1.1  christos   "BFD_RELOC_C6000_COPY",
   1938  1.1  christos   "BFD_RELOC_C6000_JUMP_SLOT",
   1939  1.1  christos   "BFD_RELOC_C6000_EHTYPE",
   1940  1.1  christos   "BFD_RELOC_C6000_PCR_H16",
   1941  1.1  christos   "BFD_RELOC_C6000_PCR_L16",
   1942  1.1  christos   "BFD_RELOC_C6000_ALIGN",
   1943  1.1  christos   "BFD_RELOC_C6000_FPHEAD",
   1944  1.1  christos   "BFD_RELOC_C6000_NOCMP",
   1945  1.1  christos   "BFD_RELOC_FR30_48",
   1946  1.1  christos   "BFD_RELOC_FR30_20",
   1947  1.1  christos   "BFD_RELOC_FR30_6_IN_4",
   1948  1.1  christos   "BFD_RELOC_FR30_8_IN_8",
   1949  1.1  christos   "BFD_RELOC_FR30_9_IN_8",
   1950  1.1  christos   "BFD_RELOC_FR30_10_IN_8",
   1951  1.1  christos   "BFD_RELOC_FR30_9_PCREL",
   1952  1.1  christos   "BFD_RELOC_FR30_12_PCREL",
   1953  1.1  christos   "BFD_RELOC_MCORE_PCREL_IMM8BY4",
   1954  1.1  christos   "BFD_RELOC_MCORE_PCREL_IMM11BY2",
   1955  1.1  christos   "BFD_RELOC_MCORE_PCREL_IMM4BY2",
   1956  1.1  christos   "BFD_RELOC_MCORE_PCREL_32",
   1957  1.1  christos   "BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2",
   1958  1.1  christos   "BFD_RELOC_MCORE_RVA",
   1959  1.1  christos   "BFD_RELOC_MEP_8",
   1960  1.1  christos   "BFD_RELOC_MEP_16",
   1961  1.1  christos   "BFD_RELOC_MEP_32",
   1962  1.1  christos   "BFD_RELOC_MEP_PCREL8A2",
   1963  1.1  christos   "BFD_RELOC_MEP_PCREL12A2",
   1964  1.1  christos   "BFD_RELOC_MEP_PCREL17A2",
   1965  1.1  christos   "BFD_RELOC_MEP_PCREL24A2",
   1966  1.1  christos   "BFD_RELOC_MEP_PCABS24A2",
   1967  1.1  christos   "BFD_RELOC_MEP_LOW16",
   1968  1.1  christos   "BFD_RELOC_MEP_HI16U",
   1969  1.1  christos   "BFD_RELOC_MEP_HI16S",
   1970  1.1  christos   "BFD_RELOC_MEP_GPREL",
   1971  1.1  christos   "BFD_RELOC_MEP_TPREL",
   1972  1.1  christos   "BFD_RELOC_MEP_TPREL7",
   1973  1.1  christos   "BFD_RELOC_MEP_TPREL7A2",
   1974  1.1  christos   "BFD_RELOC_MEP_TPREL7A4",
   1975  1.1  christos   "BFD_RELOC_MEP_UIMM24",
   1976  1.1  christos   "BFD_RELOC_MEP_ADDR24A4",
   1977  1.1  christos   "BFD_RELOC_MEP_GNU_VTINHERIT",
   1978  1.1  christos   "BFD_RELOC_MEP_GNU_VTENTRY",
   1979  1.1  christos 
   1980  1.1  christos   "BFD_RELOC_METAG_HIADDR16",
   1981  1.1  christos   "BFD_RELOC_METAG_LOADDR16",
   1982  1.1  christos   "BFD_RELOC_METAG_RELBRANCH",
   1983  1.1  christos   "BFD_RELOC_METAG_GETSETOFF",
   1984  1.1  christos   "BFD_RELOC_METAG_HIOG",
   1985  1.1  christos   "BFD_RELOC_METAG_LOOG",
   1986  1.1  christos   "BFD_RELOC_METAG_REL8",
   1987  1.1  christos   "BFD_RELOC_METAG_REL16",
   1988  1.1  christos   "BFD_RELOC_METAG_HI16_GOTOFF",
   1989  1.1  christos   "BFD_RELOC_METAG_LO16_GOTOFF",
   1990  1.1  christos   "BFD_RELOC_METAG_GETSET_GOTOFF",
   1991  1.1  christos   "BFD_RELOC_METAG_GETSET_GOT",
   1992  1.1  christos   "BFD_RELOC_METAG_HI16_GOTPC",
   1993  1.1  christos   "BFD_RELOC_METAG_LO16_GOTPC",
   1994  1.1  christos   "BFD_RELOC_METAG_HI16_PLT",
   1995  1.1  christos   "BFD_RELOC_METAG_LO16_PLT",
   1996  1.1  christos   "BFD_RELOC_METAG_RELBRANCH_PLT",
   1997  1.1  christos   "BFD_RELOC_METAG_GOTOFF",
   1998  1.1  christos   "BFD_RELOC_METAG_PLT",
   1999  1.1  christos   "BFD_RELOC_METAG_COPY",
   2000  1.1  christos   "BFD_RELOC_METAG_JMP_SLOT",
   2001  1.1  christos   "BFD_RELOC_METAG_RELATIVE",
   2002  1.1  christos   "BFD_RELOC_METAG_GLOB_DAT",
   2003  1.1  christos   "BFD_RELOC_METAG_TLS_GD",
   2004  1.1  christos   "BFD_RELOC_METAG_TLS_LDM",
   2005  1.1  christos   "BFD_RELOC_METAG_TLS_LDO_HI16",
   2006  1.1  christos   "BFD_RELOC_METAG_TLS_LDO_LO16",
   2007  1.1  christos   "BFD_RELOC_METAG_TLS_LDO",
   2008  1.1  christos   "BFD_RELOC_METAG_TLS_IE",
   2009  1.1  christos   "BFD_RELOC_METAG_TLS_IENONPIC",
   2010  1.1  christos   "BFD_RELOC_METAG_TLS_IENONPIC_HI16",
   2011  1.1  christos   "BFD_RELOC_METAG_TLS_IENONPIC_LO16",
   2012  1.1  christos   "BFD_RELOC_METAG_TLS_TPOFF",
   2013  1.1  christos   "BFD_RELOC_METAG_TLS_DTPMOD",
   2014  1.1  christos   "BFD_RELOC_METAG_TLS_DTPOFF",
   2015  1.1  christos   "BFD_RELOC_METAG_TLS_LE",
   2016  1.1  christos   "BFD_RELOC_METAG_TLS_LE_HI16",
   2017  1.1  christos   "BFD_RELOC_METAG_TLS_LE_LO16",
   2018  1.1  christos   "BFD_RELOC_MMIX_GETA",
   2019  1.1  christos   "BFD_RELOC_MMIX_GETA_1",
   2020  1.1  christos   "BFD_RELOC_MMIX_GETA_2",
   2021  1.1  christos   "BFD_RELOC_MMIX_GETA_3",
   2022  1.1  christos   "BFD_RELOC_MMIX_CBRANCH",
   2023  1.1  christos   "BFD_RELOC_MMIX_CBRANCH_J",
   2024  1.1  christos   "BFD_RELOC_MMIX_CBRANCH_1",
   2025  1.1  christos   "BFD_RELOC_MMIX_CBRANCH_2",
   2026  1.1  christos   "BFD_RELOC_MMIX_CBRANCH_3",
   2027  1.1  christos   "BFD_RELOC_MMIX_PUSHJ",
   2028  1.1  christos   "BFD_RELOC_MMIX_PUSHJ_1",
   2029  1.1  christos   "BFD_RELOC_MMIX_PUSHJ_2",
   2030  1.1  christos   "BFD_RELOC_MMIX_PUSHJ_3",
   2031  1.1  christos   "BFD_RELOC_MMIX_PUSHJ_STUBBABLE",
   2032  1.1  christos   "BFD_RELOC_MMIX_JMP",
   2033  1.1  christos   "BFD_RELOC_MMIX_JMP_1",
   2034  1.1  christos   "BFD_RELOC_MMIX_JMP_2",
   2035  1.1  christos   "BFD_RELOC_MMIX_JMP_3",
   2036  1.1  christos   "BFD_RELOC_MMIX_ADDR19",
   2037  1.1  christos   "BFD_RELOC_MMIX_ADDR27",
   2038  1.1  christos   "BFD_RELOC_MMIX_REG_OR_BYTE",
   2039  1.1  christos   "BFD_RELOC_MMIX_REG",
   2040  1.1  christos   "BFD_RELOC_MMIX_BASE_PLUS_OFFSET",
   2041  1.1  christos   "BFD_RELOC_MMIX_LOCAL",
   2042  1.1  christos   "BFD_RELOC_AVR_7_PCREL",
   2043  1.1  christos   "BFD_RELOC_AVR_13_PCREL",
   2044  1.1  christos   "BFD_RELOC_AVR_16_PM",
   2045  1.1  christos   "BFD_RELOC_AVR_LO8_LDI",
   2046  1.1  christos   "BFD_RELOC_AVR_HI8_LDI",
   2047  1.1  christos   "BFD_RELOC_AVR_HH8_LDI",
   2048  1.1  christos   "BFD_RELOC_AVR_MS8_LDI",
   2049  1.1  christos   "BFD_RELOC_AVR_LO8_LDI_NEG",
   2050  1.1  christos   "BFD_RELOC_AVR_HI8_LDI_NEG",
   2051  1.1  christos   "BFD_RELOC_AVR_HH8_LDI_NEG",
   2052  1.1  christos   "BFD_RELOC_AVR_MS8_LDI_NEG",
   2053  1.1  christos   "BFD_RELOC_AVR_LO8_LDI_PM",
   2054  1.1  christos   "BFD_RELOC_AVR_LO8_LDI_GS",
   2055  1.1  christos   "BFD_RELOC_AVR_HI8_LDI_PM",
   2056  1.1  christos   "BFD_RELOC_AVR_HI8_LDI_GS",
   2057  1.1  christos   "BFD_RELOC_AVR_HH8_LDI_PM",
   2058  1.1  christos   "BFD_RELOC_AVR_LO8_LDI_PM_NEG",
   2059  1.1  christos   "BFD_RELOC_AVR_HI8_LDI_PM_NEG",
   2060  1.1  christos   "BFD_RELOC_AVR_HH8_LDI_PM_NEG",
   2061  1.1  christos   "BFD_RELOC_AVR_CALL",
   2062  1.1  christos   "BFD_RELOC_AVR_LDI",
   2063  1.1  christos   "BFD_RELOC_AVR_6",
   2064  1.1  christos   "BFD_RELOC_AVR_6_ADIW",
   2065  1.3  christos   "BFD_RELOC_AVR_8_LO",
   2066  1.3  christos   "BFD_RELOC_AVR_8_HI",
   2067  1.3  christos   "BFD_RELOC_AVR_8_HLO",
   2068  1.3  christos   "BFD_RELOC_AVR_DIFF8",
   2069  1.3  christos   "BFD_RELOC_AVR_DIFF16",
   2070  1.3  christos   "BFD_RELOC_AVR_DIFF32",
   2071  1.1  christos   "BFD_RELOC_AVR_LDS_STS_16",
   2072  1.1  christos   "BFD_RELOC_AVR_PORT6",
   2073  1.1  christos   "BFD_RELOC_AVR_PORT5",
   2074  1.1  christos   "BFD_RELOC_RL78_NEG8",
   2075  1.1  christos   "BFD_RELOC_RL78_NEG16",
   2076  1.1  christos   "BFD_RELOC_RL78_NEG24",
   2077  1.1  christos   "BFD_RELOC_RL78_NEG32",
   2078  1.1  christos   "BFD_RELOC_RL78_16_OP",
   2079  1.1  christos   "BFD_RELOC_RL78_24_OP",
   2080  1.1  christos   "BFD_RELOC_RL78_32_OP",
   2081  1.1  christos   "BFD_RELOC_RL78_8U",
   2082  1.1  christos   "BFD_RELOC_RL78_16U",
   2083  1.1  christos   "BFD_RELOC_RL78_24U",
   2084  1.1  christos   "BFD_RELOC_RL78_DIR3U_PCREL",
   2085  1.1  christos   "BFD_RELOC_RL78_DIFF",
   2086  1.1  christos   "BFD_RELOC_RL78_GPRELB",
   2087  1.1  christos   "BFD_RELOC_RL78_GPRELW",
   2088  1.1  christos   "BFD_RELOC_RL78_GPRELL",
   2089  1.1  christos   "BFD_RELOC_RL78_SYM",
   2090  1.1  christos   "BFD_RELOC_RL78_OP_SUBTRACT",
   2091  1.1  christos   "BFD_RELOC_RL78_OP_NEG",
   2092  1.1  christos   "BFD_RELOC_RL78_OP_AND",
   2093  1.1  christos   "BFD_RELOC_RL78_OP_SHRA",
   2094  1.1  christos   "BFD_RELOC_RL78_ABS8",
   2095  1.1  christos   "BFD_RELOC_RL78_ABS16",
   2096  1.1  christos   "BFD_RELOC_RL78_ABS16_REV",
   2097  1.1  christos   "BFD_RELOC_RL78_ABS32",
   2098  1.1  christos   "BFD_RELOC_RL78_ABS32_REV",
   2099  1.1  christos   "BFD_RELOC_RL78_ABS16U",
   2100  1.1  christos   "BFD_RELOC_RL78_ABS16UW",
   2101  1.1  christos   "BFD_RELOC_RL78_ABS16UL",
   2102  1.1  christos   "BFD_RELOC_RL78_RELAX",
   2103  1.1  christos   "BFD_RELOC_RL78_HI16",
   2104  1.1  christos   "BFD_RELOC_RL78_HI8",
   2105  1.1  christos   "BFD_RELOC_RL78_LO16",
   2106  1.1  christos   "BFD_RELOC_RL78_CODE",
   2107  1.1  christos   "BFD_RELOC_RX_NEG8",
   2108  1.1  christos   "BFD_RELOC_RX_NEG16",
   2109  1.1  christos   "BFD_RELOC_RX_NEG24",
   2110  1.1  christos   "BFD_RELOC_RX_NEG32",
   2111  1.1  christos   "BFD_RELOC_RX_16_OP",
   2112  1.1  christos   "BFD_RELOC_RX_24_OP",
   2113  1.1  christos   "BFD_RELOC_RX_32_OP",
   2114  1.1  christos   "BFD_RELOC_RX_8U",
   2115  1.1  christos   "BFD_RELOC_RX_16U",
   2116  1.1  christos   "BFD_RELOC_RX_24U",
   2117  1.1  christos   "BFD_RELOC_RX_DIR3U_PCREL",
   2118  1.1  christos   "BFD_RELOC_RX_DIFF",
   2119  1.1  christos   "BFD_RELOC_RX_GPRELB",
   2120  1.1  christos   "BFD_RELOC_RX_GPRELW",
   2121  1.1  christos   "BFD_RELOC_RX_GPRELL",
   2122  1.1  christos   "BFD_RELOC_RX_SYM",
   2123  1.1  christos   "BFD_RELOC_RX_OP_SUBTRACT",
   2124  1.1  christos   "BFD_RELOC_RX_OP_NEG",
   2125  1.1  christos   "BFD_RELOC_RX_ABS8",
   2126  1.1  christos   "BFD_RELOC_RX_ABS16",
   2127  1.1  christos   "BFD_RELOC_RX_ABS16_REV",
   2128  1.1  christos   "BFD_RELOC_RX_ABS32",
   2129  1.1  christos   "BFD_RELOC_RX_ABS32_REV",
   2130  1.1  christos   "BFD_RELOC_RX_ABS16U",
   2131  1.1  christos   "BFD_RELOC_RX_ABS16UW",
   2132  1.1  christos   "BFD_RELOC_RX_ABS16UL",
   2133  1.1  christos   "BFD_RELOC_RX_RELAX",
   2134  1.1  christos   "BFD_RELOC_390_12",
   2135  1.1  christos   "BFD_RELOC_390_GOT12",
   2136  1.1  christos   "BFD_RELOC_390_PLT32",
   2137  1.1  christos   "BFD_RELOC_390_COPY",
   2138  1.1  christos   "BFD_RELOC_390_GLOB_DAT",
   2139  1.1  christos   "BFD_RELOC_390_JMP_SLOT",
   2140  1.1  christos   "BFD_RELOC_390_RELATIVE",
   2141  1.1  christos   "BFD_RELOC_390_GOTPC",
   2142  1.1  christos   "BFD_RELOC_390_GOT16",
   2143  1.1  christos   "BFD_RELOC_390_PC12DBL",
   2144  1.1  christos   "BFD_RELOC_390_PLT12DBL",
   2145  1.1  christos   "BFD_RELOC_390_PC16DBL",
   2146  1.1  christos   "BFD_RELOC_390_PLT16DBL",
   2147  1.1  christos   "BFD_RELOC_390_PC24DBL",
   2148  1.1  christos   "BFD_RELOC_390_PLT24DBL",
   2149  1.1  christos   "BFD_RELOC_390_PC32DBL",
   2150  1.1  christos   "BFD_RELOC_390_PLT32DBL",
   2151  1.1  christos   "BFD_RELOC_390_GOTPCDBL",
   2152  1.1  christos   "BFD_RELOC_390_GOT64",
   2153  1.1  christos   "BFD_RELOC_390_PLT64",
   2154  1.1  christos   "BFD_RELOC_390_GOTENT",
   2155  1.1  christos   "BFD_RELOC_390_GOTOFF64",
   2156  1.1  christos   "BFD_RELOC_390_GOTPLT12",
   2157  1.1  christos   "BFD_RELOC_390_GOTPLT16",
   2158  1.1  christos   "BFD_RELOC_390_GOTPLT32",
   2159  1.1  christos   "BFD_RELOC_390_GOTPLT64",
   2160  1.1  christos   "BFD_RELOC_390_GOTPLTENT",
   2161  1.1  christos   "BFD_RELOC_390_PLTOFF16",
   2162  1.1  christos   "BFD_RELOC_390_PLTOFF32",
   2163  1.1  christos   "BFD_RELOC_390_PLTOFF64",
   2164  1.1  christos   "BFD_RELOC_390_TLS_LOAD",
   2165  1.1  christos   "BFD_RELOC_390_TLS_GDCALL",
   2166  1.1  christos   "BFD_RELOC_390_TLS_LDCALL",
   2167  1.1  christos   "BFD_RELOC_390_TLS_GD32",
   2168  1.1  christos   "BFD_RELOC_390_TLS_GD64",
   2169  1.1  christos   "BFD_RELOC_390_TLS_GOTIE12",
   2170  1.1  christos   "BFD_RELOC_390_TLS_GOTIE32",
   2171  1.1  christos   "BFD_RELOC_390_TLS_GOTIE64",
   2172  1.1  christos   "BFD_RELOC_390_TLS_LDM32",
   2173  1.1  christos   "BFD_RELOC_390_TLS_LDM64",
   2174  1.1  christos   "BFD_RELOC_390_TLS_IE32",
   2175  1.1  christos   "BFD_RELOC_390_TLS_IE64",
   2176  1.1  christos   "BFD_RELOC_390_TLS_IEENT",
   2177  1.1  christos   "BFD_RELOC_390_TLS_LE32",
   2178  1.1  christos   "BFD_RELOC_390_TLS_LE64",
   2179  1.1  christos   "BFD_RELOC_390_TLS_LDO32",
   2180  1.1  christos   "BFD_RELOC_390_TLS_LDO64",
   2181  1.1  christos   "BFD_RELOC_390_TLS_DTPMOD",
   2182  1.1  christos   "BFD_RELOC_390_TLS_DTPOFF",
   2183  1.1  christos   "BFD_RELOC_390_TLS_TPOFF",
   2184  1.1  christos   "BFD_RELOC_390_20",
   2185  1.1  christos   "BFD_RELOC_390_GOT20",
   2186  1.1  christos   "BFD_RELOC_390_GOTPLT20",
   2187  1.1  christos   "BFD_RELOC_390_TLS_GOTIE20",
   2188  1.1  christos   "BFD_RELOC_390_IRELATIVE",
   2189  1.1  christos   "BFD_RELOC_SCORE_GPREL15",
   2190  1.1  christos   "BFD_RELOC_SCORE_DUMMY2",
   2191  1.1  christos   "BFD_RELOC_SCORE_JMP",
   2192  1.1  christos   "BFD_RELOC_SCORE_BRANCH",
   2193  1.1  christos   "BFD_RELOC_SCORE_IMM30",
   2194  1.1  christos   "BFD_RELOC_SCORE_IMM32",
   2195  1.1  christos   "BFD_RELOC_SCORE16_JMP",
   2196  1.1  christos   "BFD_RELOC_SCORE16_BRANCH",
   2197  1.1  christos   "BFD_RELOC_SCORE_BCMP",
   2198  1.1  christos   "BFD_RELOC_SCORE_GOT15",
   2199  1.1  christos   "BFD_RELOC_SCORE_GOT_LO16",
   2200  1.1  christos   "BFD_RELOC_SCORE_CALL15",
   2201  1.1  christos   "BFD_RELOC_SCORE_DUMMY_HI16",
   2202  1.1  christos   "BFD_RELOC_IP2K_FR9",
   2203  1.1  christos   "BFD_RELOC_IP2K_BANK",
   2204  1.1  christos   "BFD_RELOC_IP2K_ADDR16CJP",
   2205  1.1  christos   "BFD_RELOC_IP2K_PAGE3",
   2206  1.1  christos   "BFD_RELOC_IP2K_LO8DATA",
   2207  1.1  christos   "BFD_RELOC_IP2K_HI8DATA",
   2208  1.1  christos   "BFD_RELOC_IP2K_EX8DATA",
   2209  1.1  christos   "BFD_RELOC_IP2K_LO8INSN",
   2210  1.1  christos   "BFD_RELOC_IP2K_HI8INSN",
   2211  1.1  christos   "BFD_RELOC_IP2K_PC_SKIP",
   2212  1.1  christos   "BFD_RELOC_IP2K_TEXT",
   2213  1.1  christos   "BFD_RELOC_IP2K_FR_OFFSET",
   2214  1.1  christos   "BFD_RELOC_VPE4KMATH_DATA",
   2215  1.1  christos   "BFD_RELOC_VPE4KMATH_INSN",
   2216  1.1  christos   "BFD_RELOC_VTABLE_INHERIT",
   2217  1.1  christos   "BFD_RELOC_VTABLE_ENTRY",
   2218  1.1  christos   "BFD_RELOC_IA64_IMM14",
   2219  1.1  christos   "BFD_RELOC_IA64_IMM22",
   2220  1.1  christos   "BFD_RELOC_IA64_IMM64",
   2221  1.1  christos   "BFD_RELOC_IA64_DIR32MSB",
   2222  1.1  christos   "BFD_RELOC_IA64_DIR32LSB",
   2223  1.1  christos   "BFD_RELOC_IA64_DIR64MSB",
   2224  1.1  christos   "BFD_RELOC_IA64_DIR64LSB",
   2225  1.1  christos   "BFD_RELOC_IA64_GPREL22",
   2226  1.1  christos   "BFD_RELOC_IA64_GPREL64I",
   2227  1.1  christos   "BFD_RELOC_IA64_GPREL32MSB",
   2228  1.1  christos   "BFD_RELOC_IA64_GPREL32LSB",
   2229  1.1  christos   "BFD_RELOC_IA64_GPREL64MSB",
   2230  1.1  christos   "BFD_RELOC_IA64_GPREL64LSB",
   2231  1.1  christos   "BFD_RELOC_IA64_LTOFF22",
   2232  1.1  christos   "BFD_RELOC_IA64_LTOFF64I",
   2233  1.1  christos   "BFD_RELOC_IA64_PLTOFF22",
   2234  1.1  christos   "BFD_RELOC_IA64_PLTOFF64I",
   2235  1.1  christos   "BFD_RELOC_IA64_PLTOFF64MSB",
   2236  1.1  christos   "BFD_RELOC_IA64_PLTOFF64LSB",
   2237  1.1  christos   "BFD_RELOC_IA64_FPTR64I",
   2238  1.1  christos   "BFD_RELOC_IA64_FPTR32MSB",
   2239  1.1  christos   "BFD_RELOC_IA64_FPTR32LSB",
   2240  1.1  christos   "BFD_RELOC_IA64_FPTR64MSB",
   2241  1.1  christos   "BFD_RELOC_IA64_FPTR64LSB",
   2242  1.1  christos   "BFD_RELOC_IA64_PCREL21B",
   2243  1.1  christos   "BFD_RELOC_IA64_PCREL21BI",
   2244  1.1  christos   "BFD_RELOC_IA64_PCREL21M",
   2245  1.1  christos   "BFD_RELOC_IA64_PCREL21F",
   2246  1.1  christos   "BFD_RELOC_IA64_PCREL22",
   2247  1.1  christos   "BFD_RELOC_IA64_PCREL60B",
   2248  1.1  christos   "BFD_RELOC_IA64_PCREL64I",
   2249  1.1  christos   "BFD_RELOC_IA64_PCREL32MSB",
   2250  1.1  christos   "BFD_RELOC_IA64_PCREL32LSB",
   2251  1.1  christos   "BFD_RELOC_IA64_PCREL64MSB",
   2252  1.1  christos   "BFD_RELOC_IA64_PCREL64LSB",
   2253  1.1  christos   "BFD_RELOC_IA64_LTOFF_FPTR22",
   2254  1.1  christos   "BFD_RELOC_IA64_LTOFF_FPTR64I",
   2255  1.1  christos   "BFD_RELOC_IA64_LTOFF_FPTR32MSB",
   2256  1.1  christos   "BFD_RELOC_IA64_LTOFF_FPTR32LSB",
   2257  1.1  christos   "BFD_RELOC_IA64_LTOFF_FPTR64MSB",
   2258  1.1  christos   "BFD_RELOC_IA64_LTOFF_FPTR64LSB",
   2259  1.1  christos   "BFD_RELOC_IA64_SEGREL32MSB",
   2260  1.1  christos   "BFD_RELOC_IA64_SEGREL32LSB",
   2261  1.1  christos   "BFD_RELOC_IA64_SEGREL64MSB",
   2262  1.1  christos   "BFD_RELOC_IA64_SEGREL64LSB",
   2263  1.1  christos   "BFD_RELOC_IA64_SECREL32MSB",
   2264  1.1  christos   "BFD_RELOC_IA64_SECREL32LSB",
   2265  1.1  christos   "BFD_RELOC_IA64_SECREL64MSB",
   2266  1.1  christos   "BFD_RELOC_IA64_SECREL64LSB",
   2267  1.1  christos   "BFD_RELOC_IA64_REL32MSB",
   2268  1.1  christos   "BFD_RELOC_IA64_REL32LSB",
   2269  1.1  christos   "BFD_RELOC_IA64_REL64MSB",
   2270  1.1  christos   "BFD_RELOC_IA64_REL64LSB",
   2271  1.1  christos   "BFD_RELOC_IA64_LTV32MSB",
   2272  1.1  christos   "BFD_RELOC_IA64_LTV32LSB",
   2273  1.1  christos   "BFD_RELOC_IA64_LTV64MSB",
   2274  1.1  christos   "BFD_RELOC_IA64_LTV64LSB",
   2275  1.1  christos   "BFD_RELOC_IA64_IPLTMSB",
   2276  1.1  christos   "BFD_RELOC_IA64_IPLTLSB",
   2277  1.1  christos   "BFD_RELOC_IA64_COPY",
   2278  1.1  christos   "BFD_RELOC_IA64_LTOFF22X",
   2279  1.1  christos   "BFD_RELOC_IA64_LDXMOV",
   2280  1.1  christos   "BFD_RELOC_IA64_TPREL14",
   2281  1.1  christos   "BFD_RELOC_IA64_TPREL22",
   2282  1.1  christos   "BFD_RELOC_IA64_TPREL64I",
   2283  1.1  christos   "BFD_RELOC_IA64_TPREL64MSB",
   2284  1.1  christos   "BFD_RELOC_IA64_TPREL64LSB",
   2285  1.1  christos   "BFD_RELOC_IA64_LTOFF_TPREL22",
   2286  1.1  christos   "BFD_RELOC_IA64_DTPMOD64MSB",
   2287  1.1  christos   "BFD_RELOC_IA64_DTPMOD64LSB",
   2288  1.1  christos   "BFD_RELOC_IA64_LTOFF_DTPMOD22",
   2289  1.1  christos   "BFD_RELOC_IA64_DTPREL14",
   2290  1.1  christos   "BFD_RELOC_IA64_DTPREL22",
   2291  1.1  christos   "BFD_RELOC_IA64_DTPREL64I",
   2292  1.1  christos   "BFD_RELOC_IA64_DTPREL32MSB",
   2293  1.1  christos   "BFD_RELOC_IA64_DTPREL32LSB",
   2294  1.1  christos   "BFD_RELOC_IA64_DTPREL64MSB",
   2295  1.1  christos   "BFD_RELOC_IA64_DTPREL64LSB",
   2296  1.1  christos   "BFD_RELOC_IA64_LTOFF_DTPREL22",
   2297  1.1  christos   "BFD_RELOC_M68HC11_HI8",
   2298  1.1  christos   "BFD_RELOC_M68HC11_LO8",
   2299  1.1  christos   "BFD_RELOC_M68HC11_3B",
   2300  1.1  christos   "BFD_RELOC_M68HC11_RL_JUMP",
   2301  1.1  christos   "BFD_RELOC_M68HC11_RL_GROUP",
   2302  1.1  christos   "BFD_RELOC_M68HC11_LO16",
   2303  1.1  christos   "BFD_RELOC_M68HC11_PAGE",
   2304  1.1  christos   "BFD_RELOC_M68HC11_24",
   2305  1.1  christos   "BFD_RELOC_M68HC12_5B",
   2306  1.1  christos   "BFD_RELOC_XGATE_RL_JUMP",
   2307  1.1  christos   "BFD_RELOC_XGATE_RL_GROUP",
   2308  1.1  christos   "BFD_RELOC_XGATE_LO16",
   2309  1.1  christos   "BFD_RELOC_XGATE_GPAGE",
   2310  1.1  christos   "BFD_RELOC_XGATE_24",
   2311  1.1  christos   "BFD_RELOC_XGATE_PCREL_9",
   2312  1.1  christos   "BFD_RELOC_XGATE_PCREL_10",
   2313  1.1  christos   "BFD_RELOC_XGATE_IMM8_LO",
   2314  1.1  christos   "BFD_RELOC_XGATE_IMM8_HI",
   2315  1.1  christos   "BFD_RELOC_XGATE_IMM3",
   2316  1.1  christos   "BFD_RELOC_XGATE_IMM4",
   2317  1.1  christos   "BFD_RELOC_XGATE_IMM5",
   2318  1.1  christos   "BFD_RELOC_M68HC12_9B",
   2319  1.1  christos   "BFD_RELOC_M68HC12_16B",
   2320  1.1  christos   "BFD_RELOC_M68HC12_9_PCREL",
   2321  1.1  christos   "BFD_RELOC_M68HC12_10_PCREL",
   2322  1.1  christos   "BFD_RELOC_M68HC12_LO8XG",
   2323  1.1  christos   "BFD_RELOC_M68HC12_HI8XG",
   2324  1.1  christos   "BFD_RELOC_16C_NUM08",
   2325  1.1  christos   "BFD_RELOC_16C_NUM08_C",
   2326  1.1  christos   "BFD_RELOC_16C_NUM16",
   2327  1.1  christos   "BFD_RELOC_16C_NUM16_C",
   2328  1.1  christos   "BFD_RELOC_16C_NUM32",
   2329  1.1  christos   "BFD_RELOC_16C_NUM32_C",
   2330  1.1  christos   "BFD_RELOC_16C_DISP04",
   2331  1.1  christos   "BFD_RELOC_16C_DISP04_C",
   2332  1.1  christos   "BFD_RELOC_16C_DISP08",
   2333  1.1  christos   "BFD_RELOC_16C_DISP08_C",
   2334  1.1  christos   "BFD_RELOC_16C_DISP16",
   2335  1.1  christos   "BFD_RELOC_16C_DISP16_C",
   2336  1.1  christos   "BFD_RELOC_16C_DISP24",
   2337  1.1  christos   "BFD_RELOC_16C_DISP24_C",
   2338  1.1  christos   "BFD_RELOC_16C_DISP24a",
   2339  1.1  christos   "BFD_RELOC_16C_DISP24a_C",
   2340  1.1  christos   "BFD_RELOC_16C_REG04",
   2341  1.1  christos   "BFD_RELOC_16C_REG04_C",
   2342  1.1  christos   "BFD_RELOC_16C_REG04a",
   2343  1.1  christos   "BFD_RELOC_16C_REG04a_C",
   2344  1.1  christos   "BFD_RELOC_16C_REG14",
   2345  1.1  christos   "BFD_RELOC_16C_REG14_C",
   2346  1.1  christos   "BFD_RELOC_16C_REG16",
   2347  1.1  christos   "BFD_RELOC_16C_REG16_C",
   2348  1.1  christos   "BFD_RELOC_16C_REG20",
   2349  1.1  christos   "BFD_RELOC_16C_REG20_C",
   2350  1.1  christos   "BFD_RELOC_16C_ABS20",
   2351  1.1  christos   "BFD_RELOC_16C_ABS20_C",
   2352  1.1  christos   "BFD_RELOC_16C_ABS24",
   2353  1.1  christos   "BFD_RELOC_16C_ABS24_C",
   2354  1.1  christos   "BFD_RELOC_16C_IMM04",
   2355  1.1  christos   "BFD_RELOC_16C_IMM04_C",
   2356  1.1  christos   "BFD_RELOC_16C_IMM16",
   2357  1.1  christos   "BFD_RELOC_16C_IMM16_C",
   2358  1.1  christos   "BFD_RELOC_16C_IMM20",
   2359  1.1  christos   "BFD_RELOC_16C_IMM20_C",
   2360  1.1  christos   "BFD_RELOC_16C_IMM24",
   2361  1.1  christos   "BFD_RELOC_16C_IMM24_C",
   2362  1.1  christos   "BFD_RELOC_16C_IMM32",
   2363  1.1  christos   "BFD_RELOC_16C_IMM32_C",
   2364  1.1  christos   "BFD_RELOC_CR16_NUM8",
   2365  1.1  christos   "BFD_RELOC_CR16_NUM16",
   2366  1.1  christos   "BFD_RELOC_CR16_NUM32",
   2367  1.1  christos   "BFD_RELOC_CR16_NUM32a",
   2368  1.1  christos   "BFD_RELOC_CR16_REGREL0",
   2369  1.1  christos   "BFD_RELOC_CR16_REGREL4",
   2370  1.1  christos   "BFD_RELOC_CR16_REGREL4a",
   2371  1.1  christos   "BFD_RELOC_CR16_REGREL14",
   2372  1.1  christos   "BFD_RELOC_CR16_REGREL14a",
   2373  1.1  christos   "BFD_RELOC_CR16_REGREL16",
   2374  1.1  christos   "BFD_RELOC_CR16_REGREL20",
   2375  1.1  christos   "BFD_RELOC_CR16_REGREL20a",
   2376  1.1  christos   "BFD_RELOC_CR16_ABS20",
   2377  1.1  christos   "BFD_RELOC_CR16_ABS24",
   2378  1.1  christos   "BFD_RELOC_CR16_IMM4",
   2379  1.1  christos   "BFD_RELOC_CR16_IMM8",
   2380  1.1  christos   "BFD_RELOC_CR16_IMM16",
   2381  1.1  christos   "BFD_RELOC_CR16_IMM20",
   2382  1.1  christos   "BFD_RELOC_CR16_IMM24",
   2383  1.1  christos   "BFD_RELOC_CR16_IMM32",
   2384  1.1  christos   "BFD_RELOC_CR16_IMM32a",
   2385  1.1  christos   "BFD_RELOC_CR16_DISP4",
   2386  1.1  christos   "BFD_RELOC_CR16_DISP8",
   2387  1.1  christos   "BFD_RELOC_CR16_DISP16",
   2388  1.1  christos   "BFD_RELOC_CR16_DISP20",
   2389  1.1  christos   "BFD_RELOC_CR16_DISP24",
   2390  1.1  christos   "BFD_RELOC_CR16_DISP24a",
   2391  1.1  christos   "BFD_RELOC_CR16_SWITCH8",
   2392  1.1  christos   "BFD_RELOC_CR16_SWITCH16",
   2393  1.1  christos   "BFD_RELOC_CR16_SWITCH32",
   2394  1.1  christos   "BFD_RELOC_CR16_GOT_REGREL20",
   2395  1.1  christos   "BFD_RELOC_CR16_GOTC_REGREL20",
   2396  1.1  christos   "BFD_RELOC_CR16_GLOB_DAT",
   2397  1.1  christos   "BFD_RELOC_CRX_REL4",
   2398  1.1  christos   "BFD_RELOC_CRX_REL8",
   2399  1.1  christos   "BFD_RELOC_CRX_REL8_CMP",
   2400  1.1  christos   "BFD_RELOC_CRX_REL16",
   2401  1.1  christos   "BFD_RELOC_CRX_REL24",
   2402  1.1  christos   "BFD_RELOC_CRX_REL32",
   2403  1.1  christos   "BFD_RELOC_CRX_REGREL12",
   2404  1.1  christos   "BFD_RELOC_CRX_REGREL22",
   2405  1.1  christos   "BFD_RELOC_CRX_REGREL28",
   2406  1.1  christos   "BFD_RELOC_CRX_REGREL32",
   2407  1.1  christos   "BFD_RELOC_CRX_ABS16",
   2408  1.1  christos   "BFD_RELOC_CRX_ABS32",
   2409  1.1  christos   "BFD_RELOC_CRX_NUM8",
   2410  1.1  christos   "BFD_RELOC_CRX_NUM16",
   2411  1.1  christos   "BFD_RELOC_CRX_NUM32",
   2412  1.1  christos   "BFD_RELOC_CRX_IMM16",
   2413  1.1  christos   "BFD_RELOC_CRX_IMM32",
   2414  1.1  christos   "BFD_RELOC_CRX_SWITCH8",
   2415  1.1  christos   "BFD_RELOC_CRX_SWITCH16",
   2416  1.1  christos   "BFD_RELOC_CRX_SWITCH32",
   2417  1.1  christos   "BFD_RELOC_CRIS_BDISP8",
   2418  1.1  christos   "BFD_RELOC_CRIS_UNSIGNED_5",
   2419  1.1  christos   "BFD_RELOC_CRIS_SIGNED_6",
   2420  1.1  christos   "BFD_RELOC_CRIS_UNSIGNED_6",
   2421  1.1  christos   "BFD_RELOC_CRIS_SIGNED_8",
   2422  1.1  christos   "BFD_RELOC_CRIS_UNSIGNED_8",
   2423  1.1  christos   "BFD_RELOC_CRIS_SIGNED_16",
   2424  1.1  christos   "BFD_RELOC_CRIS_UNSIGNED_16",
   2425  1.1  christos   "BFD_RELOC_CRIS_LAPCQ_OFFSET",
   2426  1.1  christos   "BFD_RELOC_CRIS_UNSIGNED_4",
   2427  1.1  christos   "BFD_RELOC_CRIS_COPY",
   2428  1.1  christos   "BFD_RELOC_CRIS_GLOB_DAT",
   2429  1.1  christos   "BFD_RELOC_CRIS_JUMP_SLOT",
   2430  1.1  christos   "BFD_RELOC_CRIS_RELATIVE",
   2431  1.1  christos   "BFD_RELOC_CRIS_32_GOT",
   2432  1.1  christos   "BFD_RELOC_CRIS_16_GOT",
   2433  1.1  christos   "BFD_RELOC_CRIS_32_GOTPLT",
   2434  1.1  christos   "BFD_RELOC_CRIS_16_GOTPLT",
   2435  1.1  christos   "BFD_RELOC_CRIS_32_GOTREL",
   2436  1.1  christos   "BFD_RELOC_CRIS_32_PLT_GOTREL",
   2437  1.1  christos   "BFD_RELOC_CRIS_32_PLT_PCREL",
   2438  1.1  christos   "BFD_RELOC_CRIS_32_GOT_GD",
   2439  1.1  christos   "BFD_RELOC_CRIS_16_GOT_GD",
   2440  1.1  christos   "BFD_RELOC_CRIS_32_GD",
   2441  1.1  christos   "BFD_RELOC_CRIS_DTP",
   2442  1.1  christos   "BFD_RELOC_CRIS_32_DTPREL",
   2443  1.1  christos   "BFD_RELOC_CRIS_16_DTPREL",
   2444  1.1  christos   "BFD_RELOC_CRIS_32_GOT_TPREL",
   2445  1.1  christos   "BFD_RELOC_CRIS_16_GOT_TPREL",
   2446  1.1  christos   "BFD_RELOC_CRIS_32_TPREL",
   2447  1.1  christos   "BFD_RELOC_CRIS_16_TPREL",
   2448  1.1  christos   "BFD_RELOC_CRIS_DTPMOD",
   2449  1.1  christos   "BFD_RELOC_CRIS_32_IE",
   2450  1.1  christos   "BFD_RELOC_860_COPY",
   2451  1.1  christos   "BFD_RELOC_860_GLOB_DAT",
   2452  1.1  christos   "BFD_RELOC_860_JUMP_SLOT",
   2453  1.1  christos   "BFD_RELOC_860_RELATIVE",
   2454  1.1  christos   "BFD_RELOC_860_PC26",
   2455  1.1  christos   "BFD_RELOC_860_PLT26",
   2456  1.1  christos   "BFD_RELOC_860_PC16",
   2457  1.1  christos   "BFD_RELOC_860_LOW0",
   2458  1.1  christos   "BFD_RELOC_860_SPLIT0",
   2459  1.1  christos   "BFD_RELOC_860_LOW1",
   2460  1.1  christos   "BFD_RELOC_860_SPLIT1",
   2461  1.1  christos   "BFD_RELOC_860_LOW2",
   2462  1.1  christos   "BFD_RELOC_860_SPLIT2",
   2463  1.1  christos   "BFD_RELOC_860_LOW3",
   2464  1.1  christos   "BFD_RELOC_860_LOGOT0",
   2465  1.1  christos   "BFD_RELOC_860_SPGOT0",
   2466  1.1  christos   "BFD_RELOC_860_LOGOT1",
   2467  1.1  christos   "BFD_RELOC_860_SPGOT1",
   2468  1.1  christos   "BFD_RELOC_860_LOGOTOFF0",
   2469  1.1  christos   "BFD_RELOC_860_SPGOTOFF0",
   2470  1.1  christos   "BFD_RELOC_860_LOGOTOFF1",
   2471  1.1  christos   "BFD_RELOC_860_SPGOTOFF1",
   2472  1.1  christos   "BFD_RELOC_860_LOGOTOFF2",
   2473  1.1  christos   "BFD_RELOC_860_LOGOTOFF3",
   2474  1.1  christos   "BFD_RELOC_860_LOPC",
   2475  1.1  christos   "BFD_RELOC_860_HIGHADJ",
   2476  1.1  christos   "BFD_RELOC_860_HAGOT",
   2477  1.1  christos   "BFD_RELOC_860_HAGOTOFF",
   2478  1.1  christos   "BFD_RELOC_860_HAPC",
   2479  1.3  christos   "BFD_RELOC_860_HIGH",
   2480  1.3  christos   "BFD_RELOC_860_HIGOT",
   2481  1.3  christos   "BFD_RELOC_860_HIGOTOFF",
   2482  1.3  christos   "BFD_RELOC_OR1K_REL_26",
   2483  1.3  christos   "BFD_RELOC_OR1K_GOTPC_HI16",
   2484  1.3  christos   "BFD_RELOC_OR1K_GOTPC_LO16",
   2485  1.3  christos   "BFD_RELOC_OR1K_GOT16",
   2486  1.3  christos   "BFD_RELOC_OR1K_PLT26",
   2487  1.3  christos   "BFD_RELOC_OR1K_GOTOFF_HI16",
   2488  1.3  christos   "BFD_RELOC_OR1K_GOTOFF_LO16",
   2489  1.3  christos   "BFD_RELOC_OR1K_COPY",
   2490  1.3  christos   "BFD_RELOC_OR1K_GLOB_DAT",
   2491  1.3  christos   "BFD_RELOC_OR1K_JMP_SLOT",
   2492  1.3  christos   "BFD_RELOC_OR1K_RELATIVE",
   2493  1.3  christos   "BFD_RELOC_OR1K_TLS_GD_HI16",
   2494  1.3  christos   "BFD_RELOC_OR1K_TLS_GD_LO16",
   2495  1.3  christos   "BFD_RELOC_OR1K_TLS_LDM_HI16",
   2496  1.3  christos   "BFD_RELOC_OR1K_TLS_LDM_LO16",
   2497  1.3  christos   "BFD_RELOC_OR1K_TLS_LDO_HI16",
   2498  1.3  christos   "BFD_RELOC_OR1K_TLS_LDO_LO16",
   2499  1.3  christos   "BFD_RELOC_OR1K_TLS_IE_HI16",
   2500  1.3  christos   "BFD_RELOC_OR1K_TLS_IE_LO16",
   2501  1.3  christos   "BFD_RELOC_OR1K_TLS_LE_HI16",
   2502  1.3  christos   "BFD_RELOC_OR1K_TLS_LE_LO16",
   2503  1.1  christos   "BFD_RELOC_OR1K_TLS_TPOFF",
   2504  1.1  christos   "BFD_RELOC_OR1K_TLS_DTPOFF",
   2505  1.1  christos   "BFD_RELOC_OR1K_TLS_DTPMOD",
   2506  1.1  christos   "BFD_RELOC_H8_DIR16A8",
   2507  1.1  christos   "BFD_RELOC_H8_DIR16R8",
   2508  1.1  christos   "BFD_RELOC_H8_DIR24A8",
   2509  1.1  christos   "BFD_RELOC_H8_DIR24R8",
   2510  1.1  christos   "BFD_RELOC_H8_DIR32A16",
   2511  1.1  christos   "BFD_RELOC_H8_DISP32A16",
   2512  1.1  christos   "BFD_RELOC_XSTORMY16_REL_12",
   2513  1.1  christos   "BFD_RELOC_XSTORMY16_12",
   2514  1.1  christos   "BFD_RELOC_XSTORMY16_24",
   2515  1.1  christos   "BFD_RELOC_XSTORMY16_FPTR16",
   2516  1.1  christos   "BFD_RELOC_RELC",
   2517  1.1  christos 
   2518  1.1  christos   "BFD_RELOC_XC16X_PAG",
   2519  1.1  christos   "BFD_RELOC_XC16X_POF",
   2520  1.1  christos   "BFD_RELOC_XC16X_SEG",
   2521  1.1  christos   "BFD_RELOC_XC16X_SOF",
   2522  1.1  christos   "BFD_RELOC_VAX_GLOB_DAT",
   2523  1.1  christos   "BFD_RELOC_VAX_JMP_SLOT",
   2524  1.1  christos   "BFD_RELOC_VAX_RELATIVE",
   2525  1.1  christos   "BFD_RELOC_MT_PC16",
   2526  1.1  christos   "BFD_RELOC_MT_HI16",
   2527  1.1  christos   "BFD_RELOC_MT_LO16",
   2528  1.1  christos   "BFD_RELOC_MT_GNU_VTINHERIT",
   2529  1.1  christos   "BFD_RELOC_MT_GNU_VTENTRY",
   2530  1.1  christos   "BFD_RELOC_MT_PCINSN8",
   2531  1.1  christos   "BFD_RELOC_MSP430_10_PCREL",
   2532  1.1  christos   "BFD_RELOC_MSP430_16_PCREL",
   2533  1.1  christos   "BFD_RELOC_MSP430_16",
   2534  1.1  christos   "BFD_RELOC_MSP430_16_PCREL_BYTE",
   2535  1.1  christos   "BFD_RELOC_MSP430_16_BYTE",
   2536  1.1  christos   "BFD_RELOC_MSP430_2X_PCREL",
   2537  1.1  christos   "BFD_RELOC_MSP430_RL_PCREL",
   2538  1.1  christos   "BFD_RELOC_MSP430_ABS8",
   2539  1.1  christos   "BFD_RELOC_MSP430X_PCR20_EXT_SRC",
   2540  1.1  christos   "BFD_RELOC_MSP430X_PCR20_EXT_DST",
   2541  1.1  christos   "BFD_RELOC_MSP430X_PCR20_EXT_ODST",
   2542  1.1  christos   "BFD_RELOC_MSP430X_ABS20_EXT_SRC",
   2543  1.1  christos   "BFD_RELOC_MSP430X_ABS20_EXT_DST",
   2544  1.1  christos   "BFD_RELOC_MSP430X_ABS20_EXT_ODST",
   2545  1.1  christos   "BFD_RELOC_MSP430X_ABS20_ADR_SRC",
   2546  1.1  christos   "BFD_RELOC_MSP430X_ABS20_ADR_DST",
   2547  1.1  christos   "BFD_RELOC_MSP430X_PCR16",
   2548  1.1  christos   "BFD_RELOC_MSP430X_PCR20_CALL",
   2549  1.1  christos   "BFD_RELOC_MSP430X_ABS16",
   2550  1.1  christos   "BFD_RELOC_MSP430_ABS_HI16",
   2551  1.1  christos   "BFD_RELOC_MSP430_PREL31",
   2552  1.1  christos   "BFD_RELOC_MSP430_SYM_DIFF",
   2553  1.1  christos   "BFD_RELOC_NIOS2_S16",
   2554  1.1  christos   "BFD_RELOC_NIOS2_U16",
   2555  1.1  christos   "BFD_RELOC_NIOS2_CALL26",
   2556  1.1  christos   "BFD_RELOC_NIOS2_IMM5",
   2557  1.1  christos   "BFD_RELOC_NIOS2_CACHE_OPX",
   2558  1.1  christos   "BFD_RELOC_NIOS2_IMM6",
   2559  1.1  christos   "BFD_RELOC_NIOS2_IMM8",
   2560  1.1  christos   "BFD_RELOC_NIOS2_HI16",
   2561  1.1  christos   "BFD_RELOC_NIOS2_LO16",
   2562  1.1  christos   "BFD_RELOC_NIOS2_HIADJ16",
   2563  1.1  christos   "BFD_RELOC_NIOS2_GPREL",
   2564  1.1  christos   "BFD_RELOC_NIOS2_UJMP",
   2565  1.1  christos   "BFD_RELOC_NIOS2_CJMP",
   2566  1.1  christos   "BFD_RELOC_NIOS2_CALLR",
   2567  1.1  christos   "BFD_RELOC_NIOS2_ALIGN",
   2568  1.1  christos   "BFD_RELOC_NIOS2_GOT16",
   2569  1.1  christos   "BFD_RELOC_NIOS2_CALL16",
   2570  1.1  christos   "BFD_RELOC_NIOS2_GOTOFF_LO",
   2571  1.1  christos   "BFD_RELOC_NIOS2_GOTOFF_HA",
   2572  1.1  christos   "BFD_RELOC_NIOS2_PCREL_LO",
   2573  1.1  christos   "BFD_RELOC_NIOS2_PCREL_HA",
   2574  1.1  christos   "BFD_RELOC_NIOS2_TLS_GD16",
   2575  1.1  christos   "BFD_RELOC_NIOS2_TLS_LDM16",
   2576  1.1  christos   "BFD_RELOC_NIOS2_TLS_LDO16",
   2577  1.1  christos   "BFD_RELOC_NIOS2_TLS_IE16",
   2578  1.1  christos   "BFD_RELOC_NIOS2_TLS_LE16",
   2579  1.1  christos   "BFD_RELOC_NIOS2_TLS_DTPMOD",
   2580  1.1  christos   "BFD_RELOC_NIOS2_TLS_DTPREL",
   2581  1.1  christos   "BFD_RELOC_NIOS2_TLS_TPREL",
   2582  1.1  christos   "BFD_RELOC_NIOS2_COPY",
   2583  1.1  christos   "BFD_RELOC_NIOS2_GLOB_DAT",
   2584  1.3  christos   "BFD_RELOC_NIOS2_JUMP_SLOT",
   2585  1.3  christos   "BFD_RELOC_NIOS2_RELATIVE",
   2586  1.3  christos   "BFD_RELOC_NIOS2_GOTOFF",
   2587  1.3  christos   "BFD_RELOC_NIOS2_CALL26_NOAT",
   2588  1.3  christos   "BFD_RELOC_NIOS2_GOT_LO",
   2589  1.1  christos   "BFD_RELOC_NIOS2_GOT_HA",
   2590  1.1  christos   "BFD_RELOC_NIOS2_CALL_LO",
   2591  1.1  christos   "BFD_RELOC_NIOS2_CALL_HA",
   2592  1.1  christos   "BFD_RELOC_IQ2000_OFFSET_16",
   2593  1.1  christos   "BFD_RELOC_IQ2000_OFFSET_21",
   2594  1.1  christos   "BFD_RELOC_IQ2000_UHI16",
   2595  1.1  christos   "BFD_RELOC_XTENSA_RTLD",
   2596  1.1  christos   "BFD_RELOC_XTENSA_GLOB_DAT",
   2597  1.1  christos   "BFD_RELOC_XTENSA_JMP_SLOT",
   2598  1.1  christos   "BFD_RELOC_XTENSA_RELATIVE",
   2599  1.1  christos   "BFD_RELOC_XTENSA_PLT",
   2600  1.1  christos   "BFD_RELOC_XTENSA_DIFF8",
   2601  1.1  christos   "BFD_RELOC_XTENSA_DIFF16",
   2602  1.1  christos   "BFD_RELOC_XTENSA_DIFF32",
   2603  1.1  christos   "BFD_RELOC_XTENSA_SLOT0_OP",
   2604  1.1  christos   "BFD_RELOC_XTENSA_SLOT1_OP",
   2605  1.1  christos   "BFD_RELOC_XTENSA_SLOT2_OP",
   2606  1.1  christos   "BFD_RELOC_XTENSA_SLOT3_OP",
   2607  1.1  christos   "BFD_RELOC_XTENSA_SLOT4_OP",
   2608  1.1  christos   "BFD_RELOC_XTENSA_SLOT5_OP",
   2609  1.1  christos   "BFD_RELOC_XTENSA_SLOT6_OP",
   2610  1.1  christos   "BFD_RELOC_XTENSA_SLOT7_OP",
   2611  1.1  christos   "BFD_RELOC_XTENSA_SLOT8_OP",
   2612  1.1  christos   "BFD_RELOC_XTENSA_SLOT9_OP",
   2613  1.1  christos   "BFD_RELOC_XTENSA_SLOT10_OP",
   2614  1.1  christos   "BFD_RELOC_XTENSA_SLOT11_OP",
   2615  1.1  christos   "BFD_RELOC_XTENSA_SLOT12_OP",
   2616  1.1  christos   "BFD_RELOC_XTENSA_SLOT13_OP",
   2617  1.1  christos   "BFD_RELOC_XTENSA_SLOT14_OP",
   2618  1.1  christos   "BFD_RELOC_XTENSA_SLOT0_ALT",
   2619  1.1  christos   "BFD_RELOC_XTENSA_SLOT1_ALT",
   2620  1.1  christos   "BFD_RELOC_XTENSA_SLOT2_ALT",
   2621  1.1  christos   "BFD_RELOC_XTENSA_SLOT3_ALT",
   2622  1.1  christos   "BFD_RELOC_XTENSA_SLOT4_ALT",
   2623  1.1  christos   "BFD_RELOC_XTENSA_SLOT5_ALT",
   2624  1.1  christos   "BFD_RELOC_XTENSA_SLOT6_ALT",
   2625  1.1  christos   "BFD_RELOC_XTENSA_SLOT7_ALT",
   2626  1.1  christos   "BFD_RELOC_XTENSA_SLOT8_ALT",
   2627  1.1  christos   "BFD_RELOC_XTENSA_SLOT9_ALT",
   2628  1.1  christos   "BFD_RELOC_XTENSA_SLOT10_ALT",
   2629  1.1  christos   "BFD_RELOC_XTENSA_SLOT11_ALT",
   2630  1.1  christos   "BFD_RELOC_XTENSA_SLOT12_ALT",
   2631  1.1  christos   "BFD_RELOC_XTENSA_SLOT13_ALT",
   2632  1.1  christos   "BFD_RELOC_XTENSA_SLOT14_ALT",
   2633  1.1  christos   "BFD_RELOC_XTENSA_OP0",
   2634  1.1  christos   "BFD_RELOC_XTENSA_OP1",
   2635  1.1  christos   "BFD_RELOC_XTENSA_OP2",
   2636  1.1  christos   "BFD_RELOC_XTENSA_ASM_EXPAND",
   2637  1.1  christos   "BFD_RELOC_XTENSA_ASM_SIMPLIFY",
   2638  1.1  christos   "BFD_RELOC_XTENSA_TLSDESC_FN",
   2639  1.1  christos   "BFD_RELOC_XTENSA_TLSDESC_ARG",
   2640  1.1  christos   "BFD_RELOC_XTENSA_TLS_DTPOFF",
   2641  1.1  christos   "BFD_RELOC_XTENSA_TLS_TPOFF",
   2642  1.1  christos   "BFD_RELOC_XTENSA_TLS_FUNC",
   2643  1.1  christos   "BFD_RELOC_XTENSA_TLS_ARG",
   2644  1.1  christos   "BFD_RELOC_XTENSA_TLS_CALL",
   2645  1.1  christos   "BFD_RELOC_Z80_DISP8",
   2646  1.1  christos   "BFD_RELOC_Z8K_DISP7",
   2647  1.1  christos   "BFD_RELOC_Z8K_CALLR",
   2648  1.1  christos   "BFD_RELOC_Z8K_IMM4L",
   2649  1.1  christos   "BFD_RELOC_LM32_CALL",
   2650  1.1  christos   "BFD_RELOC_LM32_BRANCH",
   2651  1.1  christos   "BFD_RELOC_LM32_16_GOT",
   2652  1.1  christos   "BFD_RELOC_LM32_GOTOFF_HI16",
   2653  1.1  christos   "BFD_RELOC_LM32_GOTOFF_LO16",
   2654  1.1  christos   "BFD_RELOC_LM32_COPY",
   2655  1.1  christos   "BFD_RELOC_LM32_GLOB_DAT",
   2656  1.1  christos   "BFD_RELOC_LM32_JMP_SLOT",
   2657  1.1  christos   "BFD_RELOC_LM32_RELATIVE",
   2658  1.1  christos   "BFD_RELOC_MACH_O_SECTDIFF",
   2659  1.1  christos   "BFD_RELOC_MACH_O_LOCAL_SECTDIFF",
   2660  1.1  christos   "BFD_RELOC_MACH_O_PAIR",
   2661  1.1  christos   "BFD_RELOC_MACH_O_X86_64_BRANCH32",
   2662  1.1  christos   "BFD_RELOC_MACH_O_X86_64_BRANCH8",
   2663  1.1  christos   "BFD_RELOC_MACH_O_X86_64_GOT",
   2664  1.1  christos   "BFD_RELOC_MACH_O_X86_64_GOT_LOAD",
   2665  1.1  christos   "BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32",
   2666  1.1  christos   "BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64",
   2667  1.1  christos   "BFD_RELOC_MACH_O_X86_64_PCREL32_1",
   2668  1.1  christos   "BFD_RELOC_MACH_O_X86_64_PCREL32_2",
   2669  1.1  christos   "BFD_RELOC_MACH_O_X86_64_PCREL32_4",
   2670  1.1  christos   "BFD_RELOC_MICROBLAZE_32_LO",
   2671  1.1  christos   "BFD_RELOC_MICROBLAZE_32_LO_PCREL",
   2672  1.1  christos   "BFD_RELOC_MICROBLAZE_32_ROSDA",
   2673  1.1  christos   "BFD_RELOC_MICROBLAZE_32_RWSDA",
   2674  1.1  christos   "BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM",
   2675  1.1  christos   "BFD_RELOC_MICROBLAZE_64_NONE",
   2676  1.1  christos   "BFD_RELOC_MICROBLAZE_64_GOTPC",
   2677  1.1  christos   "BFD_RELOC_MICROBLAZE_64_GOT",
   2678  1.1  christos   "BFD_RELOC_MICROBLAZE_64_PLT",
   2679  1.1  christos   "BFD_RELOC_MICROBLAZE_64_GOTOFF",
   2680  1.1  christos   "BFD_RELOC_MICROBLAZE_32_GOTOFF",
   2681  1.1  christos   "BFD_RELOC_MICROBLAZE_COPY",
   2682  1.1  christos   "BFD_RELOC_MICROBLAZE_64_TLS",
   2683  1.1  christos   "BFD_RELOC_MICROBLAZE_64_TLSGD",
   2684  1.1  christos   "BFD_RELOC_MICROBLAZE_64_TLSLD",
   2685  1.1  christos   "BFD_RELOC_MICROBLAZE_32_TLSDTPMOD",
   2686  1.1  christos   "BFD_RELOC_MICROBLAZE_32_TLSDTPREL",
   2687  1.1  christos   "BFD_RELOC_MICROBLAZE_64_TLSDTPREL",
   2688  1.1  christos   "BFD_RELOC_MICROBLAZE_64_TLSGOTTPREL",
   2689  1.1  christos   "BFD_RELOC_MICROBLAZE_64_TLSTPREL",
   2690  1.1  christos   "BFD_RELOC_AARCH64_RELOC_START",
   2691  1.1  christos   "BFD_RELOC_AARCH64_NONE",
   2692  1.1  christos   "BFD_RELOC_AARCH64_64",
   2693  1.1  christos   "BFD_RELOC_AARCH64_32",
   2694  1.1  christos   "BFD_RELOC_AARCH64_16",
   2695  1.1  christos   "BFD_RELOC_AARCH64_64_PCREL",
   2696  1.1  christos   "BFD_RELOC_AARCH64_32_PCREL",
   2697  1.1  christos   "BFD_RELOC_AARCH64_16_PCREL",
   2698  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G0",
   2699  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G0_NC",
   2700  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G1",
   2701  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G1_NC",
   2702  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G2",
   2703  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G2_NC",
   2704  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G3",
   2705  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G0_S",
   2706  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G1_S",
   2707  1.1  christos   "BFD_RELOC_AARCH64_MOVW_G2_S",
   2708  1.1  christos   "BFD_RELOC_AARCH64_LD_LO19_PCREL",
   2709  1.1  christos   "BFD_RELOC_AARCH64_ADR_LO21_PCREL",
   2710  1.1  christos   "BFD_RELOC_AARCH64_ADR_HI21_PCREL",
   2711  1.1  christos   "BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL",
   2712  1.1  christos   "BFD_RELOC_AARCH64_ADD_LO12",
   2713  1.1  christos   "BFD_RELOC_AARCH64_LDST8_LO12",
   2714  1.1  christos   "BFD_RELOC_AARCH64_TSTBR14",
   2715  1.1  christos   "BFD_RELOC_AARCH64_BRANCH19",
   2716  1.1  christos   "BFD_RELOC_AARCH64_JUMP26",
   2717  1.1  christos   "BFD_RELOC_AARCH64_CALL26",
   2718  1.1  christos   "BFD_RELOC_AARCH64_LDST16_LO12",
   2719  1.1  christos   "BFD_RELOC_AARCH64_LDST32_LO12",
   2720  1.1  christos   "BFD_RELOC_AARCH64_LDST64_LO12",
   2721  1.1  christos   "BFD_RELOC_AARCH64_LDST128_LO12",
   2722  1.1  christos   "BFD_RELOC_AARCH64_GOT_LD_PREL19",
   2723  1.1  christos   "BFD_RELOC_AARCH64_ADR_GOT_PAGE",
   2724  1.1  christos   "BFD_RELOC_AARCH64_LD64_GOT_LO12_NC",
   2725  1.1  christos   "BFD_RELOC_AARCH64_LD32_GOT_LO12_NC",
   2726  1.1  christos   "BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21",
   2727  1.1  christos   "BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC",
   2728  1.1  christos   "BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1",
   2729  1.1  christos   "BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC",
   2730  1.1  christos   "BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21",
   2731  1.1  christos   "BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC",
   2732  1.1  christos   "BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC",
   2733  1.1  christos   "BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19",
   2734  1.1  christos   "BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2",
   2735  1.1  christos   "BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1",
   2736  1.1  christos   "BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC",
   2737  1.1  christos   "BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0",
   2738  1.1  christos   "BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC",
   2739  1.1  christos   "BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12",
   2740  1.1  christos   "BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12",
   2741  1.1  christos   "BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC",
   2742  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_LD_PREL19",
   2743  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21",
   2744  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21",
   2745  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC",
   2746  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC",
   2747  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC",
   2748  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_OFF_G1",
   2749  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC",
   2750  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_LDR",
   2751  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_ADD",
   2752  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_CALL",
   2753  1.1  christos   "BFD_RELOC_AARCH64_COPY",
   2754  1.1  christos   "BFD_RELOC_AARCH64_GLOB_DAT",
   2755  1.1  christos   "BFD_RELOC_AARCH64_JUMP_SLOT",
   2756  1.1  christos   "BFD_RELOC_AARCH64_RELATIVE",
   2757  1.1  christos   "BFD_RELOC_AARCH64_TLS_DTPMOD",
   2758  1.1  christos   "BFD_RELOC_AARCH64_TLS_DTPREL",
   2759  1.1  christos   "BFD_RELOC_AARCH64_TLS_TPREL",
   2760  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC",
   2761  1.1  christos   "BFD_RELOC_AARCH64_IRELATIVE",
   2762  1.1  christos   "BFD_RELOC_AARCH64_RELOC_END",
   2763  1.1  christos   "BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP",
   2764  1.1  christos   "BFD_RELOC_AARCH64_LDST_LO12",
   2765  1.1  christos   "BFD_RELOC_AARCH64_LD_GOT_LO12_NC",
   2766  1.1  christos   "BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC",
   2767  1.1  christos   "BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC",
   2768  1.1  christos   "BFD_RELOC_TILEPRO_COPY",
   2769  1.1  christos   "BFD_RELOC_TILEPRO_GLOB_DAT",
   2770  1.1  christos   "BFD_RELOC_TILEPRO_JMP_SLOT",
   2771  1.1  christos   "BFD_RELOC_TILEPRO_RELATIVE",
   2772  1.1  christos   "BFD_RELOC_TILEPRO_BROFF_X1",
   2773  1.1  christos   "BFD_RELOC_TILEPRO_JOFFLONG_X1",
   2774  1.1  christos   "BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT",
   2775  1.1  christos   "BFD_RELOC_TILEPRO_IMM8_X0",
   2776  1.1  christos   "BFD_RELOC_TILEPRO_IMM8_Y0",
   2777  1.1  christos   "BFD_RELOC_TILEPRO_IMM8_X1",
   2778  1.1  christos   "BFD_RELOC_TILEPRO_IMM8_Y1",
   2779  1.1  christos   "BFD_RELOC_TILEPRO_DEST_IMM8_X1",
   2780  1.1  christos   "BFD_RELOC_TILEPRO_MT_IMM15_X1",
   2781  1.1  christos   "BFD_RELOC_TILEPRO_MF_IMM15_X1",
   2782  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0",
   2783  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1",
   2784  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_LO",
   2785  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_LO",
   2786  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_HI",
   2787  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_HI",
   2788  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_HA",
   2789  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_HA",
   2790  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_PCREL",
   2791  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_PCREL",
   2792  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL",
   2793  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL",
   2794  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL",
   2795  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL",
   2796  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL",
   2797  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL",
   2798  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_GOT",
   2799  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_GOT",
   2800  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO",
   2801  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO",
   2802  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI",
   2803  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI",
   2804  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA",
   2805  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA",
   2806  1.1  christos   "BFD_RELOC_TILEPRO_MMSTART_X0",
   2807  1.1  christos   "BFD_RELOC_TILEPRO_MMEND_X0",
   2808  1.1  christos   "BFD_RELOC_TILEPRO_MMSTART_X1",
   2809  1.1  christos   "BFD_RELOC_TILEPRO_MMEND_X1",
   2810  1.1  christos   "BFD_RELOC_TILEPRO_SHAMT_X0",
   2811  1.1  christos   "BFD_RELOC_TILEPRO_SHAMT_X1",
   2812  1.1  christos   "BFD_RELOC_TILEPRO_SHAMT_Y0",
   2813  1.1  christos   "BFD_RELOC_TILEPRO_SHAMT_Y1",
   2814  1.1  christos   "BFD_RELOC_TILEPRO_TLS_GD_CALL",
   2815  1.1  christos   "BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD",
   2816  1.1  christos   "BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD",
   2817  1.1  christos   "BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD",
   2818  1.1  christos   "BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD",
   2819  1.1  christos   "BFD_RELOC_TILEPRO_TLS_IE_LOAD",
   2820  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD",
   2821  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD",
   2822  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO",
   2823  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO",
   2824  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI",
   2825  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI",
   2826  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA",
   2827  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA",
   2828  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE",
   2829  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE",
   2830  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO",
   2831  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO",
   2832  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI",
   2833  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI",
   2834  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA",
   2835  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA",
   2836  1.1  christos   "BFD_RELOC_TILEPRO_TLS_DTPMOD32",
   2837  1.1  christos   "BFD_RELOC_TILEPRO_TLS_DTPOFF32",
   2838  1.1  christos   "BFD_RELOC_TILEPRO_TLS_TPOFF32",
   2839  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE",
   2840  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE",
   2841  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO",
   2842  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO",
   2843  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI",
   2844  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI",
   2845  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA",
   2846  1.1  christos   "BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA",
   2847  1.1  christos   "BFD_RELOC_TILEGX_HW0",
   2848  1.1  christos   "BFD_RELOC_TILEGX_HW1",
   2849  1.1  christos   "BFD_RELOC_TILEGX_HW2",
   2850  1.1  christos   "BFD_RELOC_TILEGX_HW3",
   2851  1.1  christos   "BFD_RELOC_TILEGX_HW0_LAST",
   2852  1.1  christos   "BFD_RELOC_TILEGX_HW1_LAST",
   2853  1.1  christos   "BFD_RELOC_TILEGX_HW2_LAST",
   2854  1.1  christos   "BFD_RELOC_TILEGX_COPY",
   2855  1.1  christos   "BFD_RELOC_TILEGX_GLOB_DAT",
   2856  1.1  christos   "BFD_RELOC_TILEGX_JMP_SLOT",
   2857  1.1  christos   "BFD_RELOC_TILEGX_RELATIVE",
   2858  1.1  christos   "BFD_RELOC_TILEGX_BROFF_X1",
   2859  1.1  christos   "BFD_RELOC_TILEGX_JUMPOFF_X1",
   2860  1.1  christos   "BFD_RELOC_TILEGX_JUMPOFF_X1_PLT",
   2861  1.1  christos   "BFD_RELOC_TILEGX_IMM8_X0",
   2862  1.1  christos   "BFD_RELOC_TILEGX_IMM8_Y0",
   2863  1.1  christos   "BFD_RELOC_TILEGX_IMM8_X1",
   2864  1.1  christos   "BFD_RELOC_TILEGX_IMM8_Y1",
   2865  1.1  christos   "BFD_RELOC_TILEGX_DEST_IMM8_X1",
   2866  1.1  christos   "BFD_RELOC_TILEGX_MT_IMM14_X1",
   2867  1.1  christos   "BFD_RELOC_TILEGX_MF_IMM14_X1",
   2868  1.1  christos   "BFD_RELOC_TILEGX_MMSTART_X0",
   2869  1.1  christos   "BFD_RELOC_TILEGX_MMEND_X0",
   2870  1.1  christos   "BFD_RELOC_TILEGX_SHAMT_X0",
   2871  1.1  christos   "BFD_RELOC_TILEGX_SHAMT_X1",
   2872  1.1  christos   "BFD_RELOC_TILEGX_SHAMT_Y0",
   2873  1.1  christos   "BFD_RELOC_TILEGX_SHAMT_Y1",
   2874  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0",
   2875  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0",
   2876  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1",
   2877  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1",
   2878  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW2",
   2879  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW2",
   2880  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW3",
   2881  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW3",
   2882  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST",
   2883  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST",
   2884  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST",
   2885  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST",
   2886  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST",
   2887  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST",
   2888  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL",
   2889  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL",
   2890  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL",
   2891  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL",
   2892  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL",
   2893  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL",
   2894  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL",
   2895  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL",
   2896  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL",
   2897  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL",
   2898  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL",
   2899  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL",
   2900  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL",
   2901  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL",
   2902  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT",
   2903  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT",
   2904  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_PLT_PCREL",
   2905  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_PLT_PCREL",
   2906  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_PLT_PCREL",
   2907  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_PLT_PCREL",
   2908  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW2_PLT_PCREL",
   2909  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW2_PLT_PCREL",
   2910  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT",
   2911  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT",
   2912  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT",
   2913  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT",
   2914  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW3_PLT_PCREL",
   2915  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW3_PLT_PCREL",
   2916  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD",
   2917  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD",
   2918  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE",
   2919  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE",
   2920  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE",
   2921  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE",
   2922  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE",
   2923  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE",
   2924  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD",
   2925  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD",
   2926  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD",
   2927  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD",
   2928  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE",
   2929  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE",
   2930  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL",
   2931  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL",
   2932  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL",
   2933  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL",
   2934  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL",
   2935  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL",
   2936  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE",
   2937  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE",
   2938  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE",
   2939  1.1  christos   "BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE",
   2940  1.1  christos   "BFD_RELOC_TILEGX_TLS_DTPMOD64",
   2941  1.1  christos   "BFD_RELOC_TILEGX_TLS_DTPOFF64",
   2942  1.1  christos   "BFD_RELOC_TILEGX_TLS_TPOFF64",
   2943  1.1  christos   "BFD_RELOC_TILEGX_TLS_DTPMOD32",
   2944  1.1  christos   "BFD_RELOC_TILEGX_TLS_DTPOFF32",
   2945  1.1  christos   "BFD_RELOC_TILEGX_TLS_TPOFF32",
   2946  1.1  christos   "BFD_RELOC_TILEGX_TLS_GD_CALL",
   2947  1.1  christos   "BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD",
   2948  1.1  christos   "BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD",
   2949  1.1  christos   "BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD",
   2950  1.1  christos   "BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD",
   2951  1.1  christos   "BFD_RELOC_TILEGX_TLS_IE_LOAD",
   2952  1.1  christos   "BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD",
   2953  1.1  christos   "BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD",
   2954  1.1  christos   "BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD",
   2955  1.1  christos   "BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD",
   2956  1.1  christos   "BFD_RELOC_EPIPHANY_SIMM8",
   2957  1.1  christos   "BFD_RELOC_EPIPHANY_SIMM24",
   2958  1.1  christos   "BFD_RELOC_EPIPHANY_HIGH",
   2959  1.1  christos   "BFD_RELOC_EPIPHANY_LOW",
   2960  1.3  christos   "BFD_RELOC_EPIPHANY_SIMM11",
   2961  1.3  christos   "BFD_RELOC_EPIPHANY_IMM11",
   2962  1.3  christos   "BFD_RELOC_EPIPHANY_IMM8",
   2963  1.3  christos   "BFD_RELOC_VISIUM_HI16",
   2964  1.3  christos   "BFD_RELOC_VISIUM_LO16",
   2965  1.3  christos   "BFD_RELOC_VISIUM_IM16",
   2966  1.3  christos   "BFD_RELOC_VISIUM_REL16",
   2967  1.1  christos   "BFD_RELOC_VISIUM_HI16_PCREL",
   2968  1.1  christos   "BFD_RELOC_VISIUM_LO16_PCREL",
   2969  1.1  christos   "BFD_RELOC_VISIUM_IM16_PCREL",
   2970  1.1  christos  "@@overflow: BFD_RELOC_UNUSED@@",
   2971  1.1  christos };
   2972  1.1  christos #endif
   2973  1.1  christos 
   2974  1.1  christos reloc_howto_type *bfd_default_reloc_type_lookup
   2975  1.1  christos    (bfd *abfd, bfd_reloc_code_real_type  code);
   2976  1.1  christos 
   2977  1.1  christos bfd_boolean bfd_generic_relax_section
   2978  1.1  christos    (bfd *abfd,
   2979  1.1  christos     asection *section,
   2980  1.1  christos     struct bfd_link_info *,
   2981  1.1  christos     bfd_boolean *);
   2982  1.1  christos 
   2983  1.1  christos bfd_boolean bfd_generic_gc_sections
   2984  1.1  christos    (bfd *, struct bfd_link_info *);
   2985  1.1  christos 
   2986  1.1  christos bfd_boolean bfd_generic_lookup_section_flags
   2987  1.1  christos    (struct bfd_link_info *, struct flag_info *, asection *);
   2988  1.1  christos 
   2989  1.1  christos bfd_boolean bfd_generic_merge_sections
   2990  1.1  christos    (bfd *, struct bfd_link_info *);
   2991  1.1  christos 
   2992  1.1  christos bfd_byte *bfd_generic_get_relocated_section_contents
   2993  1.1  christos    (bfd *abfd,
   2994  1.1  christos     struct bfd_link_info *link_info,
   2995  1.1  christos     struct bfd_link_order *link_order,
   2996  1.1  christos     bfd_byte *data,
   2997  1.1  christos     bfd_boolean relocatable,
   2998  1.1  christos     asymbol **symbols);
   2999  1.1  christos 
   3000  1.1  christos /* Extracted from archures.c.  */
   3001  1.1  christos extern const bfd_arch_info_type bfd_default_arch_struct;
   3002  1.1  christos bfd_boolean bfd_default_set_arch_mach
   3003  1.1  christos    (bfd *abfd, enum bfd_architecture arch, unsigned long mach);
   3004  1.1  christos 
   3005  1.1  christos const bfd_arch_info_type *bfd_default_compatible
   3006  1.1  christos    (const bfd_arch_info_type *a, const bfd_arch_info_type *b);
   3007  1.1  christos 
   3008  1.1  christos bfd_boolean bfd_default_scan
   3009  1.1  christos    (const struct bfd_arch_info *info, const char *string);
   3010  1.1  christos 
   3011  1.1  christos void *bfd_arch_default_fill (bfd_size_type count,
   3012  1.1  christos     bfd_boolean is_bigendian,
   3013                    bfd_boolean code);
   3014                
   3015                /* Extracted from elf.c.  */
   3016