OSDN Git Service

eclair snapshot
[android-x86/prebuilt.git] / linux-x86 / toolchain / arm-eabi-4.4.0 / info / bfd.info
index 503f199..d898761 100644 (file)
@@ -1,5 +1,5 @@
 This is bfd.info, produced by makeinfo version 4.8 from
-/home/jingyu/projects/gcc/android-toolchain/gdb-6.6/bfd/doc/bfd.texinfo.
+../../../../../android-toolchain/binutils-2.19/bfd/doc/bfd.texinfo.
 
 START-INFO-DIR-ENTRY
 * Bfd: (bfd).                   The Binary File Descriptor library.
@@ -7,15 +7,26 @@ END-INFO-DIR-ENTRY
 
    This file documents the BFD library.
 
-   Copyright (C) 1991, 2000, 2001, 2003, 2006 Free Software Foundation,
-Inc.
+   Copyright (C) 1991, 2000, 2001, 2003, 2006, 2007 Free Software
+Foundation, Inc.
 
    Permission is granted to copy, distribute and/or modify this document
-     under the terms of the GNU Free Documentation License, Version 1.1
-     or any later version published by the Free Software Foundation;
-   with no Invariant Sections, with no Front-Cover Texts, and with no
-    Back-Cover Texts.  A copy of the license is included in the
-section entitled "GNU Free Documentation License".
+under the terms of the GNU Free Documentation License, Version 1.1 or
+any later version published by the Free Software Foundation; with the
+Invariant Sections being "GNU General Public License" and "Funding Free
+Software", the Front-Cover texts being (a) (see below), and with the
+Back-Cover Texts being (b) (see below).  A copy of the license is
+included in the section entitled "GNU Free Documentation License".
+
+   (a) The FSF's Front-Cover Text is:
+
+   A GNU Manual
+
+   (b) The FSF's Back-Cover Text is:
+
+   You have freedom to copy and modify this GNU Manual, like GNU
+software.  Copies published by the Free Software Foundation raise
+funds for GNU development.
 
 \1f
 File: bfd.info,  Node: Top,  Next: Overview,  Prev: (dir),  Up: (dir)
@@ -318,15 +329,6 @@ major data about the file and pointers to the rest of the data.
        void *iostream;
        const struct bfd_iovec *iovec;
 
-       /* Is the file descriptor being cached?  That is, can it be closed as
-          needed, and re-opened when accessed later?  */
-       bfd_boolean cacheable;
-
-       /* Marks whether there was a default target specified when the
-          BFD was opened. This is used to select which matching algorithm
-          to use to choose the back end.  */
-       bfd_boolean target_defaulted;
-
        /* The caching routines use these to maintain a
           least-recently-used list of BFDs.  */
        struct bfd *lru_prev, *lru_next;
@@ -335,13 +337,6 @@ major data about the file and pointers to the rest of the data.
           state information on the file here...  */
        ufile_ptr where;
 
-       /* ... and here: (``once'' means at least once).  */
-       bfd_boolean opened_once;
-
-       /* Set if we have a locally maintained mtime value, rather than
-          getting it from the file each time.  */
-       bfd_boolean mtime_set;
-
        /* File modified time, if mtime_set is TRUE.  */
        long mtime;
 
@@ -364,14 +359,81 @@ major data about the file and pointers to the rest of the data.
        /* Format_specific flags.  */
        flagword flags;
 
+       /* Values that may appear in the flags field of a BFD.  These also
+          appear in the object_flags field of the bfd_target structure, where
+          they indicate the set of flags used by that backend (not all flags
+          are meaningful for all object file formats) (FIXME: at the moment,
+          the object_flags values have mostly just been copied from backend
+          to another, and are not necessarily correct).  */
+
+     #define BFD_NO_FLAGS   0x00
+
+       /* BFD contains relocation entries.  */
+     #define HAS_RELOC      0x01
+
+       /* BFD is directly executable.  */
+     #define EXEC_P         0x02
+
+       /* BFD has line number information (basically used for F_LNNO in a
+          COFF header).  */
+     #define HAS_LINENO     0x04
+
+       /* BFD has debugging information.  */
+     #define HAS_DEBUG      0x08
+
+       /* BFD has symbols.  */
+     #define HAS_SYMS       0x10
+
+       /* BFD has local symbols (basically used for F_LSYMS in a COFF
+          header).  */
+     #define HAS_LOCALS     0x20
+
+       /* BFD is a dynamic object.  */
+     #define DYNAMIC        0x40
+
+       /* Text section is write protected (if D_PAGED is not set, this is
+          like an a.out NMAGIC file) (the linker sets this by default, but
+          clears it for -r or -N).  */
+     #define WP_TEXT        0x80
+
+       /* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
+          linker sets this by default, but clears it for -r or -n or -N).  */
+     #define D_PAGED        0x100
+
+       /* BFD is relaxable (this means that bfd_relax_section may be able to
+          do something) (sometimes bfd_relax_section can do something even if
+          this is not set).  */
+     #define BFD_IS_RELAXABLE 0x200
+
+       /* This may be set before writing out a BFD to request using a
+          traditional format.  For example, this is used to request that when
+          writing out an a.out object the symbols not be hashed to eliminate
+          duplicates.  */
+     #define BFD_TRADITIONAL_FORMAT 0x400
+
+       /* This flag indicates that the BFD contents are actually cached
+          in memory.  If this is set, iostream points to a bfd_in_memory
+          struct.  */
+     #define BFD_IN_MEMORY 0x800
+
+       /* The sections in this BFD specify a memory page.  */
+     #define HAS_LOAD_PAGE 0x1000
+
+       /* This BFD has been created by the linker and doesn't correspond
+          to any input file.  */
+     #define BFD_LINKER_CREATED 0x2000
+
        /* Currently my_archive is tested before adding origin to
           anything. I believe that this can become always an add of
           origin, with origin set to 0 for non archive files.  */
        ufile_ptr origin;
 
-       /* Remember when output has begun, to stop strange things
-          from happening.  */
-       bfd_boolean output_has_begun;
+       /* The origin in the archive of the proxy entry.  This will
+          normally be the same as origin, except for thin archives,
+          when it will contain the current offset of the proxy in the
+          thin archive rather than the offset of the bfd in its actual
+          container.  */
+       ufile_ptr proxy_origin;
 
        /* A hash table for section names.  */
        struct bfd_hash_table section_htab;
@@ -392,7 +454,8 @@ major data about the file and pointers to the rest of the data.
        /* Used for input and output.  */
        unsigned int symcount;
 
-       /* Symbol table for output BFD (with symcount entries).  */
+       /* Symbol table for output BFD (with symcount entries).
+          Also used by the linker to cache input BFD symbols.  */
        struct bfd_symbol  **outsymbols;
 
        /* Used for slurped dynamic symbol tables.  */
@@ -401,15 +464,13 @@ major data about the file and pointers to the rest of the data.
        /* Pointer to structure which contains architecture information.  */
        const struct bfd_arch_info *arch_info;
 
-       /* Flag set if symbols from this BFD should not be exported.  */
-       bfd_boolean no_export;
-
        /* Stuff only useful for archives.  */
        void *arelt_data;
        struct bfd *my_archive;      /* The containing archive BFD.  */
-       struct bfd *next;            /* The next BFD in the archive.  */
+       struct bfd *archive_next;    /* The next BFD in the archive.  */
        struct bfd *archive_head;    /* The first BFD in the archive.  */
-       bfd_boolean has_armap;
+       struct bfd *nested_archives; /* List of nested archive in a flattened
+                                       thin archive.  */
 
        /* A chain of BFD structures involved in a link.  */
        struct bfd *link_next;
@@ -466,6 +527,35 @@ major data about the file and pointers to the rest of the data.
           struct objalloc *, but we use void * to avoid requiring the inclusion
           of objalloc.h.  */
        void *memory;
+
+       /* Is the file descriptor being cached?  That is, can it be closed as
+          needed, and re-opened when accessed later?  */
+       unsigned int cacheable : 1;
+
+       /* Marks whether there was a default target specified when the
+          BFD was opened. This is used to select which matching algorithm
+          to use to choose the back end.  */
+       unsigned int target_defaulted : 1;
+
+       /* ... and here: (``once'' means at least once).  */
+       unsigned int opened_once : 1;
+
+       /* Set if we have a locally maintained mtime value, rather than
+          getting it from the file each time.  */
+       unsigned int mtime_set : 1;
+
+       /* Flag set if symbols from this BFD should not be exported.  */
+       unsigned int no_export : 1;
+
+       /* Remember when output has begun, to stop strange things
+          from happening.  */
+       unsigned int output_has_begun : 1;
+
+       /* Have archive map.  */
+       unsigned int has_armap : 1;
+
+       /* Set if this is a thin archive.  */
+       unsigned int is_thin_archive : 1;
      };
 
 2.2 Error reporting
@@ -985,7 +1075,18 @@ Returns the common page size in bytes for ELF, abort otherwise.
 For ELF, set the common page size for the emulation.  It is a no-op for
 other formats.
 
-2.3.1.24 `struct bfd_iovec'
+2.3.1.24 `bfd_demangle'
+.......................
+
+*Synopsis*
+     char *bfd_demangle (bfd *, const char *, int);
+   *Description*
+Wrapper around cplus_demangle.  Strips leading underscores and other
+such chars that would otherwise confuse the demangler.  If passed a g++
+v3 ABI mangled name, returns a buffer allocated with malloc holding the
+demangled name.  Returns NULL otherwise and on memory alloc failure.
+
+2.3.1.25 `struct bfd_iovec'
 ...........................
 
 *Description*
@@ -1015,7 +1116,7 @@ below).
        int (*bstat) (struct bfd *abfd, struct stat *sb);
      };
 
-2.3.1.25 `bfd_get_mtime'
+2.3.1.26 `bfd_get_mtime'
 ........................
 
 *Synopsis*
@@ -1024,11 +1125,11 @@ below).
 Return the file modification time (as read from the file system, or
 from the archive header for archive members).
 
-2.3.1.26 `bfd_get_size'
+2.3.1.27 `bfd_get_size'
 .......................
 
 *Synopsis*
-     long bfd_get_size (bfd *abfd);
+     file_ptr bfd_get_size (bfd *abfd);
    *Description*
 Return the file size (as read from file system) for the file associated
 with BFD ABFD.
@@ -1354,7 +1455,7 @@ Here is the section structure:
 
        /* If SEC_LINK_ONCE is set, this bitfield describes how the linker
           should handle duplicate sections.  */
-     #define SEC_LINK_DUPLICATES 0x40000
+     #define SEC_LINK_DUPLICATES 0xc0000
 
        /* This value for SEC_LINK_DUPLICATES means that duplicate
           sections with the same name should simply be discarded.  */
@@ -1363,11 +1464,11 @@ Here is the section structure:
        /* This value for SEC_LINK_DUPLICATES means that the linker
           should warn if there are any duplicate sections, although
           it should still only link one copy.  */
-     #define SEC_LINK_DUPLICATES_ONE_ONLY 0x80000
+     #define SEC_LINK_DUPLICATES_ONE_ONLY 0x40000
 
        /* This value for SEC_LINK_DUPLICATES means that the linker
           should warn if any duplicate sections are a different size.  */
-     #define SEC_LINK_DUPLICATES_SAME_SIZE 0x100000
+     #define SEC_LINK_DUPLICATES_SAME_SIZE 0x80000
 
        /* This value for SEC_LINK_DUPLICATES means that the linker
           should warn if any duplicate sections contain different
@@ -1379,28 +1480,28 @@ Here is the section structure:
           relocation or other arcane processing.  It is skipped when
           going through the first-pass output, trusting that someone
           else up the line will take care of it later.  */
-     #define SEC_LINKER_CREATED 0x200000
+     #define SEC_LINKER_CREATED 0x100000
 
        /* This section should not be subject to garbage collection.
           Also set to inform the linker that this section should not be
           listed in the link map as discarded.  */
-     #define SEC_KEEP 0x400000
+     #define SEC_KEEP 0x200000
 
        /* This section contains "short" data, and should be placed
           "near" the GP.  */
-     #define SEC_SMALL_DATA 0x800000
+     #define SEC_SMALL_DATA 0x400000
 
        /* Attempt to merge identical entities in the section.
           Entity size is given in the entsize field.  */
-     #define SEC_MERGE 0x1000000
+     #define SEC_MERGE 0x800000
 
        /* If given with SEC_MERGE, entities to merge are zero terminated
           strings where entsize specifies character size instead of fixed
           size entries.  */
-     #define SEC_STRINGS 0x2000000
+     #define SEC_STRINGS 0x1000000
 
        /* This section contains data about section groups.  */
-     #define SEC_GROUP 0x4000000
+     #define SEC_GROUP 0x2000000
 
        /* The section is a COFF shared library section.  This flag is
           only for the linker.  If this type of section appears in
@@ -1411,23 +1512,23 @@ Here is the section structure:
           might be cleaner to have some more general mechanism to
           allow the back end to control what the linker does with
           sections.  */
-     #define SEC_COFF_SHARED_LIBRARY 0x10000000
+     #define SEC_COFF_SHARED_LIBRARY 0x4000000
 
        /* This section contains data which may be shared with other
           executables or shared objects. This is for COFF only.  */
-     #define SEC_COFF_SHARED 0x20000000
+     #define SEC_COFF_SHARED 0x8000000
 
        /* When a section with this flag is being linked, then if the size of
           the input section is less than a page, it should not cross a page
           boundary.  If the size of the input section is one page or more,
           it should be aligned on a page boundary.  This is for TI
           TMS320C54X only.  */
-     #define SEC_TIC54X_BLOCK 0x40000000
+     #define SEC_TIC54X_BLOCK 0x10000000
 
        /* Conditionally link this section; do not link if there are no
           references found to any symbol in the section.  This is for TI
           TMS320C54X only.  */
-     #define SEC_TIC54X_CLINK 0x80000000
+     #define SEC_TIC54X_CLINK 0x20000000
 
        /*  End of section flags.  */
 
@@ -1443,9 +1544,8 @@ Here is the section structure:
           output sections that have an input section.  */
        unsigned int linker_has_input : 1;
 
-       /* Mark flags used by some linker backends for garbage collection.  */
+       /* Mark flag used by some linker backends for garbage collection.  */
        unsigned int gc_mark : 1;
-       unsigned int gc_mark_from_eh : 1;
 
        /* The following flags are used by the ELF linker. */
 
@@ -1499,13 +1599,13 @@ Here is the section structure:
        bfd_size_type size;
 
        /* For input sections, the original size on disk of the section, in
-          octets.  This field is used by the linker relaxation code.  It is
-          currently only set for sections where the linker relaxation scheme
-          doesn't cache altered section and reloc contents (stabs, eh_frame,
-          SEC_MERGE, some coff relaxing targets), and thus the original size
-          needs to be kept to read the section multiple times.
-          For output sections, rawsize holds the section size calculated on
-          a previous linker relaxation pass.  */
+          octets.  This field should be set for any section whose size is
+          changed by linker relaxation.  It is required for sections where
+          the linker relaxation scheme doesn't cache altered section and
+          reloc contents (stabs, eh_frame, SEC_MERGE, some coff relaxing
+          targets), and thus the original size needs to be kept to read the
+          section multiple times.  For output sections, rawsize holds the
+          section size calculated on a previous linker relaxation pass.  */
        bfd_size_type rawsize;
 
        /* If this section is going to be output, then this value is the
@@ -1723,8 +1823,8 @@ Here is the section structure:
        /* name, id,  index, next, prev, flags, user_set_vma,            */  \
        { NAME,  IDX, 0,     NULL, NULL, FLAGS, 0,                           \
                                                                             \
-       /* linker_mark, linker_has_input, gc_mark, gc_mark_from_eh,      */  \
-          0,           0,                1,       0,                        \
+       /* linker_mark, linker_has_input, gc_mark,                       */  \
+          0,           0,                1,                                 \
                                                                             \
        /* segment_mark, sec_info_type, use_rela_p, has_tls_reloc,       */  \
           0,            0,             0,          0,                       \
@@ -2304,6 +2404,17 @@ An `asymbol' has the form:
        /* This symbol is thread local.  Used in ELF.  */
      #define BSF_THREAD_LOCAL  0x40000
 
+       /* This symbol represents a complex relocation expression,
+          with the expression tree serialized in the symbol name.  */
+     #define BSF_RELC 0x80000
+
+       /* This symbol represents a signed complex relocation expression,
+          with the expression tree serialized in the symbol name.  */
+     #define BSF_SRELC 0x100000
+
+       /* This symbol was created by bfd_get_synthetic_symtab.  */
+     #define BSF_SYNTHETIC 0x200000
+
        flagword flags;
 
        /* A pointer to the section to which this symbol is
@@ -3223,6 +3334,11 @@ attributes.
  -- : BFD_RELOC_SPARC_UA16
  -- : BFD_RELOC_SPARC_UA32
  -- : BFD_RELOC_SPARC_UA64
+ -- : BFD_RELOC_SPARC_GOTDATA_HIX22
+ -- : BFD_RELOC_SPARC_GOTDATA_LOX10
+ -- : BFD_RELOC_SPARC_GOTDATA_OP_HIX22
+ -- : BFD_RELOC_SPARC_GOTDATA_OP_LOX10
+ -- : BFD_RELOC_SPARC_GOTDATA_OP
      SPARC ELF relocations.  There is probably some overlap with other
      relocation types already defined.
 
@@ -3297,6 +3413,8 @@ attributes.
  -- : BFD_RELOC_SPU_PCREL16
  -- : BFD_RELOC_SPU_LO16
  -- : BFD_RELOC_SPU_HI16
+ -- : BFD_RELOC_SPU_PPU32
+ -- : BFD_RELOC_SPU_PPU64
      SPU Relocations.
 
  -- : BFD_RELOC_ALPHA_GPDISP_HI16
@@ -3414,6 +3532,11 @@ attributes.
  -- : BFD_RELOC_LO16_PCREL
      Low 16 bits of pc-relative value
 
+ -- : BFD_RELOC_MIPS16_GOT16
+ -- : BFD_RELOC_MIPS16_CALL16
+     Equivalent of BFD_RELOC_MIPS_*, but with the MIPS16 layout of
+     16-bit immediate fields
+
  -- : BFD_RELOC_MIPS16_HI16
      MIPS16 high 16 bits of 32-bit value.
 
@@ -3467,7 +3590,7 @@ attributes.
 
  -- : BFD_RELOC_MIPS_COPY
  -- : BFD_RELOC_MIPS_JUMP_SLOT
-     MIPS ELF relocations (VxWorks extensions).
+     MIPS ELF relocations (VxWorks and PLT extensions).
 
  -- : BFD_RELOC_FRV_LABEL16
  -- : BFD_RELOC_FRV_LABEL24
@@ -3537,6 +3660,15 @@ attributes.
  -- : BFD_RELOC_MN10300_RELATIVE
      Adjust by program base.
 
+ -- : BFD_RELOC_MN10300_SYM_DIFF
+     Together with another reloc targeted at the same location, allows
+     for a value that is the difference of two symbols in the same
+     section.
+
+ -- : BFD_RELOC_MN10300_ALIGN
+     The addend of this reloc is an alignment power that must be
+     honoured at the offset's location, regardless of linker relaxation.
+
  -- : BFD_RELOC_386_GOT32
  -- : BFD_RELOC_386_PLT32
  -- : BFD_RELOC_386_COPY
@@ -3840,6 +3972,9 @@ attributes.
  -- : BFD_RELOC_ARM_LDC_SB_G2
      ARM group relocations.
 
+ -- : BFD_RELOC_ARM_V4BX
+     Annotation of BX instructions.
+
  -- : BFD_RELOC_ARM_IMMEDIATE
  -- : BFD_RELOC_ARM_ADRL_IMMEDIATE
  -- : BFD_RELOC_ARM_T32_IMMEDIATE
@@ -4350,6 +4485,28 @@ attributes.
  -- : BFD_RELOC_MCORE_RVA
      Motorola Mcore relocations.
 
+ -- : BFD_RELOC_MEP_8
+ -- : BFD_RELOC_MEP_16
+ -- : BFD_RELOC_MEP_32
+ -- : BFD_RELOC_MEP_PCREL8A2
+ -- : BFD_RELOC_MEP_PCREL12A2
+ -- : BFD_RELOC_MEP_PCREL17A2
+ -- : BFD_RELOC_MEP_PCREL24A2
+ -- : BFD_RELOC_MEP_PCABS24A2
+ -- : BFD_RELOC_MEP_LOW16
+ -- : BFD_RELOC_MEP_HI16U
+ -- : BFD_RELOC_MEP_HI16S
+ -- : BFD_RELOC_MEP_GPREL
+ -- : BFD_RELOC_MEP_TPREL
+ -- : BFD_RELOC_MEP_TPREL7
+ -- : BFD_RELOC_MEP_TPREL7A2
+ -- : BFD_RELOC_MEP_TPREL7A4
+ -- : BFD_RELOC_MEP_UIMM24
+ -- : BFD_RELOC_MEP_ADDR24A4
+ -- : BFD_RELOC_MEP_GNU_VTINHERIT
+ -- : BFD_RELOC_MEP_GNU_VTENTRY
+     Toshiba Media Processor Relocations.
+
  -- : BFD_RELOC_MMIX_GETA
  -- : BFD_RELOC_MMIX_GETA_1
  -- : BFD_RELOC_MMIX_GETA_2
@@ -4853,6 +5010,38 @@ attributes.
  -- : BFD_RELOC_16C_IMM32_C
      NS CR16C Relocations.
 
+ -- : BFD_RELOC_CR16_NUM8
+ -- : BFD_RELOC_CR16_NUM16
+ -- : BFD_RELOC_CR16_NUM32
+ -- : BFD_RELOC_CR16_NUM32a
+ -- : BFD_RELOC_CR16_REGREL0
+ -- : BFD_RELOC_CR16_REGREL4
+ -- : BFD_RELOC_CR16_REGREL4a
+ -- : BFD_RELOC_CR16_REGREL14
+ -- : BFD_RELOC_CR16_REGREL14a
+ -- : BFD_RELOC_CR16_REGREL16
+ -- : BFD_RELOC_CR16_REGREL20
+ -- : BFD_RELOC_CR16_REGREL20a
+ -- : BFD_RELOC_CR16_ABS20
+ -- : BFD_RELOC_CR16_ABS24
+ -- : BFD_RELOC_CR16_IMM4
+ -- : BFD_RELOC_CR16_IMM8
+ -- : BFD_RELOC_CR16_IMM16
+ -- : BFD_RELOC_CR16_IMM20
+ -- : BFD_RELOC_CR16_IMM24
+ -- : BFD_RELOC_CR16_IMM32
+ -- : BFD_RELOC_CR16_IMM32a
+ -- : BFD_RELOC_CR16_DISP4
+ -- : BFD_RELOC_CR16_DISP8
+ -- : BFD_RELOC_CR16_DISP16
+ -- : BFD_RELOC_CR16_DISP20
+ -- : BFD_RELOC_CR16_DISP24
+ -- : BFD_RELOC_CR16_DISP24a
+ -- : BFD_RELOC_CR16_SWITCH8
+ -- : BFD_RELOC_CR16_SWITCH16
+ -- : BFD_RELOC_CR16_SWITCH32
+     NS CR16 Relocations.
+
  -- : BFD_RELOC_CRX_REL4
  -- : BFD_RELOC_CRX_REL8
  -- : BFD_RELOC_CRX_REL8_CMP
@@ -4967,6 +5156,9 @@ attributes.
  -- : BFD_RELOC_XSTORMY16_FPTR16
      Sony Xstormy16 Relocations.
 
+ -- : BFD_RELOC_RELC
+     Self-describing complex relocations.
+
  -- : BFD_RELOC_XC16X_PAG
  -- : BFD_RELOC_XC16X_POF
  -- : BFD_RELOC_XC16X_SEG
@@ -5089,6 +5281,15 @@ attributes.
      assembler-expanded instructions.  This is commonly used internally
      by the linker after analysis of a BFD_RELOC_XTENSA_ASM_EXPAND.
 
+ -- : BFD_RELOC_XTENSA_TLSDESC_FN
+ -- : BFD_RELOC_XTENSA_TLSDESC_ARG
+ -- : BFD_RELOC_XTENSA_TLS_DTPOFF
+ -- : BFD_RELOC_XTENSA_TLS_TPOFF
+ -- : BFD_RELOC_XTENSA_TLS_FUNC
+ -- : BFD_RELOC_XTENSA_TLS_ARG
+ -- : BFD_RELOC_XTENSA_TLS_CALL
+     Xtensa TLS relocations.
+
  -- : BFD_RELOC_Z80_DISP8
      8 bit signed offset in (ix+d) or (iy+d).
 
@@ -5110,6 +5311,8 @@ attributes.
 *Synopsis*
      reloc_howto_type *bfd_reloc_type_lookup
         (bfd *abfd, bfd_reloc_code_real_type code);
+     reloc_howto_type *bfd_reloc_name_lookup
+        (bfd *abfd, const char *reloc_name);
    *Description*
 Return a pointer to a howto structure which, when invoked, will perform
 the relocation CODE on data from the architecture noted.
@@ -5594,7 +5797,8 @@ BFD_JUMP_TABLE macros.
      #define BFD_JUMP_TABLE_RELOCS(NAME) \
        NAME##_get_reloc_upper_bound, \
        NAME##_canonicalize_reloc, \
-       NAME##_bfd_reloc_type_lookup
+       NAME##_bfd_reloc_type_lookup, \
+       NAME##_bfd_reloc_name_lookup
 
        long        (*_get_reloc_upper_bound) (bfd *, sec_ptr);
        long        (*_bfd_canonicalize_reloc)
@@ -5602,6 +5806,9 @@ BFD_JUMP_TABLE macros.
        /* See documentation on reloc types.  */
        reloc_howto_type *
                    (*reloc_type_lookup) (bfd *, bfd_reloc_code_real_type);
+       reloc_howto_type *
+                   (*reloc_name_lookup) (bfd *, const char *);
+
 
        /* Routines used when writing an object file.  */
      #define BFD_JUMP_TABLE_WRITE(NAME) \
@@ -5810,22 +6017,29 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
      #define bfd_mach_m68040 6
      #define bfd_mach_m68060 7
      #define bfd_mach_cpu32  8
-     #define bfd_mach_mcf_isa_a_nodiv 9
-     #define bfd_mach_mcf_isa_a 10
-     #define bfd_mach_mcf_isa_a_mac 11
-     #define bfd_mach_mcf_isa_a_emac 12
-     #define bfd_mach_mcf_isa_aplus 13
-     #define bfd_mach_mcf_isa_aplus_mac 14
-     #define bfd_mach_mcf_isa_aplus_emac 15
-     #define bfd_mach_mcf_isa_b_nousp 16
-     #define bfd_mach_mcf_isa_b_nousp_mac 17
-     #define bfd_mach_mcf_isa_b_nousp_emac 18
-     #define bfd_mach_mcf_isa_b 19
-     #define bfd_mach_mcf_isa_b_mac 20
-     #define bfd_mach_mcf_isa_b_emac 21
-     #define bfd_mach_mcf_isa_b_float 22
-     #define bfd_mach_mcf_isa_b_float_mac 23
-     #define bfd_mach_mcf_isa_b_float_emac 24
+     #define bfd_mach_fido   9
+     #define bfd_mach_mcf_isa_a_nodiv 10
+     #define bfd_mach_mcf_isa_a 11
+     #define bfd_mach_mcf_isa_a_mac 12
+     #define bfd_mach_mcf_isa_a_emac 13
+     #define bfd_mach_mcf_isa_aplus 14
+     #define bfd_mach_mcf_isa_aplus_mac 15
+     #define bfd_mach_mcf_isa_aplus_emac 16
+     #define bfd_mach_mcf_isa_b_nousp 17
+     #define bfd_mach_mcf_isa_b_nousp_mac 18
+     #define bfd_mach_mcf_isa_b_nousp_emac 19
+     #define bfd_mach_mcf_isa_b 20
+     #define bfd_mach_mcf_isa_b_mac 21
+     #define bfd_mach_mcf_isa_b_emac 22
+     #define bfd_mach_mcf_isa_b_float 23
+     #define bfd_mach_mcf_isa_b_float_mac 24
+     #define bfd_mach_mcf_isa_b_float_emac 25
+     #define bfd_mach_mcf_isa_c 26
+     #define bfd_mach_mcf_isa_c_mac 27
+     #define bfd_mach_mcf_isa_c_emac 28
+     #define bfd_mach_mcf_isa_c_nodiv 29
+     #define bfd_mach_mcf_isa_c_nodiv_mac 30
+     #define bfd_mach_mcf_isa_c_nodiv_emac 31
        bfd_arch_vax,       /* DEC Vax */
        bfd_arch_i960,      /* Intel 960 */
          /* The order of the following is important.
@@ -5891,7 +6105,10 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
      #define bfd_mach_mips12000             12000
      #define bfd_mach_mips16                16
      #define bfd_mach_mips5                 5
+     #define bfd_mach_mips_loongson_2e      3001
+     #define bfd_mach_mips_loongson_2f      3002
      #define bfd_mach_mips_sb1              12310201 /* octal 'SB', 01 */
+     #define bfd_mach_mips_octeon           6501
      #define bfd_mach_mipsisa32             32
      #define bfd_mach_mipsisa32r2           33
      #define bfd_mach_mipsisa64             64
@@ -5940,6 +6157,7 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
      #define bfd_mach_ppc_rs64iii   643
      #define bfd_mach_ppc_7400      7400
      #define bfd_mach_ppc_e500      500
+     #define bfd_mach_ppc_e500mc    5001
        bfd_arch_rs6000,    /* IBM RS/6000 */
      #define bfd_mach_rs6k          6000
      #define bfd_mach_rs6k_rs1      6001
@@ -6047,6 +6265,9 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
      #define bfd_mach_fr500         500
      #define bfd_mach_fr550         550
        bfd_arch_mcore,
+       bfd_arch_mep,
+     #define bfd_mach_mep           1
+     #define bfd_mach_mep_h1        0x6831
        bfd_arch_ia64,      /* HP/Intel ia64 */
      #define bfd_mach_ia64_elf64    64
      #define bfd_mach_ia64_elf32    32
@@ -6064,12 +6285,18 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
        bfd_arch_avr,       /* Atmel AVR microcontrollers.  */
      #define bfd_mach_avr1          1
      #define bfd_mach_avr2          2
+     #define bfd_mach_avr25         25
      #define bfd_mach_avr3          3
+     #define bfd_mach_avr31         31
+     #define bfd_mach_avr35         35
      #define bfd_mach_avr4          4
      #define bfd_mach_avr5          5
+     #define bfd_mach_avr51         51
      #define bfd_mach_avr6          6
        bfd_arch_bfin,        /* ADI Blackfin */
      #define bfd_mach_bfin          1
+       bfd_arch_cr16,       /* National Semiconductor CompactRISC (ie CR16). */
+     #define bfd_mach_cr16          1
        bfd_arch_cr16c,       /* National Semiconductor CompactRISC. */
      #define bfd_mach_cr16c         1
        bfd_arch_crx,       /*  National Semiconductor CRX.  */
