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