Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Unified Diff: bfd/doc/bfd.info

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bfd/doc/archures.texi ('k') | bfd/doc/bfdt.texi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bfd/doc/bfd.info
diff --git a/bfd/doc/bfd.info b/bfd/doc/bfd.info
index 7488f92346a7767cd639518d2a2f2cfbb6f262df..f38bee1addcdc55f10b656e18a788f5fb369527d 100644
--- a/bfd/doc/bfd.info
+++ b/bfd/doc/bfd.info
@@ -710,6 +710,38 @@ must not be changed after it is passed to this function.
*Description*
Return the BFD error handler function.
+2.2.3 BFD assert handler
+------------------------
+
+If BFD finds an internal inconsistency, the bfd assert handler is
+called with information on the BFD version, BFD source file and line.
+If this happens, most programs linked against BFD are expected to want
+to exit with an error, or mark the current BFD operation as failed, so
+it is recommended to override the default handler, which just calls
+_bfd_error_handler and continues.
+
+
+ typedef void (*bfd_assert_handler_type) (const char *bfd_formatmsg,
+ const char *bfd_version,
+ const char *bfd_file,
+ int bfd_line);
+
+2.2.3.1 `bfd_set_assert_handler'
+................................
+
+*Synopsis*
+ bfd_assert_handler_type bfd_set_assert_handler (bfd_assert_handler_type);
+ *Description*
+Set the BFD assert handler function. Returns the previous function.
+
+2.2.3.2 `bfd_get_assert_handler'
+................................
+
+*Synopsis*
+ bfd_assert_handler_type bfd_get_assert_handler (void);
+ *Description*
+Return the BFD assert handler function.
+
2.3 Miscellaneous
=================
@@ -957,8 +989,8 @@ The following functions exist but have not yet been documented.
#define bfd_gc_sections(abfd, link_info) \
BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
- #define bfd_lookup_section_flags(link_info, flag_info) \
- BFD_SEND (abfd, _bfd_lookup_section_flags, (link_info, flag_info))
+ #define bfd_lookup_section_flags(link_info, flag_info, section) \
+ BFD_SEND (abfd, _bfd_lookup_section_flags, (link_info, flag_info, section))
#define bfd_merge_sections(abfd, link_info) \
BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
@@ -1624,11 +1656,11 @@ Here is the section structure:
/* Type of sec_info information. */
unsigned int sec_info_type:3;
- #define ELF_INFO_TYPE_NONE 0
- #define ELF_INFO_TYPE_STABS 1
- #define ELF_INFO_TYPE_MERGE 2
- #define ELF_INFO_TYPE_EH_FRAME 3
- #define ELF_INFO_TYPE_JUST_SYMS 4
+ #define SEC_INFO_TYPE_NONE 0
+ #define SEC_INFO_TYPE_STABS 1
+ #define SEC_INFO_TYPE_MERGE 2
+ #define SEC_INFO_TYPE_EH_FRAME 3
+ #define SEC_INFO_TYPE_JUST_SYMS 4
/* Nonzero if this section uses RELA relocations, rather than REL. */
unsigned int use_rela_p:1;
@@ -1758,9 +1790,6 @@ Here is the section structure:
/* The BFD which owns the section. */
bfd *owner;
- /* INPUT_SECTION_FLAGS if specified in the linker script. */
- struct flag_info *section_flag_info;
-
/* A symbol which points at this section only. */
struct bfd_symbol *symbol;
struct bfd_symbol **symbol_ptr_ptr;
@@ -1788,28 +1817,25 @@ Here is the section structure:
/* These sections are global, and are managed by BFD. The application
and target back end are not permitted to change the values in
- these sections. New code should use the section_ptr macros rather
- than referring directly to the const sections. The const sections
- may eventually vanish. */
+ these sections. */
+ extern asection std_section[4];
+
#define BFD_ABS_SECTION_NAME "*ABS*"
#define BFD_UND_SECTION_NAME "*UND*"
#define BFD_COM_SECTION_NAME "*COM*"
#define BFD_IND_SECTION_NAME "*IND*"
- /* The absolute section. */
- extern asection bfd_abs_section;
- #define bfd_abs_section_ptr ((asection *) &bfd_abs_section)
- #define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
- /* Pointer to the undefined section. */
- extern asection bfd_und_section;
- #define bfd_und_section_ptr ((asection *) &bfd_und_section)
- #define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
/* Pointer to the common section. */
- extern asection bfd_com_section;
- #define bfd_com_section_ptr ((asection *) &bfd_com_section)
+ #define bfd_com_section_ptr (&std_section[0])
+ /* Pointer to the undefined section. */
+ #define bfd_und_section_ptr (&std_section[1])
+ /* Pointer to the absolute section. */
+ #define bfd_abs_section_ptr (&std_section[2])
/* Pointer to the indirect section. */
- extern asection bfd_ind_section;
- #define bfd_ind_section_ptr ((asection *) &bfd_ind_section)
+ #define bfd_ind_section_ptr (&std_section[3])
+
+ #define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
+ #define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
#define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr)
#define bfd_is_const_section(SEC) \
@@ -1924,8 +1950,8 @@ Here is the section structure:
/* vma, lma, size, rawsize, compressed_size, relax, relax_count, */ \
0, 0, 0, 0, 0, 0, 0, \
\
- /* output_offset, output_section, alignment_power, */ \
- 0, (struct bfd_section *) &SEC, 0, \
+ /* output_offset, output_section, alignment_power, */ \
+ 0, &SEC, 0, \
\
/* relocation, orelocation, reloc_count, filepos, rel_filepos, */ \
NULL, NULL, 0, 0, 0, \
@@ -1939,9 +1965,6 @@ Here is the section structure:
/* target_index, used_by_bfd, constructor_chain, owner, */ \
0, NULL, NULL, NULL, \
\
- /* flag_info, */ \
- NULL, \
- \
/* symbol, symbol_ptr_ptr, */ \
(struct bfd_symbol *) SYM, &SEC.symbol, \
\
@@ -1972,15 +1995,29 @@ table entries.
*Synopsis*
asection *bfd_get_section_by_name (bfd *abfd, const char *name);
*Description*
-Run through ABFD and return the one of the `asection's whose name
-matches NAME, otherwise `NULL'. *Note Sections::, for more information.
+Return the most recently created section attached to ABFD named NAME.
+Return NULL if no such section exists.
+
+2.6.5.3 `bfd_get_next_section_by_name'
+......................................
- This should only be used in special cases; the normal way to process
-all sections of a given name is to use `bfd_map_over_sections' and
-`strcmp' on the name (or better yet, base it on the section flags or
-something else) for each section.
+*Synopsis*
+ asection *bfd_get_next_section_by_name (asection *sec);
+ *Description*
+Given SEC is a section returned by `bfd_get_section_by_name', return
+the next most recently created section attached to the same BFD with
+the same name. Return NULL if no such section exists.
+
+2.6.5.4 `bfd_get_linker_section'
+................................
+
+*Synopsis*
+ asection *bfd_get_linker_section (bfd *abfd, const char *name);
+ *Description*
+Return the linker created section attached to ABFD named NAME. Return
+NULL if no such section exists.
-2.6.5.3 `bfd_get_section_by_name_if'
+2.6.5.5 `bfd_get_section_by_name_if'
....................................
*Synopsis*
@@ -1999,7 +2036,7 @@ will be called as if by
It returns the first section for which FUNC returns true, otherwise
`NULL'.
-2.6.5.4 `bfd_get_unique_section_name'
+2.6.5.6 `bfd_get_unique_section_name'
.....................................
*Synopsis*
@@ -2011,7 +2048,7 @@ digit suffix onto the original TEMPLAT. If COUNT is non-NULL, then it
specifies the first number tried as a suffix to generate a unique name.
The value pointed to by COUNT will be incremented in this case.
-2.6.5.5 `bfd_make_section_old_way'
+2.6.5.7 `bfd_make_section_old_way'
..................................
*Synopsis*
@@ -2031,7 +2068,7 @@ was rewritten....
* `bfd_error_no_memory' - If memory allocation fails.
-2.6.5.6 `bfd_make_section_anyway_with_flags'
+2.6.5.8 `bfd_make_section_anyway_with_flags'
............................................
*Synopsis*
@@ -2049,7 +2086,7 @@ section to the value FLAGS.
* `bfd_error_no_memory' - If memory allocation fails.
-2.6.5.7 `bfd_make_section_anyway'
+2.6.5.9 `bfd_make_section_anyway'
.................................
*Synopsis*
@@ -2065,8 +2102,8 @@ already a section with that name.
* `bfd_error_no_memory' - If memory allocation fails.
-2.6.5.8 `bfd_make_section_with_flags'
-.....................................
+2.6.5.10 `bfd_make_section_with_flags'
+......................................
*Synopsis*
asection *bfd_make_section_with_flags
@@ -2078,8 +2115,8 @@ already a section named NAME. Also set the attributes of the new
section to the value FLAGS. If there is an error, return `NULL' and set
`bfd_error'.
-2.6.5.9 `bfd_make_section'
-..........................
+2.6.5.11 `bfd_make_section'
+...........................
*Synopsis*
asection *bfd_make_section (bfd *, const char *name);
@@ -2089,7 +2126,7 @@ bfd_set_error ()) without changing the section chain if there is
already a section named NAME. If there is an error, return `NULL' and
set `bfd_error'.
-2.6.5.10 `bfd_set_section_flags'
+2.6.5.12 `bfd_set_section_flags'
................................
*Synopsis*
@@ -2104,7 +2141,7 @@ returns are:
more of the attributes requested. For example, a .bss section in
`a.out' may not have the `SEC_HAS_CONTENTS' field set.
-2.6.5.11 `bfd_rename_section'
+2.6.5.13 `bfd_rename_section'
.............................
*Synopsis*
@@ -2113,7 +2150,7 @@ returns are:
*Description*
Rename section SEC in ABFD to NEWNAME.
-2.6.5.12 `bfd_map_over_sections'
+2.6.5.14 `bfd_map_over_sections'
................................
*Synopsis*
@@ -2134,7 +2171,7 @@ alternative would be to use a loop:
for (p = abfd->sections; p != NULL; p = p->next)
func (abfd, p, ...)
-2.6.5.13 `bfd_sections_find_if'
+2.6.5.15 `bfd_sections_find_if'
...............................
*Synopsis*
@@ -2151,7 +2188,7 @@ by
It returns the first section for which OPERATION returns true.
-2.6.5.14 `bfd_set_section_size'
+2.6.5.16 `bfd_set_section_size'
...............................
*Synopsis*
@@ -2165,7 +2202,7 @@ returned, else `FALSE'.
* `bfd_error_invalid_operation' - Writing has started to the BFD, so
setting the size is invalid.
-2.6.5.15 `bfd_set_section_contents'
+2.6.5.17 `bfd_set_section_contents'
...................................
*Synopsis*
@@ -2186,7 +2223,7 @@ are:
This routine is front end to the back end function
`_bfd_set_section_contents'.
-2.6.5.16 `bfd_get_section_contents'
+2.6.5.18 `bfd_get_section_contents'
...................................
*Synopsis*
@@ -2203,7 +2240,7 @@ are requested or if the section does not have the `SEC_HAS_CONTENTS'
flag set, then the LOCATION is filled with zeroes. If no errors occur,
`TRUE' is returned, else `FALSE'.
-2.6.5.17 `bfd_malloc_and_get_section'
+2.6.5.19 `bfd_malloc_and_get_section'
.....................................
*Synopsis*
@@ -2213,7 +2250,7 @@ flag set, then the LOCATION is filled with zeroes. If no errors occur,
Read all data from SECTION in BFD ABFD into a buffer, *BUF, malloc'd by
this function.
-2.6.5.18 `bfd_copy_private_section_data'
+2.6.5.20 `bfd_copy_private_section_data'
........................................
*Synopsis*
@@ -2231,7 +2268,7 @@ error. Possible error returns are:
BFD_SEND (obfd, _bfd_copy_private_section_data, \
(ibfd, isection, obfd, osection))
-2.6.5.19 `bfd_generic_is_group_section'
+2.6.5.21 `bfd_generic_is_group_section'
.......................................
*Synopsis*
@@ -2239,7 +2276,7 @@ error. Possible error returns are:
*Description*
Returns TRUE if SEC is a member of a group.
-2.6.5.20 `bfd_generic_discard_group'
+2.6.5.22 `bfd_generic_discard_group'
....................................
*Synopsis*
@@ -2334,6 +2371,7 @@ provided with an "owned" symbol: one which has come from another BFD,
or one which has been created using `bfd_make_empty_symbol'. Here is an
example showing the creation of a symbol table with only one element:
+ #include "sysdep.h"
#include "bfd.h"
int main (void)
{
@@ -3492,6 +3530,10 @@ attributes.
-- : BFD_RELOC_SPARC_M44
-- : BFD_RELOC_SPARC_L44
-- : BFD_RELOC_SPARC_REGISTER
+ -- : BFD_RELOC_SPARC_H34
+ -- : BFD_RELOC_SPARC_SIZE32
+ -- : BFD_RELOC_SPARC_SIZE64
+ -- : BFD_RELOC_SPARC_WDISP10
SPARC64 relocations
-- : BFD_RELOC_SPARC_REV32
@@ -3688,6 +3730,15 @@ attributes.
-- : BFD_RELOC_MIPS16_LO16
MIPS16 low 16 bits.
+ -- : BFD_RELOC_MIPS16_TLS_GD
+ -- : BFD_RELOC_MIPS16_TLS_LDM
+ -- : BFD_RELOC_MIPS16_TLS_DTPREL_HI16
+ -- : BFD_RELOC_MIPS16_TLS_DTPREL_LO16
+ -- : BFD_RELOC_MIPS16_TLS_GOTTPREL
+ -- : BFD_RELOC_MIPS16_TLS_TPREL_HI16
+ -- : BFD_RELOC_MIPS16_TLS_TPREL_LO16
+ MIPS16 TLS relocations
+
-- : BFD_RELOC_MIPS_LITERAL
-- : BFD_RELOC_MICROMIPS_LITERAL
Relocation against a MIPS literal section.
@@ -3844,6 +3895,25 @@ attributes.
The addend of this reloc is an alignment power that must be
honoured at the offset's location, regardless of linker relaxation.
+ -- : BFD_RELOC_MN10300_TLS_GD
+ -- : BFD_RELOC_MN10300_TLS_LD
+ -- : BFD_RELOC_MN10300_TLS_LDO
+ -- : BFD_RELOC_MN10300_TLS_GOTIE
+ -- : BFD_RELOC_MN10300_TLS_IE
+ -- : BFD_RELOC_MN10300_TLS_LE
+ -- : BFD_RELOC_MN10300_TLS_DTPMOD
+ -- : BFD_RELOC_MN10300_TLS_DTPOFF
+ -- : BFD_RELOC_MN10300_TLS_TPOFF
+ Various TLS-related relocations.
+
+ -- : BFD_RELOC_MN10300_32_PCREL
+ This is a 32bit pcrel reloc for the mn10300, offset by two bytes
+ in the instruction.
+
+ -- : BFD_RELOC_MN10300_16_PCREL
+ This is a 16bit pcrel reloc for the mn10300, offset by two bytes
+ in the instruction.
+
-- : BFD_RELOC_386_GOT32
-- : BFD_RELOC_386_PLT32
-- : BFD_RELOC_386_COPY
@@ -3955,6 +4025,23 @@ attributes.
-- : BFD_RELOC_PPC_EMB_RELST_HA
-- : BFD_RELOC_PPC_EMB_BIT_FLD
-- : BFD_RELOC_PPC_EMB_RELSDA
+ -- : BFD_RELOC_PPC_VLE_REL8
+ -- : BFD_RELOC_PPC_VLE_REL15
+ -- : BFD_RELOC_PPC_VLE_REL24
+ -- : BFD_RELOC_PPC_VLE_LO16A
+ -- : BFD_RELOC_PPC_VLE_LO16D
+ -- : BFD_RELOC_PPC_VLE_HI16A
+ -- : BFD_RELOC_PPC_VLE_HI16D
+ -- : BFD_RELOC_PPC_VLE_HA16A
+ -- : BFD_RELOC_PPC_VLE_HA16D
+ -- : BFD_RELOC_PPC_VLE_SDA21
+ -- : BFD_RELOC_PPC_VLE_SDA21_LO
+ -- : BFD_RELOC_PPC_VLE_SDAREL_LO16A
+ -- : BFD_RELOC_PPC_VLE_SDAREL_LO16D
+ -- : BFD_RELOC_PPC_VLE_SDAREL_HI16A
+ -- : BFD_RELOC_PPC_VLE_SDAREL_HI16D
+ -- : BFD_RELOC_PPC_VLE_SDAREL_HA16A
+ -- : BFD_RELOC_PPC_VLE_SDAREL_HA16D
-- : BFD_RELOC_PPC64_HIGHER
-- : BFD_RELOC_PPC64_HIGHER_S
-- : BFD_RELOC_PPC64_HIGHEST
@@ -4674,14 +4761,6 @@ attributes.
-- : BFD_RELOC_V850_DATA
start data in text.
- -- : BFD_RELOC_MN10300_32_PCREL
- This is a 32bit pcrel reloc for the mn10300, offset by two bytes
- in the instruction.
-
- -- : BFD_RELOC_MN10300_16_PCREL
- This is a 16bit pcrel reloc for the mn10300, offset by two bytes
- in the instruction.
-
-- : BFD_RELOC_TIC30_LDP
This is a 8bit DP reloc for the tms320c30, where the most
significant 8 bits of a 24 bit word are placed into the least
@@ -4955,6 +5034,18 @@ attributes.
This is a 6 bit reloc for the AVR that stores offset for adiw/sbiw
instructions
+ -- : BFD_RELOC_AVR_8_LO
+ This is a 8 bit reloc for the AVR that stores bits 0..7 of a symbol
+ in .byte lo8(symbol)
+
+ -- : BFD_RELOC_AVR_8_HI
+ This is a 8 bit reloc for the AVR that stores bits 8..15 of a
+ symbol in .byte hi8(symbol)
+
+ -- : BFD_RELOC_AVR_8_HLO
+ This is a 8 bit reloc for the AVR that stores bits 16..23 of a
+ symbol in .byte hlo8(symbol)
+
-- : BFD_RELOC_RL78_NEG8
-- : BFD_RELOC_RL78_NEG16
-- : BFD_RELOC_RL78_NEG24
@@ -5124,6 +5215,9 @@ attributes.
-- : BFD_RELOC_390_TLS_GOTIE20
Long displacement extension.
+ -- : BFD_RELOC_390_IRELATIVE
+ STT_GNU_IFUNC relocation.
+
-- : BFD_RELOC_SCORE_GPREL15
Score relocations Low 16 bit for load/store
@@ -5332,6 +5426,68 @@ attributes.
-- : BFD_RELOC_M68HC12_5B
Motorola 68HC12 reloc. This is the 5 bits of a value.
+ -- : BFD_RELOC_XGATE_RL_JUMP
+ Freescale XGATE reloc. This reloc marks the beginning of a
+ bra/jal instruction.
+
+ -- : BFD_RELOC_XGATE_RL_GROUP
+ Freescale XGATE reloc. This reloc marks a group of several
+ instructions that gcc generates and for which the linker
+ relaxation pass can modify and/or remove some of them.
+
+ -- : BFD_RELOC_XGATE_LO16
+ Freescale XGATE reloc. This is the 16-bit lower part of an
+ address. It is used for the '16-bit' instructions.
+
+ -- : BFD_RELOC_XGATE_GPAGE
+ Freescale XGATE reloc.
+
+ -- : BFD_RELOC_XGATE_24
+ Freescale XGATE reloc.
+
+ -- : BFD_RELOC_XGATE_PCREL_9
+ Freescale XGATE reloc. This is a 9-bit pc-relative reloc.
+
+ -- : BFD_RELOC_XGATE_PCREL_10
+ Freescale XGATE reloc. This is a 10-bit pc-relative reloc.
+
+ -- : BFD_RELOC_XGATE_IMM8_LO
+ Freescale XGATE reloc. This is the 16-bit lower part of an
+ address. It is used for the '16-bit' instructions.
+
+ -- : BFD_RELOC_XGATE_IMM8_HI
+ Freescale XGATE reloc. This is the 16-bit higher part of an
+ address. It is used for the '16-bit' instructions.
+
+ -- : BFD_RELOC_XGATE_IMM3
+ Freescale XGATE reloc. This is a 3-bit pc-relative reloc.
+
+ -- : BFD_RELOC_XGATE_IMM4
+ Freescale XGATE reloc. This is a 4-bit pc-relative reloc.
+
+ -- : BFD_RELOC_XGATE_IMM5
+ Freescale XGATE reloc. This is a 5-bit pc-relative reloc.
+
+ -- : BFD_RELOC_M68HC12_9B
+ Motorola 68HC12 reloc. This is the 9 bits of a value.
+
+ -- : BFD_RELOC_M68HC12_16B
+ Motorola 68HC12 reloc. This is the 16 bits of a value.
+
+ -- : BFD_RELOC_M68HC12_9_PCREL
+ Motorola 68HC12/XGATE reloc. This is a PCREL9 branch.
+
+ -- : BFD_RELOC_M68HC12_10_PCREL
+ Motorola 68HC12/XGATE reloc. This is a PCREL10 branch.
+
+ -- : BFD_RELOC_M68HC12_LO8XG
+ Motorola 68HC12/XGATE reloc. This is the 8 bit low part of an
+ absolute address and immediately precedes a matching HI8XG part.
+
+ -- : BFD_RELOC_M68HC12_HI8XG
+ Motorola 68HC12/XGATE reloc. This is the 8 bit high part of an
+ absolute address and immediately follows a matching LO8XG part.
+
-- : BFD_RELOC_16C_NUM08
-- : BFD_RELOC_16C_NUM08_C
-- : BFD_RELOC_16C_NUM16
@@ -5698,6 +5854,9 @@ attributes.
Difference between two section addreses. Must be followed by a
BFD_RELOC_MACH_O_PAIR.
+ -- : BFD_RELOC_MACH_O_LOCAL_SECTDIFF
+ Like BFD_RELOC_MACH_O_SECTDIFF but with a local symbol.
+
-- : BFD_RELOC_MACH_O_PAIR
Pair of relocation. Contains the first symbol.
@@ -5826,6 +5985,12 @@ attributes.
-- : BFD_RELOC_TILEPRO_SHAMT_X1
-- : BFD_RELOC_TILEPRO_SHAMT_Y0
-- : BFD_RELOC_TILEPRO_SHAMT_Y1
+ -- : BFD_RELOC_TILEPRO_TLS_GD_CALL
+ -- : BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD
+ -- : BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD
+ -- : BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD
+ -- : BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD
+ -- : BFD_RELOC_TILEPRO_TLS_IE_LOAD
-- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD
-- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD
-- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO
@@ -5845,6 +6010,14 @@ attributes.
-- : BFD_RELOC_TILEPRO_TLS_DTPMOD32
-- : BFD_RELOC_TILEPRO_TLS_DTPOFF32
-- : BFD_RELOC_TILEPRO_TLS_TPOFF32
+ -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE
+ -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE
+ -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO
+ -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO
+ -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI
+ -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI
+ -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA
+ -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA
Tilera TILEPro Relocations.
-- : BFD_RELOC_TILEGX_HW0
@@ -5904,52 +6077,44 @@ attributes.
-- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL
-- : BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT
-- : BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_GOT
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_GOT
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_GOT
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_GOT
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_GOT
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_GOT
-- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT
-- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT
-- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT
-- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_GOT
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_GOT
-- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD
-- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_TLS_GD
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_TLS_GD
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_TLS_GD
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_TLS_GD
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_TLS_GD
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_TLS_GD
+ -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE
+ -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE
+ -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE
+ -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE
+ -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE
+ -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE
-- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD
-- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD
-- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD
-- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_TLS_GD
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_TLS_GD
-- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE
-- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_TLS_IE
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_TLS_IE
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_TLS_IE
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_TLS_IE
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_TLS_IE
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_TLS_IE
-- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE
-- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE
-- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE
-- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE
- -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_TLS_IE
- -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_TLS_IE
-- : BFD_RELOC_TILEGX_TLS_DTPMOD64
-- : BFD_RELOC_TILEGX_TLS_DTPOFF64
-- : BFD_RELOC_TILEGX_TLS_TPOFF64
-- : BFD_RELOC_TILEGX_TLS_DTPMOD32
-- : BFD_RELOC_TILEGX_TLS_DTPOFF32
-- : BFD_RELOC_TILEGX_TLS_TPOFF32
+ -- : BFD_RELOC_TILEGX_TLS_GD_CALL
+ -- : BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD
+ -- : BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD
+ -- : BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD
+ -- : BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD
+ -- : BFD_RELOC_TILEGX_TLS_IE_LOAD
+ -- : BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD
+ -- : BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD
+ -- : BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD
+ -- : BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD
Tilera TILE-Gx Relocations.
-- : BFD_RELOC_EPIPHANY_SIMM8
@@ -6034,10 +6199,11 @@ section gc - i.e., does nothing.
...........................................
*Synopsis*
- void bfd_generic_lookup_section_flags
- (struct bfd_link_info *, struct flag_info *);
+ bfd_boolean bfd_generic_lookup_section_flags
+ (struct bfd_link_info *, struct flag_info *, asection *);
*Description*
Provides default handling for section flags lookup - i.e., does nothing.
+Returns FALSE if the section should be omitted, otherwise TRUE.
2.10.2.8 `bfd_generic_merge_sections'
.....................................
@@ -6581,8 +6747,9 @@ BFD_JUMP_TABLE macros.
bfd_boolean (*_bfd_gc_sections) (bfd *, struct bfd_link_info *);
/* Sets the bitmask of allowed and disallowed section flags. */
- void (*_bfd_lookup_section_flags) (struct bfd_link_info *,
- struct flag_info *);
+ bfd_boolean (*_bfd_lookup_section_flags) (struct bfd_link_info *,
+ struct flag_info *,
+ asection *);
/* Attempt to merge SEC_MERGE sections. */
bfd_boolean (*_bfd_merge_sections) (bfd *, struct bfd_link_info *);
@@ -6922,7 +7089,10 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
#define bfd_mach_ppc_e500 500
#define bfd_mach_ppc_e500mc 5001
#define bfd_mach_ppc_e500mc64 5005
+ #define bfd_mach_ppc_e5500 5006
+ #define bfd_mach_ppc_e6500 5007
#define bfd_mach_ppc_titan 83
+ #define bfd_mach_ppc_vle 84
bfd_arch_rs6000, /* IBM RS/6000 */
#define bfd_mach_rs6k 6000
#define bfd_mach_rs6k_rs1 6001
@@ -6944,6 +7114,8 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
#define bfd_mach_m6812_default 0
#define bfd_mach_m6812 1
#define bfd_mach_m6812s 2
+ bfd_arch_m9s12x, /* Freescale S12X */
+ bfd_arch_m9s12xg, /* Freescale XGATE */
bfd_arch_z8k, /* Zilog Z8000 */
#define bfd_mach_z8001 1
#define bfd_mach_z8002 2
@@ -7119,7 +7291,9 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
bfd_arch_xc16x, /* Infineon's XC16X Series. */
#define bfd_mach_xc16x 1
#define bfd_mach_xc16xl 2
- #define bfd_mach_xc16xs 3
+ #define bfd_mach_xc16xs 3
+ bfd_arch_xgate, /* Freescale XGATE */
+ #define bfd_mach_xgate 1
bfd_arch_xtensa, /* Tensilica's Xtensa cores. */
#define bfd_mach_xtensa 1
bfd_arch_z80,
@@ -7134,6 +7308,7 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
bfd_arch_tilegx, /* Tilera TILE-Gx */
#define bfd_mach_tilepro 1
#define bfd_mach_tilegx 1
+ #define bfd_mach_tilegx32 2
bfd_arch_last
};
@@ -7162,6 +7337,12 @@ This structure contains information on architectures for use within BFD.
bfd_boolean (*scan) (const struct bfd_arch_info *, const char *);
+ /* Allocate via bfd_malloc and return a fill buffer of size COUNT. If
+ IS_BIGENDIAN is TRUE, the order of bytes is big endian. If CODE is
+ TRUE, the buffer contains code. */
+ void *(*fill) (bfd_size_type count, bfd_boolean is_bigendian,
+ bfd_boolean code);
+
const struct bfd_arch_info *next;
}
bfd_arch_info_type;
@@ -7340,6 +7521,18 @@ See bfd_octets_per_byte.
This routine is provided for those cases where a bfd * is not
available
+2.13.2.19 `bfd_arch_default_fill'
+.................................
+
+*Synopsis*
+ void *bfd_arch_default_fill (bfd_size_type count,
+ bfd_boolean is_bigendian,
+ bfd_boolean code);
+ *Description*
+Allocate via bfd_malloc and return a fill buffer of size COUNT. If
+IS_BIGENDIAN is TRUE, the order of bytes is big endian. If CODE is
+TRUE, the buffer contains code.
+

File: bfd.info, Node: Opening and Closing, Next: Internal, Prev: Architectures, Up: BFD front end
@@ -7373,6 +7566,8 @@ function.
are `bfd_error_no_memory', `bfd_error_invalid_target' or `system_call'
error.
+ On error, FD is always closed.
+
2.14.1.2 `bfd_openr'
....................
@@ -7410,6 +7605,8 @@ operations on other files.
Possible errors are `bfd_error_no_memory',
`bfd_error_invalid_target' and `bfd_error_system_call'.
+ On error, FD is closed.
+
2.14.1.4 `bfd_openstreamr'
..........................
@@ -10331,119 +10528,123 @@ BFD Index
* BFD: Overview. (line 6)
* BFD canonical format: Canonical format. (line 11)
* bfd_alloc: Opening and Closing.
- (line 214)
+ (line 218)
* bfd_alloc2: Opening and Closing.
- (line 223)
-* bfd_alt_mach_code: BFD front end. (line 714)
-* bfd_arch_bits_per_address: Architectures. (line 547)
-* bfd_arch_bits_per_byte: Architectures. (line 539)
-* bfd_arch_get_compatible: Architectures. (line 482)
-* bfd_arch_list: Architectures. (line 473)
-* bfd_arch_mach_octets_per_byte: Architectures. (line 616)
-* BFD_ARELOC_BFIN_ADD: howto manager. (line 1058)
-* BFD_ARELOC_BFIN_ADDR: howto manager. (line 1109)
-* BFD_ARELOC_BFIN_AND: howto manager. (line 1079)
-* BFD_ARELOC_BFIN_COMP: howto manager. (line 1100)
-* BFD_ARELOC_BFIN_CONST: howto manager. (line 1055)
-* BFD_ARELOC_BFIN_DIV: howto manager. (line 1067)
-* BFD_ARELOC_BFIN_HWPAGE: howto manager. (line 1106)
-* BFD_ARELOC_BFIN_LAND: howto manager. (line 1088)
-* BFD_ARELOC_BFIN_LEN: howto manager. (line 1094)
-* BFD_ARELOC_BFIN_LOR: howto manager. (line 1091)
-* BFD_ARELOC_BFIN_LSHIFT: howto manager. (line 1073)
-* BFD_ARELOC_BFIN_MOD: howto manager. (line 1070)
-* BFD_ARELOC_BFIN_MULT: howto manager. (line 1064)
-* BFD_ARELOC_BFIN_NEG: howto manager. (line 1097)
-* BFD_ARELOC_BFIN_OR: howto manager. (line 1082)
-* BFD_ARELOC_BFIN_PAGE: howto manager. (line 1103)
-* BFD_ARELOC_BFIN_PUSH: howto manager. (line 1052)
-* BFD_ARELOC_BFIN_RSHIFT: howto manager. (line 1076)
-* BFD_ARELOC_BFIN_SUB: howto manager. (line 1061)
-* BFD_ARELOC_BFIN_XOR: howto manager. (line 1085)
+ (line 227)
+* bfd_alt_mach_code: BFD front end. (line 746)
+* bfd_arch_bits_per_address: Architectures. (line 561)
+* bfd_arch_bits_per_byte: Architectures. (line 553)
+* bfd_arch_default_fill: Architectures. (line 642)
+* bfd_arch_get_compatible: Architectures. (line 496)
+* bfd_arch_list: Architectures. (line 487)
+* bfd_arch_mach_octets_per_byte: Architectures. (line 630)
+* BFD_ARELOC_BFIN_ADD: howto manager. (line 1107)
+* BFD_ARELOC_BFIN_ADDR: howto manager. (line 1158)
+* BFD_ARELOC_BFIN_AND: howto manager. (line 1128)
+* BFD_ARELOC_BFIN_COMP: howto manager. (line 1149)
+* BFD_ARELOC_BFIN_CONST: howto manager. (line 1104)
+* BFD_ARELOC_BFIN_DIV: howto manager. (line 1116)
+* BFD_ARELOC_BFIN_HWPAGE: howto manager. (line 1155)
+* BFD_ARELOC_BFIN_LAND: howto manager. (line 1137)
+* BFD_ARELOC_BFIN_LEN: howto manager. (line 1143)
+* BFD_ARELOC_BFIN_LOR: howto manager. (line 1140)
+* BFD_ARELOC_BFIN_LSHIFT: howto manager. (line 1122)
+* BFD_ARELOC_BFIN_MOD: howto manager. (line 1119)
+* BFD_ARELOC_BFIN_MULT: howto manager. (line 1113)
+* BFD_ARELOC_BFIN_NEG: howto manager. (line 1146)
+* BFD_ARELOC_BFIN_OR: howto manager. (line 1131)
+* BFD_ARELOC_BFIN_PAGE: howto manager. (line 1152)
+* BFD_ARELOC_BFIN_PUSH: howto manager. (line 1101)
+* BFD_ARELOC_BFIN_RSHIFT: howto manager. (line 1125)
+* BFD_ARELOC_BFIN_SUB: howto manager. (line 1110)
+* BFD_ARELOC_BFIN_XOR: howto manager. (line 1134)
* 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 250)
-* bfd_canonicalize_reloc: BFD front end. (line 430)
+ (line 254)
+* bfd_canonicalize_reloc: BFD front end. (line 462)
* 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 348)
* bfd_close: Opening and Closing.
- (line 139)
+ (line 143)
* bfd_close_all_done: Opening and Closing.
- (line 157)
+ (line 161)
* bfd_coff_backend_data: coff. (line 304)
-* bfd_copy_private_bfd_data: BFD front end. (line 569)
-* bfd_copy_private_header_data: BFD front end. (line 551)
-* bfd_copy_private_section_data: section prototypes. (line 264)
+* bfd_copy_private_bfd_data: BFD front end. (line 601)
+* bfd_copy_private_header_data: BFD front end. (line 583)
+* bfd_copy_private_section_data: section prototypes. (line 278)
* 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_core_file_pid: Core Files. (line 30)
* bfd_create: Opening and Closing.
- (line 176)
+ (line 180)
* bfd_create_gnu_debuglink_section: Opening and Closing.
- (line 316)
+ (line 320)
* bfd_decode_symclass: symbol handling functions.
(line 111)
-* bfd_default_arch_struct: Architectures. (line 494)
-* bfd_default_compatible: Architectures. (line 556)
-* bfd_default_reloc_type_lookup: howto manager. (line 2682)
-* bfd_default_scan: Architectures. (line 565)
-* bfd_default_set_arch_mach: Architectures. (line 512)
-* bfd_demangle: BFD front end. (line 812)
-* bfd_emul_get_commonpagesize: BFD front end. (line 792)
-* bfd_emul_get_maxpagesize: BFD front end. (line 772)
-* bfd_emul_set_commonpagesize: BFD front end. (line 803)
-* bfd_emul_set_maxpagesize: BFD front end. (line 783)
+* bfd_default_arch_struct: Architectures. (line 508)
+* bfd_default_compatible: Architectures. (line 570)
+* bfd_default_reloc_type_lookup: howto manager. (line 2809)
+* bfd_default_scan: Architectures. (line 579)
+* bfd_default_set_arch_mach: Architectures. (line 526)
+* bfd_demangle: BFD front end. (line 844)
+* bfd_emul_get_commonpagesize: BFD front end. (line 824)
+* bfd_emul_get_maxpagesize: BFD front end. (line 804)
+* bfd_emul_set_commonpagesize: BFD front end. (line 835)
+* bfd_emul_set_maxpagesize: BFD front end. (line 815)
* bfd_errmsg: BFD front end. (line 355)
* bfd_fdopenr: Opening and Closing.
- (line 49)
+ (line 51)
* bfd_fill_in_gnu_debuglink_section: Opening and Closing.
- (line 330)
-* bfd_find_target: bfd_target. (line 468)
+ (line 334)
+* bfd_find_target: bfd_target. (line 469)
* bfd_find_version_for_sym: Writing the symbol table.
(line 81)
* bfd_follow_gnu_debuglink: Opening and Closing.
- (line 295)
+ (line 299)
* bfd_fopen: Opening and Closing.
(line 12)
* bfd_format_string: Formats. (line 79)
* bfd_generic_define_common_symbol: Writing the symbol table.
(line 68)
-* bfd_generic_discard_group: section prototypes. (line 290)
-* bfd_generic_gc_sections: howto manager. (line 2713)
-* bfd_generic_get_relocated_section_contents: howto manager. (line 2742)
-* bfd_generic_is_group_section: section prototypes. (line 282)
-* bfd_generic_lookup_section_flags: howto manager. (line 2723)
-* bfd_generic_merge_sections: howto manager. (line 2732)
-* bfd_generic_relax_section: howto manager. (line 2700)
-* bfd_get_arch: Architectures. (line 523)
-* bfd_get_arch_info: Architectures. (line 575)
-* bfd_get_arch_size: BFD front end. (line 474)
+* bfd_generic_discard_group: section prototypes. (line 304)
+* bfd_generic_gc_sections: howto manager. (line 2840)
+* bfd_generic_get_relocated_section_contents: howto manager. (line 2870)
+* bfd_generic_is_group_section: section prototypes. (line 296)
+* bfd_generic_lookup_section_flags: howto manager. (line 2850)
+* bfd_generic_merge_sections: howto manager. (line 2860)
+* bfd_generic_relax_section: howto manager. (line 2827)
+* bfd_get_arch: Architectures. (line 537)
+* bfd_get_arch_info: Architectures. (line 589)
+* bfd_get_arch_size: BFD front end. (line 506)
+* bfd_get_assert_handler: BFD front end. (line 438)
* bfd_get_error: BFD front end. (line 336)
* bfd_get_error_handler: BFD front end. (line 406)
-* bfd_get_gp_size: BFD front end. (line 515)
-* bfd_get_mach: Architectures. (line 531)
-* bfd_get_mtime: BFD front end. (line 863)
+* bfd_get_gp_size: BFD front end. (line 547)
+* bfd_get_linker_section: section prototypes. (line 36)
+* bfd_get_mach: Architectures. (line 545)
+* bfd_get_mtime: BFD front end. (line 895)
* bfd_get_next_mapent: Archives. (line 52)
-* bfd_get_reloc_code_name: howto manager. (line 2691)
+* bfd_get_next_section_by_name: section prototypes. (line 26)
+* bfd_get_reloc_code_name: howto manager. (line 2818)
* bfd_get_reloc_size: typedef arelent. (line 327)
-* bfd_get_reloc_upper_bound: BFD front end. (line 420)
+* bfd_get_reloc_upper_bound: BFD front end. (line 452)
* 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 237)
-* bfd_get_sign_extend_vma: BFD front end. (line 487)
+* bfd_get_section_by_name_if: section prototypes. (line 45)
+* bfd_get_section_contents: section prototypes. (line 251)
+* bfd_get_sign_extend_vma: BFD front end. (line 519)
* bfd_get_size <1>: Internal. (line 25)
-* bfd_get_size: BFD front end. (line 872)
+* bfd_get_size: BFD front end. (line 904)
* bfd_get_symtab_upper_bound: symbol handling functions.
(line 6)
-* bfd_get_target_info: bfd_target. (line 484)
-* bfd_get_unique_section_name: section prototypes. (line 50)
+* bfd_get_target_info: bfd_target. (line 485)
+* bfd_get_unique_section_name: section prototypes. (line 64)
* bfd_h_put_size: Internal. (line 97)
* bfd_hash_allocate: Creating and Freeing a Hash Table.
(line 17)
@@ -10476,44 +10677,44 @@ BFD Index
* bfd_link_split_section: Writing the symbol table.
(line 44)
* bfd_log2: Internal. (line 164)
-* bfd_lookup_arch: Architectures. (line 583)
+* bfd_lookup_arch: Architectures. (line 597)
* 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 200)
-* 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)
+ (line 204)
+* bfd_make_section: section prototypes. (line 143)
+* bfd_make_section_anyway: section prototypes. (line 114)
+* bfd_make_section_anyway_with_flags: section prototypes. (line 96)
+* bfd_make_section_old_way: section prototypes. (line 76)
+* bfd_make_section_with_flags: section prototypes. (line 130)
* bfd_make_writable: Opening and Closing.
- (line 186)
-* bfd_malloc_and_get_section: section prototypes. (line 254)
-* bfd_map_over_sections: section prototypes. (line 164)
-* bfd_merge_private_bfd_data: BFD front end. (line 585)
-* bfd_mmap: BFD front end. (line 901)
-* bfd_octets_per_byte: Architectures. (line 606)
+ (line 190)
+* bfd_malloc_and_get_section: section prototypes. (line 268)
+* bfd_map_over_sections: section prototypes. (line 178)
+* bfd_merge_private_bfd_data: BFD front end. (line 617)
+* bfd_mmap: BFD front end. (line 933)
+* bfd_octets_per_byte: Architectures. (line 620)
* bfd_open_file: File Caching. (line 52)
* bfd_openr: Opening and Closing.
- (line 33)
+ (line 35)
* bfd_openr_iovec: Opening and Closing.
- (line 79)
+ (line 83)
* bfd_openr_next_archived_file: Archives. (line 78)
* bfd_openstreamr: Opening and Closing.
- (line 70)
+ (line 74)
* bfd_openw: Opening and Closing.
- (line 127)
+ (line 131)
* bfd_perform_relocation: typedef arelent. (line 364)
* bfd_perror: BFD front end. (line 364)
-* bfd_preserve_finish: BFD front end. (line 762)
-* bfd_preserve_restore: BFD front end. (line 752)
-* bfd_preserve_save: BFD front end. (line 736)
+* bfd_preserve_finish: BFD front end. (line 794)
+* bfd_preserve_restore: BFD front end. (line 784)
+* bfd_preserve_save: BFD front end. (line 768)
* bfd_print_symbol_vandf: symbol handling functions.
(line 70)
-* bfd_printable_arch_mach: Architectures. (line 594)
-* bfd_printable_name: Architectures. (line 454)
+* bfd_printable_arch_mach: Architectures. (line 608)
+* bfd_printable_name: Architectures. (line 468)
* bfd_put_size: Internal. (line 22)
* BFD_RELOC_12_PCREL: howto manager. (line 39)
* BFD_RELOC_14: howto manager. (line 31)
@@ -10525,46 +10726,46 @@ BFD Index
* BFD_RELOC_16_PCREL_S2: howto manager. (line 107)
* BFD_RELOC_16_PLT_PCREL: howto manager. (line 63)
* BFD_RELOC_16_PLTOFF: howto manager. (line 67)
-* BFD_RELOC_16C_ABS20: howto manager. (line 2052)
-* BFD_RELOC_16C_ABS20_C: howto manager. (line 2053)
-* BFD_RELOC_16C_ABS24: howto manager. (line 2054)
-* BFD_RELOC_16C_ABS24_C: howto manager. (line 2055)
-* BFD_RELOC_16C_DISP04: howto manager. (line 2032)
-* BFD_RELOC_16C_DISP04_C: howto manager. (line 2033)
-* BFD_RELOC_16C_DISP08: howto manager. (line 2034)
-* BFD_RELOC_16C_DISP08_C: howto manager. (line 2035)
-* BFD_RELOC_16C_DISP16: howto manager. (line 2036)
-* BFD_RELOC_16C_DISP16_C: howto manager. (line 2037)
-* BFD_RELOC_16C_DISP24: howto manager. (line 2038)
-* BFD_RELOC_16C_DISP24_C: howto manager. (line 2039)
-* BFD_RELOC_16C_DISP24a: howto manager. (line 2040)
-* BFD_RELOC_16C_DISP24a_C: howto manager. (line 2041)
-* BFD_RELOC_16C_IMM04: howto manager. (line 2056)
-* BFD_RELOC_16C_IMM04_C: howto manager. (line 2057)
-* BFD_RELOC_16C_IMM16: howto manager. (line 2058)
-* BFD_RELOC_16C_IMM16_C: howto manager. (line 2059)
-* BFD_RELOC_16C_IMM20: howto manager. (line 2060)
-* BFD_RELOC_16C_IMM20_C: howto manager. (line 2061)
-* BFD_RELOC_16C_IMM24: howto manager. (line 2062)
-* BFD_RELOC_16C_IMM24_C: howto manager. (line 2063)
-* BFD_RELOC_16C_IMM32: howto manager. (line 2064)
-* BFD_RELOC_16C_IMM32_C: howto manager. (line 2065)
-* BFD_RELOC_16C_NUM08: howto manager. (line 2026)
-* BFD_RELOC_16C_NUM08_C: howto manager. (line 2027)
-* BFD_RELOC_16C_NUM16: howto manager. (line 2028)
-* BFD_RELOC_16C_NUM16_C: howto manager. (line 2029)
-* BFD_RELOC_16C_NUM32: howto manager. (line 2030)
-* BFD_RELOC_16C_NUM32_C: howto manager. (line 2031)
-* BFD_RELOC_16C_REG04: howto manager. (line 2042)
-* BFD_RELOC_16C_REG04_C: howto manager. (line 2043)
-* BFD_RELOC_16C_REG04a: howto manager. (line 2044)
-* BFD_RELOC_16C_REG04a_C: howto manager. (line 2045)
-* BFD_RELOC_16C_REG14: howto manager. (line 2046)
-* BFD_RELOC_16C_REG14_C: howto manager. (line 2047)
-* BFD_RELOC_16C_REG16: howto manager. (line 2048)
-* BFD_RELOC_16C_REG16_C: howto manager. (line 2049)
-* BFD_RELOC_16C_REG20: howto manager. (line 2050)
-* BFD_RELOC_16C_REG20_C: howto manager. (line 2051)
+* BFD_RELOC_16C_ABS20: howto manager. (line 2170)
+* BFD_RELOC_16C_ABS20_C: howto manager. (line 2171)
+* BFD_RELOC_16C_ABS24: howto manager. (line 2172)
+* BFD_RELOC_16C_ABS24_C: howto manager. (line 2173)
+* BFD_RELOC_16C_DISP04: howto manager. (line 2150)
+* BFD_RELOC_16C_DISP04_C: howto manager. (line 2151)
+* BFD_RELOC_16C_DISP08: howto manager. (line 2152)
+* BFD_RELOC_16C_DISP08_C: howto manager. (line 2153)
+* BFD_RELOC_16C_DISP16: howto manager. (line 2154)
+* BFD_RELOC_16C_DISP16_C: howto manager. (line 2155)
+* BFD_RELOC_16C_DISP24: howto manager. (line 2156)
+* BFD_RELOC_16C_DISP24_C: howto manager. (line 2157)
+* BFD_RELOC_16C_DISP24a: howto manager. (line 2158)
+* BFD_RELOC_16C_DISP24a_C: howto manager. (line 2159)
+* BFD_RELOC_16C_IMM04: howto manager. (line 2174)
+* BFD_RELOC_16C_IMM04_C: howto manager. (line 2175)
+* BFD_RELOC_16C_IMM16: howto manager. (line 2176)
+* BFD_RELOC_16C_IMM16_C: howto manager. (line 2177)
+* BFD_RELOC_16C_IMM20: howto manager. (line 2178)
+* BFD_RELOC_16C_IMM20_C: howto manager. (line 2179)
+* BFD_RELOC_16C_IMM24: howto manager. (line 2180)
+* BFD_RELOC_16C_IMM24_C: howto manager. (line 2181)
+* BFD_RELOC_16C_IMM32: howto manager. (line 2182)
+* BFD_RELOC_16C_IMM32_C: howto manager. (line 2183)
+* BFD_RELOC_16C_NUM08: howto manager. (line 2144)
+* BFD_RELOC_16C_NUM08_C: howto manager. (line 2145)
+* BFD_RELOC_16C_NUM16: howto manager. (line 2146)
+* BFD_RELOC_16C_NUM16_C: howto manager. (line 2147)
+* BFD_RELOC_16C_NUM32: howto manager. (line 2148)
+* BFD_RELOC_16C_NUM32_C: howto manager. (line 2149)
+* BFD_RELOC_16C_REG04: howto manager. (line 2160)
+* BFD_RELOC_16C_REG04_C: howto manager. (line 2161)
+* BFD_RELOC_16C_REG04a: howto manager. (line 2162)
+* BFD_RELOC_16C_REG04a_C: howto manager. (line 2163)
+* BFD_RELOC_16C_REG14: howto manager. (line 2164)
+* BFD_RELOC_16C_REG14_C: howto manager. (line 2165)
+* BFD_RELOC_16C_REG16: howto manager. (line 2166)
+* BFD_RELOC_16C_REG16_C: howto manager. (line 2167)
+* BFD_RELOC_16C_REG20: howto manager. (line 2168)
+* BFD_RELOC_16C_REG20_C: howto manager. (line 2169)
* BFD_RELOC_23_PCREL_S2: howto manager. (line 108)
* BFD_RELOC_24: howto manager. (line 29)
* BFD_RELOC_24_PCREL: howto manager. (line 37)
@@ -10579,80 +10780,81 @@ 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 540)
-* BFD_RELOC_386_GLOB_DAT: howto manager. (line 541)
-* BFD_RELOC_386_GOT32: howto manager. (line 538)
-* BFD_RELOC_386_GOTOFF: howto manager. (line 544)
-* BFD_RELOC_386_GOTPC: howto manager. (line 545)
-* BFD_RELOC_386_IRELATIVE: howto manager. (line 561)
-* BFD_RELOC_386_JUMP_SLOT: howto manager. (line 542)
-* BFD_RELOC_386_PLT32: howto manager. (line 539)
-* BFD_RELOC_386_RELATIVE: howto manager. (line 543)
-* BFD_RELOC_386_TLS_DESC: howto manager. (line 560)
-* BFD_RELOC_386_TLS_DESC_CALL: howto manager. (line 559)
-* BFD_RELOC_386_TLS_DTPMOD32: howto manager. (line 555)
-* BFD_RELOC_386_TLS_DTPOFF32: howto manager. (line 556)
-* BFD_RELOC_386_TLS_GD: howto manager. (line 550)
-* BFD_RELOC_386_TLS_GOTDESC: howto manager. (line 558)
-* BFD_RELOC_386_TLS_GOTIE: howto manager. (line 548)
-* BFD_RELOC_386_TLS_IE: howto manager. (line 547)
-* BFD_RELOC_386_TLS_IE_32: howto manager. (line 553)
-* BFD_RELOC_386_TLS_LDM: howto manager. (line 551)
-* BFD_RELOC_386_TLS_LDO_32: howto manager. (line 552)
-* BFD_RELOC_386_TLS_LE: howto manager. (line 549)
-* BFD_RELOC_386_TLS_LE_32: howto manager. (line 554)
-* BFD_RELOC_386_TLS_TPOFF: howto manager. (line 546)
-* BFD_RELOC_386_TLS_TPOFF32: howto manager. (line 557)
-* BFD_RELOC_390_12: howto manager. (line 1712)
-* BFD_RELOC_390_20: howto manager. (line 1812)
-* BFD_RELOC_390_COPY: howto manager. (line 1721)
-* BFD_RELOC_390_GLOB_DAT: howto manager. (line 1724)
-* BFD_RELOC_390_GOT12: howto manager. (line 1715)
-* BFD_RELOC_390_GOT16: howto manager. (line 1736)
-* BFD_RELOC_390_GOT20: howto manager. (line 1813)
-* BFD_RELOC_390_GOT64: howto manager. (line 1754)
-* BFD_RELOC_390_GOTENT: howto manager. (line 1760)
-* BFD_RELOC_390_GOTOFF64: howto manager. (line 1763)
-* BFD_RELOC_390_GOTPC: howto manager. (line 1733)
-* BFD_RELOC_390_GOTPCDBL: howto manager. (line 1751)
-* BFD_RELOC_390_GOTPLT12: howto manager. (line 1766)
-* BFD_RELOC_390_GOTPLT16: howto manager. (line 1769)
-* BFD_RELOC_390_GOTPLT20: howto manager. (line 1814)
-* BFD_RELOC_390_GOTPLT32: howto manager. (line 1772)
-* BFD_RELOC_390_GOTPLT64: howto manager. (line 1775)
-* BFD_RELOC_390_GOTPLTENT: howto manager. (line 1778)
-* BFD_RELOC_390_JMP_SLOT: howto manager. (line 1727)
-* BFD_RELOC_390_PC16DBL: howto manager. (line 1739)
-* BFD_RELOC_390_PC32DBL: howto manager. (line 1745)
-* BFD_RELOC_390_PLT16DBL: howto manager. (line 1742)
-* BFD_RELOC_390_PLT32: howto manager. (line 1718)
-* BFD_RELOC_390_PLT32DBL: howto manager. (line 1748)
-* BFD_RELOC_390_PLT64: howto manager. (line 1757)
-* BFD_RELOC_390_PLTOFF16: howto manager. (line 1781)
-* BFD_RELOC_390_PLTOFF32: howto manager. (line 1784)
-* BFD_RELOC_390_PLTOFF64: howto manager. (line 1787)
-* BFD_RELOC_390_RELATIVE: howto manager. (line 1730)
-* BFD_RELOC_390_TLS_DTPMOD: howto manager. (line 1807)
-* BFD_RELOC_390_TLS_DTPOFF: howto manager. (line 1808)
-* BFD_RELOC_390_TLS_GD32: howto manager. (line 1793)
-* BFD_RELOC_390_TLS_GD64: howto manager. (line 1794)
-* BFD_RELOC_390_TLS_GDCALL: howto manager. (line 1791)
-* BFD_RELOC_390_TLS_GOTIE12: howto manager. (line 1795)
-* BFD_RELOC_390_TLS_GOTIE20: howto manager. (line 1815)
-* BFD_RELOC_390_TLS_GOTIE32: howto manager. (line 1796)
-* BFD_RELOC_390_TLS_GOTIE64: howto manager. (line 1797)
-* BFD_RELOC_390_TLS_IE32: howto manager. (line 1800)
-* BFD_RELOC_390_TLS_IE64: howto manager. (line 1801)
-* BFD_RELOC_390_TLS_IEENT: howto manager. (line 1802)
-* BFD_RELOC_390_TLS_LDCALL: howto manager. (line 1792)
-* BFD_RELOC_390_TLS_LDM32: howto manager. (line 1798)
-* BFD_RELOC_390_TLS_LDM64: howto manager. (line 1799)
-* BFD_RELOC_390_TLS_LDO32: howto manager. (line 1805)
-* BFD_RELOC_390_TLS_LDO64: howto manager. (line 1806)
-* BFD_RELOC_390_TLS_LE32: howto manager. (line 1803)
-* BFD_RELOC_390_TLS_LE64: howto manager. (line 1804)
-* BFD_RELOC_390_TLS_LOAD: howto manager. (line 1790)
-* BFD_RELOC_390_TLS_TPOFF: howto manager. (line 1809)
+* BFD_RELOC_386_COPY: howto manager. (line 572)
+* BFD_RELOC_386_GLOB_DAT: howto manager. (line 573)
+* BFD_RELOC_386_GOT32: howto manager. (line 570)
+* BFD_RELOC_386_GOTOFF: howto manager. (line 576)
+* BFD_RELOC_386_GOTPC: howto manager. (line 577)
+* BFD_RELOC_386_IRELATIVE: howto manager. (line 593)
+* BFD_RELOC_386_JUMP_SLOT: howto manager. (line 574)
+* BFD_RELOC_386_PLT32: howto manager. (line 571)
+* BFD_RELOC_386_RELATIVE: howto manager. (line 575)
+* BFD_RELOC_386_TLS_DESC: howto manager. (line 592)
+* BFD_RELOC_386_TLS_DESC_CALL: howto manager. (line 591)
+* BFD_RELOC_386_TLS_DTPMOD32: howto manager. (line 587)
+* BFD_RELOC_386_TLS_DTPOFF32: howto manager. (line 588)
+* BFD_RELOC_386_TLS_GD: howto manager. (line 582)
+* BFD_RELOC_386_TLS_GOTDESC: howto manager. (line 590)
+* BFD_RELOC_386_TLS_GOTIE: howto manager. (line 580)
+* BFD_RELOC_386_TLS_IE: howto manager. (line 579)
+* BFD_RELOC_386_TLS_IE_32: howto manager. (line 585)
+* BFD_RELOC_386_TLS_LDM: howto manager. (line 583)
+* BFD_RELOC_386_TLS_LDO_32: howto manager. (line 584)
+* BFD_RELOC_386_TLS_LE: howto manager. (line 581)
+* BFD_RELOC_386_TLS_LE_32: howto manager. (line 586)
+* BFD_RELOC_386_TLS_TPOFF: howto manager. (line 578)
+* BFD_RELOC_386_TLS_TPOFF32: howto manager. (line 589)
+* BFD_RELOC_390_12: howto manager. (line 1765)
+* BFD_RELOC_390_20: howto manager. (line 1865)
+* BFD_RELOC_390_COPY: howto manager. (line 1774)
+* BFD_RELOC_390_GLOB_DAT: howto manager. (line 1777)
+* BFD_RELOC_390_GOT12: howto manager. (line 1768)
+* BFD_RELOC_390_GOT16: howto manager. (line 1789)
+* BFD_RELOC_390_GOT20: howto manager. (line 1866)
+* BFD_RELOC_390_GOT64: howto manager. (line 1807)
+* BFD_RELOC_390_GOTENT: howto manager. (line 1813)
+* BFD_RELOC_390_GOTOFF64: howto manager. (line 1816)
+* BFD_RELOC_390_GOTPC: howto manager. (line 1786)
+* BFD_RELOC_390_GOTPCDBL: howto manager. (line 1804)
+* BFD_RELOC_390_GOTPLT12: howto manager. (line 1819)
+* BFD_RELOC_390_GOTPLT16: howto manager. (line 1822)
+* BFD_RELOC_390_GOTPLT20: howto manager. (line 1867)
+* BFD_RELOC_390_GOTPLT32: howto manager. (line 1825)
+* BFD_RELOC_390_GOTPLT64: howto manager. (line 1828)
+* BFD_RELOC_390_GOTPLTENT: howto manager. (line 1831)
+* BFD_RELOC_390_IRELATIVE: howto manager. (line 1871)
+* BFD_RELOC_390_JMP_SLOT: howto manager. (line 1780)
+* BFD_RELOC_390_PC16DBL: howto manager. (line 1792)
+* BFD_RELOC_390_PC32DBL: howto manager. (line 1798)
+* BFD_RELOC_390_PLT16DBL: howto manager. (line 1795)
+* BFD_RELOC_390_PLT32: howto manager. (line 1771)
+* BFD_RELOC_390_PLT32DBL: howto manager. (line 1801)
+* BFD_RELOC_390_PLT64: howto manager. (line 1810)
+* BFD_RELOC_390_PLTOFF16: howto manager. (line 1834)
+* BFD_RELOC_390_PLTOFF32: howto manager. (line 1837)
+* BFD_RELOC_390_PLTOFF64: howto manager. (line 1840)
+* BFD_RELOC_390_RELATIVE: howto manager. (line 1783)
+* BFD_RELOC_390_TLS_DTPMOD: howto manager. (line 1860)
+* BFD_RELOC_390_TLS_DTPOFF: howto manager. (line 1861)
+* BFD_RELOC_390_TLS_GD32: howto manager. (line 1846)
+* BFD_RELOC_390_TLS_GD64: howto manager. (line 1847)
+* BFD_RELOC_390_TLS_GDCALL: howto manager. (line 1844)
+* BFD_RELOC_390_TLS_GOTIE12: howto manager. (line 1848)
+* BFD_RELOC_390_TLS_GOTIE20: howto manager. (line 1868)
+* BFD_RELOC_390_TLS_GOTIE32: howto manager. (line 1849)
+* BFD_RELOC_390_TLS_GOTIE64: howto manager. (line 1850)
+* BFD_RELOC_390_TLS_IE32: howto manager. (line 1853)
+* BFD_RELOC_390_TLS_IE64: howto manager. (line 1854)
+* BFD_RELOC_390_TLS_IEENT: howto manager. (line 1855)
+* BFD_RELOC_390_TLS_LDCALL: howto manager. (line 1845)
+* BFD_RELOC_390_TLS_LDM32: howto manager. (line 1851)
+* BFD_RELOC_390_TLS_LDM64: howto manager. (line 1852)
+* BFD_RELOC_390_TLS_LDO32: howto manager. (line 1858)
+* BFD_RELOC_390_TLS_LDO64: howto manager. (line 1859)
+* BFD_RELOC_390_TLS_LE32: howto manager. (line 1856)
+* BFD_RELOC_390_TLS_LE64: howto manager. (line 1857)
+* BFD_RELOC_390_TLS_LOAD: howto manager. (line 1843)
+* BFD_RELOC_390_TLS_TPOFF: howto manager. (line 1862)
* BFD_RELOC_64: howto manager. (line 26)
* BFD_RELOC_64_PCREL: howto manager. (line 35)
* BFD_RELOC_64_PLT_PCREL: howto manager. (line 60)
@@ -10676,38 +10878,38 @@ BFD Index
* BFD_RELOC_68K_TLS_LE32: howto manager. (line 89)
* BFD_RELOC_68K_TLS_LE8: howto manager. (line 91)
* BFD_RELOC_8: howto manager. (line 32)
-* BFD_RELOC_860_COPY: howto manager. (line 2180)
-* BFD_RELOC_860_GLOB_DAT: howto manager. (line 2181)
-* BFD_RELOC_860_HAGOT: howto manager. (line 2206)
-* BFD_RELOC_860_HAGOTOFF: howto manager. (line 2207)
-* BFD_RELOC_860_HAPC: howto manager. (line 2208)
-* BFD_RELOC_860_HIGH: howto manager. (line 2209)
-* BFD_RELOC_860_HIGHADJ: howto manager. (line 2205)
-* BFD_RELOC_860_HIGOT: howto manager. (line 2210)
-* BFD_RELOC_860_HIGOTOFF: howto manager. (line 2211)
-* BFD_RELOC_860_JUMP_SLOT: howto manager. (line 2182)
-* BFD_RELOC_860_LOGOT0: howto manager. (line 2194)
-* BFD_RELOC_860_LOGOT1: howto manager. (line 2196)
-* BFD_RELOC_860_LOGOTOFF0: howto manager. (line 2198)
-* BFD_RELOC_860_LOGOTOFF1: howto manager. (line 2200)
-* BFD_RELOC_860_LOGOTOFF2: howto manager. (line 2202)
-* BFD_RELOC_860_LOGOTOFF3: howto manager. (line 2203)
-* BFD_RELOC_860_LOPC: howto manager. (line 2204)
-* BFD_RELOC_860_LOW0: howto manager. (line 2187)
-* BFD_RELOC_860_LOW1: howto manager. (line 2189)
-* BFD_RELOC_860_LOW2: howto manager. (line 2191)
-* BFD_RELOC_860_LOW3: howto manager. (line 2193)
-* BFD_RELOC_860_PC16: howto manager. (line 2186)
-* BFD_RELOC_860_PC26: howto manager. (line 2184)
-* BFD_RELOC_860_PLT26: howto manager. (line 2185)
-* BFD_RELOC_860_RELATIVE: howto manager. (line 2183)
-* BFD_RELOC_860_SPGOT0: howto manager. (line 2195)
-* BFD_RELOC_860_SPGOT1: howto manager. (line 2197)
-* BFD_RELOC_860_SPGOTOFF0: howto manager. (line 2199)
-* BFD_RELOC_860_SPGOTOFF1: howto manager. (line 2201)
-* BFD_RELOC_860_SPLIT0: howto manager. (line 2188)
-* BFD_RELOC_860_SPLIT1: howto manager. (line 2190)
-* BFD_RELOC_860_SPLIT2: howto manager. (line 2192)
+* BFD_RELOC_860_COPY: howto manager. (line 2298)
+* BFD_RELOC_860_GLOB_DAT: howto manager. (line 2299)
+* BFD_RELOC_860_HAGOT: howto manager. (line 2324)
+* BFD_RELOC_860_HAGOTOFF: howto manager. (line 2325)
+* BFD_RELOC_860_HAPC: howto manager. (line 2326)
+* BFD_RELOC_860_HIGH: howto manager. (line 2327)
+* BFD_RELOC_860_HIGHADJ: howto manager. (line 2323)
+* BFD_RELOC_860_HIGOT: howto manager. (line 2328)
+* BFD_RELOC_860_HIGOTOFF: howto manager. (line 2329)
+* BFD_RELOC_860_JUMP_SLOT: howto manager. (line 2300)
+* BFD_RELOC_860_LOGOT0: howto manager. (line 2312)
+* BFD_RELOC_860_LOGOT1: howto manager. (line 2314)
+* BFD_RELOC_860_LOGOTOFF0: howto manager. (line 2316)
+* BFD_RELOC_860_LOGOTOFF1: howto manager. (line 2318)
+* BFD_RELOC_860_LOGOTOFF2: howto manager. (line 2320)
+* BFD_RELOC_860_LOGOTOFF3: howto manager. (line 2321)
+* BFD_RELOC_860_LOPC: howto manager. (line 2322)
+* BFD_RELOC_860_LOW0: howto manager. (line 2305)
+* BFD_RELOC_860_LOW1: howto manager. (line 2307)
+* BFD_RELOC_860_LOW2: howto manager. (line 2309)
+* BFD_RELOC_860_LOW3: howto manager. (line 2311)
+* BFD_RELOC_860_PC16: howto manager. (line 2304)
+* BFD_RELOC_860_PC26: howto manager. (line 2302)
+* BFD_RELOC_860_PLT26: howto manager. (line 2303)
+* BFD_RELOC_860_RELATIVE: howto manager. (line 2301)
+* BFD_RELOC_860_SPGOT0: howto manager. (line 2313)
+* BFD_RELOC_860_SPGOT1: howto manager. (line 2315)
+* BFD_RELOC_860_SPGOTOFF0: howto manager. (line 2317)
+* BFD_RELOC_860_SPGOTOFF1: howto manager. (line 2319)
+* BFD_RELOC_860_SPLIT0: howto manager. (line 2306)
+* BFD_RELOC_860_SPLIT1: howto manager. (line 2308)
+* BFD_RELOC_860_SPLIT2: howto manager. (line 2310)
* BFD_RELOC_8_BASEREL: howto manager. (line 99)
* BFD_RELOC_8_FFnn: howto manager. (line 103)
* BFD_RELOC_8_GOT_PCREL: howto manager. (line 53)
@@ -10715,1004 +10917,1047 @@ 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_BOH: howto manager. (line 315)
-* BFD_RELOC_ALPHA_BRSGP: howto manager. (line 298)
-* BFD_RELOC_ALPHA_BSR: howto manager. (line 307)
-* BFD_RELOC_ALPHA_CODEADDR: howto manager. (line 289)
-* BFD_RELOC_ALPHA_DTPMOD64: howto manager. (line 321)
-* BFD_RELOC_ALPHA_DTPREL16: howto manager. (line 326)
-* BFD_RELOC_ALPHA_DTPREL64: howto manager. (line 323)
-* BFD_RELOC_ALPHA_DTPREL_HI16: howto manager. (line 324)
-* BFD_RELOC_ALPHA_DTPREL_LO16: howto manager. (line 325)
-* BFD_RELOC_ALPHA_ELF_LITERAL: howto manager. (line 254)
-* BFD_RELOC_ALPHA_GOTDTPREL16: howto manager. (line 322)
-* BFD_RELOC_ALPHA_GOTTPREL16: howto manager. (line 327)
-* BFD_RELOC_ALPHA_GPDISP: howto manager. (line 248)
-* BFD_RELOC_ALPHA_GPDISP_HI16: howto manager. (line 234)
-* BFD_RELOC_ALPHA_GPDISP_LO16: howto manager. (line 242)
-* BFD_RELOC_ALPHA_GPREL_HI16: howto manager. (line 293)
-* BFD_RELOC_ALPHA_GPREL_LO16: howto manager. (line 294)
-* BFD_RELOC_ALPHA_HINT: howto manager. (line 280)
-* BFD_RELOC_ALPHA_LDA: howto manager. (line 311)
-* BFD_RELOC_ALPHA_LINKAGE: howto manager. (line 285)
-* BFD_RELOC_ALPHA_LITERAL: howto manager. (line 253)
-* BFD_RELOC_ALPHA_LITUSE: howto manager. (line 255)
-* BFD_RELOC_ALPHA_NOP: howto manager. (line 303)
-* BFD_RELOC_ALPHA_TLSGD: howto manager. (line 319)
-* BFD_RELOC_ALPHA_TLSLDM: howto manager. (line 320)
-* BFD_RELOC_ALPHA_TPREL16: howto manager. (line 331)
-* BFD_RELOC_ALPHA_TPREL64: howto manager. (line 328)
-* BFD_RELOC_ALPHA_TPREL_HI16: howto manager. (line 329)
-* BFD_RELOC_ALPHA_TPREL_LO16: howto manager. (line 330)
-* BFD_RELOC_ARC_B22_PCREL: howto manager. (line 987)
-* BFD_RELOC_ARC_B26: howto manager. (line 992)
-* BFD_RELOC_ARM_ADR_IMM: howto manager. (line 873)
-* BFD_RELOC_ARM_ADRL_IMMEDIATE: howto manager. (line 859)
-* BFD_RELOC_ARM_ALU_PC_G0: howto manager. (line 823)
-* BFD_RELOC_ARM_ALU_PC_G0_NC: howto manager. (line 822)
-* BFD_RELOC_ARM_ALU_PC_G1: howto manager. (line 825)
-* BFD_RELOC_ARM_ALU_PC_G1_NC: howto manager. (line 824)
-* BFD_RELOC_ARM_ALU_PC_G2: howto manager. (line 826)
-* BFD_RELOC_ARM_ALU_SB_G0: howto manager. (line 837)
-* BFD_RELOC_ARM_ALU_SB_G0_NC: howto manager. (line 836)
-* BFD_RELOC_ARM_ALU_SB_G1: howto manager. (line 839)
-* BFD_RELOC_ARM_ALU_SB_G1_NC: howto manager. (line 838)
-* BFD_RELOC_ARM_ALU_SB_G2: howto manager. (line 840)
-* BFD_RELOC_ARM_CP_OFF_IMM: howto manager. (line 869)
-* BFD_RELOC_ARM_CP_OFF_IMM_S2: howto manager. (line 870)
-* BFD_RELOC_ARM_GLOB_DAT: howto manager. (line 797)
-* BFD_RELOC_ARM_GOT32: howto manager. (line 798)
-* BFD_RELOC_ARM_GOT_PREL: howto manager. (line 803)
-* BFD_RELOC_ARM_GOTOFF: howto manager. (line 801)
-* BFD_RELOC_ARM_GOTPC: howto manager. (line 802)
-* BFD_RELOC_ARM_HVC: howto manager. (line 866)
-* BFD_RELOC_ARM_HWLITERAL: howto manager. (line 880)
-* BFD_RELOC_ARM_IMMEDIATE: howto manager. (line 858)
-* BFD_RELOC_ARM_IN_POOL: howto manager. (line 876)
-* BFD_RELOC_ARM_IRELATIVE: howto manager. (line 855)
-* BFD_RELOC_ARM_JUMP_SLOT: howto manager. (line 796)
-* BFD_RELOC_ARM_LDC_PC_G0: howto manager. (line 833)
-* BFD_RELOC_ARM_LDC_PC_G1: howto manager. (line 834)
-* BFD_RELOC_ARM_LDC_PC_G2: howto manager. (line 835)
-* BFD_RELOC_ARM_LDC_SB_G0: howto manager. (line 847)
-* BFD_RELOC_ARM_LDC_SB_G1: howto manager. (line 848)
-* BFD_RELOC_ARM_LDC_SB_G2: howto manager. (line 849)
-* BFD_RELOC_ARM_LDR_IMM: howto manager. (line 874)
-* BFD_RELOC_ARM_LDR_PC_G0: howto manager. (line 827)
-* BFD_RELOC_ARM_LDR_PC_G1: howto manager. (line 828)
-* BFD_RELOC_ARM_LDR_PC_G2: howto manager. (line 829)
-* BFD_RELOC_ARM_LDR_SB_G0: howto manager. (line 841)
-* BFD_RELOC_ARM_LDR_SB_G1: howto manager. (line 842)
-* BFD_RELOC_ARM_LDR_SB_G2: howto manager. (line 843)
-* BFD_RELOC_ARM_LDRS_PC_G0: howto manager. (line 830)
-* BFD_RELOC_ARM_LDRS_PC_G1: howto manager. (line 831)
-* BFD_RELOC_ARM_LDRS_PC_G2: howto manager. (line 832)
-* BFD_RELOC_ARM_LDRS_SB_G0: howto manager. (line 844)
-* BFD_RELOC_ARM_LDRS_SB_G1: howto manager. (line 845)
-* BFD_RELOC_ARM_LDRS_SB_G2: howto manager. (line 846)
-* BFD_RELOC_ARM_LITERAL: howto manager. (line 875)
-* BFD_RELOC_ARM_MOVT: howto manager. (line 787)
-* BFD_RELOC_ARM_MOVT_PCREL: howto manager. (line 789)
-* BFD_RELOC_ARM_MOVW: howto manager. (line 786)
-* BFD_RELOC_ARM_MOVW_PCREL: howto manager. (line 788)
-* BFD_RELOC_ARM_MULTI: howto manager. (line 868)
-* BFD_RELOC_ARM_OFFSET_IMM: howto manager. (line 760)
-* BFD_RELOC_ARM_OFFSET_IMM8: howto manager. (line 877)
-* BFD_RELOC_ARM_PCREL_BLX: howto manager. (line 731)
-* BFD_RELOC_ARM_PCREL_BRANCH: howto manager. (line 727)
-* BFD_RELOC_ARM_PCREL_CALL: howto manager. (line 741)
-* BFD_RELOC_ARM_PCREL_JUMP: howto manager. (line 745)
-* BFD_RELOC_ARM_PLT32: howto manager. (line 799)
-* BFD_RELOC_ARM_PREL31: howto manager. (line 783)
-* BFD_RELOC_ARM_RELATIVE: howto manager. (line 800)
-* BFD_RELOC_ARM_ROSEGREL32: howto manager. (line 772)
-* BFD_RELOC_ARM_SBREL32: howto manager. (line 775)
-* BFD_RELOC_ARM_SHIFT_IMM: howto manager. (line 864)
-* BFD_RELOC_ARM_SMC: howto manager. (line 865)
-* BFD_RELOC_ARM_SWI: howto manager. (line 867)
-* BFD_RELOC_ARM_T32_ADD_IMM: howto manager. (line 861)
-* BFD_RELOC_ARM_T32_ADD_PC12: howto manager. (line 863)
-* BFD_RELOC_ARM_T32_CP_OFF_IMM: howto manager. (line 871)
-* BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: howto manager. (line 872)
-* BFD_RELOC_ARM_T32_IMM12: howto manager. (line 862)
-* BFD_RELOC_ARM_T32_IMMEDIATE: howto manager. (line 860)
-* BFD_RELOC_ARM_T32_OFFSET_IMM: howto manager. (line 879)
-* BFD_RELOC_ARM_T32_OFFSET_U8: howto manager. (line 878)
-* BFD_RELOC_ARM_TARGET1: howto manager. (line 768)
-* BFD_RELOC_ARM_TARGET2: howto manager. (line 778)
-* BFD_RELOC_ARM_THM_TLS_CALL: howto manager. (line 816)
-* BFD_RELOC_ARM_THM_TLS_DESCSEQ: howto manager. (line 818)
-* BFD_RELOC_ARM_THUMB_ADD: howto manager. (line 881)
-* BFD_RELOC_ARM_THUMB_IMM: howto manager. (line 882)
-* BFD_RELOC_ARM_THUMB_MOVT: howto manager. (line 791)
-* BFD_RELOC_ARM_THUMB_MOVT_PCREL: howto manager. (line 793)
-* BFD_RELOC_ARM_THUMB_MOVW: howto manager. (line 790)
-* BFD_RELOC_ARM_THUMB_MOVW_PCREL: howto manager. (line 792)
-* BFD_RELOC_ARM_THUMB_OFFSET: howto manager. (line 764)
-* BFD_RELOC_ARM_THUMB_SHIFT: howto manager. (line 883)
-* BFD_RELOC_ARM_TLS_CALL: howto manager. (line 815)
-* BFD_RELOC_ARM_TLS_DESC: howto manager. (line 819)
-* BFD_RELOC_ARM_TLS_DESCSEQ: howto manager. (line 817)
-* BFD_RELOC_ARM_TLS_DTPMOD32: howto manager. (line 810)
-* BFD_RELOC_ARM_TLS_DTPOFF32: howto manager. (line 809)
-* BFD_RELOC_ARM_TLS_GD32: howto manager. (line 806)
-* BFD_RELOC_ARM_TLS_GOTDESC: howto manager. (line 814)
-* BFD_RELOC_ARM_TLS_IE32: howto manager. (line 812)
-* BFD_RELOC_ARM_TLS_LDM32: howto manager. (line 808)
-* BFD_RELOC_ARM_TLS_LDO32: howto manager. (line 807)
-* BFD_RELOC_ARM_TLS_LE32: howto manager. (line 813)
-* BFD_RELOC_ARM_TLS_TPOFF32: howto manager. (line 811)
-* BFD_RELOC_ARM_V4BX: howto manager. (line 852)
-* BFD_RELOC_AVR_13_PCREL: howto manager. (line 1550)
-* BFD_RELOC_AVR_16_PM: howto manager. (line 1554)
-* BFD_RELOC_AVR_6: howto manager. (line 1641)
-* BFD_RELOC_AVR_6_ADIW: howto manager. (line 1645)
-* BFD_RELOC_AVR_7_PCREL: howto manager. (line 1546)
-* BFD_RELOC_AVR_CALL: howto manager. (line 1633)
-* BFD_RELOC_AVR_HH8_LDI: howto manager. (line 1566)
-* BFD_RELOC_AVR_HH8_LDI_NEG: howto manager. (line 1585)
-* BFD_RELOC_AVR_HH8_LDI_PM: howto manager. (line 1614)
-* BFD_RELOC_AVR_HH8_LDI_PM_NEG: howto manager. (line 1628)
-* BFD_RELOC_AVR_HI8_LDI: howto manager. (line 1562)
-* BFD_RELOC_AVR_HI8_LDI_GS: howto manager. (line 1608)
-* BFD_RELOC_AVR_HI8_LDI_NEG: howto manager. (line 1580)
-* BFD_RELOC_AVR_HI8_LDI_PM: howto manager. (line 1604)
-* BFD_RELOC_AVR_HI8_LDI_PM_NEG: howto manager. (line 1623)
-* BFD_RELOC_AVR_LDI: howto manager. (line 1637)
-* BFD_RELOC_AVR_LO8_LDI: howto manager. (line 1558)
-* BFD_RELOC_AVR_LO8_LDI_GS: howto manager. (line 1598)
-* BFD_RELOC_AVR_LO8_LDI_NEG: howto manager. (line 1575)
-* BFD_RELOC_AVR_LO8_LDI_PM: howto manager. (line 1594)
-* BFD_RELOC_AVR_LO8_LDI_PM_NEG: howto manager. (line 1619)
-* BFD_RELOC_AVR_MS8_LDI: howto manager. (line 1571)
-* BFD_RELOC_AVR_MS8_LDI_NEG: howto manager. (line 1590)
-* BFD_RELOC_BFIN_10_PCREL: howto manager. (line 1012)
-* BFD_RELOC_BFIN_11_PCREL: howto manager. (line 1015)
-* BFD_RELOC_BFIN_12_PCREL_JUMP: howto manager. (line 1018)
-* BFD_RELOC_BFIN_12_PCREL_JUMP_S: howto manager. (line 1021)
-* BFD_RELOC_BFIN_16_HIGH: howto manager. (line 1000)
-* BFD_RELOC_BFIN_16_IMM: howto manager. (line 997)
-* BFD_RELOC_BFIN_16_LOW: howto manager. (line 1009)
-* BFD_RELOC_BFIN_24_PCREL_CALL_X: howto manager. (line 1024)
-* BFD_RELOC_BFIN_24_PCREL_JUMP_L: howto manager. (line 1027)
-* BFD_RELOC_BFIN_4_PCREL: howto manager. (line 1003)
-* BFD_RELOC_BFIN_5_PCREL: howto manager. (line 1006)
-* BFD_RELOC_BFIN_FUNCDESC: howto manager. (line 1033)
-* BFD_RELOC_BFIN_FUNCDESC_GOT17M4: howto manager. (line 1034)
-* BFD_RELOC_BFIN_FUNCDESC_GOTHI: howto manager. (line 1035)
-* BFD_RELOC_BFIN_FUNCDESC_GOTLO: howto manager. (line 1036)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: howto manager. (line 1038)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: howto manager. (line 1039)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: howto manager. (line 1040)
-* BFD_RELOC_BFIN_FUNCDESC_VALUE: howto manager. (line 1037)
-* BFD_RELOC_BFIN_GOT: howto manager. (line 1046)
-* BFD_RELOC_BFIN_GOT17M4: howto manager. (line 1030)
-* BFD_RELOC_BFIN_GOTHI: howto manager. (line 1031)
-* BFD_RELOC_BFIN_GOTLO: howto manager. (line 1032)
-* BFD_RELOC_BFIN_GOTOFF17M4: howto manager. (line 1041)
-* BFD_RELOC_BFIN_GOTOFFHI: howto manager. (line 1042)
-* BFD_RELOC_BFIN_GOTOFFLO: howto manager. (line 1043)
-* BFD_RELOC_BFIN_PLTPC: howto manager. (line 1049)
-* BFD_RELOC_C6000_ABS_H16: howto manager. (line 1409)
-* BFD_RELOC_C6000_ABS_L16: howto manager. (line 1408)
-* BFD_RELOC_C6000_ABS_S16: howto manager. (line 1407)
-* BFD_RELOC_C6000_ALIGN: howto manager. (line 1430)
-* BFD_RELOC_C6000_COPY: howto manager. (line 1425)
-* BFD_RELOC_C6000_DSBT_INDEX: howto manager. (line 1423)
-* BFD_RELOC_C6000_EHTYPE: howto manager. (line 1427)
-* BFD_RELOC_C6000_FPHEAD: howto manager. (line 1431)
-* BFD_RELOC_C6000_JUMP_SLOT: howto manager. (line 1426)
-* BFD_RELOC_C6000_NOCMP: howto manager. (line 1432)
-* BFD_RELOC_C6000_PCR_H16: howto manager. (line 1428)
-* BFD_RELOC_C6000_PCR_L16: howto manager. (line 1429)
-* BFD_RELOC_C6000_PCR_S10: howto manager. (line 1405)
-* BFD_RELOC_C6000_PCR_S12: howto manager. (line 1404)
-* BFD_RELOC_C6000_PCR_S21: howto manager. (line 1403)
-* BFD_RELOC_C6000_PCR_S7: howto manager. (line 1406)
-* BFD_RELOC_C6000_PREL31: howto manager. (line 1424)
-* BFD_RELOC_C6000_SBR_GOT_H16_W: howto manager. (line 1422)
-* BFD_RELOC_C6000_SBR_GOT_L16_W: howto manager. (line 1421)
-* BFD_RELOC_C6000_SBR_GOT_U15_W: howto manager. (line 1420)
-* BFD_RELOC_C6000_SBR_H16_B: howto manager. (line 1417)
-* BFD_RELOC_C6000_SBR_H16_H: howto manager. (line 1418)
-* BFD_RELOC_C6000_SBR_H16_W: howto manager. (line 1419)
-* BFD_RELOC_C6000_SBR_L16_B: howto manager. (line 1414)
-* BFD_RELOC_C6000_SBR_L16_H: howto manager. (line 1415)
-* BFD_RELOC_C6000_SBR_L16_W: howto manager. (line 1416)
-* BFD_RELOC_C6000_SBR_S16: howto manager. (line 1413)
-* BFD_RELOC_C6000_SBR_U15_B: howto manager. (line 1410)
-* BFD_RELOC_C6000_SBR_U15_H: howto manager. (line 1411)
-* BFD_RELOC_C6000_SBR_U15_W: howto manager. (line 1412)
+* BFD_RELOC_ALPHA_BOH: howto manager. (line 319)
+* BFD_RELOC_ALPHA_BRSGP: howto manager. (line 302)
+* BFD_RELOC_ALPHA_BSR: howto manager. (line 311)
+* BFD_RELOC_ALPHA_CODEADDR: howto manager. (line 293)
+* BFD_RELOC_ALPHA_DTPMOD64: howto manager. (line 325)
+* BFD_RELOC_ALPHA_DTPREL16: howto manager. (line 330)
+* BFD_RELOC_ALPHA_DTPREL64: howto manager. (line 327)
+* BFD_RELOC_ALPHA_DTPREL_HI16: howto manager. (line 328)
+* BFD_RELOC_ALPHA_DTPREL_LO16: howto manager. (line 329)
+* BFD_RELOC_ALPHA_ELF_LITERAL: howto manager. (line 258)
+* BFD_RELOC_ALPHA_GOTDTPREL16: howto manager. (line 326)
+* BFD_RELOC_ALPHA_GOTTPREL16: howto manager. (line 331)
+* BFD_RELOC_ALPHA_GPDISP: howto manager. (line 252)
+* BFD_RELOC_ALPHA_GPDISP_HI16: howto manager. (line 238)
+* BFD_RELOC_ALPHA_GPDISP_LO16: howto manager. (line 246)
+* BFD_RELOC_ALPHA_GPREL_HI16: howto manager. (line 297)
+* BFD_RELOC_ALPHA_GPREL_LO16: howto manager. (line 298)
+* BFD_RELOC_ALPHA_HINT: howto manager. (line 284)
+* BFD_RELOC_ALPHA_LDA: howto manager. (line 315)
+* BFD_RELOC_ALPHA_LINKAGE: howto manager. (line 289)
+* BFD_RELOC_ALPHA_LITERAL: howto manager. (line 257)
+* BFD_RELOC_ALPHA_LITUSE: howto manager. (line 259)
+* BFD_RELOC_ALPHA_NOP: howto manager. (line 307)
+* BFD_RELOC_ALPHA_TLSGD: howto manager. (line 323)
+* BFD_RELOC_ALPHA_TLSLDM: howto manager. (line 324)
+* BFD_RELOC_ALPHA_TPREL16: howto manager. (line 335)
+* BFD_RELOC_ALPHA_TPREL64: howto manager. (line 332)
+* BFD_RELOC_ALPHA_TPREL_HI16: howto manager. (line 333)
+* BFD_RELOC_ALPHA_TPREL_LO16: howto manager. (line 334)
+* BFD_RELOC_ARC_B22_PCREL: howto manager. (line 1036)
+* BFD_RELOC_ARC_B26: howto manager. (line 1041)
+* BFD_RELOC_ARM_ADR_IMM: howto manager. (line 922)
+* BFD_RELOC_ARM_ADRL_IMMEDIATE: howto manager. (line 908)
+* BFD_RELOC_ARM_ALU_PC_G0: howto manager. (line 872)
+* BFD_RELOC_ARM_ALU_PC_G0_NC: howto manager. (line 871)
+* BFD_RELOC_ARM_ALU_PC_G1: howto manager. (line 874)
+* BFD_RELOC_ARM_ALU_PC_G1_NC: howto manager. (line 873)
+* BFD_RELOC_ARM_ALU_PC_G2: howto manager. (line 875)
+* BFD_RELOC_ARM_ALU_SB_G0: howto manager. (line 886)
+* BFD_RELOC_ARM_ALU_SB_G0_NC: howto manager. (line 885)
+* BFD_RELOC_ARM_ALU_SB_G1: howto manager. (line 888)
+* BFD_RELOC_ARM_ALU_SB_G1_NC: howto manager. (line 887)
+* BFD_RELOC_ARM_ALU_SB_G2: howto manager. (line 889)
+* BFD_RELOC_ARM_CP_OFF_IMM: howto manager. (line 918)
+* BFD_RELOC_ARM_CP_OFF_IMM_S2: howto manager. (line 919)
+* BFD_RELOC_ARM_GLOB_DAT: howto manager. (line 846)
+* BFD_RELOC_ARM_GOT32: howto manager. (line 847)
+* BFD_RELOC_ARM_GOT_PREL: howto manager. (line 852)
+* BFD_RELOC_ARM_GOTOFF: howto manager. (line 850)
+* BFD_RELOC_ARM_GOTPC: howto manager. (line 851)
+* BFD_RELOC_ARM_HVC: howto manager. (line 915)
+* BFD_RELOC_ARM_HWLITERAL: howto manager. (line 929)
+* BFD_RELOC_ARM_IMMEDIATE: howto manager. (line 907)
+* BFD_RELOC_ARM_IN_POOL: howto manager. (line 925)
+* BFD_RELOC_ARM_IRELATIVE: howto manager. (line 904)
+* BFD_RELOC_ARM_JUMP_SLOT: howto manager. (line 845)
+* BFD_RELOC_ARM_LDC_PC_G0: howto manager. (line 882)
+* BFD_RELOC_ARM_LDC_PC_G1: howto manager. (line 883)
+* BFD_RELOC_ARM_LDC_PC_G2: howto manager. (line 884)
+* BFD_RELOC_ARM_LDC_SB_G0: howto manager. (line 896)
+* BFD_RELOC_ARM_LDC_SB_G1: howto manager. (line 897)
+* BFD_RELOC_ARM_LDC_SB_G2: howto manager. (line 898)
+* BFD_RELOC_ARM_LDR_IMM: howto manager. (line 923)
+* BFD_RELOC_ARM_LDR_PC_G0: howto manager. (line 876)
+* BFD_RELOC_ARM_LDR_PC_G1: howto manager. (line 877)
+* BFD_RELOC_ARM_LDR_PC_G2: howto manager. (line 878)
+* BFD_RELOC_ARM_LDR_SB_G0: howto manager. (line 890)
+* BFD_RELOC_ARM_LDR_SB_G1: howto manager. (line 891)
+* BFD_RELOC_ARM_LDR_SB_G2: howto manager. (line 892)
+* BFD_RELOC_ARM_LDRS_PC_G0: howto manager. (line 879)
+* BFD_RELOC_ARM_LDRS_PC_G1: howto manager. (line 880)
+* BFD_RELOC_ARM_LDRS_PC_G2: howto manager. (line 881)
+* BFD_RELOC_ARM_LDRS_SB_G0: howto manager. (line 893)
+* BFD_RELOC_ARM_LDRS_SB_G1: howto manager. (line 894)
+* BFD_RELOC_ARM_LDRS_SB_G2: howto manager. (line 895)
+* BFD_RELOC_ARM_LITERAL: howto manager. (line 924)
+* BFD_RELOC_ARM_MOVT: howto manager. (line 836)
+* BFD_RELOC_ARM_MOVT_PCREL: howto manager. (line 838)
+* BFD_RELOC_ARM_MOVW: howto manager. (line 835)
+* BFD_RELOC_ARM_MOVW_PCREL: howto manager. (line 837)
+* BFD_RELOC_ARM_MULTI: howto manager. (line 917)
+* BFD_RELOC_ARM_OFFSET_IMM: howto manager. (line 809)
+* BFD_RELOC_ARM_OFFSET_IMM8: howto manager. (line 926)
+* BFD_RELOC_ARM_PCREL_BLX: howto manager. (line 780)
+* BFD_RELOC_ARM_PCREL_BRANCH: howto manager. (line 776)
+* BFD_RELOC_ARM_PCREL_CALL: howto manager. (line 790)
+* BFD_RELOC_ARM_PCREL_JUMP: howto manager. (line 794)
+* BFD_RELOC_ARM_PLT32: howto manager. (line 848)
+* BFD_RELOC_ARM_PREL31: howto manager. (line 832)
+* BFD_RELOC_ARM_RELATIVE: howto manager. (line 849)
+* BFD_RELOC_ARM_ROSEGREL32: howto manager. (line 821)
+* BFD_RELOC_ARM_SBREL32: howto manager. (line 824)
+* BFD_RELOC_ARM_SHIFT_IMM: howto manager. (line 913)
+* BFD_RELOC_ARM_SMC: howto manager. (line 914)
+* BFD_RELOC_ARM_SWI: howto manager. (line 916)
+* BFD_RELOC_ARM_T32_ADD_IMM: howto manager. (line 910)
+* BFD_RELOC_ARM_T32_ADD_PC12: howto manager. (line 912)
+* BFD_RELOC_ARM_T32_CP_OFF_IMM: howto manager. (line 920)
+* BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: howto manager. (line 921)
+* BFD_RELOC_ARM_T32_IMM12: howto manager. (line 911)
+* BFD_RELOC_ARM_T32_IMMEDIATE: howto manager. (line 909)
+* BFD_RELOC_ARM_T32_OFFSET_IMM: howto manager. (line 928)
+* BFD_RELOC_ARM_T32_OFFSET_U8: howto manager. (line 927)
+* BFD_RELOC_ARM_TARGET1: howto manager. (line 817)
+* BFD_RELOC_ARM_TARGET2: howto manager. (line 827)
+* BFD_RELOC_ARM_THM_TLS_CALL: howto manager. (line 865)
+* BFD_RELOC_ARM_THM_TLS_DESCSEQ: howto manager. (line 867)
+* BFD_RELOC_ARM_THUMB_ADD: howto manager. (line 930)
+* BFD_RELOC_ARM_THUMB_IMM: howto manager. (line 931)
+* BFD_RELOC_ARM_THUMB_MOVT: howto manager. (line 840)
+* BFD_RELOC_ARM_THUMB_MOVT_PCREL: howto manager. (line 842)
+* BFD_RELOC_ARM_THUMB_MOVW: howto manager. (line 839)
+* BFD_RELOC_ARM_THUMB_MOVW_PCREL: howto manager. (line 841)
+* BFD_RELOC_ARM_THUMB_OFFSET: howto manager. (line 813)
+* BFD_RELOC_ARM_THUMB_SHIFT: howto manager. (line 932)
+* BFD_RELOC_ARM_TLS_CALL: howto manager. (line 864)
+* BFD_RELOC_ARM_TLS_DESC: howto manager. (line 868)
+* BFD_RELOC_ARM_TLS_DESCSEQ: howto manager. (line 866)
+* BFD_RELOC_ARM_TLS_DTPMOD32: howto manager. (line 859)
+* BFD_RELOC_ARM_TLS_DTPOFF32: howto manager. (line 858)
+* BFD_RELOC_ARM_TLS_GD32: howto manager. (line 855)
+* BFD_RELOC_ARM_TLS_GOTDESC: howto manager. (line 863)
+* BFD_RELOC_ARM_TLS_IE32: howto manager. (line 861)
+* BFD_RELOC_ARM_TLS_LDM32: howto manager. (line 857)
+* BFD_RELOC_ARM_TLS_LDO32: howto manager. (line 856)
+* BFD_RELOC_ARM_TLS_LE32: howto manager. (line 862)
+* BFD_RELOC_ARM_TLS_TPOFF32: howto manager. (line 860)
+* BFD_RELOC_ARM_V4BX: howto manager. (line 901)
+* BFD_RELOC_AVR_13_PCREL: howto manager. (line 1591)
+* BFD_RELOC_AVR_16_PM: howto manager. (line 1595)
+* BFD_RELOC_AVR_6: howto manager. (line 1682)
+* BFD_RELOC_AVR_6_ADIW: howto manager. (line 1686)
+* BFD_RELOC_AVR_7_PCREL: howto manager. (line 1587)
+* BFD_RELOC_AVR_8_HI: howto manager. (line 1694)
+* BFD_RELOC_AVR_8_HLO: howto manager. (line 1698)
+* BFD_RELOC_AVR_8_LO: howto manager. (line 1690)
+* BFD_RELOC_AVR_CALL: howto manager. (line 1674)
+* BFD_RELOC_AVR_HH8_LDI: howto manager. (line 1607)
+* BFD_RELOC_AVR_HH8_LDI_NEG: howto manager. (line 1626)
+* BFD_RELOC_AVR_HH8_LDI_PM: howto manager. (line 1655)
+* BFD_RELOC_AVR_HH8_LDI_PM_NEG: howto manager. (line 1669)
+* BFD_RELOC_AVR_HI8_LDI: howto manager. (line 1603)
+* BFD_RELOC_AVR_HI8_LDI_GS: howto manager. (line 1649)
+* BFD_RELOC_AVR_HI8_LDI_NEG: howto manager. (line 1621)
+* BFD_RELOC_AVR_HI8_LDI_PM: howto manager. (line 1645)
+* BFD_RELOC_AVR_HI8_LDI_PM_NEG: howto manager. (line 1664)
+* BFD_RELOC_AVR_LDI: howto manager. (line 1678)
+* BFD_RELOC_AVR_LO8_LDI: howto manager. (line 1599)
+* BFD_RELOC_AVR_LO8_LDI_GS: howto manager. (line 1639)
+* BFD_RELOC_AVR_LO8_LDI_NEG: howto manager. (line 1616)
+* BFD_RELOC_AVR_LO8_LDI_PM: howto manager. (line 1635)
+* BFD_RELOC_AVR_LO8_LDI_PM_NEG: howto manager. (line 1660)
+* BFD_RELOC_AVR_MS8_LDI: howto manager. (line 1612)
+* BFD_RELOC_AVR_MS8_LDI_NEG: howto manager. (line 1631)
+* BFD_RELOC_BFIN_10_PCREL: howto manager. (line 1061)
+* BFD_RELOC_BFIN_11_PCREL: howto manager. (line 1064)
+* BFD_RELOC_BFIN_12_PCREL_JUMP: howto manager. (line 1067)
+* BFD_RELOC_BFIN_12_PCREL_JUMP_S: howto manager. (line 1070)
+* BFD_RELOC_BFIN_16_HIGH: howto manager. (line 1049)
+* BFD_RELOC_BFIN_16_IMM: howto manager. (line 1046)
+* BFD_RELOC_BFIN_16_LOW: howto manager. (line 1058)
+* BFD_RELOC_BFIN_24_PCREL_CALL_X: howto manager. (line 1073)
+* BFD_RELOC_BFIN_24_PCREL_JUMP_L: howto manager. (line 1076)
+* BFD_RELOC_BFIN_4_PCREL: howto manager. (line 1052)
+* BFD_RELOC_BFIN_5_PCREL: howto manager. (line 1055)
+* BFD_RELOC_BFIN_FUNCDESC: howto manager. (line 1082)
+* BFD_RELOC_BFIN_FUNCDESC_GOT17M4: howto manager. (line 1083)
+* BFD_RELOC_BFIN_FUNCDESC_GOTHI: howto manager. (line 1084)
+* BFD_RELOC_BFIN_FUNCDESC_GOTLO: howto manager. (line 1085)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: howto manager. (line 1087)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: howto manager. (line 1088)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: howto manager. (line 1089)
+* BFD_RELOC_BFIN_FUNCDESC_VALUE: howto manager. (line 1086)
+* BFD_RELOC_BFIN_GOT: howto manager. (line 1095)
+* BFD_RELOC_BFIN_GOT17M4: howto manager. (line 1079)
+* BFD_RELOC_BFIN_GOTHI: howto manager. (line 1080)
+* BFD_RELOC_BFIN_GOTLO: howto manager. (line 1081)
+* BFD_RELOC_BFIN_GOTOFF17M4: howto manager. (line 1090)
+* BFD_RELOC_BFIN_GOTOFFHI: howto manager. (line 1091)
+* BFD_RELOC_BFIN_GOTOFFLO: howto manager. (line 1092)
+* BFD_RELOC_BFIN_PLTPC: howto manager. (line 1098)
+* BFD_RELOC_C6000_ABS_H16: howto manager. (line 1450)
+* BFD_RELOC_C6000_ABS_L16: howto manager. (line 1449)
+* BFD_RELOC_C6000_ABS_S16: howto manager. (line 1448)
+* BFD_RELOC_C6000_ALIGN: howto manager. (line 1471)
+* BFD_RELOC_C6000_COPY: howto manager. (line 1466)
+* BFD_RELOC_C6000_DSBT_INDEX: howto manager. (line 1464)
+* BFD_RELOC_C6000_EHTYPE: howto manager. (line 1468)
+* BFD_RELOC_C6000_FPHEAD: howto manager. (line 1472)
+* BFD_RELOC_C6000_JUMP_SLOT: howto manager. (line 1467)
+* BFD_RELOC_C6000_NOCMP: howto manager. (line 1473)
+* BFD_RELOC_C6000_PCR_H16: howto manager. (line 1469)
+* BFD_RELOC_C6000_PCR_L16: howto manager. (line 1470)
+* BFD_RELOC_C6000_PCR_S10: howto manager. (line 1446)
+* BFD_RELOC_C6000_PCR_S12: howto manager. (line 1445)
+* BFD_RELOC_C6000_PCR_S21: howto manager. (line 1444)
+* BFD_RELOC_C6000_PCR_S7: howto manager. (line 1447)
+* BFD_RELOC_C6000_PREL31: howto manager. (line 1465)
+* BFD_RELOC_C6000_SBR_GOT_H16_W: howto manager. (line 1463)
+* BFD_RELOC_C6000_SBR_GOT_L16_W: howto manager. (line 1462)
+* BFD_RELOC_C6000_SBR_GOT_U15_W: howto manager. (line 1461)
+* BFD_RELOC_C6000_SBR_H16_B: howto manager. (line 1458)
+* BFD_RELOC_C6000_SBR_H16_H: howto manager. (line 1459)
+* BFD_RELOC_C6000_SBR_H16_W: howto manager. (line 1460)
+* BFD_RELOC_C6000_SBR_L16_B: howto manager. (line 1455)
+* BFD_RELOC_C6000_SBR_L16_H: howto manager. (line 1456)
+* BFD_RELOC_C6000_SBR_L16_W: howto manager. (line 1457)
+* BFD_RELOC_C6000_SBR_S16: howto manager. (line 1454)
+* BFD_RELOC_C6000_SBR_U15_B: howto manager. (line 1451)
+* BFD_RELOC_C6000_SBR_U15_H: howto manager. (line 1452)
+* BFD_RELOC_C6000_SBR_U15_W: howto manager. (line 1453)
* bfd_reloc_code_type: howto manager. (line 10)
-* BFD_RELOC_CR16_ABS20: howto manager. (line 2080)
-* BFD_RELOC_CR16_ABS24: howto manager. (line 2081)
-* BFD_RELOC_CR16_DISP16: howto manager. (line 2091)
-* BFD_RELOC_CR16_DISP20: howto manager. (line 2092)
-* BFD_RELOC_CR16_DISP24: howto manager. (line 2093)
-* BFD_RELOC_CR16_DISP24a: howto manager. (line 2094)
-* BFD_RELOC_CR16_DISP4: howto manager. (line 2089)
-* BFD_RELOC_CR16_DISP8: howto manager. (line 2090)
-* BFD_RELOC_CR16_GLOB_DAT: howto manager. (line 2100)
-* BFD_RELOC_CR16_GOT_REGREL20: howto manager. (line 2098)
-* BFD_RELOC_CR16_GOTC_REGREL20: howto manager. (line 2099)
-* BFD_RELOC_CR16_IMM16: howto manager. (line 2084)
-* BFD_RELOC_CR16_IMM20: howto manager. (line 2085)
-* BFD_RELOC_CR16_IMM24: howto manager. (line 2086)
-* BFD_RELOC_CR16_IMM32: howto manager. (line 2087)
-* BFD_RELOC_CR16_IMM32a: howto manager. (line 2088)
-* BFD_RELOC_CR16_IMM4: howto manager. (line 2082)
-* BFD_RELOC_CR16_IMM8: howto manager. (line 2083)
-* BFD_RELOC_CR16_NUM16: howto manager. (line 2069)
-* BFD_RELOC_CR16_NUM32: howto manager. (line 2070)
-* BFD_RELOC_CR16_NUM32a: howto manager. (line 2071)
-* BFD_RELOC_CR16_NUM8: howto manager. (line 2068)
-* BFD_RELOC_CR16_REGREL0: howto manager. (line 2072)
-* BFD_RELOC_CR16_REGREL14: howto manager. (line 2075)
-* BFD_RELOC_CR16_REGREL14a: howto manager. (line 2076)
-* BFD_RELOC_CR16_REGREL16: howto manager. (line 2077)
-* BFD_RELOC_CR16_REGREL20: howto manager. (line 2078)
-* BFD_RELOC_CR16_REGREL20a: howto manager. (line 2079)
-* BFD_RELOC_CR16_REGREL4: howto manager. (line 2073)
-* BFD_RELOC_CR16_REGREL4a: howto manager. (line 2074)
-* BFD_RELOC_CR16_SWITCH16: howto manager. (line 2096)
-* BFD_RELOC_CR16_SWITCH32: howto manager. (line 2097)
-* BFD_RELOC_CR16_SWITCH8: howto manager. (line 2095)
-* BFD_RELOC_CRIS_16_DTPREL: howto manager. (line 2171)
-* BFD_RELOC_CRIS_16_GOT: howto manager. (line 2147)
-* BFD_RELOC_CRIS_16_GOT_GD: howto manager. (line 2167)
-* BFD_RELOC_CRIS_16_GOT_TPREL: howto manager. (line 2173)
-* BFD_RELOC_CRIS_16_GOTPLT: howto manager. (line 2153)
-* BFD_RELOC_CRIS_16_TPREL: howto manager. (line 2175)
-* BFD_RELOC_CRIS_32_DTPREL: howto manager. (line 2170)
-* BFD_RELOC_CRIS_32_GD: howto manager. (line 2168)
-* BFD_RELOC_CRIS_32_GOT: howto manager. (line 2144)
-* BFD_RELOC_CRIS_32_GOT_GD: howto manager. (line 2166)
-* BFD_RELOC_CRIS_32_GOT_TPREL: howto manager. (line 2172)
-* BFD_RELOC_CRIS_32_GOTPLT: howto manager. (line 2150)
-* BFD_RELOC_CRIS_32_GOTREL: howto manager. (line 2156)
-* BFD_RELOC_CRIS_32_IE: howto manager. (line 2177)
-* BFD_RELOC_CRIS_32_PLT_GOTREL: howto manager. (line 2159)
-* BFD_RELOC_CRIS_32_PLT_PCREL: howto manager. (line 2162)
-* BFD_RELOC_CRIS_32_TPREL: howto manager. (line 2174)
-* BFD_RELOC_CRIS_BDISP8: howto manager. (line 2125)
-* BFD_RELOC_CRIS_COPY: howto manager. (line 2138)
-* BFD_RELOC_CRIS_DTP: howto manager. (line 2169)
-* BFD_RELOC_CRIS_DTPMOD: howto manager. (line 2176)
-* BFD_RELOC_CRIS_GLOB_DAT: howto manager. (line 2139)
-* BFD_RELOC_CRIS_JUMP_SLOT: howto manager. (line 2140)
-* BFD_RELOC_CRIS_LAPCQ_OFFSET: howto manager. (line 2133)
-* BFD_RELOC_CRIS_RELATIVE: howto manager. (line 2141)
-* BFD_RELOC_CRIS_SIGNED_16: howto manager. (line 2131)
-* BFD_RELOC_CRIS_SIGNED_6: howto manager. (line 2127)
-* BFD_RELOC_CRIS_SIGNED_8: howto manager. (line 2129)
-* BFD_RELOC_CRIS_UNSIGNED_16: howto manager. (line 2132)
-* BFD_RELOC_CRIS_UNSIGNED_4: howto manager. (line 2134)
-* BFD_RELOC_CRIS_UNSIGNED_5: howto manager. (line 2126)
-* BFD_RELOC_CRIS_UNSIGNED_6: howto manager. (line 2128)
-* BFD_RELOC_CRIS_UNSIGNED_8: howto manager. (line 2130)
-* BFD_RELOC_CRX_ABS16: howto manager. (line 2113)
-* BFD_RELOC_CRX_ABS32: howto manager. (line 2114)
-* BFD_RELOC_CRX_IMM16: howto manager. (line 2118)
-* BFD_RELOC_CRX_IMM32: howto manager. (line 2119)
-* BFD_RELOC_CRX_NUM16: howto manager. (line 2116)
-* BFD_RELOC_CRX_NUM32: howto manager. (line 2117)
-* BFD_RELOC_CRX_NUM8: howto manager. (line 2115)
-* BFD_RELOC_CRX_REGREL12: howto manager. (line 2109)
-* BFD_RELOC_CRX_REGREL22: howto manager. (line 2110)
-* BFD_RELOC_CRX_REGREL28: howto manager. (line 2111)
-* BFD_RELOC_CRX_REGREL32: howto manager. (line 2112)
-* BFD_RELOC_CRX_REL16: howto manager. (line 2106)
-* BFD_RELOC_CRX_REL24: howto manager. (line 2107)
-* BFD_RELOC_CRX_REL32: howto manager. (line 2108)
-* BFD_RELOC_CRX_REL4: howto manager. (line 2103)
-* BFD_RELOC_CRX_REL8: howto manager. (line 2104)
-* BFD_RELOC_CRX_REL8_CMP: howto manager. (line 2105)
-* BFD_RELOC_CRX_SWITCH16: howto manager. (line 2121)
-* BFD_RELOC_CRX_SWITCH32: howto manager. (line 2122)
-* BFD_RELOC_CRX_SWITCH8: howto manager. (line 2120)
-* BFD_RELOC_CTOR: howto manager. (line 721)
-* BFD_RELOC_D10V_10_PCREL_L: howto manager. (line 1116)
-* BFD_RELOC_D10V_10_PCREL_R: howto manager. (line 1112)
-* BFD_RELOC_D10V_18: howto manager. (line 1121)
-* BFD_RELOC_D10V_18_PCREL: howto manager. (line 1124)
-* BFD_RELOC_D30V_15: howto manager. (line 1139)
-* BFD_RELOC_D30V_15_PCREL: howto manager. (line 1143)
-* BFD_RELOC_D30V_15_PCREL_R: howto manager. (line 1147)
-* BFD_RELOC_D30V_21: howto manager. (line 1152)
-* BFD_RELOC_D30V_21_PCREL: howto manager. (line 1156)
-* BFD_RELOC_D30V_21_PCREL_R: howto manager. (line 1160)
-* BFD_RELOC_D30V_32: howto manager. (line 1165)
-* BFD_RELOC_D30V_32_PCREL: howto manager. (line 1168)
-* BFD_RELOC_D30V_6: howto manager. (line 1127)
-* BFD_RELOC_D30V_9_PCREL: howto manager. (line 1130)
-* BFD_RELOC_D30V_9_PCREL_R: howto manager. (line 1134)
-* BFD_RELOC_DLX_HI16_S: howto manager. (line 1171)
-* BFD_RELOC_DLX_JMP26: howto manager. (line 1177)
-* BFD_RELOC_DLX_LO16: howto manager. (line 1174)
-* BFD_RELOC_EPIPHANY_HIGH: howto manager. (line 2652)
-* BFD_RELOC_EPIPHANY_IMM11: howto manager. (line 2661)
-* BFD_RELOC_EPIPHANY_IMM8: howto manager. (line 2665)
-* BFD_RELOC_EPIPHANY_LOW: howto manager. (line 2655)
-* BFD_RELOC_EPIPHANY_SIMM11: howto manager. (line 2658)
-* BFD_RELOC_EPIPHANY_SIMM24: howto manager. (line 2649)
-* BFD_RELOC_EPIPHANY_SIMM8: howto manager. (line 2646)
-* BFD_RELOC_FR30_10_IN_8: howto manager. (line 1454)
-* BFD_RELOC_FR30_12_PCREL: howto manager. (line 1462)
-* BFD_RELOC_FR30_20: howto manager. (line 1438)
-* BFD_RELOC_FR30_48: howto manager. (line 1435)
-* BFD_RELOC_FR30_6_IN_4: howto manager. (line 1442)
-* BFD_RELOC_FR30_8_IN_8: howto manager. (line 1446)
-* BFD_RELOC_FR30_9_IN_8: howto manager. (line 1450)
-* BFD_RELOC_FR30_9_PCREL: howto manager. (line 1458)
-* BFD_RELOC_FRV_FUNCDESC: howto manager. (line 473)
-* BFD_RELOC_FRV_FUNCDESC_GOT12: howto manager. (line 474)
-* BFD_RELOC_FRV_FUNCDESC_GOTHI: howto manager. (line 475)
-* BFD_RELOC_FRV_FUNCDESC_GOTLO: howto manager. (line 476)
-* BFD_RELOC_FRV_FUNCDESC_GOTOFF12: howto manager. (line 478)
-* BFD_RELOC_FRV_FUNCDESC_GOTOFFHI: howto manager. (line 479)
-* BFD_RELOC_FRV_FUNCDESC_GOTOFFLO: howto manager. (line 480)
-* BFD_RELOC_FRV_FUNCDESC_VALUE: howto manager. (line 477)
-* BFD_RELOC_FRV_GETTLSOFF: howto manager. (line 484)
-* BFD_RELOC_FRV_GETTLSOFF_RELAX: howto manager. (line 497)
-* BFD_RELOC_FRV_GOT12: howto manager. (line 470)
-* BFD_RELOC_FRV_GOTHI: howto manager. (line 471)
-* BFD_RELOC_FRV_GOTLO: howto manager. (line 472)
-* BFD_RELOC_FRV_GOTOFF12: howto manager. (line 481)
-* BFD_RELOC_FRV_GOTOFFHI: howto manager. (line 482)
-* BFD_RELOC_FRV_GOTOFFLO: howto manager. (line 483)
-* BFD_RELOC_FRV_GOTTLSDESC12: howto manager. (line 486)
-* BFD_RELOC_FRV_GOTTLSDESCHI: howto manager. (line 487)
-* BFD_RELOC_FRV_GOTTLSDESCLO: howto manager. (line 488)
-* BFD_RELOC_FRV_GOTTLSOFF12: howto manager. (line 492)
-* BFD_RELOC_FRV_GOTTLSOFFHI: howto manager. (line 493)
-* BFD_RELOC_FRV_GOTTLSOFFLO: howto manager. (line 494)
-* BFD_RELOC_FRV_GPREL12: howto manager. (line 465)
-* BFD_RELOC_FRV_GPREL32: howto manager. (line 467)
-* BFD_RELOC_FRV_GPRELHI: howto manager. (line 468)
-* BFD_RELOC_FRV_GPRELLO: howto manager. (line 469)
-* BFD_RELOC_FRV_GPRELU12: howto manager. (line 466)
-* BFD_RELOC_FRV_HI16: howto manager. (line 464)
-* BFD_RELOC_FRV_LABEL16: howto manager. (line 461)
-* BFD_RELOC_FRV_LABEL24: howto manager. (line 462)
-* BFD_RELOC_FRV_LO16: howto manager. (line 463)
-* BFD_RELOC_FRV_TLSDESC_RELAX: howto manager. (line 496)
-* BFD_RELOC_FRV_TLSDESC_VALUE: howto manager. (line 485)
-* BFD_RELOC_FRV_TLSMOFF: howto manager. (line 499)
-* BFD_RELOC_FRV_TLSMOFF12: howto manager. (line 489)
-* BFD_RELOC_FRV_TLSMOFFHI: howto manager. (line 490)
-* BFD_RELOC_FRV_TLSMOFFLO: howto manager. (line 491)
-* BFD_RELOC_FRV_TLSOFF: howto manager. (line 495)
-* BFD_RELOC_FRV_TLSOFF_RELAX: howto manager. (line 498)
+* BFD_RELOC_CR16_ABS20: howto manager. (line 2198)
+* BFD_RELOC_CR16_ABS24: howto manager. (line 2199)
+* BFD_RELOC_CR16_DISP16: howto manager. (line 2209)
+* BFD_RELOC_CR16_DISP20: howto manager. (line 2210)
+* BFD_RELOC_CR16_DISP24: howto manager. (line 2211)
+* BFD_RELOC_CR16_DISP24a: howto manager. (line 2212)
+* BFD_RELOC_CR16_DISP4: howto manager. (line 2207)
+* BFD_RELOC_CR16_DISP8: howto manager. (line 2208)
+* BFD_RELOC_CR16_GLOB_DAT: howto manager. (line 2218)
+* BFD_RELOC_CR16_GOT_REGREL20: howto manager. (line 2216)
+* BFD_RELOC_CR16_GOTC_REGREL20: howto manager. (line 2217)
+* BFD_RELOC_CR16_IMM16: howto manager. (line 2202)
+* BFD_RELOC_CR16_IMM20: howto manager. (line 2203)
+* BFD_RELOC_CR16_IMM24: howto manager. (line 2204)
+* BFD_RELOC_CR16_IMM32: howto manager. (line 2205)
+* BFD_RELOC_CR16_IMM32a: howto manager. (line 2206)
+* BFD_RELOC_CR16_IMM4: howto manager. (line 2200)
+* BFD_RELOC_CR16_IMM8: howto manager. (line 2201)
+* BFD_RELOC_CR16_NUM16: howto manager. (line 2187)
+* BFD_RELOC_CR16_NUM32: howto manager. (line 2188)
+* BFD_RELOC_CR16_NUM32a: howto manager. (line 2189)
+* BFD_RELOC_CR16_NUM8: howto manager. (line 2186)
+* BFD_RELOC_CR16_REGREL0: howto manager. (line 2190)
+* BFD_RELOC_CR16_REGREL14: howto manager. (line 2193)
+* BFD_RELOC_CR16_REGREL14a: howto manager. (line 2194)
+* BFD_RELOC_CR16_REGREL16: howto manager. (line 2195)
+* BFD_RELOC_CR16_REGREL20: howto manager. (line 2196)
+* BFD_RELOC_CR16_REGREL20a: howto manager. (line 2197)
+* BFD_RELOC_CR16_REGREL4: howto manager. (line 2191)
+* BFD_RELOC_CR16_REGREL4a: howto manager. (line 2192)
+* BFD_RELOC_CR16_SWITCH16: howto manager. (line 2214)
+* BFD_RELOC_CR16_SWITCH32: howto manager. (line 2215)
+* BFD_RELOC_CR16_SWITCH8: howto manager. (line 2213)
+* BFD_RELOC_CRIS_16_DTPREL: howto manager. (line 2289)
+* BFD_RELOC_CRIS_16_GOT: howto manager. (line 2265)
+* BFD_RELOC_CRIS_16_GOT_GD: howto manager. (line 2285)
+* BFD_RELOC_CRIS_16_GOT_TPREL: howto manager. (line 2291)
+* BFD_RELOC_CRIS_16_GOTPLT: howto manager. (line 2271)
+* BFD_RELOC_CRIS_16_TPREL: howto manager. (line 2293)
+* BFD_RELOC_CRIS_32_DTPREL: howto manager. (line 2288)
+* BFD_RELOC_CRIS_32_GD: howto manager. (line 2286)
+* BFD_RELOC_CRIS_32_GOT: howto manager. (line 2262)
+* BFD_RELOC_CRIS_32_GOT_GD: howto manager. (line 2284)
+* BFD_RELOC_CRIS_32_GOT_TPREL: howto manager. (line 2290)
+* BFD_RELOC_CRIS_32_GOTPLT: howto manager. (line 2268)
+* BFD_RELOC_CRIS_32_GOTREL: howto manager. (line 2274)
+* BFD_RELOC_CRIS_32_IE: howto manager. (line 2295)
+* BFD_RELOC_CRIS_32_PLT_GOTREL: howto manager. (line 2277)
+* BFD_RELOC_CRIS_32_PLT_PCREL: howto manager. (line 2280)
+* BFD_RELOC_CRIS_32_TPREL: howto manager. (line 2292)
+* BFD_RELOC_CRIS_BDISP8: howto manager. (line 2243)
+* BFD_RELOC_CRIS_COPY: howto manager. (line 2256)
+* BFD_RELOC_CRIS_DTP: howto manager. (line 2287)
+* BFD_RELOC_CRIS_DTPMOD: howto manager. (line 2294)
+* BFD_RELOC_CRIS_GLOB_DAT: howto manager. (line 2257)
+* BFD_RELOC_CRIS_JUMP_SLOT: howto manager. (line 2258)
+* BFD_RELOC_CRIS_LAPCQ_OFFSET: howto manager. (line 2251)
+* BFD_RELOC_CRIS_RELATIVE: howto manager. (line 2259)
+* BFD_RELOC_CRIS_SIGNED_16: howto manager. (line 2249)
+* BFD_RELOC_CRIS_SIGNED_6: howto manager. (line 2245)
+* BFD_RELOC_CRIS_SIGNED_8: howto manager. (line 2247)
+* BFD_RELOC_CRIS_UNSIGNED_16: howto manager. (line 2250)
+* BFD_RELOC_CRIS_UNSIGNED_4: howto manager. (line 2252)
+* BFD_RELOC_CRIS_UNSIGNED_5: howto manager. (line 2244)
+* BFD_RELOC_CRIS_UNSIGNED_6: howto manager. (line 2246)
+* BFD_RELOC_CRIS_UNSIGNED_8: howto manager. (line 2248)
+* BFD_RELOC_CRX_ABS16: howto manager. (line 2231)
+* BFD_RELOC_CRX_ABS32: howto manager. (line 2232)
+* BFD_RELOC_CRX_IMM16: howto manager. (line 2236)
+* BFD_RELOC_CRX_IMM32: howto manager. (line 2237)
+* BFD_RELOC_CRX_NUM16: howto manager. (line 2234)
+* BFD_RELOC_CRX_NUM32: howto manager. (line 2235)
+* BFD_RELOC_CRX_NUM8: howto manager. (line 2233)
+* BFD_RELOC_CRX_REGREL12: howto manager. (line 2227)
+* BFD_RELOC_CRX_REGREL22: howto manager. (line 2228)
+* BFD_RELOC_CRX_REGREL28: howto manager. (line 2229)
+* BFD_RELOC_CRX_REGREL32: howto manager. (line 2230)
+* BFD_RELOC_CRX_REL16: howto manager. (line 2224)
+* BFD_RELOC_CRX_REL24: howto manager. (line 2225)
+* BFD_RELOC_CRX_REL32: howto manager. (line 2226)
+* BFD_RELOC_CRX_REL4: howto manager. (line 2221)
+* BFD_RELOC_CRX_REL8: howto manager. (line 2222)
+* BFD_RELOC_CRX_REL8_CMP: howto manager. (line 2223)
+* BFD_RELOC_CRX_SWITCH16: howto manager. (line 2239)
+* BFD_RELOC_CRX_SWITCH32: howto manager. (line 2240)
+* BFD_RELOC_CRX_SWITCH8: howto manager. (line 2238)
+* BFD_RELOC_CTOR: howto manager. (line 770)
+* BFD_RELOC_D10V_10_PCREL_L: howto manager. (line 1165)
+* BFD_RELOC_D10V_10_PCREL_R: howto manager. (line 1161)
+* BFD_RELOC_D10V_18: howto manager. (line 1170)
+* BFD_RELOC_D10V_18_PCREL: howto manager. (line 1173)
+* BFD_RELOC_D30V_15: howto manager. (line 1188)
+* BFD_RELOC_D30V_15_PCREL: howto manager. (line 1192)
+* BFD_RELOC_D30V_15_PCREL_R: howto manager. (line 1196)
+* BFD_RELOC_D30V_21: howto manager. (line 1201)
+* BFD_RELOC_D30V_21_PCREL: howto manager. (line 1205)
+* BFD_RELOC_D30V_21_PCREL_R: howto manager. (line 1209)
+* BFD_RELOC_D30V_32: howto manager. (line 1214)
+* BFD_RELOC_D30V_32_PCREL: howto manager. (line 1217)
+* BFD_RELOC_D30V_6: howto manager. (line 1176)
+* BFD_RELOC_D30V_9_PCREL: howto manager. (line 1179)
+* BFD_RELOC_D30V_9_PCREL_R: howto manager. (line 1183)
+* BFD_RELOC_DLX_HI16_S: howto manager. (line 1220)
+* BFD_RELOC_DLX_JMP26: howto manager. (line 1226)
+* BFD_RELOC_DLX_LO16: howto manager. (line 1223)
+* BFD_RELOC_EPIPHANY_HIGH: howto manager. (line 2779)
+* BFD_RELOC_EPIPHANY_IMM11: howto manager. (line 2788)
+* BFD_RELOC_EPIPHANY_IMM8: howto manager. (line 2792)
+* BFD_RELOC_EPIPHANY_LOW: howto manager. (line 2782)
+* BFD_RELOC_EPIPHANY_SIMM11: howto manager. (line 2785)
+* BFD_RELOC_EPIPHANY_SIMM24: howto manager. (line 2776)
+* BFD_RELOC_EPIPHANY_SIMM8: howto manager. (line 2773)
+* BFD_RELOC_FR30_10_IN_8: howto manager. (line 1495)
+* BFD_RELOC_FR30_12_PCREL: howto manager. (line 1503)
+* BFD_RELOC_FR30_20: howto manager. (line 1479)
+* BFD_RELOC_FR30_48: howto manager. (line 1476)
+* BFD_RELOC_FR30_6_IN_4: howto manager. (line 1483)
+* BFD_RELOC_FR30_8_IN_8: howto manager. (line 1487)
+* BFD_RELOC_FR30_9_IN_8: howto manager. (line 1491)
+* BFD_RELOC_FR30_9_PCREL: howto manager. (line 1499)
+* BFD_RELOC_FRV_FUNCDESC: howto manager. (line 486)
+* BFD_RELOC_FRV_FUNCDESC_GOT12: howto manager. (line 487)
+* BFD_RELOC_FRV_FUNCDESC_GOTHI: howto manager. (line 488)
+* BFD_RELOC_FRV_FUNCDESC_GOTLO: howto manager. (line 489)
+* BFD_RELOC_FRV_FUNCDESC_GOTOFF12: howto manager. (line 491)
+* BFD_RELOC_FRV_FUNCDESC_GOTOFFHI: howto manager. (line 492)
+* BFD_RELOC_FRV_FUNCDESC_GOTOFFLO: howto manager. (line 493)
+* BFD_RELOC_FRV_FUNCDESC_VALUE: howto manager. (line 490)
+* BFD_RELOC_FRV_GETTLSOFF: howto manager. (line 497)
+* BFD_RELOC_FRV_GETTLSOFF_RELAX: howto manager. (line 510)
+* BFD_RELOC_FRV_GOT12: howto manager. (line 483)
+* BFD_RELOC_FRV_GOTHI: howto manager. (line 484)
+* BFD_RELOC_FRV_GOTLO: howto manager. (line 485)
+* BFD_RELOC_FRV_GOTOFF12: howto manager. (line 494)
+* BFD_RELOC_FRV_GOTOFFHI: howto manager. (line 495)
+* BFD_RELOC_FRV_GOTOFFLO: howto manager. (line 496)
+* BFD_RELOC_FRV_GOTTLSDESC12: howto manager. (line 499)
+* BFD_RELOC_FRV_GOTTLSDESCHI: howto manager. (line 500)
+* BFD_RELOC_FRV_GOTTLSDESCLO: howto manager. (line 501)
+* BFD_RELOC_FRV_GOTTLSOFF12: howto manager. (line 505)
+* BFD_RELOC_FRV_GOTTLSOFFHI: howto manager. (line 506)
+* BFD_RELOC_FRV_GOTTLSOFFLO: howto manager. (line 507)
+* BFD_RELOC_FRV_GPREL12: howto manager. (line 478)
+* BFD_RELOC_FRV_GPREL32: howto manager. (line 480)
+* BFD_RELOC_FRV_GPRELHI: howto manager. (line 481)
+* BFD_RELOC_FRV_GPRELLO: howto manager. (line 482)
+* BFD_RELOC_FRV_GPRELU12: howto manager. (line 479)
+* BFD_RELOC_FRV_HI16: howto manager. (line 477)
+* BFD_RELOC_FRV_LABEL16: howto manager. (line 474)
+* BFD_RELOC_FRV_LABEL24: howto manager. (line 475)
+* BFD_RELOC_FRV_LO16: howto manager. (line 476)
+* BFD_RELOC_FRV_TLSDESC_RELAX: howto manager. (line 509)
+* BFD_RELOC_FRV_TLSDESC_VALUE: howto manager. (line 498)
+* BFD_RELOC_FRV_TLSMOFF: howto manager. (line 512)
+* BFD_RELOC_FRV_TLSMOFF12: howto manager. (line 502)
+* BFD_RELOC_FRV_TLSMOFFHI: howto manager. (line 503)
+* BFD_RELOC_FRV_TLSMOFFLO: howto manager. (line 504)
+* BFD_RELOC_FRV_TLSOFF: howto manager. (line 508)
+* BFD_RELOC_FRV_TLSOFF_RELAX: howto manager. (line 511)
* BFD_RELOC_GPREL16: howto manager. (line 121)
* BFD_RELOC_GPREL32: howto manager. (line 122)
-* BFD_RELOC_H8_DIR16A8: howto manager. (line 2218)
-* BFD_RELOC_H8_DIR16R8: howto manager. (line 2219)
-* BFD_RELOC_H8_DIR24A8: howto manager. (line 2220)
-* BFD_RELOC_H8_DIR24R8: howto manager. (line 2221)
-* BFD_RELOC_H8_DIR32A16: howto manager. (line 2222)
-* BFD_RELOC_HI16: howto manager. (line 344)
+* BFD_RELOC_H8_DIR16A8: howto manager. (line 2336)
+* BFD_RELOC_H8_DIR16R8: howto manager. (line 2337)
+* BFD_RELOC_H8_DIR24A8: howto manager. (line 2338)
+* BFD_RELOC_H8_DIR24R8: howto manager. (line 2339)
+* BFD_RELOC_H8_DIR32A16: howto manager. (line 2340)
+* BFD_RELOC_HI16: howto manager. (line 348)
* BFD_RELOC_HI16_BASEREL: howto manager. (line 97)
* BFD_RELOC_HI16_GOTOFF: howto manager. (line 57)
-* BFD_RELOC_HI16_PCREL: howto manager. (line 356)
+* BFD_RELOC_HI16_PCREL: howto manager. (line 360)
* BFD_RELOC_HI16_PLTOFF: howto manager. (line 69)
-* BFD_RELOC_HI16_S: howto manager. (line 347)
+* BFD_RELOC_HI16_S: howto manager. (line 351)
* BFD_RELOC_HI16_S_BASEREL: howto manager. (line 98)
* BFD_RELOC_HI16_S_GOTOFF: howto manager. (line 58)
-* BFD_RELOC_HI16_S_PCREL: howto manager. (line 359)
+* BFD_RELOC_HI16_S_PCREL: howto manager. (line 363)
* BFD_RELOC_HI16_S_PLTOFF: howto manager. (line 70)
* BFD_RELOC_HI22: howto manager. (line 116)
-* BFD_RELOC_I370_D12: howto manager. (line 718)
+* BFD_RELOC_I370_D12: howto manager. (line 767)
* BFD_RELOC_I960_CALLJ: howto manager. (line 128)
-* BFD_RELOC_IA64_COPY: howto manager. (line 1962)
-* BFD_RELOC_IA64_DIR32LSB: howto manager. (line 1907)
-* BFD_RELOC_IA64_DIR32MSB: howto manager. (line 1906)
-* BFD_RELOC_IA64_DIR64LSB: howto manager. (line 1909)
-* BFD_RELOC_IA64_DIR64MSB: howto manager. (line 1908)
-* BFD_RELOC_IA64_DTPMOD64LSB: howto manager. (line 1972)
-* BFD_RELOC_IA64_DTPMOD64MSB: howto manager. (line 1971)
-* BFD_RELOC_IA64_DTPREL14: howto manager. (line 1974)
-* BFD_RELOC_IA64_DTPREL22: howto manager. (line 1975)
-* BFD_RELOC_IA64_DTPREL32LSB: howto manager. (line 1978)
-* BFD_RELOC_IA64_DTPREL32MSB: howto manager. (line 1977)
-* BFD_RELOC_IA64_DTPREL64I: howto manager. (line 1976)
-* BFD_RELOC_IA64_DTPREL64LSB: howto manager. (line 1980)
-* BFD_RELOC_IA64_DTPREL64MSB: howto manager. (line 1979)
-* BFD_RELOC_IA64_FPTR32LSB: howto manager. (line 1924)
-* BFD_RELOC_IA64_FPTR32MSB: howto manager. (line 1923)
-* BFD_RELOC_IA64_FPTR64I: howto manager. (line 1922)
-* BFD_RELOC_IA64_FPTR64LSB: howto manager. (line 1926)
-* BFD_RELOC_IA64_FPTR64MSB: howto manager. (line 1925)
-* BFD_RELOC_IA64_GPREL22: howto manager. (line 1910)
-* BFD_RELOC_IA64_GPREL32LSB: howto manager. (line 1913)
-* BFD_RELOC_IA64_GPREL32MSB: howto manager. (line 1912)
-* BFD_RELOC_IA64_GPREL64I: howto manager. (line 1911)
-* BFD_RELOC_IA64_GPREL64LSB: howto manager. (line 1915)
-* BFD_RELOC_IA64_GPREL64MSB: howto manager. (line 1914)
-* BFD_RELOC_IA64_IMM14: howto manager. (line 1903)
-* BFD_RELOC_IA64_IMM22: howto manager. (line 1904)
-* BFD_RELOC_IA64_IMM64: howto manager. (line 1905)
-* BFD_RELOC_IA64_IPLTLSB: howto manager. (line 1961)
-* BFD_RELOC_IA64_IPLTMSB: howto manager. (line 1960)
-* BFD_RELOC_IA64_LDXMOV: howto manager. (line 1964)
-* BFD_RELOC_IA64_LTOFF22: howto manager. (line 1916)
-* BFD_RELOC_IA64_LTOFF22X: howto manager. (line 1963)
-* BFD_RELOC_IA64_LTOFF64I: howto manager. (line 1917)
-* BFD_RELOC_IA64_LTOFF_DTPMOD22: howto manager. (line 1973)
-* BFD_RELOC_IA64_LTOFF_DTPREL22: howto manager. (line 1981)
-* BFD_RELOC_IA64_LTOFF_FPTR22: howto manager. (line 1938)
-* BFD_RELOC_IA64_LTOFF_FPTR32LSB: howto manager. (line 1941)
-* BFD_RELOC_IA64_LTOFF_FPTR32MSB: howto manager. (line 1940)
-* BFD_RELOC_IA64_LTOFF_FPTR64I: howto manager. (line 1939)
-* BFD_RELOC_IA64_LTOFF_FPTR64LSB: howto manager. (line 1943)
-* BFD_RELOC_IA64_LTOFF_FPTR64MSB: howto manager. (line 1942)
-* BFD_RELOC_IA64_LTOFF_TPREL22: howto manager. (line 1970)
-* BFD_RELOC_IA64_LTV32LSB: howto manager. (line 1957)
-* BFD_RELOC_IA64_LTV32MSB: howto manager. (line 1956)
-* BFD_RELOC_IA64_LTV64LSB: howto manager. (line 1959)
-* BFD_RELOC_IA64_LTV64MSB: howto manager. (line 1958)
-* BFD_RELOC_IA64_PCREL21B: howto manager. (line 1927)
-* BFD_RELOC_IA64_PCREL21BI: howto manager. (line 1928)
-* BFD_RELOC_IA64_PCREL21F: howto manager. (line 1930)
-* BFD_RELOC_IA64_PCREL21M: howto manager. (line 1929)
-* BFD_RELOC_IA64_PCREL22: howto manager. (line 1931)
-* BFD_RELOC_IA64_PCREL32LSB: howto manager. (line 1935)
-* BFD_RELOC_IA64_PCREL32MSB: howto manager. (line 1934)
-* BFD_RELOC_IA64_PCREL60B: howto manager. (line 1932)
-* BFD_RELOC_IA64_PCREL64I: howto manager. (line 1933)
-* BFD_RELOC_IA64_PCREL64LSB: howto manager. (line 1937)
-* BFD_RELOC_IA64_PCREL64MSB: howto manager. (line 1936)
-* BFD_RELOC_IA64_PLTOFF22: howto manager. (line 1918)
-* BFD_RELOC_IA64_PLTOFF64I: howto manager. (line 1919)
-* BFD_RELOC_IA64_PLTOFF64LSB: howto manager. (line 1921)
-* BFD_RELOC_IA64_PLTOFF64MSB: howto manager. (line 1920)
-* BFD_RELOC_IA64_REL32LSB: howto manager. (line 1953)
-* BFD_RELOC_IA64_REL32MSB: howto manager. (line 1952)
-* BFD_RELOC_IA64_REL64LSB: howto manager. (line 1955)
-* BFD_RELOC_IA64_REL64MSB: howto manager. (line 1954)
-* BFD_RELOC_IA64_SECREL32LSB: howto manager. (line 1949)
-* BFD_RELOC_IA64_SECREL32MSB: howto manager. (line 1948)
-* BFD_RELOC_IA64_SECREL64LSB: howto manager. (line 1951)
-* BFD_RELOC_IA64_SECREL64MSB: howto manager. (line 1950)
-* BFD_RELOC_IA64_SEGREL32LSB: howto manager. (line 1945)
-* BFD_RELOC_IA64_SEGREL32MSB: howto manager. (line 1944)
-* BFD_RELOC_IA64_SEGREL64LSB: howto manager. (line 1947)
-* BFD_RELOC_IA64_SEGREL64MSB: howto manager. (line 1946)
-* BFD_RELOC_IA64_TPREL14: howto manager. (line 1965)
-* BFD_RELOC_IA64_TPREL22: howto manager. (line 1966)
-* BFD_RELOC_IA64_TPREL64I: howto manager. (line 1967)
-* BFD_RELOC_IA64_TPREL64LSB: howto manager. (line 1969)
-* BFD_RELOC_IA64_TPREL64MSB: howto manager. (line 1968)
-* BFD_RELOC_IP2K_ADDR16CJP: howto manager. (line 1855)
-* BFD_RELOC_IP2K_BANK: howto manager. (line 1852)
-* BFD_RELOC_IP2K_EX8DATA: howto manager. (line 1863)
-* BFD_RELOC_IP2K_FR9: howto manager. (line 1849)
-* BFD_RELOC_IP2K_FR_OFFSET: howto manager. (line 1876)
-* BFD_RELOC_IP2K_HI8DATA: howto manager. (line 1862)
-* BFD_RELOC_IP2K_HI8INSN: howto manager. (line 1867)
-* BFD_RELOC_IP2K_LO8DATA: howto manager. (line 1861)
-* BFD_RELOC_IP2K_LO8INSN: howto manager. (line 1866)
-* BFD_RELOC_IP2K_PAGE3: howto manager. (line 1858)
-* BFD_RELOC_IP2K_PC_SKIP: howto manager. (line 1870)
-* BFD_RELOC_IP2K_TEXT: howto manager. (line 1873)
-* BFD_RELOC_IQ2000_OFFSET_16: howto manager. (line 2272)
-* BFD_RELOC_IQ2000_OFFSET_21: howto manager. (line 2273)
-* BFD_RELOC_IQ2000_UHI16: howto manager. (line 2274)
-* BFD_RELOC_LM32_16_GOT: howto manager. (line 2379)
-* BFD_RELOC_LM32_BRANCH: howto manager. (line 2378)
-* BFD_RELOC_LM32_CALL: howto manager. (line 2377)
-* BFD_RELOC_LM32_COPY: howto manager. (line 2382)
-* BFD_RELOC_LM32_GLOB_DAT: howto manager. (line 2383)
-* BFD_RELOC_LM32_GOTOFF_HI16: howto manager. (line 2380)
-* BFD_RELOC_LM32_GOTOFF_LO16: howto manager. (line 2381)
-* BFD_RELOC_LM32_JMP_SLOT: howto manager. (line 2384)
-* BFD_RELOC_LM32_RELATIVE: howto manager. (line 2385)
+* BFD_RELOC_IA64_COPY: howto manager. (line 2018)
+* BFD_RELOC_IA64_DIR32LSB: howto manager. (line 1963)
+* BFD_RELOC_IA64_DIR32MSB: howto manager. (line 1962)
+* BFD_RELOC_IA64_DIR64LSB: howto manager. (line 1965)
+* BFD_RELOC_IA64_DIR64MSB: howto manager. (line 1964)
+* BFD_RELOC_IA64_DTPMOD64LSB: howto manager. (line 2028)
+* BFD_RELOC_IA64_DTPMOD64MSB: howto manager. (line 2027)
+* BFD_RELOC_IA64_DTPREL14: howto manager. (line 2030)
+* BFD_RELOC_IA64_DTPREL22: howto manager. (line 2031)
+* BFD_RELOC_IA64_DTPREL32LSB: howto manager. (line 2034)
+* BFD_RELOC_IA64_DTPREL32MSB: howto manager. (line 2033)
+* BFD_RELOC_IA64_DTPREL64I: howto manager. (line 2032)
+* BFD_RELOC_IA64_DTPREL64LSB: howto manager. (line 2036)
+* BFD_RELOC_IA64_DTPREL64MSB: howto manager. (line 2035)
+* BFD_RELOC_IA64_FPTR32LSB: howto manager. (line 1980)
+* BFD_RELOC_IA64_FPTR32MSB: howto manager. (line 1979)
+* BFD_RELOC_IA64_FPTR64I: howto manager. (line 1978)
+* BFD_RELOC_IA64_FPTR64LSB: howto manager. (line 1982)
+* BFD_RELOC_IA64_FPTR64MSB: howto manager. (line 1981)
+* BFD_RELOC_IA64_GPREL22: howto manager. (line 1966)
+* BFD_RELOC_IA64_GPREL32LSB: howto manager. (line 1969)
+* BFD_RELOC_IA64_GPREL32MSB: howto manager. (line 1968)
+* BFD_RELOC_IA64_GPREL64I: howto manager. (line 1967)
+* BFD_RELOC_IA64_GPREL64LSB: howto manager. (line 1971)
+* BFD_RELOC_IA64_GPREL64MSB: howto manager. (line 1970)
+* BFD_RELOC_IA64_IMM14: howto manager. (line 1959)
+* BFD_RELOC_IA64_IMM22: howto manager. (line 1960)
+* BFD_RELOC_IA64_IMM64: howto manager. (line 1961)
+* BFD_RELOC_IA64_IPLTLSB: howto manager. (line 2017)
+* BFD_RELOC_IA64_IPLTMSB: howto manager. (line 2016)
+* BFD_RELOC_IA64_LDXMOV: howto manager. (line 2020)
+* BFD_RELOC_IA64_LTOFF22: howto manager. (line 1972)
+* BFD_RELOC_IA64_LTOFF22X: howto manager. (line 2019)
+* BFD_RELOC_IA64_LTOFF64I: howto manager. (line 1973)
+* BFD_RELOC_IA64_LTOFF_DTPMOD22: howto manager. (line 2029)
+* BFD_RELOC_IA64_LTOFF_DTPREL22: howto manager. (line 2037)
+* BFD_RELOC_IA64_LTOFF_FPTR22: howto manager. (line 1994)
+* BFD_RELOC_IA64_LTOFF_FPTR32LSB: howto manager. (line 1997)
+* BFD_RELOC_IA64_LTOFF_FPTR32MSB: howto manager. (line 1996)
+* BFD_RELOC_IA64_LTOFF_FPTR64I: howto manager. (line 1995)
+* BFD_RELOC_IA64_LTOFF_FPTR64LSB: howto manager. (line 1999)
+* BFD_RELOC_IA64_LTOFF_FPTR64MSB: howto manager. (line 1998)
+* BFD_RELOC_IA64_LTOFF_TPREL22: howto manager. (line 2026)
+* BFD_RELOC_IA64_LTV32LSB: howto manager. (line 2013)
+* BFD_RELOC_IA64_LTV32MSB: howto manager. (line 2012)
+* BFD_RELOC_IA64_LTV64LSB: howto manager. (line 2015)
+* BFD_RELOC_IA64_LTV64MSB: howto manager. (line 2014)
+* BFD_RELOC_IA64_PCREL21B: howto manager. (line 1983)
+* BFD_RELOC_IA64_PCREL21BI: howto manager. (line 1984)
+* BFD_RELOC_IA64_PCREL21F: howto manager. (line 1986)
+* BFD_RELOC_IA64_PCREL21M: howto manager. (line 1985)
+* BFD_RELOC_IA64_PCREL22: howto manager. (line 1987)
+* BFD_RELOC_IA64_PCREL32LSB: howto manager. (line 1991)
+* BFD_RELOC_IA64_PCREL32MSB: howto manager. (line 1990)
+* BFD_RELOC_IA64_PCREL60B: howto manager. (line 1988)
+* BFD_RELOC_IA64_PCREL64I: howto manager. (line 1989)
+* BFD_RELOC_IA64_PCREL64LSB: howto manager. (line 1993)
+* BFD_RELOC_IA64_PCREL64MSB: howto manager. (line 1992)
+* BFD_RELOC_IA64_PLTOFF22: howto manager. (line 1974)
+* BFD_RELOC_IA64_PLTOFF64I: howto manager. (line 1975)
+* BFD_RELOC_IA64_PLTOFF64LSB: howto manager. (line 1977)
+* BFD_RELOC_IA64_PLTOFF64MSB: howto manager. (line 1976)
+* BFD_RELOC_IA64_REL32LSB: howto manager. (line 2009)
+* BFD_RELOC_IA64_REL32MSB: howto manager. (line 2008)
+* BFD_RELOC_IA64_REL64LSB: howto manager. (line 2011)
+* BFD_RELOC_IA64_REL64MSB: howto manager. (line 2010)
+* BFD_RELOC_IA64_SECREL32LSB: howto manager. (line 2005)
+* BFD_RELOC_IA64_SECREL32MSB: howto manager. (line 2004)
+* BFD_RELOC_IA64_SECREL64LSB: howto manager. (line 2007)
+* BFD_RELOC_IA64_SECREL64MSB: howto manager. (line 2006)
+* BFD_RELOC_IA64_SEGREL32LSB: howto manager. (line 2001)
+* BFD_RELOC_IA64_SEGREL32MSB: howto manager. (line 2000)
+* BFD_RELOC_IA64_SEGREL64LSB: howto manager. (line 2003)
+* BFD_RELOC_IA64_SEGREL64MSB: howto manager. (line 2002)
+* BFD_RELOC_IA64_TPREL14: howto manager. (line 2021)
+* BFD_RELOC_IA64_TPREL22: howto manager. (line 2022)
+* BFD_RELOC_IA64_TPREL64I: howto manager. (line 2023)
+* BFD_RELOC_IA64_TPREL64LSB: howto manager. (line 2025)
+* BFD_RELOC_IA64_TPREL64MSB: howto manager. (line 2024)
+* BFD_RELOC_IP2K_ADDR16CJP: howto manager. (line 1911)
+* BFD_RELOC_IP2K_BANK: howto manager. (line 1908)
+* BFD_RELOC_IP2K_EX8DATA: howto manager. (line 1919)
+* BFD_RELOC_IP2K_FR9: howto manager. (line 1905)
+* BFD_RELOC_IP2K_FR_OFFSET: howto manager. (line 1932)
+* BFD_RELOC_IP2K_HI8DATA: howto manager. (line 1918)
+* BFD_RELOC_IP2K_HI8INSN: howto manager. (line 1923)
+* BFD_RELOC_IP2K_LO8DATA: howto manager. (line 1917)
+* BFD_RELOC_IP2K_LO8INSN: howto manager. (line 1922)
+* BFD_RELOC_IP2K_PAGE3: howto manager. (line 1914)
+* BFD_RELOC_IP2K_PC_SKIP: howto manager. (line 1926)
+* BFD_RELOC_IP2K_TEXT: howto manager. (line 1929)
+* BFD_RELOC_IQ2000_OFFSET_16: howto manager. (line 2390)
+* BFD_RELOC_IQ2000_OFFSET_21: howto manager. (line 2391)
+* BFD_RELOC_IQ2000_UHI16: howto manager. (line 2392)
+* BFD_RELOC_LM32_16_GOT: howto manager. (line 2497)
+* BFD_RELOC_LM32_BRANCH: howto manager. (line 2496)
+* BFD_RELOC_LM32_CALL: howto manager. (line 2495)
+* BFD_RELOC_LM32_COPY: howto manager. (line 2500)
+* BFD_RELOC_LM32_GLOB_DAT: howto manager. (line 2501)
+* BFD_RELOC_LM32_GOTOFF_HI16: howto manager. (line 2498)
+* BFD_RELOC_LM32_GOTOFF_LO16: howto manager. (line 2499)
+* BFD_RELOC_LM32_JMP_SLOT: howto manager. (line 2502)
+* BFD_RELOC_LM32_RELATIVE: howto manager. (line 2503)
* BFD_RELOC_LO10: howto manager. (line 117)
-* BFD_RELOC_LO16: howto manager. (line 353)
+* BFD_RELOC_LO16: howto manager. (line 357)
* BFD_RELOC_LO16_BASEREL: howto manager. (line 96)
* BFD_RELOC_LO16_GOTOFF: howto manager. (line 56)
-* BFD_RELOC_LO16_PCREL: howto manager. (line 362)
+* BFD_RELOC_LO16_PCREL: howto manager. (line 366)
* BFD_RELOC_LO16_PLTOFF: howto manager. (line 68)
-* BFD_RELOC_M32C_HI8: howto manager. (line 1180)
-* BFD_RELOC_M32C_RL_1ADDR: howto manager. (line 1182)
-* BFD_RELOC_M32C_RL_2ADDR: howto manager. (line 1183)
-* BFD_RELOC_M32C_RL_JUMP: howto manager. (line 1181)
-* BFD_RELOC_M32R_10_PCREL: howto manager. (line 1190)
-* BFD_RELOC_M32R_18_PCREL: howto manager. (line 1194)
-* BFD_RELOC_M32R_24: howto manager. (line 1186)
-* BFD_RELOC_M32R_26_PCREL: howto manager. (line 1197)
-* BFD_RELOC_M32R_26_PLTREL: howto manager. (line 1216)
-* BFD_RELOC_M32R_COPY: howto manager. (line 1217)
-* BFD_RELOC_M32R_GLOB_DAT: howto manager. (line 1218)
-* BFD_RELOC_M32R_GOT16_HI_SLO: howto manager. (line 1227)
-* BFD_RELOC_M32R_GOT16_HI_ULO: howto manager. (line 1226)
-* BFD_RELOC_M32R_GOT16_LO: howto manager. (line 1228)
-* BFD_RELOC_M32R_GOT24: howto manager. (line 1215)
-* BFD_RELOC_M32R_GOTOFF: howto manager. (line 1221)
-* BFD_RELOC_M32R_GOTOFF_HI_SLO: howto manager. (line 1223)
-* BFD_RELOC_M32R_GOTOFF_HI_ULO: howto manager. (line 1222)
-* BFD_RELOC_M32R_GOTOFF_LO: howto manager. (line 1224)
-* BFD_RELOC_M32R_GOTPC24: howto manager. (line 1225)
-* BFD_RELOC_M32R_GOTPC_HI_SLO: howto manager. (line 1230)
-* BFD_RELOC_M32R_GOTPC_HI_ULO: howto manager. (line 1229)
-* BFD_RELOC_M32R_GOTPC_LO: howto manager. (line 1231)
-* BFD_RELOC_M32R_HI16_SLO: howto manager. (line 1204)
-* BFD_RELOC_M32R_HI16_ULO: howto manager. (line 1200)
-* BFD_RELOC_M32R_JMP_SLOT: howto manager. (line 1219)
-* BFD_RELOC_M32R_LO16: howto manager. (line 1208)
-* BFD_RELOC_M32R_RELATIVE: howto manager. (line 1220)
-* BFD_RELOC_M32R_SDA16: howto manager. (line 1211)
-* BFD_RELOC_M68HC11_24: howto manager. (line 2017)
-* BFD_RELOC_M68HC11_3B: howto manager. (line 1992)
-* BFD_RELOC_M68HC11_HI8: howto manager. (line 1984)
-* BFD_RELOC_M68HC11_LO16: howto manager. (line 2006)
-* BFD_RELOC_M68HC11_LO8: howto manager. (line 1988)
-* BFD_RELOC_M68HC11_PAGE: howto manager. (line 2012)
-* BFD_RELOC_M68HC11_RL_GROUP: howto manager. (line 2001)
-* BFD_RELOC_M68HC11_RL_JUMP: howto manager. (line 1995)
-* BFD_RELOC_M68HC12_5B: howto manager. (line 2023)
-* BFD_RELOC_MACH_O_PAIR: howto manager. (line 2392)
-* BFD_RELOC_MACH_O_SECTDIFF: howto manager. (line 2388)
-* BFD_RELOC_MACH_O_X86_64_BRANCH32: howto manager. (line 2395)
-* BFD_RELOC_MACH_O_X86_64_BRANCH8: howto manager. (line 2396)
-* BFD_RELOC_MACH_O_X86_64_GOT: howto manager. (line 2400)
-* BFD_RELOC_MACH_O_X86_64_GOT_LOAD: howto manager. (line 2403)
-* BFD_RELOC_MACH_O_X86_64_PCREL32_1: howto manager. (line 2413)
-* BFD_RELOC_MACH_O_X86_64_PCREL32_2: howto manager. (line 2416)
-* BFD_RELOC_MACH_O_X86_64_PCREL32_4: howto manager. (line 2419)
-* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32: howto manager. (line 2407)
-* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64: howto manager. (line 2410)
-* BFD_RELOC_MCORE_PCREL_32: howto manager. (line 1469)
-* BFD_RELOC_MCORE_PCREL_IMM11BY2: howto manager. (line 1467)
-* BFD_RELOC_MCORE_PCREL_IMM4BY2: howto manager. (line 1468)
-* BFD_RELOC_MCORE_PCREL_IMM8BY4: howto manager. (line 1466)
-* BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: howto manager. (line 1470)
-* BFD_RELOC_MCORE_RVA: howto manager. (line 1471)
-* BFD_RELOC_MEP_16: howto manager. (line 1475)
-* BFD_RELOC_MEP_32: howto manager. (line 1476)
-* BFD_RELOC_MEP_8: howto manager. (line 1474)
-* BFD_RELOC_MEP_ADDR24A4: howto manager. (line 1491)
-* BFD_RELOC_MEP_GNU_VTENTRY: howto manager. (line 1493)
-* BFD_RELOC_MEP_GNU_VTINHERIT: howto manager. (line 1492)
-* BFD_RELOC_MEP_GPREL: howto manager. (line 1485)
-* BFD_RELOC_MEP_HI16S: howto manager. (line 1484)
-* BFD_RELOC_MEP_HI16U: howto manager. (line 1483)
-* BFD_RELOC_MEP_LOW16: howto manager. (line 1482)
-* BFD_RELOC_MEP_PCABS24A2: howto manager. (line 1481)
-* BFD_RELOC_MEP_PCREL12A2: howto manager. (line 1478)
-* BFD_RELOC_MEP_PCREL17A2: howto manager. (line 1479)
-* BFD_RELOC_MEP_PCREL24A2: howto manager. (line 1480)
-* BFD_RELOC_MEP_PCREL8A2: howto manager. (line 1477)
-* BFD_RELOC_MEP_TPREL: howto manager. (line 1486)
-* BFD_RELOC_MEP_TPREL7: howto manager. (line 1487)
-* BFD_RELOC_MEP_TPREL7A2: howto manager. (line 1488)
-* BFD_RELOC_MEP_TPREL7A4: howto manager. (line 1489)
-* BFD_RELOC_MEP_UIMM24: howto manager. (line 1490)
-* BFD_RELOC_MICROBLAZE_32_GOTOFF: howto manager. (line 2466)
-* BFD_RELOC_MICROBLAZE_32_LO: howto manager. (line 2422)
-* BFD_RELOC_MICROBLAZE_32_LO_PCREL: howto manager. (line 2426)
-* BFD_RELOC_MICROBLAZE_32_ROSDA: howto manager. (line 2430)
-* BFD_RELOC_MICROBLAZE_32_RWSDA: howto manager. (line 2434)
-* BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: howto manager. (line 2438)
-* BFD_RELOC_MICROBLAZE_64_GOT: howto manager. (line 2452)
-* BFD_RELOC_MICROBLAZE_64_GOTOFF: howto manager. (line 2461)
-* BFD_RELOC_MICROBLAZE_64_GOTPC: howto manager. (line 2447)
-* BFD_RELOC_MICROBLAZE_64_NONE: howto manager. (line 2442)
-* BFD_RELOC_MICROBLAZE_64_PLT: howto manager. (line 2456)
-* BFD_RELOC_MICROBLAZE_COPY: howto manager. (line 2470)
-* BFD_RELOC_MICROMIPS_10_PCREL_S1: howto manager. (line 387)
-* BFD_RELOC_MICROMIPS_16_PCREL_S1: howto manager. (line 388)
-* BFD_RELOC_MICROMIPS_7_PCREL_S1: howto manager. (line 386)
-* BFD_RELOC_MICROMIPS_CALL16: howto manager. (line 400)
-* BFD_RELOC_MICROMIPS_CALL_HI16: howto manager. (line 406)
-* BFD_RELOC_MICROMIPS_CALL_LO16: howto manager. (line 408)
-* BFD_RELOC_MICROMIPS_GOT16: howto manager. (line 398)
-* BFD_RELOC_MICROMIPS_GOT_DISP: howto manager. (line 416)
-* BFD_RELOC_MICROMIPS_GOT_HI16: howto manager. (line 402)
-* BFD_RELOC_MICROMIPS_GOT_LO16: howto manager. (line 404)
-* BFD_RELOC_MICROMIPS_GOT_OFST: howto manager. (line 414)
-* BFD_RELOC_MICROMIPS_GOT_PAGE: howto manager. (line 412)
-* BFD_RELOC_MICROMIPS_GPREL16: howto manager. (line 391)
-* BFD_RELOC_MICROMIPS_HI16: howto manager. (line 392)
-* BFD_RELOC_MICROMIPS_HI16_S: howto manager. (line 393)
-* BFD_RELOC_MICROMIPS_HIGHER: howto manager. (line 425)
-* BFD_RELOC_MICROMIPS_HIGHEST: howto manager. (line 423)
-* BFD_RELOC_MICROMIPS_JALR: howto manager. (line 431)
-* BFD_RELOC_MICROMIPS_JMP: howto manager. (line 335)
-* BFD_RELOC_MICROMIPS_LITERAL: howto manager. (line 383)
-* BFD_RELOC_MICROMIPS_LO16: howto manager. (line 394)
-* BFD_RELOC_MICROMIPS_SCN_DISP: howto manager. (line 427)
-* BFD_RELOC_MICROMIPS_SUB: howto manager. (line 410)
-* BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16: howto manager. (line 441)
-* BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16: howto manager. (line 443)
-* BFD_RELOC_MICROMIPS_TLS_GD: howto manager. (line 437)
-* BFD_RELOC_MICROMIPS_TLS_GOTTPREL: howto manager. (line 445)
-* BFD_RELOC_MICROMIPS_TLS_LDM: howto manager. (line 439)
-* BFD_RELOC_MICROMIPS_TLS_TPREL_HI16: howto manager. (line 449)
-* BFD_RELOC_MICROMIPS_TLS_TPREL_LO16: howto manager. (line 451)
-* BFD_RELOC_MIPS16_CALL16: howto manager. (line 366)
-* BFD_RELOC_MIPS16_GOT16: howto manager. (line 365)
-* BFD_RELOC_MIPS16_GPREL: howto manager. (line 341)
-* BFD_RELOC_MIPS16_HI16: howto manager. (line 370)
-* BFD_RELOC_MIPS16_HI16_S: howto manager. (line 373)
-* BFD_RELOC_MIPS16_JMP: howto manager. (line 338)
-* BFD_RELOC_MIPS16_LO16: howto manager. (line 379)
-* BFD_RELOC_MIPS_CALL16: howto manager. (line 399)
-* BFD_RELOC_MIPS_CALL_HI16: howto manager. (line 405)
-* BFD_RELOC_MIPS_CALL_LO16: howto manager. (line 407)
-* BFD_RELOC_MIPS_COPY: howto manager. (line 454)
-* BFD_RELOC_MIPS_DELETE: howto manager. (line 421)
-* BFD_RELOC_MIPS_GOT16: howto manager. (line 397)
-* BFD_RELOC_MIPS_GOT_DISP: howto manager. (line 415)
-* BFD_RELOC_MIPS_GOT_HI16: howto manager. (line 401)
-* BFD_RELOC_MIPS_GOT_LO16: howto manager. (line 403)
-* BFD_RELOC_MIPS_GOT_OFST: howto manager. (line 413)
-* BFD_RELOC_MIPS_GOT_PAGE: howto manager. (line 411)
-* BFD_RELOC_MIPS_HIGHER: howto manager. (line 424)
-* BFD_RELOC_MIPS_HIGHEST: howto manager. (line 422)
-* BFD_RELOC_MIPS_INSERT_A: howto manager. (line 419)
-* BFD_RELOC_MIPS_INSERT_B: howto manager. (line 420)
-* BFD_RELOC_MIPS_JALR: howto manager. (line 430)
-* BFD_RELOC_MIPS_JMP: howto manager. (line 334)
-* BFD_RELOC_MIPS_JUMP_SLOT: howto manager. (line 455)
-* BFD_RELOC_MIPS_LITERAL: howto manager. (line 382)
-* BFD_RELOC_MIPS_REL16: howto manager. (line 428)
-* BFD_RELOC_MIPS_RELGOT: howto manager. (line 429)
-* BFD_RELOC_MIPS_SCN_DISP: howto manager. (line 426)
-* BFD_RELOC_MIPS_SHIFT5: howto manager. (line 417)
-* BFD_RELOC_MIPS_SHIFT6: howto manager. (line 418)
-* BFD_RELOC_MIPS_SUB: howto manager. (line 409)
-* BFD_RELOC_MIPS_TLS_DTPMOD32: howto manager. (line 432)
-* BFD_RELOC_MIPS_TLS_DTPMOD64: howto manager. (line 434)
-* BFD_RELOC_MIPS_TLS_DTPREL32: howto manager. (line 433)
-* BFD_RELOC_MIPS_TLS_DTPREL64: howto manager. (line 435)
-* BFD_RELOC_MIPS_TLS_DTPREL_HI16: howto manager. (line 440)
-* BFD_RELOC_MIPS_TLS_DTPREL_LO16: howto manager. (line 442)
-* BFD_RELOC_MIPS_TLS_GD: howto manager. (line 436)
-* BFD_RELOC_MIPS_TLS_GOTTPREL: howto manager. (line 444)
-* BFD_RELOC_MIPS_TLS_LDM: howto manager. (line 438)
-* BFD_RELOC_MIPS_TLS_TPREL32: howto manager. (line 446)
-* BFD_RELOC_MIPS_TLS_TPREL64: howto manager. (line 447)
-* BFD_RELOC_MIPS_TLS_TPREL_HI16: howto manager. (line 448)
-* BFD_RELOC_MIPS_TLS_TPREL_LO16: howto manager. (line 450)
-* BFD_RELOC_MMIX_ADDR19: howto manager. (line 1522)
-* BFD_RELOC_MMIX_ADDR27: howto manager. (line 1526)
-* BFD_RELOC_MMIX_BASE_PLUS_OFFSET: howto manager. (line 1538)
-* BFD_RELOC_MMIX_CBRANCH: howto manager. (line 1502)
-* BFD_RELOC_MMIX_CBRANCH_1: howto manager. (line 1504)
-* BFD_RELOC_MMIX_CBRANCH_2: howto manager. (line 1505)
-* BFD_RELOC_MMIX_CBRANCH_3: howto manager. (line 1506)
-* BFD_RELOC_MMIX_CBRANCH_J: howto manager. (line 1503)
-* BFD_RELOC_MMIX_GETA: howto manager. (line 1496)
-* BFD_RELOC_MMIX_GETA_1: howto manager. (line 1497)
-* BFD_RELOC_MMIX_GETA_2: howto manager. (line 1498)
-* BFD_RELOC_MMIX_GETA_3: howto manager. (line 1499)
-* BFD_RELOC_MMIX_JMP: howto manager. (line 1516)
-* BFD_RELOC_MMIX_JMP_1: howto manager. (line 1517)
-* BFD_RELOC_MMIX_JMP_2: howto manager. (line 1518)
-* BFD_RELOC_MMIX_JMP_3: howto manager. (line 1519)
-* BFD_RELOC_MMIX_LOCAL: howto manager. (line 1542)
-* BFD_RELOC_MMIX_PUSHJ: howto manager. (line 1509)
-* BFD_RELOC_MMIX_PUSHJ_1: howto manager. (line 1510)
-* BFD_RELOC_MMIX_PUSHJ_2: howto manager. (line 1511)
-* BFD_RELOC_MMIX_PUSHJ_3: howto manager. (line 1512)
-* BFD_RELOC_MMIX_PUSHJ_STUBBABLE: howto manager. (line 1513)
-* BFD_RELOC_MMIX_REG: howto manager. (line 1534)
-* BFD_RELOC_MMIX_REG_OR_BYTE: howto manager. (line 1530)
-* BFD_RELOC_MN10300_16_PCREL: howto manager. (line 1372)
-* BFD_RELOC_MN10300_32_PCREL: howto manager. (line 1368)
-* BFD_RELOC_MN10300_ALIGN: howto manager. (line 534)
-* BFD_RELOC_MN10300_COPY: howto manager. (line 517)
-* BFD_RELOC_MN10300_GLOB_DAT: howto manager. (line 520)
-* BFD_RELOC_MN10300_GOT16: howto manager. (line 513)
-* BFD_RELOC_MN10300_GOT24: howto manager. (line 509)
-* BFD_RELOC_MN10300_GOT32: howto manager. (line 505)
-* BFD_RELOC_MN10300_GOTOFF24: howto manager. (line 502)
-* BFD_RELOC_MN10300_JMP_SLOT: howto manager. (line 523)
-* BFD_RELOC_MN10300_RELATIVE: howto manager. (line 526)
-* BFD_RELOC_MN10300_SYM_DIFF: howto manager. (line 529)
-* BFD_RELOC_MOXIE_10_PCREL: howto manager. (line 458)
-* BFD_RELOC_MSP430_10_PCREL: howto manager. (line 2263)
-* BFD_RELOC_MSP430_16: howto manager. (line 2265)
-* BFD_RELOC_MSP430_16_BYTE: howto manager. (line 2267)
-* BFD_RELOC_MSP430_16_PCREL: howto manager. (line 2264)
-* BFD_RELOC_MSP430_16_PCREL_BYTE: howto manager. (line 2266)
-* BFD_RELOC_MSP430_2X_PCREL: howto manager. (line 2268)
-* BFD_RELOC_MSP430_RL_PCREL: howto manager. (line 2269)
-* BFD_RELOC_MT_GNU_VTENTRY: howto manager. (line 2257)
-* BFD_RELOC_MT_GNU_VTINHERIT: howto manager. (line 2254)
-* BFD_RELOC_MT_HI16: howto manager. (line 2248)
-* BFD_RELOC_MT_LO16: howto manager. (line 2251)
-* BFD_RELOC_MT_PC16: howto manager. (line 2245)
-* BFD_RELOC_MT_PCINSN8: howto manager. (line 2260)
+* BFD_RELOC_M32C_HI8: howto manager. (line 1229)
+* BFD_RELOC_M32C_RL_1ADDR: howto manager. (line 1231)
+* BFD_RELOC_M32C_RL_2ADDR: howto manager. (line 1232)
+* BFD_RELOC_M32C_RL_JUMP: howto manager. (line 1230)
+* BFD_RELOC_M32R_10_PCREL: howto manager. (line 1239)
+* BFD_RELOC_M32R_18_PCREL: howto manager. (line 1243)
+* BFD_RELOC_M32R_24: howto manager. (line 1235)
+* BFD_RELOC_M32R_26_PCREL: howto manager. (line 1246)
+* BFD_RELOC_M32R_26_PLTREL: howto manager. (line 1265)
+* BFD_RELOC_M32R_COPY: howto manager. (line 1266)
+* BFD_RELOC_M32R_GLOB_DAT: howto manager. (line 1267)
+* BFD_RELOC_M32R_GOT16_HI_SLO: howto manager. (line 1276)
+* BFD_RELOC_M32R_GOT16_HI_ULO: howto manager. (line 1275)
+* BFD_RELOC_M32R_GOT16_LO: howto manager. (line 1277)
+* BFD_RELOC_M32R_GOT24: howto manager. (line 1264)
+* BFD_RELOC_M32R_GOTOFF: howto manager. (line 1270)
+* BFD_RELOC_M32R_GOTOFF_HI_SLO: howto manager. (line 1272)
+* BFD_RELOC_M32R_GOTOFF_HI_ULO: howto manager. (line 1271)
+* BFD_RELOC_M32R_GOTOFF_LO: howto manager. (line 1273)
+* BFD_RELOC_M32R_GOTPC24: howto manager. (line 1274)
+* BFD_RELOC_M32R_GOTPC_HI_SLO: howto manager. (line 1279)
+* BFD_RELOC_M32R_GOTPC_HI_ULO: howto manager. (line 1278)
+* BFD_RELOC_M32R_GOTPC_LO: howto manager. (line 1280)
+* BFD_RELOC_M32R_HI16_SLO: howto manager. (line 1253)
+* BFD_RELOC_M32R_HI16_ULO: howto manager. (line 1249)
+* BFD_RELOC_M32R_JMP_SLOT: howto manager. (line 1268)
+* BFD_RELOC_M32R_LO16: howto manager. (line 1257)
+* BFD_RELOC_M32R_RELATIVE: howto manager. (line 1269)
+* BFD_RELOC_M32R_SDA16: howto manager. (line 1260)
+* BFD_RELOC_M68HC11_24: howto manager. (line 2073)
+* BFD_RELOC_M68HC11_3B: howto manager. (line 2048)
+* BFD_RELOC_M68HC11_HI8: howto manager. (line 2040)
+* BFD_RELOC_M68HC11_LO16: howto manager. (line 2062)
+* BFD_RELOC_M68HC11_LO8: howto manager. (line 2044)
+* BFD_RELOC_M68HC11_PAGE: howto manager. (line 2068)
+* BFD_RELOC_M68HC11_RL_GROUP: howto manager. (line 2057)
+* BFD_RELOC_M68HC11_RL_JUMP: howto manager. (line 2051)
+* BFD_RELOC_M68HC12_10_PCREL: howto manager. (line 2133)
+* BFD_RELOC_M68HC12_16B: howto manager. (line 2127)
+* BFD_RELOC_M68HC12_5B: howto manager. (line 2079)
+* BFD_RELOC_M68HC12_9_PCREL: howto manager. (line 2130)
+* BFD_RELOC_M68HC12_9B: howto manager. (line 2124)
+* BFD_RELOC_M68HC12_HI8XG: howto manager. (line 2140)
+* BFD_RELOC_M68HC12_LO8XG: howto manager. (line 2136)
+* BFD_RELOC_MACH_O_LOCAL_SECTDIFF: howto manager. (line 2510)
+* BFD_RELOC_MACH_O_PAIR: howto manager. (line 2513)
+* BFD_RELOC_MACH_O_SECTDIFF: howto manager. (line 2506)
+* BFD_RELOC_MACH_O_X86_64_BRANCH32: howto manager. (line 2516)
+* BFD_RELOC_MACH_O_X86_64_BRANCH8: howto manager. (line 2517)
+* BFD_RELOC_MACH_O_X86_64_GOT: howto manager. (line 2521)
+* BFD_RELOC_MACH_O_X86_64_GOT_LOAD: howto manager. (line 2524)
+* BFD_RELOC_MACH_O_X86_64_PCREL32_1: howto manager. (line 2534)
+* BFD_RELOC_MACH_O_X86_64_PCREL32_2: howto manager. (line 2537)
+* BFD_RELOC_MACH_O_X86_64_PCREL32_4: howto manager. (line 2540)
+* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32: howto manager. (line 2528)
+* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64: howto manager. (line 2531)
+* BFD_RELOC_MCORE_PCREL_32: howto manager. (line 1510)
+* BFD_RELOC_MCORE_PCREL_IMM11BY2: howto manager. (line 1508)
+* BFD_RELOC_MCORE_PCREL_IMM4BY2: howto manager. (line 1509)
+* BFD_RELOC_MCORE_PCREL_IMM8BY4: howto manager. (line 1507)
+* BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: howto manager. (line 1511)
+* BFD_RELOC_MCORE_RVA: howto manager. (line 1512)
+* BFD_RELOC_MEP_16: howto manager. (line 1516)
+* BFD_RELOC_MEP_32: howto manager. (line 1517)
+* BFD_RELOC_MEP_8: howto manager. (line 1515)
+* BFD_RELOC_MEP_ADDR24A4: howto manager. (line 1532)
+* BFD_RELOC_MEP_GNU_VTENTRY: howto manager. (line 1534)
+* BFD_RELOC_MEP_GNU_VTINHERIT: howto manager. (line 1533)
+* BFD_RELOC_MEP_GPREL: howto manager. (line 1526)
+* BFD_RELOC_MEP_HI16S: howto manager. (line 1525)
+* BFD_RELOC_MEP_HI16U: howto manager. (line 1524)
+* BFD_RELOC_MEP_LOW16: howto manager. (line 1523)
+* BFD_RELOC_MEP_PCABS24A2: howto manager. (line 1522)
+* BFD_RELOC_MEP_PCREL12A2: howto manager. (line 1519)
+* BFD_RELOC_MEP_PCREL17A2: howto manager. (line 1520)
+* BFD_RELOC_MEP_PCREL24A2: howto manager. (line 1521)
+* BFD_RELOC_MEP_PCREL8A2: howto manager. (line 1518)
+* BFD_RELOC_MEP_TPREL: howto manager. (line 1527)
+* BFD_RELOC_MEP_TPREL7: howto manager. (line 1528)
+* BFD_RELOC_MEP_TPREL7A2: howto manager. (line 1529)
+* BFD_RELOC_MEP_TPREL7A4: howto manager. (line 1530)
+* BFD_RELOC_MEP_UIMM24: howto manager. (line 1531)
+* BFD_RELOC_MICROBLAZE_32_GOTOFF: howto manager. (line 2587)
+* BFD_RELOC_MICROBLAZE_32_LO: howto manager. (line 2543)
+* BFD_RELOC_MICROBLAZE_32_LO_PCREL: howto manager. (line 2547)
+* BFD_RELOC_MICROBLAZE_32_ROSDA: howto manager. (line 2551)
+* BFD_RELOC_MICROBLAZE_32_RWSDA: howto manager. (line 2555)
+* BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: howto manager. (line 2559)
+* BFD_RELOC_MICROBLAZE_64_GOT: howto manager. (line 2573)
+* BFD_RELOC_MICROBLAZE_64_GOTOFF: howto manager. (line 2582)
+* BFD_RELOC_MICROBLAZE_64_GOTPC: howto manager. (line 2568)
+* BFD_RELOC_MICROBLAZE_64_NONE: howto manager. (line 2563)
+* BFD_RELOC_MICROBLAZE_64_PLT: howto manager. (line 2577)
+* BFD_RELOC_MICROBLAZE_COPY: howto manager. (line 2591)
+* BFD_RELOC_MICROMIPS_10_PCREL_S1: howto manager. (line 400)
+* BFD_RELOC_MICROMIPS_16_PCREL_S1: howto manager. (line 401)
+* BFD_RELOC_MICROMIPS_7_PCREL_S1: howto manager. (line 399)
+* BFD_RELOC_MICROMIPS_CALL16: howto manager. (line 413)
+* BFD_RELOC_MICROMIPS_CALL_HI16: howto manager. (line 419)
+* BFD_RELOC_MICROMIPS_CALL_LO16: howto manager. (line 421)
+* BFD_RELOC_MICROMIPS_GOT16: howto manager. (line 411)
+* BFD_RELOC_MICROMIPS_GOT_DISP: howto manager. (line 429)
+* BFD_RELOC_MICROMIPS_GOT_HI16: howto manager. (line 415)
+* BFD_RELOC_MICROMIPS_GOT_LO16: howto manager. (line 417)
+* BFD_RELOC_MICROMIPS_GOT_OFST: howto manager. (line 427)
+* BFD_RELOC_MICROMIPS_GOT_PAGE: howto manager. (line 425)
+* BFD_RELOC_MICROMIPS_GPREL16: howto manager. (line 404)
+* BFD_RELOC_MICROMIPS_HI16: howto manager. (line 405)
+* BFD_RELOC_MICROMIPS_HI16_S: howto manager. (line 406)
+* BFD_RELOC_MICROMIPS_HIGHER: howto manager. (line 438)
+* BFD_RELOC_MICROMIPS_HIGHEST: howto manager. (line 436)
+* BFD_RELOC_MICROMIPS_JALR: howto manager. (line 444)
+* BFD_RELOC_MICROMIPS_JMP: howto manager. (line 339)
+* BFD_RELOC_MICROMIPS_LITERAL: howto manager. (line 396)
+* BFD_RELOC_MICROMIPS_LO16: howto manager. (line 407)
+* BFD_RELOC_MICROMIPS_SCN_DISP: howto manager. (line 440)
+* BFD_RELOC_MICROMIPS_SUB: howto manager. (line 423)
+* BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16: howto manager. (line 454)
+* BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16: howto manager. (line 456)
+* BFD_RELOC_MICROMIPS_TLS_GD: howto manager. (line 450)
+* BFD_RELOC_MICROMIPS_TLS_GOTTPREL: howto manager. (line 458)
+* BFD_RELOC_MICROMIPS_TLS_LDM: howto manager. (line 452)
+* BFD_RELOC_MICROMIPS_TLS_TPREL_HI16: howto manager. (line 462)
+* BFD_RELOC_MICROMIPS_TLS_TPREL_LO16: howto manager. (line 464)
+* BFD_RELOC_MIPS16_CALL16: howto manager. (line 370)
+* BFD_RELOC_MIPS16_GOT16: howto manager. (line 369)
+* BFD_RELOC_MIPS16_GPREL: howto manager. (line 345)
+* BFD_RELOC_MIPS16_HI16: howto manager. (line 374)
+* BFD_RELOC_MIPS16_HI16_S: howto manager. (line 377)
+* BFD_RELOC_MIPS16_JMP: howto manager. (line 342)
+* BFD_RELOC_MIPS16_LO16: howto manager. (line 383)
+* BFD_RELOC_MIPS16_TLS_DTPREL_HI16: howto manager. (line 388)
+* BFD_RELOC_MIPS16_TLS_DTPREL_LO16: howto manager. (line 389)
+* BFD_RELOC_MIPS16_TLS_GD: howto manager. (line 386)
+* BFD_RELOC_MIPS16_TLS_GOTTPREL: howto manager. (line 390)
+* BFD_RELOC_MIPS16_TLS_LDM: howto manager. (line 387)
+* BFD_RELOC_MIPS16_TLS_TPREL_HI16: howto manager. (line 391)
+* BFD_RELOC_MIPS16_TLS_TPREL_LO16: howto manager. (line 392)
+* BFD_RELOC_MIPS_CALL16: howto manager. (line 412)
+* BFD_RELOC_MIPS_CALL_HI16: howto manager. (line 418)
+* BFD_RELOC_MIPS_CALL_LO16: howto manager. (line 420)
+* BFD_RELOC_MIPS_COPY: howto manager. (line 467)
+* BFD_RELOC_MIPS_DELETE: howto manager. (line 434)
+* BFD_RELOC_MIPS_GOT16: howto manager. (line 410)
+* BFD_RELOC_MIPS_GOT_DISP: howto manager. (line 428)
+* BFD_RELOC_MIPS_GOT_HI16: howto manager. (line 414)
+* BFD_RELOC_MIPS_GOT_LO16: howto manager. (line 416)
+* BFD_RELOC_MIPS_GOT_OFST: howto manager. (line 426)
+* BFD_RELOC_MIPS_GOT_PAGE: howto manager. (line 424)
+* BFD_RELOC_MIPS_HIGHER: howto manager. (line 437)
+* BFD_RELOC_MIPS_HIGHEST: howto manager. (line 435)
+* BFD_RELOC_MIPS_INSERT_A: howto manager. (line 432)
+* BFD_RELOC_MIPS_INSERT_B: howto manager. (line 433)
+* BFD_RELOC_MIPS_JALR: howto manager. (line 443)
+* BFD_RELOC_MIPS_JMP: howto manager. (line 338)
+* BFD_RELOC_MIPS_JUMP_SLOT: howto manager. (line 468)
+* BFD_RELOC_MIPS_LITERAL: howto manager. (line 395)
+* BFD_RELOC_MIPS_REL16: howto manager. (line 441)
+* BFD_RELOC_MIPS_RELGOT: howto manager. (line 442)
+* BFD_RELOC_MIPS_SCN_DISP: howto manager. (line 439)
+* BFD_RELOC_MIPS_SHIFT5: howto manager. (line 430)
+* BFD_RELOC_MIPS_SHIFT6: howto manager. (line 431)
+* BFD_RELOC_MIPS_SUB: howto manager. (line 422)
+* BFD_RELOC_MIPS_TLS_DTPMOD32: howto manager. (line 445)
+* BFD_RELOC_MIPS_TLS_DTPMOD64: howto manager. (line 447)
+* BFD_RELOC_MIPS_TLS_DTPREL32: howto manager. (line 446)
+* BFD_RELOC_MIPS_TLS_DTPREL64: howto manager. (line 448)
+* BFD_RELOC_MIPS_TLS_DTPREL_HI16: howto manager. (line 453)
+* BFD_RELOC_MIPS_TLS_DTPREL_LO16: howto manager. (line 455)
+* BFD_RELOC_MIPS_TLS_GD: howto manager. (line 449)
+* BFD_RELOC_MIPS_TLS_GOTTPREL: howto manager. (line 457)
+* BFD_RELOC_MIPS_TLS_LDM: howto manager. (line 451)
+* BFD_RELOC_MIPS_TLS_TPREL32: howto manager. (line 459)
+* BFD_RELOC_MIPS_TLS_TPREL64: howto manager. (line 460)
+* BFD_RELOC_MIPS_TLS_TPREL_HI16: howto manager. (line 461)
+* BFD_RELOC_MIPS_TLS_TPREL_LO16: howto manager. (line 463)
+* BFD_RELOC_MMIX_ADDR19: howto manager. (line 1563)
+* BFD_RELOC_MMIX_ADDR27: howto manager. (line 1567)
+* BFD_RELOC_MMIX_BASE_PLUS_OFFSET: howto manager. (line 1579)
+* BFD_RELOC_MMIX_CBRANCH: howto manager. (line 1543)
+* BFD_RELOC_MMIX_CBRANCH_1: howto manager. (line 1545)
+* BFD_RELOC_MMIX_CBRANCH_2: howto manager. (line 1546)
+* BFD_RELOC_MMIX_CBRANCH_3: howto manager. (line 1547)
+* BFD_RELOC_MMIX_CBRANCH_J: howto manager. (line 1544)
+* BFD_RELOC_MMIX_GETA: howto manager. (line 1537)
+* BFD_RELOC_MMIX_GETA_1: howto manager. (line 1538)
+* BFD_RELOC_MMIX_GETA_2: howto manager. (line 1539)
+* BFD_RELOC_MMIX_GETA_3: howto manager. (line 1540)
+* BFD_RELOC_MMIX_JMP: howto manager. (line 1557)
+* BFD_RELOC_MMIX_JMP_1: howto manager. (line 1558)
+* BFD_RELOC_MMIX_JMP_2: howto manager. (line 1559)
+* BFD_RELOC_MMIX_JMP_3: howto manager. (line 1560)
+* BFD_RELOC_MMIX_LOCAL: howto manager. (line 1583)
+* BFD_RELOC_MMIX_PUSHJ: howto manager. (line 1550)
+* BFD_RELOC_MMIX_PUSHJ_1: howto manager. (line 1551)
+* BFD_RELOC_MMIX_PUSHJ_2: howto manager. (line 1552)
+* BFD_RELOC_MMIX_PUSHJ_3: howto manager. (line 1553)
+* BFD_RELOC_MMIX_PUSHJ_STUBBABLE: howto manager. (line 1554)
+* BFD_RELOC_MMIX_REG: howto manager. (line 1575)
+* BFD_RELOC_MMIX_REG_OR_BYTE: howto manager. (line 1571)
+* BFD_RELOC_MN10300_16_PCREL: howto manager. (line 566)
+* BFD_RELOC_MN10300_32_PCREL: howto manager. (line 562)
+* BFD_RELOC_MN10300_ALIGN: howto manager. (line 547)
+* BFD_RELOC_MN10300_COPY: howto manager. (line 530)
+* BFD_RELOC_MN10300_GLOB_DAT: howto manager. (line 533)
+* BFD_RELOC_MN10300_GOT16: howto manager. (line 526)
+* BFD_RELOC_MN10300_GOT24: howto manager. (line 522)
+* BFD_RELOC_MN10300_GOT32: howto manager. (line 518)
+* BFD_RELOC_MN10300_GOTOFF24: howto manager. (line 515)
+* BFD_RELOC_MN10300_JMP_SLOT: howto manager. (line 536)
+* BFD_RELOC_MN10300_RELATIVE: howto manager. (line 539)
+* BFD_RELOC_MN10300_SYM_DIFF: howto manager. (line 542)
+* BFD_RELOC_MN10300_TLS_DTPMOD: howto manager. (line 557)
+* BFD_RELOC_MN10300_TLS_DTPOFF: howto manager. (line 558)
+* BFD_RELOC_MN10300_TLS_GD: howto manager. (line 551)
+* BFD_RELOC_MN10300_TLS_GOTIE: howto manager. (line 554)
+* BFD_RELOC_MN10300_TLS_IE: howto manager. (line 555)
+* BFD_RELOC_MN10300_TLS_LD: howto manager. (line 552)
+* BFD_RELOC_MN10300_TLS_LDO: howto manager. (line 553)
+* BFD_RELOC_MN10300_TLS_LE: howto manager. (line 556)
+* BFD_RELOC_MN10300_TLS_TPOFF: howto manager. (line 559)
+* BFD_RELOC_MOXIE_10_PCREL: howto manager. (line 471)
+* BFD_RELOC_MSP430_10_PCREL: howto manager. (line 2381)
+* BFD_RELOC_MSP430_16: howto manager. (line 2383)
+* BFD_RELOC_MSP430_16_BYTE: howto manager. (line 2385)
+* BFD_RELOC_MSP430_16_PCREL: howto manager. (line 2382)
+* BFD_RELOC_MSP430_16_PCREL_BYTE: howto manager. (line 2384)
+* BFD_RELOC_MSP430_2X_PCREL: howto manager. (line 2386)
+* BFD_RELOC_MSP430_RL_PCREL: howto manager. (line 2387)
+* BFD_RELOC_MT_GNU_VTENTRY: howto manager. (line 2375)
+* BFD_RELOC_MT_GNU_VTINHERIT: howto manager. (line 2372)
+* BFD_RELOC_MT_HI16: howto manager. (line 2366)
+* BFD_RELOC_MT_LO16: howto manager. (line 2369)
+* BFD_RELOC_MT_PC16: howto manager. (line 2363)
+* BFD_RELOC_MT_PCINSN8: howto manager. (line 2378)
* BFD_RELOC_NONE: howto manager. (line 131)
-* BFD_RELOC_NS32K_DISP_16: howto manager. (line 600)
-* BFD_RELOC_NS32K_DISP_16_PCREL: howto manager. (line 603)
-* BFD_RELOC_NS32K_DISP_32: howto manager. (line 601)
-* BFD_RELOC_NS32K_DISP_32_PCREL: howto manager. (line 604)
-* BFD_RELOC_NS32K_DISP_8: howto manager. (line 599)
-* BFD_RELOC_NS32K_DISP_8_PCREL: howto manager. (line 602)
-* BFD_RELOC_NS32K_IMM_16: howto manager. (line 594)
-* BFD_RELOC_NS32K_IMM_16_PCREL: howto manager. (line 597)
-* BFD_RELOC_NS32K_IMM_32: howto manager. (line 595)
-* BFD_RELOC_NS32K_IMM_32_PCREL: howto manager. (line 598)
-* BFD_RELOC_NS32K_IMM_8: howto manager. (line 593)
-* BFD_RELOC_NS32K_IMM_8_PCREL: howto manager. (line 596)
-* BFD_RELOC_OPENRISC_ABS_26: howto manager. (line 2214)
-* BFD_RELOC_OPENRISC_REL_26: howto manager. (line 2215)
-* BFD_RELOC_PDP11_DISP_6_PCREL: howto manager. (line 608)
-* BFD_RELOC_PDP11_DISP_8_PCREL: howto manager. (line 607)
-* BFD_RELOC_PJ_CODE_DIR16: howto manager. (line 613)
-* BFD_RELOC_PJ_CODE_DIR32: howto manager. (line 614)
-* BFD_RELOC_PJ_CODE_HI16: howto manager. (line 611)
-* BFD_RELOC_PJ_CODE_LO16: howto manager. (line 612)
-* BFD_RELOC_PJ_CODE_REL16: howto manager. (line 615)
-* BFD_RELOC_PJ_CODE_REL32: howto manager. (line 616)
-* BFD_RELOC_PPC64_ADDR16_DS: howto manager. (line 661)
-* BFD_RELOC_PPC64_ADDR16_LO_DS: howto manager. (line 662)
-* BFD_RELOC_PPC64_DTPREL16_DS: howto manager. (line 710)
-* BFD_RELOC_PPC64_DTPREL16_HIGHER: howto manager. (line 712)
-* BFD_RELOC_PPC64_DTPREL16_HIGHERA: howto manager. (line 713)
-* BFD_RELOC_PPC64_DTPREL16_HIGHEST: howto manager. (line 714)
-* BFD_RELOC_PPC64_DTPREL16_HIGHESTA: howto manager. (line 715)
-* BFD_RELOC_PPC64_DTPREL16_LO_DS: howto manager. (line 711)
-* BFD_RELOC_PPC64_GOT16_DS: howto manager. (line 663)
-* BFD_RELOC_PPC64_GOT16_LO_DS: howto manager. (line 664)
-* BFD_RELOC_PPC64_HIGHER: howto manager. (line 649)
-* BFD_RELOC_PPC64_HIGHER_S: howto manager. (line 650)
-* BFD_RELOC_PPC64_HIGHEST: howto manager. (line 651)
-* BFD_RELOC_PPC64_HIGHEST_S: howto manager. (line 652)
-* BFD_RELOC_PPC64_PLT16_LO_DS: howto manager. (line 665)
-* BFD_RELOC_PPC64_PLTGOT16: howto manager. (line 657)
-* BFD_RELOC_PPC64_PLTGOT16_DS: howto manager. (line 670)
-* BFD_RELOC_PPC64_PLTGOT16_HA: howto manager. (line 660)
-* BFD_RELOC_PPC64_PLTGOT16_HI: howto manager. (line 659)
-* BFD_RELOC_PPC64_PLTGOT16_LO: howto manager. (line 658)
-* BFD_RELOC_PPC64_PLTGOT16_LO_DS: howto manager. (line 671)
-* BFD_RELOC_PPC64_SECTOFF_DS: howto manager. (line 666)
-* BFD_RELOC_PPC64_SECTOFF_LO_DS: howto manager. (line 667)
-* BFD_RELOC_PPC64_TOC: howto manager. (line 656)
-* BFD_RELOC_PPC64_TOC16_DS: howto manager. (line 668)
-* BFD_RELOC_PPC64_TOC16_HA: howto manager. (line 655)
-* BFD_RELOC_PPC64_TOC16_HI: howto manager. (line 654)
-* BFD_RELOC_PPC64_TOC16_LO: howto manager. (line 653)
-* BFD_RELOC_PPC64_TOC16_LO_DS: howto manager. (line 669)
-* BFD_RELOC_PPC64_TPREL16_DS: howto manager. (line 704)
-* BFD_RELOC_PPC64_TPREL16_HIGHER: howto manager. (line 706)
-* BFD_RELOC_PPC64_TPREL16_HIGHERA: howto manager. (line 707)
-* BFD_RELOC_PPC64_TPREL16_HIGHEST: howto manager. (line 708)
-* BFD_RELOC_PPC64_TPREL16_HIGHESTA: howto manager. (line 709)
-* BFD_RELOC_PPC64_TPREL16_LO_DS: howto manager. (line 705)
-* BFD_RELOC_PPC_B16: howto manager. (line 622)
-* BFD_RELOC_PPC_B16_BRNTAKEN: howto manager. (line 624)
-* BFD_RELOC_PPC_B16_BRTAKEN: howto manager. (line 623)
-* BFD_RELOC_PPC_B26: howto manager. (line 619)
-* BFD_RELOC_PPC_BA16: howto manager. (line 625)
-* BFD_RELOC_PPC_BA16_BRNTAKEN: howto manager. (line 627)
-* BFD_RELOC_PPC_BA16_BRTAKEN: howto manager. (line 626)
-* BFD_RELOC_PPC_BA26: howto manager. (line 620)
-* BFD_RELOC_PPC_COPY: howto manager. (line 628)
-* BFD_RELOC_PPC_DTPMOD: howto manager. (line 677)
-* BFD_RELOC_PPC_DTPREL: howto manager. (line 687)
-* BFD_RELOC_PPC_DTPREL16: howto manager. (line 683)
-* BFD_RELOC_PPC_DTPREL16_HA: howto manager. (line 686)
-* BFD_RELOC_PPC_DTPREL16_HI: howto manager. (line 685)
-* BFD_RELOC_PPC_DTPREL16_LO: howto manager. (line 684)
-* BFD_RELOC_PPC_EMB_BIT_FLD: howto manager. (line 647)
-* BFD_RELOC_PPC_EMB_MRKREF: howto manager. (line 642)
-* BFD_RELOC_PPC_EMB_NADDR16: howto manager. (line 634)
-* BFD_RELOC_PPC_EMB_NADDR16_HA: howto manager. (line 637)
-* BFD_RELOC_PPC_EMB_NADDR16_HI: howto manager. (line 636)
-* BFD_RELOC_PPC_EMB_NADDR16_LO: howto manager. (line 635)
-* BFD_RELOC_PPC_EMB_NADDR32: howto manager. (line 633)
-* BFD_RELOC_PPC_EMB_RELSDA: howto manager. (line 648)
-* BFD_RELOC_PPC_EMB_RELSEC16: howto manager. (line 643)
-* BFD_RELOC_PPC_EMB_RELST_HA: howto manager. (line 646)
-* BFD_RELOC_PPC_EMB_RELST_HI: howto manager. (line 645)
-* BFD_RELOC_PPC_EMB_RELST_LO: howto manager. (line 644)
-* BFD_RELOC_PPC_EMB_SDA21: howto manager. (line 641)
-* BFD_RELOC_PPC_EMB_SDA2I16: howto manager. (line 639)
-* BFD_RELOC_PPC_EMB_SDA2REL: howto manager. (line 640)
-* BFD_RELOC_PPC_EMB_SDAI16: howto manager. (line 638)
-* BFD_RELOC_PPC_GLOB_DAT: howto manager. (line 629)
-* BFD_RELOC_PPC_GOT_DTPREL16: howto manager. (line 700)
-* BFD_RELOC_PPC_GOT_DTPREL16_HA: howto manager. (line 703)
-* BFD_RELOC_PPC_GOT_DTPREL16_HI: howto manager. (line 702)
-* BFD_RELOC_PPC_GOT_DTPREL16_LO: howto manager. (line 701)
-* BFD_RELOC_PPC_GOT_TLSGD16: howto manager. (line 688)
-* BFD_RELOC_PPC_GOT_TLSGD16_HA: howto manager. (line 691)
-* BFD_RELOC_PPC_GOT_TLSGD16_HI: howto manager. (line 690)
-* BFD_RELOC_PPC_GOT_TLSGD16_LO: howto manager. (line 689)
-* BFD_RELOC_PPC_GOT_TLSLD16: howto manager. (line 692)
-* BFD_RELOC_PPC_GOT_TLSLD16_HA: howto manager. (line 695)
-* BFD_RELOC_PPC_GOT_TLSLD16_HI: howto manager. (line 694)
-* BFD_RELOC_PPC_GOT_TLSLD16_LO: howto manager. (line 693)
-* BFD_RELOC_PPC_GOT_TPREL16: howto manager. (line 696)
-* BFD_RELOC_PPC_GOT_TPREL16_HA: howto manager. (line 699)
-* BFD_RELOC_PPC_GOT_TPREL16_HI: howto manager. (line 698)
-* BFD_RELOC_PPC_GOT_TPREL16_LO: howto manager. (line 697)
-* BFD_RELOC_PPC_JMP_SLOT: howto manager. (line 630)
-* BFD_RELOC_PPC_LOCAL24PC: howto manager. (line 632)
-* BFD_RELOC_PPC_RELATIVE: howto manager. (line 631)
-* BFD_RELOC_PPC_TLS: howto manager. (line 674)
-* BFD_RELOC_PPC_TLSGD: howto manager. (line 675)
-* BFD_RELOC_PPC_TLSLD: howto manager. (line 676)
-* BFD_RELOC_PPC_TOC16: howto manager. (line 621)
-* BFD_RELOC_PPC_TPREL: howto manager. (line 682)
-* BFD_RELOC_PPC_TPREL16: howto manager. (line 678)
-* BFD_RELOC_PPC_TPREL16_HA: howto manager. (line 681)
-* BFD_RELOC_PPC_TPREL16_HI: howto manager. (line 680)
-* BFD_RELOC_PPC_TPREL16_LO: howto manager. (line 679)
-* BFD_RELOC_RELC: howto manager. (line 2231)
-* BFD_RELOC_RL78_16_OP: howto manager. (line 1653)
-* BFD_RELOC_RL78_16U: howto manager. (line 1657)
-* BFD_RELOC_RL78_24_OP: howto manager. (line 1654)
-* BFD_RELOC_RL78_24U: howto manager. (line 1658)
-* BFD_RELOC_RL78_32_OP: howto manager. (line 1655)
-* BFD_RELOC_RL78_8U: howto manager. (line 1656)
-* BFD_RELOC_RL78_ABS16: howto manager. (line 1670)
-* BFD_RELOC_RL78_ABS16_REV: howto manager. (line 1671)
-* BFD_RELOC_RL78_ABS16U: howto manager. (line 1674)
-* BFD_RELOC_RL78_ABS16UL: howto manager. (line 1676)
-* BFD_RELOC_RL78_ABS16UW: howto manager. (line 1675)
-* BFD_RELOC_RL78_ABS32: howto manager. (line 1672)
-* BFD_RELOC_RL78_ABS32_REV: howto manager. (line 1673)
-* BFD_RELOC_RL78_ABS8: howto manager. (line 1669)
-* BFD_RELOC_RL78_DIFF: howto manager. (line 1660)
-* BFD_RELOC_RL78_DIR3U_PCREL: howto manager. (line 1659)
-* BFD_RELOC_RL78_GPRELB: howto manager. (line 1661)
-* BFD_RELOC_RL78_GPRELL: howto manager. (line 1663)
-* BFD_RELOC_RL78_GPRELW: howto manager. (line 1662)
-* BFD_RELOC_RL78_HI16: howto manager. (line 1678)
-* BFD_RELOC_RL78_HI8: howto manager. (line 1679)
-* BFD_RELOC_RL78_LO16: howto manager. (line 1680)
-* BFD_RELOC_RL78_NEG16: howto manager. (line 1650)
-* BFD_RELOC_RL78_NEG24: howto manager. (line 1651)
-* BFD_RELOC_RL78_NEG32: howto manager. (line 1652)
-* BFD_RELOC_RL78_NEG8: howto manager. (line 1649)
-* BFD_RELOC_RL78_OP_AND: howto manager. (line 1667)
-* BFD_RELOC_RL78_OP_NEG: howto manager. (line 1666)
-* BFD_RELOC_RL78_OP_SHRA: howto manager. (line 1668)
-* BFD_RELOC_RL78_OP_SUBTRACT: howto manager. (line 1665)
-* BFD_RELOC_RL78_RELAX: howto manager. (line 1677)
-* BFD_RELOC_RL78_SYM: howto manager. (line 1664)
+* BFD_RELOC_NS32K_DISP_16: howto manager. (line 632)
+* BFD_RELOC_NS32K_DISP_16_PCREL: howto manager. (line 635)
+* BFD_RELOC_NS32K_DISP_32: howto manager. (line 633)
+* BFD_RELOC_NS32K_DISP_32_PCREL: howto manager. (line 636)
+* BFD_RELOC_NS32K_DISP_8: howto manager. (line 631)
+* BFD_RELOC_NS32K_DISP_8_PCREL: howto manager. (line 634)
+* BFD_RELOC_NS32K_IMM_16: howto manager. (line 626)
+* BFD_RELOC_NS32K_IMM_16_PCREL: howto manager. (line 629)
+* BFD_RELOC_NS32K_IMM_32: howto manager. (line 627)
+* BFD_RELOC_NS32K_IMM_32_PCREL: howto manager. (line 630)
+* BFD_RELOC_NS32K_IMM_8: howto manager. (line 625)
+* BFD_RELOC_NS32K_IMM_8_PCREL: howto manager. (line 628)
+* BFD_RELOC_OPENRISC_ABS_26: howto manager. (line 2332)
+* BFD_RELOC_OPENRISC_REL_26: howto manager. (line 2333)
+* BFD_RELOC_PDP11_DISP_6_PCREL: howto manager. (line 640)
+* BFD_RELOC_PDP11_DISP_8_PCREL: howto manager. (line 639)
+* BFD_RELOC_PJ_CODE_DIR16: howto manager. (line 645)
+* BFD_RELOC_PJ_CODE_DIR32: howto manager. (line 646)
+* BFD_RELOC_PJ_CODE_HI16: howto manager. (line 643)
+* BFD_RELOC_PJ_CODE_LO16: howto manager. (line 644)
+* BFD_RELOC_PJ_CODE_REL16: howto manager. (line 647)
+* BFD_RELOC_PJ_CODE_REL32: howto manager. (line 648)
+* BFD_RELOC_PPC64_ADDR16_DS: howto manager. (line 710)
+* BFD_RELOC_PPC64_ADDR16_LO_DS: howto manager. (line 711)
+* BFD_RELOC_PPC64_DTPREL16_DS: howto manager. (line 759)
+* BFD_RELOC_PPC64_DTPREL16_HIGHER: howto manager. (line 761)
+* BFD_RELOC_PPC64_DTPREL16_HIGHERA: howto manager. (line 762)
+* BFD_RELOC_PPC64_DTPREL16_HIGHEST: howto manager. (line 763)
+* BFD_RELOC_PPC64_DTPREL16_HIGHESTA: howto manager. (line 764)
+* BFD_RELOC_PPC64_DTPREL16_LO_DS: howto manager. (line 760)
+* BFD_RELOC_PPC64_GOT16_DS: howto manager. (line 712)
+* BFD_RELOC_PPC64_GOT16_LO_DS: howto manager. (line 713)
+* BFD_RELOC_PPC64_HIGHER: howto manager. (line 698)
+* BFD_RELOC_PPC64_HIGHER_S: howto manager. (line 699)
+* BFD_RELOC_PPC64_HIGHEST: howto manager. (line 700)
+* BFD_RELOC_PPC64_HIGHEST_S: howto manager. (line 701)
+* BFD_RELOC_PPC64_PLT16_LO_DS: howto manager. (line 714)
+* BFD_RELOC_PPC64_PLTGOT16: howto manager. (line 706)
+* BFD_RELOC_PPC64_PLTGOT16_DS: howto manager. (line 719)
+* BFD_RELOC_PPC64_PLTGOT16_HA: howto manager. (line 709)
+* BFD_RELOC_PPC64_PLTGOT16_HI: howto manager. (line 708)
+* BFD_RELOC_PPC64_PLTGOT16_LO: howto manager. (line 707)
+* BFD_RELOC_PPC64_PLTGOT16_LO_DS: howto manager. (line 720)
+* BFD_RELOC_PPC64_SECTOFF_DS: howto manager. (line 715)
+* BFD_RELOC_PPC64_SECTOFF_LO_DS: howto manager. (line 716)
+* BFD_RELOC_PPC64_TOC: howto manager. (line 705)
+* BFD_RELOC_PPC64_TOC16_DS: howto manager. (line 717)
+* BFD_RELOC_PPC64_TOC16_HA: howto manager. (line 704)
+* BFD_RELOC_PPC64_TOC16_HI: howto manager. (line 703)
+* BFD_RELOC_PPC64_TOC16_LO: howto manager. (line 702)
+* BFD_RELOC_PPC64_TOC16_LO_DS: howto manager. (line 718)
+* BFD_RELOC_PPC64_TPREL16_DS: howto manager. (line 753)
+* BFD_RELOC_PPC64_TPREL16_HIGHER: howto manager. (line 755)
+* BFD_RELOC_PPC64_TPREL16_HIGHERA: howto manager. (line 756)
+* BFD_RELOC_PPC64_TPREL16_HIGHEST: howto manager. (line 757)
+* BFD_RELOC_PPC64_TPREL16_HIGHESTA: howto manager. (line 758)
+* BFD_RELOC_PPC64_TPREL16_LO_DS: howto manager. (line 754)
+* BFD_RELOC_PPC_B16: howto manager. (line 654)
+* BFD_RELOC_PPC_B16_BRNTAKEN: howto manager. (line 656)
+* BFD_RELOC_PPC_B16_BRTAKEN: howto manager. (line 655)
+* BFD_RELOC_PPC_B26: howto manager. (line 651)
+* BFD_RELOC_PPC_BA16: howto manager. (line 657)
+* BFD_RELOC_PPC_BA16_BRNTAKEN: howto manager. (line 659)
+* BFD_RELOC_PPC_BA16_BRTAKEN: howto manager. (line 658)
+* BFD_RELOC_PPC_BA26: howto manager. (line 652)
+* BFD_RELOC_PPC_COPY: howto manager. (line 660)
+* BFD_RELOC_PPC_DTPMOD: howto manager. (line 726)
+* BFD_RELOC_PPC_DTPREL: howto manager. (line 736)
+* BFD_RELOC_PPC_DTPREL16: howto manager. (line 732)
+* BFD_RELOC_PPC_DTPREL16_HA: howto manager. (line 735)
+* BFD_RELOC_PPC_DTPREL16_HI: howto manager. (line 734)
+* BFD_RELOC_PPC_DTPREL16_LO: howto manager. (line 733)
+* BFD_RELOC_PPC_EMB_BIT_FLD: howto manager. (line 679)
+* BFD_RELOC_PPC_EMB_MRKREF: howto manager. (line 674)
+* BFD_RELOC_PPC_EMB_NADDR16: howto manager. (line 666)
+* BFD_RELOC_PPC_EMB_NADDR16_HA: howto manager. (line 669)
+* BFD_RELOC_PPC_EMB_NADDR16_HI: howto manager. (line 668)
+* BFD_RELOC_PPC_EMB_NADDR16_LO: howto manager. (line 667)
+* BFD_RELOC_PPC_EMB_NADDR32: howto manager. (line 665)
+* BFD_RELOC_PPC_EMB_RELSDA: howto manager. (line 680)
+* BFD_RELOC_PPC_EMB_RELSEC16: howto manager. (line 675)
+* BFD_RELOC_PPC_EMB_RELST_HA: howto manager. (line 678)
+* BFD_RELOC_PPC_EMB_RELST_HI: howto manager. (line 677)
+* BFD_RELOC_PPC_EMB_RELST_LO: howto manager. (line 676)
+* BFD_RELOC_PPC_EMB_SDA21: howto manager. (line 673)
+* BFD_RELOC_PPC_EMB_SDA2I16: howto manager. (line 671)
+* BFD_RELOC_PPC_EMB_SDA2REL: howto manager. (line 672)
+* BFD_RELOC_PPC_EMB_SDAI16: howto manager. (line 670)
+* BFD_RELOC_PPC_GLOB_DAT: howto manager. (line 661)
+* BFD_RELOC_PPC_GOT_DTPREL16: howto manager. (line 749)
+* BFD_RELOC_PPC_GOT_DTPREL16_HA: howto manager. (line 752)
+* BFD_RELOC_PPC_GOT_DTPREL16_HI: howto manager. (line 751)
+* BFD_RELOC_PPC_GOT_DTPREL16_LO: howto manager. (line 750)
+* BFD_RELOC_PPC_GOT_TLSGD16: howto manager. (line 737)
+* BFD_RELOC_PPC_GOT_TLSGD16_HA: howto manager. (line 740)
+* BFD_RELOC_PPC_GOT_TLSGD16_HI: howto manager. (line 739)
+* BFD_RELOC_PPC_GOT_TLSGD16_LO: howto manager. (line 738)
+* BFD_RELOC_PPC_GOT_TLSLD16: howto manager. (line 741)
+* BFD_RELOC_PPC_GOT_TLSLD16_HA: howto manager. (line 744)
+* BFD_RELOC_PPC_GOT_TLSLD16_HI: howto manager. (line 743)
+* BFD_RELOC_PPC_GOT_TLSLD16_LO: howto manager. (line 742)
+* BFD_RELOC_PPC_GOT_TPREL16: howto manager. (line 745)
+* BFD_RELOC_PPC_GOT_TPREL16_HA: howto manager. (line 748)
+* BFD_RELOC_PPC_GOT_TPREL16_HI: howto manager. (line 747)
+* BFD_RELOC_PPC_GOT_TPREL16_LO: howto manager. (line 746)
+* BFD_RELOC_PPC_JMP_SLOT: howto manager. (line 662)
+* BFD_RELOC_PPC_LOCAL24PC: howto manager. (line 664)
+* BFD_RELOC_PPC_RELATIVE: howto manager. (line 663)
+* BFD_RELOC_PPC_TLS: howto manager. (line 723)
+* BFD_RELOC_PPC_TLSGD: howto manager. (line 724)
+* BFD_RELOC_PPC_TLSLD: howto manager. (line 725)
+* BFD_RELOC_PPC_TOC16: howto manager. (line 653)
+* BFD_RELOC_PPC_TPREL: howto manager. (line 731)
+* BFD_RELOC_PPC_TPREL16: howto manager. (line 727)
+* BFD_RELOC_PPC_TPREL16_HA: howto manager. (line 730)
+* BFD_RELOC_PPC_TPREL16_HI: howto manager. (line 729)
+* BFD_RELOC_PPC_TPREL16_LO: howto manager. (line 728)
+* BFD_RELOC_PPC_VLE_HA16A: howto manager. (line 688)
+* BFD_RELOC_PPC_VLE_HA16D: howto manager. (line 689)
+* BFD_RELOC_PPC_VLE_HI16A: howto manager. (line 686)
+* BFD_RELOC_PPC_VLE_HI16D: howto manager. (line 687)
+* BFD_RELOC_PPC_VLE_LO16A: howto manager. (line 684)
+* BFD_RELOC_PPC_VLE_LO16D: howto manager. (line 685)
+* BFD_RELOC_PPC_VLE_REL15: howto manager. (line 682)
+* BFD_RELOC_PPC_VLE_REL24: howto manager. (line 683)
+* BFD_RELOC_PPC_VLE_REL8: howto manager. (line 681)
+* BFD_RELOC_PPC_VLE_SDA21: howto manager. (line 690)
+* BFD_RELOC_PPC_VLE_SDA21_LO: howto manager. (line 691)
+* BFD_RELOC_PPC_VLE_SDAREL_HA16A: howto manager. (line 696)
+* BFD_RELOC_PPC_VLE_SDAREL_HA16D: howto manager. (line 697)
+* BFD_RELOC_PPC_VLE_SDAREL_HI16A: howto manager. (line 694)
+* BFD_RELOC_PPC_VLE_SDAREL_HI16D: howto manager. (line 695)
+* BFD_RELOC_PPC_VLE_SDAREL_LO16A: howto manager. (line 692)
+* BFD_RELOC_PPC_VLE_SDAREL_LO16D: howto manager. (line 693)
+* BFD_RELOC_RELC: howto manager. (line 2349)
+* BFD_RELOC_RL78_16_OP: howto manager. (line 1706)
+* BFD_RELOC_RL78_16U: howto manager. (line 1710)
+* BFD_RELOC_RL78_24_OP: howto manager. (line 1707)
+* BFD_RELOC_RL78_24U: howto manager. (line 1711)
+* BFD_RELOC_RL78_32_OP: howto manager. (line 1708)
+* BFD_RELOC_RL78_8U: howto manager. (line 1709)
+* BFD_RELOC_RL78_ABS16: howto manager. (line 1723)
+* BFD_RELOC_RL78_ABS16_REV: howto manager. (line 1724)
+* BFD_RELOC_RL78_ABS16U: howto manager. (line 1727)
+* BFD_RELOC_RL78_ABS16UL: howto manager. (line 1729)
+* BFD_RELOC_RL78_ABS16UW: howto manager. (line 1728)
+* BFD_RELOC_RL78_ABS32: howto manager. (line 1725)
+* BFD_RELOC_RL78_ABS32_REV: howto manager. (line 1726)
+* BFD_RELOC_RL78_ABS8: howto manager. (line 1722)
+* BFD_RELOC_RL78_DIFF: howto manager. (line 1713)
+* BFD_RELOC_RL78_DIR3U_PCREL: howto manager. (line 1712)
+* BFD_RELOC_RL78_GPRELB: howto manager. (line 1714)
+* BFD_RELOC_RL78_GPRELL: howto manager. (line 1716)
+* BFD_RELOC_RL78_GPRELW: howto manager. (line 1715)
+* BFD_RELOC_RL78_HI16: howto manager. (line 1731)
+* BFD_RELOC_RL78_HI8: howto manager. (line 1732)
+* BFD_RELOC_RL78_LO16: howto manager. (line 1733)
+* BFD_RELOC_RL78_NEG16: howto manager. (line 1703)
+* BFD_RELOC_RL78_NEG24: howto manager. (line 1704)
+* BFD_RELOC_RL78_NEG32: howto manager. (line 1705)
+* BFD_RELOC_RL78_NEG8: howto manager. (line 1702)
+* BFD_RELOC_RL78_OP_AND: howto manager. (line 1720)
+* BFD_RELOC_RL78_OP_NEG: howto manager. (line 1719)
+* BFD_RELOC_RL78_OP_SHRA: howto manager. (line 1721)
+* BFD_RELOC_RL78_OP_SUBTRACT: howto manager. (line 1718)
+* BFD_RELOC_RL78_RELAX: howto manager. (line 1730)
+* BFD_RELOC_RL78_SYM: howto manager. (line 1717)
* BFD_RELOC_RVA: howto manager. (line 100)
-* BFD_RELOC_RX_16_OP: howto manager. (line 1687)
-* BFD_RELOC_RX_16U: howto manager. (line 1691)
-* BFD_RELOC_RX_24_OP: howto manager. (line 1688)
-* BFD_RELOC_RX_24U: howto manager. (line 1692)
-* BFD_RELOC_RX_32_OP: howto manager. (line 1689)
-* BFD_RELOC_RX_8U: howto manager. (line 1690)
-* BFD_RELOC_RX_ABS16: howto manager. (line 1702)
-* BFD_RELOC_RX_ABS16_REV: howto manager. (line 1703)
-* BFD_RELOC_RX_ABS16U: howto manager. (line 1706)
-* BFD_RELOC_RX_ABS16UL: howto manager. (line 1708)
-* BFD_RELOC_RX_ABS16UW: howto manager. (line 1707)
-* BFD_RELOC_RX_ABS32: howto manager. (line 1704)
-* BFD_RELOC_RX_ABS32_REV: howto manager. (line 1705)
-* BFD_RELOC_RX_ABS8: howto manager. (line 1701)
-* BFD_RELOC_RX_DIFF: howto manager. (line 1694)
-* BFD_RELOC_RX_DIR3U_PCREL: howto manager. (line 1693)
-* BFD_RELOC_RX_GPRELB: howto manager. (line 1695)
-* BFD_RELOC_RX_GPRELL: howto manager. (line 1697)
-* BFD_RELOC_RX_GPRELW: howto manager. (line 1696)
-* BFD_RELOC_RX_NEG16: howto manager. (line 1684)
-* BFD_RELOC_RX_NEG24: howto manager. (line 1685)
-* BFD_RELOC_RX_NEG32: howto manager. (line 1686)
-* BFD_RELOC_RX_NEG8: howto manager. (line 1683)
-* BFD_RELOC_RX_OP_NEG: howto manager. (line 1700)
-* BFD_RELOC_RX_OP_SUBTRACT: howto manager. (line 1699)
-* BFD_RELOC_RX_RELAX: howto manager. (line 1709)
-* BFD_RELOC_RX_SYM: howto manager. (line 1698)
-* BFD_RELOC_SCORE16_BRANCH: howto manager. (line 1837)
-* BFD_RELOC_SCORE16_JMP: howto manager. (line 1834)
-* BFD_RELOC_SCORE_BCMP: howto manager. (line 1840)
-* BFD_RELOC_SCORE_BRANCH: howto manager. (line 1825)
-* BFD_RELOC_SCORE_CALL15: howto manager. (line 1845)
-* BFD_RELOC_SCORE_DUMMY2: howto manager. (line 1821)
-* BFD_RELOC_SCORE_DUMMY_HI16: howto manager. (line 1846)
-* BFD_RELOC_SCORE_GOT15: howto manager. (line 1843)
-* BFD_RELOC_SCORE_GOT_LO16: howto manager. (line 1844)
-* BFD_RELOC_SCORE_GPREL15: howto manager. (line 1818)
-* BFD_RELOC_SCORE_IMM30: howto manager. (line 1828)
-* BFD_RELOC_SCORE_IMM32: howto manager. (line 1831)
-* BFD_RELOC_SCORE_JMP: howto manager. (line 1822)
-* BFD_RELOC_SH_ALIGN: howto manager. (line 909)
-* BFD_RELOC_SH_CODE: howto manager. (line 910)
-* BFD_RELOC_SH_COPY: howto manager. (line 915)
-* BFD_RELOC_SH_COPY64: howto manager. (line 940)
-* BFD_RELOC_SH_COUNT: howto manager. (line 908)
-* BFD_RELOC_SH_DATA: howto manager. (line 911)
-* BFD_RELOC_SH_DISP12: howto manager. (line 891)
-* BFD_RELOC_SH_DISP12BY2: howto manager. (line 892)
-* BFD_RELOC_SH_DISP12BY4: howto manager. (line 893)
-* BFD_RELOC_SH_DISP12BY8: howto manager. (line 894)
-* BFD_RELOC_SH_DISP20: howto manager. (line 895)
-* BFD_RELOC_SH_DISP20BY8: howto manager. (line 896)
-* BFD_RELOC_SH_FUNCDESC: howto manager. (line 983)
-* BFD_RELOC_SH_GLOB_DAT: howto manager. (line 916)
-* BFD_RELOC_SH_GLOB_DAT64: howto manager. (line 941)
-* BFD_RELOC_SH_GOT10BY4: howto manager. (line 944)
-* BFD_RELOC_SH_GOT10BY8: howto manager. (line 945)
-* BFD_RELOC_SH_GOT20: howto manager. (line 977)
-* BFD_RELOC_SH_GOT_HI16: howto manager. (line 923)
-* BFD_RELOC_SH_GOT_LOW16: howto manager. (line 920)
-* BFD_RELOC_SH_GOT_MEDHI16: howto manager. (line 922)
-* BFD_RELOC_SH_GOT_MEDLOW16: howto manager. (line 921)
-* BFD_RELOC_SH_GOTFUNCDESC: howto manager. (line 979)
-* BFD_RELOC_SH_GOTFUNCDESC20: howto manager. (line 980)
-* BFD_RELOC_SH_GOTOFF20: howto manager. (line 978)
-* BFD_RELOC_SH_GOTOFF_HI16: howto manager. (line 935)
-* BFD_RELOC_SH_GOTOFF_LOW16: howto manager. (line 932)
-* BFD_RELOC_SH_GOTOFF_MEDHI16: howto manager. (line 934)
-* BFD_RELOC_SH_GOTOFF_MEDLOW16: howto manager. (line 933)
-* BFD_RELOC_SH_GOTOFFFUNCDESC: howto manager. (line 981)
-* BFD_RELOC_SH_GOTOFFFUNCDESC20: howto manager. (line 982)
-* BFD_RELOC_SH_GOTPC: howto manager. (line 919)
-* BFD_RELOC_SH_GOTPC_HI16: howto manager. (line 939)
-* BFD_RELOC_SH_GOTPC_LOW16: howto manager. (line 936)
-* BFD_RELOC_SH_GOTPC_MEDHI16: howto manager. (line 938)
-* BFD_RELOC_SH_GOTPC_MEDLOW16: howto manager. (line 937)
-* BFD_RELOC_SH_GOTPLT10BY4: howto manager. (line 946)
-* BFD_RELOC_SH_GOTPLT10BY8: howto manager. (line 947)
-* BFD_RELOC_SH_GOTPLT32: howto manager. (line 948)
-* BFD_RELOC_SH_GOTPLT_HI16: howto manager. (line 927)
-* BFD_RELOC_SH_GOTPLT_LOW16: howto manager. (line 924)
-* BFD_RELOC_SH_GOTPLT_MEDHI16: howto manager. (line 926)
-* BFD_RELOC_SH_GOTPLT_MEDLOW16: howto manager. (line 925)
-* BFD_RELOC_SH_IMM3: howto manager. (line 889)
-* BFD_RELOC_SH_IMM3U: howto manager. (line 890)
-* BFD_RELOC_SH_IMM4: howto manager. (line 897)
-* BFD_RELOC_SH_IMM4BY2: howto manager. (line 898)
-* BFD_RELOC_SH_IMM4BY4: howto manager. (line 899)
-* BFD_RELOC_SH_IMM8: howto manager. (line 900)
-* BFD_RELOC_SH_IMM8BY2: howto manager. (line 901)
-* BFD_RELOC_SH_IMM8BY4: howto manager. (line 902)
-* BFD_RELOC_SH_IMM_HI16: howto manager. (line 966)
-* BFD_RELOC_SH_IMM_HI16_PCREL: howto manager. (line 967)
-* BFD_RELOC_SH_IMM_LOW16: howto manager. (line 960)
-* BFD_RELOC_SH_IMM_LOW16_PCREL: howto manager. (line 961)
-* BFD_RELOC_SH_IMM_MEDHI16: howto manager. (line 964)
-* BFD_RELOC_SH_IMM_MEDHI16_PCREL: howto manager. (line 965)
-* BFD_RELOC_SH_IMM_MEDLOW16: howto manager. (line 962)
-* BFD_RELOC_SH_IMM_MEDLOW16_PCREL: howto manager. (line 963)
-* BFD_RELOC_SH_IMMS10: howto manager. (line 954)
-* BFD_RELOC_SH_IMMS10BY2: howto manager. (line 955)
-* BFD_RELOC_SH_IMMS10BY4: howto manager. (line 956)
-* BFD_RELOC_SH_IMMS10BY8: howto manager. (line 957)
-* BFD_RELOC_SH_IMMS16: howto manager. (line 958)
-* BFD_RELOC_SH_IMMS6: howto manager. (line 951)
-* BFD_RELOC_SH_IMMS6BY32: howto manager. (line 952)
-* BFD_RELOC_SH_IMMU16: howto manager. (line 959)
-* BFD_RELOC_SH_IMMU5: howto manager. (line 950)
-* BFD_RELOC_SH_IMMU6: howto manager. (line 953)
-* BFD_RELOC_SH_JMP_SLOT: howto manager. (line 917)
-* BFD_RELOC_SH_JMP_SLOT64: howto manager. (line 942)
-* BFD_RELOC_SH_LABEL: howto manager. (line 912)
-* BFD_RELOC_SH_LOOP_END: howto manager. (line 914)
-* BFD_RELOC_SH_LOOP_START: howto manager. (line 913)
-* BFD_RELOC_SH_PCDISP12BY2: howto manager. (line 888)
-* BFD_RELOC_SH_PCDISP8BY2: howto manager. (line 887)
-* BFD_RELOC_SH_PCRELIMM8BY2: howto manager. (line 903)
-* BFD_RELOC_SH_PCRELIMM8BY4: howto manager. (line 904)
-* BFD_RELOC_SH_PLT_HI16: howto manager. (line 931)
-* BFD_RELOC_SH_PLT_LOW16: howto manager. (line 928)
-* BFD_RELOC_SH_PLT_MEDHI16: howto manager. (line 930)
-* BFD_RELOC_SH_PLT_MEDLOW16: howto manager. (line 929)
-* BFD_RELOC_SH_PT_16: howto manager. (line 968)
-* BFD_RELOC_SH_RELATIVE: howto manager. (line 918)
-* BFD_RELOC_SH_RELATIVE64: howto manager. (line 943)
-* BFD_RELOC_SH_SHMEDIA_CODE: howto manager. (line 949)
-* BFD_RELOC_SH_SWITCH16: howto manager. (line 905)
-* BFD_RELOC_SH_SWITCH32: howto manager. (line 906)
-* BFD_RELOC_SH_TLS_DTPMOD32: howto manager. (line 974)
-* BFD_RELOC_SH_TLS_DTPOFF32: howto manager. (line 975)
-* BFD_RELOC_SH_TLS_GD_32: howto manager. (line 969)
-* BFD_RELOC_SH_TLS_IE_32: howto manager. (line 972)
-* BFD_RELOC_SH_TLS_LD_32: howto manager. (line 970)
-* BFD_RELOC_SH_TLS_LDO_32: howto manager. (line 971)
-* BFD_RELOC_SH_TLS_LE_32: howto manager. (line 973)
-* BFD_RELOC_SH_TLS_TPOFF32: howto manager. (line 976)
-* BFD_RELOC_SH_USES: howto manager. (line 907)
+* BFD_RELOC_RX_16_OP: howto manager. (line 1740)
+* BFD_RELOC_RX_16U: howto manager. (line 1744)
+* BFD_RELOC_RX_24_OP: howto manager. (line 1741)
+* BFD_RELOC_RX_24U: howto manager. (line 1745)
+* BFD_RELOC_RX_32_OP: howto manager. (line 1742)
+* BFD_RELOC_RX_8U: howto manager. (line 1743)
+* BFD_RELOC_RX_ABS16: howto manager. (line 1755)
+* BFD_RELOC_RX_ABS16_REV: howto manager. (line 1756)
+* BFD_RELOC_RX_ABS16U: howto manager. (line 1759)
+* BFD_RELOC_RX_ABS16UL: howto manager. (line 1761)
+* BFD_RELOC_RX_ABS16UW: howto manager. (line 1760)
+* BFD_RELOC_RX_ABS32: howto manager. (line 1757)
+* BFD_RELOC_RX_ABS32_REV: howto manager. (line 1758)
+* BFD_RELOC_RX_ABS8: howto manager. (line 1754)
+* BFD_RELOC_RX_DIFF: howto manager. (line 1747)
+* BFD_RELOC_RX_DIR3U_PCREL: howto manager. (line 1746)
+* BFD_RELOC_RX_GPRELB: howto manager. (line 1748)
+* BFD_RELOC_RX_GPRELL: howto manager. (line 1750)
+* BFD_RELOC_RX_GPRELW: howto manager. (line 1749)
+* BFD_RELOC_RX_NEG16: howto manager. (line 1737)
+* BFD_RELOC_RX_NEG24: howto manager. (line 1738)
+* BFD_RELOC_RX_NEG32: howto manager. (line 1739)
+* BFD_RELOC_RX_NEG8: howto manager. (line 1736)
+* BFD_RELOC_RX_OP_NEG: howto manager. (line 1753)
+* BFD_RELOC_RX_OP_SUBTRACT: howto manager. (line 1752)
+* BFD_RELOC_RX_RELAX: howto manager. (line 1762)
+* BFD_RELOC_RX_SYM: howto manager. (line 1751)
+* BFD_RELOC_SCORE16_BRANCH: howto manager. (line 1893)
+* BFD_RELOC_SCORE16_JMP: howto manager. (line 1890)
+* BFD_RELOC_SCORE_BCMP: howto manager. (line 1896)
+* BFD_RELOC_SCORE_BRANCH: howto manager. (line 1881)
+* BFD_RELOC_SCORE_CALL15: howto manager. (line 1901)
+* BFD_RELOC_SCORE_DUMMY2: howto manager. (line 1877)
+* BFD_RELOC_SCORE_DUMMY_HI16: howto manager. (line 1902)
+* BFD_RELOC_SCORE_GOT15: howto manager. (line 1899)
+* BFD_RELOC_SCORE_GOT_LO16: howto manager. (line 1900)
+* BFD_RELOC_SCORE_GPREL15: howto manager. (line 1874)
+* BFD_RELOC_SCORE_IMM30: howto manager. (line 1884)
+* BFD_RELOC_SCORE_IMM32: howto manager. (line 1887)
+* BFD_RELOC_SCORE_JMP: howto manager. (line 1878)
+* BFD_RELOC_SH_ALIGN: howto manager. (line 958)
+* BFD_RELOC_SH_CODE: howto manager. (line 959)
+* BFD_RELOC_SH_COPY: howto manager. (line 964)
+* BFD_RELOC_SH_COPY64: howto manager. (line 989)
+* BFD_RELOC_SH_COUNT: howto manager. (line 957)
+* BFD_RELOC_SH_DATA: howto manager. (line 960)
+* BFD_RELOC_SH_DISP12: howto manager. (line 940)
+* BFD_RELOC_SH_DISP12BY2: howto manager. (line 941)
+* BFD_RELOC_SH_DISP12BY4: howto manager. (line 942)
+* BFD_RELOC_SH_DISP12BY8: howto manager. (line 943)
+* BFD_RELOC_SH_DISP20: howto manager. (line 944)
+* BFD_RELOC_SH_DISP20BY8: howto manager. (line 945)
+* BFD_RELOC_SH_FUNCDESC: howto manager. (line 1032)
+* BFD_RELOC_SH_GLOB_DAT: howto manager. (line 965)
+* BFD_RELOC_SH_GLOB_DAT64: howto manager. (line 990)
+* BFD_RELOC_SH_GOT10BY4: howto manager. (line 993)
+* BFD_RELOC_SH_GOT10BY8: howto manager. (line 994)
+* BFD_RELOC_SH_GOT20: howto manager. (line 1026)
+* BFD_RELOC_SH_GOT_HI16: howto manager. (line 972)
+* BFD_RELOC_SH_GOT_LOW16: howto manager. (line 969)
+* BFD_RELOC_SH_GOT_MEDHI16: howto manager. (line 971)
+* BFD_RELOC_SH_GOT_MEDLOW16: howto manager. (line 970)
+* BFD_RELOC_SH_GOTFUNCDESC: howto manager. (line 1028)
+* BFD_RELOC_SH_GOTFUNCDESC20: howto manager. (line 1029)
+* BFD_RELOC_SH_GOTOFF20: howto manager. (line 1027)
+* BFD_RELOC_SH_GOTOFF_HI16: howto manager. (line 984)
+* BFD_RELOC_SH_GOTOFF_LOW16: howto manager. (line 981)
+* BFD_RELOC_SH_GOTOFF_MEDHI16: howto manager. (line 983)
+* BFD_RELOC_SH_GOTOFF_MEDLOW16: howto manager. (line 982)
+* BFD_RELOC_SH_GOTOFFFUNCDESC: howto manager. (line 1030)
+* BFD_RELOC_SH_GOTOFFFUNCDESC20: howto manager. (line 1031)
+* BFD_RELOC_SH_GOTPC: howto manager. (line 968)
+* BFD_RELOC_SH_GOTPC_HI16: howto manager. (line 988)
+* BFD_RELOC_SH_GOTPC_LOW16: howto manager. (line 985)
+* BFD_RELOC_SH_GOTPC_MEDHI16: howto manager. (line 987)
+* BFD_RELOC_SH_GOTPC_MEDLOW16: howto manager. (line 986)
+* BFD_RELOC_SH_GOTPLT10BY4: howto manager. (line 995)
+* BFD_RELOC_SH_GOTPLT10BY8: howto manager. (line 996)
+* BFD_RELOC_SH_GOTPLT32: howto manager. (line 997)
+* BFD_RELOC_SH_GOTPLT_HI16: howto manager. (line 976)
+* BFD_RELOC_SH_GOTPLT_LOW16: howto manager. (line 973)
+* BFD_RELOC_SH_GOTPLT_MEDHI16: howto manager. (line 975)
+* BFD_RELOC_SH_GOTPLT_MEDLOW16: howto manager. (line 974)
+* BFD_RELOC_SH_IMM3: howto manager. (line 938)
+* BFD_RELOC_SH_IMM3U: howto manager. (line 939)
+* BFD_RELOC_SH_IMM4: howto manager. (line 946)
+* BFD_RELOC_SH_IMM4BY2: howto manager. (line 947)
+* BFD_RELOC_SH_IMM4BY4: howto manager. (line 948)
+* BFD_RELOC_SH_IMM8: howto manager. (line 949)
+* BFD_RELOC_SH_IMM8BY2: howto manager. (line 950)
+* BFD_RELOC_SH_IMM8BY4: howto manager. (line 951)
+* BFD_RELOC_SH_IMM_HI16: howto manager. (line 1015)
+* BFD_RELOC_SH_IMM_HI16_PCREL: howto manager. (line 1016)
+* BFD_RELOC_SH_IMM_LOW16: howto manager. (line 1009)
+* BFD_RELOC_SH_IMM_LOW16_PCREL: howto manager. (line 1010)
+* BFD_RELOC_SH_IMM_MEDHI16: howto manager. (line 1013)
+* BFD_RELOC_SH_IMM_MEDHI16_PCREL: howto manager. (line 1014)
+* BFD_RELOC_SH_IMM_MEDLOW16: howto manager. (line 1011)
+* BFD_RELOC_SH_IMM_MEDLOW16_PCREL: howto manager. (line 1012)
+* BFD_RELOC_SH_IMMS10: howto manager. (line 1003)
+* BFD_RELOC_SH_IMMS10BY2: howto manager. (line 1004)
+* BFD_RELOC_SH_IMMS10BY4: howto manager. (line 1005)
+* BFD_RELOC_SH_IMMS10BY8: howto manager. (line 1006)
+* BFD_RELOC_SH_IMMS16: howto manager. (line 1007)
+* BFD_RELOC_SH_IMMS6: howto manager. (line 1000)
+* BFD_RELOC_SH_IMMS6BY32: howto manager. (line 1001)
+* BFD_RELOC_SH_IMMU16: howto manager. (line 1008)
+* BFD_RELOC_SH_IMMU5: howto manager. (line 999)
+* BFD_RELOC_SH_IMMU6: howto manager. (line 1002)
+* BFD_RELOC_SH_JMP_SLOT: howto manager. (line 966)
+* BFD_RELOC_SH_JMP_SLOT64: howto manager. (line 991)
+* BFD_RELOC_SH_LABEL: howto manager. (line 961)
+* BFD_RELOC_SH_LOOP_END: howto manager. (line 963)
+* BFD_RELOC_SH_LOOP_START: howto manager. (line 962)
+* BFD_RELOC_SH_PCDISP12BY2: howto manager. (line 937)
+* BFD_RELOC_SH_PCDISP8BY2: howto manager. (line 936)
+* BFD_RELOC_SH_PCRELIMM8BY2: howto manager. (line 952)
+* BFD_RELOC_SH_PCRELIMM8BY4: howto manager. (line 953)
+* BFD_RELOC_SH_PLT_HI16: howto manager. (line 980)
+* BFD_RELOC_SH_PLT_LOW16: howto manager. (line 977)
+* BFD_RELOC_SH_PLT_MEDHI16: howto manager. (line 979)
+* BFD_RELOC_SH_PLT_MEDLOW16: howto manager. (line 978)
+* BFD_RELOC_SH_PT_16: howto manager. (line 1017)
+* BFD_RELOC_SH_RELATIVE: howto manager. (line 967)
+* BFD_RELOC_SH_RELATIVE64: howto manager. (line 992)
+* BFD_RELOC_SH_SHMEDIA_CODE: howto manager. (line 998)
+* BFD_RELOC_SH_SWITCH16: howto manager. (line 954)
+* BFD_RELOC_SH_SWITCH32: howto manager. (line 955)
+* BFD_RELOC_SH_TLS_DTPMOD32: howto manager. (line 1023)
+* BFD_RELOC_SH_TLS_DTPOFF32: howto manager. (line 1024)
+* BFD_RELOC_SH_TLS_GD_32: howto manager. (line 1018)
+* BFD_RELOC_SH_TLS_IE_32: howto manager. (line 1021)
+* BFD_RELOC_SH_TLS_LD_32: howto manager. (line 1019)
+* BFD_RELOC_SH_TLS_LDO_32: howto manager. (line 1020)
+* BFD_RELOC_SH_TLS_LE_32: howto manager. (line 1022)
+* BFD_RELOC_SH_TLS_TPOFF32: howto manager. (line 1025)
+* BFD_RELOC_SH_USES: howto manager. (line 956)
* BFD_RELOC_SPARC13: howto manager. (line 134)
* BFD_RELOC_SPARC22: howto manager. (line 133)
* BFD_RELOC_SPARC_10: howto manager. (line 163)
@@ -11734,6 +11979,7 @@ BFD Index
* BFD_RELOC_SPARC_GOTDATA_OP: howto manager. (line 152)
* BFD_RELOC_SPARC_GOTDATA_OP_HIX22: howto manager. (line 150)
* BFD_RELOC_SPARC_GOTDATA_OP_LOX10: howto manager. (line 151)
+* BFD_RELOC_SPARC_H34: howto manager. (line 186)
* BFD_RELOC_SPARC_H44: howto manager. (line 182)
* BFD_RELOC_SPARC_HH22: howto manager. (line 166)
* BFD_RELOC_SPARC_HIX22: howto manager. (line 180)
@@ -11755,420 +12001,442 @@ BFD Index
* BFD_RELOC_SPARC_PLT64: howto manager. (line 179)
* BFD_RELOC_SPARC_REGISTER: howto manager. (line 185)
* BFD_RELOC_SPARC_RELATIVE: howto manager. (line 144)
-* BFD_RELOC_SPARC_REV32: howto manager. (line 188)
-* BFD_RELOC_SPARC_TLS_DTPMOD32: howto manager. (line 209)
-* BFD_RELOC_SPARC_TLS_DTPMOD64: howto manager. (line 210)
-* BFD_RELOC_SPARC_TLS_DTPOFF32: howto manager. (line 211)
-* BFD_RELOC_SPARC_TLS_DTPOFF64: howto manager. (line 212)
-* BFD_RELOC_SPARC_TLS_GD_ADD: howto manager. (line 193)
-* BFD_RELOC_SPARC_TLS_GD_CALL: howto manager. (line 194)
-* BFD_RELOC_SPARC_TLS_GD_HI22: howto manager. (line 191)
-* BFD_RELOC_SPARC_TLS_GD_LO10: howto manager. (line 192)
-* BFD_RELOC_SPARC_TLS_IE_ADD: howto manager. (line 206)
-* BFD_RELOC_SPARC_TLS_IE_HI22: howto manager. (line 202)
-* BFD_RELOC_SPARC_TLS_IE_LD: howto manager. (line 204)
-* BFD_RELOC_SPARC_TLS_IE_LDX: howto manager. (line 205)
-* BFD_RELOC_SPARC_TLS_IE_LO10: howto manager. (line 203)
-* BFD_RELOC_SPARC_TLS_LDM_ADD: howto manager. (line 197)
-* BFD_RELOC_SPARC_TLS_LDM_CALL: howto manager. (line 198)
-* BFD_RELOC_SPARC_TLS_LDM_HI22: howto manager. (line 195)
-* BFD_RELOC_SPARC_TLS_LDM_LO10: howto manager. (line 196)
-* BFD_RELOC_SPARC_TLS_LDO_ADD: howto manager. (line 201)
-* BFD_RELOC_SPARC_TLS_LDO_HIX22: howto manager. (line 199)
-* BFD_RELOC_SPARC_TLS_LDO_LOX10: howto manager. (line 200)
-* BFD_RELOC_SPARC_TLS_LE_HIX22: howto manager. (line 207)
-* BFD_RELOC_SPARC_TLS_LE_LOX10: howto manager. (line 208)
-* BFD_RELOC_SPARC_TLS_TPOFF32: howto manager. (line 213)
-* BFD_RELOC_SPARC_TLS_TPOFF64: howto manager. (line 214)
+* BFD_RELOC_SPARC_REV32: howto manager. (line 192)
+* BFD_RELOC_SPARC_SIZE32: howto manager. (line 187)
+* BFD_RELOC_SPARC_SIZE64: howto manager. (line 188)
+* BFD_RELOC_SPARC_TLS_DTPMOD32: howto manager. (line 213)
+* BFD_RELOC_SPARC_TLS_DTPMOD64: howto manager. (line 214)
+* BFD_RELOC_SPARC_TLS_DTPOFF32: howto manager. (line 215)
+* BFD_RELOC_SPARC_TLS_DTPOFF64: howto manager. (line 216)
+* BFD_RELOC_SPARC_TLS_GD_ADD: howto manager. (line 197)
+* BFD_RELOC_SPARC_TLS_GD_CALL: howto manager. (line 198)
+* BFD_RELOC_SPARC_TLS_GD_HI22: howto manager. (line 195)
+* BFD_RELOC_SPARC_TLS_GD_LO10: howto manager. (line 196)
+* BFD_RELOC_SPARC_TLS_IE_ADD: howto manager. (line 210)
+* BFD_RELOC_SPARC_TLS_IE_HI22: howto manager. (line 206)
+* BFD_RELOC_SPARC_TLS_IE_LD: howto manager. (line 208)
+* BFD_RELOC_SPARC_TLS_IE_LDX: howto manager. (line 209)
+* BFD_RELOC_SPARC_TLS_IE_LO10: howto manager. (line 207)
+* BFD_RELOC_SPARC_TLS_LDM_ADD: howto manager. (line 201)
+* BFD_RELOC_SPARC_TLS_LDM_CALL: howto manager. (line 202)
+* BFD_RELOC_SPARC_TLS_LDM_HI22: howto manager. (line 199)
+* BFD_RELOC_SPARC_TLS_LDM_LO10: howto manager. (line 200)
+* BFD_RELOC_SPARC_TLS_LDO_ADD: howto manager. (line 205)
+* BFD_RELOC_SPARC_TLS_LDO_HIX22: howto manager. (line 203)
+* BFD_RELOC_SPARC_TLS_LDO_LOX10: howto manager. (line 204)
+* BFD_RELOC_SPARC_TLS_LE_HIX22: howto manager. (line 211)
+* BFD_RELOC_SPARC_TLS_LE_LOX10: howto manager. (line 212)
+* BFD_RELOC_SPARC_TLS_TPOFF32: howto manager. (line 217)
+* BFD_RELOC_SPARC_TLS_TPOFF64: howto manager. (line 218)
* BFD_RELOC_SPARC_UA16: howto manager. (line 145)
* BFD_RELOC_SPARC_UA32: howto manager. (line 146)
* BFD_RELOC_SPARC_UA64: howto manager. (line 147)
+* BFD_RELOC_SPARC_WDISP10: howto manager. (line 189)
* BFD_RELOC_SPARC_WDISP16: howto manager. (line 172)
* BFD_RELOC_SPARC_WDISP19: howto manager. (line 173)
* BFD_RELOC_SPARC_WDISP22: howto manager. (line 132)
* BFD_RELOC_SPARC_WPLT30: howto manager. (line 140)
-* BFD_RELOC_SPU_ADD_PIC: howto manager. (line 231)
-* BFD_RELOC_SPU_HI16: howto manager. (line 228)
-* BFD_RELOC_SPU_IMM10: howto manager. (line 219)
-* BFD_RELOC_SPU_IMM10W: howto manager. (line 220)
-* BFD_RELOC_SPU_IMM16: howto manager. (line 221)
-* BFD_RELOC_SPU_IMM16W: howto manager. (line 222)
-* BFD_RELOC_SPU_IMM18: howto manager. (line 223)
-* BFD_RELOC_SPU_IMM7: howto manager. (line 217)
-* BFD_RELOC_SPU_IMM8: howto manager. (line 218)
-* BFD_RELOC_SPU_LO16: howto manager. (line 227)
-* BFD_RELOC_SPU_PCREL16: howto manager. (line 226)
-* BFD_RELOC_SPU_PCREL9a: howto manager. (line 224)
-* BFD_RELOC_SPU_PCREL9b: howto manager. (line 225)
-* BFD_RELOC_SPU_PPU32: howto manager. (line 229)
-* BFD_RELOC_SPU_PPU64: howto manager. (line 230)
-* BFD_RELOC_THUMB_PCREL_BLX: howto manager. (line 736)
-* BFD_RELOC_THUMB_PCREL_BRANCH12: howto manager. (line 750)
-* BFD_RELOC_THUMB_PCREL_BRANCH20: howto manager. (line 751)
-* BFD_RELOC_THUMB_PCREL_BRANCH23: howto manager. (line 752)
-* BFD_RELOC_THUMB_PCREL_BRANCH25: howto manager. (line 753)
-* BFD_RELOC_THUMB_PCREL_BRANCH7: howto manager. (line 748)
-* BFD_RELOC_THUMB_PCREL_BRANCH9: howto manager. (line 749)
-* BFD_RELOC_TIC30_LDP: howto manager. (line 1376)
-* BFD_RELOC_TIC54X_16_OF_23: howto manager. (line 1394)
-* BFD_RELOC_TIC54X_23: howto manager. (line 1391)
-* BFD_RELOC_TIC54X_MS7_OF_23: howto manager. (line 1399)
-* BFD_RELOC_TIC54X_PARTLS7: howto manager. (line 1381)
-* BFD_RELOC_TIC54X_PARTMS9: howto manager. (line 1386)
-* BFD_RELOC_TILEGX_BROFF_X1: howto manager. (line 2552)
-* BFD_RELOC_TILEGX_COPY: howto manager. (line 2548)
-* BFD_RELOC_TILEGX_DEST_IMM8_X1: howto manager. (line 2559)
-* BFD_RELOC_TILEGX_GLOB_DAT: howto manager. (line 2549)
-* BFD_RELOC_TILEGX_HW0: howto manager. (line 2541)
-* BFD_RELOC_TILEGX_HW0_LAST: howto manager. (line 2545)
-* BFD_RELOC_TILEGX_HW1: howto manager. (line 2542)
-* BFD_RELOC_TILEGX_HW1_LAST: howto manager. (line 2546)
-* BFD_RELOC_TILEGX_HW2: howto manager. (line 2543)
-* BFD_RELOC_TILEGX_HW2_LAST: howto manager. (line 2547)
-* BFD_RELOC_TILEGX_HW3: howto manager. (line 2544)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0: howto manager. (line 2568)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT: howto manager. (line 2596)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: howto manager. (line 2576)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT: howto manager. (line 2604)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL: howto manager. (line 2590)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: howto manager. (line 2618)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: howto manager. (line 2632)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL: howto manager. (line 2582)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD: howto manager. (line 2610)
-* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE: howto manager. (line 2624)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1: howto manager. (line 2570)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_GOT: howto manager. (line 2598)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST: howto manager. (line 2578)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT: howto manager. (line 2606)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL: howto manager. (line 2592)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: howto manager. (line 2620)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: howto manager. (line 2634)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL: howto manager. (line 2584)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_TLS_GD: howto manager. (line 2612)
-* BFD_RELOC_TILEGX_IMM16_X0_HW1_TLS_IE: howto manager. (line 2626)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2: howto manager. (line 2572)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_GOT: howto manager. (line 2600)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST: howto manager. (line 2580)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_GOT: howto manager. (line 2608)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL: howto manager. (line 2594)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_TLS_GD: howto manager. (line 2622)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_TLS_IE: howto manager. (line 2636)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL: howto manager. (line 2586)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_TLS_GD: howto manager. (line 2614)
-* BFD_RELOC_TILEGX_IMM16_X0_HW2_TLS_IE: howto manager. (line 2628)
-* BFD_RELOC_TILEGX_IMM16_X0_HW3: howto manager. (line 2574)
-* BFD_RELOC_TILEGX_IMM16_X0_HW3_GOT: howto manager. (line 2602)
-* BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL: howto manager. (line 2588)
-* BFD_RELOC_TILEGX_IMM16_X0_HW3_TLS_GD: howto manager. (line 2616)
-* BFD_RELOC_TILEGX_IMM16_X0_HW3_TLS_IE: howto manager. (line 2630)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0: howto manager. (line 2569)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT: howto manager. (line 2597)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: howto manager. (line 2577)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT: howto manager. (line 2605)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL: howto manager. (line 2591)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: howto manager. (line 2619)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: howto manager. (line 2633)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL: howto manager. (line 2583)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD: howto manager. (line 2611)
-* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE: howto manager. (line 2625)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1: howto manager. (line 2571)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_GOT: howto manager. (line 2599)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST: howto manager. (line 2579)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT: howto manager. (line 2607)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL: howto manager. (line 2593)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: howto manager. (line 2621)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: howto manager. (line 2635)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL: howto manager. (line 2585)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_TLS_GD: howto manager. (line 2613)
-* BFD_RELOC_TILEGX_IMM16_X1_HW1_TLS_IE: howto manager. (line 2627)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2: howto manager. (line 2573)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_GOT: howto manager. (line 2601)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST: howto manager. (line 2581)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_GOT: howto manager. (line 2609)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL: howto manager. (line 2595)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_TLS_GD: howto manager. (line 2623)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_TLS_IE: howto manager. (line 2637)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL: howto manager. (line 2587)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_TLS_GD: howto manager. (line 2615)
-* BFD_RELOC_TILEGX_IMM16_X1_HW2_TLS_IE: howto manager. (line 2629)
-* BFD_RELOC_TILEGX_IMM16_X1_HW3: howto manager. (line 2575)
-* BFD_RELOC_TILEGX_IMM16_X1_HW3_GOT: howto manager. (line 2603)
-* BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL: howto manager. (line 2589)
-* BFD_RELOC_TILEGX_IMM16_X1_HW3_TLS_GD: howto manager. (line 2617)
-* BFD_RELOC_TILEGX_IMM16_X1_HW3_TLS_IE: howto manager. (line 2631)
-* BFD_RELOC_TILEGX_IMM8_X0: howto manager. (line 2555)
-* BFD_RELOC_TILEGX_IMM8_X1: howto manager. (line 2557)
-* BFD_RELOC_TILEGX_IMM8_Y0: howto manager. (line 2556)
-* BFD_RELOC_TILEGX_IMM8_Y1: howto manager. (line 2558)
-* BFD_RELOC_TILEGX_JMP_SLOT: howto manager. (line 2550)
-* BFD_RELOC_TILEGX_JUMPOFF_X1: howto manager. (line 2553)
-* BFD_RELOC_TILEGX_JUMPOFF_X1_PLT: howto manager. (line 2554)
-* BFD_RELOC_TILEGX_MF_IMM14_X1: howto manager. (line 2561)
-* BFD_RELOC_TILEGX_MMEND_X0: howto manager. (line 2563)
-* BFD_RELOC_TILEGX_MMSTART_X0: howto manager. (line 2562)
-* BFD_RELOC_TILEGX_MT_IMM14_X1: howto manager. (line 2560)
-* BFD_RELOC_TILEGX_RELATIVE: howto manager. (line 2551)
-* BFD_RELOC_TILEGX_SHAMT_X0: howto manager. (line 2564)
-* BFD_RELOC_TILEGX_SHAMT_X1: howto manager. (line 2565)
-* BFD_RELOC_TILEGX_SHAMT_Y0: howto manager. (line 2566)
-* BFD_RELOC_TILEGX_SHAMT_Y1: howto manager. (line 2567)
-* BFD_RELOC_TILEGX_TLS_DTPMOD32: howto manager. (line 2641)
-* BFD_RELOC_TILEGX_TLS_DTPMOD64: howto manager. (line 2638)
-* BFD_RELOC_TILEGX_TLS_DTPOFF32: howto manager. (line 2642)
-* BFD_RELOC_TILEGX_TLS_DTPOFF64: howto manager. (line 2639)
-* BFD_RELOC_TILEGX_TLS_TPOFF32: howto manager. (line 2643)
-* BFD_RELOC_TILEGX_TLS_TPOFF64: howto manager. (line 2640)
-* BFD_RELOC_TILEPRO_BROFF_X1: howto manager. (line 2478)
-* BFD_RELOC_TILEPRO_COPY: howto manager. (line 2474)
-* BFD_RELOC_TILEPRO_DEST_IMM8_X1: howto manager. (line 2485)
-* BFD_RELOC_TILEPRO_GLOB_DAT: howto manager. (line 2475)
-* BFD_RELOC_TILEPRO_IMM16_X0: howto manager. (line 2488)
-* BFD_RELOC_TILEPRO_IMM16_X0_GOT: howto manager. (line 2504)
-* BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA: howto manager. (line 2510)
-* BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI: howto manager. (line 2508)
-* BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO: howto manager. (line 2506)
-* BFD_RELOC_TILEPRO_IMM16_X0_HA: howto manager. (line 2494)
-* BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL: howto manager. (line 2502)
-* BFD_RELOC_TILEPRO_IMM16_X0_HI: howto manager. (line 2492)
-* BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL: howto manager. (line 2500)
-* BFD_RELOC_TILEPRO_IMM16_X0_LO: howto manager. (line 2490)
-* BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL: howto manager. (line 2498)
-* BFD_RELOC_TILEPRO_IMM16_X0_PCREL: howto manager. (line 2496)
-* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD: howto manager. (line 2520)
-* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA: howto manager. (line 2526)
-* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI: howto manager. (line 2524)
-* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO: howto manager. (line 2522)
-* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE: howto manager. (line 2528)
-* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA: howto manager. (line 2534)
-* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI: howto manager. (line 2532)
-* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO: howto manager. (line 2530)
-* BFD_RELOC_TILEPRO_IMM16_X1: howto manager. (line 2489)
-* BFD_RELOC_TILEPRO_IMM16_X1_GOT: howto manager. (line 2505)
-* BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA: howto manager. (line 2511)
-* BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI: howto manager. (line 2509)
-* BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO: howto manager. (line 2507)
-* BFD_RELOC_TILEPRO_IMM16_X1_HA: howto manager. (line 2495)
-* BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL: howto manager. (line 2503)
-* BFD_RELOC_TILEPRO_IMM16_X1_HI: howto manager. (line 2493)
-* BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL: howto manager. (line 2501)
-* BFD_RELOC_TILEPRO_IMM16_X1_LO: howto manager. (line 2491)
-* BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL: howto manager. (line 2499)
-* BFD_RELOC_TILEPRO_IMM16_X1_PCREL: howto manager. (line 2497)
-* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD: howto manager. (line 2521)
-* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA: howto manager. (line 2527)
-* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI: howto manager. (line 2525)
-* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO: howto manager. (line 2523)
-* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE: howto manager. (line 2529)
-* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA: howto manager. (line 2535)
-* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI: howto manager. (line 2533)
-* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO: howto manager. (line 2531)
-* BFD_RELOC_TILEPRO_IMM8_X0: howto manager. (line 2481)
-* BFD_RELOC_TILEPRO_IMM8_X1: howto manager. (line 2483)
-* BFD_RELOC_TILEPRO_IMM8_Y0: howto manager. (line 2482)
-* BFD_RELOC_TILEPRO_IMM8_Y1: howto manager. (line 2484)
-* BFD_RELOC_TILEPRO_JMP_SLOT: howto manager. (line 2476)
-* BFD_RELOC_TILEPRO_JOFFLONG_X1: howto manager. (line 2479)
-* BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT: howto manager. (line 2480)
-* BFD_RELOC_TILEPRO_MF_IMM15_X1: howto manager. (line 2487)
-* BFD_RELOC_TILEPRO_MMEND_X0: howto manager. (line 2513)
-* BFD_RELOC_TILEPRO_MMEND_X1: howto manager. (line 2515)
-* BFD_RELOC_TILEPRO_MMSTART_X0: howto manager. (line 2512)
-* BFD_RELOC_TILEPRO_MMSTART_X1: howto manager. (line 2514)
-* BFD_RELOC_TILEPRO_MT_IMM15_X1: howto manager. (line 2486)
-* BFD_RELOC_TILEPRO_RELATIVE: howto manager. (line 2477)
-* BFD_RELOC_TILEPRO_SHAMT_X0: howto manager. (line 2516)
-* BFD_RELOC_TILEPRO_SHAMT_X1: howto manager. (line 2517)
-* BFD_RELOC_TILEPRO_SHAMT_Y0: howto manager. (line 2518)
-* BFD_RELOC_TILEPRO_SHAMT_Y1: howto manager. (line 2519)
-* BFD_RELOC_TILEPRO_TLS_DTPMOD32: howto manager. (line 2536)
-* BFD_RELOC_TILEPRO_TLS_DTPOFF32: howto manager. (line 2537)
-* BFD_RELOC_TILEPRO_TLS_TPOFF32: howto manager. (line 2538)
-* bfd_reloc_type_lookup: howto manager. (line 2669)
-* BFD_RELOC_V850_16_GOT: howto manager. (line 1332)
-* BFD_RELOC_V850_16_GOTOFF: howto manager. (line 1356)
-* BFD_RELOC_V850_16_PCREL: howto manager. (line 1302)
-* BFD_RELOC_V850_16_S1: howto manager. (line 1320)
-* BFD_RELOC_V850_16_SPLIT_OFFSET: howto manager. (line 1317)
-* BFD_RELOC_V850_17_PCREL: howto manager. (line 1305)
-* BFD_RELOC_V850_22_PCREL: howto manager. (line 1237)
-* BFD_RELOC_V850_22_PLT_PCREL: howto manager. (line 1338)
-* BFD_RELOC_V850_23: howto manager. (line 1308)
-* BFD_RELOC_V850_32_ABS: howto manager. (line 1314)
-* BFD_RELOC_V850_32_GOT: howto manager. (line 1335)
-* BFD_RELOC_V850_32_GOTOFF: howto manager. (line 1359)
-* BFD_RELOC_V850_32_GOTPCREL: howto manager. (line 1329)
-* BFD_RELOC_V850_32_PCREL: howto manager. (line 1311)
-* BFD_RELOC_V850_32_PLT_PCREL: howto manager. (line 1341)
-* BFD_RELOC_V850_9_PCREL: howto manager. (line 1234)
-* BFD_RELOC_V850_ALIGN: howto manager. (line 1295)
-* BFD_RELOC_V850_CALLT_15_16_OFFSET: howto manager. (line 1326)
-* BFD_RELOC_V850_CALLT_16_16_OFFSET: howto manager. (line 1286)
-* BFD_RELOC_V850_CALLT_6_7_OFFSET: howto manager. (line 1283)
-* BFD_RELOC_V850_CODE: howto manager. (line 1362)
-* BFD_RELOC_V850_COPY: howto manager. (line 1344)
-* BFD_RELOC_V850_DATA: howto manager. (line 1365)
-* BFD_RELOC_V850_GLOB_DAT: howto manager. (line 1347)
-* BFD_RELOC_V850_JMP_SLOT: howto manager. (line 1350)
-* BFD_RELOC_V850_LO16_S1: howto manager. (line 1323)
-* BFD_RELOC_V850_LO16_SPLIT_OFFSET: howto manager. (line 1298)
-* BFD_RELOC_V850_LONGCALL: howto manager. (line 1289)
-* BFD_RELOC_V850_LONGJUMP: howto manager. (line 1292)
-* BFD_RELOC_V850_RELATIVE: howto manager. (line 1353)
-* BFD_RELOC_V850_SDA_15_16_OFFSET: howto manager. (line 1243)
-* BFD_RELOC_V850_SDA_16_16_OFFSET: howto manager. (line 1240)
-* BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager. (line 1275)
-* BFD_RELOC_V850_TDA_16_16_OFFSET: howto manager. (line 1265)
-* BFD_RELOC_V850_TDA_4_4_OFFSET: howto manager. (line 1272)
-* BFD_RELOC_V850_TDA_4_5_OFFSET: howto manager. (line 1268)
-* BFD_RELOC_V850_TDA_6_8_OFFSET: howto manager. (line 1254)
-* BFD_RELOC_V850_TDA_7_7_OFFSET: howto manager. (line 1262)
-* BFD_RELOC_V850_TDA_7_8_OFFSET: howto manager. (line 1258)
-* BFD_RELOC_V850_ZDA_15_16_OFFSET: howto manager. (line 1250)
-* BFD_RELOC_V850_ZDA_16_16_OFFSET: howto manager. (line 1247)
-* BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager. (line 1279)
-* BFD_RELOC_VAX_GLOB_DAT: howto manager. (line 2240)
-* BFD_RELOC_VAX_JMP_SLOT: howto manager. (line 2241)
-* BFD_RELOC_VAX_RELATIVE: howto manager. (line 2242)
-* BFD_RELOC_VPE4KMATH_DATA: howto manager. (line 1879)
-* BFD_RELOC_VPE4KMATH_INSN: howto manager. (line 1880)
-* BFD_RELOC_VTABLE_ENTRY: howto manager. (line 1884)
-* BFD_RELOC_VTABLE_INHERIT: howto manager. (line 1883)
-* BFD_RELOC_X86_64_32S: howto manager. (line 571)
-* BFD_RELOC_X86_64_COPY: howto manager. (line 566)
-* BFD_RELOC_X86_64_DTPMOD64: howto manager. (line 572)
-* BFD_RELOC_X86_64_DTPOFF32: howto manager. (line 577)
-* BFD_RELOC_X86_64_DTPOFF64: howto manager. (line 573)
-* BFD_RELOC_X86_64_GLOB_DAT: howto manager. (line 567)
-* BFD_RELOC_X86_64_GOT32: howto manager. (line 564)
-* BFD_RELOC_X86_64_GOT64: howto manager. (line 582)
-* BFD_RELOC_X86_64_GOTOFF64: howto manager. (line 580)
-* BFD_RELOC_X86_64_GOTPC32: howto manager. (line 581)
-* BFD_RELOC_X86_64_GOTPC32_TLSDESC: howto manager. (line 587)
-* BFD_RELOC_X86_64_GOTPC64: howto manager. (line 584)
-* BFD_RELOC_X86_64_GOTPCREL: howto manager. (line 570)
-* BFD_RELOC_X86_64_GOTPCREL64: howto manager. (line 583)
-* BFD_RELOC_X86_64_GOTPLT64: howto manager. (line 585)
-* BFD_RELOC_X86_64_GOTTPOFF: howto manager. (line 578)
-* BFD_RELOC_X86_64_IRELATIVE: howto manager. (line 590)
-* BFD_RELOC_X86_64_JUMP_SLOT: howto manager. (line 568)
-* BFD_RELOC_X86_64_PLT32: howto manager. (line 565)
-* BFD_RELOC_X86_64_PLTOFF64: howto manager. (line 586)
-* BFD_RELOC_X86_64_RELATIVE: howto manager. (line 569)
-* BFD_RELOC_X86_64_TLSDESC: howto manager. (line 589)
-* BFD_RELOC_X86_64_TLSDESC_CALL: howto manager. (line 588)
-* BFD_RELOC_X86_64_TLSGD: howto manager. (line 575)
-* BFD_RELOC_X86_64_TLSLD: howto manager. (line 576)
-* BFD_RELOC_X86_64_TPOFF32: howto manager. (line 579)
-* BFD_RELOC_X86_64_TPOFF64: howto manager. (line 574)
-* BFD_RELOC_XC16X_PAG: howto manager. (line 2234)
-* BFD_RELOC_XC16X_POF: howto manager. (line 2235)
-* BFD_RELOC_XC16X_SEG: howto manager. (line 2236)
-* BFD_RELOC_XC16X_SOF: howto manager. (line 2237)
-* BFD_RELOC_XSTORMY16_12: howto manager. (line 2226)
-* BFD_RELOC_XSTORMY16_24: howto manager. (line 2227)
-* BFD_RELOC_XSTORMY16_FPTR16: howto manager. (line 2228)
-* BFD_RELOC_XSTORMY16_REL_12: howto manager. (line 2225)
-* BFD_RELOC_XTENSA_ASM_EXPAND: howto manager. (line 2346)
-* BFD_RELOC_XTENSA_ASM_SIMPLIFY: howto manager. (line 2351)
-* BFD_RELOC_XTENSA_DIFF16: howto manager. (line 2293)
-* BFD_RELOC_XTENSA_DIFF32: howto manager. (line 2294)
-* BFD_RELOC_XTENSA_DIFF8: howto manager. (line 2292)
-* BFD_RELOC_XTENSA_GLOB_DAT: howto manager. (line 2282)
-* BFD_RELOC_XTENSA_JMP_SLOT: howto manager. (line 2283)
-* BFD_RELOC_XTENSA_OP0: howto manager. (line 2340)
-* BFD_RELOC_XTENSA_OP1: howto manager. (line 2341)
-* BFD_RELOC_XTENSA_OP2: howto manager. (line 2342)
-* BFD_RELOC_XTENSA_PLT: howto manager. (line 2287)
-* BFD_RELOC_XTENSA_RELATIVE: howto manager. (line 2284)
-* BFD_RELOC_XTENSA_RTLD: howto manager. (line 2277)
-* BFD_RELOC_XTENSA_SLOT0_ALT: howto manager. (line 2322)
-* BFD_RELOC_XTENSA_SLOT0_OP: howto manager. (line 2302)
-* BFD_RELOC_XTENSA_SLOT10_ALT: howto manager. (line 2332)
-* BFD_RELOC_XTENSA_SLOT10_OP: howto manager. (line 2312)
-* BFD_RELOC_XTENSA_SLOT11_ALT: howto manager. (line 2333)
-* BFD_RELOC_XTENSA_SLOT11_OP: howto manager. (line 2313)
-* BFD_RELOC_XTENSA_SLOT12_ALT: howto manager. (line 2334)
-* BFD_RELOC_XTENSA_SLOT12_OP: howto manager. (line 2314)
-* BFD_RELOC_XTENSA_SLOT13_ALT: howto manager. (line 2335)
-* BFD_RELOC_XTENSA_SLOT13_OP: howto manager. (line 2315)
-* BFD_RELOC_XTENSA_SLOT14_ALT: howto manager. (line 2336)
-* BFD_RELOC_XTENSA_SLOT14_OP: howto manager. (line 2316)
-* BFD_RELOC_XTENSA_SLOT1_ALT: howto manager. (line 2323)
-* BFD_RELOC_XTENSA_SLOT1_OP: howto manager. (line 2303)
-* BFD_RELOC_XTENSA_SLOT2_ALT: howto manager. (line 2324)
-* BFD_RELOC_XTENSA_SLOT2_OP: howto manager. (line 2304)
-* BFD_RELOC_XTENSA_SLOT3_ALT: howto manager. (line 2325)
-* BFD_RELOC_XTENSA_SLOT3_OP: howto manager. (line 2305)
-* BFD_RELOC_XTENSA_SLOT4_ALT: howto manager. (line 2326)
-* BFD_RELOC_XTENSA_SLOT4_OP: howto manager. (line 2306)
-* BFD_RELOC_XTENSA_SLOT5_ALT: howto manager. (line 2327)
-* BFD_RELOC_XTENSA_SLOT5_OP: howto manager. (line 2307)
-* BFD_RELOC_XTENSA_SLOT6_ALT: howto manager. (line 2328)
-* BFD_RELOC_XTENSA_SLOT6_OP: howto manager. (line 2308)
-* BFD_RELOC_XTENSA_SLOT7_ALT: howto manager. (line 2329)
-* BFD_RELOC_XTENSA_SLOT7_OP: howto manager. (line 2309)
-* BFD_RELOC_XTENSA_SLOT8_ALT: howto manager. (line 2330)
-* BFD_RELOC_XTENSA_SLOT8_OP: howto manager. (line 2310)
-* BFD_RELOC_XTENSA_SLOT9_ALT: howto manager. (line 2331)
-* BFD_RELOC_XTENSA_SLOT9_OP: howto manager. (line 2311)
-* BFD_RELOC_XTENSA_TLS_ARG: howto manager. (line 2361)
-* BFD_RELOC_XTENSA_TLS_CALL: howto manager. (line 2362)
-* BFD_RELOC_XTENSA_TLS_DTPOFF: howto manager. (line 2358)
-* BFD_RELOC_XTENSA_TLS_FUNC: howto manager. (line 2360)
-* BFD_RELOC_XTENSA_TLS_TPOFF: howto manager. (line 2359)
-* BFD_RELOC_XTENSA_TLSDESC_ARG: howto manager. (line 2357)
-* BFD_RELOC_XTENSA_TLSDESC_FN: howto manager. (line 2356)
-* BFD_RELOC_Z80_DISP8: howto manager. (line 2365)
-* BFD_RELOC_Z8K_CALLR: howto manager. (line 2371)
-* BFD_RELOC_Z8K_DISP7: howto manager. (line 2368)
-* BFD_RELOC_Z8K_IMM4L: howto manager. (line 2374)
-* bfd_rename_section: section prototypes. (line 155)
-* bfd_scan_arch: Architectures. (line 463)
-* bfd_scan_vma: BFD front end. (line 535)
-* bfd_seach_for_target: bfd_target. (line 519)
+* BFD_RELOC_SPU_ADD_PIC: howto manager. (line 235)
+* BFD_RELOC_SPU_HI16: howto manager. (line 232)
+* BFD_RELOC_SPU_IMM10: howto manager. (line 223)
+* BFD_RELOC_SPU_IMM10W: howto manager. (line 224)
+* BFD_RELOC_SPU_IMM16: howto manager. (line 225)
+* BFD_RELOC_SPU_IMM16W: howto manager. (line 226)
+* BFD_RELOC_SPU_IMM18: howto manager. (line 227)
+* BFD_RELOC_SPU_IMM7: howto manager. (line 221)
+* BFD_RELOC_SPU_IMM8: howto manager. (line 222)
+* BFD_RELOC_SPU_LO16: howto manager. (line 231)
+* BFD_RELOC_SPU_PCREL16: howto manager. (line 230)
+* BFD_RELOC_SPU_PCREL9a: howto manager. (line 228)
+* BFD_RELOC_SPU_PCREL9b: howto manager. (line 229)
+* BFD_RELOC_SPU_PPU32: howto manager. (line 233)
+* BFD_RELOC_SPU_PPU64: howto manager. (line 234)
+* BFD_RELOC_THUMB_PCREL_BLX: howto manager. (line 785)
+* BFD_RELOC_THUMB_PCREL_BRANCH12: howto manager. (line 799)
+* BFD_RELOC_THUMB_PCREL_BRANCH20: howto manager. (line 800)
+* BFD_RELOC_THUMB_PCREL_BRANCH23: howto manager. (line 801)
+* BFD_RELOC_THUMB_PCREL_BRANCH25: howto manager. (line 802)
+* BFD_RELOC_THUMB_PCREL_BRANCH7: howto manager. (line 797)
+* BFD_RELOC_THUMB_PCREL_BRANCH9: howto manager. (line 798)
+* BFD_RELOC_TIC30_LDP: howto manager. (line 1417)
+* BFD_RELOC_TIC54X_16_OF_23: howto manager. (line 1435)
+* BFD_RELOC_TIC54X_23: howto manager. (line 1432)
+* BFD_RELOC_TIC54X_MS7_OF_23: howto manager. (line 1440)
+* BFD_RELOC_TIC54X_PARTLS7: howto manager. (line 1422)
+* BFD_RELOC_TIC54X_PARTMS9: howto manager. (line 1427)
+* BFD_RELOC_TILEGX_BROFF_X1: howto manager. (line 2687)
+* BFD_RELOC_TILEGX_COPY: howto manager. (line 2683)
+* BFD_RELOC_TILEGX_DEST_IMM8_X1: howto manager. (line 2694)
+* BFD_RELOC_TILEGX_GLOB_DAT: howto manager. (line 2684)
+* BFD_RELOC_TILEGX_HW0: howto manager. (line 2676)
+* BFD_RELOC_TILEGX_HW0_LAST: howto manager. (line 2680)
+* BFD_RELOC_TILEGX_HW1: howto manager. (line 2677)
+* BFD_RELOC_TILEGX_HW1_LAST: howto manager. (line 2681)
+* BFD_RELOC_TILEGX_HW2: howto manager. (line 2678)
+* BFD_RELOC_TILEGX_HW2_LAST: howto manager. (line 2682)
+* BFD_RELOC_TILEGX_HW3: howto manager. (line 2679)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0: howto manager. (line 2703)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT: howto manager. (line 2731)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: howto manager. (line 2711)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT: howto manager. (line 2733)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL: howto manager. (line 2725)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: howto manager. (line 2745)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: howto manager. (line 2751)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE: howto manager. (line 2741)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL: howto manager. (line 2717)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD: howto manager. (line 2737)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE: howto manager. (line 2749)
+* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE: howto manager. (line 2739)
+* BFD_RELOC_TILEGX_IMM16_X0_HW1: howto manager. (line 2705)
+* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST: howto manager. (line 2713)
+* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT: howto manager. (line 2735)
+* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL: howto manager. (line 2727)
+* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: howto manager. (line 2747)
+* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: howto manager. (line 2753)
+* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE: howto manager. (line 2743)
+* BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL: howto manager. (line 2719)
+* BFD_RELOC_TILEGX_IMM16_X0_HW2: howto manager. (line 2707)
+* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST: howto manager. (line 2715)
+* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL: howto manager. (line 2729)
+* BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL: howto manager. (line 2721)
+* BFD_RELOC_TILEGX_IMM16_X0_HW3: howto manager. (line 2709)
+* BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL: howto manager. (line 2723)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0: howto manager. (line 2704)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT: howto manager. (line 2732)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: howto manager. (line 2712)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT: howto manager. (line 2734)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL: howto manager. (line 2726)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: howto manager. (line 2746)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: howto manager. (line 2752)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE: howto manager. (line 2742)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL: howto manager. (line 2718)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD: howto manager. (line 2738)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE: howto manager. (line 2750)
+* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE: howto manager. (line 2740)
+* BFD_RELOC_TILEGX_IMM16_X1_HW1: howto manager. (line 2706)
+* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST: howto manager. (line 2714)
+* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT: howto manager. (line 2736)
+* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL: howto manager. (line 2728)
+* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: howto manager. (line 2748)
+* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: howto manager. (line 2754)
+* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE: howto manager. (line 2744)
+* BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL: howto manager. (line 2720)
+* BFD_RELOC_TILEGX_IMM16_X1_HW2: howto manager. (line 2708)
+* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST: howto manager. (line 2716)
+* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL: howto manager. (line 2730)
+* BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL: howto manager. (line 2722)
+* BFD_RELOC_TILEGX_IMM16_X1_HW3: howto manager. (line 2710)
+* BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL: howto manager. (line 2724)
+* BFD_RELOC_TILEGX_IMM8_X0: howto manager. (line 2690)
+* BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD: howto manager. (line 2767)
+* BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD: howto manager. (line 2762)
+* BFD_RELOC_TILEGX_IMM8_X1: howto manager. (line 2692)
+* BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD: howto manager. (line 2768)
+* BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD: howto manager. (line 2763)
+* BFD_RELOC_TILEGX_IMM8_Y0: howto manager. (line 2691)
+* BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD: howto manager. (line 2769)
+* BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD: howto manager. (line 2764)
+* BFD_RELOC_TILEGX_IMM8_Y1: howto manager. (line 2693)
+* BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD: howto manager. (line 2770)
+* BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD: howto manager. (line 2765)
+* BFD_RELOC_TILEGX_JMP_SLOT: howto manager. (line 2685)
+* BFD_RELOC_TILEGX_JUMPOFF_X1: howto manager. (line 2688)
+* BFD_RELOC_TILEGX_JUMPOFF_X1_PLT: howto manager. (line 2689)
+* BFD_RELOC_TILEGX_MF_IMM14_X1: howto manager. (line 2696)
+* BFD_RELOC_TILEGX_MMEND_X0: howto manager. (line 2698)
+* BFD_RELOC_TILEGX_MMSTART_X0: howto manager. (line 2697)
+* BFD_RELOC_TILEGX_MT_IMM14_X1: howto manager. (line 2695)
+* BFD_RELOC_TILEGX_RELATIVE: howto manager. (line 2686)
+* BFD_RELOC_TILEGX_SHAMT_X0: howto manager. (line 2699)
+* BFD_RELOC_TILEGX_SHAMT_X1: howto manager. (line 2700)
+* BFD_RELOC_TILEGX_SHAMT_Y0: howto manager. (line 2701)
+* BFD_RELOC_TILEGX_SHAMT_Y1: howto manager. (line 2702)
+* BFD_RELOC_TILEGX_TLS_DTPMOD32: howto manager. (line 2758)
+* BFD_RELOC_TILEGX_TLS_DTPMOD64: howto manager. (line 2755)
+* BFD_RELOC_TILEGX_TLS_DTPOFF32: howto manager. (line 2759)
+* BFD_RELOC_TILEGX_TLS_DTPOFF64: howto manager. (line 2756)
+* BFD_RELOC_TILEGX_TLS_GD_CALL: howto manager. (line 2761)
+* BFD_RELOC_TILEGX_TLS_IE_LOAD: howto manager. (line 2766)
+* BFD_RELOC_TILEGX_TLS_TPOFF32: howto manager. (line 2760)
+* BFD_RELOC_TILEGX_TLS_TPOFF64: howto manager. (line 2757)
+* BFD_RELOC_TILEPRO_BROFF_X1: howto manager. (line 2599)
+* BFD_RELOC_TILEPRO_COPY: howto manager. (line 2595)
+* BFD_RELOC_TILEPRO_DEST_IMM8_X1: howto manager. (line 2606)
+* BFD_RELOC_TILEPRO_GLOB_DAT: howto manager. (line 2596)
+* BFD_RELOC_TILEPRO_IMM16_X0: howto manager. (line 2609)
+* BFD_RELOC_TILEPRO_IMM16_X0_GOT: howto manager. (line 2625)
+* BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA: howto manager. (line 2631)
+* BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI: howto manager. (line 2629)
+* BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO: howto manager. (line 2627)
+* BFD_RELOC_TILEPRO_IMM16_X0_HA: howto manager. (line 2615)
+* BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL: howto manager. (line 2623)
+* BFD_RELOC_TILEPRO_IMM16_X0_HI: howto manager. (line 2613)
+* BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL: howto manager. (line 2621)
+* BFD_RELOC_TILEPRO_IMM16_X0_LO: howto manager. (line 2611)
+* BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL: howto manager. (line 2619)
+* BFD_RELOC_TILEPRO_IMM16_X0_PCREL: howto manager. (line 2617)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD: howto manager. (line 2647)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA: howto manager. (line 2653)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI: howto manager. (line 2651)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO: howto manager. (line 2649)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE: howto manager. (line 2655)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA: howto manager. (line 2661)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI: howto manager. (line 2659)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO: howto manager. (line 2657)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE: howto manager. (line 2666)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA: howto manager. (line 2672)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI: howto manager. (line 2670)
+* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO: howto manager. (line 2668)
+* BFD_RELOC_TILEPRO_IMM16_X1: howto manager. (line 2610)
+* BFD_RELOC_TILEPRO_IMM16_X1_GOT: howto manager. (line 2626)
+* BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA: howto manager. (line 2632)
+* BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI: howto manager. (line 2630)
+* BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO: howto manager. (line 2628)
+* BFD_RELOC_TILEPRO_IMM16_X1_HA: howto manager. (line 2616)
+* BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL: howto manager. (line 2624)
+* BFD_RELOC_TILEPRO_IMM16_X1_HI: howto manager. (line 2614)
+* BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL: howto manager. (line 2622)
+* BFD_RELOC_TILEPRO_IMM16_X1_LO: howto manager. (line 2612)
+* BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL: howto manager. (line 2620)
+* BFD_RELOC_TILEPRO_IMM16_X1_PCREL: howto manager. (line 2618)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD: howto manager. (line 2648)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA: howto manager. (line 2654)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI: howto manager. (line 2652)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO: howto manager. (line 2650)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE: howto manager. (line 2656)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA: howto manager. (line 2662)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI: howto manager. (line 2660)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO: howto manager. (line 2658)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE: howto manager. (line 2667)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA: howto manager. (line 2673)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI: howto manager. (line 2671)
+* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO: howto manager. (line 2669)
+* BFD_RELOC_TILEPRO_IMM8_X0: howto manager. (line 2602)
+* BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD: howto manager. (line 2642)
+* BFD_RELOC_TILEPRO_IMM8_X1: howto manager. (line 2604)
+* BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD: howto manager. (line 2643)
+* BFD_RELOC_TILEPRO_IMM8_Y0: howto manager. (line 2603)
+* BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD: howto manager. (line 2644)
+* BFD_RELOC_TILEPRO_IMM8_Y1: howto manager. (line 2605)
+* BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD: howto manager. (line 2645)
+* BFD_RELOC_TILEPRO_JMP_SLOT: howto manager. (line 2597)
+* BFD_RELOC_TILEPRO_JOFFLONG_X1: howto manager. (line 2600)
+* BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT: howto manager. (line 2601)
+* BFD_RELOC_TILEPRO_MF_IMM15_X1: howto manager. (line 2608)
+* BFD_RELOC_TILEPRO_MMEND_X0: howto manager. (line 2634)
+* BFD_RELOC_TILEPRO_MMEND_X1: howto manager. (line 2636)
+* BFD_RELOC_TILEPRO_MMSTART_X0: howto manager. (line 2633)
+* BFD_RELOC_TILEPRO_MMSTART_X1: howto manager. (line 2635)
+* BFD_RELOC_TILEPRO_MT_IMM15_X1: howto manager. (line 2607)
+* BFD_RELOC_TILEPRO_RELATIVE: howto manager. (line 2598)
+* BFD_RELOC_TILEPRO_SHAMT_X0: howto manager. (line 2637)
+* BFD_RELOC_TILEPRO_SHAMT_X1: howto manager. (line 2638)
+* BFD_RELOC_TILEPRO_SHAMT_Y0: howto manager. (line 2639)
+* BFD_RELOC_TILEPRO_SHAMT_Y1: howto manager. (line 2640)
+* BFD_RELOC_TILEPRO_TLS_DTPMOD32: howto manager. (line 2663)
+* BFD_RELOC_TILEPRO_TLS_DTPOFF32: howto manager. (line 2664)
+* BFD_RELOC_TILEPRO_TLS_GD_CALL: howto manager. (line 2641)
+* BFD_RELOC_TILEPRO_TLS_IE_LOAD: howto manager. (line 2646)
+* BFD_RELOC_TILEPRO_TLS_TPOFF32: howto manager. (line 2665)
+* bfd_reloc_type_lookup: howto manager. (line 2796)
+* BFD_RELOC_V850_16_GOT: howto manager. (line 1381)
+* BFD_RELOC_V850_16_GOTOFF: howto manager. (line 1405)
+* BFD_RELOC_V850_16_PCREL: howto manager. (line 1351)
+* BFD_RELOC_V850_16_S1: howto manager. (line 1369)
+* BFD_RELOC_V850_16_SPLIT_OFFSET: howto manager. (line 1366)
+* BFD_RELOC_V850_17_PCREL: howto manager. (line 1354)
+* BFD_RELOC_V850_22_PCREL: howto manager. (line 1286)
+* BFD_RELOC_V850_22_PLT_PCREL: howto manager. (line 1387)
+* BFD_RELOC_V850_23: howto manager. (line 1357)
+* BFD_RELOC_V850_32_ABS: howto manager. (line 1363)
+* BFD_RELOC_V850_32_GOT: howto manager. (line 1384)
+* BFD_RELOC_V850_32_GOTOFF: howto manager. (line 1408)
+* BFD_RELOC_V850_32_GOTPCREL: howto manager. (line 1378)
+* BFD_RELOC_V850_32_PCREL: howto manager. (line 1360)
+* BFD_RELOC_V850_32_PLT_PCREL: howto manager. (line 1390)
+* BFD_RELOC_V850_9_PCREL: howto manager. (line 1283)
+* BFD_RELOC_V850_ALIGN: howto manager. (line 1344)
+* BFD_RELOC_V850_CALLT_15_16_OFFSET: howto manager. (line 1375)
+* BFD_RELOC_V850_CALLT_16_16_OFFSET: howto manager. (line 1335)
+* BFD_RELOC_V850_CALLT_6_7_OFFSET: howto manager. (line 1332)
+* BFD_RELOC_V850_CODE: howto manager. (line 1411)
+* BFD_RELOC_V850_COPY: howto manager. (line 1393)
+* BFD_RELOC_V850_DATA: howto manager. (line 1414)
+* BFD_RELOC_V850_GLOB_DAT: howto manager. (line 1396)
+* BFD_RELOC_V850_JMP_SLOT: howto manager. (line 1399)
+* BFD_RELOC_V850_LO16_S1: howto manager. (line 1372)
+* BFD_RELOC_V850_LO16_SPLIT_OFFSET: howto manager. (line 1347)
+* BFD_RELOC_V850_LONGCALL: howto manager. (line 1338)
+* BFD_RELOC_V850_LONGJUMP: howto manager. (line 1341)
+* BFD_RELOC_V850_RELATIVE: howto manager. (line 1402)
+* BFD_RELOC_V850_SDA_15_16_OFFSET: howto manager. (line 1292)
+* BFD_RELOC_V850_SDA_16_16_OFFSET: howto manager. (line 1289)
+* BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager. (line 1324)
+* BFD_RELOC_V850_TDA_16_16_OFFSET: howto manager. (line 1314)
+* BFD_RELOC_V850_TDA_4_4_OFFSET: howto manager. (line 1321)
+* BFD_RELOC_V850_TDA_4_5_OFFSET: howto manager. (line 1317)
+* BFD_RELOC_V850_TDA_6_8_OFFSET: howto manager. (line 1303)
+* BFD_RELOC_V850_TDA_7_7_OFFSET: howto manager. (line 1311)
+* BFD_RELOC_V850_TDA_7_8_OFFSET: howto manager. (line 1307)
+* BFD_RELOC_V850_ZDA_15_16_OFFSET: howto manager. (line 1299)
+* BFD_RELOC_V850_ZDA_16_16_OFFSET: howto manager. (line 1296)
+* BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager. (line 1328)
+* BFD_RELOC_VAX_GLOB_DAT: howto manager. (line 2358)
+* BFD_RELOC_VAX_JMP_SLOT: howto manager. (line 2359)
+* BFD_RELOC_VAX_RELATIVE: howto manager. (line 2360)
+* BFD_RELOC_VPE4KMATH_DATA: howto manager. (line 1935)
+* BFD_RELOC_VPE4KMATH_INSN: howto manager. (line 1936)
+* BFD_RELOC_VTABLE_ENTRY: howto manager. (line 1940)
+* BFD_RELOC_VTABLE_INHERIT: howto manager. (line 1939)
+* BFD_RELOC_X86_64_32S: howto manager. (line 603)
+* BFD_RELOC_X86_64_COPY: howto manager. (line 598)
+* BFD_RELOC_X86_64_DTPMOD64: howto manager. (line 604)
+* BFD_RELOC_X86_64_DTPOFF32: howto manager. (line 609)
+* BFD_RELOC_X86_64_DTPOFF64: howto manager. (line 605)
+* BFD_RELOC_X86_64_GLOB_DAT: howto manager. (line 599)
+* BFD_RELOC_X86_64_GOT32: howto manager. (line 596)
+* BFD_RELOC_X86_64_GOT64: howto manager. (line 614)
+* BFD_RELOC_X86_64_GOTOFF64: howto manager. (line 612)
+* BFD_RELOC_X86_64_GOTPC32: howto manager. (line 613)
+* BFD_RELOC_X86_64_GOTPC32_TLSDESC: howto manager. (line 619)
+* BFD_RELOC_X86_64_GOTPC64: howto manager. (line 616)
+* BFD_RELOC_X86_64_GOTPCREL: howto manager. (line 602)
+* BFD_RELOC_X86_64_GOTPCREL64: howto manager. (line 615)
+* BFD_RELOC_X86_64_GOTPLT64: howto manager. (line 617)
+* BFD_RELOC_X86_64_GOTTPOFF: howto manager. (line 610)
+* BFD_RELOC_X86_64_IRELATIVE: howto manager. (line 622)
+* BFD_RELOC_X86_64_JUMP_SLOT: howto manager. (line 600)
+* BFD_RELOC_X86_64_PLT32: howto manager. (line 597)
+* BFD_RELOC_X86_64_PLTOFF64: howto manager. (line 618)
+* BFD_RELOC_X86_64_RELATIVE: howto manager. (line 601)
+* BFD_RELOC_X86_64_TLSDESC: howto manager. (line 621)
+* BFD_RELOC_X86_64_TLSDESC_CALL: howto manager. (line 620)
+* BFD_RELOC_X86_64_TLSGD: howto manager. (line 607)
+* BFD_RELOC_X86_64_TLSLD: howto manager. (line 608)
+* BFD_RELOC_X86_64_TPOFF32: howto manager. (line 611)
+* BFD_RELOC_X86_64_TPOFF64: howto manager. (line 606)
+* BFD_RELOC_XC16X_PAG: howto manager. (line 2352)
+* BFD_RELOC_XC16X_POF: howto manager. (line 2353)
+* BFD_RELOC_XC16X_SEG: howto manager. (line 2354)
+* BFD_RELOC_XC16X_SOF: howto manager. (line 2355)
+* BFD_RELOC_XGATE_24: howto manager. (line 2098)
+* BFD_RELOC_XGATE_GPAGE: howto manager. (line 2095)
+* BFD_RELOC_XGATE_IMM3: howto manager. (line 2115)
+* BFD_RELOC_XGATE_IMM4: howto manager. (line 2118)
+* BFD_RELOC_XGATE_IMM5: howto manager. (line 2121)
+* BFD_RELOC_XGATE_IMM8_HI: howto manager. (line 2111)
+* BFD_RELOC_XGATE_IMM8_LO: howto manager. (line 2107)
+* BFD_RELOC_XGATE_LO16: howto manager. (line 2091)
+* BFD_RELOC_XGATE_PCREL_10: howto manager. (line 2104)
+* BFD_RELOC_XGATE_PCREL_9: howto manager. (line 2101)
+* BFD_RELOC_XGATE_RL_GROUP: howto manager. (line 2086)
+* BFD_RELOC_XGATE_RL_JUMP: howto manager. (line 2082)
+* BFD_RELOC_XSTORMY16_12: howto manager. (line 2344)
+* BFD_RELOC_XSTORMY16_24: howto manager. (line 2345)
+* BFD_RELOC_XSTORMY16_FPTR16: howto manager. (line 2346)
+* BFD_RELOC_XSTORMY16_REL_12: howto manager. (line 2343)
+* BFD_RELOC_XTENSA_ASM_EXPAND: howto manager. (line 2464)
+* BFD_RELOC_XTENSA_ASM_SIMPLIFY: howto manager. (line 2469)
+* BFD_RELOC_XTENSA_DIFF16: howto manager. (line 2411)
+* BFD_RELOC_XTENSA_DIFF32: howto manager. (line 2412)
+* BFD_RELOC_XTENSA_DIFF8: howto manager. (line 2410)
+* BFD_RELOC_XTENSA_GLOB_DAT: howto manager. (line 2400)
+* BFD_RELOC_XTENSA_JMP_SLOT: howto manager. (line 2401)
+* BFD_RELOC_XTENSA_OP0: howto manager. (line 2458)
+* BFD_RELOC_XTENSA_OP1: howto manager. (line 2459)
+* BFD_RELOC_XTENSA_OP2: howto manager. (line 2460)
+* BFD_RELOC_XTENSA_PLT: howto manager. (line 2405)
+* BFD_RELOC_XTENSA_RELATIVE: howto manager. (line 2402)
+* BFD_RELOC_XTENSA_RTLD: howto manager. (line 2395)
+* BFD_RELOC_XTENSA_SLOT0_ALT: howto manager. (line 2440)
+* BFD_RELOC_XTENSA_SLOT0_OP: howto manager. (line 2420)
+* BFD_RELOC_XTENSA_SLOT10_ALT: howto manager. (line 2450)
+* BFD_RELOC_XTENSA_SLOT10_OP: howto manager. (line 2430)
+* BFD_RELOC_XTENSA_SLOT11_ALT: howto manager. (line 2451)
+* BFD_RELOC_XTENSA_SLOT11_OP: howto manager. (line 2431)
+* BFD_RELOC_XTENSA_SLOT12_ALT: howto manager. (line 2452)
+* BFD_RELOC_XTENSA_SLOT12_OP: howto manager. (line 2432)
+* BFD_RELOC_XTENSA_SLOT13_ALT: howto manager. (line 2453)
+* BFD_RELOC_XTENSA_SLOT13_OP: howto manager. (line 2433)
+* BFD_RELOC_XTENSA_SLOT14_ALT: howto manager. (line 2454)
+* BFD_RELOC_XTENSA_SLOT14_OP: howto manager. (line 2434)
+* BFD_RELOC_XTENSA_SLOT1_ALT: howto manager. (line 2441)
+* BFD_RELOC_XTENSA_SLOT1_OP: howto manager. (line 2421)
+* BFD_RELOC_XTENSA_SLOT2_ALT: howto manager. (line 2442)
+* BFD_RELOC_XTENSA_SLOT2_OP: howto manager. (line 2422)
+* BFD_RELOC_XTENSA_SLOT3_ALT: howto manager. (line 2443)
+* BFD_RELOC_XTENSA_SLOT3_OP: howto manager. (line 2423)
+* BFD_RELOC_XTENSA_SLOT4_ALT: howto manager. (line 2444)
+* BFD_RELOC_XTENSA_SLOT4_OP: howto manager. (line 2424)
+* BFD_RELOC_XTENSA_SLOT5_ALT: howto manager. (line 2445)
+* BFD_RELOC_XTENSA_SLOT5_OP: howto manager. (line 2425)
+* BFD_RELOC_XTENSA_SLOT6_ALT: howto manager. (line 2446)
+* BFD_RELOC_XTENSA_SLOT6_OP: howto manager. (line 2426)
+* BFD_RELOC_XTENSA_SLOT7_ALT: howto manager. (line 2447)
+* BFD_RELOC_XTENSA_SLOT7_OP: howto manager. (line 2427)
+* BFD_RELOC_XTENSA_SLOT8_ALT: howto manager. (line 2448)
+* BFD_RELOC_XTENSA_SLOT8_OP: howto manager. (line 2428)
+* BFD_RELOC_XTENSA_SLOT9_ALT: howto manager. (line 2449)
+* BFD_RELOC_XTENSA_SLOT9_OP: howto manager. (line 2429)
+* BFD_RELOC_XTENSA_TLS_ARG: howto manager. (line 2479)
+* BFD_RELOC_XTENSA_TLS_CALL: howto manager. (line 2480)
+* BFD_RELOC_XTENSA_TLS_DTPOFF: howto manager. (line 2476)
+* BFD_RELOC_XTENSA_TLS_FUNC: howto manager. (line 2478)
+* BFD_RELOC_XTENSA_TLS_TPOFF: howto manager. (line 2477)
+* BFD_RELOC_XTENSA_TLSDESC_ARG: howto manager. (line 2475)
+* BFD_RELOC_XTENSA_TLSDESC_FN: howto manager. (line 2474)
+* BFD_RELOC_Z80_DISP8: howto manager. (line 2483)
+* BFD_RELOC_Z8K_CALLR: howto manager. (line 2489)
+* BFD_RELOC_Z8K_DISP7: howto manager. (line 2486)
+* BFD_RELOC_Z8K_IMM4L: howto manager. (line 2492)
+* bfd_rename_section: section prototypes. (line 169)
+* bfd_scan_arch: Architectures. (line 477)
+* bfd_scan_vma: BFD front end. (line 567)
+* bfd_seach_for_target: bfd_target. (line 520)
* 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 185)
-* bfd_set_arch_info: Architectures. (line 504)
+* bfd_sections_find_if: section prototypes. (line 199)
+* bfd_set_arch_info: Architectures. (line 518)
* bfd_set_archive_head: Archives. (line 69)
-* bfd_set_default_target: bfd_target. (line 458)
+* bfd_set_assert_handler: BFD front end. (line 429)
+* bfd_set_default_target: bfd_target. (line 459)
* bfd_set_error: BFD front end. (line 345)
* bfd_set_error_handler: BFD front end. (line 387)
* bfd_set_error_program_name: BFD front end. (line 396)
-* bfd_set_file_flags: BFD front end. (line 455)
+* bfd_set_file_flags: BFD front end. (line 487)
* bfd_set_format: Formats. (line 68)
-* bfd_set_gp_size: BFD front end. (line 525)
-* bfd_set_private_flags: BFD front end. (line 602)
-* bfd_set_reloc: BFD front end. (line 445)
-* bfd_set_section_contents: section prototypes. (line 216)
-* bfd_set_section_flags: section prototypes. (line 140)
-* bfd_set_section_size: section prototypes. (line 202)
-* bfd_set_start_address: BFD front end. (line 504)
+* bfd_set_gp_size: BFD front end. (line 557)
+* bfd_set_private_flags: BFD front end. (line 634)
+* bfd_set_reloc: BFD front end. (line 477)
+* bfd_set_section_contents: section prototypes. (line 230)
+* bfd_set_section_flags: section prototypes. (line 154)
+* bfd_set_section_size: section prototypes. (line 216)
+* bfd_set_start_address: BFD front end. (line 536)
* bfd_set_symtab: symbol handling functions.
(line 60)
* bfd_symbol_info: symbol handling functions.
(line 130)
-* bfd_target_list: bfd_target. (line 510)
+* bfd_target_list: bfd_target. (line 511)
* bfd_write_bigendian_4byte_int: Internal. (line 13)
* bfd_zalloc: Opening and Closing.
- (line 232)
+ (line 236)
* bfd_zalloc2: Opening and Closing.
- (line 241)
+ (line 245)
* coff_symbol_type: coff. (line 244)
* core_file_matches_executable_p: Core Files. (line 39)
* find_separate_debug_file: Opening and Closing.
- (line 283)
+ (line 287)
* generic_core_file_matches_executable_p: Core Files. (line 49)
* get_debug_link_info: Opening and Closing.
- (line 264)
+ (line 268)
* 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 617)
+* Other functions: BFD front end. (line 649)
* separate_debug_file_exists: Opening and Closing.
- (line 274)
-* struct bfd_iovec: BFD front end. (line 823)
+ (line 278)
+* struct bfd_iovec: BFD front end. (line 855)
* target vector (_bfd_final_link): Performing the Final Link.
(line 6)
* target vector (_bfd_link_add_symbols): Adding Symbols to the Hash Table.
@@ -12189,59 +12457,59 @@ Node: What BFD Version 2 Can Do4968
Node: BFD information loss6283
Node: Canonical format8815
Node: BFD front end13187
-Node: Memory Usage46098
-Node: Initialization47326
-Node: Sections47785
-Node: Section Input48268
-Node: Section Output49633
-Node: typedef asection52119
-Node: section prototypes77989
-Node: Symbols87884
-Node: Reading Symbols89479
-Node: Writing Symbols90586
-Node: Mini Symbols92295
-Node: typedef asymbol93269
-Node: symbol handling functions99328
-Node: Archives104670
-Node: Formats108396
-Node: Relocations111344
-Node: typedef arelent112071
-Node: howto manager127707
-Node: Core Files214123
-Node: Targets216161
-Node: bfd_target218131
-Node: Architectures241021
-Node: Opening and Closing265792
-Node: Internal277248
-Node: File Caching283593
-Node: Linker Functions285507
-Node: Creating a Linker Hash Table287180
-Node: Adding Symbols to the Hash Table288918
-Node: Differing file formats289818
-Node: Adding symbols from an object file291543
-Node: Adding symbols from an archive293694
-Node: Performing the Final Link296623
-Node: Information provided by the linker297865
-Node: Relocating the section contents299019
-Node: Writing the symbol table300770
-Node: Hash Tables305156
-Node: Creating and Freeing a Hash Table306354
-Node: Looking Up or Entering a String307604
-Node: Traversing a Hash Table308857
-Node: Deriving a New Hash Table Type309646
-Node: Define the Derived Structures310712
-Node: Write the Derived Creation Routine311793
-Node: Write Other Derived Routines314417
-Node: BFD back ends315732
-Node: What to Put Where316002
-Node: aout316182
-Node: coff322500
-Node: elf350933
-Node: mmo351334
-Node: File layout352262
-Node: Symbol-table357909
-Node: mmo section mapping361678
-Node: GNU Free Documentation License365330
-Node: BFD Index390413
+Node: Memory Usage47266
+Node: Initialization48494
+Node: Sections48953
+Node: Section Input49436
+Node: Section Output50801
+Node: typedef asection53287
+Node: section prototypes78494
+Node: Symbols88750
+Node: Reading Symbols90345
+Node: Writing Symbols91452
+Node: Mini Symbols93193
+Node: typedef asymbol94167
+Node: symbol handling functions100226
+Node: Archives105568
+Node: Formats109294
+Node: Relocations112242
+Node: typedef arelent112969
+Node: howto manager128605
+Node: Core Files219224
+Node: Targets221262
+Node: bfd_target223232
+Node: Architectures246197
+Node: Opening and Closing271999
+Node: Internal283518
+Node: File Caching289863
+Node: Linker Functions291777
+Node: Creating a Linker Hash Table293450
+Node: Adding Symbols to the Hash Table295188
+Node: Differing file formats296088
+Node: Adding symbols from an object file297813
+Node: Adding symbols from an archive299964
+Node: Performing the Final Link302893
+Node: Information provided by the linker304135
+Node: Relocating the section contents305289
+Node: Writing the symbol table307040
+Node: Hash Tables311426
+Node: Creating and Freeing a Hash Table312624
+Node: Looking Up or Entering a String313874
+Node: Traversing a Hash Table315127
+Node: Deriving a New Hash Table Type315916
+Node: Define the Derived Structures316982
+Node: Write the Derived Creation Routine318063
+Node: Write Other Derived Routines320687
+Node: BFD back ends322002
+Node: What to Put Where322272
+Node: aout322452
+Node: coff328770
+Node: elf357203
+Node: mmo357604
+Node: File layout358532
+Node: Symbol-table364179
+Node: mmo section mapping367948
+Node: GNU Free Documentation License371600
+Node: BFD Index396683

End Tag Table
« no previous file with comments | « bfd/doc/archures.texi ('k') | bfd/doc/bfdt.texi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698