@@ -6412,7 +6639,10 @@ is passed to `bfd_close', the stream will be closed.
          file_ptr nbytes,
          file_ptr offset),
          int (*close) (struct bfd *nbfd,
-         void *stream));
+         void *stream),
+         int (*stat) (struct bfd *abfd,
+         void *stream,
+         struct stat *sb));
    *Description*
 Create and return a BFD backed by a read-only STREAM.  The STREAM is
 created using OPEN, accessed using PREAD and destroyed using CLOSE.
@@ -6434,6 +6664,10 @@ or fails returning -1 (setting `bfd_error').
 either succeeds returning 0, or fails returning -1 (setting
 `bfd_error').
 
+   Calls STAT to fill in a stat structure for bfd_stat, bfd_get_size,
+and bfd_get_mtime calls.  STAT returns 0 on success, or returns -1 on
+failure (setting `bfd_error').
+
    If `bfd_openr_iovec' returns `NULL' then an error has occurred.
 Possible errors are `bfd_error_no_memory', `bfd_error_invalid_target'
 and `bfd_error_system_call'.
@@ -7006,9 +7240,9 @@ function can assume about the hash table is that it is derived from
 
    Sometimes the `_bfd_link_add_symbols' function must store some
 information in the hash table entry to be used by the `_bfd_final_link'
-function.  In such a case the `creator' field of the hash table must be
-checked to make sure that the hash table was created by an object file
-of the same format.
+function.  In such a case the output bfd xvec must be checked to make
+sure that the hash table was created by an object file of the same
+format.
 
    The `_bfd_final_link' routine must be prepared to handle a hash
 entry without any extra information added by the
@@ -7019,8 +7253,8 @@ added, all the fields will be initialized to some sort of null value by
 the hash table entry initialization function.
 
    See `ecoff_link_add_externals' for an example of how to check the
-`creator' field before saving information (in this case, the ECOFF
-external symbol debugging information) in a hash table entry.
+output bfd before saving information (in this case, the ECOFF external
+symbol debugging information) in a hash table entry.
 
 \1f
 File: bfd.info,  Node: Adding symbols from an object file,  Next: Adding symbols from an archive,  Prev: Differing file formats,  Up: Adding Symbols to the Hash Table
@@ -8112,6 +8346,9 @@ Special entry points for gdb to swap in coff symbol table parts:
        bfd_boolean (*_bfd_coff_final_link_postscript)
          (bfd *, struct coff_final_link_info *);
 
+       bfd_boolean (*_bfd_coff_print_pdata)
+         (bfd *, void *);
+
      } bfd_coff_backend_data;
 
      #define coff_backend_info(abfd) \
@@ -8244,6 +8481,11 @@ Special entry points for gdb to swap in coff symbol table parts:
      #define bfd_coff_final_link_postscript(a,p) \
        ((coff_backend_info (a)->_bfd_coff_final_link_postscript) (a, p))
 
+     #define bfd_coff_have_print_pdata(a) \
+       (coff_backend_info (a)->_bfd_coff_print_pdata)
+     #define bfd_coff_print_pdata(a,p) \
+       ((coff_backend_info (a)->_bfd_coff_print_pdata) (a, p))
+
 3.3.2.7 Writing relocations
 ...........................
 
@@ -9084,109 +9326,110 @@ BFD Index
 * BFD:                                   Overview.           (line    6)
 * BFD canonical format:                  Canonical format.   (line   11)
 * bfd_alloc:                             Opening and Closing.
-                                                             (line  203)
+                                                             (line  210)
 * bfd_alloc2:                            Opening and Closing.
-                                                             (line  212)
-* bfd_alt_mach_code:                     BFD front end.      (line  602)
-* bfd_arch_bits_per_address:             Architectures.      (line  481)
-* bfd_arch_bits_per_byte:                Architectures.      (line  473)
-* bfd_arch_get_compatible:               Architectures.      (line  416)
-* bfd_arch_list:                         Architectures.      (line  407)
-* bfd_arch_mach_octets_per_byte:         Architectures.      (line  550)
-* BFD_ARELOC_BFIN_ADD:                   howto manager.      (line  942)
-* BFD_ARELOC_BFIN_ADDR:                  howto manager.      (line  993)
-* BFD_ARELOC_BFIN_AND:                   howto manager.      (line  963)
-* BFD_ARELOC_BFIN_COMP:                  howto manager.      (line  984)
-* BFD_ARELOC_BFIN_CONST:                 howto manager.      (line  939)
-* BFD_ARELOC_BFIN_DIV:                   howto manager.      (line  951)
-* BFD_ARELOC_BFIN_HWPAGE:                howto manager.      (line  990)
-* BFD_ARELOC_BFIN_LAND:                  howto manager.      (line  972)
-* BFD_ARELOC_BFIN_LEN:                   howto manager.      (line  978)
-* BFD_ARELOC_BFIN_LOR:                   howto manager.      (line  975)
-* BFD_ARELOC_BFIN_LSHIFT:                howto manager.      (line  957)
-* BFD_ARELOC_BFIN_MOD:                   howto manager.      (line  954)
-* BFD_ARELOC_BFIN_MULT:                  howto manager.      (line  948)
-* BFD_ARELOC_BFIN_NEG:                   howto manager.      (line  981)
-* BFD_ARELOC_BFIN_OR:                    howto manager.      (line  966)
-* BFD_ARELOC_BFIN_PAGE:                  howto manager.      (line  987)
-* BFD_ARELOC_BFIN_PUSH:                  howto manager.      (line  936)
-* BFD_ARELOC_BFIN_RSHIFT:                howto manager.      (line  960)
-* BFD_ARELOC_BFIN_SUB:                   howto manager.      (line  945)
-* BFD_ARELOC_BFIN_XOR:                   howto manager.      (line  969)
+                                                             (line  219)
+* bfd_alt_mach_code:                     BFD front end.      (line  681)
+* bfd_arch_bits_per_address:             Architectures.      (line  501)
+* bfd_arch_bits_per_byte:                Architectures.      (line  493)
+* bfd_arch_get_compatible:               Architectures.      (line  436)
+* bfd_arch_list:                         Architectures.      (line  427)
+* bfd_arch_mach_octets_per_byte:         Architectures.      (line  570)
+* BFD_ARELOC_BFIN_ADD:                   howto manager.      (line  966)
+* BFD_ARELOC_BFIN_ADDR:                  howto manager.      (line 1017)
+* BFD_ARELOC_BFIN_AND:                   howto manager.      (line  987)
+* BFD_ARELOC_BFIN_COMP:                  howto manager.      (line 1008)
+* BFD_ARELOC_BFIN_CONST:                 howto manager.      (line  963)
+* BFD_ARELOC_BFIN_DIV:                   howto manager.      (line  975)
+* BFD_ARELOC_BFIN_HWPAGE:                howto manager.      (line 1014)
+* BFD_ARELOC_BFIN_LAND:                  howto manager.      (line  996)
+* BFD_ARELOC_BFIN_LEN:                   howto manager.      (line 1002)
+* BFD_ARELOC_BFIN_LOR:                   howto manager.      (line  999)
+* BFD_ARELOC_BFIN_LSHIFT:                howto manager.      (line  981)
+* BFD_ARELOC_BFIN_MOD:                   howto manager.      (line  978)
+* BFD_ARELOC_BFIN_MULT:                  howto manager.      (line  972)
+* BFD_ARELOC_BFIN_NEG:                   howto manager.      (line 1005)
+* BFD_ARELOC_BFIN_OR:                    howto manager.      (line  990)
+* BFD_ARELOC_BFIN_PAGE:                  howto manager.      (line 1011)
+* BFD_ARELOC_BFIN_PUSH:                  howto manager.      (line  960)
+* BFD_ARELOC_BFIN_RSHIFT:                howto manager.      (line  984)
+* BFD_ARELOC_BFIN_SUB:                   howto manager.      (line  969)
+* BFD_ARELOC_BFIN_XOR:                   howto manager.      (line  993)
 * bfd_cache_close:                       File Caching.       (line   26)
 * bfd_cache_close_all:                   File Caching.       (line   39)
 * bfd_cache_init:                        File Caching.       (line   18)
 * bfd_calc_gnu_debuglink_crc32:          Opening and Closing.
-                                                             (line  239)
-* bfd_canonicalize_reloc:                BFD front end.      (line  321)
+                                                             (line  246)
+* bfd_canonicalize_reloc:                BFD front end.      (line  400)
 * bfd_canonicalize_symtab:               symbol handling functions.
                                                              (line   50)
 * bfd_check_format:                      Formats.            (line   21)
 * bfd_check_format_matches:              Formats.            (line   52)
 * bfd_check_overflow:                    typedef arelent.    (line  351)
 * bfd_close:                             Opening and Closing.
-                                                             (line  128)
+                                                             (line  135)
 * bfd_close_all_done:                    Opening and Closing.
-                                                             (line  146)
+                                                             (line  153)
 * bfd_coff_backend_data:                 coff.               (line  246)
-* bfd_copy_private_bfd_data:             BFD front end.      (line  460)
-* bfd_copy_private_header_data:          BFD front end.      (line  442)
+* bfd_copy_private_bfd_data:             BFD front end.      (line  539)
+* bfd_copy_private_header_data:          BFD front end.      (line  521)
 * bfd_copy_private_section_data:         section prototypes. (line  255)
 * bfd_copy_private_symbol_data:          symbol handling functions.
                                                              (line  140)
 * bfd_core_file_failing_command:         Core Files.         (line   12)
 * bfd_core_file_failing_signal:          Core Files.         (line   21)
 * bfd_create:                            Opening and Closing.
-                                                             (line  165)
+                                                             (line  172)
 * bfd_create_gnu_debuglink_section:      Opening and Closing.
-                                                             (line  305)
+                                                             (line  312)
 * bfd_decode_symclass:                   symbol handling functions.
                                                              (line  111)
-* bfd_default_arch_struct:               Architectures.      (line  428)
-* bfd_default_compatible:                Architectures.      (line  490)
-* bfd_default_reloc_type_lookup:         howto manager.      (line 2023)
-* bfd_default_scan:                      Architectures.      (line  499)
-* bfd_default_set_arch_mach:             Architectures.      (line  446)
+* bfd_default_arch_struct:               Architectures.      (line  448)
+* bfd_default_compatible:                Architectures.      (line  510)
+* bfd_default_reloc_type_lookup:         howto manager.      (line 2115)
+* bfd_default_scan:                      Architectures.      (line  519)
+* bfd_default_set_arch_mach:             Architectures.      (line  466)
+* bfd_demangle:                          BFD front end.      (line  779)
 * bfd_elf_find_section:                  elf.                (line   13)
-* bfd_emul_get_commonpagesize:           BFD front end.      (line  680)
-* bfd_emul_get_maxpagesize:              BFD front end.      (line  660)
-* bfd_emul_set_commonpagesize:           BFD front end.      (line  691)
-* bfd_emul_set_maxpagesize:              BFD front end.      (line  671)
-* bfd_errmsg:                            BFD front end.      (line  246)
+* bfd_emul_get_commonpagesize:           BFD front end.      (line  759)
+* bfd_emul_get_maxpagesize:              BFD front end.      (line  739)
+* bfd_emul_set_commonpagesize:           BFD front end.      (line  770)
+* bfd_emul_set_maxpagesize:              BFD front end.      (line  750)
+* bfd_errmsg:                            BFD front end.      (line  325)
 * bfd_fdopenr:                           Opening and Closing.
                                                              (line   46)
 * bfd_fill_in_gnu_debuglink_section:     Opening and Closing.
-                                                             (line  319)
-* bfd_find_target:                       bfd_target.         (line  435)
+                                                             (line  326)
+* bfd_find_target:                       bfd_target.         (line  439)
 * bfd_follow_gnu_debuglink:              Opening and Closing.
-                                                             (line  284)
+                                                             (line  291)
 * bfd_fopen:                             Opening and Closing.
                                                              (line    9)
 * bfd_format_string:                     Formats.            (line   79)
 * bfd_generic_discard_group:             section prototypes. (line  281)
-* bfd_generic_gc_sections:               howto manager.      (line 2054)
-* bfd_generic_get_relocated_section_contents: howto manager. (line 2074)
+* bfd_generic_gc_sections:               howto manager.      (line 2146)
+* bfd_generic_get_relocated_section_contents: howto manager. (line 2166)
 * bfd_generic_is_group_section:          section prototypes. (line  273)
-* bfd_generic_merge_sections:            howto manager.      (line 2064)
-* bfd_generic_relax_section:             howto manager.      (line 2041)
-* bfd_get_arch:                          Architectures.      (line  457)
-* bfd_get_arch_info:                     Architectures.      (line  509)
-* bfd_get_arch_size:                     BFD front end.      (line  365)
-* bfd_get_error:                         BFD front end.      (line  227)
-* bfd_get_error_handler:                 BFD front end.      (line  297)
-* bfd_get_gp_size:                       BFD front end.      (line  406)
-* bfd_get_mach:                          Architectures.      (line  465)
-* bfd_get_mtime:                         BFD front end.      (line  730)
+* bfd_generic_merge_sections:            howto manager.      (line 2156)
+* bfd_generic_relax_section:             howto manager.      (line 2133)
+* bfd_get_arch:                          Architectures.      (line  477)
+* bfd_get_arch_info:                     Architectures.      (line  529)
+* bfd_get_arch_size:                     BFD front end.      (line  444)
+* bfd_get_error:                         BFD front end.      (line  306)
+* bfd_get_error_handler:                 BFD front end.      (line  376)
+* bfd_get_gp_size:                       BFD front end.      (line  485)
+* bfd_get_mach:                          Architectures.      (line  485)
+* bfd_get_mtime:                         BFD front end.      (line  820)
 * bfd_get_next_mapent:                   Archives.           (line   52)
-* bfd_get_reloc_code_name:               howto manager.      (line 2032)
+* bfd_get_reloc_code_name:               howto manager.      (line 2124)
 * bfd_get_reloc_size:                    typedef arelent.    (line  330)
-* bfd_get_reloc_upper_bound:             BFD front end.      (line  311)
+* bfd_get_reloc_upper_bound:             BFD front end.      (line  390)
 * bfd_get_section_by_name:               section prototypes. (line   17)
 * bfd_get_section_by_name_if:            section prototypes. (line   31)
 * bfd_get_section_contents:              section prototypes. (line  228)
-* bfd_get_sign_extend_vma:               BFD front end.      (line  378)
+* bfd_get_sign_extend_vma:               BFD front end.      (line  457)
 * bfd_get_size <1>:                      Internal.           (line   25)
-* bfd_get_size:                          BFD front end.      (line  739)
+* bfd_get_size:                          BFD front end.      (line  829)
 * bfd_get_symtab_upper_bound:            symbol handling functions.
                                                              (line    6)
 * bfd_get_unique_section_name:           section prototypes. (line   50)
@@ -9220,24 +9463,24 @@ BFD Index
 * bfd_link_split_section:                Writing the symbol table.
                                                              (line   44)
 * bfd_log2:                              Internal.           (line  164)
-* bfd_lookup_arch:                       Architectures.      (line  517)
+* bfd_lookup_arch:                       Architectures.      (line  537)
 * bfd_make_debug_symbol:                 symbol handling functions.
                                                              (line  102)
 * bfd_make_empty_symbol:                 symbol handling functions.
                                                              (line   78)
 * bfd_make_readable:                     Opening and Closing.
-                                                             (line  189)
+                                                             (line  196)
 * bfd_make_section:                      section prototypes. (line  129)
 * bfd_make_section_anyway:               section prototypes. (line  100)
 * bfd_make_section_anyway_with_flags:    section prototypes. (line   82)
 * bfd_make_section_old_way:              section prototypes. (line   62)
 * bfd_make_section_with_flags:           section prototypes. (line  116)
 * bfd_make_writable:                     Opening and Closing.
-                                                             (line  175)
+                                                             (line  182)
 * bfd_malloc_and_get_section:            section prototypes. (line  245)
 * bfd_map_over_sections:                 section prototypes. (line  155)
-* bfd_merge_private_bfd_data:            BFD front end.      (line  476)
-* bfd_octets_per_byte:                   Architectures.      (line  540)
+* bfd_merge_private_bfd_data:            BFD front end.      (line  555)
+* bfd_octets_per_byte:                   Architectures.      (line  560)
 * bfd_open_file:                         File Caching.       (line   52)
 * bfd_openr:                             Opening and Closing.
                                                              (line   30)
@@ -9247,16 +9490,16 @@ BFD Index
 * bfd_openstreamr:                       Opening and Closing.
                                                              (line   67)
 * bfd_openw:                             Opening and Closing.
-                                                             (line  116)
+                                                             (line  123)
 * bfd_perform_relocation:                typedef arelent.    (line  367)
-* bfd_perror:                            BFD front end.      (line  255)
-* bfd_preserve_finish:                   BFD front end.      (line  650)
-* bfd_preserve_restore:                  BFD front end.      (line  640)
-* bfd_preserve_save:                     BFD front end.      (line  624)
+* bfd_perror:                            BFD front end.      (line  334)
+* bfd_preserve_finish:                   BFD front end.      (line  729)
+* bfd_preserve_restore:                  BFD front end.      (line  719)
+* bfd_preserve_save:                     BFD front end.      (line  703)
 * bfd_print_symbol_vandf:                symbol handling functions.
                                                              (line   70)
-* bfd_printable_arch_mach:               Architectures.      (line  528)
-* bfd_printable_name:                    Architectures.      (line  388)
+* bfd_printable_arch_mach:               Architectures.      (line  548)
+* bfd_printable_name:                    Architectures.      (line  408)
 * bfd_put_size:                          Internal.           (line   22)
 * BFD_RELOC_12_PCREL:                    howto manager.      (line   39)
 * BFD_RELOC_14:                          howto manager.      (line   31)
@@ -9268,46 +9511,46 @@ BFD Index
 * BFD_RELOC_16_PCREL_S2:                 howto manager.      (line   92)
 * BFD_RELOC_16_PLT_PCREL:                howto manager.      (line   63)
 * BFD_RELOC_16_PLTOFF:                   howto manager.      (line   67)
-* BFD_RELOC_16C_ABS20:                   howto manager.      (line 1747)
-* BFD_RELOC_16C_ABS20_C:                 howto manager.      (line 1748)
-* BFD_RELOC_16C_ABS24:                   howto manager.      (line 1749)
-* BFD_RELOC_16C_ABS24_C:                 howto manager.      (line 1750)
-* BFD_RELOC_16C_DISP04:                  howto manager.      (line 1727)
-* BFD_RELOC_16C_DISP04_C:                howto manager.      (line 1728)
-* BFD_RELOC_16C_DISP08:                  howto manager.      (line 1729)
-* BFD_RELOC_16C_DISP08_C:                howto manager.      (line 1730)
-* BFD_RELOC_16C_DISP16:                  howto manager.      (line 1731)
-* BFD_RELOC_16C_DISP16_C:                howto manager.      (line 1732)
-* BFD_RELOC_16C_DISP24:                  howto manager.      (line 1733)
-* BFD_RELOC_16C_DISP24_C:                howto manager.      (line 1734)
-* BFD_RELOC_16C_DISP24a:                 howto manager.      (line 1735)
-* BFD_RELOC_16C_DISP24a_C:               howto manager.      (line 1736)
-* BFD_RELOC_16C_IMM04:                   howto manager.      (line 1751)
-* BFD_RELOC_16C_IMM04_C:                 howto manager.      (line 1752)
-* BFD_RELOC_16C_IMM16:                   howto manager.      (line 1753)
-* BFD_RELOC_16C_IMM16_C:                 howto manager.      (line 1754)
-* BFD_RELOC_16C_IMM20:                   howto manager.      (line 1755)
-* BFD_RELOC_16C_IMM20_C:                 howto manager.      (line 1756)
-* BFD_RELOC_16C_IMM24:                   howto manager.      (line 1757)
-* BFD_RELOC_16C_IMM24_C:                 howto manager.      (line 1758)
-* BFD_RELOC_16C_IMM32:                   howto manager.      (line 1759)
-* BFD_RELOC_16C_IMM32_C:                 howto manager.      (line 1760)
-* BFD_RELOC_16C_NUM08:                   howto manager.      (line 1721)
-* BFD_RELOC_16C_NUM08_C:                 howto manager.      (line 1722)
-* BFD_RELOC_16C_NUM16:                   howto manager.      (line 1723)
-* BFD_RELOC_16C_NUM16_C:                 howto manager.      (line 1724)
-* BFD_RELOC_16C_NUM32:                   howto manager.      (line 1725)
-* BFD_RELOC_16C_NUM32_C:                 howto manager.      (line 1726)
-* BFD_RELOC_16C_REG04:                   howto manager.      (line 1737)
-* BFD_RELOC_16C_REG04_C:                 howto manager.      (line 1738)
-* BFD_RELOC_16C_REG04a:                  howto manager.      (line 1739)
-* BFD_RELOC_16C_REG04a_C:                howto manager.      (line 1740)
-* BFD_RELOC_16C_REG14:                   howto manager.      (line 1741)
-* BFD_RELOC_16C_REG14_C:                 howto manager.      (line 1742)
-* BFD_RELOC_16C_REG16:                   howto manager.      (line 1743)
-* BFD_RELOC_16C_REG16_C:                 howto manager.      (line 1744)
-* BFD_RELOC_16C_REG20:                   howto manager.      (line 1745)
-* BFD_RELOC_16C_REG20_C:                 howto manager.      (line 1746)
+* BFD_RELOC_16C_ABS20:                   howto manager.      (line 1793)
+* BFD_RELOC_16C_ABS20_C:                 howto manager.      (line 1794)
+* BFD_RELOC_16C_ABS24:                   howto manager.      (line 1795)
+* BFD_RELOC_16C_ABS24_C:                 howto manager.      (line 1796)
+* BFD_RELOC_16C_DISP04:                  howto manager.      (line 1773)
+* BFD_RELOC_16C_DISP04_C:                howto manager.      (line 1774)
+* BFD_RELOC_16C_DISP08:                  howto manager.      (line 1775)
+* BFD_RELOC_16C_DISP08_C:                howto manager.      (line 1776)
+* BFD_RELOC_16C_DISP16:                  howto manager.      (line 1777)
+* BFD_RELOC_16C_DISP16_C:                howto manager.      (line 1778)
+* BFD_RELOC_16C_DISP24:                  howto manager.      (line 1779)
+* BFD_RELOC_16C_DISP24_C:                howto manager.      (line 1780)
+* BFD_RELOC_16C_DISP24a:                 howto manager.      (line 1781)
+* BFD_RELOC_16C_DISP24a_C:               howto manager.      (line 1782)
+* BFD_RELOC_16C_IMM04:                   howto manager.      (line 1797)
+* BFD_RELOC_16C_IMM04_C:                 howto manager.      (line 1798)
+* BFD_RELOC_16C_IMM16:                   howto manager.      (line 1799)
+* BFD_RELOC_16C_IMM16_C:                 howto manager.      (line 1800)
+* BFD_RELOC_16C_IMM20:                   howto manager.      (line 1801)
+* BFD_RELOC_16C_IMM20_C:                 howto manager.      (line 1802)
+* BFD_RELOC_16C_IMM24:                   howto manager.      (line 1803)
+* BFD_RELOC_16C_IMM24_C:                 howto manager.      (line 1804)
+* BFD_RELOC_16C_IMM32:                   howto manager.      (line 1805)
+* BFD_RELOC_16C_IMM32_C:                 howto manager.      (line 1806)
+* BFD_RELOC_16C_NUM08:                   howto manager.      (line 1767)
+* BFD_RELOC_16C_NUM08_C:                 howto manager.      (line 1768)
+* BFD_RELOC_16C_NUM16:                   howto manager.      (line 1769)
+* BFD_RELOC_16C_NUM16_C:                 howto manager.      (line 1770)
+* BFD_RELOC_16C_NUM32:                   howto manager.      (line 1771)
+* BFD_RELOC_16C_NUM32_C:                 howto manager.      (line 1772)
+* BFD_RELOC_16C_REG04:                   howto manager.      (line 1783)
+* BFD_RELOC_16C_REG04_C:                 howto manager.      (line 1784)
+* BFD_RELOC_16C_REG04a:                  howto manager.      (line 1785)
+* BFD_RELOC_16C_REG04a_C:                howto manager.      (line 1786)
+* BFD_RELOC_16C_REG14:                   howto manager.      (line 1787)
+* BFD_RELOC_16C_REG14_C:                 howto manager.      (line 1788)
+* BFD_RELOC_16C_REG16:                   howto manager.      (line 1789)
+* BFD_RELOC_16C_REG16_C:                 howto manager.      (line 1790)
+* BFD_RELOC_16C_REG20:                   howto manager.      (line 1791)
+* BFD_RELOC_16C_REG20_C:                 howto manager.      (line 1792)
 * BFD_RELOC_23_PCREL_S2:                 howto manager.      (line   93)
 * BFD_RELOC_24:                          howto manager.      (line   29)
 * BFD_RELOC_24_PCREL:                    howto manager.      (line   37)
@@ -9322,79 +9565,79 @@ BFD Index
 * BFD_RELOC_32_PLT_PCREL:                howto manager.      (line   61)
 * BFD_RELOC_32_PLTOFF:                   howto manager.      (line   66)
 * BFD_RELOC_32_SECREL:                   howto manager.      (line   48)
-* BFD_RELOC_386_COPY:                    howto manager.      (line  449)
-* BFD_RELOC_386_GLOB_DAT:                howto manager.      (line  450)
-* BFD_RELOC_386_GOT32:                   howto manager.      (line  447)
-* BFD_RELOC_386_GOTOFF:                  howto manager.      (line  453)
-* BFD_RELOC_386_GOTPC:                   howto manager.      (line  454)
-* BFD_RELOC_386_JUMP_SLOT:               howto manager.      (line  451)
-* BFD_RELOC_386_PLT32:                   howto manager.      (line  448)
-* BFD_RELOC_386_RELATIVE:                howto manager.      (line  452)
-* BFD_RELOC_386_TLS_DESC:                howto manager.      (line  469)
-* BFD_RELOC_386_TLS_DESC_CALL:           howto manager.      (line  468)
-* BFD_RELOC_386_TLS_DTPMOD32:            howto manager.      (line  464)
-* BFD_RELOC_386_TLS_DTPOFF32:            howto manager.      (line  465)
-* BFD_RELOC_386_TLS_GD:                  howto manager.      (line  459)
-* BFD_RELOC_386_TLS_GOTDESC:             howto manager.      (line  467)
-* BFD_RELOC_386_TLS_GOTIE:               howto manager.      (line  457)
-* BFD_RELOC_386_TLS_IE:                  howto manager.      (line  456)
-* BFD_RELOC_386_TLS_IE_32:               howto manager.      (line  462)
-* BFD_RELOC_386_TLS_LDM:                 howto manager.      (line  460)
-* BFD_RELOC_386_TLS_LDO_32:              howto manager.      (line  461)
-* BFD_RELOC_386_TLS_LE:                  howto manager.      (line  458)
-* BFD_RELOC_386_TLS_LE_32:               howto manager.      (line  463)
-* BFD_RELOC_386_TLS_TPOFF:               howto manager.      (line  455)
-* BFD_RELOC_386_TLS_TPOFF32:             howto manager.      (line  466)
-* BFD_RELOC_390_12:                      howto manager.      (line 1413)
-* BFD_RELOC_390_20:                      howto manager.      (line 1513)
-* BFD_RELOC_390_COPY:                    howto manager.      (line 1422)
-* BFD_RELOC_390_GLOB_DAT:                howto manager.      (line 1425)
-* BFD_RELOC_390_GOT12:                   howto manager.      (line 1416)
-* BFD_RELOC_390_GOT16:                   howto manager.      (line 1437)
-* BFD_RELOC_390_GOT20:                   howto manager.      (line 1514)
-* BFD_RELOC_390_GOT64:                   howto manager.      (line 1455)
-* BFD_RELOC_390_GOTENT:                  howto manager.      (line 1461)
-* BFD_RELOC_390_GOTOFF64:                howto manager.      (line 1464)
-* BFD_RELOC_390_GOTPC:                   howto manager.      (line 1434)
-* BFD_RELOC_390_GOTPCDBL:                howto manager.      (line 1452)
-* BFD_RELOC_390_GOTPLT12:                howto manager.      (line 1467)
-* BFD_RELOC_390_GOTPLT16:                howto manager.      (line 1470)
-* BFD_RELOC_390_GOTPLT20:                howto manager.      (line 1515)
-* BFD_RELOC_390_GOTPLT32:                howto manager.      (line 1473)
-* BFD_RELOC_390_GOTPLT64:                howto manager.      (line 1476)
-* BFD_RELOC_390_GOTPLTENT:               howto manager.      (line 1479)
-* BFD_RELOC_390_JMP_SLOT:                howto manager.      (line 1428)
-* BFD_RELOC_390_PC16DBL:                 howto manager.      (line 1440)
-* BFD_RELOC_390_PC32DBL:                 howto manager.      (line 1446)
-* BFD_RELOC_390_PLT16DBL:                howto manager.      (line 1443)
-* BFD_RELOC_390_PLT32:                   howto manager.      (line 1419)
-* BFD_RELOC_390_PLT32DBL:                howto manager.      (line 1449)
-* BFD_RELOC_390_PLT64:                   howto manager.      (line 1458)
-* BFD_RELOC_390_PLTOFF16:                howto manager.      (line 1482)
-* BFD_RELOC_390_PLTOFF32:                howto manager.      (line 1485)
-* BFD_RELOC_390_PLTOFF64:                howto manager.      (line 1488)
-* BFD_RELOC_390_RELATIVE:                howto manager.      (line 1431)
-* BFD_RELOC_390_TLS_DTPMOD:              howto manager.      (line 1508)
-* BFD_RELOC_390_TLS_DTPOFF:              howto manager.      (line 1509)
-* BFD_RELOC_390_TLS_GD32:                howto manager.      (line 1494)
-* BFD_RELOC_390_TLS_GD64:                howto manager.      (line 1495)
-* BFD_RELOC_390_TLS_GDCALL:              howto manager.      (line 1492)
-* BFD_RELOC_390_TLS_GOTIE12:             howto manager.      (line 1496)
-* BFD_RELOC_390_TLS_GOTIE20:             howto manager.      (line 1516)
-* BFD_RELOC_390_TLS_GOTIE32:             howto manager.      (line 1497)
-* BFD_RELOC_390_TLS_GOTIE64:             howto manager.      (line 1498)
-* BFD_RELOC_390_TLS_IE32:                howto manager.      (line 1501)
-* BFD_RELOC_390_TLS_IE64:                howto manager.      (line 1502)
-* BFD_RELOC_390_TLS_IEENT:               howto manager.      (line 1503)
-* BFD_RELOC_390_TLS_LDCALL:              howto manager.      (line 1493)
-* BFD_RELOC_390_TLS_LDM32:               howto manager.      (line 1499)
-* BFD_RELOC_390_TLS_LDM64:               howto manager.      (line 1500)
-* BFD_RELOC_390_TLS_LDO32:               howto manager.      (line 1506)
-* BFD_RELOC_390_TLS_LDO64:               howto manager.      (line 1507)
-* BFD_RELOC_390_TLS_LE32:                howto manager.      (line 1504)
-* BFD_RELOC_390_TLS_LE64:                howto manager.      (line 1505)
-* BFD_RELOC_390_TLS_LOAD:                howto manager.      (line 1491)
-* BFD_RELOC_390_TLS_TPOFF:               howto manager.      (line 1510)
+* BFD_RELOC_386_COPY:                    howto manager.      (line  470)
+* BFD_RELOC_386_GLOB_DAT:                howto manager.      (line  471)
+* BFD_RELOC_386_GOT32:                   howto manager.      (line  468)
+* BFD_RELOC_386_GOTOFF:                  howto manager.      (line  474)
+* BFD_RELOC_386_GOTPC:                   howto manager.      (line  475)
+* BFD_RELOC_386_JUMP_SLOT:               howto manager.      (line  472)
+* BFD_RELOC_386_PLT32:                   howto manager.      (line  469)
+* BFD_RELOC_386_RELATIVE:                howto manager.      (line  473)
+* BFD_RELOC_386_TLS_DESC:                howto manager.      (line  490)
+* BFD_RELOC_386_TLS_DESC_CALL:           howto manager.      (line  489)
+* BFD_RELOC_386_TLS_DTPMOD32:            howto manager.      (line  485)
+* BFD_RELOC_386_TLS_DTPOFF32:            howto manager.      (line  486)
+* BFD_RELOC_386_TLS_GD:                  howto manager.      (line  480)
+* BFD_RELOC_386_TLS_GOTDESC:             howto manager.      (line  488)
+* BFD_RELOC_386_TLS_GOTIE:               howto manager.      (line  478)
+* BFD_RELOC_386_TLS_IE:                  howto manager.      (line  477)
+* BFD_RELOC_386_TLS_IE_32:               howto manager.      (line  483)
+* BFD_RELOC_386_TLS_LDM:                 howto manager.      (line  481)
+* BFD_RELOC_386_TLS_LDO_32:              howto manager.      (line  482)
+* BFD_RELOC_386_TLS_LE:                  howto manager.      (line  479)
+* BFD_RELOC_386_TLS_LE_32:               howto manager.      (line  484)
+* BFD_RELOC_386_TLS_TPOFF:               howto manager.      (line  476)
+* BFD_RELOC_386_TLS_TPOFF32:             howto manager.      (line  487)
+* BFD_RELOC_390_12:                      howto manager.      (line 1459)
+* BFD_RELOC_390_20:                      howto manager.      (line 1559)
+* BFD_RELOC_390_COPY:                    howto manager.      (line 1468)
+* BFD_RELOC_390_GLOB_DAT:                howto manager.      (line 1471)
+* BFD_RELOC_390_GOT12:                   howto manager.      (line 1462)
+* BFD_RELOC_390_GOT16:                   howto manager.      (line 1483)
+* BFD_RELOC_390_GOT20:                   howto manager.      (line 1560)
+* BFD_RELOC_390_GOT64:                   howto manager.      (line 1501)
+* BFD_RELOC_390_GOTENT:                  howto manager.      (line 1507)
+* BFD_RELOC_390_GOTOFF64:                howto manager.      (line 1510)
+* BFD_RELOC_390_GOTPC:                   howto manager.      (line 1480)
+* BFD_RELOC_390_GOTPCDBL:                howto manager.      (line 1498)
+* BFD_RELOC_390_GOTPLT12:                howto manager.      (line 1513)
+* BFD_RELOC_390_GOTPLT16:                howto manager.      (line 1516)
+* BFD_RELOC_390_GOTPLT20:                howto manager.      (line 1561)
+* BFD_RELOC_390_GOTPLT32:                howto manager.      (line 1519)
+* BFD_RELOC_390_GOTPLT64:                howto manager.      (line 1522)
+* BFD_RELOC_390_GOTPLTENT:               howto manager.      (line 1525)
+* BFD_RELOC_390_JMP_SLOT:                howto manager.      (line 1474)
+* BFD_RELOC_390_PC16DBL:                 howto manager.      (line 1486)
+* BFD_RELOC_390_PC32DBL:                 howto manager.      (line 1492)
+* BFD_RELOC_390_PLT16DBL:                howto manager.      (line 1489)
+* BFD_RELOC_390_PLT32:                   howto manager.      (line 1465)
+* BFD_RELOC_390_PLT32DBL:                howto manager.      (line 1495)
+* BFD_RELOC_390_PLT64:                   howto manager.      (line 1504)
+* BFD_RELOC_390_PLTOFF16:                howto manager.      (line 1528)
+* BFD_RELOC_390_PLTOFF32:                howto manager.      (line 1531)
+* BFD_RELOC_390_PLTOFF64:                howto manager.      (line 1534)
+* BFD_RELOC_390_RELATIVE:                howto manager.      (line 1477)
+* BFD_RELOC_390_TLS_DTPMOD:              howto manager.      (line 1554)
+* BFD_RELOC_390_TLS_DTPOFF:              howto manager.      (line 1555)
+* BFD_RELOC_390_TLS_GD32:                howto manager.      (line 1540)
+* BFD_RELOC_390_TLS_GD64:                howto manager.      (line 1541)
+* BFD_RELOC_390_TLS_GDCALL:              howto manager.      (line 1538)
+* BFD_RELOC_390_TLS_GOTIE12:             howto manager.      (line 1542)
+* BFD_RELOC_390_TLS_GOTIE20:             howto manager.      (line 1562)
+* BFD_RELOC_390_TLS_GOTIE32:             howto manager.      (line 1543)
+* BFD_RELOC_390_TLS_GOTIE64:             howto manager.      (line 1544)
+* BFD_RELOC_390_TLS_IE32:                howto manager.      (line 1547)
+* BFD_RELOC_390_TLS_IE64:                howto manager.      (line 1548)
+* BFD_RELOC_390_TLS_IEENT:               howto manager.      (line 1549)
+* BFD_RELOC_390_TLS_LDCALL:              howto manager.      (line 1539)
+* BFD_RELOC_390_TLS_LDM32:               howto manager.      (line 1545)
+* BFD_RELOC_390_TLS_LDM64:               howto manager.      (line 1546)
+* BFD_RELOC_390_TLS_LDO32:               howto manager.      (line 1552)
+* BFD_RELOC_390_TLS_LDO64:               howto manager.      (line 1553)
+* BFD_RELOC_390_TLS_LE32:                howto manager.      (line 1550)
+* BFD_RELOC_390_TLS_LE64:                howto manager.      (line 1551)
+* BFD_RELOC_390_TLS_LOAD:                howto manager.      (line 1537)
+* BFD_RELOC_390_TLS_TPOFF:               howto manager.      (line 1556)
 * BFD_RELOC_64:                          howto manager.      (line   26)
 * BFD_RELOC_64_PCREL:                    howto manager.      (line   35)
 * BFD_RELOC_64_PLT_PCREL:                howto manager.      (line   60)
@@ -9403,38 +9646,38 @@ BFD Index
 * BFD_RELOC_68K_JMP_SLOT:                howto manager.      (line   75)
 * BFD_RELOC_68K_RELATIVE:                howto manager.      (line   76)
 * BFD_RELOC_8:                           howto manager.      (line   32)
-* BFD_RELOC_860_COPY:                    howto manager.      (line 1826)
-* BFD_RELOC_860_GLOB_DAT:                howto manager.      (line 1827)
-* BFD_RELOC_860_HAGOT:                   howto manager.      (line 1852)
-* BFD_RELOC_860_HAGOTOFF:                howto manager.      (line 1853)
-* BFD_RELOC_860_HAPC:                    howto manager.      (line 1854)
-* BFD_RELOC_860_HIGH:                    howto manager.      (line 1855)
-* BFD_RELOC_860_HIGHADJ:                 howto manager.      (line 1851)
-* BFD_RELOC_860_HIGOT:                   howto manager.      (line 1856)
-* BFD_RELOC_860_HIGOTOFF:                howto manager.      (line 1857)
-* BFD_RELOC_860_JUMP_SLOT:               howto manager.      (line 1828)
-* BFD_RELOC_860_LOGOT0:                  howto manager.      (line 1840)
-* BFD_RELOC_860_LOGOT1:                  howto manager.      (line 1842)
-* BFD_RELOC_860_LOGOTOFF0:               howto manager.      (line 1844)
-* BFD_RELOC_860_LOGOTOFF1:               howto manager.      (line 1846)
-* BFD_RELOC_860_LOGOTOFF2:               howto manager.      (line 1848)
-* BFD_RELOC_860_LOGOTOFF3:               howto manager.      (line 1849)
-* BFD_RELOC_860_LOPC:                    howto manager.      (line 1850)
-* BFD_RELOC_860_LOW0:                    howto manager.      (line 1833)
-* BFD_RELOC_860_LOW1:                    howto manager.      (line 1835)
-* BFD_RELOC_860_LOW2:                    howto manager.      (line 1837)
-* BFD_RELOC_860_LOW3:                    howto manager.      (line 1839)
-* BFD_RELOC_860_PC16:                    howto manager.      (line 1832)
-* BFD_RELOC_860_PC26:                    howto manager.      (line 1830)
-* BFD_RELOC_860_PLT26:                   howto manager.      (line 1831)
-* BFD_RELOC_860_RELATIVE:                howto manager.      (line 1829)
-* BFD_RELOC_860_SPGOT0:                  howto manager.      (line 1841)
-* BFD_RELOC_860_SPGOT1:                  howto manager.      (line 1843)
-* BFD_RELOC_860_SPGOTOFF0:               howto manager.      (line 1845)
-* BFD_RELOC_860_SPGOTOFF1:               howto manager.      (line 1847)
-* BFD_RELOC_860_SPLIT0:                  howto manager.      (line 1834)
-* BFD_RELOC_860_SPLIT1:                  howto manager.      (line 1836)
-* BFD_RELOC_860_SPLIT2:                  howto manager.      (line 1838)
+* BFD_RELOC_860_COPY:                    howto manager.      (line 1904)
+* BFD_RELOC_860_GLOB_DAT:                howto manager.      (line 1905)
+* BFD_RELOC_860_HAGOT:                   howto manager.      (line 1930)
+* BFD_RELOC_860_HAGOTOFF:                howto manager.      (line 1931)
+* BFD_RELOC_860_HAPC:                    howto manager.      (line 1932)
+* BFD_RELOC_860_HIGH:                    howto manager.      (line 1933)
+* BFD_RELOC_860_HIGHADJ:                 howto manager.      (line 1929)
+* BFD_RELOC_860_HIGOT:                   howto manager.      (line 1934)
+* BFD_RELOC_860_HIGOTOFF:                howto manager.      (line 1935)
+* BFD_RELOC_860_JUMP_SLOT:               howto manager.      (line 1906)
+* BFD_RELOC_860_LOGOT0:                  howto manager.      (line 1918)
+* BFD_RELOC_860_LOGOT1:                  howto manager.      (line 1920)
+* BFD_RELOC_860_LOGOTOFF0:               howto manager.      (line 1922)
+* BFD_RELOC_860_LOGOTOFF1:               howto manager.      (line 1924)
+* BFD_RELOC_860_LOGOTOFF2:               howto manager.      (line 1926)
+* BFD_RELOC_860_LOGOTOFF3:               howto manager.      (line 1927)
+* BFD_RELOC_860_LOPC:                    howto manager.      (line 1928)
+* BFD_RELOC_860_LOW0:                    howto manager.      (line 1911)
+* BFD_RELOC_860_LOW1:                    howto manager.      (line 1913)
+* BFD_RELOC_860_LOW2:                    howto manager.      (line 1915)
+* BFD_RELOC_860_LOW3:                    howto manager.      (line 1917)
+* BFD_RELOC_860_PC16:                    howto manager.      (line 1910)
+* BFD_RELOC_860_PC26:                    howto manager.      (line 1908)
+* BFD_RELOC_860_PLT26:                   howto manager.      (line 1909)
+* BFD_RELOC_860_RELATIVE:                howto manager.      (line 1907)
+* BFD_RELOC_860_SPGOT0:                  howto manager.      (line 1919)
+* BFD_RELOC_860_SPGOT1:                  howto manager.      (line 1921)
+* BFD_RELOC_860_SPGOTOFF0:               howto manager.      (line 1923)
+* BFD_RELOC_860_SPGOTOFF1:               howto manager.      (line 1925)
+* BFD_RELOC_860_SPLIT0:                  howto manager.      (line 1912)
+* BFD_RELOC_860_SPLIT1:                  howto manager.      (line 1914)
+* BFD_RELOC_860_SPLIT2:                  howto manager.      (line 1916)
 * BFD_RELOC_8_BASEREL:                   howto manager.      (line   84)
 * BFD_RELOC_8_FFnn:                      howto manager.      (line   88)
 * BFD_RELOC_8_GOT_PCREL:                 howto manager.      (line   53)
@@ -9442,997 +9685,1067 @@ BFD Index
 * BFD_RELOC_8_PCREL:                     howto manager.      (line   40)
 * BFD_RELOC_8_PLT_PCREL:                 howto manager.      (line   64)
 * BFD_RELOC_8_PLTOFF:                    howto manager.      (line   71)
-* BFD_RELOC_ALPHA_BRSGP:                 howto manager.      (line  273)
-* BFD_RELOC_ALPHA_CODEADDR:              howto manager.      (line  264)
-* BFD_RELOC_ALPHA_DTPMOD64:              howto manager.      (line  280)
-* BFD_RELOC_ALPHA_DTPREL16:              howto manager.      (line  285)
-* BFD_RELOC_ALPHA_DTPREL64:              howto manager.      (line  282)
-* BFD_RELOC_ALPHA_DTPREL_HI16:           howto manager.      (line  283)
-* BFD_RELOC_ALPHA_DTPREL_LO16:           howto manager.      (line  284)
-* BFD_RELOC_ALPHA_ELF_LITERAL:           howto manager.      (line  229)
-* BFD_RELOC_ALPHA_GOTDTPREL16:           howto manager.      (line  281)
-* BFD_RELOC_ALPHA_GOTTPREL16:            howto manager.      (line  286)
-* BFD_RELOC_ALPHA_GPDISP:                howto manager.      (line  223)
-* BFD_RELOC_ALPHA_GPDISP_HI16:           howto manager.      (line  209)
-* BFD_RELOC_ALPHA_GPDISP_LO16:           howto manager.      (line  217)
-* BFD_RELOC_ALPHA_GPREL_HI16:            howto manager.      (line  268)
-* BFD_RELOC_ALPHA_GPREL_LO16:            howto manager.      (line  269)
-* BFD_RELOC_ALPHA_HINT:                  howto manager.      (line  255)
-* BFD_RELOC_ALPHA_LINKAGE:               howto manager.      (line  260)
-* BFD_RELOC_ALPHA_LITERAL:               howto manager.      (line  228)
-* BFD_RELOC_ALPHA_LITUSE:                howto manager.      (line  230)
-* BFD_RELOC_ALPHA_TLSGD:                 howto manager.      (line  278)
-* BFD_RELOC_ALPHA_TLSLDM:                howto manager.      (line  279)
-* BFD_RELOC_ALPHA_TPREL16:               howto manager.      (line  290)
-* BFD_RELOC_ALPHA_TPREL64:               howto manager.      (line  287)
-* BFD_RELOC_ALPHA_TPREL_HI16:            howto manager.      (line  288)
-* BFD_RELOC_ALPHA_TPREL_LO16:            howto manager.      (line  289)
-* BFD_RELOC_ARC_B22_PCREL:               howto manager.      (line  871)
-* BFD_RELOC_ARC_B26:                     howto manager.      (line  876)
-* BFD_RELOC_ARM_ADR_IMM:                 howto manager.      (line  764)
-* BFD_RELOC_ARM_ADRL_IMMEDIATE:          howto manager.      (line  751)
-* BFD_RELOC_ARM_ALU_PC_G0:               howto manager.      (line  721)
-* BFD_RELOC_ARM_ALU_PC_G0_NC:            howto manager.      (line  720)
-* BFD_RELOC_ARM_ALU_PC_G1:               howto manager.      (line  723)
-* BFD_RELOC_ARM_ALU_PC_G1_NC:            howto manager.      (line  722)
-* BFD_RELOC_ARM_ALU_PC_G2:               howto manager.      (line  724)
-* BFD_RELOC_ARM_ALU_SB_G0:               howto manager.      (line  735)
-* BFD_RELOC_ARM_ALU_SB_G0_NC:            howto manager.      (line  734)
-* BFD_RELOC_ARM_ALU_SB_G1:               howto manager.      (line  737)
-* BFD_RELOC_ARM_ALU_SB_G1_NC:            howto manager.      (line  736)
-* BFD_RELOC_ARM_ALU_SB_G2:               howto manager.      (line  738)
-* BFD_RELOC_ARM_CP_OFF_IMM:              howto manager.      (line  760)
-* BFD_RELOC_ARM_CP_OFF_IMM_S2:           howto manager.      (line  761)
-* BFD_RELOC_ARM_GLOB_DAT:                howto manager.      (line  702)
-* BFD_RELOC_ARM_GOT32:                   howto manager.      (line  703)
-* BFD_RELOC_ARM_GOTOFF:                  howto manager.      (line  706)
-* BFD_RELOC_ARM_GOTPC:                   howto manager.      (line  707)
-* BFD_RELOC_ARM_HWLITERAL:               howto manager.      (line  771)
-* BFD_RELOC_ARM_IMMEDIATE:               howto manager.      (line  750)
-* BFD_RELOC_ARM_IN_POOL:                 howto manager.      (line  767)
-* BFD_RELOC_ARM_JUMP_SLOT:               howto manager.      (line  701)
-* BFD_RELOC_ARM_LDC_PC_G0:               howto manager.      (line  731)
-* BFD_RELOC_ARM_LDC_PC_G1:               howto manager.      (line  732)
-* BFD_RELOC_ARM_LDC_PC_G2:               howto manager.      (line  733)
-* BFD_RELOC_ARM_LDC_SB_G0:               howto manager.      (line  745)
-* BFD_RELOC_ARM_LDC_SB_G1:               howto manager.      (line  746)
-* BFD_RELOC_ARM_LDC_SB_G2:               howto manager.      (line  747)
-* BFD_RELOC_ARM_LDR_IMM:                 howto manager.      (line  765)
-* BFD_RELOC_ARM_LDR_PC_G0:               howto manager.      (line  725)
-* BFD_RELOC_ARM_LDR_PC_G1:               howto manager.      (line  726)
-* BFD_RELOC_ARM_LDR_PC_G2:               howto manager.      (line  727)
-* BFD_RELOC_ARM_LDR_SB_G0:               howto manager.      (line  739)
-* BFD_RELOC_ARM_LDR_SB_G1:               howto manager.      (line  740)
-* BFD_RELOC_ARM_LDR_SB_G2:               howto manager.      (line  741)
-* BFD_RELOC_ARM_LDRS_PC_G0:              howto manager.      (line  728)
-* BFD_RELOC_ARM_LDRS_PC_G1:              howto manager.      (line  729)
-* BFD_RELOC_ARM_LDRS_PC_G2:              howto manager.      (line  730)
-* BFD_RELOC_ARM_LDRS_SB_G0:              howto manager.      (line  742)
-* BFD_RELOC_ARM_LDRS_SB_G1:              howto manager.      (line  743)
-* BFD_RELOC_ARM_LDRS_SB_G2:              howto manager.      (line  744)
-* BFD_RELOC_ARM_LITERAL:                 howto manager.      (line  766)
-* BFD_RELOC_ARM_MOVT:                    howto manager.      (line  692)
-* BFD_RELOC_ARM_MOVT_PCREL:              howto manager.      (line  694)
-* BFD_RELOC_ARM_MOVW:                    howto manager.      (line  691)
-* BFD_RELOC_ARM_MOVW_PCREL:              howto manager.      (line  693)
-* BFD_RELOC_ARM_MULTI:                   howto manager.      (line  759)
-* BFD_RELOC_ARM_OFFSET_IMM:              howto manager.      (line  665)
-* BFD_RELOC_ARM_OFFSET_IMM8:             howto manager.      (line  768)
-* BFD_RELOC_ARM_PCREL_BLX:               howto manager.      (line  636)
-* BFD_RELOC_ARM_PCREL_BRANCH:            howto manager.      (line  632)
-* BFD_RELOC_ARM_PCREL_CALL:              howto manager.      (line  646)
-* BFD_RELOC_ARM_PCREL_JUMP:              howto manager.      (line  650)
-* BFD_RELOC_ARM_PLT32:                   howto manager.      (line  704)
-* BFD_RELOC_ARM_PREL31:                  howto manager.      (line  688)
-* BFD_RELOC_ARM_RELATIVE:                howto manager.      (line  705)
-* BFD_RELOC_ARM_ROSEGREL32:              howto manager.      (line  677)
-* BFD_RELOC_ARM_SBREL32:                 howto manager.      (line  680)
-* BFD_RELOC_ARM_SHIFT_IMM:               howto manager.      (line  756)
-* BFD_RELOC_ARM_SMC:                     howto manager.      (line  757)
-* BFD_RELOC_ARM_SWI:                     howto manager.      (line  758)
-* BFD_RELOC_ARM_T32_ADD_IMM:             howto manager.      (line  753)
-* BFD_RELOC_ARM_T32_ADD_PC12:            howto manager.      (line  755)
-* BFD_RELOC_ARM_T32_CP_OFF_IMM:          howto manager.      (line  762)
-* BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:       howto manager.      (line  763)
-* BFD_RELOC_ARM_T32_IMM12:               howto manager.      (line  754)
-* BFD_RELOC_ARM_T32_IMMEDIATE:           howto manager.      (line  752)
-* BFD_RELOC_ARM_T32_OFFSET_IMM:          howto manager.      (line  770)
-* BFD_RELOC_ARM_T32_OFFSET_U8:           howto manager.      (line  769)
-* BFD_RELOC_ARM_TARGET1:                 howto manager.      (line  673)
-* BFD_RELOC_ARM_TARGET2:                 howto manager.      (line  683)
-* BFD_RELOC_ARM_THUMB_ADD:               howto manager.      (line  772)
-* BFD_RELOC_ARM_THUMB_IMM:               howto manager.      (line  773)
-* BFD_RELOC_ARM_THUMB_MOVT:              howto manager.      (line  696)
-* BFD_RELOC_ARM_THUMB_MOVT_PCREL:        howto manager.      (line  698)
-* BFD_RELOC_ARM_THUMB_MOVW:              howto manager.      (line  695)
-* BFD_RELOC_ARM_THUMB_MOVW_PCREL:        howto manager.      (line  697)
-* BFD_RELOC_ARM_THUMB_OFFSET:            howto manager.      (line  669)
-* BFD_RELOC_ARM_THUMB_SHIFT:             howto manager.      (line  774)
-* BFD_RELOC_ARM_TLS_DTPMOD32:            howto manager.      (line  714)
-* BFD_RELOC_ARM_TLS_DTPOFF32:            howto manager.      (line  713)
-* BFD_RELOC_ARM_TLS_GD32:                howto manager.      (line  710)
-* BFD_RELOC_ARM_TLS_IE32:                howto manager.      (line  716)
-* BFD_RELOC_ARM_TLS_LDM32:               howto manager.      (line  712)
-* BFD_RELOC_ARM_TLS_LDO32:               howto manager.      (line  711)
-* BFD_RELOC_ARM_TLS_LE32:                howto manager.      (line  717)
-* BFD_RELOC_ARM_TLS_TPOFF32:             howto manager.      (line  715)
-* BFD_RELOC_AVR_13_PCREL:                howto manager.      (line 1314)
-* BFD_RELOC_AVR_16_PM:                   howto manager.      (line 1318)
-* BFD_RELOC_AVR_6:                       howto manager.      (line 1405)
-* BFD_RELOC_AVR_6_ADIW:                  howto manager.      (line 1409)
-* BFD_RELOC_AVR_7_PCREL:                 howto manager.      (line 1310)
-* BFD_RELOC_AVR_CALL:                    howto manager.      (line 1397)
-* BFD_RELOC_AVR_HH8_LDI:                 howto manager.      (line 1330)
-* BFD_RELOC_AVR_HH8_LDI_NEG:             howto manager.      (line 1349)
-* BFD_RELOC_AVR_HH8_LDI_PM:              howto manager.      (line 1378)
-* BFD_RELOC_AVR_HH8_LDI_PM_NEG:          howto manager.      (line 1392)
-* BFD_RELOC_AVR_HI8_LDI:                 howto manager.      (line 1326)
-* BFD_RELOC_AVR_HI8_LDI_GS:              howto manager.      (line 1372)
-* BFD_RELOC_AVR_HI8_LDI_NEG:             howto manager.      (line 1344)
-* BFD_RELOC_AVR_HI8_LDI_PM:              howto manager.      (line 1368)
-* BFD_RELOC_AVR_HI8_LDI_PM_NEG:          howto manager.      (line 1387)
-* BFD_RELOC_AVR_LDI:                     howto manager.      (line 1401)
-* BFD_RELOC_AVR_LO8_LDI:                 howto manager.      (line 1322)
-* BFD_RELOC_AVR_LO8_LDI_GS:              howto manager.      (line 1362)
-* BFD_RELOC_AVR_LO8_LDI_NEG:             howto manager.      (line 1339)
-* BFD_RELOC_AVR_LO8_LDI_PM:              howto manager.      (line 1358)
-* BFD_RELOC_AVR_LO8_LDI_PM_NEG:          howto manager.      (line 1383)
-* BFD_RELOC_AVR_MS8_LDI:                 howto manager.      (line 1335)
-* BFD_RELOC_AVR_MS8_LDI_NEG:             howto manager.      (line 1354)
-* BFD_RELOC_BFIN_10_PCREL:               howto manager.      (line  896)
-* BFD_RELOC_BFIN_11_PCREL:               howto manager.      (line  899)
-* BFD_RELOC_BFIN_12_PCREL_JUMP:          howto manager.      (line  902)
-* BFD_RELOC_BFIN_12_PCREL_JUMP_S:        howto manager.      (line  905)
-* BFD_RELOC_BFIN_16_HIGH:                howto manager.      (line  884)
-* BFD_RELOC_BFIN_16_IMM:                 howto manager.      (line  881)
-* BFD_RELOC_BFIN_16_LOW:                 howto manager.      (line  893)
-* BFD_RELOC_BFIN_24_PCREL_CALL_X:        howto manager.      (line  908)
-* BFD_RELOC_BFIN_24_PCREL_JUMP_L:        howto manager.      (line  911)
-* BFD_RELOC_BFIN_4_PCREL:                howto manager.      (line  887)
-* BFD_RELOC_BFIN_5_PCREL:                howto manager.      (line  890)
-* BFD_RELOC_BFIN_FUNCDESC:               howto manager.      (line  917)
-* BFD_RELOC_BFIN_FUNCDESC_GOT17M4:       howto manager.      (line  918)
-* BFD_RELOC_BFIN_FUNCDESC_GOTHI:         howto manager.      (line  919)
-* BFD_RELOC_BFIN_FUNCDESC_GOTLO:         howto manager.      (line  920)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4:    howto manager.      (line  922)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI:      howto manager.      (line  923)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO:      howto manager.      (line  924)
-* BFD_RELOC_BFIN_FUNCDESC_VALUE:         howto manager.      (line  921)
-* BFD_RELOC_BFIN_GOT:                    howto manager.      (line  930)
-* BFD_RELOC_BFIN_GOT17M4:                howto manager.      (line  914)
-* BFD_RELOC_BFIN_GOTHI:                  howto manager.      (line  915)
-* BFD_RELOC_BFIN_GOTLO:                  howto manager.      (line  916)
-* BFD_RELOC_BFIN_GOTOFF17M4:             howto manager.      (line  925)
-* BFD_RELOC_BFIN_GOTOFFHI:               howto manager.      (line  926)
-* BFD_RELOC_BFIN_GOTOFFLO:               howto manager.      (line  927)
-* BFD_RELOC_BFIN_PLTPC:                  howto manager.      (line  933)
+* BFD_RELOC_ALPHA_BRSGP:                 howto manager.      (line  280)
+* BFD_RELOC_ALPHA_CODEADDR:              howto manager.      (line  271)
+* BFD_RELOC_ALPHA_DTPMOD64:              howto manager.      (line  287)
+* BFD_RELOC_ALPHA_DTPREL16:              howto manager.      (line  292)
+* BFD_RELOC_ALPHA_DTPREL64:              howto manager.      (line  289)
+* BFD_RELOC_ALPHA_DTPREL_HI16:           howto manager.      (line  290)
+* BFD_RELOC_ALPHA_DTPREL_LO16:           howto manager.      (line  291)
+* BFD_RELOC_ALPHA_ELF_LITERAL:           howto manager.      (line  236)
+* BFD_RELOC_ALPHA_GOTDTPREL16:           howto manager.      (line  288)
+* BFD_RELOC_ALPHA_GOTTPREL16:            howto manager.      (line  293)
+* BFD_RELOC_ALPHA_GPDISP:                howto manager.      (line  230)
+* BFD_RELOC_ALPHA_GPDISP_HI16:           howto manager.      (line  216)
+* BFD_RELOC_ALPHA_GPDISP_LO16:           howto manager.      (line  224)
+* BFD_RELOC_ALPHA_GPREL_HI16:            howto manager.      (line  275)
+* BFD_RELOC_ALPHA_GPREL_LO16:            howto manager.      (line  276)
+* BFD_RELOC_ALPHA_HINT:                  howto manager.      (line  262)
+* BFD_RELOC_ALPHA_LINKAGE:               howto manager.      (line  267)
+* BFD_RELOC_ALPHA_LITERAL:               howto manager.      (line  235)
+* BFD_RELOC_ALPHA_LITUSE:                howto manager.      (line  237)
+* BFD_RELOC_ALPHA_TLSGD:                 howto manager.      (line  285)
+* BFD_RELOC_ALPHA_TLSLDM:                howto manager.      (line  286)
+* BFD_RELOC_ALPHA_TPREL16:               howto manager.      (line  297)
+* BFD_RELOC_ALPHA_TPREL64:               howto manager.      (line  294)
+* BFD_RELOC_ALPHA_TPREL_HI16:            howto manager.      (line  295)
+* BFD_RELOC_ALPHA_TPREL_LO16:            howto manager.      (line  296)
+* BFD_RELOC_ARC_B22_PCREL:               howto manager.      (line  895)
+* BFD_RELOC_ARC_B26:                     howto manager.      (line  900)
+* BFD_RELOC_ARM_ADR_IMM:                 howto manager.      (line  788)
+* BFD_RELOC_ARM_ADRL_IMMEDIATE:          howto manager.      (line  775)
+* BFD_RELOC_ARM_ALU_PC_G0:               howto manager.      (line  742)
+* BFD_RELOC_ARM_ALU_PC_G0_NC:            howto manager.      (line  741)
+* BFD_RELOC_ARM_ALU_PC_G1:               howto manager.      (line  744)
+* BFD_RELOC_ARM_ALU_PC_G1_NC:            howto manager.      (line  743)
+* BFD_RELOC_ARM_ALU_PC_G2:               howto manager.      (line  745)
+* BFD_RELOC_ARM_ALU_SB_G0:               howto manager.      (line  756)
+* BFD_RELOC_ARM_ALU_SB_G0_NC:            howto manager.      (line  755)
+* BFD_RELOC_ARM_ALU_SB_G1:               howto manager.      (line  758)
+* BFD_RELOC_ARM_ALU_SB_G1_NC:            howto manager.      (line  757)
+* BFD_RELOC_ARM_ALU_SB_G2:               howto manager.      (line  759)
+* BFD_RELOC_ARM_CP_OFF_IMM:              howto manager.      (line  784)
+* BFD_RELOC_ARM_CP_OFF_IMM_S2:           howto manager.      (line  785)
+* BFD_RELOC_ARM_GLOB_DAT:                howto manager.      (line  723)
+* BFD_RELOC_ARM_GOT32:                   howto manager.      (line  724)
+* BFD_RELOC_ARM_GOTOFF:                  howto manager.      (line  727)
+* BFD_RELOC_ARM_GOTPC:                   howto manager.      (line  728)
+* BFD_RELOC_ARM_HWLITERAL:               howto manager.      (line  795)
+* BFD_RELOC_ARM_IMMEDIATE:               howto manager.      (line  774)
+* BFD_RELOC_ARM_IN_POOL:                 howto manager.      (line  791)
+* BFD_RELOC_ARM_JUMP_SLOT:               howto manager.      (line  722)
+* BFD_RELOC_ARM_LDC_PC_G0:               howto manager.      (line  752)
+* BFD_RELOC_ARM_LDC_PC_G1:               howto manager.      (line  753)
+* BFD_RELOC_ARM_LDC_PC_G2:               howto manager.      (line  754)
+* BFD_RELOC_ARM_LDC_SB_G0:               howto manager.      (line  766)
+* BFD_RELOC_ARM_LDC_SB_G1:               howto manager.      (line  767)
+* BFD_RELOC_ARM_LDC_SB_G2:               howto manager.      (line  768)
+* BFD_RELOC_ARM_LDR_IMM:                 howto manager.      (line  789)
+* BFD_RELOC_ARM_LDR_PC_G0:               howto manager.      (line  746)
+* BFD_RELOC_ARM_LDR_PC_G1:               howto manager.      (line  747)
+* BFD_RELOC_ARM_LDR_PC_G2:               howto manager.      (line  748)
+* BFD_RELOC_ARM_LDR_SB_G0:               howto manager.      (line  760)
+* BFD_RELOC_ARM_LDR_SB_G1:               howto manager.      (line  761)
+* BFD_RELOC_ARM_LDR_SB_G2:               howto manager.      (line  762)
+* BFD_RELOC_ARM_LDRS_PC_G0:              howto manager.      (line  749)
+* BFD_RELOC_ARM_LDRS_PC_G1:              howto manager.      (line  750)
+* BFD_RELOC_ARM_LDRS_PC_G2:              howto manager.      (line  751)
+* BFD_RELOC_ARM_LDRS_SB_G0:              howto manager.      (line  763)
+* BFD_RELOC_ARM_LDRS_SB_G1:              howto manager.      (line  764)
+* BFD_RELOC_ARM_LDRS_SB_G2:              howto manager.      (line  765)
+* BFD_RELOC_ARM_LITERAL:                 howto manager.      (line  790)
+* BFD_RELOC_ARM_MOVT:                    howto manager.      (line  713)
+* BFD_RELOC_ARM_MOVT_PCREL:              howto manager.      (line  715)
+* BFD_RELOC_ARM_MOVW:                    howto manager.      (line  712)
+* BFD_RELOC_ARM_MOVW_PCREL:              howto manager.      (line  714)
+* BFD_RELOC_ARM_MULTI:                   howto manager.      (line  783)
+* BFD_RELOC_ARM_OFFSET_IMM:              howto manager.      (line  686)
+* BFD_RELOC_ARM_OFFSET_IMM8:             howto manager.      (line  792)
+* BFD_RELOC_ARM_PCREL_BLX:               howto manager.      (line  657)
+* BFD_RELOC_ARM_PCREL_BRANCH:            howto manager.      (line  653)
+* BFD_RELOC_ARM_PCREL_CALL:              howto manager.      (line  667)
+* BFD_RELOC_ARM_PCREL_JUMP:              howto manager.      (line  671)
+* BFD_RELOC_ARM_PLT32:                   howto manager.      (line  725)
+* BFD_RELOC_ARM_PREL31:                  howto manager.      (line  709)
+* BFD_RELOC_ARM_RELATIVE:                howto manager.      (line  726)
+* BFD_RELOC_ARM_ROSEGREL32:              howto manager.      (line  698)
+* BFD_RELOC_ARM_SBREL32:                 howto manager.      (line  701)
+* BFD_RELOC_ARM_SHIFT_IMM:               howto manager.      (line  780)
+* BFD_RELOC_ARM_SMC:                     howto manager.      (line  781)
+* BFD_RELOC_ARM_SWI:                     howto manager.      (line  782)
+* BFD_RELOC_ARM_T32_ADD_IMM:             howto manager.      (line  777)
+* BFD_RELOC_ARM_T32_ADD_PC12:            howto manager.      (line  779)
+* BFD_RELOC_ARM_T32_CP_OFF_IMM:          howto manager.      (line  786)
+* BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:       howto manager.      (line  787)
+* BFD_RELOC_ARM_T32_IMM12:               howto manager.      (line  778)
+* BFD_RELOC_ARM_T32_IMMEDIATE:           howto manager.      (line  776)
+* BFD_RELOC_ARM_T32_OFFSET_IMM:          howto manager.      (line  794)
+* BFD_RELOC_ARM_T32_OFFSET_U8:           howto manager.      (line  793)
+* BFD_RELOC_ARM_TARGET1:                 howto manager.      (line  694)
+* BFD_RELOC_ARM_TARGET2:                 howto manager.      (line  704)
+* BFD_RELOC_ARM_THUMB_ADD:               howto manager.      (line  796)
+* BFD_RELOC_ARM_THUMB_IMM:               howto manager.      (line  797)
+* BFD_RELOC_ARM_THUMB_MOVT:              howto manager.      (line  717)
+* BFD_RELOC_ARM_THUMB_MOVT_PCREL:        howto manager.      (line  719)
+* BFD_RELOC_ARM_THUMB_MOVW:              howto manager.      (line  716)
+* BFD_RELOC_ARM_THUMB_MOVW_PCREL:        howto manager.      (line  718)
+* BFD_RELOC_ARM_THUMB_OFFSET:            howto manager.      (line  690)
+* BFD_RELOC_ARM_THUMB_SHIFT:             howto manager.      (line  798)
+* BFD_RELOC_ARM_TLS_DTPMOD32:            howto manager.      (line  735)
+* BFD_RELOC_ARM_TLS_DTPOFF32:            howto manager.      (line  734)
+* BFD_RELOC_ARM_TLS_GD32:                howto manager.      (line  731)
+* BFD_RELOC_ARM_TLS_IE32:                howto manager.      (line  737)
+* BFD_RELOC_ARM_TLS_LDM32:               howto manager.      (line  733)
+* BFD_RELOC_ARM_TLS_LDO32:               howto manager.      (line  732)
+* BFD_RELOC_ARM_TLS_LE32:                howto manager.      (line  738)
+* BFD_RELOC_ARM_TLS_TPOFF32:             howto manager.      (line  736)
+* BFD_RELOC_ARM_V4BX:                    howto manager.      (line  771)
+* BFD_RELOC_AVR_13_PCREL:                howto manager.      (line 1360)
+* BFD_RELOC_AVR_16_PM:                   howto manager.      (line 1364)
+* BFD_RELOC_AVR_6:                       howto manager.      (line 1451)
+* BFD_RELOC_AVR_6_ADIW:                  howto manager.      (line 1455)
+* BFD_RELOC_AVR_7_PCREL:                 howto manager.      (line 1356)
+* BFD_RELOC_AVR_CALL:                    howto manager.      (line 1443)
+* BFD_RELOC_AVR_HH8_LDI:                 howto manager.      (line 1376)
+* BFD_RELOC_AVR_HH8_LDI_NEG:             howto manager.      (line 1395)
+* BFD_RELOC_AVR_HH8_LDI_PM:              howto manager.      (line 1424)
+* BFD_RELOC_AVR_HH8_LDI_PM_NEG:          howto manager.      (line 1438)
+* BFD_RELOC_AVR_HI8_LDI:                 howto manager.      (line 1372)
+* BFD_RELOC_AVR_HI8_LDI_GS:              howto manager.      (line 1418)
+* BFD_RELOC_AVR_HI8_LDI_NEG:             howto manager.      (line 1390)
+* BFD_RELOC_AVR_HI8_LDI_PM:              howto manager.      (line 1414)
+* BFD_RELOC_AVR_HI8_LDI_PM_NEG:          howto manager.      (line 1433)
+* BFD_RELOC_AVR_LDI:                     howto manager.      (line 1447)
+* BFD_RELOC_AVR_LO8_LDI:                 howto manager.      (line 1368)
+* BFD_RELOC_AVR_LO8_LDI_GS:              howto manager.      (line 1408)
+* BFD_RELOC_AVR_LO8_LDI_NEG:             howto manager.      (line 1385)
+* BFD_RELOC_AVR_LO8_LDI_PM:              howto manager.      (line 1404)
+* BFD_RELOC_AVR_LO8_LDI_PM_NEG:          howto manager.      (line 1429)
+* BFD_RELOC_AVR_MS8_LDI:                 howto manager.      (line 1381)
+* BFD_RELOC_AVR_MS8_LDI_NEG:             howto manager.      (line 1400)
+* BFD_RELOC_BFIN_10_PCREL:               howto manager.      (line  920)
+* BFD_RELOC_BFIN_11_PCREL:               howto manager.      (line  923)
+* BFD_RELOC_BFIN_12_PCREL_JUMP:          howto manager.      (line  926)
+* BFD_RELOC_BFIN_12_PCREL_JUMP_S:        howto manager.      (line  929)
+* BFD_RELOC_BFIN_16_HIGH:                howto manager.      (line  908)
+* BFD_RELOC_BFIN_16_IMM:                 howto manager.      (line  905)
+* BFD_RELOC_BFIN_16_LOW:                 howto manager.      (line  917)
+* BFD_RELOC_BFIN_24_PCREL_CALL_X:        howto manager.      (line  932)
+* BFD_RELOC_BFIN_24_PCREL_JUMP_L:        howto manager.      (line  935)
+* BFD_RELOC_BFIN_4_PCREL:                howto manager.      (line  911)
+* BFD_RELOC_BFIN_5_PCREL:                howto manager.      (line  914)
+* BFD_RELOC_BFIN_FUNCDESC:               howto manager.      (line  941)
+* BFD_RELOC_BFIN_FUNCDESC_GOT17M4:       howto manager.      (line  942)
+* BFD_RELOC_BFIN_FUNCDESC_GOTHI:         howto manager.      (line  943)
+* BFD_RELOC_BFIN_FUNCDESC_GOTLO:         howto manager.      (line  944)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4:    howto manager.      (line  946)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI:      howto manager.      (line  947)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO:      howto manager.      (line  948)
+* BFD_RELOC_BFIN_FUNCDESC_VALUE:         howto manager.      (line  945)
+* BFD_RELOC_BFIN_GOT:                    howto manager.      (line  954)
+* BFD_RELOC_BFIN_GOT17M4:                howto manager.      (line  938)
+* BFD_RELOC_BFIN_GOTHI:                  howto manager.      (line  939)
+* BFD_RELOC_BFIN_GOTLO:                  howto manager.      (line  940)
+* BFD_RELOC_BFIN_GOTOFF17M4:             howto manager.      (line  949)
+* BFD_RELOC_BFIN_GOTOFFHI:               howto manager.      (line  950)
+* BFD_RELOC_BFIN_GOTOFFLO:               howto manager.      (line  951)
+* BFD_RELOC_BFIN_PLTPC:                  howto manager.      (line  957)
 * bfd_reloc_code_type:                   howto manager.      (line   10)
-* BFD_RELOC_CRIS_16_GOT:                 howto manager.      (line 1807)
-* BFD_RELOC_CRIS_16_GOTPLT:              howto manager.      (line 1813)
-* BFD_RELOC_CRIS_32_GOT:                 howto manager.      (line 1804)
-* BFD_RELOC_CRIS_32_GOTPLT:              howto manager.      (line 1810)
-* BFD_RELOC_CRIS_32_GOTREL:              howto manager.      (line 1816)
-* BFD_RELOC_CRIS_32_PLT_GOTREL:          howto manager.      (line 1819)
-* BFD_RELOC_CRIS_32_PLT_PCREL:           howto manager.      (line 1822)
-* BFD_RELOC_CRIS_BDISP8:                 howto manager.      (line 1785)
-* BFD_RELOC_CRIS_COPY:                   howto manager.      (line 1798)
-* BFD_RELOC_CRIS_GLOB_DAT:               howto manager.      (line 1799)
-* BFD_RELOC_CRIS_JUMP_SLOT:              howto manager.      (line 1800)
-* BFD_RELOC_CRIS_LAPCQ_OFFSET:           howto manager.      (line 1793)
-* BFD_RELOC_CRIS_RELATIVE:               howto manager.      (line 1801)
-* BFD_RELOC_CRIS_SIGNED_16:              howto manager.      (line 1791)
-* BFD_RELOC_CRIS_SIGNED_6:               howto manager.      (line 1787)
-* BFD_RELOC_CRIS_SIGNED_8:               howto manager.      (line 1789)
-* BFD_RELOC_CRIS_UNSIGNED_16:            howto manager.      (line 1792)
-* BFD_RELOC_CRIS_UNSIGNED_4:             howto manager.      (line 1794)
-* BFD_RELOC_CRIS_UNSIGNED_5:             howto manager.      (line 1786)
-* BFD_RELOC_CRIS_UNSIGNED_6:             howto manager.      (line 1788)
-* BFD_RELOC_CRIS_UNSIGNED_8:             howto manager.      (line 1790)
-* BFD_RELOC_CRX_ABS16:                   howto manager.      (line 1773)
-* BFD_RELOC_CRX_ABS32:                   howto manager.      (line 1774)
-* BFD_RELOC_CRX_IMM16:                   howto manager.      (line 1778)
-* BFD_RELOC_CRX_IMM32:                   howto manager.      (line 1779)
-* BFD_RELOC_CRX_NUM16:                   howto manager.      (line 1776)
-* BFD_RELOC_CRX_NUM32:                   howto manager.      (line 1777)
-* BFD_RELOC_CRX_NUM8:                    howto manager.      (line 1775)
-* BFD_RELOC_CRX_REGREL12:                howto manager.      (line 1769)
-* BFD_RELOC_CRX_REGREL22:                howto manager.      (line 1770)
-* BFD_RELOC_CRX_REGREL28:                howto manager.      (line 1771)
-* BFD_RELOC_CRX_REGREL32:                howto manager.      (line 1772)
-* BFD_RELOC_CRX_REL16:                   howto manager.      (line 1766)
-* BFD_RELOC_CRX_REL24:                   howto manager.      (line 1767)
-* BFD_RELOC_CRX_REL32:                   howto manager.      (line 1768)
-* BFD_RELOC_CRX_REL4:                    howto manager.      (line 1763)
-* BFD_RELOC_CRX_REL8:                    howto manager.      (line 1764)
-* BFD_RELOC_CRX_REL8_CMP:                howto manager.      (line 1765)
-* BFD_RELOC_CRX_SWITCH16:                howto manager.      (line 1781)
-* BFD_RELOC_CRX_SWITCH32:                howto manager.      (line 1782)
-* BFD_RELOC_CRX_SWITCH8:                 howto manager.      (line 1780)
-* BFD_RELOC_CTOR:                        howto manager.      (line  626)
-* BFD_RELOC_D10V_10_PCREL_L:             howto manager.      (line 1000)
-* BFD_RELOC_D10V_10_PCREL_R:             howto manager.      (line  996)
-* BFD_RELOC_D10V_18:                     howto manager.      (line 1005)
-* BFD_RELOC_D10V_18_PCREL:               howto manager.      (line 1008)
-* BFD_RELOC_D30V_15:                     howto manager.      (line 1023)
-* BFD_RELOC_D30V_15_PCREL:               howto manager.      (line 1027)
-* BFD_RELOC_D30V_15_PCREL_R:             howto manager.      (line 1031)
-* BFD_RELOC_D30V_21:                     howto manager.      (line 1036)
-* BFD_RELOC_D30V_21_PCREL:               howto manager.      (line 1040)
-* BFD_RELOC_D30V_21_PCREL_R:             howto manager.      (line 1044)
-* BFD_RELOC_D30V_32:                     howto manager.      (line 1049)
-* BFD_RELOC_D30V_32_PCREL:               howto manager.      (line 1052)
-* BFD_RELOC_D30V_6:                      howto manager.      (line 1011)
-* BFD_RELOC_D30V_9_PCREL:                howto manager.      (line 1014)
-* BFD_RELOC_D30V_9_PCREL_R:              howto manager.      (line 1018)
-* BFD_RELOC_DLX_HI16_S:                  howto manager.      (line 1055)
-* BFD_RELOC_DLX_JMP26:                   howto manager.      (line 1061)
-* BFD_RELOC_DLX_LO16:                    howto manager.      (line 1058)
-* BFD_RELOC_FR30_10_IN_8:                howto manager.      (line 1240)
-* BFD_RELOC_FR30_12_PCREL:               howto manager.      (line 1248)
-* BFD_RELOC_FR30_20:                     howto manager.      (line 1224)
-* BFD_RELOC_FR30_48:                     howto manager.      (line 1221)
-* BFD_RELOC_FR30_6_IN_4:                 howto manager.      (line 1228)
-* BFD_RELOC_FR30_8_IN_8:                 howto manager.      (line 1232)
-* BFD_RELOC_FR30_9_IN_8:                 howto manager.      (line 1236)
-* BFD_RELOC_FR30_9_PCREL:                howto manager.      (line 1244)
-* BFD_RELOC_FRV_FUNCDESC:                howto manager.      (line  391)
-* BFD_RELOC_FRV_FUNCDESC_GOT12:          howto manager.      (line  392)
-* BFD_RELOC_FRV_FUNCDESC_GOTHI:          howto manager.      (line  393)
-* BFD_RELOC_FRV_FUNCDESC_GOTLO:          howto manager.      (line  394)
-* BFD_RELOC_FRV_FUNCDESC_GOTOFF12:       howto manager.      (line  396)
-* BFD_RELOC_FRV_FUNCDESC_GOTOFFHI:       howto manager.      (line  397)
-* BFD_RELOC_FRV_FUNCDESC_GOTOFFLO:       howto manager.      (line  398)
-* BFD_RELOC_FRV_FUNCDESC_VALUE:          howto manager.      (line  395)
-* BFD_RELOC_FRV_GETTLSOFF:               howto manager.      (line  402)
-* BFD_RELOC_FRV_GETTLSOFF_RELAX:         howto manager.      (line  415)
-* BFD_RELOC_FRV_GOT12:                   howto manager.      (line  388)
-* BFD_RELOC_FRV_GOTHI:                   howto manager.      (line  389)
-* BFD_RELOC_FRV_GOTLO:                   howto manager.      (line  390)
-* BFD_RELOC_FRV_GOTOFF12:                howto manager.      (line  399)
-* BFD_RELOC_FRV_GOTOFFHI:                howto manager.      (line  400)
-* BFD_RELOC_FRV_GOTOFFLO:                howto manager.      (line  401)
-* BFD_RELOC_FRV_GOTTLSDESC12:            howto manager.      (line  404)
-* BFD_RELOC_FRV_GOTTLSDESCHI:            howto manager.      (line  405)
-* BFD_RELOC_FRV_GOTTLSDESCLO:            howto manager.      (line  406)
-* BFD_RELOC_FRV_GOTTLSOFF12:             howto manager.      (line  410)
-* BFD_RELOC_FRV_GOTTLSOFFHI:             howto manager.      (line  411)
-* BFD_RELOC_FRV_GOTTLSOFFLO:             howto manager.      (line  412)
-* BFD_RELOC_FRV_GPREL12:                 howto manager.      (line  383)
-* BFD_RELOC_FRV_GPREL32:                 howto manager.      (line  385)
-* BFD_RELOC_FRV_GPRELHI:                 howto manager.      (line  386)
-* BFD_RELOC_FRV_GPRELLO:                 howto manager.      (line  387)
-* BFD_RELOC_FRV_GPRELU12:                howto manager.      (line  384)
-* BFD_RELOC_FRV_HI16:                    howto manager.      (line  382)
-* BFD_RELOC_FRV_LABEL16:                 howto manager.      (line  379)
-* BFD_RELOC_FRV_LABEL24:                 howto manager.      (line  380)
-* BFD_RELOC_FRV_LO16:                    howto manager.      (line  381)
-* BFD_RELOC_FRV_TLSDESC_RELAX:           howto manager.      (line  414)
-* BFD_RELOC_FRV_TLSDESC_VALUE:           howto manager.      (line  403)
-* BFD_RELOC_FRV_TLSMOFF:                 howto manager.      (line  417)
-* BFD_RELOC_FRV_TLSMOFF12:               howto manager.      (line  407)
-* BFD_RELOC_FRV_TLSMOFFHI:               howto manager.      (line  408)
-* BFD_RELOC_FRV_TLSMOFFLO:               howto manager.      (line  409)
-* BFD_RELOC_FRV_TLSOFF:                  howto manager.      (line  413)
-* BFD_RELOC_FRV_TLSOFF_RELAX:            howto manager.      (line  416)
+* BFD_RELOC_CR16_ABS20:                  howto manager.      (line 1821)
+* BFD_RELOC_CR16_ABS24:                  howto manager.      (line 1822)
+* BFD_RELOC_CR16_DISP16:                 howto manager.      (line 1832)
+* BFD_RELOC_CR16_DISP20:                 howto manager.      (line 1833)
+* BFD_RELOC_CR16_DISP24:                 howto manager.      (line 1834)
+* BFD_RELOC_CR16_DISP24a:                howto manager.      (line 1835)
+* BFD_RELOC_CR16_DISP4:                  howto manager.      (line 1830)
+* BFD_RELOC_CR16_DISP8:                  howto manager.      (line 1831)
+* BFD_RELOC_CR16_IMM16:                  howto manager.      (line 1825)
+* BFD_RELOC_CR16_IMM20:                  howto manager.      (line 1826)
+* BFD_RELOC_CR16_IMM24:                  howto manager.      (line 1827)
+* BFD_RELOC_CR16_IMM32:                  howto manager.      (line 1828)
+* BFD_RELOC_CR16_IMM32a:                 howto manager.      (line 1829)
+* BFD_RELOC_CR16_IMM4:                   howto manager.      (line 1823)
+* BFD_RELOC_CR16_IMM8:                   howto manager.      (line 1824)
+* BFD_RELOC_CR16_NUM16:                  howto manager.      (line 1810)
+* BFD_RELOC_CR16_NUM32:                  howto manager.      (line 1811)
+* BFD_RELOC_CR16_NUM32a:                 howto manager.      (line 1812)
+* BFD_RELOC_CR16_NUM8:                   howto manager.      (line 1809)
+* BFD_RELOC_CR16_REGREL0:                howto manager.      (line 1813)
+* BFD_RELOC_CR16_REGREL14:               howto manager.      (line 1816)
+* BFD_RELOC_CR16_REGREL14a:              howto manager.      (line 1817)
+* BFD_RELOC_CR16_REGREL16:               howto manager.      (line 1818)
+* BFD_RELOC_CR16_REGREL20:               howto manager.      (line 1819)
+* BFD_RELOC_CR16_REGREL20a:              howto manager.      (line 1820)
+* BFD_RELOC_CR16_REGREL4:                howto manager.      (line 1814)
+* BFD_RELOC_CR16_REGREL4a:               howto manager.      (line 1815)
+* BFD_RELOC_CR16_SWITCH16:               howto manager.      (line 1837)
+* BFD_RELOC_CR16_SWITCH32:               howto manager.      (line 1838)
+* BFD_RELOC_CR16_SWITCH8:                howto manager.      (line 1836)
+* BFD_RELOC_CRIS_16_GOT:                 howto manager.      (line 1885)
+* BFD_RELOC_CRIS_16_GOTPLT:              howto manager.      (line 1891)
+* BFD_RELOC_CRIS_32_GOT:                 howto manager.      (line 1882)
+* BFD_RELOC_CRIS_32_GOTPLT:              howto manager.      (line 1888)
+* BFD_RELOC_CRIS_32_GOTREL:              howto manager.      (line 1894)
+* BFD_RELOC_CRIS_32_PLT_GOTREL:          howto manager.      (line 1897)
+* BFD_RELOC_CRIS_32_PLT_PCREL:           howto manager.      (line 1900)
+* BFD_RELOC_CRIS_BDISP8:                 howto manager.      (line 1863)
+* BFD_RELOC_CRIS_COPY:                   howto manager.      (line 1876)
+* BFD_RELOC_CRIS_GLOB_DAT:               howto manager.      (line 1877)
+* BFD_RELOC_CRIS_JUMP_SLOT:              howto manager.      (line 1878)
+* BFD_RELOC_CRIS_LAPCQ_OFFSET:           howto manager.      (line 1871)
+* BFD_RELOC_CRIS_RELATIVE:               howto manager.      (line 1879)
+* BFD_RELOC_CRIS_SIGNED_16:              howto manager.      (line 1869)
+* BFD_RELOC_CRIS_SIGNED_6:               howto manager.      (line 1865)
+* BFD_RELOC_CRIS_SIGNED_8:               howto manager.      (line 1867)
+* BFD_RELOC_CRIS_UNSIGNED_16:            howto manager.      (line 1870)
+* BFD_RELOC_CRIS_UNSIGNED_4:             howto manager.      (line 1872)
+* BFD_RELOC_CRIS_UNSIGNED_5:             howto manager.      (line 1864)
+* BFD_RELOC_CRIS_UNSIGNED_6:             howto manager.      (line 1866)
+* BFD_RELOC_CRIS_UNSIGNED_8:             howto manager.      (line 1868)
+* BFD_RELOC_CRX_ABS16:                   howto manager.      (line 1851)
+* BFD_RELOC_CRX_ABS32:                   howto manager.      (line 1852)
+* BFD_RELOC_CRX_IMM16:                   howto manager.      (line 1856)
+* BFD_RELOC_CRX_IMM32:                   howto manager.      (line 1857)
+* BFD_RELOC_CRX_NUM16:                   howto manager.      (line 1854)
+* BFD_RELOC_CRX_NUM32:                   howto manager.      (line 1855)
+* BFD_RELOC_CRX_NUM8:                    howto manager.      (line 1853)
+* BFD_RELOC_CRX_REGREL12:                howto manager.      (line 1847)
+* BFD_RELOC_CRX_REGREL22:                howto manager.      (line 1848)
+* BFD_RELOC_CRX_REGREL28:                howto manager.      (line 1849)
+* BFD_RELOC_CRX_REGREL32:                howto manager.      (line 1850)
+* BFD_RELOC_CRX_REL16:                   howto manager.      (line 1844)
+* BFD_RELOC_CRX_REL24:                   howto manager.      (line 1845)
+* BFD_RELOC_CRX_REL32:                   howto manager.      (line 1846)
+* BFD_RELOC_CRX_REL4:                    howto manager.      (line 1841)
+* BFD_RELOC_CRX_REL8:                    howto manager.      (line 1842)
+* BFD_RELOC_CRX_REL8_CMP:                howto manager.      (line 1843)
+* BFD_RELOC_CRX_SWITCH16:                howto manager.      (line 1859)
+* BFD_RELOC_CRX_SWITCH32:                howto manager.      (line 1860)
+* BFD_RELOC_CRX_SWITCH8:                 howto manager.      (line 1858)
+* BFD_RELOC_CTOR:                        howto manager.      (line  647)
+* BFD_RELOC_D10V_10_PCREL_L:             howto manager.      (line 1024)
+* BFD_RELOC_D10V_10_PCREL_R:             howto manager.      (line 1020)
+* BFD_RELOC_D10V_18:                     howto manager.      (line 1029)
+* BFD_RELOC_D10V_18_PCREL:               howto manager.      (line 1032)
+* BFD_RELOC_D30V_15:                     howto manager.      (line 1047)
+* BFD_RELOC_D30V_15_PCREL:               howto manager.      (line 1051)
+* BFD_RELOC_D30V_15_PCREL_R:             howto manager.      (line 1055)
+* BFD_RELOC_D30V_21:                     howto manager.      (line 1060)
+* BFD_RELOC_D30V_21_PCREL:               howto manager.      (line 1064)
+* BFD_RELOC_D30V_21_PCREL_R:             howto manager.      (line 1068)
+* BFD_RELOC_D30V_32:                     howto manager.      (line 1073)
+* BFD_RELOC_D30V_32_PCREL:               howto manager.      (line 1076)
+* BFD_RELOC_D30V_6:                      howto manager.      (line 1035)
+* BFD_RELOC_D30V_9_PCREL:                howto manager.      (line 1038)
+* BFD_RELOC_D30V_9_PCREL_R:              howto manager.      (line 1042)
+* BFD_RELOC_DLX_HI16_S:                  howto manager.      (line 1079)
+* BFD_RELOC_DLX_JMP26:                   howto manager.      (line 1085)
+* BFD_RELOC_DLX_LO16:                    howto manager.      (line 1082)
+* BFD_RELOC_FR30_10_IN_8:                howto manager.      (line 1264)
+* BFD_RELOC_FR30_12_PCREL:               howto manager.      (line 1272)
+* BFD_RELOC_FR30_20:                     howto manager.      (line 1248)
+* BFD_RELOC_FR30_48:                     howto manager.      (line 1245)
+* BFD_RELOC_FR30_6_IN_4:                 howto manager.      (line 1252)
+* BFD_RELOC_FR30_8_IN_8:                 howto manager.      (line 1256)
+* BFD_RELOC_FR30_9_IN_8:                 howto manager.      (line 1260)
+* BFD_RELOC_FR30_9_PCREL:                howto manager.      (line 1268)
+* BFD_RELOC_FRV_FUNCDESC:                howto manager.      (line  403)
+* BFD_RELOC_FRV_FUNCDESC_GOT12:          howto manager.      (line  404)
+* BFD_RELOC_FRV_FUNCDESC_GOTHI:          howto manager.      (line  405)
+* BFD_RELOC_FRV_FUNCDESC_GOTLO:          howto manager.      (line  406)
+* BFD_RELOC_FRV_FUNCDESC_GOTOFF12:       howto manager.      (line  408)
+* BFD_RELOC_FRV_FUNCDESC_GOTOFFHI:       howto manager.      (line  409)
+* BFD_RELOC_FRV_FUNCDESC_GOTOFFLO:       howto manager.      (line  410)
+* BFD_RELOC_FRV_FUNCDESC_VALUE:          howto manager.      (line  407)
+* BFD_RELOC_FRV_GETTLSOFF:               howto manager.      (line  414)
+* BFD_RELOC_FRV_GETTLSOFF_RELAX:         howto manager.      (line  427)
+* BFD_RELOC_FRV_GOT12:                   howto manager.      (line  400)
+* BFD_RELOC_FRV_GOTHI:                   howto manager.      (line  401)
+* BFD_RELOC_FRV_GOTLO:                   howto manager.      (line  402)
+* BFD_RELOC_FRV_GOTOFF12:                howto manager.      (line  411)
+* BFD_RELOC_FRV_GOTOFFHI:                howto manager.      (line  412)
+* BFD_RELOC_FRV_GOTOFFLO:                howto manager.      (line  413)
+* BFD_RELOC_FRV_GOTTLSDESC12:            howto manager.      (line  416)
+* BFD_RELOC_FRV_GOTTLSDESCHI:            howto manager.      (line  417)
+* BFD_RELOC_FRV_GOTTLSDESCLO:            howto manager.      (line  418)
+* BFD_RELOC_FRV_GOTTLSOFF12:             howto manager.      (line  422)
+* BFD_RELOC_FRV_GOTTLSOFFHI:             howto manager.      (line  423)
+* BFD_RELOC_FRV_GOTTLSOFFLO:             howto manager.      (line  424)
+* BFD_RELOC_FRV_GPREL12:                 howto manager.      (line  395)
+* BFD_RELOC_FRV_GPREL32:                 howto manager.      (line  397)
+* BFD_RELOC_FRV_GPRELHI:                 howto manager.      (line  398)
+* BFD_RELOC_FRV_GPRELLO:                 howto manager.      (line  399)
+* BFD_RELOC_FRV_GPRELU12:                howto manager.      (line  396)
+* BFD_RELOC_FRV_HI16:                    howto manager.      (line  394)
+* BFD_RELOC_FRV_LABEL16:                 howto manager.      (line  391)
+* BFD_RELOC_FRV_LABEL24:                 howto manager.      (line  392)
+* BFD_RELOC_FRV_LO16:                    howto manager.      (line  393)
+* BFD_RELOC_FRV_TLSDESC_RELAX:           howto manager.      (line  426)
+* BFD_RELOC_FRV_TLSDESC_VALUE:           howto manager.      (line  415)
+* BFD_RELOC_FRV_TLSMOFF:                 howto manager.      (line  429)
+* BFD_RELOC_FRV_TLSMOFF12:               howto manager.      (line  419)
+* BFD_RELOC_FRV_TLSMOFFHI:               howto manager.      (line  420)
+* BFD_RELOC_FRV_TLSMOFFLO:               howto manager.      (line  421)
+* BFD_RELOC_FRV_TLSOFF:                  howto manager.      (line  425)
+* BFD_RELOC_FRV_TLSOFF_RELAX:            howto manager.      (line  428)
 * BFD_RELOC_GPREL16:                     howto manager.      (line  106)
 * BFD_RELOC_GPREL32:                     howto manager.      (line  107)
-* BFD_RELOC_H8_DIR16A8:                  howto manager.      (line 1864)
-* BFD_RELOC_H8_DIR16R8:                  howto manager.      (line 1865)
-* BFD_RELOC_H8_DIR24A8:                  howto manager.      (line 1866)
-* BFD_RELOC_H8_DIR24R8:                  howto manager.      (line 1867)
-* BFD_RELOC_H8_DIR32A16:                 howto manager.      (line 1868)
-* BFD_RELOC_HI16:                        howto manager.      (line  303)
+* BFD_RELOC_H8_DIR16A8:                  howto manager.      (line 1942)
+* BFD_RELOC_H8_DIR16R8:                  howto manager.      (line 1943)
+* BFD_RELOC_H8_DIR24A8:                  howto manager.      (line 1944)
+* BFD_RELOC_H8_DIR24R8:                  howto manager.      (line 1945)
+* BFD_RELOC_H8_DIR32A16:                 howto manager.      (line 1946)
+* BFD_RELOC_HI16:                        howto manager.      (line  310)
 * BFD_RELOC_HI16_BASEREL:                howto manager.      (line   82)
 * BFD_RELOC_HI16_GOTOFF:                 howto manager.      (line   57)
-* BFD_RELOC_HI16_PCREL:                  howto manager.      (line  315)
+* BFD_RELOC_HI16_PCREL:                  howto manager.      (line  322)
 * BFD_RELOC_HI16_PLTOFF:                 howto manager.      (line   69)
-* BFD_RELOC_HI16_S:                      howto manager.      (line  306)
+* BFD_RELOC_HI16_S:                      howto manager.      (line  313)
 * BFD_RELOC_HI16_S_BASEREL:              howto manager.      (line   83)
 * BFD_RELOC_HI16_S_GOTOFF:               howto manager.      (line   58)
-* BFD_RELOC_HI16_S_PCREL:                howto manager.      (line  318)
+* BFD_RELOC_HI16_S_PCREL:                howto manager.      (line  325)
 * BFD_RELOC_HI16_S_PLTOFF:               howto manager.      (line   70)
 * BFD_RELOC_HI22:                        howto manager.      (line  101)
-* BFD_RELOC_I370_D12:                    howto manager.      (line  623)
+* BFD_RELOC_I370_D12:                    howto manager.      (line  644)
 * BFD_RELOC_I960_CALLJ:                  howto manager.      (line  113)
-* BFD_RELOC_IA64_COPY:                   howto manager.      (line 1657)
-* BFD_RELOC_IA64_DIR32LSB:               howto manager.      (line 1602)
-* BFD_RELOC_IA64_DIR32MSB:               howto manager.      (line 1601)
-* BFD_RELOC_IA64_DIR64LSB:               howto manager.      (line 1604)
-* BFD_RELOC_IA64_DIR64MSB:               howto manager.      (line 1603)
-* BFD_RELOC_IA64_DTPMOD64LSB:            howto manager.      (line 1667)
-* BFD_RELOC_IA64_DTPMOD64MSB:            howto manager.      (line 1666)
-* BFD_RELOC_IA64_DTPREL14:               howto manager.      (line 1669)
-* BFD_RELOC_IA64_DTPREL22:               howto manager.      (line 1670)
-* BFD_RELOC_IA64_DTPREL32LSB:            howto manager.      (line 1673)
-* BFD_RELOC_IA64_DTPREL32MSB:            howto manager.      (line 1672)
-* BFD_RELOC_IA64_DTPREL64I:              howto manager.      (line 1671)
-* BFD_RELOC_IA64_DTPREL64LSB:            howto manager.      (line 1675)
-* BFD_RELOC_IA64_DTPREL64MSB:            howto manager.      (line 1674)
-* BFD_RELOC_IA64_FPTR32LSB:              howto manager.      (line 1619)
-* BFD_RELOC_IA64_FPTR32MSB:              howto manager.      (line 1618)
-* BFD_RELOC_IA64_FPTR64I:                howto manager.      (line 1617)
-* BFD_RELOC_IA64_FPTR64LSB:              howto manager.      (line 1621)
-* BFD_RELOC_IA64_FPTR64MSB:              howto manager.      (line 1620)
-* BFD_RELOC_IA64_GPREL22:                howto manager.      (line 1605)
-* BFD_RELOC_IA64_GPREL32LSB:             howto manager.      (line 1608)
-* BFD_RELOC_IA64_GPREL32MSB:             howto manager.      (line 1607)
-* BFD_RELOC_IA64_GPREL64I:               howto manager.      (line 1606)
-* BFD_RELOC_IA64_GPREL64LSB:             howto manager.      (line 1610)
-* BFD_RELOC_IA64_GPREL64MSB:             howto manager.      (line 1609)
-* BFD_RELOC_IA64_IMM14:                  howto manager.      (line 1598)
-* BFD_RELOC_IA64_IMM22:                  howto manager.      (line 1599)
-* BFD_RELOC_IA64_IMM64:                  howto manager.      (line 1600)
-* BFD_RELOC_IA64_IPLTLSB:                howto manager.      (line 1656)
-* BFD_RELOC_IA64_IPLTMSB:                howto manager.      (line 1655)
-* BFD_RELOC_IA64_LDXMOV:                 howto manager.      (line 1659)
-* BFD_RELOC_IA64_LTOFF22:                howto manager.      (line 1611)
-* BFD_RELOC_IA64_LTOFF22X:               howto manager.      (line 1658)
-* BFD_RELOC_IA64_LTOFF64I:               howto manager.      (line 1612)
-* BFD_RELOC_IA64_LTOFF_DTPMOD22:         howto manager.      (line 1668)
-* BFD_RELOC_IA64_LTOFF_DTPREL22:         howto manager.      (line 1676)
-* BFD_RELOC_IA64_LTOFF_FPTR22:           howto manager.      (line 1633)
-* BFD_RELOC_IA64_LTOFF_FPTR32LSB:        howto manager.      (line 1636)
-* BFD_RELOC_IA64_LTOFF_FPTR32MSB:        howto manager.      (line 1635)
-* BFD_RELOC_IA64_LTOFF_FPTR64I:          howto manager.      (line 1634)
-* BFD_RELOC_IA64_LTOFF_FPTR64LSB:        howto manager.      (line 1638)
-* BFD_RELOC_IA64_LTOFF_FPTR64MSB:        howto manager.      (line 1637)
-* BFD_RELOC_IA64_LTOFF_TPREL22:          howto manager.      (line 1665)
-* BFD_RELOC_IA64_LTV32LSB:               howto manager.      (line 1652)
-* BFD_RELOC_IA64_LTV32MSB:               howto manager.      (line 1651)
-* BFD_RELOC_IA64_LTV64LSB:               howto manager.      (line 1654)
-* BFD_RELOC_IA64_LTV64MSB:               howto manager.      (line 1653)
-* BFD_RELOC_IA64_PCREL21B:               howto manager.      (line 1622)
-* BFD_RELOC_IA64_PCREL21BI:              howto manager.      (line 1623)
-* BFD_RELOC_IA64_PCREL21F:               howto manager.      (line 1625)
-* BFD_RELOC_IA64_PCREL21M:               howto manager.      (line 1624)
-* BFD_RELOC_IA64_PCREL22:                howto manager.      (line 1626)
-* BFD_RELOC_IA64_PCREL32LSB:             howto manager.      (line 1630)
-* BFD_RELOC_IA64_PCREL32MSB:             howto manager.      (line 1629)
-* BFD_RELOC_IA64_PCREL60B:               howto manager.      (line 1627)
-* BFD_RELOC_IA64_PCREL64I:               howto manager.      (line 1628)
-* BFD_RELOC_IA64_PCREL64LSB:             howto manager.      (line 1632)
-* BFD_RELOC_IA64_PCREL64MSB:             howto manager.      (line 1631)
-* BFD_RELOC_IA64_PLTOFF22:               howto manager.      (line 1613)
-* BFD_RELOC_IA64_PLTOFF64I:              howto manager.      (line 1614)
-* BFD_RELOC_IA64_PLTOFF64LSB:            howto manager.      (line 1616)
-* BFD_RELOC_IA64_PLTOFF64MSB:            howto manager.      (line 1615)
-* BFD_RELOC_IA64_REL32LSB:               howto manager.      (line 1648)
-* BFD_RELOC_IA64_REL32MSB:               howto manager.      (line 1647)
-* BFD_RELOC_IA64_REL64LSB:               howto manager.      (line 1650)
-* BFD_RELOC_IA64_REL64MSB:               howto manager.      (line 1649)
-* BFD_RELOC_IA64_SECREL32LSB:            howto manager.      (line 1644)
-* BFD_RELOC_IA64_SECREL32MSB:            howto manager.      (line 1643)
-* BFD_RELOC_IA64_SECREL64LSB:            howto manager.      (line 1646)
-* BFD_RELOC_IA64_SECREL64MSB:            howto manager.      (line 1645)
-* BFD_RELOC_IA64_SEGREL32LSB:            howto manager.      (line 1640)
-* BFD_RELOC_IA64_SEGREL32MSB:            howto manager.      (line 1639)
-* BFD_RELOC_IA64_SEGREL64LSB:            howto manager.      (line 1642)
-* BFD_RELOC_IA64_SEGREL64MSB:            howto manager.      (line 1641)
-* BFD_RELOC_IA64_TPREL14:                howto manager.      (line 1660)
-* BFD_RELOC_IA64_TPREL22:                howto manager.      (line 1661)
-* BFD_RELOC_IA64_TPREL64I:               howto manager.      (line 1662)
-* BFD_RELOC_IA64_TPREL64LSB:             howto manager.      (line 1664)
-* BFD_RELOC_IA64_TPREL64MSB:             howto manager.      (line 1663)
-* BFD_RELOC_IP2K_ADDR16CJP:              howto manager.      (line 1550)
-* BFD_RELOC_IP2K_BANK:                   howto manager.      (line 1547)
-* BFD_RELOC_IP2K_EX8DATA:                howto manager.      (line 1558)
-* BFD_RELOC_IP2K_FR9:                    howto manager.      (line 1544)
-* BFD_RELOC_IP2K_FR_OFFSET:              howto manager.      (line 1571)
-* BFD_RELOC_IP2K_HI8DATA:                howto manager.      (line 1557)
-* BFD_RELOC_IP2K_HI8INSN:                howto manager.      (line 1562)
-* BFD_RELOC_IP2K_LO8DATA:                howto manager.      (line 1556)
-* BFD_RELOC_IP2K_LO8INSN:                howto manager.      (line 1561)
-* BFD_RELOC_IP2K_PAGE3:                  howto manager.      (line 1553)
-* BFD_RELOC_IP2K_PC_SKIP:                howto manager.      (line 1565)
-* BFD_RELOC_IP2K_TEXT:                   howto manager.      (line 1568)
-* BFD_RELOC_IQ2000_OFFSET_16:            howto manager.      (line 1915)
-* BFD_RELOC_IQ2000_OFFSET_21:            howto manager.      (line 1916)
-* BFD_RELOC_IQ2000_UHI16:                howto manager.      (line 1917)
+* BFD_RELOC_IA64_COPY:                   howto manager.      (line 1703)
+* BFD_RELOC_IA64_DIR32LSB:               howto manager.      (line 1648)
+* BFD_RELOC_IA64_DIR32MSB:               howto manager.      (line 1647)
+* BFD_RELOC_IA64_DIR64LSB:               howto manager.      (line 1650)
+* BFD_RELOC_IA64_DIR64MSB:               howto manager.      (line 1649)
+* BFD_RELOC_IA64_DTPMOD64LSB:            howto manager.      (line 1713)
+* BFD_RELOC_IA64_DTPMOD64MSB:            howto manager.      (line 1712)
+* BFD_RELOC_IA64_DTPREL14:               howto manager.      (line 1715)
+* BFD_RELOC_IA64_DTPREL22:               howto manager.      (line 1716)
+* BFD_RELOC_IA64_DTPREL32LSB:            howto manager.      (line 1719)
+* BFD_RELOC_IA64_DTPREL32MSB:            howto manager.      (line 1718)
+* BFD_RELOC_IA64_DTPREL64I:              howto manager.      (line 1717)
+* BFD_RELOC_IA64_DTPREL64LSB:            howto manager.      (line 1721)
+* BFD_RELOC_IA64_DTPREL64MSB:            howto manager.      (line 1720)
+* BFD_RELOC_IA64_FPTR32LSB:              howto manager.      (line 1665)
+* BFD_RELOC_IA64_FPTR32MSB:              howto manager.      (line 1664)
+* BFD_RELOC_IA64_FPTR64I:                howto manager.      (line 1663)
+* BFD_RELOC_IA64_FPTR64LSB:              howto manager.      (line 1667)
+* BFD_RELOC_IA64_FPTR64MSB:              howto manager.      (line 1666)
+* BFD_RELOC_IA64_GPREL22:                howto manager.      (line 1651)
+* BFD_RELOC_IA64_GPREL32LSB:             howto manager.      (line 1654)
+* BFD_RELOC_IA64_GPREL32MSB:             howto manager.      (line 1653)
+* BFD_RELOC_IA64_GPREL64I:               howto manager.      (line 1652)
+* BFD_RELOC_IA64_GPREL64LSB:             howto manager.      (line 1656)
+* BFD_RELOC_IA64_GPREL64MSB:             howto manager.      (line 1655)
+* BFD_RELOC_IA64_IMM14:                  howto manager.      (line 1644)
+* BFD_RELOC_IA64_IMM22:                  howto manager.      (line 1645)
+* BFD_RELOC_IA64_IMM64:                  howto manager.      (line 1646)
+* BFD_RELOC_IA64_IPLTLSB:                howto manager.      (line 1702)
+* BFD_RELOC_IA64_IPLTMSB:                howto manager.      (line 1701)
+* BFD_RELOC_IA64_LDXMOV:                 howto manager.      (line 1705)
+* BFD_RELOC_IA64_LTOFF22:                howto manager.      (line 1657)
+* BFD_RELOC_IA64_LTOFF22X:               howto manager.      (line 1704)
+* BFD_RELOC_IA64_LTOFF64I:               howto manager.      (line 1658)
+* BFD_RELOC_IA64_LTOFF_DTPMOD22:         howto manager.      (line 1714)
+* BFD_RELOC_IA64_LTOFF_DTPREL22:         howto manager.      (line 1722)
+* BFD_RELOC_IA64_LTOFF_FPTR22:           howto manager.      (line 1679)
+* BFD_RELOC_IA64_LTOFF_FPTR32LSB:        howto manager.      (line 1682)
+* BFD_RELOC_IA64_LTOFF_FPTR32MSB:        howto manager.      (line 1681)
+* BFD_RELOC_IA64_LTOFF_FPTR64I:          howto manager.      (line 1680)
+* BFD_RELOC_IA64_LTOFF_FPTR64LSB:        howto manager.      (line 1684)
+* BFD_RELOC_IA64_LTOFF_FPTR64MSB:        howto manager.      (line 1683)
+* BFD_RELOC_IA64_LTOFF_TPREL22:          howto manager.      (line 1711)
+* BFD_RELOC_IA64_LTV32LSB:               howto manager.      (line 1698)
+* BFD_RELOC_IA64_LTV32MSB:               howto manager.      (line 1697)
+* BFD_RELOC_IA64_LTV64LSB:               howto manager.      (line 1700)
+* BFD_RELOC_IA64_LTV64MSB:               howto manager.      (line 1699)
+* BFD_RELOC_IA64_PCREL21B:               howto manager.      (line 1668)
+* BFD_RELOC_IA64_PCREL21BI:              howto manager.      (line 1669)
+* BFD_RELOC_IA64_PCREL21F:               howto manager.      (line 1671)
+* BFD_RELOC_IA64_PCREL21M:               howto manager.      (line 1670)
+* BFD_RELOC_IA64_PCREL22:                howto manager.      (line 1672)
+* BFD_RELOC_IA64_PCREL32LSB:             howto manager.      (line 1676)
+* BFD_RELOC_IA64_PCREL32MSB:             howto manager.      (line 1675)
+* BFD_RELOC_IA64_PCREL60B:               howto manager.      (line 1673)
+* BFD_RELOC_IA64_PCREL64I:               howto manager.      (line 1674)
+* BFD_RELOC_IA64_PCREL64LSB:             howto manager.      (line 1678)
+* BFD_RELOC_IA64_PCREL64MSB:             howto manager.      (line 1677)
+* BFD_RELOC_IA64_PLTOFF22:               howto manager.      (line 1659)
+* BFD_RELOC_IA64_PLTOFF64I:              howto manager.      (line 1660)
+* BFD_RELOC_IA64_PLTOFF64LSB:            howto manager.      (line 1662)
+* BFD_RELOC_IA64_PLTOFF64MSB:            howto manager.      (line 1661)
+* BFD_RELOC_IA64_REL32LSB:               howto manager.      (line 1694)
+* BFD_RELOC_IA64_REL32MSB:               howto manager.      (line 1693)
+* BFD_RELOC_IA64_REL64LSB:               howto manager.      (line 1696)
+* BFD_RELOC_IA64_REL64MSB:               howto manager.      (line 1695)
+* BFD_RELOC_IA64_SECREL32LSB:            howto manager.      (line 1690)
+* BFD_RELOC_IA64_SECREL32MSB:            howto manager.      (line 1689)
+* BFD_RELOC_IA64_SECREL64LSB:            howto manager.      (line 1692)
+* BFD_RELOC_IA64_SECREL64MSB:            howto manager.      (line 1691)
+* BFD_RELOC_IA64_SEGREL32LSB:            howto manager.      (line 1686)
+* BFD_RELOC_IA64_SEGREL32MSB:            howto manager.      (line 1685)
+* BFD_RELOC_IA64_SEGREL64LSB:            howto manager.      (line 1688)
+* BFD_RELOC_IA64_SEGREL64MSB:            howto manager.      (line 1687)
+* BFD_RELOC_IA64_TPREL14:                howto manager.      (line 1706)
+* BFD_RELOC_IA64_TPREL22:                howto manager.      (line 1707)
+* BFD_RELOC_IA64_TPREL64I:               howto manager.      (line 1708)
+* BFD_RELOC_IA64_TPREL64LSB:             howto manager.      (line 1710)
+* BFD_RELOC_IA64_TPREL64MSB:             howto manager.      (line 1709)
+* BFD_RELOC_IP2K_ADDR16CJP:              howto manager.      (line 1596)
+* BFD_RELOC_IP2K_BANK:                   howto manager.      (line 1593)
+* BFD_RELOC_IP2K_EX8DATA:                howto manager.      (line 1604)
+* BFD_RELOC_IP2K_FR9:                    howto manager.      (line 1590)
+* BFD_RELOC_IP2K_FR_OFFSET:              howto manager.      (line 1617)
+* BFD_RELOC_IP2K_HI8DATA:                howto manager.      (line 1603)
+* BFD_RELOC_IP2K_HI8INSN:                howto manager.      (line 1608)
+* BFD_RELOC_IP2K_LO8DATA:                howto manager.      (line 1602)
+* BFD_RELOC_IP2K_LO8INSN:                howto manager.      (line 1607)
+* BFD_RELOC_IP2K_PAGE3:                  howto manager.      (line 1599)
+* BFD_RELOC_IP2K_PC_SKIP:                howto manager.      (line 1611)
+* BFD_RELOC_IP2K_TEXT:                   howto manager.      (line 1614)
+* BFD_RELOC_IQ2000_OFFSET_16:            howto manager.      (line 1996)
+* BFD_RELOC_IQ2000_OFFSET_21:            howto manager.      (line 1997)
+* BFD_RELOC_IQ2000_UHI16:                howto manager.      (line 1998)
 * BFD_RELOC_LO10:                        howto manager.      (line  102)
-* BFD_RELOC_LO16:                        howto manager.      (line  312)
+* BFD_RELOC_LO16:                        howto manager.      (line  319)
 * BFD_RELOC_LO16_BASEREL:                howto manager.      (line   81)
 * BFD_RELOC_LO16_GOTOFF:                 howto manager.      (line   56)
-* BFD_RELOC_LO16_PCREL:                  howto manager.      (line  321)
+* BFD_RELOC_LO16_PCREL:                  howto manager.      (line  328)
 * BFD_RELOC_LO16_PLTOFF:                 howto manager.      (line   68)
-* BFD_RELOC_M32C_HI8:                    howto manager.      (line 1064)
-* BFD_RELOC_M32C_RL_1ADDR:               howto manager.      (line 1066)
-* BFD_RELOC_M32C_RL_2ADDR:               howto manager.      (line 1067)
-* BFD_RELOC_M32C_RL_JUMP:                howto manager.      (line 1065)
-* BFD_RELOC_M32R_10_PCREL:               howto manager.      (line 1074)
-* BFD_RELOC_M32R_18_PCREL:               howto manager.      (line 1078)
-* BFD_RELOC_M32R_24:                     howto manager.      (line 1070)
-* BFD_RELOC_M32R_26_PCREL:               howto manager.      (line 1081)
-* BFD_RELOC_M32R_26_PLTREL:              howto manager.      (line 1100)
-* BFD_RELOC_M32R_COPY:                   howto manager.      (line 1101)
-* BFD_RELOC_M32R_GLOB_DAT:               howto manager.      (line 1102)
-* BFD_RELOC_M32R_GOT16_HI_SLO:           howto manager.      (line 1111)
-* BFD_RELOC_M32R_GOT16_HI_ULO:           howto manager.      (line 1110)
-* BFD_RELOC_M32R_GOT16_LO:               howto manager.      (line 1112)
-* BFD_RELOC_M32R_GOT24:                  howto manager.      (line 1099)
-* BFD_RELOC_M32R_GOTOFF:                 howto manager.      (line 1105)
-* BFD_RELOC_M32R_GOTOFF_HI_SLO:          howto manager.      (line 1107)
-* BFD_RELOC_M32R_GOTOFF_HI_ULO:          howto manager.      (line 1106)
-* BFD_RELOC_M32R_GOTOFF_LO:              howto manager.      (line 1108)
-* BFD_RELOC_M32R_GOTPC24:                howto manager.      (line 1109)
-* BFD_RELOC_M32R_GOTPC_HI_SLO:           howto manager.      (line 1114)
-* BFD_RELOC_M32R_GOTPC_HI_ULO:           howto manager.      (line 1113)
-* BFD_RELOC_M32R_GOTPC_LO:               howto manager.      (line 1115)
-* BFD_RELOC_M32R_HI16_SLO:               howto manager.      (line 1088)
-* BFD_RELOC_M32R_HI16_ULO:               howto manager.      (line 1084)
-* BFD_RELOC_M32R_JMP_SLOT:               howto manager.      (line 1103)
-* BFD_RELOC_M32R_LO16:                   howto manager.      (line 1092)
-* BFD_RELOC_M32R_RELATIVE:               howto manager.      (line 1104)
-* BFD_RELOC_M32R_SDA16:                  howto manager.      (line 1095)
-* BFD_RELOC_M68HC11_24:                  howto manager.      (line 1712)
-* BFD_RELOC_M68HC11_3B:                  howto manager.      (line 1687)
-* BFD_RELOC_M68HC11_HI8:                 howto manager.      (line 1679)
-* BFD_RELOC_M68HC11_LO16:                howto manager.      (line 1701)
-* BFD_RELOC_M68HC11_LO8:                 howto manager.      (line 1683)
-* BFD_RELOC_M68HC11_PAGE:                howto manager.      (line 1707)
-* BFD_RELOC_M68HC11_RL_GROUP:            howto manager.      (line 1696)
-* BFD_RELOC_M68HC11_RL_JUMP:             howto manager.      (line 1690)
-* BFD_RELOC_M68HC12_5B:                  howto manager.      (line 1718)
-* BFD_RELOC_MCORE_PCREL_32:              howto manager.      (line 1255)
-* BFD_RELOC_MCORE_PCREL_IMM11BY2:        howto manager.      (line 1253)
-* BFD_RELOC_MCORE_PCREL_IMM4BY2:         howto manager.      (line 1254)
-* BFD_RELOC_MCORE_PCREL_IMM8BY4:         howto manager.      (line 1252)
-* BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2:    howto manager.      (line 1256)
-* BFD_RELOC_MCORE_RVA:                   howto manager.      (line 1257)
-* BFD_RELOC_MIPS16_GPREL:                howto manager.      (line  300)
-* BFD_RELOC_MIPS16_HI16:                 howto manager.      (line  324)
-* BFD_RELOC_MIPS16_HI16_S:               howto manager.      (line  327)
-* BFD_RELOC_MIPS16_JMP:                  howto manager.      (line  297)
-* BFD_RELOC_MIPS16_LO16:                 howto manager.      (line  333)
-* BFD_RELOC_MIPS_CALL16:                 howto manager.      (line  340)
-* BFD_RELOC_MIPS_CALL_HI16:              howto manager.      (line  343)
-* BFD_RELOC_MIPS_CALL_LO16:              howto manager.      (line  344)
-* BFD_RELOC_MIPS_COPY:                   howto manager.      (line  375)
-* BFD_RELOC_MIPS_DELETE:                 howto manager.      (line  353)
-* BFD_RELOC_MIPS_GOT16:                  howto manager.      (line  339)
-* BFD_RELOC_MIPS_GOT_DISP:               howto manager.      (line  348)
-* BFD_RELOC_MIPS_GOT_HI16:               howto manager.      (line  341)
-* BFD_RELOC_MIPS_GOT_LO16:               howto manager.      (line  342)
-* BFD_RELOC_MIPS_GOT_OFST:               howto manager.      (line  347)
-* BFD_RELOC_MIPS_GOT_PAGE:               howto manager.      (line  346)
-* BFD_RELOC_MIPS_HIGHER:                 howto manager.      (line  355)
-* BFD_RELOC_MIPS_HIGHEST:                howto manager.      (line  354)
-* BFD_RELOC_MIPS_INSERT_A:               howto manager.      (line  351)
-* BFD_RELOC_MIPS_INSERT_B:               howto manager.      (line  352)
-* BFD_RELOC_MIPS_JALR:                   howto manager.      (line  359)
-* BFD_RELOC_MIPS_JMP:                    howto manager.      (line  293)
-* BFD_RELOC_MIPS_JUMP_SLOT:              howto manager.      (line  376)
-* BFD_RELOC_MIPS_LITERAL:                howto manager.      (line  336)
-* BFD_RELOC_MIPS_REL16:                  howto manager.      (line  357)
-* BFD_RELOC_MIPS_RELGOT:                 howto manager.      (line  358)
-* BFD_RELOC_MIPS_SCN_DISP:               howto manager.      (line  356)
-* BFD_RELOC_MIPS_SHIFT5:                 howto manager.      (line  349)
-* BFD_RELOC_MIPS_SHIFT6:                 howto manager.      (line  350)
-* BFD_RELOC_MIPS_SUB:                    howto manager.      (line  345)
-* BFD_RELOC_MIPS_TLS_DTPMOD32:           howto manager.      (line  360)
-* BFD_RELOC_MIPS_TLS_DTPMOD64:           howto manager.      (line  362)
-* BFD_RELOC_MIPS_TLS_DTPREL32:           howto manager.      (line  361)
-* BFD_RELOC_MIPS_TLS_DTPREL64:           howto manager.      (line  363)
-* BFD_RELOC_MIPS_TLS_DTPREL_HI16:        howto manager.      (line  366)
-* BFD_RELOC_MIPS_TLS_DTPREL_LO16:        howto manager.      (line  367)
-* BFD_RELOC_MIPS_TLS_GD:                 howto manager.      (line  364)
-* BFD_RELOC_MIPS_TLS_GOTTPREL:           howto manager.      (line  368)
-* BFD_RELOC_MIPS_TLS_LDM:                howto manager.      (line  365)
-* BFD_RELOC_MIPS_TLS_TPREL32:            howto manager.      (line  369)
-* BFD_RELOC_MIPS_TLS_TPREL64:            howto manager.      (line  370)
-* BFD_RELOC_MIPS_TLS_TPREL_HI16:         howto manager.      (line  371)
-* BFD_RELOC_MIPS_TLS_TPREL_LO16:         howto manager.      (line  372)
-* BFD_RELOC_MMIX_ADDR19:                 howto manager.      (line 1286)
-* BFD_RELOC_MMIX_ADDR27:                 howto manager.      (line 1290)
-* BFD_RELOC_MMIX_BASE_PLUS_OFFSET:       howto manager.      (line 1302)
-* BFD_RELOC_MMIX_CBRANCH:                howto manager.      (line 1266)
-* BFD_RELOC_MMIX_CBRANCH_1:              howto manager.      (line 1268)
-* BFD_RELOC_MMIX_CBRANCH_2:              howto manager.      (line 1269)
-* BFD_RELOC_MMIX_CBRANCH_3:              howto manager.      (line 1270)
-* BFD_RELOC_MMIX_CBRANCH_J:              howto manager.      (line 1267)
-* BFD_RELOC_MMIX_GETA:                   howto manager.      (line 1260)
-* BFD_RELOC_MMIX_GETA_1:                 howto manager.      (line 1261)
-* BFD_RELOC_MMIX_GETA_2:                 howto manager.      (line 1262)
-* BFD_RELOC_MMIX_GETA_3:                 howto manager.      (line 1263)
-* BFD_RELOC_MMIX_JMP:                    howto manager.      (line 1280)
-* BFD_RELOC_MMIX_JMP_1:                  howto manager.      (line 1281)
-* BFD_RELOC_MMIX_JMP_2:                  howto manager.      (line 1282)
-* BFD_RELOC_MMIX_JMP_3:                  howto manager.      (line 1283)
-* BFD_RELOC_MMIX_LOCAL:                  howto manager.      (line 1306)
-* BFD_RELOC_MMIX_PUSHJ:                  howto manager.      (line 1273)
-* BFD_RELOC_MMIX_PUSHJ_1:                howto manager.      (line 1274)
-* BFD_RELOC_MMIX_PUSHJ_2:                howto manager.      (line 1275)
-* BFD_RELOC_MMIX_PUSHJ_3:                howto manager.      (line 1276)
-* BFD_RELOC_MMIX_PUSHJ_STUBBABLE:        howto manager.      (line 1277)
-* BFD_RELOC_MMIX_REG:                    howto manager.      (line 1298)
-* BFD_RELOC_MMIX_REG_OR_BYTE:            howto manager.      (line 1294)
-* BFD_RELOC_MN10300_16_PCREL:            howto manager.      (line 1190)
-* BFD_RELOC_MN10300_32_PCREL:            howto manager.      (line 1186)
-* BFD_RELOC_MN10300_COPY:                howto manager.      (line  435)
-* BFD_RELOC_MN10300_GLOB_DAT:            howto manager.      (line  438)
-* BFD_RELOC_MN10300_GOT16:               howto manager.      (line  431)
-* BFD_RELOC_MN10300_GOT24:               howto manager.      (line  427)
-* BFD_RELOC_MN10300_GOT32:               howto manager.      (line  423)
-* BFD_RELOC_MN10300_GOTOFF24:            howto manager.      (line  420)
-* BFD_RELOC_MN10300_JMP_SLOT:            howto manager.      (line  441)
-* BFD_RELOC_MN10300_RELATIVE:            howto manager.      (line  444)
-* BFD_RELOC_MSP430_10_PCREL:             howto manager.      (line 1906)
-* BFD_RELOC_MSP430_16:                   howto manager.      (line 1908)
-* BFD_RELOC_MSP430_16_BYTE:              howto manager.      (line 1910)
-* BFD_RELOC_MSP430_16_PCREL:             howto manager.      (line 1907)
-* BFD_RELOC_MSP430_16_PCREL_BYTE:        howto manager.      (line 1909)
-* BFD_RELOC_MSP430_2X_PCREL:             howto manager.      (line 1911)
-* BFD_RELOC_MSP430_RL_PCREL:             howto manager.      (line 1912)
-* BFD_RELOC_MT_GNU_VTENTRY:              howto manager.      (line 1900)
-* BFD_RELOC_MT_GNU_VTINHERIT:            howto manager.      (line 1897)
-* BFD_RELOC_MT_HI16:                     howto manager.      (line 1891)
-* BFD_RELOC_MT_LO16:                     howto manager.      (line 1894)
-* BFD_RELOC_MT_PC16:                     howto manager.      (line 1888)
-* BFD_RELOC_MT_PCINSN8:                  howto manager.      (line 1903)
+* BFD_RELOC_M32C_HI8:                    howto manager.      (line 1088)
+* BFD_RELOC_M32C_RL_1ADDR:               howto manager.      (line 1090)
+* BFD_RELOC_M32C_RL_2ADDR:               howto manager.      (line 1091)
+* BFD_RELOC_M32C_RL_JUMP:                howto manager.      (line 1089)
+* BFD_RELOC_M32R_10_PCREL:               howto manager.      (line 1098)
+* BFD_RELOC_M32R_18_PCREL:               howto manager.      (line 1102)
+* BFD_RELOC_M32R_24:                     howto manager.      (line 1094)
+* BFD_RELOC_M32R_26_PCREL:               howto manager.      (line 1105)
+* BFD_RELOC_M32R_26_PLTREL:              howto manager.      (line 1124)
+* BFD_RELOC_M32R_COPY:                   howto manager.      (line 1125)
+* BFD_RELOC_M32R_GLOB_DAT:               howto manager.      (line 1126)
+* BFD_RELOC_M32R_GOT16_HI_SLO:           howto manager.      (line 1135)
+* BFD_RELOC_M32R_GOT16_HI_ULO:           howto manager.      (line 1134)
+* BFD_RELOC_M32R_GOT16_LO:               howto manager.      (line 1136)
+* BFD_RELOC_M32R_GOT24:                  howto manager.      (line 1123)
+* BFD_RELOC_M32R_GOTOFF:                 howto manager.      (line 1129)
+* BFD_RELOC_M32R_GOTOFF_HI_SLO:          howto manager.      (line 1131)
+* BFD_RELOC_M32R_GOTOFF_HI_ULO:          howto manager.      (line 1130)
+* BFD_RELOC_M32R_GOTOFF_LO:              howto manager.      (line 1132)
+* BFD_RELOC_M32R_GOTPC24:                howto manager.      (line 1133)
+* BFD_RELOC_M32R_GOTPC_HI_SLO:           howto manager.      (line 1138)
+* BFD_RELOC_M32R_GOTPC_HI_ULO:           howto manager.      (line 1137)
+* BFD_RELOC_M32R_GOTPC_LO:               howto manager.      (line 1139)
+* BFD_RELOC_M32R_HI16_SLO:               howto manager.      (line 1112)
+* BFD_RELOC_M32R_HI16_ULO:               howto manager.      (line 1108)
+* BFD_RELOC_M32R_JMP_SLOT:               howto manager.      (line 1127)
+* BFD_RELOC_M32R_LO16:                   howto manager.      (line 1116)
+* BFD_RELOC_M32R_RELATIVE:               howto manager.      (line 1128)
+* BFD_RELOC_M32R_SDA16:                  howto manager.      (line 1119)
+* BFD_RELOC_M68HC11_24:                  howto manager.      (line 1758)
+* BFD_RELOC_M68HC11_3B:                  howto manager.      (line 1733)
+* BFD_RELOC_M68HC11_HI8:                 howto manager.      (line 1725)
+* BFD_RELOC_M68HC11_LO16:                howto manager.      (line 1747)
+* BFD_RELOC_M68HC11_LO8:                 howto manager.      (line 1729)
+* BFD_RELOC_M68HC11_PAGE:                howto manager.      (line 1753)
+* BFD_RELOC_M68HC11_RL_GROUP:            howto manager.      (line 1742)
+* BFD_RELOC_M68HC11_RL_JUMP:             howto manager.      (line 1736)
+* BFD_RELOC_M68HC12_5B:                  howto manager.      (line 1764)
+* BFD_RELOC_MCORE_PCREL_32:              howto manager.      (line 1279)
+* BFD_RELOC_MCORE_PCREL_IMM11BY2:        howto manager.      (line 1277)
+* BFD_RELOC_MCORE_PCREL_IMM4BY2:         howto manager.      (line 1278)
+* BFD_RELOC_MCORE_PCREL_IMM8BY4:         howto manager.      (line 1276)
+* BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2:    howto manager.      (line 1280)
+* BFD_RELOC_MCORE_RVA:                   howto manager.      (line 1281)
+* BFD_RELOC_MEP_16:                      howto manager.      (line 1285)
+* BFD_RELOC_MEP_32:                      howto manager.      (line 1286)
+* BFD_RELOC_MEP_8:                       howto manager.      (line 1284)
+* BFD_RELOC_MEP_ADDR24A4:                howto manager.      (line 1301)
+* BFD_RELOC_MEP_GNU_VTENTRY:             howto manager.      (line 1303)
+* BFD_RELOC_MEP_GNU_VTINHERIT:           howto manager.      (line 1302)
+* BFD_RELOC_MEP_GPREL:                   howto manager.      (line 1295)
+* BFD_RELOC_MEP_HI16S:                   howto manager.      (line 1294)
+* BFD_RELOC_MEP_HI16U:                   howto manager.      (line 1293)
+* BFD_RELOC_MEP_LOW16:                   howto manager.      (line 1292)
+* BFD_RELOC_MEP_PCABS24A2:               howto manager.      (line 1291)
+* BFD_RELOC_MEP_PCREL12A2:               howto manager.      (line 1288)
+* BFD_RELOC_MEP_PCREL17A2:               howto manager.      (line 1289)
+* BFD_RELOC_MEP_PCREL24A2:               howto manager.      (line 1290)
+* BFD_RELOC_MEP_PCREL8A2:                howto manager.      (line 1287)
+* BFD_RELOC_MEP_TPREL:                   howto manager.      (line 1296)
+* BFD_RELOC_MEP_TPREL7:                  howto manager.      (line 1297)
+* BFD_RELOC_MEP_TPREL7A2:                howto manager.      (line 1298)
+* BFD_RELOC_MEP_TPREL7A4:                howto manager.      (line 1299)
+* BFD_RELOC_MEP_UIMM24:                  howto manager.      (line 1300)
+* BFD_RELOC_MIPS16_CALL16:               howto manager.      (line  332)
+* BFD_RELOC_MIPS16_GOT16:                howto manager.      (line  331)
+* BFD_RELOC_MIPS16_GPREL:                howto manager.      (line  307)
+* BFD_RELOC_MIPS16_HI16:                 howto manager.      (line  336)
+* BFD_RELOC_MIPS16_HI16_S:               howto manager.      (line  339)
+* BFD_RELOC_MIPS16_JMP:                  howto manager.      (line  304)
+* BFD_RELOC_MIPS16_LO16:                 howto manager.      (line  345)
+* BFD_RELOC_MIPS_CALL16:                 howto manager.      (line  352)
+* BFD_RELOC_MIPS_CALL_HI16:              howto manager.      (line  355)
+* BFD_RELOC_MIPS_CALL_LO16:              howto manager.      (line  356)
+* BFD_RELOC_MIPS_COPY:                   howto manager.      (line  387)
+* BFD_RELOC_MIPS_DELETE:                 howto manager.      (line  365)
+* BFD_RELOC_MIPS_GOT16:                  howto manager.      (line  351)
+* BFD_RELOC_MIPS_GOT_DISP:               howto manager.      (line  360)
+* BFD_RELOC_MIPS_GOT_HI16:               howto manager.      (line  353)
+* BFD_RELOC_MIPS_GOT_LO16:               howto manager.      (line  354)
+* BFD_RELOC_MIPS_GOT_OFST:               howto manager.      (line  359)
+* BFD_RELOC_MIPS_GOT_PAGE:               howto manager.      (line  358)
+* BFD_RELOC_MIPS_HIGHER:                 howto manager.      (line  367)
+* BFD_RELOC_MIPS_HIGHEST:                howto manager.      (line  366)
+* BFD_RELOC_MIPS_INSERT_A:               howto manager.      (line  363)
+* BFD_RELOC_MIPS_INSERT_B:               howto manager.      (line  364)
+* BFD_RELOC_MIPS_JALR:                   howto manager.      (line  371)
+* BFD_RELOC_MIPS_JMP:                    howto manager.      (line  300)
+* BFD_RELOC_MIPS_JUMP_SLOT:              howto manager.      (line  388)
+* BFD_RELOC_MIPS_LITERAL:                howto manager.      (line  348)
+* BFD_RELOC_MIPS_REL16:                  howto manager.      (line  369)
+* BFD_RELOC_MIPS_RELGOT:                 howto manager.      (line  370)
+* BFD_RELOC_MIPS_SCN_DISP:               howto manager.      (line  368)
+* BFD_RELOC_MIPS_SHIFT5:                 howto manager.      (line  361)
+* BFD_RELOC_MIPS_SHIFT6:                 howto manager.      (line  362)
+* BFD_RELOC_MIPS_SUB:                    howto manager.      (line  357)
+* BFD_RELOC_MIPS_TLS_DTPMOD32:           howto manager.      (line  372)
+* BFD_RELOC_MIPS_TLS_DTPMOD64:           howto manager.      (line  374)
+* BFD_RELOC_MIPS_TLS_DTPREL32:           howto manager.      (line  373)
+* BFD_RELOC_MIPS_TLS_DTPREL64:           howto manager.      (line  375)
+* BFD_RELOC_MIPS_TLS_DTPREL_HI16:        howto manager.      (line  378)
+* BFD_RELOC_MIPS_TLS_DTPREL_LO16:        howto manager.      (line  379)
+* BFD_RELOC_MIPS_TLS_GD:                 howto manager.      (line  376)
+* BFD_RELOC_MIPS_TLS_GOTTPREL:           howto manager.      (line  380)
+* BFD_RELOC_MIPS_TLS_LDM:                howto manager.      (line  377)
+* BFD_RELOC_MIPS_TLS_TPREL32:            howto manager.      (line  381)
+* BFD_RELOC_MIPS_TLS_TPREL64:            howto manager.      (line  382)
+* BFD_RELOC_MIPS_TLS_TPREL_HI16:         howto manager.      (line  383)
+* BFD_RELOC_MIPS_TLS_TPREL_LO16:         howto manager.      (line  384)
+* BFD_RELOC_MMIX_ADDR19:                 howto manager.      (line 1332)
+* BFD_RELOC_MMIX_ADDR27:                 howto manager.      (line 1336)
+* BFD_RELOC_MMIX_BASE_PLUS_OFFSET:       howto manager.      (line 1348)
+* BFD_RELOC_MMIX_CBRANCH:                howto manager.      (line 1312)
+* BFD_RELOC_MMIX_CBRANCH_1:              howto manager.      (line 1314)
+* BFD_RELOC_MMIX_CBRANCH_2:              howto manager.      (line 1315)
+* BFD_RELOC_MMIX_CBRANCH_3:              howto manager.      (line 1316)
+* BFD_RELOC_MMIX_CBRANCH_J:              howto manager.      (line 1313)
+* BFD_RELOC_MMIX_GETA:                   howto manager.      (line 1306)
+* BFD_RELOC_MMIX_GETA_1:                 howto manager.      (line 1307)
+* BFD_RELOC_MMIX_GETA_2:                 howto manager.      (line 1308)
+* BFD_RELOC_MMIX_GETA_3:                 howto manager.      (line 1309)
+* BFD_RELOC_MMIX_JMP:                    howto manager.      (line 1326)
+* BFD_RELOC_MMIX_JMP_1:                  howto manager.      (line 1327)
+* BFD_RELOC_MMIX_JMP_2:                  howto manager.      (line 1328)
+* BFD_RELOC_MMIX_JMP_3:                  howto manager.      (line 1329)
+* BFD_RELOC_MMIX_LOCAL:                  howto manager.      (line 1352)
+* BFD_RELOC_MMIX_PUSHJ:                  howto manager.      (line 1319)
+* BFD_RELOC_MMIX_PUSHJ_1:                howto manager.      (line 1320)
+* BFD_RELOC_MMIX_PUSHJ_2:                howto manager.      (line 1321)
+* BFD_RELOC_MMIX_PUSHJ_3:                howto manager.      (line 1322)
+* BFD_RELOC_MMIX_PUSHJ_STUBBABLE:        howto manager.      (line 1323)
+* BFD_RELOC_MMIX_REG:                    howto manager.      (line 1344)
+* BFD_RELOC_MMIX_REG_OR_BYTE:            howto manager.      (line 1340)
+* BFD_RELOC_MN10300_16_PCREL:            howto manager.      (line 1214)
+* BFD_RELOC_MN10300_32_PCREL:            howto manager.      (line 1210)
+* BFD_RELOC_MN10300_ALIGN:               howto manager.      (line  464)
+* BFD_RELOC_MN10300_COPY:                howto manager.      (line  447)
+* BFD_RELOC_MN10300_GLOB_DAT:            howto manager.      (line  450)
+* BFD_RELOC_MN10300_GOT16:               howto manager.      (line  443)
+* BFD_RELOC_MN10300_GOT24:               howto manager.      (line  439)
+* BFD_RELOC_MN10300_GOT32:               howto manager.      (line  435)
+* BFD_RELOC_MN10300_GOTOFF24:            howto manager.      (line  432)
+* BFD_RELOC_MN10300_JMP_SLOT:            howto manager.      (line  453)
+* BFD_RELOC_MN10300_RELATIVE:            howto manager.      (line  456)
+* BFD_RELOC_MN10300_SYM_DIFF:            howto manager.      (line  459)
+* BFD_RELOC_MSP430_10_PCREL:             howto manager.      (line 1987)
+* BFD_RELOC_MSP430_16:                   howto manager.      (line 1989)
+* BFD_RELOC_MSP430_16_BYTE:              howto manager.      (line 1991)
+* BFD_RELOC_MSP430_16_PCREL:             howto manager.      (line 1988)
+* BFD_RELOC_MSP430_16_PCREL_BYTE:        howto manager.      (line 1990)
+* BFD_RELOC_MSP430_2X_PCREL:             howto manager.      (line 1992)
+* BFD_RELOC_MSP430_RL_PCREL:             howto manager.      (line 1993)
+* BFD_RELOC_MT_GNU_VTENTRY:              howto manager.      (line 1981)
+* BFD_RELOC_MT_GNU_VTINHERIT:            howto manager.      (line 1978)
+* BFD_RELOC_MT_HI16:                     howto manager.      (line 1972)
+* BFD_RELOC_MT_LO16:                     howto manager.      (line 1975)
+* BFD_RELOC_MT_PC16:                     howto manager.      (line 1969)
+* BFD_RELOC_MT_PCINSN8:                  howto manager.      (line 1984)
 * BFD_RELOC_NONE:                        howto manager.      (line  116)
-* BFD_RELOC_NS32K_DISP_16:               howto manager.      (line  507)
-* BFD_RELOC_NS32K_DISP_16_PCREL:         howto manager.      (line  510)
-* BFD_RELOC_NS32K_DISP_32:               howto manager.      (line  508)
-* BFD_RELOC_NS32K_DISP_32_PCREL:         howto manager.      (line  511)
-* BFD_RELOC_NS32K_DISP_8:                howto manager.      (line  506)
-* BFD_RELOC_NS32K_DISP_8_PCREL:          howto manager.      (line  509)
-* BFD_RELOC_NS32K_IMM_16:                howto manager.      (line  501)
-* BFD_RELOC_NS32K_IMM_16_PCREL:          howto manager.      (line  504)
-* BFD_RELOC_NS32K_IMM_32:                howto manager.      (line  502)
-* BFD_RELOC_NS32K_IMM_32_PCREL:          howto manager.      (line  505)
-* BFD_RELOC_NS32K_IMM_8:                 howto manager.      (line  500)
-* BFD_RELOC_NS32K_IMM_8_PCREL:           howto manager.      (line  503)
-* BFD_RELOC_OPENRISC_ABS_26:             howto manager.      (line 1860)
-* BFD_RELOC_OPENRISC_REL_26:             howto manager.      (line 1861)
-* BFD_RELOC_PDP11_DISP_6_PCREL:          howto manager.      (line  515)
-* BFD_RELOC_PDP11_DISP_8_PCREL:          howto manager.      (line  514)
-* BFD_RELOC_PJ_CODE_DIR16:               howto manager.      (line  520)
-* BFD_RELOC_PJ_CODE_DIR32:               howto manager.      (line  521)
-* BFD_RELOC_PJ_CODE_HI16:                howto manager.      (line  518)
-* BFD_RELOC_PJ_CODE_LO16:                howto manager.      (line  519)
-* BFD_RELOC_PJ_CODE_REL16:               howto manager.      (line  522)
-* BFD_RELOC_PJ_CODE_REL32:               howto manager.      (line  523)
-* BFD_RELOC_PPC64_ADDR16_DS:             howto manager.      (line  568)
-* BFD_RELOC_PPC64_ADDR16_LO_DS:          howto manager.      (line  569)
-* BFD_RELOC_PPC64_DTPREL16_DS:           howto manager.      (line  615)
-* BFD_RELOC_PPC64_DTPREL16_HIGHER:       howto manager.      (line  617)
-* BFD_RELOC_PPC64_DTPREL16_HIGHERA:      howto manager.      (line  618)
-* BFD_RELOC_PPC64_DTPREL16_HIGHEST:      howto manager.      (line  619)
-* BFD_RELOC_PPC64_DTPREL16_HIGHESTA:     howto manager.      (line  620)
-* BFD_RELOC_PPC64_DTPREL16_LO_DS:        howto manager.      (line  616)
-* BFD_RELOC_PPC64_GOT16_DS:              howto manager.      (line  570)
-* BFD_RELOC_PPC64_GOT16_LO_DS:           howto manager.      (line  571)
-* BFD_RELOC_PPC64_HIGHER:                howto manager.      (line  556)
-* BFD_RELOC_PPC64_HIGHER_S:              howto manager.      (line  557)
-* BFD_RELOC_PPC64_HIGHEST:               howto manager.      (line  558)
-* BFD_RELOC_PPC64_HIGHEST_S:             howto manager.      (line  559)
-* BFD_RELOC_PPC64_PLT16_LO_DS:           howto manager.      (line  572)
-* BFD_RELOC_PPC64_PLTGOT16:              howto manager.      (line  564)
-* BFD_RELOC_PPC64_PLTGOT16_DS:           howto manager.      (line  577)
-* BFD_RELOC_PPC64_PLTGOT16_HA:           howto manager.      (line  567)
-* BFD_RELOC_PPC64_PLTGOT16_HI:           howto manager.      (line  566)
-* BFD_RELOC_PPC64_PLTGOT16_LO:           howto manager.      (line  565)
-* BFD_RELOC_PPC64_PLTGOT16_LO_DS:        howto manager.      (line  578)
-* BFD_RELOC_PPC64_SECTOFF_DS:            howto manager.      (line  573)
-* BFD_RELOC_PPC64_SECTOFF_LO_DS:         howto manager.      (line  574)
-* BFD_RELOC_PPC64_TOC:                   howto manager.      (line  563)
-* BFD_RELOC_PPC64_TOC16_DS:              howto manager.      (line  575)
-* BFD_RELOC_PPC64_TOC16_HA:              howto manager.      (line  562)
-* BFD_RELOC_PPC64_TOC16_HI:              howto manager.      (line  561)
-* BFD_RELOC_PPC64_TOC16_LO:              howto manager.      (line  560)
-* BFD_RELOC_PPC64_TOC16_LO_DS:           howto manager.      (line  576)
-* BFD_RELOC_PPC64_TPREL16_DS:            howto manager.      (line  609)
-* BFD_RELOC_PPC64_TPREL16_HIGHER:        howto manager.      (line  611)
-* BFD_RELOC_PPC64_TPREL16_HIGHERA:       howto manager.      (line  612)
-* BFD_RELOC_PPC64_TPREL16_HIGHEST:       howto manager.      (line  613)
-* BFD_RELOC_PPC64_TPREL16_HIGHESTA:      howto manager.      (line  614)
-* BFD_RELOC_PPC64_TPREL16_LO_DS:         howto manager.      (line  610)
-* BFD_RELOC_PPC_B16:                     howto manager.      (line  529)
-* BFD_RELOC_PPC_B16_BRNTAKEN:            howto manager.      (line  531)
-* BFD_RELOC_PPC_B16_BRTAKEN:             howto manager.      (line  530)
-* BFD_RELOC_PPC_B26:                     howto manager.      (line  526)
-* BFD_RELOC_PPC_BA16:                    howto manager.      (line  532)
-* BFD_RELOC_PPC_BA16_BRNTAKEN:           howto manager.      (line  534)
-* BFD_RELOC_PPC_BA16_BRTAKEN:            howto manager.      (line  533)
-* BFD_RELOC_PPC_BA26:                    howto manager.      (line  527)
-* BFD_RELOC_PPC_COPY:                    howto manager.      (line  535)
-* BFD_RELOC_PPC_DTPMOD:                  howto manager.      (line  582)
-* BFD_RELOC_PPC_DTPREL:                  howto manager.      (line  592)
-* BFD_RELOC_PPC_DTPREL16:                howto manager.      (line  588)
-* BFD_RELOC_PPC_DTPREL16_HA:             howto manager.      (line  591)
-* BFD_RELOC_PPC_DTPREL16_HI:             howto manager.      (line  590)
-* BFD_RELOC_PPC_DTPREL16_LO:             howto manager.      (line  589)
-* BFD_RELOC_PPC_EMB_BIT_FLD:             howto manager.      (line  554)
-* BFD_RELOC_PPC_EMB_MRKREF:              howto manager.      (line  549)
-* BFD_RELOC_PPC_EMB_NADDR16:             howto manager.      (line  541)
-* BFD_RELOC_PPC_EMB_NADDR16_HA:          howto manager.      (line  544)
-* BFD_RELOC_PPC_EMB_NADDR16_HI:          howto manager.      (line  543)
-* BFD_RELOC_PPC_EMB_NADDR16_LO:          howto manager.      (line  542)
-* BFD_RELOC_PPC_EMB_NADDR32:             howto manager.      (line  540)
-* BFD_RELOC_PPC_EMB_RELSDA:              howto manager.      (line  555)
-* BFD_RELOC_PPC_EMB_RELSEC16:            howto manager.      (line  550)
-* BFD_RELOC_PPC_EMB_RELST_HA:            howto manager.      (line  553)
-* BFD_RELOC_PPC_EMB_RELST_HI:            howto manager.      (line  552)
-* BFD_RELOC_PPC_EMB_RELST_LO:            howto manager.      (line  551)
-* BFD_RELOC_PPC_EMB_SDA21:               howto manager.      (line  548)
-* BFD_RELOC_PPC_EMB_SDA2I16:             howto manager.      (line  546)
-* BFD_RELOC_PPC_EMB_SDA2REL:             howto manager.      (line  547)
-* BFD_RELOC_PPC_EMB_SDAI16:              howto manager.      (line  545)
-* BFD_RELOC_PPC_GLOB_DAT:                howto manager.      (line  536)
-* BFD_RELOC_PPC_GOT_DTPREL16:            howto manager.      (line  605)
-* BFD_RELOC_PPC_GOT_DTPREL16_HA:         howto manager.      (line  608)
-* BFD_RELOC_PPC_GOT_DTPREL16_HI:         howto manager.      (line  607)
-* BFD_RELOC_PPC_GOT_DTPREL16_LO:         howto manager.      (line  606)
-* BFD_RELOC_PPC_GOT_TLSGD16:             howto manager.      (line  593)
-* BFD_RELOC_PPC_GOT_TLSGD16_HA:          howto manager.      (line  596)
-* BFD_RELOC_PPC_GOT_TLSGD16_HI:          howto manager.      (line  595)
-* BFD_RELOC_PPC_GOT_TLSGD16_LO:          howto manager.      (line  594)
-* BFD_RELOC_PPC_GOT_TLSLD16:             howto manager.      (line  597)
-* BFD_RELOC_PPC_GOT_TLSLD16_HA:          howto manager.      (line  600)
-* BFD_RELOC_PPC_GOT_TLSLD16_HI:          howto manager.      (line  599)
-* BFD_RELOC_PPC_GOT_TLSLD16_LO:          howto manager.      (line  598)
-* BFD_RELOC_PPC_GOT_TPREL16:             howto manager.      (line  601)
-* BFD_RELOC_PPC_GOT_TPREL16_HA:          howto manager.      (line  604)
-* BFD_RELOC_PPC_GOT_TPREL16_HI:          howto manager.      (line  603)
-* BFD_RELOC_PPC_GOT_TPREL16_LO:          howto manager.      (line  602)
-* BFD_RELOC_PPC_JMP_SLOT:                howto manager.      (line  537)
-* BFD_RELOC_PPC_LOCAL24PC:               howto manager.      (line  539)
-* BFD_RELOC_PPC_RELATIVE:                howto manager.      (line  538)
-* BFD_RELOC_PPC_TLS:                     howto manager.      (line  581)
-* BFD_RELOC_PPC_TOC16:                   howto manager.      (line  528)
-* BFD_RELOC_PPC_TPREL:                   howto manager.      (line  587)
-* BFD_RELOC_PPC_TPREL16:                 howto manager.      (line  583)
-* BFD_RELOC_PPC_TPREL16_HA:              howto manager.      (line  586)
-* BFD_RELOC_PPC_TPREL16_HI:              howto manager.      (line  585)
-* BFD_RELOC_PPC_TPREL16_LO:              howto manager.      (line  584)
+* BFD_RELOC_NS32K_DISP_16:               howto manager.      (line  528)
+* BFD_RELOC_NS32K_DISP_16_PCREL:         howto manager.      (line  531)
+* BFD_RELOC_NS32K_DISP_32:               howto manager.      (line  529)
+* BFD_RELOC_NS32K_DISP_32_PCREL:         howto manager.      (line  532)
+* BFD_RELOC_NS32K_DISP_8:                howto manager.      (line  527)
+* BFD_RELOC_NS32K_DISP_8_PCREL:          howto manager.      (line  530)
+* BFD_RELOC_NS32K_IMM_16:                howto manager.      (line  522)
+* BFD_RELOC_NS32K_IMM_16_PCREL:          howto manager.      (line  525)
+* BFD_RELOC_NS32K_IMM_32:                howto manager.      (line  523)
+* BFD_RELOC_NS32K_IMM_32_PCREL:          howto manager.      (line  526)
+* BFD_RELOC_NS32K_IMM_8:                 howto manager.      (line  521)
+* BFD_RELOC_NS32K_IMM_8_PCREL:           howto manager.      (line  524)
+* BFD_RELOC_OPENRISC_ABS_26:             howto manager.      (line 1938)
+* BFD_RELOC_OPENRISC_REL_26:             howto manager.      (line 1939)
+* BFD_RELOC_PDP11_DISP_6_PCREL:          howto manager.      (line  536)
+* BFD_RELOC_PDP11_DISP_8_PCREL:          howto manager.      (line  535)
+* BFD_RELOC_PJ_CODE_DIR16:               howto manager.      (line  541)
+* BFD_RELOC_PJ_CODE_DIR32:               howto manager.      (line  542)
+* BFD_RELOC_PJ_CODE_HI16:                howto manager.      (line  539)
+* BFD_RELOC_PJ_CODE_LO16:                howto manager.      (line  540)
+* BFD_RELOC_PJ_CODE_REL16:               howto manager.      (line  543)
+* BFD_RELOC_PJ_CODE_REL32:               howto manager.      (line  544)
+* BFD_RELOC_PPC64_ADDR16_DS:             howto manager.      (line  589)
+* BFD_RELOC_PPC64_ADDR16_LO_DS:          howto manager.      (line  590)
+* BFD_RELOC_PPC64_DTPREL16_DS:           howto manager.      (line  636)
+* BFD_RELOC_PPC64_DTPREL16_HIGHER:       howto manager.      (line  638)
+* BFD_RELOC_PPC64_DTPREL16_HIGHERA:      howto manager.      (line  639)
+* BFD_RELOC_PPC64_DTPREL16_HIGHEST:      howto manager.      (line  640)
+* BFD_RELOC_PPC64_DTPREL16_HIGHESTA:     howto manager.      (line  641)
+* BFD_RELOC_PPC64_DTPREL16_LO_DS:        howto manager.      (line  637)
+* BFD_RELOC_PPC64_GOT16_DS:              howto manager.      (line  591)
+* BFD_RELOC_PPC64_GOT16_LO_DS:           howto manager.      (line  592)
+* BFD_RELOC_PPC64_HIGHER:                howto manager.      (line  577)
+* BFD_RELOC_PPC64_HIGHER_S:              howto manager.      (line  578)
+* BFD_RELOC_PPC64_HIGHEST:               howto manager.      (line  579)
+* BFD_RELOC_PPC64_HIGHEST_S:             howto manager.      (line  580)
+* BFD_RELOC_PPC64_PLT16_LO_DS:           howto manager.      (line  593)
+* BFD_RELOC_PPC64_PLTGOT16:              howto manager.      (line  585)
+* BFD_RELOC_PPC64_PLTGOT16_DS:           howto manager.      (line  598)
+* BFD_RELOC_PPC64_PLTGOT16_HA:           howto manager.      (line  588)
+* BFD_RELOC_PPC64_PLTGOT16_HI:           howto manager.      (line  587)
+* BFD_RELOC_PPC64_PLTGOT16_LO:           howto manager.      (line  586)
+* BFD_RELOC_PPC64_PLTGOT16_LO_DS:        howto manager.      (line  599)
+* BFD_RELOC_PPC64_SECTOFF_DS:            howto manager.      (line  594)
+* BFD_RELOC_PPC64_SECTOFF_LO_DS:         howto manager.      (line  595)
+* BFD_RELOC_PPC64_TOC:                   howto manager.      (line  584)
+* BFD_RELOC_PPC64_TOC16_DS:              howto manager.      (line  596)
+* BFD_RELOC_PPC64_TOC16_HA:              howto manager.      (line  583)
+* BFD_RELOC_PPC64_TOC16_HI:              howto manager.      (line  582)
+* BFD_RELOC_PPC64_TOC16_LO:              howto manager.      (line  581)
+* BFD_RELOC_PPC64_TOC16_LO_DS:           howto manager.      (line  597)
+* BFD_RELOC_PPC64_TPREL16_DS:            howto manager.      (line  630)
+* BFD_RELOC_PPC64_TPREL16_HIGHER:        howto manager.      (line  632)
+* BFD_RELOC_PPC64_TPREL16_HIGHERA:       howto manager.      (line  633)
+* BFD_RELOC_PPC64_TPREL16_HIGHEST:       howto manager.      (line  634)
+* BFD_RELOC_PPC64_TPREL16_HIGHESTA:      howto manager.      (line  635)
+* BFD_RELOC_PPC64_TPREL16_LO_DS:         howto manager.      (line  631)
+* BFD_RELOC_PPC_B16:                     howto manager.      (line  550)
+* BFD_RELOC_PPC_B16_BRNTAKEN:            howto manager.      (line  552)
+* BFD_RELOC_PPC_B16_BRTAKEN:             howto manager.      (line  551)
+* BFD_RELOC_PPC_B26:                     howto manager.      (line  547)
+* BFD_RELOC_PPC_BA16:                    howto manager.      (line  553)
+* BFD_RELOC_PPC_BA16_BRNTAKEN:           howto manager.      (line  555)
+* BFD_RELOC_PPC_BA16_BRTAKEN:            howto manager.      (line  554)
+* BFD_RELOC_PPC_BA26:                    howto manager.      (line  548)
+* BFD_RELOC_PPC_COPY:                    howto manager.      (line  556)
+* BFD_RELOC_PPC_DTPMOD:                  howto manager.      (line  603)
+* BFD_RELOC_PPC_DTPREL:                  howto manager.      (line  613)
+* BFD_RELOC_PPC_DTPREL16:                howto manager.      (line  609)
+* BFD_RELOC_PPC_DTPREL16_HA:             howto manager.      (line  612)
+* BFD_RELOC_PPC_DTPREL16_HI:             howto manager.      (line  611)
+* BFD_RELOC_PPC_DTPREL16_LO:             howto manager.      (line  610)
+* BFD_RELOC_PPC_EMB_BIT_FLD:             howto manager.      (line  575)
+* BFD_RELOC_PPC_EMB_MRKREF:              howto manager.      (line  570)
+* BFD_RELOC_PPC_EMB_NADDR16:             howto manager.      (line  562)
+* BFD_RELOC_PPC_EMB_NADDR16_HA:          howto manager.      (line  565)
+* BFD_RELOC_PPC_EMB_NADDR16_HI:          howto manager.      (line  564)
+* BFD_RELOC_PPC_EMB_NADDR16_LO:          howto manager.      (line  563)
+* BFD_RELOC_PPC_EMB_NADDR32:             howto manager.      (line  561)
+* BFD_RELOC_PPC_EMB_RELSDA:              howto manager.      (line  576)
+* BFD_RELOC_PPC_EMB_RELSEC16:            howto manager.      (line  571)
+* BFD_RELOC_PPC_EMB_RELST_HA:            howto manager.      (line  574)
+* BFD_RELOC_PPC_EMB_RELST_HI:            howto manager.      (line  573)
+* BFD_RELOC_PPC_EMB_RELST_LO:            howto manager.      (line  572)
+* BFD_RELOC_PPC_EMB_SDA21:               howto manager.      (line  569)
+* BFD_RELOC_PPC_EMB_SDA2I16:             howto manager.      (line  567)
+* BFD_RELOC_PPC_EMB_SDA2REL:             howto manager.      (line  568)
+* BFD_RELOC_PPC_EMB_SDAI16:              howto manager.      (line  566)
+* BFD_RELOC_PPC_GLOB_DAT:                howto manager.      (line  557)
+* BFD_RELOC_PPC_GOT_DTPREL16:            howto manager.      (line  626)
+* BFD_RELOC_PPC_GOT_DTPREL16_HA:         howto manager.      (line  629)
+* BFD_RELOC_PPC_GOT_DTPREL16_HI:         howto manager.      (line  628)
+* BFD_RELOC_PPC_GOT_DTPREL16_LO:         howto manager.      (line  627)
+* BFD_RELOC_PPC_GOT_TLSGD16:             howto manager.      (line  614)
+* BFD_RELOC_PPC_GOT_TLSGD16_HA:          howto manager.      (line  617)
+* BFD_RELOC_PPC_GOT_TLSGD16_HI:          howto manager.      (line  616)
+* BFD_RELOC_PPC_GOT_TLSGD16_LO:          howto manager.      (line  615)
+* BFD_RELOC_PPC_GOT_TLSLD16:             howto manager.      (line  618)
+* BFD_RELOC_PPC_GOT_TLSLD16_HA:          howto manager.      (line  621)
+* BFD_RELOC_PPC_GOT_TLSLD16_HI:          howto manager.      (line  620)
+* BFD_RELOC_PPC_GOT_TLSLD16_LO:          howto manager.      (line  619)
+* BFD_RELOC_PPC_GOT_TPREL16:             howto manager.      (line  622)
+* BFD_RELOC_PPC_GOT_TPREL16_HA:          howto manager.      (line  625)
+* BFD_RELOC_PPC_GOT_TPREL16_HI:          howto manager.      (line  624)
+* BFD_RELOC_PPC_GOT_TPREL16_LO:          howto manager.      (line  623)
+* BFD_RELOC_PPC_JMP_SLOT:                howto manager.      (line  558)
+* BFD_RELOC_PPC_LOCAL24PC:               howto manager.      (line  560)
+* BFD_RELOC_PPC_RELATIVE:                howto manager.      (line  559)
+* BFD_RELOC_PPC_TLS:                     howto manager.      (line  602)
+* BFD_RELOC_PPC_TOC16:                   howto manager.      (line  549)
+* BFD_RELOC_PPC_TPREL:                   howto manager.      (line  608)
+* BFD_RELOC_PPC_TPREL16:                 howto manager.      (line  604)
+* BFD_RELOC_PPC_TPREL16_HA:              howto manager.      (line  607)
+* BFD_RELOC_PPC_TPREL16_HI:              howto manager.      (line  606)
+* BFD_RELOC_PPC_TPREL16_LO:              howto manager.      (line  605)
+* BFD_RELOC_RELC:                        howto manager.      (line 1955)
 * BFD_RELOC_RVA:                         howto manager.      (line   85)
-* BFD_RELOC_SCORE16_BRANCH:              howto manager.      (line 1535)
-* BFD_RELOC_SCORE16_JMP:                 howto manager.      (line 1532)
-* BFD_RELOC_SCORE_BRANCH:                howto manager.      (line 1529)
-* BFD_RELOC_SCORE_CALL15:                howto manager.      (line 1540)
-* BFD_RELOC_SCORE_DUMMY1:                howto manager.      (line 1519)
-* BFD_RELOC_SCORE_DUMMY2:                howto manager.      (line 1525)
-* BFD_RELOC_SCORE_DUMMY_HI16:            howto manager.      (line 1541)
-* BFD_RELOC_SCORE_GOT15:                 howto manager.      (line 1538)
-* BFD_RELOC_SCORE_GOT_LO16:              howto manager.      (line 1539)
-* BFD_RELOC_SCORE_GPREL15:               howto manager.      (line 1522)
-* BFD_RELOC_SCORE_JMP:                   howto manager.      (line 1526)
-* BFD_RELOC_SH_ALIGN:                    howto manager.      (line  800)
-* BFD_RELOC_SH_CODE:                     howto manager.      (line  801)
-* BFD_RELOC_SH_COPY:                     howto manager.      (line  806)
-* BFD_RELOC_SH_COPY64:                   howto manager.      (line  831)
-* BFD_RELOC_SH_COUNT:                    howto manager.      (line  799)
-* BFD_RELOC_SH_DATA:                     howto manager.      (line  802)
-* BFD_RELOC_SH_DISP12:                   howto manager.      (line  782)
-* BFD_RELOC_SH_DISP12BY2:                howto manager.      (line  783)
-* BFD_RELOC_SH_DISP12BY4:                howto manager.      (line  784)
-* BFD_RELOC_SH_DISP12BY8:                howto manager.      (line  785)
-* BFD_RELOC_SH_DISP20:                   howto manager.      (line  786)
-* BFD_RELOC_SH_DISP20BY8:                howto manager.      (line  787)
-* BFD_RELOC_SH_GLOB_DAT:                 howto manager.      (line  807)
-* BFD_RELOC_SH_GLOB_DAT64:               howto manager.      (line  832)
-* BFD_RELOC_SH_GOT10BY4:                 howto manager.      (line  835)
-* BFD_RELOC_SH_GOT10BY8:                 howto manager.      (line  836)
-* BFD_RELOC_SH_GOT_HI16:                 howto manager.      (line  814)
-* BFD_RELOC_SH_GOT_LOW16:                howto manager.      (line  811)
-* BFD_RELOC_SH_GOT_MEDHI16:              howto manager.      (line  813)
-* BFD_RELOC_SH_GOT_MEDLOW16:             howto manager.      (line  812)
-* BFD_RELOC_SH_GOTOFF_HI16:              howto manager.      (line  826)
-* BFD_RELOC_SH_GOTOFF_LOW16:             howto manager.      (line  823)
-* BFD_RELOC_SH_GOTOFF_MEDHI16:           howto manager.      (line  825)
-* BFD_RELOC_SH_GOTOFF_MEDLOW16:          howto manager.      (line  824)
-* BFD_RELOC_SH_GOTPC:                    howto manager.      (line  810)
-* BFD_RELOC_SH_GOTPC_HI16:               howto manager.      (line  830)
-* BFD_RELOC_SH_GOTPC_LOW16:              howto manager.      (line  827)
-* BFD_RELOC_SH_GOTPC_MEDHI16:            howto manager.      (line  829)
-* BFD_RELOC_SH_GOTPC_MEDLOW16:           howto manager.      (line  828)
-* BFD_RELOC_SH_GOTPLT10BY4:              howto manager.      (line  837)
-* BFD_RELOC_SH_GOTPLT10BY8:              howto manager.      (line  838)
-* BFD_RELOC_SH_GOTPLT32:                 howto manager.      (line  839)
-* BFD_RELOC_SH_GOTPLT_HI16:              howto manager.      (line  818)
-* BFD_RELOC_SH_GOTPLT_LOW16:             howto manager.      (line  815)
-* BFD_RELOC_SH_GOTPLT_MEDHI16:           howto manager.      (line  817)
-* BFD_RELOC_SH_GOTPLT_MEDLOW16:          howto manager.      (line  816)
-* BFD_RELOC_SH_IMM3:                     howto manager.      (line  780)
-* BFD_RELOC_SH_IMM3U:                    howto manager.      (line  781)
-* BFD_RELOC_SH_IMM4:                     howto manager.      (line  788)
-* BFD_RELOC_SH_IMM4BY2:                  howto manager.      (line  789)
-* BFD_RELOC_SH_IMM4BY4:                  howto manager.      (line  790)
-* BFD_RELOC_SH_IMM8:                     howto manager.      (line  791)
-* BFD_RELOC_SH_IMM8BY2:                  howto manager.      (line  792)
-* BFD_RELOC_SH_IMM8BY4:                  howto manager.      (line  793)
-* BFD_RELOC_SH_IMM_HI16:                 howto manager.      (line  857)
-* BFD_RELOC_SH_IMM_HI16_PCREL:           howto manager.      (line  858)
-* BFD_RELOC_SH_IMM_LOW16:                howto manager.      (line  851)
-* BFD_RELOC_SH_IMM_LOW16_PCREL:          howto manager.      (line  852)
-* BFD_RELOC_SH_IMM_MEDHI16:              howto manager.      (line  855)
-* BFD_RELOC_SH_IMM_MEDHI16_PCREL:        howto manager.      (line  856)
-* BFD_RELOC_SH_IMM_MEDLOW16:             howto manager.      (line  853)
-* BFD_RELOC_SH_IMM_MEDLOW16_PCREL:       howto manager.      (line  854)
-* BFD_RELOC_SH_IMMS10:                   howto manager.      (line  845)
-* BFD_RELOC_SH_IMMS10BY2:                howto manager.      (line  846)
-* BFD_RELOC_SH_IMMS10BY4:                howto manager.      (line  847)
-* BFD_RELOC_SH_IMMS10BY8:                howto manager.      (line  848)
-* BFD_RELOC_SH_IMMS16:                   howto manager.      (line  849)
-* BFD_RELOC_SH_IMMS6:                    howto manager.      (line  842)
-* BFD_RELOC_SH_IMMS6BY32:                howto manager.      (line  843)
-* BFD_RELOC_SH_IMMU16:                   howto manager.      (line  850)
-* BFD_RELOC_SH_IMMU5:                    howto manager.      (line  841)
-* BFD_RELOC_SH_IMMU6:                    howto manager.      (line  844)
-* BFD_RELOC_SH_JMP_SLOT:                 howto manager.      (line  808)
-* BFD_RELOC_SH_JMP_SLOT64:               howto manager.      (line  833)
-* BFD_RELOC_SH_LABEL:                    howto manager.      (line  803)
-* BFD_RELOC_SH_LOOP_END:                 howto manager.      (line  805)
-* BFD_RELOC_SH_LOOP_START:               howto manager.      (line  804)
-* BFD_RELOC_SH_PCDISP12BY2:              howto manager.      (line  779)
-* BFD_RELOC_SH_PCDISP8BY2:               howto manager.      (line  778)
-* BFD_RELOC_SH_PCRELIMM8BY2:             howto manager.      (line  794)
-* BFD_RELOC_SH_PCRELIMM8BY4:             howto manager.      (line  795)
-* BFD_RELOC_SH_PLT_HI16:                 howto manager.      (line  822)
-* BFD_RELOC_SH_PLT_LOW16:                howto manager.      (line  819)
-* BFD_RELOC_SH_PLT_MEDHI16:              howto manager.      (line  821)
-* BFD_RELOC_SH_PLT_MEDLOW16:             howto manager.      (line  820)
-* BFD_RELOC_SH_PT_16:                    howto manager.      (line  859)
-* BFD_RELOC_SH_RELATIVE:                 howto manager.      (line  809)
-* BFD_RELOC_SH_RELATIVE64:               howto manager.      (line  834)
-* BFD_RELOC_SH_SHMEDIA_CODE:             howto manager.      (line  840)
-* BFD_RELOC_SH_SWITCH16:                 howto manager.      (line  796)
-* BFD_RELOC_SH_SWITCH32:                 howto manager.      (line  797)
-* BFD_RELOC_SH_TLS_DTPMOD32:             howto manager.      (line  865)
-* BFD_RELOC_SH_TLS_DTPOFF32:             howto manager.      (line  866)
-* BFD_RELOC_SH_TLS_GD_32:                howto manager.      (line  860)
-* BFD_RELOC_SH_TLS_IE_32:                howto manager.      (line  863)
-* BFD_RELOC_SH_TLS_LD_32:                howto manager.      (line  861)
-* BFD_RELOC_SH_TLS_LDO_32:               howto manager.      (line  862)
-* BFD_RELOC_SH_TLS_LE_32:                howto manager.      (line  864)
-* BFD_RELOC_SH_TLS_TPOFF32:              howto manager.      (line  867)
-* BFD_RELOC_SH_USES:                     howto manager.      (line  798)
+* BFD_RELOC_SCORE16_BRANCH:              howto manager.      (line 1581)
+* BFD_RELOC_SCORE16_JMP:                 howto manager.      (line 1578)
+* BFD_RELOC_SCORE_BRANCH:                howto manager.      (line 1575)
+* BFD_RELOC_SCORE_CALL15:                howto manager.      (line 1586)
+* BFD_RELOC_SCORE_DUMMY1:                howto manager.      (line 1565)
+* BFD_RELOC_SCORE_DUMMY2:                howto manager.      (line 1571)
+* BFD_RELOC_SCORE_DUMMY_HI16:            howto manager.      (line 1587)
+* BFD_RELOC_SCORE_GOT15:                 howto manager.      (line 1584)
+* BFD_RELOC_SCORE_GOT_LO16:              howto manager.      (line 1585)
+* BFD_RELOC_SCORE_GPREL15:               howto manager.      (line 1568)
+* BFD_RELOC_SCORE_JMP:                   howto manager.      (line 1572)
+* BFD_RELOC_SH_ALIGN:                    howto manager.      (line  824)
+* BFD_RELOC_SH_CODE:                     howto manager.      (line  825)
+* BFD_RELOC_SH_COPY:                     howto manager.      (line  830)
+* BFD_RELOC_SH_COPY64:                   howto manager.      (line  855)
+* BFD_RELOC_SH_COUNT:                    howto manager.      (line  823)
+* BFD_RELOC_SH_DATA:                     howto manager.      (line  826)
+* BFD_RELOC_SH_DISP12:                   howto manager.      (line  806)
+* BFD_RELOC_SH_DISP12BY2:                howto manager.      (line  807)
+* BFD_RELOC_SH_DISP12BY4:                howto manager.      (line  808)
+* BFD_RELOC_SH_DISP12BY8:                howto manager.      (line  809)
+* BFD_RELOC_SH_DISP20:                   howto manager.      (line  810)
+* BFD_RELOC_SH_DISP20BY8:                howto manager.      (line  811)
+* BFD_RELOC_SH_GLOB_DAT:                 howto manager.      (line  831)
+* BFD_RELOC_SH_GLOB_DAT64:               howto manager.      (line  856)
+* BFD_RELOC_SH_GOT10BY4:                 howto manager.      (line  859)
+* BFD_RELOC_SH_GOT10BY8:                 howto manager.      (line  860)
+* BFD_RELOC_SH_GOT_HI16:                 howto manager.      (line  838)
+* BFD_RELOC_SH_GOT_LOW16:                howto manager.      (line  835)
+* BFD_RELOC_SH_GOT_MEDHI16:              howto manager.      (line  837)
+* BFD_RELOC_SH_GOT_MEDLOW16:             howto manager.      (line  836)
+* BFD_RELOC_SH_GOTOFF_HI16:              howto manager.      (line  850)
+* BFD_RELOC_SH_GOTOFF_LOW16:             howto manager.      (line  847)
+* BFD_RELOC_SH_GOTOFF_MEDHI16:           howto manager.      (line  849)
+* BFD_RELOC_SH_GOTOFF_MEDLOW16:          howto manager.      (line  848)
+* BFD_RELOC_SH_GOTPC:                    howto manager.      (line  834)
+* BFD_RELOC_SH_GOTPC_HI16:               howto manager.      (line  854)
+* BFD_RELOC_SH_GOTPC_LOW16:              howto manager.      (line  851)
+* BFD_RELOC_SH_GOTPC_MEDHI16:            howto manager.      (line  853)
+* BFD_RELOC_SH_GOTPC_MEDLOW16:           howto manager.      (line  852)
+* BFD_RELOC_SH_GOTPLT10BY4:              howto manager.      (line  861)
+* BFD_RELOC_SH_GOTPLT10BY8:              howto manager.      (line  862)
+* BFD_RELOC_SH_GOTPLT32:                 howto manager.      (line  863)
+* BFD_RELOC_SH_GOTPLT_HI16:              howto manager.      (line  842)
+* BFD_RELOC_SH_GOTPLT_LOW16:             howto manager.      (line  839)
+* BFD_RELOC_SH_GOTPLT_MEDHI16:           howto manager.      (line  841)
+* BFD_RELOC_SH_GOTPLT_MEDLOW16:          howto manager.      (line  840)
+* BFD_RELOC_SH_IMM3:                     howto manager.      (line  804)
+* BFD_RELOC_SH_IMM3U:                    howto manager.      (line  805)
+* BFD_RELOC_SH_IMM4:                     howto manager.      (line  812)
+* BFD_RELOC_SH_IMM4BY2:                  howto manager.      (line  813)
+* BFD_RELOC_SH_IMM4BY4:                  howto manager.      (line  814)
+* BFD_RELOC_SH_IMM8:                     howto manager.      (line  815)
+* BFD_RELOC_SH_IMM8BY2:                  howto manager.      (line  816)
+* BFD_RELOC_SH_IMM8BY4:                  howto manager.      (line  817)
+* BFD_RELOC_SH_IMM_HI16:                 howto manager.      (line  881)
+* BFD_RELOC_SH_IMM_HI16_PCREL:           howto manager.      (line  882)
+* BFD_RELOC_SH_IMM_LOW16:                howto manager.      (line  875)
+* BFD_RELOC_SH_IMM_LOW16_PCREL:          howto manager.      (line  876)
+* BFD_RELOC_SH_IMM_MEDHI16:              howto manager.      (line  879)
+* BFD_RELOC_SH_IMM_MEDHI16_PCREL:        howto manager.      (line  880)
+* BFD_RELOC_SH_IMM_MEDLOW16:             howto manager.      (line  877)
+* BFD_RELOC_SH_IMM_MEDLOW16_PCREL:       howto manager.      (line  878)
+* BFD_RELOC_SH_IMMS10:                   howto manager.      (line  869)
+* BFD_RELOC_SH_IMMS10BY2:                howto manager.      (line  870)
+* BFD_RELOC_SH_IMMS10BY4:                howto manager.      (line  871)
+* BFD_RELOC_SH_IMMS10BY8:                howto manager.      (line  872)
+* BFD_RELOC_SH_IMMS16:                   howto manager.      (line  873)
+* BFD_RELOC_SH_IMMS6:                    howto manager.      (line  866)
+* BFD_RELOC_SH_IMMS6BY32:                howto manager.      (line  867)
+* BFD_RELOC_SH_IMMU16:                   howto manager.      (line  874)
+* BFD_RELOC_SH_IMMU5:                    howto manager.      (line  865)
+* BFD_RELOC_SH_IMMU6:                    howto manager.      (line  868)
+* BFD_RELOC_SH_JMP_SLOT:                 howto manager.      (line  832)
+* BFD_RELOC_SH_JMP_SLOT64:               howto manager.      (line  857)
+* BFD_RELOC_SH_LABEL:                    howto manager.      (line  827)
+* BFD_RELOC_SH_LOOP_END:                 howto manager.      (line  829)
+* BFD_RELOC_SH_LOOP_START:               howto manager.      (line  828)
+* BFD_RELOC_SH_PCDISP12BY2:              howto manager.      (line  803)
+* BFD_RELOC_SH_PCDISP8BY2:               howto manager.      (line  802)
+* BFD_RELOC_SH_PCRELIMM8BY2:             howto manager.      (line  818)
+* BFD_RELOC_SH_PCRELIMM8BY4:             howto manager.      (line  819)
+* BFD_RELOC_SH_PLT_HI16:                 howto manager.      (line  846)
+* BFD_RELOC_SH_PLT_LOW16:                howto manager.      (line  843)
+* BFD_RELOC_SH_PLT_MEDHI16:              howto manager.      (line  845)
+* BFD_RELOC_SH_PLT_MEDLOW16:             howto manager.      (line  844)
+* BFD_RELOC_SH_PT_16:                    howto manager.      (line  883)
+* BFD_RELOC_SH_RELATIVE:                 howto manager.      (line  833)
+* BFD_RELOC_SH_RELATIVE64:               howto manager.      (line  858)
+* BFD_RELOC_SH_SHMEDIA_CODE:             howto manager.      (line  864)
+* BFD_RELOC_SH_SWITCH16:                 howto manager.      (line  820)
+* BFD_RELOC_SH_SWITCH32:                 howto manager.      (line  821)
+* BFD_RELOC_SH_TLS_DTPMOD32:             howto manager.      (line  889)
+* BFD_RELOC_SH_TLS_DTPOFF32:             howto manager.      (line  890)
+* BFD_RELOC_SH_TLS_GD_32:                howto manager.      (line  884)
+* BFD_RELOC_SH_TLS_IE_32:                howto manager.      (line  887)
+* BFD_RELOC_SH_TLS_LD_32:                howto manager.      (line  885)
+* BFD_RELOC_SH_TLS_LDO_32:               howto manager.      (line  886)
+* BFD_RELOC_SH_TLS_LE_32:                howto manager.      (line  888)
+* BFD_RELOC_SH_TLS_TPOFF32:              howto manager.      (line  891)
+* BFD_RELOC_SH_USES:                     howto manager.      (line  822)
 * BFD_RELOC_SPARC13:                     howto manager.      (line  119)
 * BFD_RELOC_SPARC22:                     howto manager.      (line  118)
-* BFD_RELOC_SPARC_10:                    howto manager.      (line  141)
-* BFD_RELOC_SPARC_11:                    howto manager.      (line  142)
-* BFD_RELOC_SPARC_5:                     howto manager.      (line  154)
-* BFD_RELOC_SPARC_6:                     howto manager.      (line  153)
-* BFD_RELOC_SPARC_64:                    howto manager.      (line  140)
-* BFD_RELOC_SPARC_7:                     howto manager.      (line  152)
-* BFD_RELOC_SPARC_BASE13:                howto manager.      (line  136)
-* BFD_RELOC_SPARC_BASE22:                howto manager.      (line  137)
+* BFD_RELOC_SPARC_10:                    howto manager.      (line  146)
+* BFD_RELOC_SPARC_11:                    howto manager.      (line  147)
+* BFD_RELOC_SPARC_5:                     howto manager.      (line  159)
+* BFD_RELOC_SPARC_6:                     howto manager.      (line  158)
+* BFD_RELOC_SPARC_64:                    howto manager.      (line  145)
+* BFD_RELOC_SPARC_7:                     howto manager.      (line  157)
+* BFD_RELOC_SPARC_BASE13:                howto manager.      (line  141)
+* BFD_RELOC_SPARC_BASE22:                howto manager.      (line  142)
 * BFD_RELOC_SPARC_COPY:                  howto manager.      (line  126)
-* BFD_RELOC_SPARC_DISP64:                howto manager.      (line  155)
+* BFD_RELOC_SPARC_DISP64:                howto manager.      (line  160)
 * BFD_RELOC_SPARC_GLOB_DAT:              howto manager.      (line  127)
 * BFD_RELOC_SPARC_GOT10:                 howto manager.      (line  120)
 * BFD_RELOC_SPARC_GOT13:                 howto manager.      (line  121)
 * BFD_RELOC_SPARC_GOT22:                 howto manager.      (line  122)
-* BFD_RELOC_SPARC_H44:                   howto manager.      (line  160)
-* BFD_RELOC_SPARC_HH22:                  howto manager.      (line  144)
-* BFD_RELOC_SPARC_HIX22:                 howto manager.      (line  158)
-* BFD_RELOC_SPARC_HM10:                  howto manager.      (line  145)
+* BFD_RELOC_SPARC_GOTDATA_HIX22:         howto manager.      (line  133)
+* BFD_RELOC_SPARC_GOTDATA_LOX10:         howto manager.      (line  134)
+* BFD_RELOC_SPARC_GOTDATA_OP:            howto manager.      (line  137)
+* BFD_RELOC_SPARC_GOTDATA_OP_HIX22:      howto manager.      (line  135)
+* BFD_RELOC_SPARC_GOTDATA_OP_LOX10:      howto manager.      (line  136)
+* BFD_RELOC_SPARC_H44:                   howto manager.      (line  165)
+* BFD_RELOC_SPARC_HH22:                  howto manager.      (line  149)
+* BFD_RELOC_SPARC_HIX22:                 howto manager.      (line  163)
+* BFD_RELOC_SPARC_HM10:                  howto manager.      (line  150)
 * BFD_RELOC_SPARC_JMP_SLOT:              howto manager.      (line  128)
-* BFD_RELOC_SPARC_L44:                   howto manager.      (line  162)
-* BFD_RELOC_SPARC_LM22:                  howto manager.      (line  146)
-* BFD_RELOC_SPARC_LOX10:                 howto manager.      (line  159)
-* BFD_RELOC_SPARC_M44:                   howto manager.      (line  161)
-* BFD_RELOC_SPARC_OLO10:                 howto manager.      (line  143)
+* BFD_RELOC_SPARC_L44:                   howto manager.      (line  167)
+* BFD_RELOC_SPARC_LM22:                  howto manager.      (line  151)
+* BFD_RELOC_SPARC_LOX10:                 howto manager.      (line  164)
+* BFD_RELOC_SPARC_M44:                   howto manager.      (line  166)
+* BFD_RELOC_SPARC_OLO10:                 howto manager.      (line  148)
 * BFD_RELOC_SPARC_PC10:                  howto manager.      (line  123)
 * BFD_RELOC_SPARC_PC22:                  howto manager.      (line  124)
-* BFD_RELOC_SPARC_PC_HH22:               howto manager.      (line  147)
-* BFD_RELOC_SPARC_PC_HM10:               howto manager.      (line  148)
-* BFD_RELOC_SPARC_PC_LM22:               howto manager.      (line  149)
-* BFD_RELOC_SPARC_PLT32:                 howto manager.      (line  156)
-* BFD_RELOC_SPARC_PLT64:                 howto manager.      (line  157)
-* BFD_RELOC_SPARC_REGISTER:              howto manager.      (line  163)
+* BFD_RELOC_SPARC_PC_HH22:               howto manager.      (line  152)
+* BFD_RELOC_SPARC_PC_HM10:               howto manager.      (line  153)
+* BFD_RELOC_SPARC_PC_LM22:               howto manager.      (line  154)
+* BFD_RELOC_SPARC_PLT32:                 howto manager.      (line  161)
+* BFD_RELOC_SPARC_PLT64:                 howto manager.      (line  162)
+* BFD_RELOC_SPARC_REGISTER:              howto manager.      (line  168)
 * BFD_RELOC_SPARC_RELATIVE:              howto manager.      (line  129)
-* BFD_RELOC_SPARC_REV32:                 howto manager.      (line  166)
-* BFD_RELOC_SPARC_TLS_DTPMOD32:          howto manager.      (line  187)
-* BFD_RELOC_SPARC_TLS_DTPMOD64:          howto manager.      (line  188)
-* BFD_RELOC_SPARC_TLS_DTPOFF32:          howto manager.      (line  189)
-* BFD_RELOC_SPARC_TLS_DTPOFF64:          howto manager.      (line  190)
-* BFD_RELOC_SPARC_TLS_GD_ADD:            howto manager.      (line  171)
-* BFD_RELOC_SPARC_TLS_GD_CALL:           howto manager.      (line  172)
-* BFD_RELOC_SPARC_TLS_GD_HI22:           howto manager.      (line  169)
-* BFD_RELOC_SPARC_TLS_GD_LO10:           howto manager.      (line  170)
-* BFD_RELOC_SPARC_TLS_IE_ADD:            howto manager.      (line  184)
-* BFD_RELOC_SPARC_TLS_IE_HI22:           howto manager.      (line  180)
-* BFD_RELOC_SPARC_TLS_IE_LD:             howto manager.      (line  182)
-* BFD_RELOC_SPARC_TLS_IE_LDX:            howto manager.      (line  183)
-* BFD_RELOC_SPARC_TLS_IE_LO10:           howto manager.      (line  181)
-* BFD_RELOC_SPARC_TLS_LDM_ADD:           howto manager.      (line  175)
-* BFD_RELOC_SPARC_TLS_LDM_CALL:          howto manager.      (line  176)
-* BFD_RELOC_SPARC_TLS_LDM_HI22:          howto manager.      (line  173)
-* BFD_RELOC_SPARC_TLS_LDM_LO10:          howto manager.      (line  174)
-* BFD_RELOC_SPARC_TLS_LDO_ADD:           howto manager.      (line  179)
-* BFD_RELOC_SPARC_TLS_LDO_HIX22:         howto manager.      (line  177)
-* BFD_RELOC_SPARC_TLS_LDO_LOX10:         howto manager.      (line  178)
-* BFD_RELOC_SPARC_TLS_LE_HIX22:          howto manager.      (line  185)
-* BFD_RELOC_SPARC_TLS_LE_LOX10:          howto manager.      (line  186)
-* BFD_RELOC_SPARC_TLS_TPOFF32:           howto manager.      (line  191)
-* BFD_RELOC_SPARC_TLS_TPOFF64:           howto manager.      (line  192)
+* BFD_RELOC_SPARC_REV32:                 howto manager.      (line  171)
+* BFD_RELOC_SPARC_TLS_DTPMOD32:          howto manager.      (line  192)
+* BFD_RELOC_SPARC_TLS_DTPMOD64:          howto manager.      (line  193)
+* BFD_RELOC_SPARC_TLS_DTPOFF32:          howto manager.      (line  194)
+* BFD_RELOC_SPARC_TLS_DTPOFF64:          howto manager.      (line  195)
+* BFD_RELOC_SPARC_TLS_GD_ADD:            howto manager.      (line  176)
+* BFD_RELOC_SPARC_TLS_GD_CALL:           howto manager.      (line  177)
+* BFD_RELOC_SPARC_TLS_GD_HI22:           howto manager.      (line  174)
+* BFD_RELOC_SPARC_TLS_GD_LO10:           howto manager.      (line  175)
+* BFD_RELOC_SPARC_TLS_IE_ADD:            howto manager.      (line  189)
+* BFD_RELOC_SPARC_TLS_IE_HI22:           howto manager.      (line  185)
+* BFD_RELOC_SPARC_TLS_IE_LD:             howto manager.      (line  187)
+* BFD_RELOC_SPARC_TLS_IE_LDX:            howto manager.      (line  188)
+* BFD_RELOC_SPARC_TLS_IE_LO10:           howto manager.      (line  186)
+* BFD_RELOC_SPARC_TLS_LDM_ADD:           howto manager.      (line  180)
+* BFD_RELOC_SPARC_TLS_LDM_CALL:          howto manager.      (line  181)
+* BFD_RELOC_SPARC_TLS_LDM_HI22:          howto manager.      (line  178)
+* BFD_RELOC_SPARC_TLS_LDM_LO10:          howto manager.      (line  179)
+* BFD_RELOC_SPARC_TLS_LDO_ADD:           howto manager.      (line  184)
+* BFD_RELOC_SPARC_TLS_LDO_HIX22:         howto manager.      (line  182)
+* BFD_RELOC_SPARC_TLS_LDO_LOX10:         howto manager.      (line  183)
+* BFD_RELOC_SPARC_TLS_LE_HIX22:          howto manager.      (line  190)
+* BFD_RELOC_SPARC_TLS_LE_LOX10:          howto manager.      (line  191)
+* BFD_RELOC_SPARC_TLS_TPOFF32:           howto manager.      (line  196)
+* BFD_RELOC_SPARC_TLS_TPOFF64:           howto manager.      (line  197)
 * BFD_RELOC_SPARC_UA16:                  howto manager.      (line  130)
 * BFD_RELOC_SPARC_UA32:                  howto manager.      (line  131)
 * BFD_RELOC_SPARC_UA64:                  howto manager.      (line  132)
-* BFD_RELOC_SPARC_WDISP16:               howto manager.      (line  150)
-* BFD_RELOC_SPARC_WDISP19:               howto manager.      (line  151)
+* BFD_RELOC_SPARC_WDISP16:               howto manager.      (line  155)
+* BFD_RELOC_SPARC_WDISP19:               howto manager.      (line  156)
 * BFD_RELOC_SPARC_WDISP22:               howto manager.      (line  117)
 * BFD_RELOC_SPARC_WPLT30:                howto manager.      (line  125)
-* BFD_RELOC_SPU_HI16:                    howto manager.      (line  206)
-* BFD_RELOC_SPU_IMM10:                   howto manager.      (line  197)
-* BFD_RELOC_SPU_IMM10W:                  howto manager.      (line  198)
-* BFD_RELOC_SPU_IMM16:                   howto manager.      (line  199)
-* BFD_RELOC_SPU_IMM16W:                  howto manager.      (line  200)
-* BFD_RELOC_SPU_IMM18:                   howto manager.      (line  201)
-* BFD_RELOC_SPU_IMM7:                    howto manager.      (line  195)
-* BFD_RELOC_SPU_IMM8:                    howto manager.      (line  196)
-* BFD_RELOC_SPU_LO16:                    howto manager.      (line  205)
-* BFD_RELOC_SPU_PCREL16:                 howto manager.      (line  204)
-* BFD_RELOC_SPU_PCREL9a:                 howto manager.      (line  202)
-* BFD_RELOC_SPU_PCREL9b:                 howto manager.      (line  203)
-* BFD_RELOC_THUMB_PCREL_BLX:             howto manager.      (line  641)
-* BFD_RELOC_THUMB_PCREL_BRANCH12:        howto manager.      (line  655)
-* BFD_RELOC_THUMB_PCREL_BRANCH20:        howto manager.      (line  656)
-* BFD_RELOC_THUMB_PCREL_BRANCH23:        howto manager.      (line  657)
-* BFD_RELOC_THUMB_PCREL_BRANCH25:        howto manager.      (line  658)
-* BFD_RELOC_THUMB_PCREL_BRANCH7:         howto manager.      (line  653)
-* BFD_RELOC_THUMB_PCREL_BRANCH9:         howto manager.      (line  654)
-* BFD_RELOC_TIC30_LDP:                   howto manager.      (line 1194)
-* BFD_RELOC_TIC54X_16_OF_23:             howto manager.      (line 1212)
-* BFD_RELOC_TIC54X_23:                   howto manager.      (line 1209)
-* BFD_RELOC_TIC54X_MS7_OF_23:            howto manager.      (line 1217)
-* BFD_RELOC_TIC54X_PARTLS7:              howto manager.      (line 1199)
-* BFD_RELOC_TIC54X_PARTMS9:              howto manager.      (line 1204)
-* bfd_reloc_type_lookup:                 howto manager.      (line 2012)
-* BFD_RELOC_V850_22_PCREL:               howto manager.      (line 1121)
-* BFD_RELOC_V850_9_PCREL:                howto manager.      (line 1118)
-* BFD_RELOC_V850_ALIGN:                  howto manager.      (line 1179)
-* BFD_RELOC_V850_CALLT_16_16_OFFSET:     howto manager.      (line 1170)
-* BFD_RELOC_V850_CALLT_6_7_OFFSET:       howto manager.      (line 1167)
-* BFD_RELOC_V850_LO16_SPLIT_OFFSET:      howto manager.      (line 1182)
-* BFD_RELOC_V850_LONGCALL:               howto manager.      (line 1173)
-* BFD_RELOC_V850_LONGJUMP:               howto manager.      (line 1176)
-* BFD_RELOC_V850_SDA_15_16_OFFSET:       howto manager.      (line 1127)
-* BFD_RELOC_V850_SDA_16_16_OFFSET:       howto manager.      (line 1124)
-* BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager.      (line 1159)
-* BFD_RELOC_V850_TDA_16_16_OFFSET:       howto manager.      (line 1149)
-* BFD_RELOC_V850_TDA_4_4_OFFSET:         howto manager.      (line 1156)
-* BFD_RELOC_V850_TDA_4_5_OFFSET:         howto manager.      (line 1152)
-* BFD_RELOC_V850_TDA_6_8_OFFSET:         howto manager.      (line 1138)
-* BFD_RELOC_V850_TDA_7_7_OFFSET:         howto manager.      (line 1146)
-* BFD_RELOC_V850_TDA_7_8_OFFSET:         howto manager.      (line 1142)
-* BFD_RELOC_V850_ZDA_15_16_OFFSET:       howto manager.      (line 1134)
-* BFD_RELOC_V850_ZDA_16_16_OFFSET:       howto manager.      (line 1131)
-* BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager.      (line 1163)
-* BFD_RELOC_VAX_GLOB_DAT:                howto manager.      (line 1883)
-* BFD_RELOC_VAX_JMP_SLOT:                howto manager.      (line 1884)
-* BFD_RELOC_VAX_RELATIVE:                howto manager.      (line 1885)
-* BFD_RELOC_VPE4KMATH_DATA:              howto manager.      (line 1574)
-* BFD_RELOC_VPE4KMATH_INSN:              howto manager.      (line 1575)
-* BFD_RELOC_VTABLE_ENTRY:                howto manager.      (line 1579)
-* BFD_RELOC_VTABLE_INHERIT:              howto manager.      (line 1578)
-* BFD_RELOC_X86_64_32S:                  howto manager.      (line  479)
-* BFD_RELOC_X86_64_COPY:                 howto manager.      (line  474)
-* BFD_RELOC_X86_64_DTPMOD64:             howto manager.      (line  480)
-* BFD_RELOC_X86_64_DTPOFF32:             howto manager.      (line  485)
-* BFD_RELOC_X86_64_DTPOFF64:             howto manager.      (line  481)
-* BFD_RELOC_X86_64_GLOB_DAT:             howto manager.      (line  475)
-* BFD_RELOC_X86_64_GOT32:                howto manager.      (line  472)
-* BFD_RELOC_X86_64_GOT64:                howto manager.      (line  490)
-* BFD_RELOC_X86_64_GOTOFF64:             howto manager.      (line  488)
-* BFD_RELOC_X86_64_GOTPC32:              howto manager.      (line  489)
-* BFD_RELOC_X86_64_GOTPC32_TLSDESC:      howto manager.      (line  495)
-* BFD_RELOC_X86_64_GOTPC64:              howto manager.      (line  492)
-* BFD_RELOC_X86_64_GOTPCREL:             howto manager.      (line  478)
-* BFD_RELOC_X86_64_GOTPCREL64:           howto manager.      (line  491)
-* BFD_RELOC_X86_64_GOTPLT64:             howto manager.      (line  493)
-* BFD_RELOC_X86_64_GOTTPOFF:             howto manager.      (line  486)
-* BFD_RELOC_X86_64_JUMP_SLOT:            howto manager.      (line  476)
-* BFD_RELOC_X86_64_PLT32:                howto manager.      (line  473)
-* BFD_RELOC_X86_64_PLTOFF64:             howto manager.      (line  494)
-* BFD_RELOC_X86_64_RELATIVE:             howto manager.      (line  477)
-* BFD_RELOC_X86_64_TLSDESC:              howto manager.      (line  497)
-* BFD_RELOC_X86_64_TLSDESC_CALL:         howto manager.      (line  496)
-* BFD_RELOC_X86_64_TLSGD:                howto manager.      (line  483)
-* BFD_RELOC_X86_64_TLSLD:                howto manager.      (line  484)
-* BFD_RELOC_X86_64_TPOFF32:              howto manager.      (line  487)
-* BFD_RELOC_X86_64_TPOFF64:              howto manager.      (line  482)
-* BFD_RELOC_XC16X_PAG:                   howto manager.      (line 1877)
-* BFD_RELOC_XC16X_POF:                   howto manager.      (line 1878)
-* BFD_RELOC_XC16X_SEG:                   howto manager.      (line 1879)
-* BFD_RELOC_XC16X_SOF:                   howto manager.      (line 1880)
-* BFD_RELOC_XSTORMY16_12:                howto manager.      (line 1872)
-* BFD_RELOC_XSTORMY16_24:                howto manager.      (line 1873)
-* BFD_RELOC_XSTORMY16_FPTR16:            howto manager.      (line 1874)
-* BFD_RELOC_XSTORMY16_REL_12:            howto manager.      (line 1871)
-* BFD_RELOC_XTENSA_ASM_EXPAND:           howto manager.      (line 1989)
-* BFD_RELOC_XTENSA_ASM_SIMPLIFY:         howto manager.      (line 1994)
-* BFD_RELOC_XTENSA_DIFF16:               howto manager.      (line 1936)
-* BFD_RELOC_XTENSA_DIFF32:               howto manager.      (line 1937)
-* BFD_RELOC_XTENSA_DIFF8:                howto manager.      (line 1935)
-* BFD_RELOC_XTENSA_GLOB_DAT:             howto manager.      (line 1925)
-* BFD_RELOC_XTENSA_JMP_SLOT:             howto manager.      (line 1926)
-* BFD_RELOC_XTENSA_OP0:                  howto manager.      (line 1983)
-* BFD_RELOC_XTENSA_OP1:                  howto manager.      (line 1984)
-* BFD_RELOC_XTENSA_OP2:                  howto manager.      (line 1985)
-* BFD_RELOC_XTENSA_PLT:                  howto manager.      (line 1930)
-* BFD_RELOC_XTENSA_RELATIVE:             howto manager.      (line 1927)
-* BFD_RELOC_XTENSA_RTLD:                 howto manager.      (line 1920)
-* BFD_RELOC_XTENSA_SLOT0_ALT:            howto manager.      (line 1965)
-* BFD_RELOC_XTENSA_SLOT0_OP:             howto manager.      (line 1945)
-* BFD_RELOC_XTENSA_SLOT10_ALT:           howto manager.      (line 1975)
-* BFD_RELOC_XTENSA_SLOT10_OP:            howto manager.      (line 1955)
-* BFD_RELOC_XTENSA_SLOT11_ALT:           howto manager.      (line 1976)
-* BFD_RELOC_XTENSA_SLOT11_OP:            howto manager.      (line 1956)
-* BFD_RELOC_XTENSA_SLOT12_ALT:           howto manager.      (line 1977)
-* BFD_RELOC_XTENSA_SLOT12_OP:            howto manager.      (line 1957)
-* BFD_RELOC_XTENSA_SLOT13_ALT:           howto manager.      (line 1978)
-* BFD_RELOC_XTENSA_SLOT13_OP:            howto manager.      (line 1958)
-* BFD_RELOC_XTENSA_SLOT14_ALT:           howto manager.      (line 1979)
-* BFD_RELOC_XTENSA_SLOT14_OP:            howto manager.      (line 1959)
-* BFD_RELOC_XTENSA_SLOT1_ALT:            howto manager.      (line 1966)
-* BFD_RELOC_XTENSA_SLOT1_OP:             howto manager.      (line 1946)
-* BFD_RELOC_XTENSA_SLOT2_ALT:            howto manager.      (line 1967)
-* BFD_RELOC_XTENSA_SLOT2_OP:             howto manager.      (line 1947)
-* BFD_RELOC_XTENSA_SLOT3_ALT:            howto manager.      (line 1968)
-* BFD_RELOC_XTENSA_SLOT3_OP:             howto manager.      (line 1948)
-* BFD_RELOC_XTENSA_SLOT4_ALT:            howto manager.      (line 1969)
-* BFD_RELOC_XTENSA_SLOT4_OP:             howto manager.      (line 1949)
-* BFD_RELOC_XTENSA_SLOT5_ALT:            howto manager.      (line 1970)
-* BFD_RELOC_XTENSA_SLOT5_OP:             howto manager.      (line 1950)
-* BFD_RELOC_XTENSA_SLOT6_ALT:            howto manager.      (line 1971)
-* BFD_RELOC_XTENSA_SLOT6_OP:             howto manager.      (line 1951)
-* BFD_RELOC_XTENSA_SLOT7_ALT:            howto manager.      (line 1972)
-* BFD_RELOC_XTENSA_SLOT7_OP:             howto manager.      (line 1952)
-* BFD_RELOC_XTENSA_SLOT8_ALT:            howto manager.      (line 1973)
-* BFD_RELOC_XTENSA_SLOT8_OP:             howto manager.      (line 1953)
-* BFD_RELOC_XTENSA_SLOT9_ALT:            howto manager.      (line 1974)
-* BFD_RELOC_XTENSA_SLOT9_OP:             howto manager.      (line 1954)
-* BFD_RELOC_Z80_DISP8:                   howto manager.      (line 1999)
-* BFD_RELOC_Z8K_CALLR:                   howto manager.      (line 2005)
-* BFD_RELOC_Z8K_DISP7:                   howto manager.      (line 2002)
-* BFD_RELOC_Z8K_IMM4L:                   howto manager.      (line 2008)
-* bfd_scan_arch:                         Architectures.      (line  397)
-* bfd_scan_vma:                          BFD front end.      (line  426)
-* bfd_seach_for_target:                  bfd_target.         (line  460)
+* BFD_RELOC_SPU_HI16:                    howto manager.      (line  211)
+* BFD_RELOC_SPU_IMM10:                   howto manager.      (line  202)
+* BFD_RELOC_SPU_IMM10W:                  howto manager.      (line  203)
+* BFD_RELOC_SPU_IMM16:                   howto manager.      (line  204)
+* BFD_RELOC_SPU_IMM16W:                  howto manager.      (line  205)
+* BFD_RELOC_SPU_IMM18:                   howto manager.      (line  206)
+* BFD_RELOC_SPU_IMM7:                    howto manager.      (line  200)
+* BFD_RELOC_SPU_IMM8:                    howto manager.      (line  201)
+* BFD_RELOC_SPU_LO16:                    howto manager.      (line  210)
+* BFD_RELOC_SPU_PCREL16:                 howto manager.      (line  209)
+* BFD_RELOC_SPU_PCREL9a:                 howto manager.      (line  207)
+* BFD_RELOC_SPU_PCREL9b:                 howto manager.      (line  208)
+* BFD_RELOC_SPU_PPU32:                   howto manager.      (line  212)
+* BFD_RELOC_SPU_PPU64:                   howto manager.      (line  213)
+* BFD_RELOC_THUMB_PCREL_BLX:             howto manager.      (line  662)
+* BFD_RELOC_THUMB_PCREL_BRANCH12:        howto manager.      (line  676)
+* BFD_RELOC_THUMB_PCREL_BRANCH20:        howto manager.      (line  677)
+* BFD_RELOC_THUMB_PCREL_BRANCH23:        howto manager.      (line  678)
+* BFD_RELOC_THUMB_PCREL_BRANCH25:        howto manager.      (line  679)
+* BFD_RELOC_THUMB_PCREL_BRANCH7:         howto manager.      (line  674)
+* BFD_RELOC_THUMB_PCREL_BRANCH9:         howto manager.      (line  675)
+* BFD_RELOC_TIC30_LDP:                   howto manager.      (line 1218)
+* BFD_RELOC_TIC54X_16_OF_23:             howto manager.      (line 1236)
+* BFD_RELOC_TIC54X_23:                   howto manager.      (line 1233)
+* BFD_RELOC_TIC54X_MS7_OF_23:            howto manager.      (line 1241)
+* BFD_RELOC_TIC54X_PARTLS7:              howto manager.      (line 1223)
+* BFD_RELOC_TIC54X_PARTMS9:              howto manager.      (line 1228)
+* bfd_reloc_type_lookup:                 howto manager.      (line 2102)
+* BFD_RELOC_V850_22_PCREL:               howto manager.      (line 1145)
+* BFD_RELOC_V850_9_PCREL:                howto manager.      (line 1142)
+* BFD_RELOC_V850_ALIGN:                  howto manager.      (line 1203)
+* BFD_RELOC_V850_CALLT_16_16_OFFSET:     howto manager.      (line 1194)
+* BFD_RELOC_V850_CALLT_6_7_OFFSET:       howto manager.      (line 1191)
+* BFD_RELOC_V850_LO16_SPLIT_OFFSET:      howto manager.      (line 1206)
+* BFD_RELOC_V850_LONGCALL:               howto manager.      (line 1197)
+* BFD_RELOC_V850_LONGJUMP:               howto manager.      (line 1200)
+* BFD_RELOC_V850_SDA_15_16_OFFSET:       howto manager.      (line 1151)
+* BFD_RELOC_V850_SDA_16_16_OFFSET:       howto manager.      (line 1148)
+* BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager.      (line 1183)
+* BFD_RELOC_V850_TDA_16_16_OFFSET:       howto manager.      (line 1173)
+* BFD_RELOC_V850_TDA_4_4_OFFSET:         howto manager.      (line 1180)
+* BFD_RELOC_V850_TDA_4_5_OFFSET:         howto manager.      (line 1176)
+* BFD_RELOC_V850_TDA_6_8_OFFSET:         howto manager.      (line 1162)
+* BFD_RELOC_V850_TDA_7_7_OFFSET:         howto manager.      (line 1170)
+* BFD_RELOC_V850_TDA_7_8_OFFSET:         howto manager.      (line 1166)
+* BFD_RELOC_V850_ZDA_15_16_OFFSET:       howto manager.      (line 1158)
+* BFD_RELOC_V850_ZDA_16_16_OFFSET:       howto manager.      (line 1155)
+* BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager.      (line 1187)
+* BFD_RELOC_VAX_GLOB_DAT:                howto manager.      (line 1964)
+* BFD_RELOC_VAX_JMP_SLOT:                howto manager.      (line 1965)
+* BFD_RELOC_VAX_RELATIVE:                howto manager.      (line 1966)
+* BFD_RELOC_VPE4KMATH_DATA:              howto manager.      (line 1620)
+* BFD_RELOC_VPE4KMATH_INSN:              howto manager.      (line 1621)
+* BFD_RELOC_VTABLE_ENTRY:                howto manager.      (line 1625)
+* BFD_RELOC_VTABLE_INHERIT:              howto manager.      (line 1624)
+* BFD_RELOC_X86_64_32S:                  howto manager.      (line  500)
+* BFD_RELOC_X86_64_COPY:                 howto manager.      (line  495)
+* BFD_RELOC_X86_64_DTPMOD64:             howto manager.      (line  501)
+* BFD_RELOC_X86_64_DTPOFF32:             howto manager.      (line  506)
+* BFD_RELOC_X86_64_DTPOFF64:             howto manager.      (line  502)
+* BFD_RELOC_X86_64_GLOB_DAT:             howto manager.      (line  496)
+* BFD_RELOC_X86_64_GOT32:                howto manager.      (line  493)
+* BFD_RELOC_X86_64_GOT64:                howto manager.      (line  511)
+* BFD_RELOC_X86_64_GOTOFF64:             howto manager.      (line  509)
+* BFD_RELOC_X86_64_GOTPC32:              howto manager.      (line  510)
+* BFD_RELOC_X86_64_GOTPC32_TLSDESC:      howto manager.      (line  516)
+* BFD_RELOC_X86_64_GOTPC64:              howto manager.      (line  513)
+* BFD_RELOC_X86_64_GOTPCREL:             howto manager.      (line  499)
+* BFD_RELOC_X86_64_GOTPCREL64:           howto manager.      (line  512)
+* BFD_RELOC_X86_64_GOTPLT64:             howto manager.      (line  514)
+* BFD_RELOC_X86_64_GOTTPOFF:             howto manager.      (line  507)
+* BFD_RELOC_X86_64_JUMP_SLOT:            howto manager.      (line  497)
+* BFD_RELOC_X86_64_PLT32:                howto manager.      (line  494)
+* BFD_RELOC_X86_64_PLTOFF64:             howto manager.      (line  515)
+* BFD_RELOC_X86_64_RELATIVE:             howto manager.      (line  498)
+* BFD_RELOC_X86_64_TLSDESC:              howto manager.      (line  518)
+* BFD_RELOC_X86_64_TLSDESC_CALL:         howto manager.      (line  517)
+* BFD_RELOC_X86_64_TLSGD:                howto manager.      (line  504)
+* BFD_RELOC_X86_64_TLSLD:                howto manager.      (line  505)
+* BFD_RELOC_X86_64_TPOFF32:              howto manager.      (line  508)
+* BFD_RELOC_X86_64_TPOFF64:              howto manager.      (line  503)
+* BFD_RELOC_XC16X_PAG:                   howto manager.      (line 1958)
+* BFD_RELOC_XC16X_POF:                   howto manager.      (line 1959)
+* BFD_RELOC_XC16X_SEG:                   howto manager.      (line 1960)
+* BFD_RELOC_XC16X_SOF:                   howto manager.      (line 1961)
+* BFD_RELOC_XSTORMY16_12:                howto manager.      (line 1950)
+* BFD_RELOC_XSTORMY16_24:                howto manager.      (line 1951)
+* BFD_RELOC_XSTORMY16_FPTR16:            howto manager.      (line 1952)
+* BFD_RELOC_XSTORMY16_REL_12:            howto manager.      (line 1949)
+* BFD_RELOC_XTENSA_ASM_EXPAND:           howto manager.      (line 2070)
+* BFD_RELOC_XTENSA_ASM_SIMPLIFY:         howto manager.      (line 2075)
+* BFD_RELOC_XTENSA_DIFF16:               howto manager.      (line 2017)
+* BFD_RELOC_XTENSA_DIFF32:               howto manager.      (line 2018)
+* BFD_RELOC_XTENSA_DIFF8:                howto manager.      (line 2016)
+* BFD_RELOC_XTENSA_GLOB_DAT:             howto manager.      (line 2006)
+* BFD_RELOC_XTENSA_JMP_SLOT:             howto manager.      (line 2007)
+* BFD_RELOC_XTENSA_OP0:                  howto manager.      (line 2064)
+* BFD_RELOC_XTENSA_OP1:                  howto manager.      (line 2065)
+* BFD_RELOC_XTENSA_OP2:                  howto manager.      (line 2066)
+* BFD_RELOC_XTENSA_PLT:                  howto manager.      (line 2011)
+* BFD_RELOC_XTENSA_RELATIVE:             howto manager.      (line 2008)
+* BFD_RELOC_XTENSA_RTLD:                 howto manager.      (line 2001)
+* BFD_RELOC_XTENSA_SLOT0_ALT:            howto manager.      (line 2046)
+* BFD_RELOC_XTENSA_SLOT0_OP:             howto manager.      (line 2026)
+* BFD_RELOC_XTENSA_SLOT10_ALT:           howto manager.      (line 2056)
+* BFD_RELOC_XTENSA_SLOT10_OP:            howto manager.      (line 2036)
+* BFD_RELOC_XTENSA_SLOT11_ALT:           howto manager.      (line 2057)
+* BFD_RELOC_XTENSA_SLOT11_OP:            howto manager.      (line 2037)
+* BFD_RELOC_XTENSA_SLOT12_ALT:           howto manager.      (line 2058)
+* BFD_RELOC_XTENSA_SLOT12_OP:            howto manager.      (line 2038)
+* BFD_RELOC_XTENSA_SLOT13_ALT:           howto manager.      (line 2059)
+* BFD_RELOC_XTENSA_SLOT13_OP:            howto manager.      (line 2039)
+* BFD_RELOC_XTENSA_SLOT14_ALT:           howto manager.      (line 2060)
+* BFD_RELOC_XTENSA_SLOT14_OP:            howto manager.      (line 2040)
+* BFD_RELOC_XTENSA_SLOT1_ALT:            howto manager.      (line 2047)
+* BFD_RELOC_XTENSA_SLOT1_OP:             howto manager.      (line 2027)
+* BFD_RELOC_XTENSA_SLOT2_ALT:            howto manager.      (line 2048)
+* BFD_RELOC_XTENSA_SLOT2_OP:             howto manager.      (line 2028)
+* BFD_RELOC_XTENSA_SLOT3_ALT:            howto manager.      (line 2049)
+* BFD_RELOC_XTENSA_SLOT3_OP:             howto manager.      (line 2029)
+* BFD_RELOC_XTENSA_SLOT4_ALT:            howto manager.      (line 2050)
+* BFD_RELOC_XTENSA_SLOT4_OP:             howto manager.      (line 2030)
+* BFD_RELOC_XTENSA_SLOT5_ALT:            howto manager.      (line 2051)
+* BFD_RELOC_XTENSA_SLOT5_OP:             howto manager.      (line 2031)
+* BFD_RELOC_XTENSA_SLOT6_ALT:            howto manager.      (line 2052)
+* BFD_RELOC_XTENSA_SLOT6_OP:             howto manager.      (line 2032)
+* BFD_RELOC_XTENSA_SLOT7_ALT:            howto manager.      (line 2053)
+* BFD_RELOC_XTENSA_SLOT7_OP:             howto manager.      (line 2033)
+* BFD_RELOC_XTENSA_SLOT8_ALT:            howto manager.      (line 2054)
+* BFD_RELOC_XTENSA_SLOT8_OP:             howto manager.      (line 2034)
+* BFD_RELOC_XTENSA_SLOT9_ALT:            howto manager.      (line 2055)
+* BFD_RELOC_XTENSA_SLOT9_OP:             howto manager.      (line 2035)
+* BFD_RELOC_XTENSA_TLS_ARG:              howto manager.      (line 2085)
+* BFD_RELOC_XTENSA_TLS_CALL:             howto manager.      (line 2086)
+* BFD_RELOC_XTENSA_TLS_DTPOFF:           howto manager.      (line 2082)
+* BFD_RELOC_XTENSA_TLS_FUNC:             howto manager.      (line 2084)
+* BFD_RELOC_XTENSA_TLS_TPOFF:            howto manager.      (line 2083)
+* BFD_RELOC_XTENSA_TLSDESC_ARG:          howto manager.      (line 2081)
+* BFD_RELOC_XTENSA_TLSDESC_FN:           howto manager.      (line 2080)
+* BFD_RELOC_Z80_DISP8:                   howto manager.      (line 2089)
+* BFD_RELOC_Z8K_CALLR:                   howto manager.      (line 2095)
+* BFD_RELOC_Z8K_DISP7:                   howto manager.      (line 2092)
+* BFD_RELOC_Z8K_IMM4L:                   howto manager.      (line 2098)
+* bfd_scan_arch:                         Architectures.      (line  417)
+* bfd_scan_vma:                          BFD front end.      (line  505)
+* bfd_seach_for_target:                  bfd_target.         (line  464)
 * bfd_section_already_linked:            Writing the symbol table.
                                                              (line   55)
 * bfd_section_list_clear:                section prototypes. (line    8)
 * bfd_sections_find_if:                  section prototypes. (line  176)
-* bfd_set_arch_info:                     Architectures.      (line  438)
+* bfd_set_arch_info:                     Architectures.      (line  458)
 * bfd_set_archive_head:                  Archives.           (line   69)
-* bfd_set_default_target:                bfd_target.         (line  425)
-* bfd_set_error:                         BFD front end.      (line  236)
-* bfd_set_error_handler:                 BFD front end.      (line  278)
-* bfd_set_error_program_name:            BFD front end.      (line  287)
-* bfd_set_file_flags:                    BFD front end.      (line  346)
+* bfd_set_default_target:                bfd_target.         (line  429)
+* bfd_set_error:                         BFD front end.      (line  315)
+* bfd_set_error_handler:                 BFD front end.      (line  357)
+* bfd_set_error_program_name:            BFD front end.      (line  366)
+* bfd_set_file_flags:                    BFD front end.      (line  425)
 * bfd_set_format:                        Formats.            (line   68)
-* bfd_set_gp_size:                       BFD front end.      (line  416)
-* bfd_set_private_flags:                 BFD front end.      (line  493)
-* bfd_set_reloc:                         BFD front end.      (line  336)
+* bfd_set_gp_size:                       BFD front end.      (line  495)
+* bfd_set_private_flags:                 BFD front end.      (line  572)
+* bfd_set_reloc:                         BFD front end.      (line  415)
 * bfd_set_section_contents:              section prototypes. (line  207)
 * bfd_set_section_flags:                 section prototypes. (line  140)
 * bfd_set_section_size:                  section prototypes. (line  193)
-* bfd_set_start_address:                 BFD front end.      (line  395)
+* bfd_set_start_address:                 BFD front end.      (line  474)
 * bfd_set_symtab:                        symbol handling functions.
                                                              (line   60)
 * bfd_symbol_info:                       symbol handling functions.
                                                              (line  130)
-* bfd_target_list:                       bfd_target.         (line  451)
+* bfd_target_list:                       bfd_target.         (line  455)
 * bfd_write_bigendian_4byte_int:         Internal.           (line   13)
 * bfd_zalloc:                            Opening and Closing.
-                                                             (line  221)
+                                                             (line  228)
 * bfd_zalloc2:                           Opening and Closing.
-                                                             (line  230)
+                                                             (line  237)
 * coff_symbol_type:                      coff.               (line  186)
 * core_file_matches_executable_p:        Core Files.         (line   30)
 * find_separate_debug_file:              Opening and Closing.
-                                                             (line  272)
+                                                             (line  279)
 * generic_core_file_matches_executable_p: Core Files.        (line   40)
 * get_debug_link_info:                   Opening and Closing.
-                                                             (line  253)
+                                                             (line  260)
 * Hash tables:                           Hash Tables.        (line    6)
 * internal object-file format:           Canonical format.   (line   11)
 * Linker:                                Linker Functions.   (line    6)
-* Other functions:                       BFD front end.      (line  508)
+* Other functions:                       BFD front end.      (line  587)
 * separate_debug_file_exists:            Opening and Closing.
-                                                             (line  263)
-* struct bfd_iovec:                      BFD front end.      (line  700)
+                                                             (line  270)
+* struct bfd_iovec:                      BFD front end.      (line  790)
 * target vector (_bfd_final_link):       Performing the Final Link.
                                                              (line    6)
 * target vector (_bfd_link_add_symbols): Adding Symbols to the Hash Table.
@@ -10445,67 +10758,67 @@ BFD Index
 
 \1f
 Tag Table:
-Node: Top\7f758
-Node: Overview\7f1097
-Node: History\7f2148
-Node: How It Works\7f3094
-Node: What BFD Version 2 Can Do\7f4637
-Node: BFD information loss\7f5952
-Node: Canonical format\7f8484
-Node: BFD front end\7f12856
-Node: Memory Usage\7f39776
-Node: Initialization\7f41004
-Node: Sections\7f41463
-Node: Section Input\7f41946
-Node: Section Output\7f43311
-Node: typedef asection\7f45797
-Node: section prototypes\7f70398
-Node: Symbols\7f80078
-Node: Reading Symbols\7f81673
-Node: Writing Symbols\7f82780
-Node: Mini Symbols\7f84489
-Node: typedef asymbol\7f85463
-Node: symbol handling functions\7f90381
-Node: Archives\7f95723
-Node: Formats\7f99449
-Node: Relocations\7f102397
-Node: typedef arelent\7f103124
-Node: howto manager\7f118935
-Node: Core Files\7f184030
-Node: Targets\7f185847
-Node: bfd_target\7f187817
-Node: Architectures\7f207993
-Node: Opening and Closing\7f229634
-Node: Internal\7f240636
-Node: File Caching\7f246969
-Node: Linker Functions\7f248883
-Node: Creating a Linker Hash Table\7f250556
-Node: Adding Symbols to the Hash Table\7f252294
-Node: Differing file formats\7f253194
-Node: Adding symbols from an object file\7f254942
-Node: Adding symbols from an archive\7f257093
-Node: Performing the Final Link\7f259507
-Node: Information provided by the linker\7f260749
-Node: Relocating the section contents\7f261903
-Node: Writing the symbol table\7f263654
-Node: Hash Tables\7f266696
-Node: Creating and Freeing a Hash Table\7f267894
-Node: Looking Up or Entering a String\7f269144
-Node: Traversing a Hash Table\7f270397
-Node: Deriving a New Hash Table Type\7f271186
-Node: Define the Derived Structures\7f272252
-Node: Write the Derived Creation Routine\7f273333
-Node: Write Other Derived Routines\7f275957
-Node: BFD back ends\7f277272
-Node: What to Put Where\7f277542
-Node: aout\7f277722
-Node: coff\7f284040
-Node: elf\7f308517
-Node: mmo\7f309380
-Node: File layout\7f310308
-Node: Symbol-table\7f315955
-Node: mmo section mapping\7f319724
-Node: GNU Free Documentation License\7f323376
-Node: BFD Index\7f343105
+Node: Top\7f1100
+Node: Overview\7f1439
+Node: History\7f2490
+Node: How It Works\7f3436
+Node: What BFD Version 2 Can Do\7f4979
+Node: BFD information loss\7f6294
+Node: Canonical format\7f8826
+Node: BFD front end\7f13198
+Node: Memory Usage\7f43705
+Node: Initialization\7f44933
+Node: Sections\7f45392
+Node: Section Input\7f45875
+Node: Section Output\7f47240
+Node: typedef asection\7f49726
+Node: section prototypes\7f74307
+Node: Symbols\7f83987
+Node: Reading Symbols\7f85582
+Node: Writing Symbols\7f86689
+Node: Mini Symbols\7f88398
+Node: typedef asymbol\7f89372
+Node: symbol handling functions\7f94737
+Node: Archives\7f100079
+Node: Formats\7f103805
+Node: Relocations\7f106753
+Node: typedef arelent\7f107480
+Node: howto manager\7f123291
+Node: Core Files\7f191087
+Node: Targets\7f192904
+Node: bfd_target\7f194874
+Node: Architectures\7f215179
+Node: Opening and Closing\7f237662
+Node: Internal\7f248926
+Node: File Caching\7f255259
+Node: Linker Functions\7f257173
+Node: Creating a Linker Hash Table\7f258846
+Node: Adding Symbols to the Hash Table\7f260584
+Node: Differing file formats\7f261484
+Node: Adding symbols from an object file\7f263209
+Node: Adding symbols from an archive\7f265360
+Node: Performing the Final Link\7f267774
+Node: Information provided by the linker\7f269016
+Node: Relocating the section contents\7f270170
+Node: Writing the symbol table\7f271921
+Node: Hash Tables\7f274963
+Node: Creating and Freeing a Hash Table\7f276161
+Node: Looking Up or Entering a String\7f277411
+Node: Traversing a Hash Table\7f278664
+Node: Deriving a New Hash Table Type\7f279453
+Node: Define the Derived Structures\7f280519
+Node: Write the Derived Creation Routine\7f281600
+Node: Write Other Derived Routines\7f284224
+Node: BFD back ends\7f285539
+Node: What to Put Where\7f285809
+Node: aout\7f285989
+Node: coff\7f292307
+Node: elf\7f317058
+Node: mmo\7f317921
+Node: File layout\7f318849
+Node: Symbol-table\7f324496
+Node: mmo section mapping\7f328265
+Node: GNU Free Documentation License\7f331917
+Node: BFD Index\7f351646
 \1f
 End Tag Table